From a94fdf1df5deba1aa1a3fff23e1276333b5ab666 Mon Sep 17 00:00:00 2001 From: zc he Date: Fri, 6 Dec 2024 20:48:07 +0800 Subject: [PATCH] fix: multiline collection type and more (#166) This PR fixes: 1. `param_value` before `param_type`, e.g. `--param=value: string` 2. `error make {}` by removing it from internal.txt 3. `val_range` in binary expression, e.g. `1 in 1..3` 4. multiline type signature, e.g. ```nushell table< foo: string > ``` --- grammar.js | 48 +- internal.txt | 1 - src/grammar.json | 272 +- src/node-types.json | 8 + src/parser.c | 591295 +++++++++++++++-------------- test/corpus/ctrl/error.nu | 11 + test/corpus/decl/def.nu | 40 +- test/corpus/expr/binary-expr.nu | 17 + 8 files changed, 306896 insertions(+), 284796 deletions(-) create mode 100644 test/corpus/ctrl/error.nu diff --git a/grammar.js b/grammar.js index 3da0662..875293b 100644 --- a/grammar.js +++ b/grammar.js @@ -254,8 +254,8 @@ module.exports = grammar({ "param_value", choice( $._item_expression, - alias($._unquoted_in_list, $.val_string), - alias($._unquoted_in_list_with_expr, $.val_string), + alias($._unquoted_in_record, $.val_string), + alias($._unquoted_in_record_with_expr, $.val_string), ), ), ), @@ -269,27 +269,22 @@ module.exports = grammar({ flat_type: (_$) => field("flat_type", FLAT_TYPES()), collection_type: ($) => { - const key = field( - "key", - choice($.identifier, alias($.val_string, $.identifier)), + const type_and_completion = seq( + PUNC().colon, + $._all_type, + field("completion", optional($.param_cmd)), + ); + const entry = seq( + field("key", choice($.identifier, alias($.val_string, $.identifier))), + optional(type_and_completion), ); return seq( choice("record", "table"), seq( token.immediate(BRACK().open_angle), - repeat( - seq( - key, - optional( - seq( - PUNC().colon, - $._all_type, - field("completion", optional($.param_cmd)), - ), - ), - optional(PUNC().comma), - ), + optional( + general_body_rules("", entry, $._entry_separator, $._newline), ), BRACK().close_angle, ), @@ -793,11 +788,18 @@ module.exports = grammar({ expr_binary_parenthesized: _expr_binary_rule(true), _expr_binary_expression: ($) => - choice($._value, $.expr_binary, $.expr_unary, $.expr_parenthesized), + choice( + $._value, + $.val_range, + $.expr_binary, + $.expr_unary, + $.expr_parenthesized, + ), _expr_binary_expression_parenthesized: ($) => choice( $._value, + $.val_range, alias($.expr_binary_parenthesized, $.expr_binary), $.expr_unary, $.expr_parenthesized, @@ -1279,12 +1281,10 @@ module.exports = grammar({ redirection: ($) => seq( choice(...REDIR_APPEND()), - seq( - $._space, - field( - "file_path", - choice(alias($._unquoted_naive, $.val_string), $._stringish), - ), + $._space, + field( + "file_path", + choice(alias($._unquoted_naive, $.val_string), $._stringish), ), ), diff --git a/internal.txt b/internal.txt index 578027f..0b6c3ec 100644 --- a/internal.txt +++ b/internal.txt @@ -73,7 +73,6 @@ encode base32 encode base32hex encode base64 encode hex -error make explore ir format date format duration diff --git a/src/grammar.json b/src/grammar.json index 368c139..dcddf43 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2709,7 +2709,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_unquoted_in_list" + "name": "_unquoted_in_record" }, "named": true, "value": "val_string" @@ -2718,7 +2718,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_unquoted_in_list_with_expr" + "name": "_unquoted_in_record_with_expr" }, "named": true, "value": "val_string" @@ -2950,83 +2950,178 @@ } }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "key", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "val_string" - }, - "named": true, - "value": "identifier" + "name": "_newline" } - ] - } - }, - { - "type": "CHOICE", - "members": [ + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "val_string" + }, + "named": true, + "value": "identifier" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_all_type" + }, + { + "type": "FIELD", + "name": "completion", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "param_cmd" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, { "type": "SEQ", "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_all_type" - }, { "type": "FIELD", - "name": "completion", + "name": "key", "content": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "param_cmd" + "name": "identifier" }, { - "type": "BLANK" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "val_string" + }, + "named": true, + "value": "identifier" } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_all_type" + }, + { + "type": "FIELD", + "name": "completion", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "param_cmd" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } } ] } - ] - } + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -10782,6 +10877,10 @@ "type": "SYMBOL", "name": "_value" }, + { + "type": "SYMBOL", + "name": "val_range" + }, { "type": "SYMBOL", "name": "expr_binary" @@ -10803,6 +10902,10 @@ "type": "SYMBOL", "name": "_value" }, + { + "type": "SYMBOL", + "name": "val_range" + }, { "type": "ALIAS", "content": { @@ -14939,10 +15042,6 @@ "type": "STRING", "value": "encode hex" }, - { - "type": "STRING", - "value": "error make" - }, { "type": "STRING", "value": "explore ir" @@ -17129,10 +17228,6 @@ "type": "STRING", "value": "encode hex" }, - { - "type": "STRING", - "value": "error make" - }, { "type": "STRING", "value": "explore ir" @@ -19140,35 +19235,30 @@ ] }, { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_space" - }, - { - "type": "FIELD", - "name": "file_path", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_naive" - }, - "named": true, - "value": "val_string" - }, - { - "type": "SYMBOL", - "name": "_stringish" - } - ] + "type": "SYMBOL", + "name": "_space" + }, + { + "type": "FIELD", + "name": "file_path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_naive" + }, + "named": true, + "value": "val_string" + }, + { + "type": "SYMBOL", + "name": "_stringish" } - } - ] + ] + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index 2f7cdc6..5c69436 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1695,6 +1695,10 @@ "type": "val_number", "named": true }, + { + "type": "val_range", + "named": true + }, { "type": "val_record", "named": true @@ -1887,6 +1891,10 @@ "type": "val_number", "named": true }, + { + "type": "val_range", + "named": true + }, { "type": "val_record", "named": true diff --git a/src/parser.c b/src/parser.c index b8eec69..0cd9204 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8176 -#define LARGE_STATE_COUNT 1727 +#define STATE_COUNT 8682 +#define LARGE_STATE_COUNT 1759 #define SYMBOL_COUNT 515 #define ALIAS_COUNT 4 #define TOKEN_COUNT 308 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 273 +#define PRODUCTION_ID_COUNT 296 enum ts_symbol_identifiers { sym_identifier = 1, @@ -3990,102 +3990,125 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [173] = {.index = 318, .length = 3}, [174] = {.index = 321, .length = 6}, [175] = {.index = 327, .length = 5}, - [176] = {.index = 332, .length = 1}, - [177] = {.index = 332, .length = 1}, - [178] = {.index = 333, .length = 2}, - [179] = {.index = 335, .length = 1}, - [180] = {.index = 336, .length = 2}, - [181] = {.index = 338, .length = 2}, - [182] = {.index = 340, .length = 3}, - [183] = {.index = 343, .length = 6}, - [184] = {.index = 349, .length = 2}, - [185] = {.index = 351, .length = 3}, - [186] = {.index = 354, .length = 2}, - [188] = {.index = 356, .length = 2}, - [189] = {.index = 358, .length = 2}, - [190] = {.index = 360, .length = 2}, - [191] = {.index = 362, .length = 9}, - [192] = {.index = 371, .length = 9}, - [193] = {.index = 380, .length = 3}, - [194] = {.index = 380, .length = 3}, - [195] = {.index = 383, .length = 5}, - [196] = {.index = 388, .length = 5}, - [197] = {.index = 393, .length = 5}, - [198] = {.index = 398, .length = 1}, - [199] = {.index = 399, .length = 2}, - [200] = {.index = 401, .length = 1}, - [201] = {.index = 402, .length = 2}, - [202] = {.index = 404, .length = 1}, - [203] = {.index = 405, .length = 2}, - [204] = {.index = 407, .length = 2}, - [205] = {.index = 409, .length = 1}, - [206] = {.index = 410, .length = 4}, - [207] = {.index = 414, .length = 4}, - [208] = {.index = 418, .length = 6}, - [209] = {.index = 424, .length = 3}, - [210] = {.index = 427, .length = 6}, - [211] = {.index = 433, .length = 2}, - [212] = {.index = 435, .length = 1}, - [213] = {.index = 436, .length = 2}, - [214] = {.index = 438, .length = 2}, - [215] = {.index = 440, .length = 6}, - [216] = {.index = 446, .length = 3}, - [217] = {.index = 449, .length = 2}, - [218] = {.index = 451, .length = 3}, - [219] = {.index = 454, .length = 3}, - [220] = {.index = 457, .length = 3}, - [221] = {.index = 460, .length = 3}, - [222] = {.index = 463, .length = 3}, - [223] = {.index = 466, .length = 3}, - [224] = {.index = 469, .length = 3}, - [225] = {.index = 472, .length = 2}, - [226] = {.index = 474, .length = 2}, - [227] = {.index = 476, .length = 9}, - [228] = {.index = 485, .length = 5}, - [229] = {.index = 490, .length = 5}, - [230] = {.index = 495, .length = 5}, - [231] = {.index = 500, .length = 5}, - [232] = {.index = 505, .length = 2}, - [233] = {.index = 507, .length = 1}, - [234] = {.index = 508, .length = 4}, - [235] = {.index = 512, .length = 2}, - [236] = {.index = 512, .length = 2}, - [237] = {.index = 514, .length = 3}, - [238] = {.index = 517, .length = 2}, - [239] = {.index = 519, .length = 3}, - [240] = {.index = 522, .length = 3}, - [241] = {.index = 525, .length = 3}, - [242] = {.index = 528, .length = 3}, - [243] = {.index = 531, .length = 3}, - [244] = {.index = 534, .length = 3}, - [245] = {.index = 537, .length = 3}, - [246] = {.index = 540, .length = 3}, - [247] = {.index = 543, .length = 3}, - [248] = {.index = 546, .length = 2}, - [249] = {.index = 548, .length = 2}, - [250] = {.index = 550, .length = 5}, - [251] = {.index = 555, .length = 5}, - [252] = {.index = 560, .length = 5}, - [253] = {.index = 565, .length = 3}, - [254] = {.index = 565, .length = 3}, - [255] = {.index = 568, .length = 3}, - [256] = {.index = 571, .length = 3}, - [257] = {.index = 574, .length = 3}, - [258] = {.index = 577, .length = 3}, - [259] = {.index = 580, .length = 3}, - [260] = {.index = 583, .length = 3}, - [261] = {.index = 586, .length = 3}, - [262] = {.index = 589, .length = 3}, - [263] = {.index = 592, .length = 2}, - [264] = {.index = 594, .length = 5}, - [265] = {.index = 599, .length = 3}, - [266] = {.index = 602, .length = 3}, - [267] = {.index = 605, .length = 3}, - [268] = {.index = 608, .length = 3}, - [269] = {.index = 611, .length = 3}, - [270] = {.index = 614, .length = 3}, - [271] = {.index = 617, .length = 3}, - [272] = {.index = 620, .length = 3}, + [176] = {.index = 332, .length = 2}, + [177] = {.index = 334, .length = 1}, + [178] = {.index = 335, .length = 2}, + [179] = {.index = 337, .length = 2}, + [180] = {.index = 339, .length = 3}, + [181] = {.index = 342, .length = 6}, + [182] = {.index = 348, .length = 2}, + [183] = {.index = 350, .length = 3}, + [184] = {.index = 353, .length = 2}, + [186] = {.index = 355, .length = 2}, + [187] = {.index = 357, .length = 2}, + [188] = {.index = 359, .length = 2}, + [189] = {.index = 361, .length = 9}, + [190] = {.index = 370, .length = 9}, + [191] = {.index = 379, .length = 3}, + [192] = {.index = 379, .length = 3}, + [193] = {.index = 382, .length = 5}, + [194] = {.index = 387, .length = 5}, + [195] = {.index = 392, .length = 5}, + [196] = {.index = 397, .length = 1}, + [197] = {.index = 398, .length = 2}, + [198] = {.index = 400, .length = 1}, + [199] = {.index = 401, .length = 2}, + [200] = {.index = 403, .length = 1}, + [201] = {.index = 404, .length = 2}, + [202] = {.index = 406, .length = 2}, + [203] = {.index = 408, .length = 1}, + [204] = {.index = 409, .length = 4}, + [205] = {.index = 413, .length = 4}, + [206] = {.index = 417, .length = 6}, + [207] = {.index = 423, .length = 1}, + [208] = {.index = 424, .length = 1}, + [209] = {.index = 423, .length = 1}, + [210] = {.index = 424, .length = 1}, + [211] = {.index = 425, .length = 6}, + [212] = {.index = 431, .length = 2}, + [213] = {.index = 433, .length = 1}, + [214] = {.index = 434, .length = 2}, + [215] = {.index = 436, .length = 2}, + [216] = {.index = 438, .length = 6}, + [217] = {.index = 444, .length = 3}, + [218] = {.index = 447, .length = 2}, + [219] = {.index = 449, .length = 3}, + [220] = {.index = 452, .length = 3}, + [221] = {.index = 455, .length = 3}, + [222] = {.index = 458, .length = 3}, + [223] = {.index = 461, .length = 3}, + [224] = {.index = 464, .length = 3}, + [225] = {.index = 467, .length = 3}, + [226] = {.index = 470, .length = 2}, + [227] = {.index = 472, .length = 2}, + [228] = {.index = 474, .length = 9}, + [229] = {.index = 483, .length = 5}, + [230] = {.index = 488, .length = 5}, + [231] = {.index = 493, .length = 5}, + [232] = {.index = 498, .length = 5}, + [233] = {.index = 503, .length = 2}, + [234] = {.index = 505, .length = 1}, + [235] = {.index = 506, .length = 4}, + [236] = {.index = 510, .length = 1}, + [237] = {.index = 510, .length = 1}, + [238] = {.index = 511, .length = 4}, + [239] = {.index = 511, .length = 4}, + [240] = {.index = 515, .length = 3}, + [241] = {.index = 518, .length = 2}, + [242] = {.index = 520, .length = 3}, + [243] = {.index = 523, .length = 3}, + [244] = {.index = 526, .length = 3}, + [245] = {.index = 529, .length = 3}, + [246] = {.index = 532, .length = 3}, + [247] = {.index = 535, .length = 3}, + [248] = {.index = 538, .length = 3}, + [249] = {.index = 541, .length = 3}, + [250] = {.index = 544, .length = 3}, + [251] = {.index = 547, .length = 2}, + [252] = {.index = 549, .length = 2}, + [253] = {.index = 551, .length = 5}, + [254] = {.index = 556, .length = 5}, + [255] = {.index = 561, .length = 5}, + [256] = {.index = 566, .length = 2}, + [257] = {.index = 568, .length = 2}, + [258] = {.index = 566, .length = 2}, + [259] = {.index = 568, .length = 2}, + [260] = {.index = 570, .length = 4}, + [261] = {.index = 570, .length = 4}, + [262] = {.index = 574, .length = 3}, + [263] = {.index = 577, .length = 3}, + [264] = {.index = 580, .length = 3}, + [265] = {.index = 583, .length = 3}, + [266] = {.index = 586, .length = 3}, + [267] = {.index = 589, .length = 3}, + [268] = {.index = 592, .length = 3}, + [269] = {.index = 595, .length = 3}, + [270] = {.index = 598, .length = 2}, + [271] = {.index = 600, .length = 5}, + [272] = {.index = 605, .length = 3}, + [273] = {.index = 608, .length = 3}, + [274] = {.index = 605, .length = 3}, + [275] = {.index = 608, .length = 3}, + [276] = {.index = 611, .length = 2}, + [277] = {.index = 611, .length = 2}, + [278] = {.index = 613, .length = 5}, + [279] = {.index = 613, .length = 5}, + [280] = {.index = 618, .length = 3}, + [281] = {.index = 621, .length = 3}, + [282] = {.index = 624, .length = 3}, + [283] = {.index = 627, .length = 3}, + [284] = {.index = 630, .length = 3}, + [285] = {.index = 633, .length = 3}, + [286] = {.index = 636, .length = 3}, + [287] = {.index = 636, .length = 3}, + [288] = {.index = 639, .length = 5}, + [289] = {.index = 639, .length = 5}, + [290] = {.index = 644, .length = 6}, + [291] = {.index = 644, .length = 6}, + [292] = {.index = 650, .length = 3}, + [293] = {.index = 653, .length = 3}, + [294] = {.index = 656, .length = 6}, + [295] = {.index = 656, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4563,49 +4586,47 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, [332] = - {field_key, 0}, - [333] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [335] = + [334] = {field_type, 3, .inherited = true}, - [336] = + [335] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [338] = + [337] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [340] = + [339] = {field_cmd, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [343] = + [342] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [349] = + [348] = {field_head, 1}, {field_row, 4}, - [351] = + [350] = {field_head, 1}, {field_row, 3, .inherited = true}, {field_row, 4}, - [354] = + [353] = {field_head, 2}, {field_row, 4}, - [356] = + [355] = {field_condition, 2}, {field_then_branch, 4}, - [358] = + [357] = {field_catch_branch, 4}, {field_try_branch, 1}, - [360] = + [359] = {field_catch_branch, 4}, {field_try_branch, 2}, - [362] = + [361] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4615,7 +4636,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [371] = + [370] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4625,136 +4646,136 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [380] = + [379] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [383] = + [382] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [388] = + [387] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [393] = + [392] = {field_body, 5}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [398] = + [397] = {field_rest, 1}, - [399] = + [398] = {field_item, 0}, {field_item, 1}, - [401] = + [400] = {field_item, 1, .inherited = true}, - [402] = + [401] = {field_item, 0, .inherited = true}, {field_item, 1, .inherited = true}, - [404] = + [403] = {field_entry, 1, .inherited = true}, - [405] = + [404] = {field_default_pattern, 0}, {field_expression, 2}, - [407] = + [406] = {field_expression, 2}, {field_pattern, 0}, - [409] = + [408] = {field_param_value, 2}, - [410] = + [409] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [414] = + [413] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [418] = + [417] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, + [423] = + {field_key, 2}, [424] = - {field_completion, 2, .inherited = true}, - {field_key, 2, .inherited = true}, - {field_type, 2, .inherited = true}, - [427] = + {field_key, 0}, + [425] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [433] = + [431] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [435] = + [433] = {field_completion, 2}, - [436] = + [434] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [438] = + [436] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [440] = + [438] = {field_cmd, 2, .inherited = true}, {field_cmd, 3}, {field_quoted_name, 2, .inherited = true}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [446] = + [444] = {field_head, 1}, {field_row, 4, .inherited = true}, {field_row, 5}, - [449] = + [447] = {field_head, 2}, {field_row, 5}, - [451] = + [449] = {field_head, 2}, {field_row, 4, .inherited = true}, {field_row, 5}, - [454] = + [452] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [457] = + [455] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [460] = + [458] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [463] = + [461] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [466] = + [464] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [469] = + [467] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [472] = + [470] = {field_catch_branch, 5}, {field_try_branch, 1}, - [474] = + [472] = {field_catch_branch, 5}, {field_try_branch, 2}, - [476] = + [474] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4764,187 +4785,239 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [485] = + [483] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [490] = + [488] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [495] = + [493] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [500] = + [498] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [505] = + [503] = {field_item, 1, .inherited = true}, {field_rest, 2}, - [507] = + [505] = {field_param_value, 3}, - [508] = + [506] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [512] = - {field_key, 0}, + [510] = + {field_key, 3}, + [511] = + {field_completion, 2, .inherited = true}, + {field_key, 2, .inherited = true}, + {field_key, 3}, {field_type, 2, .inherited = true}, - [514] = + [515] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [517] = + [518] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [519] = + [520] = {field_head, 2}, {field_row, 5, .inherited = true}, {field_row, 6}, - [522] = + [523] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [525] = + [526] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [528] = + [529] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [531] = + [532] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [534] = + [535] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [537] = + [538] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [540] = + [541] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [543] = + [544] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [546] = + [547] = {field_catch_branch, 6}, {field_try_branch, 1}, - [548] = + [549] = {field_catch_branch, 6}, {field_try_branch, 2}, - [550] = + [551] = {field_body, 7}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [555] = + [556] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [560] = + [561] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [565] = - {field_completion, 3}, + [566] = + {field_key, 2}, + {field_type, 4, .inherited = true}, + [568] = {field_key, 0}, {field_type, 2, .inherited = true}, - [568] = + [570] = + {field_completion, 3, .inherited = true}, + {field_key, 3, .inherited = true}, + {field_key, 4}, + {field_type, 3, .inherited = true}, + [574] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [571] = + [577] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [574] = + [580] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [577] = + [583] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [580] = + [586] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [583] = + [589] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [586] = + [592] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [589] = + [595] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [592] = + [598] = {field_catch_branch, 7}, {field_try_branch, 2}, - [594] = + [600] = {field_body, 8}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [599] = + [605] = + {field_completion, 5}, + {field_key, 2}, + {field_type, 4, .inherited = true}, + [608] = + {field_completion, 3}, + {field_key, 0}, + {field_type, 2, .inherited = true}, + [611] = + {field_key, 3}, + {field_type, 5, .inherited = true}, + [613] = + {field_completion, 2, .inherited = true}, + {field_key, 2, .inherited = true}, + {field_key, 3}, + {field_type, 2, .inherited = true}, + {field_type, 5, .inherited = true}, + [618] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [602] = + [621] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [605] = + [624] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [608] = + [627] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [611] = + [630] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [614] = + [633] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [617] = + [636] = + {field_completion, 6}, + {field_key, 3}, + {field_type, 5, .inherited = true}, + [639] = + {field_completion, 3, .inherited = true}, + {field_key, 3, .inherited = true}, + {field_key, 4}, + {field_type, 3, .inherited = true}, + {field_type, 6, .inherited = true}, + [644] = + {field_completion, 2, .inherited = true}, + {field_completion, 6}, + {field_key, 2, .inherited = true}, + {field_key, 3}, + {field_type, 2, .inherited = true}, + {field_type, 5, .inherited = true}, + [650] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [620] = + [653] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, + [656] = + {field_completion, 3, .inherited = true}, + {field_completion, 7}, + {field_key, 3, .inherited = true}, + {field_key, 4}, + {field_type, 3, .inherited = true}, + {field_type, 6, .inherited = true}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -5065,21 +5138,57 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = sym_val_number, [4] = sym_val_number, }, - [177] = { - [0] = sym_identifier, - }, - [187] = { + [185] = { [1] = sym_val_string, }, - [194] = { + [192] = { [4] = sym_val_string, }, - [236] = { + [209] = { + [2] = sym_identifier, + }, + [210] = { [0] = sym_identifier, }, - [254] = { + [237] = { + [3] = sym_identifier, + }, + [239] = { + [3] = sym_identifier, + }, + [258] = { + [2] = sym_identifier, + }, + [259] = { [0] = sym_identifier, }, + [261] = { + [4] = sym_identifier, + }, + [274] = { + [2] = sym_identifier, + }, + [275] = { + [0] = sym_identifier, + }, + [277] = { + [3] = sym_identifier, + }, + [279] = { + [3] = sym_identifier, + }, + [287] = { + [3] = sym_identifier, + }, + [289] = { + [4] = sym_identifier, + }, + [291] = { + [3] = sym_identifier, + }, + [295] = { + [4] = sym_identifier, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -5118,10 +5227,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 3, - [6] = 4, - [7] = 3, - [8] = 4, + [5] = 4, + [6] = 3, + [7] = 4, + [8] = 3, [9] = 4, [10] = 4, [11] = 4, @@ -5155,9 +5264,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [39] = 37, [40] = 37, [41] = 41, - [42] = 42, - [43] = 41, - [44] = 42, + [42] = 41, + [43] = 43, + [44] = 43, [45] = 41, [46] = 41, [47] = 47, @@ -5177,94 +5286,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [61] = 47, [62] = 47, [63] = 47, - [64] = 47, - [65] = 47, - [66] = 47, - [67] = 67, + [64] = 64, + [65] = 64, + [66] = 66, + [67] = 64, [68] = 68, - [69] = 67, + [69] = 69, [70] = 70, - [71] = 67, - [72] = 67, - [73] = 67, - [74] = 70, - [75] = 75, - [76] = 76, - [77] = 70, - [78] = 67, - [79] = 67, - [80] = 67, - [81] = 67, - [82] = 67, - [83] = 76, - [84] = 76, - [85] = 67, - [86] = 67, - [87] = 70, - [88] = 70, - [89] = 68, - [90] = 70, - [91] = 76, - [92] = 67, - [93] = 67, - [94] = 67, - [95] = 67, - [96] = 70, - [97] = 67, - [98] = 67, - [99] = 67, - [100] = 70, - [101] = 67, - [102] = 67, - [103] = 70, - [104] = 76, + [71] = 64, + [72] = 68, + [73] = 69, + [74] = 69, + [75] = 64, + [76] = 68, + [77] = 69, + [78] = 68, + [79] = 69, + [80] = 64, + [81] = 69, + [82] = 64, + [83] = 69, + [84] = 64, + [85] = 69, + [86] = 64, + [87] = 69, + [88] = 69, + [89] = 69, + [90] = 69, + [91] = 69, + [92] = 69, + [93] = 69, + [94] = 69, + [95] = 69, + [96] = 69, + [97] = 69, + [98] = 69, + [99] = 69, + [100] = 69, + [101] = 66, + [102] = 68, + [103] = 103, + [104] = 103, [105] = 105, - [106] = 105, - [107] = 107, + [106] = 106, + [107] = 105, [108] = 108, - [109] = 107, + [109] = 103, [110] = 110, - [111] = 111, - [112] = 112, - [113] = 107, - [114] = 112, - [115] = 105, - [116] = 111, - [117] = 111, - [118] = 112, - [119] = 105, - [120] = 111, - [121] = 105, - [122] = 111, - [123] = 105, - [124] = 111, - [125] = 105, - [126] = 111, - [127] = 111, + [111] = 110, + [112] = 103, + [113] = 106, + [114] = 105, + [115] = 115, + [116] = 110, + [117] = 115, + [118] = 103, + [119] = 115, + [120] = 105, + [121] = 103, + [122] = 105, + [123] = 103, + [124] = 105, + [125] = 103, + [126] = 105, + [127] = 103, [128] = 105, - [129] = 111, + [129] = 103, [130] = 105, - [131] = 111, + [131] = 103, [132] = 105, - [133] = 111, + [133] = 103, [134] = 105, - [135] = 111, + [135] = 103, [136] = 105, - [137] = 111, + [137] = 103, [138] = 105, - [139] = 111, - [140] = 105, - [141] = 108, + [139] = 105, + [140] = 140, + [141] = 141, [142] = 142, - [143] = 143, + [143] = 140, [144] = 144, - [145] = 145, - [146] = 143, + [145] = 140, + [146] = 142, [147] = 147, - [148] = 143, - [149] = 142, + [148] = 142, + [149] = 149, [150] = 150, - [151] = 142, + [151] = 151, [152] = 152, [153] = 153, [154] = 154, @@ -5279,71 +5388,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 163, [164] = 164, [165] = 165, - [166] = 166, + [166] = 164, [167] = 167, - [168] = 168, - [169] = 167, + [168] = 167, + [169] = 164, [170] = 170, [171] = 171, - [172] = 166, + [172] = 170, [173] = 173, - [174] = 171, - [175] = 167, + [174] = 174, + [175] = 174, [176] = 176, [177] = 177, - [178] = 178, + [178] = 176, [179] = 179, - [180] = 170, - [181] = 171, - [182] = 173, - [183] = 176, - [184] = 177, - [185] = 168, - [186] = 178, + [180] = 165, + [181] = 173, + [182] = 177, + [183] = 171, + [184] = 173, + [185] = 173, + [186] = 179, [187] = 179, - [188] = 167, - [189] = 168, - [190] = 170, - [191] = 171, - [192] = 166, - [193] = 166, - [194] = 168, - [195] = 170, - [196] = 196, - [197] = 196, - [198] = 196, + [188] = 165, + [189] = 167, + [190] = 165, + [191] = 167, + [192] = 179, + [193] = 164, + [194] = 194, + [195] = 195, + [196] = 195, + [197] = 195, + [198] = 198, [199] = 199, - [200] = 196, - [201] = 201, - [202] = 199, + [200] = 194, + [201] = 195, + [202] = 202, [203] = 203, [204] = 204, [205] = 205, - [206] = 206, + [206] = 205, [207] = 207, [208] = 207, - [209] = 209, - [210] = 209, - [211] = 209, + [209] = 205, + [210] = 210, + [211] = 211, [212] = 212, - [213] = 213, + [213] = 212, [214] = 214, - [215] = 215, - [216] = 215, - [217] = 213, + [215] = 211, + [216] = 216, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, [222] = 222, [223] = 223, - [224] = 224, - [225] = 225, + [224] = 203, + [225] = 219, [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 230, + [227] = 217, + [228] = 222, + [229] = 223, + [230] = 202, [231] = 231, [232] = 232, [233] = 233, @@ -5351,80 +5460,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [235] = 235, [236] = 236, [237] = 237, - [238] = 204, + [238] = 238, [239] = 239, [240] = 240, [241] = 241, - [242] = 225, + [242] = 242, [243] = 243, [244] = 244, [245] = 245, [246] = 246, [247] = 247, [248] = 248, - [249] = 229, - [250] = 230, - [251] = 219, + [249] = 249, + [250] = 250, + [251] = 251, [252] = 252, - [253] = 253, - [254] = 223, - [255] = 255, - [256] = 256, - [257] = 226, - [258] = 227, - [259] = 228, - [260] = 231, - [261] = 232, - [262] = 233, - [263] = 234, - [264] = 235, - [265] = 253, - [266] = 236, - [267] = 237, - [268] = 239, - [269] = 230, - [270] = 240, - [271] = 256, - [272] = 241, - [273] = 225, - [274] = 226, - [275] = 227, - [276] = 243, - [277] = 228, - [278] = 231, - [279] = 279, - [280] = 232, - [281] = 204, - [282] = 205, - [283] = 233, - [284] = 234, - [285] = 244, - [286] = 235, - [287] = 236, - [288] = 218, - [289] = 237, - [290] = 239, - [291] = 245, - [292] = 240, - [293] = 241, + [253] = 231, + [254] = 232, + [255] = 233, + [256] = 234, + [257] = 223, + [258] = 231, + [259] = 232, + [260] = 233, + [261] = 234, + [262] = 235, + [263] = 236, + [264] = 237, + [265] = 238, + [266] = 239, + [267] = 267, + [268] = 240, + [269] = 241, + [270] = 242, + [271] = 243, + [272] = 244, + [273] = 245, + [274] = 246, + [275] = 247, + [276] = 248, + [277] = 249, + [278] = 250, + [279] = 251, + [280] = 252, + [281] = 235, + [282] = 236, + [283] = 237, + [284] = 238, + [285] = 239, + [286] = 267, + [287] = 240, + [288] = 288, + [289] = 241, + [290] = 242, + [291] = 243, + [292] = 244, + [293] = 245, [294] = 246, - [295] = 243, - [296] = 244, - [297] = 253, - [298] = 245, - [299] = 246, - [300] = 247, - [301] = 247, - [302] = 248, - [303] = 248, - [304] = 229, - [305] = 256, - [306] = 222, - [307] = 307, + [295] = 247, + [296] = 248, + [297] = 249, + [298] = 250, + [299] = 251, + [300] = 252, + [301] = 301, + [302] = 221, + [303] = 202, + [304] = 267, + [305] = 305, + [306] = 204, + [307] = 301, [308] = 308, - [309] = 206, + [309] = 309, [310] = 310, - [311] = 252, + [311] = 311, [312] = 312, [313] = 313, [314] = 314, @@ -5432,324 +5541,324 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [316] = 316, [317] = 317, [318] = 318, - [319] = 317, - [320] = 320, - [321] = 321, - [322] = 318, - [323] = 314, - [324] = 314, - [325] = 318, - [326] = 314, - [327] = 318, - [328] = 317, + [319] = 319, + [320] = 317, + [321] = 312, + [322] = 315, + [323] = 312, + [324] = 315, + [325] = 312, + [326] = 315, + [327] = 317, + [328] = 315, [329] = 329, - [330] = 314, - [331] = 331, - [332] = 318, - [333] = 321, + [330] = 312, + [331] = 314, + [332] = 332, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, [337] = 337, [338] = 338, - [339] = 337, + [339] = 336, [340] = 335, [341] = 341, - [342] = 334, - [343] = 336, - [344] = 338, - [345] = 345, + [342] = 342, + [343] = 334, + [344] = 333, + [345] = 332, [346] = 346, [347] = 347, [348] = 348, - [349] = 349, - [350] = 350, - [351] = 341, - [352] = 349, - [353] = 346, + [349] = 347, + [350] = 341, + [351] = 342, + [352] = 352, + [353] = 353, [354] = 354, - [355] = 347, - [356] = 348, + [355] = 355, + [356] = 356, [357] = 357, - [358] = 345, - [359] = 350, + [358] = 358, + [359] = 150, [360] = 360, - [361] = 361, - [362] = 152, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 357, + [361] = 346, + [362] = 348, + [363] = 337, + [364] = 338, + [365] = 150, + [366] = 354, + [367] = 355, [368] = 368, - [369] = 363, - [370] = 365, + [369] = 369, + [370] = 357, [371] = 360, - [372] = 361, - [373] = 373, - [374] = 364, + [372] = 151, + [373] = 352, + [374] = 353, [375] = 152, - [376] = 354, - [377] = 154, - [378] = 153, - [379] = 366, - [380] = 364, + [376] = 356, + [377] = 358, + [378] = 378, + [379] = 379, + [380] = 158, [381] = 381, [382] = 382, - [383] = 157, - [384] = 384, - [385] = 156, - [386] = 386, + [383] = 369, + [384] = 156, + [385] = 358, + [386] = 155, [387] = 154, [388] = 153, - [389] = 158, + [389] = 389, [390] = 390, - [391] = 159, - [392] = 152, - [393] = 155, - [394] = 160, - [395] = 366, - [396] = 373, + [391] = 152, + [392] = 157, + [393] = 150, + [394] = 360, + [395] = 368, + [396] = 151, [397] = 397, - [398] = 368, - [399] = 158, - [400] = 368, - [401] = 366, - [402] = 364, - [403] = 364, + [398] = 381, + [399] = 382, + [400] = 358, + [401] = 401, + [402] = 402, + [403] = 403, [404] = 404, [405] = 405, [406] = 406, [407] = 407, - [408] = 408, - [409] = 409, + [408] = 358, + [409] = 368, [410] = 410, - [411] = 411, + [411] = 369, [412] = 412, - [413] = 413, + [413] = 360, [414] = 414, - [415] = 415, + [415] = 360, [416] = 416, [417] = 417, [418] = 418, [419] = 419, - [420] = 420, + [420] = 152, [421] = 421, [422] = 422, - [423] = 157, - [424] = 424, + [423] = 423, + [424] = 150, [425] = 425, [426] = 426, - [427] = 427, - [428] = 428, - [429] = 154, - [430] = 153, - [431] = 373, - [432] = 432, - [433] = 433, - [434] = 152, - [435] = 435, - [436] = 366, - [437] = 155, - [438] = 160, - [439] = 390, - [440] = 163, - [441] = 162, - [442] = 161, - [443] = 397, - [444] = 386, - [445] = 381, - [446] = 382, - [447] = 384, - [448] = 159, - [449] = 156, + [427] = 158, + [428] = 154, + [429] = 161, + [430] = 160, + [431] = 159, + [432] = 156, + [433] = 157, + [434] = 155, + [435] = 153, + [436] = 389, + [437] = 437, + [438] = 390, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 378, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 379, + [447] = 447, + [448] = 151, + [449] = 449, [450] = 450, - [451] = 373, - [452] = 420, - [453] = 421, - [454] = 422, - [455] = 424, - [456] = 397, + [451] = 423, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, [457] = 425, - [458] = 426, - [459] = 427, - [460] = 460, - [461] = 461, - [462] = 382, - [463] = 368, - [464] = 384, - [465] = 412, - [466] = 466, - [467] = 368, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 405, - [472] = 406, - [473] = 155, - [474] = 160, - [475] = 407, - [476] = 165, - [477] = 159, - [478] = 158, - [479] = 156, - [480] = 157, - [481] = 152, - [482] = 432, - [483] = 433, - [484] = 428, - [485] = 435, - [486] = 486, - [487] = 408, - [488] = 404, - [489] = 154, - [490] = 153, - [491] = 163, - [492] = 492, - [493] = 364, - [494] = 494, - [495] = 162, - [496] = 161, - [497] = 497, - [498] = 409, - [499] = 499, - [500] = 381, - [501] = 410, - [502] = 411, - [503] = 413, - [504] = 414, - [505] = 415, - [506] = 416, - [507] = 417, - [508] = 418, - [509] = 373, - [510] = 419, - [511] = 366, - [512] = 512, - [513] = 450, - [514] = 161, - [515] = 382, - [516] = 364, - [517] = 517, - [518] = 518, - [519] = 494, - [520] = 520, - [521] = 366, - [522] = 522, - [523] = 155, - [524] = 160, - [525] = 525, - [526] = 499, - [527] = 165, + [458] = 158, + [459] = 154, + [460] = 369, + [461] = 163, + [462] = 156, + [463] = 157, + [464] = 155, + [465] = 153, + [466] = 150, + [467] = 467, + [468] = 426, + [469] = 378, + [470] = 152, + [471] = 151, + [472] = 161, + [473] = 358, + [474] = 474, + [475] = 379, + [476] = 439, + [477] = 160, + [478] = 159, + [479] = 381, + [480] = 480, + [481] = 445, + [482] = 421, + [483] = 382, + [484] = 360, + [485] = 368, + [486] = 401, + [487] = 402, + [488] = 403, + [489] = 404, + [490] = 405, + [491] = 406, + [492] = 407, + [493] = 410, + [494] = 412, + [495] = 414, + [496] = 416, + [497] = 417, + [498] = 418, + [499] = 419, + [500] = 500, + [501] = 369, + [502] = 437, + [503] = 440, + [504] = 443, + [505] = 368, + [506] = 506, + [507] = 422, + [508] = 447, + [509] = 397, + [510] = 441, + [511] = 444, + [512] = 455, + [513] = 358, + [514] = 378, + [515] = 160, + [516] = 474, + [517] = 368, + [518] = 382, + [519] = 480, + [520] = 159, + [521] = 152, + [522] = 158, + [523] = 154, + [524] = 452, + [525] = 382, + [526] = 151, + [527] = 527, [528] = 163, - [529] = 384, - [530] = 466, - [531] = 381, - [532] = 532, + [529] = 161, + [530] = 369, + [531] = 379, + [532] = 379, [533] = 533, - [534] = 534, - [535] = 497, - [536] = 162, - [537] = 469, - [538] = 538, - [539] = 397, - [540] = 512, - [541] = 470, - [542] = 492, - [543] = 460, - [544] = 153, - [545] = 545, - [546] = 159, + [534] = 381, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 156, + [539] = 378, + [540] = 456, + [541] = 449, + [542] = 157, + [543] = 506, + [544] = 155, + [545] = 381, + [546] = 500, [547] = 547, - [548] = 461, - [549] = 158, - [550] = 156, - [551] = 551, - [552] = 381, - [553] = 157, - [554] = 397, - [555] = 382, - [556] = 556, - [557] = 384, - [558] = 373, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 454, + [552] = 153, + [553] = 450, + [554] = 554, + [555] = 555, + [556] = 453, + [557] = 557, + [558] = 558, [559] = 559, - [560] = 468, + [560] = 560, [561] = 561, - [562] = 562, - [563] = 368, - [564] = 154, - [565] = 162, - [566] = 525, - [567] = 532, - [568] = 568, - [569] = 397, - [570] = 570, - [571] = 381, - [572] = 382, - [573] = 384, - [574] = 574, - [575] = 575, - [576] = 366, - [577] = 538, - [578] = 373, - [579] = 368, - [580] = 364, - [581] = 517, + [562] = 360, + [563] = 563, + [564] = 564, + [565] = 378, + [566] = 379, + [567] = 381, + [568] = 382, + [569] = 358, + [570] = 548, + [571] = 368, + [572] = 369, + [573] = 561, + [574] = 535, + [575] = 360, + [576] = 554, + [577] = 533, + [578] = 578, + [579] = 579, + [580] = 163, + [581] = 581, [582] = 582, - [583] = 518, - [584] = 520, - [585] = 533, - [586] = 547, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 165, - [592] = 545, - [593] = 155, - [594] = 160, - [595] = 559, - [596] = 561, - [597] = 562, - [598] = 598, - [599] = 159, - [600] = 158, - [601] = 156, - [602] = 157, - [603] = 603, - [604] = 534, - [605] = 163, - [606] = 556, - [607] = 161, - [608] = 551, - [609] = 522, - [610] = 610, + [583] = 583, + [584] = 158, + [585] = 154, + [586] = 549, + [587] = 555, + [588] = 536, + [589] = 156, + [590] = 157, + [591] = 591, + [592] = 155, + [593] = 153, + [594] = 537, + [595] = 161, + [596] = 596, + [597] = 597, + [598] = 547, + [599] = 160, + [600] = 159, + [601] = 550, + [602] = 557, + [603] = 558, + [604] = 559, + [605] = 560, + [606] = 606, + [607] = 527, + [608] = 608, + [609] = 368, + [610] = 369, [611] = 611, [612] = 612, [613] = 613, [614] = 614, - [615] = 368, + [615] = 615, [616] = 616, [617] = 617, [618] = 618, - [619] = 587, - [620] = 588, + [619] = 619, + [620] = 620, [621] = 621, [622] = 622, [623] = 623, - [624] = 397, - [625] = 625, - [626] = 626, + [624] = 624, + [625] = 378, + [626] = 379, [627] = 381, [628] = 382, - [629] = 384, + [629] = 629, [630] = 630, [631] = 631, [632] = 632, - [633] = 582, + [633] = 633, [634] = 634, [635] = 635, - [636] = 589, + [636] = 636, [637] = 637, [638] = 638, [639] = 639, @@ -5763,262 +5872,262 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [647] = 647, [648] = 648, [649] = 649, - [650] = 650, + [650] = 203, [651] = 651, [652] = 652, - [653] = 653, - [654] = 373, + [653] = 454, + [654] = 654, [655] = 655, [656] = 656, [657] = 657, [658] = 658, - [659] = 659, + [659] = 161, [660] = 660, [661] = 661, - [662] = 662, - [663] = 663, - [664] = 664, + [662] = 160, + [663] = 159, + [664] = 163, [665] = 665, [666] = 666, - [667] = 667, + [667] = 564, [668] = 668, [669] = 669, [670] = 670, - [671] = 671, - [672] = 672, - [673] = 468, - [674] = 469, + [671] = 156, + [672] = 157, + [673] = 155, + [674] = 153, [675] = 675, [676] = 676, [677] = 677, [678] = 678, - [679] = 163, - [680] = 162, - [681] = 161, - [682] = 165, - [683] = 683, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 606, + [683] = 583, [684] = 684, - [685] = 205, + [685] = 685, [686] = 686, [687] = 687, - [688] = 688, + [688] = 563, [689] = 689, - [690] = 159, - [691] = 158, - [692] = 156, - [693] = 157, - [694] = 694, - [695] = 675, - [696] = 651, - [697] = 652, - [698] = 653, - [699] = 655, - [700] = 657, - [701] = 610, - [702] = 658, - [703] = 659, - [704] = 660, - [705] = 662, - [706] = 663, - [707] = 664, - [708] = 665, - [709] = 667, - [710] = 668, - [711] = 669, - [712] = 670, - [713] = 671, - [714] = 649, - [715] = 634, - [716] = 612, + [690] = 690, + [691] = 691, + [692] = 453, + [693] = 677, + [694] = 611, + [695] = 608, + [696] = 623, + [697] = 453, + [698] = 454, + [699] = 699, + [700] = 381, + [701] = 654, + [702] = 675, + [703] = 612, + [704] = 382, + [705] = 643, + [706] = 706, + [707] = 163, + [708] = 687, + [709] = 624, + [710] = 156, + [711] = 157, + [712] = 155, + [713] = 153, + [714] = 378, + [715] = 204, + [716] = 644, [717] = 717, - [718] = 382, - [719] = 661, - [720] = 635, - [721] = 621, - [722] = 613, - [723] = 381, - [724] = 384, - [725] = 622, - [726] = 623, - [727] = 687, - [728] = 626, - [729] = 630, - [730] = 611, - [731] = 631, - [732] = 637, - [733] = 638, - [734] = 614, - [735] = 735, - [736] = 688, - [737] = 676, - [738] = 677, - [739] = 639, - [740] = 650, - [741] = 469, - [742] = 742, + [718] = 631, + [719] = 641, + [720] = 619, + [721] = 629, + [722] = 632, + [723] = 655, + [724] = 633, + [725] = 630, + [726] = 635, + [727] = 656, + [728] = 636, + [729] = 729, + [730] = 645, + [731] = 680, + [732] = 681, + [733] = 657, + [734] = 634, + [735] = 637, + [736] = 684, + [737] = 615, + [738] = 685, + [739] = 379, + [740] = 620, + [741] = 686, + [742] = 616, [743] = 743, - [744] = 165, - [745] = 640, - [746] = 641, - [747] = 656, - [748] = 616, - [749] = 617, - [750] = 666, - [751] = 159, - [752] = 158, - [753] = 156, - [754] = 754, - [755] = 157, - [756] = 206, + [744] = 689, + [745] = 665, + [746] = 658, + [747] = 646, + [748] = 660, + [749] = 661, + [750] = 621, + [751] = 647, + [752] = 622, + [753] = 638, + [754] = 617, + [755] = 618, + [756] = 639, [757] = 642, - [758] = 618, - [759] = 643, - [760] = 644, - [761] = 632, - [762] = 625, - [763] = 645, - [764] = 646, - [765] = 648, - [766] = 694, - [767] = 647, - [768] = 678, - [769] = 683, - [770] = 684, - [771] = 397, - [772] = 686, - [773] = 468, - [774] = 205, - [775] = 775, + [758] = 666, + [759] = 649, + [760] = 668, + [761] = 690, + [762] = 648, + [763] = 640, + [764] = 670, + [765] = 669, + [766] = 613, + [767] = 678, + [768] = 679, + [769] = 691, + [770] = 652, + [771] = 614, + [772] = 203, + [773] = 773, + [774] = 774, + [775] = 773, [776] = 776, - [777] = 776, - [778] = 335, - [779] = 206, + [777] = 777, + [778] = 336, + [779] = 335, [780] = 780, - [781] = 781, - [782] = 334, - [783] = 783, + [781] = 204, + [782] = 782, + [783] = 335, [784] = 784, - [785] = 335, - [786] = 334, + [785] = 785, + [786] = 786, [787] = 787, - [788] = 349, - [789] = 350, - [790] = 335, - [791] = 334, - [792] = 792, + [788] = 336, + [789] = 342, + [790] = 790, + [791] = 335, + [792] = 335, [793] = 793, - [794] = 334, - [795] = 795, + [794] = 341, + [795] = 336, [796] = 796, [797] = 797, [798] = 798, - [799] = 799, - [800] = 800, - [801] = 335, - [802] = 787, - [803] = 334, - [804] = 795, - [805] = 350, - [806] = 354, - [807] = 335, - [808] = 350, - [809] = 349, - [810] = 357, - [811] = 365, - [812] = 363, - [813] = 799, - [814] = 349, - [815] = 350, - [816] = 798, - [817] = 349, - [818] = 784, - [819] = 819, - [820] = 365, - [821] = 365, - [822] = 819, - [823] = 354, - [824] = 363, - [825] = 335, - [826] = 357, - [827] = 819, - [828] = 365, - [829] = 363, - [830] = 363, - [831] = 357, - [832] = 350, - [833] = 819, - [834] = 354, - [835] = 349, - [836] = 357, - [837] = 334, - [838] = 354, - [839] = 363, - [840] = 349, - [841] = 365, - [842] = 819, - [843] = 350, - [844] = 357, - [845] = 354, - [846] = 365, - [847] = 847, - [848] = 848, - [849] = 354, - [850] = 850, - [851] = 850, - [852] = 847, - [853] = 850, - [854] = 357, - [855] = 850, - [856] = 848, - [857] = 850, - [858] = 850, - [859] = 850, - [860] = 850, - [861] = 850, - [862] = 848, - [863] = 850, - [864] = 850, - [865] = 850, - [866] = 850, - [867] = 850, - [868] = 850, - [869] = 363, - [870] = 850, - [871] = 819, - [872] = 850, - [873] = 850, + [799] = 336, + [800] = 796, + [801] = 342, + [802] = 356, + [803] = 357, + [804] = 785, + [805] = 786, + [806] = 341, + [807] = 342, + [808] = 336, + [809] = 341, + [810] = 798, + [811] = 787, + [812] = 812, + [813] = 353, + [814] = 342, + [815] = 341, + [816] = 355, + [817] = 335, + [818] = 336, + [819] = 357, + [820] = 342, + [821] = 355, + [822] = 353, + [823] = 356, + [824] = 356, + [825] = 812, + [826] = 335, + [827] = 341, + [828] = 357, + [829] = 812, + [830] = 357, + [831] = 356, + [832] = 355, + [833] = 812, + [834] = 355, + [835] = 353, + [836] = 353, + [837] = 356, + [838] = 812, + [839] = 353, + [840] = 341, + [841] = 342, + [842] = 357, + [843] = 355, + [844] = 844, + [845] = 844, + [846] = 844, + [847] = 844, + [848] = 356, + [849] = 844, + [850] = 844, + [851] = 851, + [852] = 844, + [853] = 844, + [854] = 844, + [855] = 844, + [856] = 844, + [857] = 357, + [858] = 851, + [859] = 859, + [860] = 844, + [861] = 355, + [862] = 844, + [863] = 844, + [864] = 844, + [865] = 844, + [866] = 844, + [867] = 353, + [868] = 859, + [869] = 812, + [870] = 851, + [871] = 844, + [872] = 872, + [873] = 872, [874] = 874, - [875] = 875, - [876] = 875, - [877] = 874, + [875] = 872, + [876] = 874, + [877] = 872, [878] = 874, [879] = 874, - [880] = 875, - [881] = 875, + [880] = 880, + [881] = 880, [882] = 882, - [883] = 882, - [884] = 882, - [885] = 882, - [886] = 875, - [887] = 882, - [888] = 888, - [889] = 882, - [890] = 882, - [891] = 882, - [892] = 882, - [893] = 874, - [894] = 882, - [895] = 882, - [896] = 882, - [897] = 882, - [898] = 882, - [899] = 882, - [900] = 882, - [901] = 882, - [902] = 882, - [903] = 882, - [904] = 874, - [905] = 875, + [883] = 880, + [884] = 872, + [885] = 874, + [886] = 880, + [887] = 880, + [888] = 880, + [889] = 880, + [890] = 880, + [891] = 880, + [892] = 880, + [893] = 880, + [894] = 880, + [895] = 880, + [896] = 880, + [897] = 880, + [898] = 880, + [899] = 880, + [900] = 880, + [901] = 880, + [902] = 874, + [903] = 872, + [904] = 904, + [905] = 905, [906] = 906, [907] = 907, [908] = 908, @@ -6050,7 +6159,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [934] = 934, [935] = 935, [936] = 936, - [937] = 937, + [937] = 904, [938] = 938, [939] = 939, [940] = 940, @@ -6070,21 +6179,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [954] = 954, [955] = 955, [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 910, - [961] = 961, - [962] = 911, - [963] = 912, - [964] = 913, - [965] = 914, - [966] = 915, - [967] = 916, - [968] = 917, - [969] = 918, - [970] = 919, - [971] = 909, + [957] = 905, + [958] = 906, + [959] = 907, + [960] = 908, + [961] = 909, + [962] = 910, + [963] = 911, + [964] = 912, + [965] = 913, + [966] = 914, + [967] = 915, + [968] = 916, + [969] = 917, + [970] = 918, + [971] = 919, [972] = 920, [973] = 921, [974] = 922, @@ -6101,11 +6210,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [985] = 933, [986] = 934, [987] = 935, - [988] = 936, - [989] = 937, + [988] = 956, + [989] = 989, [990] = 938, [991] = 939, - [992] = 961, + [992] = 940, [993] = 941, [994] = 942, [995] = 943, @@ -6122,21 +6231,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1006] = 954, [1007] = 955, [1008] = 956, - [1009] = 957, - [1010] = 958, - [1011] = 959, - [1012] = 910, - [1013] = 961, - [1014] = 911, - [1015] = 912, - [1016] = 913, - [1017] = 914, - [1018] = 915, - [1019] = 916, - [1020] = 917, - [1021] = 918, - [1022] = 919, - [1023] = 909, + [1009] = 905, + [1010] = 906, + [1011] = 907, + [1012] = 908, + [1013] = 909, + [1014] = 910, + [1015] = 911, + [1016] = 912, + [1017] = 913, + [1018] = 914, + [1019] = 915, + [1020] = 916, + [1021] = 917, + [1022] = 918, + [1023] = 919, [1024] = 920, [1025] = 921, [1026] = 922, @@ -6154,1296 +6263,1296 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1038] = 934, [1039] = 935, [1040] = 936, - [1041] = 937, - [1042] = 938, - [1043] = 939, - [1044] = 940, - [1045] = 941, - [1046] = 942, - [1047] = 943, - [1048] = 944, - [1049] = 945, - [1050] = 946, - [1051] = 947, - [1052] = 948, - [1053] = 949, - [1054] = 950, - [1055] = 951, - [1056] = 952, - [1057] = 953, - [1058] = 954, - [1059] = 955, - [1060] = 956, - [1061] = 957, - [1062] = 958, - [1063] = 959, - [1064] = 940, + [1041] = 1041, + [1042] = 1042, + [1043] = 904, + [1044] = 938, + [1045] = 939, + [1046] = 940, + [1047] = 941, + [1048] = 942, + [1049] = 943, + [1050] = 944, + [1051] = 945, + [1052] = 946, + [1053] = 947, + [1054] = 948, + [1055] = 949, + [1056] = 950, + [1057] = 951, + [1058] = 952, + [1059] = 953, + [1060] = 954, + [1061] = 955, + [1062] = 936, + [1063] = 1063, + [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1065, + [1067] = 1067, [1068] = 1068, [1069] = 1069, - [1070] = 1070, + [1070] = 1063, [1071] = 1071, [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1068, + [1073] = 1071, + [1074] = 1066, + [1075] = 1072, + [1076] = 1076, [1077] = 1077, - [1078] = 1069, - [1079] = 1070, - [1080] = 1071, - [1081] = 1072, - [1082] = 1073, - [1083] = 1074, - [1084] = 1075, - [1085] = 1068, - [1086] = 1077, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1087, - [1092] = 1088, - [1093] = 1089, - [1094] = 1090, - [1095] = 1069, - [1096] = 1070, - [1097] = 1071, - [1098] = 1072, - [1099] = 1073, - [1100] = 1074, - [1101] = 1075, - [1102] = 1068, - [1103] = 1077, - [1104] = 1087, - [1105] = 1088, - [1106] = 1089, - [1107] = 1090, - [1108] = 1074, - [1109] = 1075, - [1110] = 1068, - [1111] = 1077, - [1112] = 1087, - [1113] = 1113, - [1114] = 1088, - [1115] = 1089, - [1116] = 1073, - [1117] = 1069, - [1118] = 1070, - [1119] = 1071, - [1120] = 1072, - [1121] = 1073, - [1122] = 1074, - [1123] = 1075, - [1124] = 1068, - [1125] = 1077, - [1126] = 1087, - [1127] = 1088, - [1128] = 1089, - [1129] = 1090, - [1130] = 1069, - [1131] = 1070, - [1132] = 1071, - [1133] = 1072, - [1134] = 1073, - [1135] = 1074, - [1136] = 1069, - [1137] = 1070, - [1138] = 1071, - [1139] = 1072, - [1140] = 1073, - [1141] = 1074, - [1142] = 1075, - [1143] = 1070, - [1144] = 1077, - [1145] = 1087, - [1146] = 1088, - [1147] = 1089, - [1148] = 1090, - [1149] = 1075, - [1150] = 1068, - [1151] = 1077, - [1152] = 1087, - [1153] = 1088, - [1154] = 1089, - [1155] = 1090, - [1156] = 1090, - [1157] = 1069, - [1158] = 1072, - [1159] = 1071, - [1160] = 1113, - [1161] = 1113, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1064, + [1082] = 1065, + [1083] = 1066, + [1084] = 1067, + [1085] = 1077, + [1086] = 1078, + [1087] = 1079, + [1088] = 1080, + [1089] = 1064, + [1090] = 1065, + [1091] = 1066, + [1092] = 1067, + [1093] = 1068, + [1094] = 1069, + [1095] = 1063, + [1096] = 1071, + [1097] = 1072, + [1098] = 1067, + [1099] = 1068, + [1100] = 1077, + [1101] = 1078, + [1102] = 1079, + [1103] = 1080, + [1104] = 1064, + [1105] = 1065, + [1106] = 1066, + [1107] = 1067, + [1108] = 1068, + [1109] = 1069, + [1110] = 1063, + [1111] = 1080, + [1112] = 1072, + [1113] = 1069, + [1114] = 1063, + [1115] = 1077, + [1116] = 1078, + [1117] = 1079, + [1118] = 1080, + [1119] = 1064, + [1120] = 1065, + [1121] = 1066, + [1122] = 1067, + [1123] = 1068, + [1124] = 1069, + [1125] = 1063, + [1126] = 1071, + [1127] = 1072, + [1128] = 1071, + [1129] = 1072, + [1130] = 1077, + [1131] = 1078, + [1132] = 1079, + [1133] = 1080, + [1134] = 1064, + [1135] = 1065, + [1136] = 1066, + [1137] = 1067, + [1138] = 1068, + [1139] = 1139, + [1140] = 1068, + [1141] = 1069, + [1142] = 1077, + [1143] = 1071, + [1144] = 1072, + [1145] = 1078, + [1146] = 1079, + [1147] = 1139, + [1148] = 1080, + [1149] = 1064, + [1150] = 1069, + [1151] = 1063, + [1152] = 1065, + [1153] = 1077, + [1154] = 1078, + [1155] = 1079, + [1156] = 1071, + [1157] = 1157, + [1158] = 1157, + [1159] = 1157, + [1160] = 1160, + [1161] = 1161, [1162] = 1162, - [1163] = 1113, - [1164] = 1164, + [1163] = 1162, + [1164] = 1161, [1165] = 1165, - [1166] = 1166, - [1167] = 1165, - [1168] = 1164, + [1166] = 1160, + [1167] = 1157, + [1168] = 1168, [1169] = 1169, - [1170] = 1166, + [1170] = 203, [1171] = 1171, [1172] = 1172, - [1173] = 205, + [1173] = 1173, [1174] = 1174, - [1175] = 1175, - [1176] = 1176, - [1177] = 1113, - [1178] = 1178, + [1175] = 1157, + [1176] = 336, + [1177] = 336, + [1178] = 335, [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 1182, - [1183] = 206, + [1180] = 336, + [1181] = 335, + [1182] = 204, + [1183] = 1183, [1184] = 1184, - [1185] = 334, + [1185] = 335, [1186] = 1186, - [1187] = 334, - [1188] = 335, - [1189] = 335, - [1190] = 1178, - [1191] = 1186, - [1192] = 335, - [1193] = 334, + [1187] = 1187, + [1188] = 1188, + [1189] = 1188, + [1190] = 1184, + [1191] = 1191, + [1192] = 342, + [1193] = 1193, [1194] = 1194, - [1195] = 349, - [1196] = 350, - [1197] = 1197, - [1198] = 350, - [1199] = 335, - [1200] = 1197, - [1201] = 350, - [1202] = 334, - [1203] = 349, - [1204] = 1194, - [1205] = 349, - [1206] = 1206, - [1207] = 334, - [1208] = 819, - [1209] = 354, - [1210] = 819, - [1211] = 819, - [1212] = 1206, - [1213] = 357, - [1214] = 357, - [1215] = 349, - [1216] = 357, - [1217] = 350, - [1218] = 365, - [1219] = 363, - [1220] = 365, - [1221] = 354, - [1222] = 1222, - [1223] = 1222, - [1224] = 363, - [1225] = 354, - [1226] = 335, - [1227] = 1206, - [1228] = 365, - [1229] = 1222, - [1230] = 363, + [1195] = 342, + [1196] = 341, + [1197] = 342, + [1198] = 336, + [1199] = 1194, + [1200] = 1193, + [1201] = 341, + [1202] = 341, + [1203] = 335, + [1204] = 1204, + [1205] = 1205, + [1206] = 353, + [1207] = 357, + [1208] = 353, + [1209] = 812, + [1210] = 336, + [1211] = 355, + [1212] = 356, + [1213] = 1204, + [1214] = 1205, + [1215] = 357, + [1216] = 335, + [1217] = 353, + [1218] = 355, + [1219] = 1204, + [1220] = 341, + [1221] = 342, + [1222] = 356, + [1223] = 355, + [1224] = 812, + [1225] = 812, + [1226] = 356, + [1227] = 357, + [1228] = 1205, + [1229] = 812, + [1230] = 353, [1231] = 1231, [1232] = 1232, - [1233] = 349, + [1233] = 1232, [1234] = 1234, - [1235] = 350, - [1236] = 354, - [1237] = 357, - [1238] = 365, - [1239] = 363, - [1240] = 1240, - [1241] = 1231, - [1242] = 1234, - [1243] = 1243, - [1244] = 1244, - [1245] = 1232, - [1246] = 1240, - [1247] = 1247, - [1248] = 1247, - [1249] = 819, - [1250] = 1243, - [1251] = 1251, - [1252] = 321, - [1253] = 357, - [1254] = 354, - [1255] = 363, - [1256] = 819, - [1257] = 365, - [1258] = 1251, - [1259] = 338, - [1260] = 335, - [1261] = 321, - [1262] = 337, - [1263] = 334, - [1264] = 336, - [1265] = 1265, - [1266] = 349, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 355, + [1239] = 341, + [1240] = 356, + [1241] = 357, + [1242] = 1235, + [1243] = 1231, + [1244] = 1236, + [1245] = 1245, + [1246] = 1237, + [1247] = 1234, + [1248] = 342, + [1249] = 353, + [1250] = 1250, + [1251] = 355, + [1252] = 314, + [1253] = 356, + [1254] = 357, + [1255] = 1250, + [1256] = 812, + [1257] = 336, + [1258] = 335, + [1259] = 314, + [1260] = 334, + [1261] = 333, + [1262] = 332, + [1263] = 1263, + [1264] = 1264, + [1265] = 336, + [1266] = 335, [1267] = 1267, - [1268] = 1268, - [1269] = 1265, - [1270] = 1270, - [1271] = 350, - [1272] = 1267, - [1273] = 1267, - [1274] = 1274, - [1275] = 152, - [1276] = 334, - [1277] = 345, - [1278] = 1267, - [1279] = 346, - [1280] = 347, - [1281] = 1267, - [1282] = 1268, - [1283] = 1265, - [1284] = 1270, - [1285] = 348, - [1286] = 152, - [1287] = 1267, - [1288] = 1268, - [1289] = 1265, - [1290] = 1270, - [1291] = 337, - [1292] = 1292, - [1293] = 1268, - [1294] = 1267, - [1295] = 1267, - [1296] = 1268, - [1297] = 1270, - [1298] = 1267, - [1299] = 1268, - [1300] = 1265, - [1301] = 1270, - [1302] = 1270, - [1303] = 336, - [1304] = 1267, - [1305] = 1292, - [1306] = 1265, - [1307] = 1270, - [1308] = 1265, - [1309] = 1265, - [1310] = 1268, - [1311] = 1267, - [1312] = 1268, - [1313] = 1265, - [1314] = 1270, - [1315] = 1267, - [1316] = 1268, - [1317] = 1265, - [1318] = 1270, - [1319] = 335, - [1320] = 1270, - [1321] = 1267, - [1322] = 1268, - [1323] = 1265, - [1324] = 1270, - [1325] = 1267, - [1326] = 1268, - [1327] = 1265, - [1328] = 1270, - [1329] = 1267, - [1330] = 1265, - [1331] = 1270, - [1332] = 1268, - [1333] = 1265, - [1334] = 1265, - [1335] = 1270, - [1336] = 1268, - [1337] = 338, - [1338] = 335, - [1339] = 334, - [1340] = 1268, - [1341] = 348, - [1342] = 364, - [1343] = 153, - [1344] = 366, - [1345] = 153, - [1346] = 349, - [1347] = 357, - [1348] = 1348, - [1349] = 365, - [1350] = 363, - [1351] = 874, - [1352] = 875, - [1353] = 350, - [1354] = 158, - [1355] = 156, - [1356] = 361, - [1357] = 354, - [1358] = 347, - [1359] = 152, - [1360] = 159, - [1361] = 360, - [1362] = 152, - [1363] = 874, - [1364] = 349, - [1365] = 345, - [1366] = 875, - [1367] = 874, - [1368] = 1274, - [1369] = 154, - [1370] = 875, - [1371] = 335, - [1372] = 334, - [1373] = 154, - [1374] = 350, - [1375] = 346, - [1376] = 157, - [1377] = 357, - [1378] = 363, - [1379] = 154, - [1380] = 360, - [1381] = 361, - [1382] = 1382, - [1383] = 155, - [1384] = 160, - [1385] = 152, - [1386] = 373, - [1387] = 368, - [1388] = 159, - [1389] = 158, - [1390] = 156, - [1391] = 157, - [1392] = 154, - [1393] = 153, - [1394] = 366, - [1395] = 349, - [1396] = 350, - [1397] = 160, - [1398] = 1398, - [1399] = 874, - [1400] = 354, - [1401] = 875, - [1402] = 365, - [1403] = 363, - [1404] = 354, - [1405] = 364, - [1406] = 357, - [1407] = 153, - [1408] = 365, - [1409] = 155, - [1410] = 365, - [1411] = 153, - [1412] = 397, - [1413] = 156, - [1414] = 381, - [1415] = 162, - [1416] = 382, - [1417] = 384, - [1418] = 157, - [1419] = 155, - [1420] = 373, - [1421] = 155, - [1422] = 160, - [1423] = 159, - [1424] = 163, - [1425] = 354, - [1426] = 154, - [1427] = 357, - [1428] = 335, - [1429] = 1382, - [1430] = 363, - [1431] = 368, - [1432] = 366, - [1433] = 159, - [1434] = 158, - [1435] = 156, - [1436] = 157, - [1437] = 364, - [1438] = 874, - [1439] = 875, - [1440] = 162, - [1441] = 161, - [1442] = 334, - [1443] = 158, - [1444] = 390, - [1445] = 160, - [1446] = 163, - [1447] = 386, - [1448] = 161, - [1449] = 407, - [1450] = 373, - [1451] = 366, - [1452] = 368, - [1453] = 162, - [1454] = 397, - [1455] = 162, - [1456] = 161, - [1457] = 349, - [1458] = 165, - [1459] = 163, - [1460] = 381, - [1461] = 390, - [1462] = 159, - [1463] = 405, - [1464] = 364, + [1268] = 150, + [1269] = 1263, + [1270] = 348, + [1271] = 1271, + [1272] = 337, + [1273] = 346, + [1274] = 347, + [1275] = 1275, + [1276] = 1276, + [1277] = 336, + [1278] = 1264, + [1279] = 335, + [1280] = 1263, + [1281] = 333, + [1282] = 1275, + [1283] = 1271, + [1284] = 1275, + [1285] = 1276, + [1286] = 1276, + [1287] = 1263, + [1288] = 150, + [1289] = 332, + [1290] = 1263, + [1291] = 1271, + [1292] = 1275, + [1293] = 1276, + [1294] = 1263, + [1295] = 1271, + [1296] = 1275, + [1297] = 1276, + [1298] = 1263, + [1299] = 1271, + [1300] = 1275, + [1301] = 1276, + [1302] = 1263, + [1303] = 1271, + [1304] = 1275, + [1305] = 1276, + [1306] = 1263, + [1307] = 1271, + [1308] = 1275, + [1309] = 1276, + [1310] = 1263, + [1311] = 1271, + [1312] = 1275, + [1313] = 1276, + [1314] = 341, + [1315] = 1263, + [1316] = 1271, + [1317] = 1275, + [1318] = 1276, + [1319] = 1263, + [1320] = 1263, + [1321] = 1271, + [1322] = 1275, + [1323] = 1276, + [1324] = 1263, + [1325] = 1271, + [1326] = 1275, + [1327] = 1276, + [1328] = 334, + [1329] = 1263, + [1330] = 1271, + [1331] = 1275, + [1332] = 1276, + [1333] = 1275, + [1334] = 1271, + [1335] = 342, + [1336] = 1275, + [1337] = 1276, + [1338] = 1271, + [1339] = 354, + [1340] = 335, + [1341] = 341, + [1342] = 360, + [1343] = 1343, + [1344] = 342, + [1345] = 341, + [1346] = 152, + [1347] = 342, + [1348] = 150, + [1349] = 151, + [1350] = 353, + [1351] = 872, + [1352] = 874, + [1353] = 346, + [1354] = 152, + [1355] = 151, + [1356] = 872, + [1357] = 874, + [1358] = 872, + [1359] = 874, + [1360] = 348, + [1361] = 355, + [1362] = 1267, + [1363] = 352, + [1364] = 356, + [1365] = 357, + [1366] = 358, + [1367] = 150, + [1368] = 347, + [1369] = 336, + [1370] = 337, + [1371] = 153, + [1372] = 332, + [1373] = 153, + [1374] = 354, + [1375] = 353, + [1376] = 155, + [1377] = 358, + [1378] = 1378, + [1379] = 152, + [1380] = 356, + [1381] = 158, + [1382] = 154, + [1383] = 357, + [1384] = 1384, + [1385] = 355, + [1386] = 156, + [1387] = 355, + [1388] = 150, + [1389] = 155, + [1390] = 353, + [1391] = 342, + [1392] = 360, + [1393] = 156, + [1394] = 356, + [1395] = 157, + [1396] = 158, + [1397] = 872, + [1398] = 368, + [1399] = 152, + [1400] = 1400, + [1401] = 151, + [1402] = 369, + [1403] = 151, + [1404] = 314, + [1405] = 154, + [1406] = 874, + [1407] = 357, + [1408] = 341, + [1409] = 352, + [1410] = 157, + [1411] = 1411, + [1412] = 156, + [1413] = 161, + [1414] = 334, + [1415] = 357, + [1416] = 160, + [1417] = 159, + [1418] = 156, + [1419] = 157, + [1420] = 155, + [1421] = 157, + [1422] = 358, + [1423] = 155, + [1424] = 153, + [1425] = 161, + [1426] = 153, + [1427] = 160, + [1428] = 159, + [1429] = 158, + [1430] = 154, + [1431] = 355, + [1432] = 333, + [1433] = 368, + [1434] = 152, + [1435] = 151, + [1436] = 1378, + [1437] = 369, + [1438] = 348, + [1439] = 360, + [1440] = 1440, + [1441] = 337, + [1442] = 346, + [1443] = 872, + [1444] = 874, + [1445] = 389, + [1446] = 347, + [1447] = 390, + [1448] = 336, + [1449] = 356, + [1450] = 378, + [1451] = 379, + [1452] = 158, + [1453] = 154, + [1454] = 335, + [1455] = 381, + [1456] = 382, + [1457] = 353, + [1458] = 314, + [1459] = 159, + [1460] = 378, + [1461] = 403, + [1462] = 360, + [1463] = 368, + [1464] = 358, [1465] = 158, - [1466] = 165, - [1467] = 406, - [1468] = 161, - [1469] = 156, - [1470] = 409, - [1471] = 410, - [1472] = 411, - [1473] = 160, - [1474] = 414, - [1475] = 415, - [1476] = 416, - [1477] = 417, - [1478] = 418, - [1479] = 419, - [1480] = 420, - [1481] = 421, - [1482] = 422, - [1483] = 1483, - [1484] = 450, - [1485] = 424, - [1486] = 425, - [1487] = 426, - [1488] = 427, - [1489] = 163, - [1490] = 366, - [1491] = 155, - [1492] = 152, - [1493] = 386, - [1494] = 364, - [1495] = 157, - [1496] = 408, - [1497] = 165, - [1498] = 350, - [1499] = 382, - [1500] = 384, - [1501] = 413, - [1502] = 1502, - [1503] = 152, - [1504] = 450, - [1505] = 424, - [1506] = 425, - [1507] = 364, - [1508] = 426, - [1509] = 1509, - [1510] = 409, - [1511] = 427, - [1512] = 354, - [1513] = 406, - [1514] = 492, - [1515] = 159, - [1516] = 407, - [1517] = 460, - [1518] = 469, - [1519] = 461, - [1520] = 357, - [1521] = 158, - [1522] = 156, - [1523] = 335, - [1524] = 397, - [1525] = 373, - [1526] = 381, - [1527] = 497, - [1528] = 382, - [1529] = 384, - [1530] = 410, - [1531] = 411, - [1532] = 466, - [1533] = 334, - [1534] = 408, - [1535] = 366, - [1536] = 165, - [1537] = 413, - [1538] = 1509, - [1539] = 157, - [1540] = 360, - [1541] = 163, - [1542] = 414, - [1543] = 415, - [1544] = 1544, - [1545] = 155, - [1546] = 160, - [1547] = 162, - [1548] = 161, - [1549] = 416, - [1550] = 154, - [1551] = 363, - [1552] = 417, - [1553] = 153, - [1554] = 418, - [1555] = 368, - [1556] = 419, - [1557] = 373, - [1558] = 420, - [1559] = 421, - [1560] = 361, - [1561] = 422, - [1562] = 1509, - [1563] = 152, - [1564] = 368, - [1565] = 494, - [1566] = 1566, - [1567] = 499, - [1568] = 468, - [1569] = 405, - [1570] = 365, - [1571] = 1544, - [1572] = 425, - [1573] = 426, - [1574] = 427, - [1575] = 410, - [1576] = 397, - [1577] = 158, - [1578] = 1502, - [1579] = 364, - [1580] = 494, - [1581] = 1581, - [1582] = 499, - [1583] = 497, - [1584] = 1584, - [1585] = 551, - [1586] = 156, - [1587] = 165, - [1588] = 157, - [1589] = 534, - [1590] = 163, - [1591] = 154, - [1592] = 349, - [1593] = 154, - [1594] = 381, - [1595] = 418, - [1596] = 1596, - [1597] = 409, - [1598] = 416, - [1599] = 153, - [1600] = 533, - [1601] = 162, - [1602] = 161, - [1603] = 562, - [1604] = 419, - [1605] = 468, - [1606] = 152, - [1607] = 361, - [1608] = 373, - [1609] = 559, - [1610] = 155, - [1611] = 160, - [1612] = 556, - [1613] = 417, - [1614] = 153, - [1615] = 415, - [1616] = 366, - [1617] = 397, - [1618] = 1566, - [1619] = 411, - [1620] = 561, - [1621] = 469, - [1622] = 420, - [1623] = 525, - [1624] = 421, - [1625] = 492, - [1626] = 1626, - [1627] = 422, - [1628] = 450, - [1629] = 381, - [1630] = 384, - [1631] = 460, - [1632] = 461, - [1633] = 1509, - [1634] = 413, - [1635] = 382, - [1636] = 384, - [1637] = 360, - [1638] = 414, + [1466] = 154, + [1467] = 404, + [1468] = 379, + [1469] = 405, + [1470] = 406, + [1471] = 381, + [1472] = 382, + [1473] = 407, + [1474] = 410, + [1475] = 163, + [1476] = 412, + [1477] = 414, + [1478] = 163, + [1479] = 416, + [1480] = 417, + [1481] = 1481, + [1482] = 161, + [1483] = 156, + [1484] = 360, + [1485] = 369, + [1486] = 160, + [1487] = 445, + [1488] = 389, + [1489] = 419, + [1490] = 341, + [1491] = 332, + [1492] = 157, + [1493] = 155, + [1494] = 342, + [1495] = 159, + [1496] = 153, + [1497] = 425, + [1498] = 422, + [1499] = 161, + [1500] = 1400, + [1501] = 421, + [1502] = 401, + [1503] = 402, + [1504] = 390, + [1505] = 334, + [1506] = 423, + [1507] = 160, + [1508] = 163, + [1509] = 444, + [1510] = 333, + [1511] = 358, + [1512] = 426, + [1513] = 439, + [1514] = 150, + [1515] = 418, + [1516] = 1440, + [1517] = 357, + [1518] = 422, + [1519] = 337, + [1520] = 346, + [1521] = 445, + [1522] = 347, + [1523] = 1411, + [1524] = 1524, + [1525] = 405, + [1526] = 150, + [1527] = 360, + [1528] = 379, + [1529] = 406, + [1530] = 163, + [1531] = 407, + [1532] = 368, + [1533] = 161, + [1534] = 453, + [1535] = 474, + [1536] = 426, + [1537] = 403, + [1538] = 1538, + [1539] = 410, + [1540] = 454, + [1541] = 369, + [1542] = 160, + [1543] = 404, + [1544] = 444, + [1545] = 336, + [1546] = 159, + [1547] = 152, + [1548] = 452, + [1549] = 412, + [1550] = 358, + [1551] = 151, + [1552] = 335, + [1553] = 414, + [1554] = 416, + [1555] = 358, + [1556] = 157, + [1557] = 456, + [1558] = 500, + [1559] = 450, + [1560] = 1267, + [1561] = 417, + [1562] = 401, + [1563] = 418, + [1564] = 402, + [1565] = 381, + [1566] = 419, + [1567] = 423, + [1568] = 378, + [1569] = 353, + [1570] = 382, + [1571] = 156, + [1572] = 480, + [1573] = 360, + [1574] = 348, + [1575] = 421, + [1576] = 1576, + [1577] = 425, + [1578] = 356, + [1579] = 352, + [1580] = 1524, + [1581] = 150, + [1582] = 355, + [1583] = 158, + [1584] = 155, + [1585] = 154, + [1586] = 354, + [1587] = 1524, + [1588] = 368, + [1589] = 153, + [1590] = 369, + [1591] = 439, + [1592] = 455, + [1593] = 406, + [1594] = 450, + [1595] = 1595, + [1596] = 341, + [1597] = 404, + [1598] = 549, + [1599] = 405, + [1600] = 352, + [1601] = 1601, + [1602] = 548, + [1603] = 382, + [1604] = 555, + [1605] = 474, + [1606] = 561, + [1607] = 536, + [1608] = 535, + [1609] = 480, + [1610] = 1610, + [1611] = 407, + [1612] = 158, + [1613] = 154, + [1614] = 421, + [1615] = 379, + [1616] = 554, + [1617] = 1617, + [1618] = 1618, + [1619] = 410, + [1620] = 412, + [1621] = 151, + [1622] = 360, + [1623] = 368, + [1624] = 152, + [1625] = 1625, + [1626] = 533, + [1627] = 444, + [1628] = 414, + [1629] = 1629, + [1630] = 416, + [1631] = 1538, + [1632] = 417, + [1633] = 418, + [1634] = 537, + [1635] = 368, + [1636] = 419, + [1637] = 369, + [1638] = 452, [1639] = 1639, - [1640] = 159, - [1641] = 545, - [1642] = 350, - [1643] = 368, - [1644] = 1644, - [1645] = 532, - [1646] = 424, - [1647] = 1647, - [1648] = 1648, - [1649] = 1649, - [1650] = 466, - [1651] = 382, - [1652] = 162, - [1653] = 408, - [1654] = 1654, - [1655] = 1626, - [1656] = 1584, - [1657] = 159, - [1658] = 364, - [1659] = 158, - [1660] = 156, - [1661] = 157, - [1662] = 406, - [1663] = 163, - [1664] = 165, - [1665] = 161, - [1666] = 1666, - [1667] = 545, - [1668] = 1668, - [1669] = 559, - [1670] = 561, - [1671] = 562, - [1672] = 373, - [1673] = 368, - [1674] = 1639, - [1675] = 534, - [1676] = 1644, + [1640] = 527, + [1641] = 342, + [1642] = 1524, + [1643] = 161, + [1644] = 152, + [1645] = 1267, + [1646] = 439, + [1647] = 159, + [1648] = 150, + [1649] = 354, + [1650] = 163, + [1651] = 1651, + [1652] = 401, + [1653] = 455, + [1654] = 381, + [1655] = 156, + [1656] = 378, + [1657] = 369, + [1658] = 157, + [1659] = 155, + [1660] = 402, + [1661] = 379, + [1662] = 153, + [1663] = 445, + [1664] = 381, + [1665] = 382, + [1666] = 453, + [1667] = 403, + [1668] = 1576, + [1669] = 151, + [1670] = 456, + [1671] = 500, + [1672] = 454, + [1673] = 160, + [1674] = 378, + [1675] = 358, + [1676] = 161, [1677] = 1677, - [1678] = 354, - [1679] = 397, - [1680] = 357, - [1681] = 154, - [1682] = 494, - [1683] = 381, - [1684] = 365, - [1685] = 159, - [1686] = 158, - [1687] = 156, - [1688] = 157, - [1689] = 1648, - [1690] = 1649, - [1691] = 382, - [1692] = 562, - [1693] = 384, - [1694] = 1694, - [1695] = 152, - [1696] = 1696, - [1697] = 1697, - [1698] = 582, - [1699] = 360, - [1700] = 153, - [1701] = 361, - [1702] = 499, - [1703] = 534, - [1704] = 1704, + [1678] = 156, + [1679] = 157, + [1680] = 155, + [1681] = 358, + [1682] = 153, + [1683] = 554, + [1684] = 358, + [1685] = 160, + [1686] = 159, + [1687] = 533, + [1688] = 1618, + [1689] = 1629, + [1690] = 378, + [1691] = 1625, + [1692] = 1692, + [1693] = 360, + [1694] = 163, + [1695] = 379, + [1696] = 425, + [1697] = 527, + [1698] = 549, + [1699] = 381, + [1700] = 527, + [1701] = 382, + [1702] = 549, + [1703] = 555, + [1704] = 536, [1705] = 1705, - [1706] = 1666, - [1707] = 360, - [1708] = 155, - [1709] = 160, - [1710] = 1710, - [1711] = 556, - [1712] = 154, - [1713] = 153, - [1714] = 405, - [1715] = 561, - [1716] = 551, - [1717] = 533, - [1718] = 361, - [1719] = 366, - [1720] = 1596, - [1721] = 525, - [1722] = 532, - [1723] = 407, - [1724] = 559, - [1725] = 545, - [1726] = 363, - [1727] = 1710, - [1728] = 1728, - [1729] = 1729, - [1730] = 397, - [1731] = 562, + [1706] = 537, + [1707] = 1601, + [1708] = 1617, + [1709] = 555, + [1710] = 353, + [1711] = 536, + [1712] = 426, + [1713] = 378, + [1714] = 355, + [1715] = 422, + [1716] = 379, + [1717] = 356, + [1718] = 1718, + [1719] = 368, + [1720] = 535, + [1721] = 369, + [1722] = 357, + [1723] = 382, + [1724] = 156, + [1725] = 157, + [1726] = 155, + [1727] = 1727, + [1728] = 150, + [1729] = 153, + [1730] = 1651, + [1731] = 1731, [1732] = 1732, - [1733] = 1733, - [1734] = 1734, - [1735] = 1735, - [1736] = 381, - [1737] = 611, - [1738] = 534, - [1739] = 382, - [1740] = 621, - [1741] = 384, - [1742] = 639, - [1743] = 155, - [1744] = 160, - [1745] = 1745, - [1746] = 1746, - [1747] = 622, - [1748] = 623, - [1749] = 642, - [1750] = 545, - [1751] = 630, - [1752] = 645, - [1753] = 646, - [1754] = 648, - [1755] = 650, - [1756] = 1666, - [1757] = 651, - [1758] = 652, - [1759] = 653, + [1733] = 152, + [1734] = 564, + [1735] = 1595, + [1736] = 352, + [1737] = 423, + [1738] = 474, + [1739] = 354, + [1740] = 453, + [1741] = 151, + [1742] = 480, + [1743] = 352, + [1744] = 454, + [1745] = 1692, + [1746] = 158, + [1747] = 154, + [1748] = 1748, + [1749] = 360, + [1750] = 152, + [1751] = 1751, + [1752] = 151, + [1753] = 1753, + [1754] = 537, + [1755] = 548, + [1756] = 354, + [1757] = 561, + [1758] = 381, + [1759] = 613, [1760] = 655, [1761] = 657, - [1762] = 610, - [1763] = 658, - [1764] = 368, - [1765] = 1704, - [1766] = 659, - [1767] = 660, - [1768] = 662, - [1769] = 663, - [1770] = 664, + [1762] = 390, + [1763] = 153, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1748, [1771] = 665, - [1772] = 667, - [1773] = 668, - [1774] = 669, - [1775] = 670, - [1776] = 634, - [1777] = 582, - [1778] = 635, - [1779] = 159, + [1772] = 624, + [1773] = 1705, + [1774] = 527, + [1775] = 631, + [1776] = 378, + [1777] = 632, + [1778] = 633, + [1779] = 634, [1780] = 1780, - [1781] = 625, + [1781] = 379, [1782] = 1782, - [1783] = 1783, - [1784] = 1666, - [1785] = 1694, - [1786] = 612, - [1787] = 637, - [1788] = 638, - [1789] = 1694, - [1790] = 613, - [1791] = 688, - [1792] = 640, - [1793] = 641, - [1794] = 1697, - [1795] = 163, - [1796] = 156, - [1797] = 468, - [1798] = 1696, - [1799] = 643, - [1800] = 644, - [1801] = 1697, - [1802] = 614, - [1803] = 616, - [1804] = 617, - [1805] = 618, - [1806] = 469, - [1807] = 154, - [1808] = 162, - [1809] = 161, - [1810] = 1780, - [1811] = 1811, - [1812] = 1812, - [1813] = 1668, - [1814] = 157, - [1815] = 155, - [1816] = 160, - [1817] = 694, - [1818] = 626, - [1819] = 631, - [1820] = 205, - [1821] = 1821, - [1822] = 1822, - [1823] = 1823, - [1824] = 1824, - [1825] = 1825, - [1826] = 159, - [1827] = 1745, - [1828] = 1746, - [1829] = 373, - [1830] = 158, - [1831] = 156, - [1832] = 153, - [1833] = 678, - [1834] = 1823, - [1835] = 683, - [1836] = 684, - [1837] = 632, - [1838] = 1838, - [1839] = 1839, - [1840] = 165, - [1841] = 1824, - [1842] = 1822, - [1843] = 1825, - [1844] = 1705, + [1783] = 368, + [1784] = 381, + [1785] = 637, + [1786] = 382, + [1787] = 638, + [1788] = 639, + [1789] = 1789, + [1790] = 1790, + [1791] = 640, + [1792] = 641, + [1793] = 642, + [1794] = 643, + [1795] = 644, + [1796] = 646, + [1797] = 647, + [1798] = 564, + [1799] = 369, + [1800] = 203, + [1801] = 1801, + [1802] = 549, + [1803] = 648, + [1804] = 635, + [1805] = 622, + [1806] = 555, + [1807] = 536, + [1808] = 608, + [1809] = 654, + [1810] = 658, + [1811] = 656, + [1812] = 666, + [1813] = 668, + [1814] = 670, + [1815] = 677, + [1816] = 678, + [1817] = 679, + [1818] = 158, + [1819] = 154, + [1820] = 691, + [1821] = 1692, + [1822] = 652, + [1823] = 611, + [1824] = 612, + [1825] = 614, + [1826] = 615, + [1827] = 616, + [1828] = 617, + [1829] = 618, + [1830] = 619, + [1831] = 389, + [1832] = 621, + [1833] = 622, + [1834] = 623, + [1835] = 675, + [1836] = 687, + [1837] = 629, + [1838] = 630, + [1839] = 1727, + [1840] = 636, + [1841] = 645, + [1842] = 1732, + [1843] = 161, + [1844] = 1753, [1845] = 1845, - [1846] = 1846, - [1847] = 559, - [1848] = 157, - [1849] = 669, - [1850] = 670, - [1851] = 561, - [1852] = 686, - [1853] = 687, - [1854] = 158, - [1855] = 1855, - [1856] = 1729, - [1857] = 156, - [1858] = 1697, - [1859] = 1845, - [1860] = 157, - [1861] = 626, - [1862] = 1862, - [1863] = 630, - [1864] = 631, - [1865] = 384, - [1866] = 686, - [1867] = 687, - [1868] = 639, - [1869] = 688, - [1870] = 645, - [1871] = 1732, + [1846] = 660, + [1847] = 661, + [1848] = 1848, + [1849] = 537, + [1850] = 1850, + [1851] = 160, + [1852] = 159, + [1853] = 368, + [1854] = 1854, + [1855] = 1692, + [1856] = 1848, + [1857] = 453, + [1858] = 158, + [1859] = 154, + [1860] = 623, + [1861] = 454, + [1862] = 156, + [1863] = 157, + [1864] = 155, + [1865] = 152, + [1866] = 163, + [1867] = 153, + [1868] = 156, + [1869] = 1869, + [1870] = 1870, + [1871] = 1727, [1872] = 1872, - [1873] = 1733, - [1874] = 162, - [1875] = 161, - [1876] = 646, - [1877] = 632, - [1878] = 611, - [1879] = 612, - [1880] = 468, - [1881] = 613, - [1882] = 614, - [1883] = 616, - [1884] = 206, - [1885] = 617, - [1886] = 618, - [1887] = 648, - [1888] = 650, - [1889] = 651, - [1890] = 652, - [1891] = 653, - [1892] = 655, - [1893] = 657, - [1894] = 610, - [1895] = 658, - [1896] = 1896, - [1897] = 659, - [1898] = 660, - [1899] = 662, - [1900] = 663, - [1901] = 664, - [1902] = 665, - [1903] = 667, - [1904] = 668, - [1905] = 669, - [1906] = 1906, - [1907] = 670, - [1908] = 625, - [1909] = 1694, - [1910] = 637, - [1911] = 638, - [1912] = 469, - [1913] = 1913, - [1914] = 640, - [1915] = 641, - [1916] = 1783, - [1917] = 159, - [1918] = 158, - [1919] = 158, - [1920] = 157, - [1921] = 163, - [1922] = 634, - [1923] = 1846, - [1924] = 1821, - [1925] = 1697, - [1926] = 643, - [1927] = 644, - [1928] = 163, - [1929] = 635, - [1930] = 621, - [1931] = 1931, - [1932] = 162, - [1933] = 161, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1913, - [1943] = 1943, - [1944] = 1944, - [1945] = 165, - [1946] = 1734, - [1947] = 1639, - [1948] = 1644, - [1949] = 1949, - [1950] = 397, - [1951] = 622, - [1952] = 155, - [1953] = 623, - [1954] = 160, - [1955] = 642, - [1956] = 1735, - [1957] = 694, - [1958] = 1958, - [1959] = 1782, - [1960] = 678, - [1961] = 1838, - [1962] = 1811, - [1963] = 1728, - [1964] = 382, - [1965] = 159, - [1966] = 381, - [1967] = 1812, - [1968] = 683, - [1969] = 1694, - [1970] = 1648, - [1971] = 1649, - [1972] = 582, - [1973] = 684, - [1974] = 1958, - [1975] = 1913, - [1976] = 1958, + [1873] = 1873, + [1874] = 1874, + [1875] = 1875, + [1876] = 1768, + [1877] = 1769, + [1878] = 369, + [1879] = 151, + [1880] = 157, + [1881] = 1881, + [1882] = 1872, + [1883] = 155, + [1884] = 1731, + [1885] = 1732, + [1886] = 1873, + [1887] = 1874, + [1888] = 1875, + [1889] = 1751, + [1890] = 620, + [1891] = 1891, + [1892] = 381, + [1893] = 1765, + [1894] = 1894, + [1895] = 204, + [1896] = 635, + [1897] = 624, + [1898] = 161, + [1899] = 382, + [1900] = 389, + [1901] = 156, + [1902] = 1727, + [1903] = 453, + [1904] = 157, + [1905] = 155, + [1906] = 1732, + [1907] = 608, + [1908] = 654, + [1909] = 379, + [1910] = 153, + [1911] = 658, + [1912] = 631, + [1913] = 1601, + [1914] = 455, + [1915] = 456, + [1916] = 1617, + [1917] = 632, + [1918] = 633, + [1919] = 634, + [1920] = 1780, + [1921] = 1782, + [1922] = 629, + [1923] = 630, + [1924] = 564, + [1925] = 1925, + [1926] = 382, + [1927] = 1927, + [1928] = 454, + [1929] = 390, + [1930] = 636, + [1931] = 645, + [1932] = 1766, + [1933] = 655, + [1934] = 656, + [1935] = 657, + [1936] = 637, + [1937] = 638, + [1938] = 639, + [1939] = 666, + [1940] = 1789, + [1941] = 1790, + [1942] = 160, + [1943] = 159, + [1944] = 668, + [1945] = 1651, + [1946] = 665, + [1947] = 640, + [1948] = 641, + [1949] = 642, + [1950] = 1950, + [1951] = 1595, + [1952] = 643, + [1953] = 1767, + [1954] = 644, + [1955] = 646, + [1956] = 647, + [1957] = 1957, + [1958] = 660, + [1959] = 670, + [1960] = 1960, + [1961] = 677, + [1962] = 661, + [1963] = 378, + [1964] = 678, + [1965] = 679, + [1966] = 691, + [1967] = 1960, + [1968] = 1727, + [1969] = 378, + [1970] = 652, + [1971] = 161, + [1972] = 1869, + [1973] = 1973, + [1974] = 611, + [1975] = 612, + [1976] = 1854, [1977] = 156, - [1978] = 1978, - [1979] = 657, - [1980] = 1980, - [1981] = 415, - [1982] = 1982, - [1983] = 1983, - [1984] = 1984, - [1985] = 1985, - [1986] = 663, - [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 416, - [1992] = 1992, - [1993] = 411, - [1994] = 610, - [1995] = 163, - [1996] = 664, - [1997] = 153, - [1998] = 1998, + [1978] = 613, + [1979] = 614, + [1980] = 160, + [1981] = 159, + [1982] = 615, + [1983] = 616, + [1984] = 617, + [1985] = 157, + [1986] = 618, + [1987] = 619, + [1988] = 155, + [1989] = 153, + [1990] = 620, + [1991] = 1801, + [1992] = 1732, + [1993] = 621, + [1994] = 687, + [1995] = 358, + [1996] = 622, + [1997] = 623, + [1998] = 360, [1999] = 1999, [2000] = 2000, - [2001] = 2001, + [2001] = 163, [2002] = 2002, - [2003] = 494, - [2004] = 665, - [2005] = 2005, - [2006] = 2006, - [2007] = 667, - [2008] = 668, - [2009] = 645, + [2003] = 2003, + [2004] = 2004, + [2005] = 381, + [2006] = 500, + [2007] = 1870, + [2008] = 2008, + [2009] = 2009, [2010] = 2010, [2011] = 2011, [2012] = 2012, [2013] = 2013, - [2014] = 499, + [2014] = 2014, [2015] = 2015, - [2016] = 2016, - [2017] = 655, - [2018] = 646, - [2019] = 361, - [2020] = 2020, - [2021] = 2021, - [2022] = 409, - [2023] = 425, - [2024] = 426, - [2025] = 2025, - [2026] = 648, - [2027] = 642, - [2028] = 405, - [2029] = 152, + [2016] = 158, + [2017] = 154, + [2018] = 379, + [2019] = 450, + [2020] = 1850, + [2021] = 1764, + [2022] = 648, + [2023] = 675, + [2024] = 1881, + [2025] = 1960, + [2026] = 1927, + [2027] = 452, + [2028] = 1927, + [2029] = 2029, [2030] = 2030, [2031] = 2031, - [2032] = 2032, - [2033] = 2033, - [2034] = 2034, - [2035] = 2034, + [2032] = 422, + [2033] = 637, + [2034] = 151, + [2035] = 668, [2036] = 2036, - [2037] = 658, + [2037] = 352, [2038] = 2038, - [2039] = 417, - [2040] = 418, + [2039] = 2039, + [2040] = 2040, [2041] = 2041, - [2042] = 419, - [2043] = 420, - [2044] = 421, + [2042] = 439, + [2043] = 2043, + [2044] = 150, [2045] = 2045, - [2046] = 659, - [2047] = 154, - [2048] = 407, - [2049] = 422, - [2050] = 410, - [2051] = 408, - [2052] = 450, - [2053] = 651, + [2046] = 2046, + [2047] = 2047, + [2048] = 678, + [2049] = 2049, + [2050] = 2050, + [2051] = 611, + [2052] = 414, + [2053] = 2053, [2054] = 2054, - [2055] = 652, + [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 2058, - [2059] = 2059, - [2060] = 424, - [2061] = 662, - [2062] = 2062, - [2063] = 650, - [2064] = 360, - [2065] = 2065, + [2058] = 617, + [2059] = 421, + [2060] = 679, + [2061] = 401, + [2062] = 691, + [2063] = 2063, + [2064] = 402, + [2065] = 612, [2066] = 2066, - [2067] = 2031, + [2067] = 618, [2068] = 2068, - [2069] = 639, + [2069] = 403, [2070] = 2070, - [2071] = 660, - [2072] = 162, - [2073] = 161, - [2074] = 497, - [2075] = 2075, - [2076] = 413, + [2071] = 613, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, + [2075] = 425, + [2076] = 2076, [2077] = 2077, [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 2032, + [2079] = 368, + [2080] = 640, + [2081] = 619, [2082] = 2082, - [2083] = 653, - [2084] = 2084, - [2085] = 406, - [2086] = 414, - [2087] = 2087, - [2088] = 2088, + [2083] = 2083, + [2084] = 670, + [2085] = 658, + [2086] = 614, + [2087] = 358, + [2088] = 161, [2089] = 2089, - [2090] = 427, - [2091] = 2091, - [2092] = 559, - [2093] = 545, - [2094] = 641, - [2095] = 561, - [2096] = 562, - [2097] = 622, - [2098] = 2098, + [2090] = 632, + [2091] = 641, + [2092] = 639, + [2093] = 633, + [2094] = 2094, + [2095] = 354, + [2096] = 652, + [2097] = 644, + [2098] = 159, [2099] = 2099, [2100] = 2100, [2101] = 2101, - [2102] = 643, - [2103] = 623, - [2104] = 644, - [2105] = 165, - [2106] = 534, - [2107] = 158, - [2108] = 497, - [2109] = 155, - [2110] = 632, - [2111] = 160, - [2112] = 156, - [2113] = 534, - [2114] = 2054, - [2115] = 637, - [2116] = 638, - [2117] = 640, + [2102] = 631, + [2103] = 369, + [2104] = 480, + [2105] = 2105, + [2106] = 404, + [2107] = 405, + [2108] = 2108, + [2109] = 2036, + [2110] = 2039, + [2111] = 406, + [2112] = 2112, + [2113] = 620, + [2114] = 423, + [2115] = 407, + [2116] = 2116, + [2117] = 635, [2118] = 2118, [2119] = 2119, - [2120] = 2120, - [2121] = 494, - [2122] = 2122, - [2123] = 2123, - [2124] = 2124, - [2125] = 2125, - [2126] = 635, - [2127] = 626, - [2128] = 2128, - [2129] = 2129, + [2120] = 410, + [2121] = 2121, + [2122] = 416, + [2123] = 634, + [2124] = 412, + [2125] = 638, + [2126] = 677, + [2127] = 2127, + [2128] = 160, + [2129] = 445, [2130] = 2130, - [2131] = 157, - [2132] = 630, - [2133] = 631, - [2134] = 634, - [2135] = 159, + [2131] = 360, + [2132] = 2132, + [2133] = 647, + [2134] = 417, + [2135] = 418, [2136] = 2136, [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, - [2142] = 2142, + [2138] = 642, + [2139] = 666, + [2140] = 643, + [2141] = 616, + [2142] = 360, [2143] = 2143, - [2144] = 2144, - [2145] = 2145, - [2146] = 2091, + [2144] = 624, + [2145] = 419, + [2146] = 2146, [2147] = 2147, - [2148] = 2148, + [2148] = 152, [2149] = 2149, - [2150] = 2150, + [2150] = 621, [2151] = 2151, [2152] = 2152, - [2153] = 499, - [2154] = 2154, - [2155] = 2123, - [2156] = 2124, - [2157] = 2125, - [2158] = 2128, - [2159] = 2129, - [2160] = 2130, - [2161] = 2098, - [2162] = 2099, - [2163] = 2100, - [2164] = 2101, + [2153] = 2153, + [2154] = 426, + [2155] = 2155, + [2156] = 474, + [2157] = 2157, + [2158] = 646, + [2159] = 2159, + [2160] = 2112, + [2161] = 2161, + [2162] = 444, + [2163] = 615, + [2164] = 629, [2165] = 2165, - [2166] = 2147, - [2167] = 2151, - [2168] = 2152, - [2169] = 2147, - [2170] = 2147, - [2171] = 2171, - [2172] = 2172, - [2173] = 2147, - [2174] = 621, - [2175] = 2175, - [2176] = 163, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 2182, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 630, + [2171] = 163, + [2172] = 636, + [2173] = 645, + [2174] = 608, + [2175] = 561, + [2176] = 453, + [2177] = 535, + [2178] = 537, + [2179] = 455, + [2180] = 654, + [2181] = 554, + [2182] = 456, + [2183] = 533, + [2184] = 452, + [2185] = 500, + [2186] = 660, + [2187] = 661, + [2188] = 2015, + [2189] = 675, + [2190] = 156, + [2191] = 2161, + [2192] = 655, + [2193] = 153, [2194] = 2194, - [2195] = 2195, + [2195] = 368, [2196] = 2196, - [2197] = 534, + [2197] = 2197, [2198] = 2198, - [2199] = 1855, + [2199] = 2199, [2200] = 2200, - [2201] = 2201, - [2202] = 1666, - [2203] = 2203, + [2201] = 369, + [2202] = 656, + [2203] = 657, [2204] = 2204, - [2205] = 1943, - [2206] = 1931, - [2207] = 1944, - [2208] = 2208, + [2205] = 454, + [2206] = 549, + [2207] = 527, + [2208] = 155, [2209] = 2209, - [2210] = 2210, - [2211] = 2211, + [2210] = 158, + [2211] = 154, [2212] = 2212, [2213] = 2213, - [2214] = 1936, + [2214] = 474, [2215] = 2215, - [2216] = 1937, - [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, + [2216] = 555, + [2217] = 536, + [2218] = 450, + [2219] = 1973, + [2220] = 548, [2221] = 2221, [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 559, - [2228] = 545, + [2223] = 537, + [2224] = 378, + [2225] = 648, + [2226] = 379, + [2227] = 381, + [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 1697, - [2232] = 2232, + [2231] = 2165, + [2232] = 665, [2233] = 2233, [2234] = 2234, - [2235] = 2235, + [2235] = 157, [2236] = 2236, [2237] = 2237, [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 1938, - [2243] = 2243, - [2244] = 2244, - [2245] = 1949, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 2249, + [2239] = 382, + [2240] = 2194, + [2241] = 2196, + [2242] = 2197, + [2243] = 2198, + [2244] = 2199, + [2245] = 2200, + [2246] = 2166, + [2247] = 2167, + [2248] = 2168, + [2249] = 2169, [2250] = 2250, - [2251] = 2251, - [2252] = 1939, + [2251] = 2165, + [2252] = 2252, [2253] = 2253, [2254] = 2254, - [2255] = 2255, + [2255] = 2165, [2256] = 2256, [2257] = 2257, - [2258] = 562, + [2258] = 2165, [2259] = 2259, - [2260] = 1934, + [2260] = 2260, [2261] = 2261, [2262] = 2262, [2263] = 2263, - [2264] = 1940, + [2264] = 2264, [2265] = 2265, - [2266] = 1941, - [2267] = 2267, - [2268] = 2268, - [2269] = 361, - [2270] = 2270, - [2271] = 2271, + [2266] = 687, + [2267] = 2159, + [2268] = 480, + [2269] = 2237, + [2270] = 2238, + [2271] = 2230, [2272] = 2272, [2273] = 2273, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 2277, + [2274] = 379, + [2275] = 554, + [2276] = 160, + [2277] = 2000, [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2180, - [2282] = 2282, - [2283] = 2283, + [2279] = 381, + [2280] = 548, + [2281] = 2281, + [2282] = 382, + [2283] = 159, [2284] = 2284, [2285] = 2285, [2286] = 2286, - [2287] = 360, + [2287] = 533, [2288] = 2288, - [2289] = 2289, + [2289] = 352, [2290] = 2290, [2291] = 2291, [2292] = 2292, - [2293] = 2293, - [2294] = 1648, + [2293] = 161, + [2294] = 2294, [2295] = 2295, - [2296] = 2296, - [2297] = 2297, - [2298] = 152, + [2296] = 1651, + [2297] = 1595, + [2298] = 2298, [2299] = 2299, - [2300] = 2201, + [2300] = 2300, [2301] = 2301, - [2302] = 2302, - [2303] = 162, - [2304] = 161, + [2302] = 2009, + [2303] = 2303, + [2304] = 2304, [2305] = 2305, [2306] = 2306, - [2307] = 2307, + [2307] = 1727, [2308] = 2308, - [2309] = 1649, - [2310] = 1639, - [2311] = 1644, - [2312] = 321, + [2309] = 354, + [2310] = 360, + [2311] = 2002, + [2312] = 2312, [2313] = 2313, - [2314] = 2314, + [2314] = 537, [2315] = 2315, [2316] = 2316, [2317] = 2317, - [2318] = 1935, + [2318] = 2318, [2319] = 2319, - [2320] = 1694, + [2320] = 2320, [2321] = 2321, - [2322] = 2322, - [2323] = 561, + [2322] = 2011, + [2323] = 2323, [2324] = 2324, [2325] = 2325, [2326] = 2326, [2327] = 2327, [2328] = 2328, - [2329] = 338, - [2330] = 2330, + [2329] = 2329, + [2330] = 150, [2331] = 2331, [2332] = 2332, [2333] = 2333, @@ -7453,51 +7562,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2337] = 2337, [2338] = 2338, [2339] = 2339, - [2340] = 2340, + [2340] = 2003, [2341] = 2341, [2342] = 2342, [2343] = 2343, [2344] = 2344, [2345] = 2345, - [2346] = 2346, - [2347] = 2347, + [2346] = 1601, + [2347] = 1617, [2348] = 2348, [2349] = 2349, [2350] = 2350, [2351] = 2351, [2352] = 2352, [2353] = 2353, - [2354] = 2354, + [2354] = 1692, [2355] = 2355, [2356] = 2356, [2357] = 2357, - [2358] = 2358, + [2358] = 2012, [2359] = 2359, [2360] = 2360, [2361] = 2361, - [2362] = 2362, - [2363] = 2363, + [2362] = 549, + [2363] = 2010, [2364] = 2364, [2365] = 2365, - [2366] = 2366, - [2367] = 152, + [2366] = 2013, + [2367] = 2367, [2368] = 2368, [2369] = 2369, - [2370] = 669, - [2371] = 2371, + [2370] = 2370, + [2371] = 527, [2372] = 2372, - [2373] = 335, + [2373] = 2373, [2374] = 2374, - [2375] = 337, + [2375] = 2375, [2376] = 2376, [2377] = 2377, [2378] = 2378, [2379] = 2379, [2380] = 2380, [2381] = 2381, - [2382] = 2382, - [2383] = 670, - [2384] = 2384, + [2382] = 561, + [2383] = 2383, + [2384] = 535, [2385] = 2385, [2386] = 2386, [2387] = 2387, @@ -7509,42 +7618,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2393] = 2393, [2394] = 2394, [2395] = 2395, - [2396] = 2396, + [2396] = 314, [2397] = 2397, [2398] = 2398, [2399] = 2399, - [2400] = 2400, - [2401] = 334, + [2400] = 2360, + [2401] = 2401, [2402] = 2402, - [2403] = 2403, - [2404] = 2404, + [2403] = 1999, + [2404] = 2292, [2405] = 2405, - [2406] = 2406, + [2406] = 2004, [2407] = 2407, [2408] = 2408, [2409] = 2409, [2410] = 2410, - [2411] = 2411, + [2411] = 378, [2412] = 2412, - [2413] = 154, + [2413] = 2413, [2414] = 2414, [2415] = 2415, [2416] = 2416, [2417] = 2417, - [2418] = 2418, + [2418] = 2014, [2419] = 2419, [2420] = 2420, [2421] = 2421, - [2422] = 153, - [2423] = 2423, - [2424] = 2424, - [2425] = 2425, + [2422] = 1891, + [2423] = 2008, + [2424] = 555, + [2425] = 536, [2426] = 2426, [2427] = 2427, - [2428] = 361, + [2428] = 2428, [2429] = 2429, - [2430] = 2430, - [2431] = 2431, + [2430] = 1732, + [2431] = 623, [2432] = 2432, [2433] = 2433, [2434] = 2434, @@ -7557,5738 +7666,6244 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2441] = 2441, [2442] = 2442, [2443] = 2443, - [2444] = 2444, + [2444] = 352, [2445] = 2445, [2446] = 2446, - [2447] = 2439, + [2447] = 2447, [2448] = 2448, [2449] = 2449, [2450] = 2450, - [2451] = 335, - [2452] = 336, - [2453] = 334, - [2454] = 582, - [2455] = 2398, - [2456] = 2437, - [2457] = 2441, - [2458] = 2444, - [2459] = 2366, - [2460] = 1666, + [2451] = 2451, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 336, + [2456] = 2456, + [2457] = 564, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, [2461] = 2461, - [2462] = 360, - [2463] = 153, - [2464] = 156, - [2465] = 644, - [2466] = 2356, - [2467] = 157, - [2468] = 668, - [2469] = 2139, - [2470] = 2357, - [2471] = 2150, - [2472] = 623, - [2473] = 2354, - [2474] = 662, - [2475] = 346, - [2476] = 670, - [2477] = 347, - [2478] = 2136, - [2479] = 640, - [2480] = 348, - [2481] = 641, - [2482] = 626, - [2483] = 669, - [2484] = 2120, - [2485] = 2140, - [2486] = 2148, - [2487] = 2358, - [2488] = 2362, + [2462] = 2462, + [2463] = 2463, + [2464] = 2464, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, + [2468] = 2468, + [2469] = 2469, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 150, + [2474] = 622, + [2475] = 2475, + [2476] = 2476, + [2477] = 2477, + [2478] = 2478, + [2479] = 152, + [2480] = 2480, + [2481] = 1692, + [2482] = 2482, + [2483] = 2483, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, + [2488] = 2488, [2489] = 2489, - [2490] = 2118, - [2491] = 642, - [2492] = 651, - [2493] = 652, - [2494] = 663, - [2495] = 350, - [2496] = 2141, - [2497] = 664, - [2498] = 665, - [2499] = 653, - [2500] = 667, - [2501] = 2359, - [2502] = 638, - [2503] = 655, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, [2504] = 2504, - [2505] = 155, - [2506] = 160, - [2507] = 645, - [2508] = 534, - [2509] = 634, - [2510] = 2122, - [2511] = 657, - [2512] = 610, - [2513] = 630, - [2514] = 643, - [2515] = 2142, - [2516] = 2360, - [2517] = 2143, - [2518] = 2144, - [2519] = 2165, - [2520] = 337, - [2521] = 2149, - [2522] = 2119, - [2523] = 154, - [2524] = 2363, - [2525] = 2175, - [2526] = 658, - [2527] = 2353, - [2528] = 622, - [2529] = 2145, - [2530] = 646, - [2531] = 2171, - [2532] = 637, - [2533] = 659, - [2534] = 631, - [2535] = 349, - [2536] = 660, - [2537] = 345, - [2538] = 632, - [2539] = 639, - [2540] = 349, - [2541] = 648, - [2542] = 159, - [2543] = 650, - [2544] = 350, - [2545] = 635, - [2546] = 2137, - [2547] = 621, - [2548] = 2355, + [2505] = 2505, + [2506] = 2506, + [2507] = 2507, + [2508] = 354, + [2509] = 2509, + [2510] = 2510, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 2519, + [2520] = 334, + [2521] = 2521, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 2525, + [2526] = 2447, + [2527] = 2527, + [2528] = 2528, + [2529] = 2529, + [2530] = 2435, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, + [2535] = 2535, + [2536] = 2536, + [2537] = 2537, + [2538] = 2538, + [2539] = 2539, + [2540] = 2540, + [2541] = 335, + [2542] = 2542, + [2543] = 151, + [2544] = 2544, + [2545] = 2545, + [2546] = 336, + [2547] = 2547, + [2548] = 2548, [2549] = 2549, - [2550] = 2361, - [2551] = 158, - [2552] = 2138, - [2553] = 2364, - [2554] = 2554, - [2555] = 2555, - [2556] = 156, - [2557] = 163, - [2558] = 366, - [2559] = 162, - [2560] = 161, - [2561] = 345, + [2550] = 2550, + [2551] = 335, + [2552] = 2552, + [2553] = 2553, + [2554] = 332, + [2555] = 2547, + [2556] = 2556, + [2557] = 2533, + [2558] = 2443, + [2559] = 2559, + [2560] = 2560, + [2561] = 2561, [2562] = 2562, [2563] = 2563, - [2564] = 346, - [2565] = 2565, - [2566] = 347, - [2567] = 2562, - [2568] = 2568, - [2569] = 348, - [2570] = 2555, - [2571] = 354, - [2572] = 2568, - [2573] = 363, - [2574] = 158, - [2575] = 365, - [2576] = 2563, - [2577] = 157, - [2578] = 335, - [2579] = 1382, - [2580] = 357, - [2581] = 2565, - [2582] = 152, - [2583] = 354, - [2584] = 334, - [2585] = 357, - [2586] = 365, - [2587] = 360, - [2588] = 159, - [2589] = 361, - [2590] = 2590, - [2591] = 363, - [2592] = 155, - [2593] = 160, - [2594] = 364, - [2595] = 2590, + [2564] = 2564, + [2565] = 333, + [2566] = 2566, + [2567] = 2567, + [2568] = 2559, + [2569] = 2569, + [2570] = 2263, + [2571] = 2236, + [2572] = 645, + [2573] = 2234, + [2574] = 337, + [2575] = 639, + [2576] = 2494, + [2577] = 2256, + [2578] = 346, + [2579] = 2579, + [2580] = 660, + [2581] = 2498, + [2582] = 658, + [2583] = 341, + [2584] = 2228, + [2585] = 2215, + [2586] = 2487, + [2587] = 670, + [2588] = 621, + [2589] = 611, + [2590] = 612, + [2591] = 618, + [2592] = 613, + [2593] = 614, + [2594] = 640, + [2595] = 615, [2596] = 2596, - [2597] = 2597, - [2598] = 640, - [2599] = 373, - [2600] = 2600, - [2601] = 152, - [2602] = 2602, - [2603] = 2603, - [2604] = 2604, - [2605] = 158, - [2606] = 368, - [2607] = 2607, - [2608] = 2600, - [2609] = 154, - [2610] = 2610, - [2611] = 2611, - [2612] = 157, - [2613] = 638, - [2614] = 2604, - [2615] = 2615, - [2616] = 156, - [2617] = 499, - [2618] = 494, - [2619] = 2602, - [2620] = 153, - [2621] = 641, - [2622] = 2622, - [2623] = 2623, - [2624] = 2610, - [2625] = 643, - [2626] = 644, - [2627] = 2622, - [2628] = 349, - [2629] = 2610, - [2630] = 162, - [2631] = 161, - [2632] = 2600, - [2633] = 163, - [2634] = 2634, - [2635] = 2635, - [2636] = 2636, - [2637] = 2637, - [2638] = 2596, - [2639] = 2597, - [2640] = 2634, - [2641] = 2641, - [2642] = 2642, - [2643] = 2643, - [2644] = 1694, - [2645] = 2645, - [2646] = 2637, - [2647] = 159, - [2648] = 637, - [2649] = 2623, - [2650] = 165, - [2651] = 2651, - [2652] = 1697, - [2653] = 2653, - [2654] = 350, - [2655] = 2655, - [2656] = 2635, - [2657] = 2622, - [2658] = 2607, - [2659] = 2651, - [2660] = 361, - [2661] = 2610, - [2662] = 2622, - [2663] = 2603, - [2664] = 2655, - [2665] = 360, - [2666] = 2645, - [2667] = 384, - [2668] = 405, - [2669] = 2641, - [2670] = 2670, - [2671] = 2671, - [2672] = 409, - [2673] = 410, - [2674] = 2674, - [2675] = 2675, - [2676] = 2670, - [2677] = 154, - [2678] = 366, - [2679] = 152, - [2680] = 354, - [2681] = 407, - [2682] = 153, - [2683] = 364, - [2684] = 397, - [2685] = 2685, + [2597] = 2260, + [2598] = 641, + [2599] = 638, + [2600] = 622, + [2601] = 347, + [2602] = 151, + [2603] = 2229, + [2604] = 642, + [2605] = 2504, + [2606] = 156, + [2607] = 2254, + [2608] = 619, + [2609] = 666, + [2610] = 636, + [2611] = 634, + [2612] = 342, + [2613] = 643, + [2614] = 656, + [2615] = 157, + [2616] = 2261, + [2617] = 661, + [2618] = 678, + [2619] = 679, + [2620] = 2257, + [2621] = 629, + [2622] = 155, + [2623] = 2488, + [2624] = 687, + [2625] = 2262, + [2626] = 158, + [2627] = 154, + [2628] = 2502, + [2629] = 655, + [2630] = 630, + [2631] = 654, + [2632] = 657, + [2633] = 2209, + [2634] = 537, + [2635] = 608, + [2636] = 2221, + [2637] = 668, + [2638] = 677, + [2639] = 644, + [2640] = 2490, + [2641] = 2212, + [2642] = 2250, + [2643] = 2499, + [2644] = 341, + [2645] = 153, + [2646] = 2646, + [2647] = 646, + [2648] = 2264, + [2649] = 2213, + [2650] = 632, + [2651] = 2252, + [2652] = 152, + [2653] = 348, + [2654] = 637, + [2655] = 647, + [2656] = 2253, + [2657] = 2222, + [2658] = 623, + [2659] = 342, + [2660] = 2265, + [2661] = 2492, + [2662] = 2259, + [2663] = 620, + [2664] = 691, + [2665] = 2233, + [2666] = 648, + [2667] = 2272, + [2668] = 2496, + [2669] = 624, + [2670] = 616, + [2671] = 2503, + [2672] = 633, + [2673] = 617, + [2674] = 652, + [2675] = 2505, + [2676] = 332, + [2677] = 665, + [2678] = 675, + [2679] = 635, + [2680] = 631, + [2681] = 161, + [2682] = 358, + [2683] = 160, + [2684] = 157, + [2685] = 352, [2686] = 2686, [2687] = 2687, - [2688] = 413, - [2689] = 411, - [2690] = 165, - [2691] = 414, - [2692] = 415, - [2693] = 416, - [2694] = 157, - [2695] = 381, - [2696] = 417, - [2697] = 382, - [2698] = 386, - [2699] = 159, - [2700] = 418, - [2701] = 419, - [2702] = 158, - [2703] = 1694, - [2704] = 643, - [2705] = 644, - [2706] = 156, - [2707] = 420, - [2708] = 421, - [2709] = 157, - [2710] = 422, - [2711] = 450, - [2712] = 499, - [2713] = 2653, - [2714] = 424, - [2715] = 425, - [2716] = 390, - [2717] = 156, - [2718] = 426, - [2719] = 155, - [2720] = 357, - [2721] = 2642, - [2722] = 2636, - [2723] = 160, - [2724] = 158, - [2725] = 575, + [2688] = 2688, + [2689] = 2689, + [2690] = 335, + [2691] = 158, + [2692] = 155, + [2693] = 2689, + [2694] = 337, + [2695] = 353, + [2696] = 2687, + [2697] = 154, + [2698] = 2688, + [2699] = 356, + [2700] = 1378, + [2701] = 150, + [2702] = 336, + [2703] = 356, + [2704] = 357, + [2705] = 2705, + [2706] = 348, + [2707] = 159, + [2708] = 360, + [2709] = 353, + [2710] = 156, + [2711] = 346, + [2712] = 357, + [2713] = 347, + [2714] = 2714, + [2715] = 2715, + [2716] = 354, + [2717] = 2714, + [2718] = 355, + [2719] = 2686, + [2720] = 2705, + [2721] = 355, + [2722] = 153, + [2723] = 2723, + [2724] = 2724, + [2725] = 2725, [2726] = 2726, [2727] = 2727, [2728] = 2728, - [2729] = 1697, - [2730] = 364, - [2731] = 365, - [2732] = 427, + [2729] = 1727, + [2730] = 1732, + [2731] = 2723, + [2732] = 2724, [2733] = 2733, - [2734] = 637, - [2735] = 408, - [2736] = 2615, - [2737] = 406, - [2738] = 159, - [2739] = 640, - [2740] = 2643, - [2741] = 2611, - [2742] = 363, - [2743] = 641, - [2744] = 638, - [2745] = 494, - [2746] = 366, - [2747] = 2726, + [2734] = 2734, + [2735] = 2735, + [2736] = 629, + [2737] = 630, + [2738] = 636, + [2739] = 645, + [2740] = 161, + [2741] = 660, + [2742] = 661, + [2743] = 160, + [2744] = 159, + [2745] = 2745, + [2746] = 2746, + [2747] = 474, [2748] = 2748, [2749] = 2749, - [2750] = 421, + [2750] = 480, [2751] = 2751, - [2752] = 366, - [2753] = 368, - [2754] = 2728, - [2755] = 450, - [2756] = 158, - [2757] = 410, - [2758] = 416, - [2759] = 2759, - [2760] = 156, - [2761] = 415, - [2762] = 162, - [2763] = 427, - [2764] = 373, - [2765] = 155, - [2766] = 161, - [2767] = 417, - [2768] = 425, - [2769] = 2769, - [2770] = 364, - [2771] = 672, - [2772] = 426, - [2773] = 422, - [2774] = 418, - [2775] = 2749, - [2776] = 368, - [2777] = 160, - [2778] = 366, - [2779] = 409, - [2780] = 159, - [2781] = 2759, - [2782] = 152, - [2783] = 419, - [2784] = 411, - [2785] = 424, - [2786] = 157, - [2787] = 364, - [2788] = 420, - [2789] = 163, - [2790] = 153, - [2791] = 373, - [2792] = 154, - [2793] = 2751, - [2794] = 414, - [2795] = 413, - [2796] = 205, - [2797] = 413, - [2798] = 409, - [2799] = 414, - [2800] = 415, - [2801] = 416, - [2802] = 417, - [2803] = 418, - [2804] = 419, - [2805] = 411, - [2806] = 421, - [2807] = 422, - [2808] = 450, - [2809] = 424, - [2810] = 425, - [2811] = 426, - [2812] = 427, - [2813] = 2813, - [2814] = 2814, - [2815] = 575, - [2816] = 2816, - [2817] = 2817, - [2818] = 205, - [2819] = 494, - [2820] = 2820, - [2821] = 499, - [2822] = 2822, - [2823] = 468, - [2824] = 469, - [2825] = 1626, - [2826] = 205, - [2827] = 165, - [2828] = 155, - [2829] = 160, - [2830] = 397, - [2831] = 163, - [2832] = 381, - [2833] = 382, - [2834] = 162, - [2835] = 161, - [2836] = 384, - [2837] = 159, - [2838] = 152, - [2839] = 158, - [2840] = 156, + [2752] = 2752, + [2753] = 2753, + [2754] = 156, + [2755] = 157, + [2756] = 155, + [2757] = 153, + [2758] = 2758, + [2759] = 352, + [2760] = 354, + [2761] = 2761, + [2762] = 150, + [2763] = 2763, + [2764] = 341, + [2765] = 342, + [2766] = 152, + [2767] = 151, + [2768] = 2768, + [2769] = 368, + [2770] = 369, + [2771] = 2761, + [2772] = 2763, + [2773] = 2773, + [2774] = 2774, + [2775] = 2768, + [2776] = 2734, + [2777] = 2777, + [2778] = 2777, + [2779] = 2726, + [2780] = 2725, + [2781] = 2726, + [2782] = 2752, + [2783] = 2753, + [2784] = 2758, + [2785] = 2735, + [2786] = 2733, + [2787] = 2773, + [2788] = 2774, + [2789] = 2735, + [2790] = 2773, + [2791] = 2735, + [2792] = 2773, + [2793] = 163, + [2794] = 636, + [2795] = 2728, + [2796] = 163, + [2797] = 389, + [2798] = 390, + [2799] = 422, + [2800] = 2746, + [2801] = 150, + [2802] = 597, + [2803] = 2803, + [2804] = 2804, + [2805] = 2805, + [2806] = 423, + [2807] = 152, + [2808] = 151, + [2809] = 2745, + [2810] = 353, + [2811] = 153, + [2812] = 355, + [2813] = 439, + [2814] = 356, + [2815] = 357, + [2816] = 2748, + [2817] = 158, + [2818] = 154, + [2819] = 2749, + [2820] = 156, + [2821] = 157, + [2822] = 155, + [2823] = 358, + [2824] = 153, + [2825] = 629, + [2826] = 630, + [2827] = 444, + [2828] = 360, + [2829] = 378, + [2830] = 445, + [2831] = 379, + [2832] = 2832, + [2833] = 381, + [2834] = 382, + [2835] = 421, + [2836] = 401, + [2837] = 155, + [2838] = 2838, + [2839] = 645, + [2840] = 402, [2841] = 157, - [2842] = 373, - [2843] = 368, - [2844] = 373, - [2845] = 154, - [2846] = 153, - [2847] = 368, - [2848] = 397, - [2849] = 381, - [2850] = 382, - [2851] = 384, - [2852] = 2852, + [2842] = 403, + [2843] = 404, + [2844] = 360, + [2845] = 405, + [2846] = 406, + [2847] = 474, + [2848] = 407, + [2849] = 660, + [2850] = 661, + [2851] = 1727, + [2852] = 410, [2853] = 2853, - [2854] = 410, - [2855] = 2855, - [2856] = 2852, - [2857] = 2853, - [2858] = 2822, - [2859] = 492, - [2860] = 460, - [2861] = 461, - [2862] = 2862, - [2863] = 2863, - [2864] = 2855, - [2865] = 466, - [2866] = 206, - [2867] = 420, - [2868] = 153, - [2869] = 381, - [2870] = 161, - [2871] = 382, - [2872] = 384, - [2873] = 397, - [2874] = 2874, - [2875] = 206, - [2876] = 381, - [2877] = 155, - [2878] = 160, - [2879] = 206, - [2880] = 468, - [2881] = 382, - [2882] = 384, - [2883] = 561, - [2884] = 562, - [2885] = 159, - [2886] = 499, - [2887] = 158, - [2888] = 156, - [2889] = 165, - [2890] = 157, - [2891] = 1666, - [2892] = 154, - [2893] = 366, - [2894] = 366, - [2895] = 672, - [2896] = 162, - [2897] = 364, - [2898] = 335, - [2899] = 334, - [2900] = 534, - [2901] = 561, - [2902] = 562, - [2903] = 494, - [2904] = 163, - [2905] = 492, - [2906] = 460, - [2907] = 461, - [2908] = 2908, - [2909] = 2909, - [2910] = 466, - [2911] = 1696, - [2912] = 556, - [2913] = 2913, - [2914] = 469, - [2915] = 2915, - [2916] = 551, - [2917] = 533, - [2918] = 534, - [2919] = 525, - [2920] = 532, - [2921] = 582, - [2922] = 559, - [2923] = 545, - [2924] = 205, - [2925] = 364, - [2926] = 397, - [2927] = 559, - [2928] = 662, - [2929] = 582, - [2930] = 1502, - [2931] = 575, - [2932] = 373, - [2933] = 155, - [2934] = 160, - [2935] = 368, - [2936] = 621, - [2937] = 2937, - [2938] = 639, - [2939] = 159, - [2940] = 2940, - [2941] = 158, - [2942] = 156, - [2943] = 157, - [2944] = 163, - [2945] = 162, + [2854] = 480, + [2855] = 412, + [2856] = 414, + [2857] = 416, + [2858] = 417, + [2859] = 2859, + [2860] = 418, + [2861] = 419, + [2862] = 2751, + [2863] = 1732, + [2864] = 425, + [2865] = 2865, + [2866] = 2838, + [2867] = 2867, + [2868] = 2868, + [2869] = 426, + [2870] = 2870, + [2871] = 156, + [2872] = 2865, + [2873] = 2727, + [2874] = 358, + [2875] = 360, + [2876] = 314, + [2877] = 2859, + [2878] = 439, + [2879] = 444, + [2880] = 445, + [2881] = 421, + [2882] = 401, + [2883] = 402, + [2884] = 403, + [2885] = 404, + [2886] = 405, + [2887] = 406, + [2888] = 407, + [2889] = 410, + [2890] = 412, + [2891] = 414, + [2892] = 416, + [2893] = 417, + [2894] = 418, + [2895] = 419, + [2896] = 2896, + [2897] = 152, + [2898] = 151, + [2899] = 676, + [2900] = 154, + [2901] = 156, + [2902] = 2902, + [2903] = 157, + [2904] = 155, + [2905] = 153, + [2906] = 150, + [2907] = 161, + [2908] = 160, + [2909] = 159, + [2910] = 368, + [2911] = 369, + [2912] = 358, + [2913] = 358, + [2914] = 368, + [2915] = 369, + [2916] = 2916, + [2917] = 360, + [2918] = 203, + [2919] = 2919, + [2920] = 2920, + [2921] = 2902, + [2922] = 2916, + [2923] = 2919, + [2924] = 158, + [2925] = 500, + [2926] = 444, + [2927] = 445, + [2928] = 421, + [2929] = 401, + [2930] = 402, + [2931] = 403, + [2932] = 404, + [2933] = 405, + [2934] = 406, + [2935] = 407, + [2936] = 410, + [2937] = 412, + [2938] = 414, + [2939] = 453, + [2940] = 454, + [2941] = 416, + [2942] = 163, + [2943] = 158, + [2944] = 154, + [2945] = 417, [2946] = 161, - [2947] = 622, - [2948] = 623, - [2949] = 366, - [2950] = 642, - [2951] = 630, - [2952] = 2952, - [2953] = 645, - [2954] = 2954, - [2955] = 646, - [2956] = 373, - [2957] = 368, - [2958] = 648, - [2959] = 650, - [2960] = 651, - [2961] = 652, - [2962] = 653, - [2963] = 655, - [2964] = 657, - [2965] = 610, - [2966] = 658, - [2967] = 364, - [2968] = 659, - [2969] = 660, - [2970] = 205, - [2971] = 663, - [2972] = 664, - [2973] = 665, - [2974] = 667, - [2975] = 668, - [2976] = 669, - [2977] = 670, - [2978] = 1694, - [2979] = 1697, - [2980] = 634, - [2981] = 635, - [2982] = 349, - [2983] = 165, - [2984] = 350, - [2985] = 335, - [2986] = 626, - [2987] = 334, - [2988] = 631, - [2989] = 632, + [2947] = 418, + [2948] = 419, + [2949] = 160, + [2950] = 159, + [2951] = 156, + [2952] = 157, + [2953] = 155, + [2954] = 153, + [2955] = 150, + [2956] = 450, + [2957] = 314, + [2958] = 334, + [2959] = 333, + [2960] = 203, + [2961] = 152, + [2962] = 151, + [2963] = 378, + [2964] = 2964, + [2965] = 439, + [2966] = 2966, + [2967] = 381, + [2968] = 382, + [2969] = 2969, + [2970] = 368, + [2971] = 369, + [2972] = 368, + [2973] = 203, + [2974] = 369, + [2975] = 2975, + [2976] = 378, + [2977] = 474, + [2978] = 2978, + [2979] = 379, + [2980] = 381, + [2981] = 382, + [2982] = 480, + [2983] = 2983, + [2984] = 1618, + [2985] = 455, + [2986] = 597, + [2987] = 456, + [2988] = 2969, + [2989] = 2989, [2990] = 2990, [2991] = 2991, - [2992] = 206, - [2993] = 2937, - [2994] = 2940, - [2995] = 2995, - [2996] = 2952, - [2997] = 2954, - [2998] = 2998, - [2999] = 2999, - [3000] = 637, - [3001] = 638, - [3002] = 640, - [3003] = 641, - [3004] = 2998, - [3005] = 643, - [3006] = 644, - [3007] = 1732, - [3008] = 2999, - [3009] = 3009, - [3010] = 1733, - [3011] = 1728, - [3012] = 1729, - [3013] = 159, - [3014] = 158, - [3015] = 156, - [3016] = 157, - [3017] = 562, - [3018] = 651, - [3019] = 652, - [3020] = 653, - [3021] = 655, - [3022] = 657, - [3023] = 610, - [3024] = 658, - [3025] = 659, - [3026] = 660, - [3027] = 662, - [3028] = 559, - [3029] = 534, - [3030] = 663, - [3031] = 664, - [3032] = 561, - [3033] = 159, - [3034] = 158, - [3035] = 665, - [3036] = 667, - [3037] = 354, - [3038] = 668, - [3039] = 156, - [3040] = 357, - [3041] = 642, - [3042] = 365, - [3043] = 363, - [3044] = 165, - [3045] = 349, - [3046] = 669, - [3047] = 670, - [3048] = 350, - [3049] = 2990, - [3050] = 206, - [3051] = 3051, - [3052] = 3052, - [3053] = 3053, + [2992] = 2983, + [2993] = 2993, + [2994] = 2994, + [2995] = 2990, + [2996] = 2991, + [2997] = 204, + [2998] = 379, + [2999] = 153, + [3000] = 527, + [3001] = 360, + [3002] = 378, + [3003] = 537, + [3004] = 3004, + [3005] = 379, + [3006] = 161, + [3007] = 381, + [3008] = 382, + [3009] = 378, + [3010] = 554, + [3011] = 533, + [3012] = 379, + [3013] = 474, + [3014] = 381, + [3015] = 382, + [3016] = 480, + [3017] = 676, + [3018] = 548, + [3019] = 204, + [3020] = 152, + [3021] = 334, + [3022] = 453, + [3023] = 3023, + [3024] = 151, + [3025] = 336, + [3026] = 335, + [3027] = 549, + [3028] = 555, + [3029] = 333, + [3030] = 158, + [3031] = 536, + [3032] = 454, + [3033] = 154, + [3034] = 3034, + [3035] = 360, + [3036] = 204, + [3037] = 203, + [3038] = 561, + [3039] = 549, + [3040] = 535, + [3041] = 160, + [3042] = 500, + [3043] = 537, + [3044] = 564, + [3045] = 555, + [3046] = 536, + [3047] = 159, + [3048] = 358, + [3049] = 3049, + [3050] = 3050, + [3051] = 1731, + [3052] = 156, + [3053] = 1692, [3054] = 157, - [3055] = 373, - [3056] = 3056, - [3057] = 645, - [3058] = 397, - [3059] = 368, - [3060] = 161, - [3061] = 384, - [3062] = 3062, - [3063] = 3063, - [3064] = 163, - [3065] = 646, - [3066] = 3066, - [3067] = 648, - [3068] = 381, - [3069] = 639, - [3070] = 397, - [3071] = 625, - [3072] = 3072, - [3073] = 672, - [3074] = 694, - [3075] = 381, - [3076] = 650, - [3077] = 678, - [3078] = 683, - [3079] = 684, - [3080] = 382, - [3081] = 686, - [3082] = 687, - [3083] = 688, - [3084] = 468, - [3085] = 611, - [3086] = 612, - [3087] = 613, - [3088] = 614, - [3089] = 616, - [3090] = 617, - [3091] = 618, - [3092] = 469, - [3093] = 3093, - [3094] = 205, - [3095] = 582, - [3096] = 384, + [3055] = 155, + [3056] = 450, + [3057] = 163, + [3058] = 455, + [3059] = 456, + [3060] = 358, + [3061] = 636, + [3062] = 670, + [3063] = 677, + [3064] = 616, + [3065] = 617, + [3066] = 618, + [3067] = 153, + [3068] = 158, + [3069] = 154, + [3070] = 564, + [3071] = 619, + [3072] = 620, + [3073] = 621, + [3074] = 622, + [3075] = 623, + [3076] = 1727, + [3077] = 156, + [3078] = 157, + [3079] = 155, + [3080] = 153, + [3081] = 3081, + [3082] = 1732, + [3083] = 3083, + [3084] = 161, + [3085] = 160, + [3086] = 159, + [3087] = 675, + [3088] = 597, + [3089] = 1789, + [3090] = 1790, + [3091] = 368, + [3092] = 369, + [3093] = 648, + [3094] = 687, + [3095] = 655, + [3096] = 657, [3097] = 3097, - [3098] = 382, - [3099] = 162, - [3100] = 1502, - [3101] = 3101, - [3102] = 645, - [3103] = 659, - [3104] = 646, - [3105] = 625, - [3106] = 663, - [3107] = 165, - [3108] = 670, - [3109] = 610, - [3110] = 664, - [3111] = 694, - [3112] = 648, - [3113] = 678, - [3114] = 683, - [3115] = 665, - [3116] = 684, - [3117] = 686, - [3118] = 687, - [3119] = 688, - [3120] = 650, - [3121] = 3121, + [3098] = 665, + [3099] = 635, + [3100] = 3100, + [3101] = 1780, + [3102] = 358, + [3103] = 1267, + [3104] = 3104, + [3105] = 341, + [3106] = 368, + [3107] = 156, + [3108] = 342, + [3109] = 155, + [3110] = 336, + [3111] = 335, + [3112] = 1782, + [3113] = 203, + [3114] = 163, + [3115] = 608, + [3116] = 654, + [3117] = 360, + [3118] = 658, + [3119] = 678, + [3120] = 679, + [3121] = 157, [3122] = 3122, - [3123] = 3123, - [3124] = 397, + [3123] = 656, + [3124] = 666, [3125] = 3125, - [3126] = 611, - [3127] = 612, - [3128] = 613, - [3129] = 614, - [3130] = 616, - [3131] = 617, - [3132] = 618, - [3133] = 653, - [3134] = 2991, - [3135] = 651, - [3136] = 381, - [3137] = 384, - [3138] = 3138, - [3139] = 2995, - [3140] = 468, - [3141] = 655, + [3126] = 3104, + [3127] = 3081, + [3128] = 3128, + [3129] = 691, + [3130] = 3083, + [3131] = 3097, + [3132] = 652, + [3133] = 3125, + [3134] = 3128, + [3135] = 204, + [3136] = 668, + [3137] = 611, + [3138] = 612, + [3139] = 629, + [3140] = 630, + [3141] = 645, [3142] = 660, - [3143] = 3143, - [3144] = 662, - [3145] = 658, - [3146] = 667, - [3147] = 469, - [3148] = 668, - [3149] = 354, - [3150] = 3150, - [3151] = 3151, - [3152] = 3152, - [3153] = 657, - [3154] = 157, - [3155] = 3155, - [3156] = 3156, - [3157] = 652, - [3158] = 357, - [3159] = 669, - [3160] = 639, - [3161] = 365, - [3162] = 363, - [3163] = 206, - [3164] = 159, - [3165] = 158, - [3166] = 642, - [3167] = 156, - [3168] = 382, - [3169] = 3169, - [3170] = 3170, - [3171] = 3171, - [3172] = 3172, - [3173] = 3173, - [3174] = 3174, - [3175] = 3169, - [3176] = 3173, - [3177] = 3177, - [3178] = 3178, - [3179] = 3179, - [3180] = 3178, - [3181] = 3181, - [3182] = 3182, - [3183] = 3172, - [3184] = 3179, - [3185] = 3177, - [3186] = 3171, - [3187] = 3181, - [3188] = 3182, - [3189] = 3174, - [3190] = 165, - [3191] = 3191, - [3192] = 561, - [3193] = 545, - [3194] = 562, - [3195] = 534, - [3196] = 3196, - [3197] = 3197, - [3198] = 559, - [3199] = 559, - [3200] = 1666, - [3201] = 366, - [3202] = 364, - [3203] = 561, - [3204] = 562, - [3205] = 545, - [3206] = 3206, - [3207] = 534, - [3208] = 337, - [3209] = 2416, - [3210] = 2431, - [3211] = 2332, - [3212] = 2344, - [3213] = 2384, - [3214] = 2409, - [3215] = 2448, - [3216] = 2325, - [3217] = 2337, - [3218] = 2342, - [3219] = 2346, - [3220] = 2365, - [3221] = 2380, - [3222] = 2385, - [3223] = 2394, - [3224] = 2397, - [3225] = 2407, - [3226] = 2410, - [3227] = 2429, - [3228] = 2430, - [3229] = 2435, - [3230] = 2440, - [3231] = 2449, - [3232] = 2461, - [3233] = 2327, - [3234] = 2334, - [3235] = 2368, - [3236] = 2372, - [3237] = 2377, - [3238] = 2382, - [3239] = 2387, - [3240] = 2393, - [3241] = 2396, - [3242] = 2402, - [3243] = 2406, - [3244] = 2445, - [3245] = 2326, - [3246] = 2328, - [3247] = 2331, - [3248] = 2333, - [3249] = 2335, - [3250] = 2336, - [3251] = 2338, - [3252] = 2340, - [3253] = 2341, - [3254] = 2343, - [3255] = 2345, - [3256] = 2348, - [3257] = 1666, - [3258] = 2408, - [3259] = 2353, - [3260] = 2354, - [3261] = 2355, - [3262] = 2356, - [3263] = 2357, - [3264] = 2358, - [3265] = 2359, - [3266] = 2360, - [3267] = 2361, - [3268] = 2362, - [3269] = 2363, - [3270] = 2364, + [3143] = 661, + [3144] = 613, + [3145] = 614, + [3146] = 615, + [3147] = 3147, + [3148] = 3148, + [3149] = 369, + [3150] = 642, + [3151] = 623, + [3152] = 637, + [3153] = 161, + [3154] = 204, + [3155] = 537, + [3156] = 639, + [3157] = 640, + [3158] = 641, + [3159] = 549, + [3160] = 643, + [3161] = 644, + [3162] = 156, + [3163] = 646, + [3164] = 647, + [3165] = 368, + [3166] = 157, + [3167] = 3167, + [3168] = 369, + [3169] = 631, + [3170] = 638, + [3171] = 564, + [3172] = 353, + [3173] = 666, + [3174] = 378, + [3175] = 160, + [3176] = 355, + [3177] = 668, + [3178] = 379, + [3179] = 676, + [3180] = 356, + [3181] = 159, + [3182] = 381, + [3183] = 357, + [3184] = 382, + [3185] = 632, + [3186] = 341, + [3187] = 670, + [3188] = 155, + [3189] = 342, + [3190] = 677, + [3191] = 678, + [3192] = 679, + [3193] = 691, + [3194] = 622, + [3195] = 633, + [3196] = 203, + [3197] = 624, + [3198] = 652, + [3199] = 611, + [3200] = 3200, + [3201] = 3201, + [3202] = 634, + [3203] = 153, + [3204] = 612, + [3205] = 3205, + [3206] = 613, + [3207] = 614, + [3208] = 615, + [3209] = 616, + [3210] = 378, + [3211] = 536, + [3212] = 617, + [3213] = 379, + [3214] = 658, + [3215] = 3215, + [3216] = 3216, + [3217] = 453, + [3218] = 454, + [3219] = 381, + [3220] = 3220, + [3221] = 382, + [3222] = 1267, + [3223] = 618, + [3224] = 360, + [3225] = 619, + [3226] = 620, + [3227] = 621, + [3228] = 3228, + [3229] = 3229, + [3230] = 3230, + [3231] = 3147, + [3232] = 358, + [3233] = 163, + [3234] = 555, + [3235] = 635, + [3236] = 379, + [3237] = 617, + [3238] = 453, + [3239] = 454, + [3240] = 381, + [3241] = 3100, + [3242] = 635, + [3243] = 382, + [3244] = 638, + [3245] = 639, + [3246] = 611, + [3247] = 612, + [3248] = 204, + [3249] = 613, + [3250] = 618, + [3251] = 3251, + [3252] = 677, + [3253] = 614, + [3254] = 640, + [3255] = 678, + [3256] = 679, + [3257] = 621, + [3258] = 642, + [3259] = 643, + [3260] = 622, + [3261] = 619, + [3262] = 369, + [3263] = 691, + [3264] = 623, + [3265] = 666, + [3266] = 668, + [3267] = 647, + [3268] = 637, + [3269] = 3269, + [3270] = 3270, [3271] = 3271, - [3272] = 2411, - [3273] = 2330, - [3274] = 3271, - [3275] = 2443, - [3276] = 2417, - [3277] = 2419, - [3278] = 368, - [3279] = 2379, - [3280] = 2421, - [3281] = 2424, - [3282] = 2425, - [3283] = 2381, - [3284] = 2427, - [3285] = 347, - [3286] = 348, - [3287] = 2392, - [3288] = 3271, - [3289] = 3271, - [3290] = 2347, - [3291] = 337, - [3292] = 3292, - [3293] = 3293, - [3294] = 2349, - [3295] = 2351, - [3296] = 2352, - [3297] = 2371, - [3298] = 3298, - [3299] = 3299, - [3300] = 2378, - [3301] = 2399, - [3302] = 2390, - [3303] = 2389, - [3304] = 2324, - [3305] = 2415, - [3306] = 2420, - [3307] = 2339, - [3308] = 2423, - [3309] = 2426, - [3310] = 2434, - [3311] = 2436, - [3312] = 2438, - [3313] = 2442, - [3314] = 3314, - [3315] = 3315, - [3316] = 2400, - [3317] = 2376, - [3318] = 3318, - [3319] = 2395, - [3320] = 2433, - [3321] = 2369, - [3322] = 2404, - [3323] = 2432, - [3324] = 2446, - [3325] = 2374, - [3326] = 2391, - [3327] = 2403, - [3328] = 346, - [3329] = 373, - [3330] = 2412, - [3331] = 1838, - [3332] = 2386, - [3333] = 345, - [3334] = 2418, - [3335] = 2405, - [3336] = 2414, + [3272] = 615, + [3273] = 3273, + [3274] = 658, + [3275] = 360, + [3276] = 368, + [3277] = 163, + [3278] = 3278, + [3279] = 156, + [3280] = 644, + [3281] = 353, + [3282] = 358, + [3283] = 3283, + [3284] = 3284, + [3285] = 3285, + [3286] = 157, + [3287] = 155, + [3288] = 3288, + [3289] = 3289, + [3290] = 3290, + [3291] = 652, + [3292] = 641, + [3293] = 355, + [3294] = 624, + [3295] = 153, + [3296] = 620, + [3297] = 378, + [3298] = 356, + [3299] = 631, + [3300] = 357, + [3301] = 646, + [3302] = 632, + [3303] = 633, + [3304] = 3148, + [3305] = 634, + [3306] = 670, + [3307] = 3307, + [3308] = 616, + [3309] = 369, + [3310] = 368, + [3311] = 378, + [3312] = 379, + [3313] = 381, + [3314] = 382, + [3315] = 389, + [3316] = 390, + [3317] = 3317, + [3318] = 381, + [3319] = 3319, + [3320] = 358, + [3321] = 3321, + [3322] = 3322, + [3323] = 360, + [3324] = 390, + [3325] = 3325, + [3326] = 3307, + [3327] = 3327, + [3328] = 389, + [3329] = 3329, + [3330] = 3322, + [3331] = 3321, + [3332] = 3319, + [3333] = 3329, + [3334] = 3327, + [3335] = 3325, + [3336] = 3336, [3337] = 3337, - [3338] = 3338, - [3339] = 381, - [3340] = 335, - [3341] = 334, + [3338] = 378, + [3339] = 3339, + [3340] = 379, + [3341] = 3336, [3342] = 382, - [3343] = 3343, - [3344] = 3344, - [3345] = 384, - [3346] = 346, - [3347] = 347, - [3348] = 348, - [3349] = 3337, - [3350] = 3197, - [3351] = 3191, - [3352] = 159, - [3353] = 158, - [3354] = 156, - [3355] = 468, - [3356] = 157, - [3357] = 3357, - [3358] = 345, - [3359] = 3357, - [3360] = 1838, - [3361] = 469, - [3362] = 3338, - [3363] = 2353, - [3364] = 2354, - [3365] = 2355, - [3366] = 2356, - [3367] = 2357, - [3368] = 2358, - [3369] = 2359, - [3370] = 2360, - [3371] = 2361, - [3372] = 2362, - [3373] = 2363, - [3374] = 2364, - [3375] = 3375, - [3376] = 397, - [3377] = 3377, - [3378] = 152, - [3379] = 3377, - [3380] = 3380, - [3381] = 334, - [3382] = 350, - [3383] = 3383, - [3384] = 335, - [3385] = 152, - [3386] = 364, - [3387] = 349, - [3388] = 335, - [3389] = 360, - [3390] = 361, - [3391] = 334, - [3392] = 154, - [3393] = 153, - [3394] = 3383, - [3395] = 3395, - [3396] = 349, - [3397] = 363, - [3398] = 350, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 575, - [3403] = 3403, - [3404] = 1382, - [3405] = 1502, - [3406] = 3380, - [3407] = 3395, + [3343] = 3337, + [3344] = 369, + [3345] = 360, + [3346] = 368, + [3347] = 3339, + [3348] = 358, + [3349] = 554, + [3350] = 382, + [3351] = 548, + [3352] = 561, + [3353] = 3353, + [3354] = 535, + [3355] = 537, + [3356] = 533, + [3357] = 527, + [3358] = 379, + [3359] = 381, + [3360] = 3360, + [3361] = 549, + [3362] = 555, + [3363] = 378, + [3364] = 536, + [3365] = 369, + [3366] = 368, + [3367] = 3367, + [3368] = 527, + [3369] = 548, + [3370] = 3370, + [3371] = 555, + [3372] = 379, + [3373] = 536, + [3374] = 381, + [3375] = 1692, + [3376] = 382, + [3377] = 537, + [3378] = 561, + [3379] = 549, + [3380] = 535, + [3381] = 378, + [3382] = 533, + [3383] = 554, + [3384] = 2491, + [3385] = 314, + [3386] = 1881, + [3387] = 3387, + [3388] = 3388, + [3389] = 3389, + [3390] = 1692, + [3391] = 2459, + [3392] = 2464, + [3393] = 2466, + [3394] = 2469, + [3395] = 2471, + [3396] = 2475, + [3397] = 2478, + [3398] = 2480, + [3399] = 2501, + [3400] = 2506, + [3401] = 2513, + [3402] = 2523, + [3403] = 3389, + [3404] = 2462, + [3405] = 2465, + [3406] = 2467, + [3407] = 2472, [3408] = 3408, - [3409] = 357, - [3410] = 1502, - [3411] = 349, - [3412] = 3401, - [3413] = 152, - [3414] = 154, - [3415] = 153, - [3416] = 354, - [3417] = 350, - [3418] = 335, - [3419] = 334, - [3420] = 365, - [3421] = 153, - [3422] = 154, - [3423] = 365, - [3424] = 357, - [3425] = 365, - [3426] = 363, - [3427] = 349, - [3428] = 354, - [3429] = 350, - [3430] = 672, - [3431] = 363, - [3432] = 612, - [3433] = 361, - [3434] = 613, - [3435] = 614, - [3436] = 152, - [3437] = 683, - [3438] = 617, - [3439] = 3439, - [3440] = 684, - [3441] = 152, - [3442] = 3442, - [3443] = 3403, - [3444] = 618, - [3445] = 357, - [3446] = 3446, - [3447] = 3447, - [3448] = 694, - [3449] = 686, - [3450] = 360, - [3451] = 1502, - [3452] = 687, - [3453] = 625, - [3454] = 688, - [3455] = 611, - [3456] = 354, - [3457] = 3408, - [3458] = 678, - [3459] = 616, - [3460] = 357, - [3461] = 152, - [3462] = 365, - [3463] = 205, - [3464] = 407, - [3465] = 154, - [3466] = 363, - [3467] = 416, - [3468] = 405, - [3469] = 409, - [3470] = 153, - [3471] = 582, - [3472] = 354, - [3473] = 417, - [3474] = 418, - [3475] = 414, - [3476] = 1697, - [3477] = 420, - [3478] = 421, - [3479] = 3479, - [3480] = 422, - [3481] = 408, - [3482] = 1694, - [3483] = 366, - [3484] = 364, - [3485] = 415, - [3486] = 450, - [3487] = 152, - [3488] = 413, - [3489] = 411, - [3490] = 406, - [3491] = 424, - [3492] = 425, - [3493] = 410, - [3494] = 426, - [3495] = 427, - [3496] = 419, - [3497] = 460, - [3498] = 632, - [3499] = 623, - [3500] = 659, - [3501] = 660, - [3502] = 634, - [3503] = 662, - [3504] = 154, - [3505] = 630, - [3506] = 645, - [3507] = 153, - [3508] = 663, - [3509] = 664, - [3510] = 665, - [3511] = 667, - [3512] = 155, - [3513] = 668, - [3514] = 160, - [3515] = 639, - [3516] = 461, - [3517] = 154, - [3518] = 646, - [3519] = 635, - [3520] = 626, - [3521] = 610, - [3522] = 492, - [3523] = 3523, - [3524] = 669, - [3525] = 368, - [3526] = 637, - [3527] = 638, - [3528] = 670, - [3529] = 153, - [3530] = 621, - [3531] = 642, - [3532] = 648, - [3533] = 640, - [3534] = 641, - [3535] = 373, - [3536] = 650, - [3537] = 3169, - [3538] = 466, - [3539] = 651, - [3540] = 652, - [3541] = 622, - [3542] = 658, - [3543] = 643, - [3544] = 644, - [3545] = 206, - [3546] = 653, - [3547] = 655, - [3548] = 657, - [3549] = 3169, - [3550] = 631, - [3551] = 160, - [3552] = 361, - [3553] = 334, - [3554] = 162, - [3555] = 335, - [3556] = 492, - [3557] = 460, - [3558] = 469, - [3559] = 410, - [3560] = 411, - [3561] = 161, - [3562] = 413, - [3563] = 414, - [3564] = 415, - [3565] = 156, - [3566] = 416, - [3567] = 159, - [3568] = 461, - [3569] = 417, - [3570] = 418, - [3571] = 152, - [3572] = 3169, - [3573] = 158, - [3574] = 382, - [3575] = 419, - [3576] = 420, - [3577] = 421, - [3578] = 422, - [3579] = 156, - [3580] = 450, - [3581] = 406, - [3582] = 405, - [3583] = 424, - [3584] = 425, - [3585] = 163, - [3586] = 426, - [3587] = 3169, - [3588] = 159, - [3589] = 155, - [3590] = 157, - [3591] = 155, - [3592] = 427, - [3593] = 160, - [3594] = 360, - [3595] = 1626, - [3596] = 407, - [3597] = 397, - [3598] = 466, - [3599] = 384, - [3600] = 468, - [3601] = 409, - [3602] = 408, - [3603] = 381, - [3604] = 157, - [3605] = 158, - [3606] = 545, - [3607] = 2172, - [3608] = 3608, - [3609] = 1696, - [3610] = 3610, - [3611] = 582, - [3612] = 3612, - [3613] = 497, - [3614] = 497, - [3615] = 162, - [3616] = 559, - [3617] = 561, - [3618] = 161, - [3619] = 562, - [3620] = 334, - [3621] = 163, - [3622] = 3622, - [3623] = 162, - [3624] = 161, - [3625] = 2054, - [3626] = 165, - [3627] = 3627, - [3628] = 1668, - [3629] = 534, - [3630] = 163, - [3631] = 499, - [3632] = 494, - [3633] = 3633, - [3634] = 1666, - [3635] = 349, - [3636] = 335, - [3637] = 364, - [3638] = 350, - [3639] = 642, - [3640] = 1939, - [3641] = 3641, - [3642] = 1940, - [3643] = 1941, - [3644] = 635, - [3645] = 1855, - [3646] = 1943, - [3647] = 363, - [3648] = 645, - [3649] = 1944, - [3650] = 1949, - [3651] = 646, - [3652] = 632, - [3653] = 639, - [3654] = 357, - [3655] = 648, - [3656] = 650, - [3657] = 651, - [3658] = 652, - [3659] = 165, - [3660] = 653, - [3661] = 349, - [3662] = 655, - [3663] = 657, - [3664] = 610, - [3665] = 658, - [3666] = 659, - [3667] = 1845, - [3668] = 1846, - [3669] = 660, - [3670] = 662, - [3671] = 663, - [3672] = 664, - [3673] = 665, - [3674] = 2054, - [3675] = 1734, - [3676] = 1735, - [3677] = 667, - [3678] = 668, - [3679] = 534, - [3680] = 669, - [3681] = 3681, - [3682] = 670, - [3683] = 637, - [3684] = 638, - [3685] = 354, - [3686] = 1931, - [3687] = 631, - [3688] = 640, - [3689] = 641, - [3690] = 634, - [3691] = 350, - [3692] = 1728, - [3693] = 1934, - [3694] = 1729, - [3695] = 1935, - [3696] = 559, - [3697] = 497, - [3698] = 561, - [3699] = 562, - [3700] = 643, - [3701] = 644, - [3702] = 559, - [3703] = 545, - [3704] = 1936, - [3705] = 561, - [3706] = 562, - [3707] = 1732, - [3708] = 1733, - [3709] = 1639, - [3710] = 1644, - [3711] = 365, - [3712] = 1648, - [3713] = 1649, - [3714] = 3714, - [3715] = 534, - [3716] = 621, - [3717] = 2054, - [3718] = 497, - [3719] = 3719, - [3720] = 3720, - [3721] = 1937, - [3722] = 1694, - [3723] = 1938, - [3724] = 1697, - [3725] = 622, - [3726] = 623, - [3727] = 626, - [3728] = 630, - [3729] = 545, - [3730] = 2332, - [3731] = 2412, - [3732] = 2418, - [3733] = 3714, - [3734] = 559, - [3735] = 2443, - [3736] = 3736, - [3737] = 2330, - [3738] = 686, - [3739] = 561, - [3740] = 562, - [3741] = 2348, - [3742] = 2379, - [3743] = 2381, - [3744] = 2392, - [3745] = 1666, - [3746] = 2399, - [3747] = 687, - [3748] = 354, - [3749] = 2339, - [3750] = 2386, - [3751] = 611, - [3752] = 2405, - [3753] = 2431, - [3754] = 612, - [3755] = 613, - [3756] = 614, - [3757] = 616, - [3758] = 617, - [3759] = 618, - [3760] = 2446, - [3761] = 2344, - [3762] = 2384, - [3763] = 2409, - [3764] = 2448, - [3765] = 2325, - [3766] = 534, - [3767] = 2337, - [3768] = 2342, - [3769] = 1666, - [3770] = 2346, - [3771] = 2365, - [3772] = 2380, - [3773] = 2385, - [3774] = 2394, - [3775] = 694, - [3776] = 2397, - [3777] = 2407, - [3778] = 2410, - [3779] = 2429, - [3780] = 2430, - [3781] = 2435, - [3782] = 2440, - [3783] = 2449, - [3784] = 2461, - [3785] = 678, - [3786] = 683, - [3787] = 2327, - [3788] = 2334, - [3789] = 3719, - [3790] = 2368, - [3791] = 2372, - [3792] = 365, - [3793] = 2377, - [3794] = 2382, - [3795] = 3736, - [3796] = 2387, - [3797] = 2393, - [3798] = 2396, - [3799] = 2402, - [3800] = 3736, - [3801] = 688, - [3802] = 2403, - [3803] = 2445, - [3804] = 3736, - [3805] = 2326, - [3806] = 2328, - [3807] = 2331, - [3808] = 3736, - [3809] = 363, - [3810] = 2333, - [3811] = 2335, - [3812] = 3736, - [3813] = 2336, - [3814] = 2338, - [3815] = 2340, - [3816] = 2341, - [3817] = 2343, - [3818] = 684, - [3819] = 2345, - [3820] = 3736, - [3821] = 625, - [3822] = 545, - [3823] = 2390, - [3824] = 2406, - [3825] = 2408, - [3826] = 2411, - [3827] = 2414, - [3828] = 2416, - [3829] = 2417, - [3830] = 2419, - [3831] = 2421, - [3832] = 2424, - [3833] = 2425, - [3834] = 2427, - [3835] = 357, - [3836] = 2391, - [3837] = 2347, - [3838] = 2349, - [3839] = 2351, - [3840] = 2352, - [3841] = 2371, - [3842] = 2378, - [3843] = 2389, - [3844] = 2324, - [3845] = 2415, - [3846] = 2420, - [3847] = 2423, - [3848] = 2426, - [3849] = 2434, - [3850] = 2436, - [3851] = 2438, - [3852] = 2442, - [3853] = 2400, - [3854] = 2376, - [3855] = 2374, - [3856] = 2395, - [3857] = 2433, - [3858] = 2369, - [3859] = 2404, - [3860] = 2432, - [3861] = 3736, - [3862] = 3862, - [3863] = 2354, - [3864] = 3864, - [3865] = 3865, - [3866] = 3866, - [3867] = 3867, - [3868] = 2137, - [3869] = 2355, - [3870] = 2138, - [3871] = 2361, - [3872] = 2356, - [3873] = 2149, - [3874] = 2360, - [3875] = 2363, - [3876] = 3197, - [3877] = 2148, - [3878] = 3878, - [3879] = 2150, - [3880] = 2171, - [3881] = 2364, - [3882] = 2165, - [3883] = 3883, - [3884] = 2362, - [3885] = 2139, - [3886] = 3866, - [3887] = 1666, - [3888] = 3888, - [3889] = 3889, - [3890] = 3191, - [3891] = 3865, - [3892] = 3892, - [3893] = 2357, - [3894] = 3894, - [3895] = 3895, - [3896] = 3896, - [3897] = 3897, - [3898] = 3898, - [3899] = 3867, - [3900] = 3900, - [3901] = 3901, - [3902] = 2145, - [3903] = 2118, - [3904] = 2119, - [3905] = 2120, - [3906] = 3906, - [3907] = 534, - [3908] = 3908, - [3909] = 2141, - [3910] = 3910, - [3911] = 2140, - [3912] = 3865, - [3913] = 2358, - [3914] = 3914, - [3915] = 3867, - [3916] = 3916, - [3917] = 2175, - [3918] = 2353, - [3919] = 2122, - [3920] = 2359, - [3921] = 2142, - [3922] = 3922, - [3923] = 3923, - [3924] = 3924, - [3925] = 3925, - [3926] = 3926, - [3927] = 2136, - [3928] = 3928, - [3929] = 2143, - [3930] = 2144, - [3931] = 3931, - [3932] = 3932, - [3933] = 2362, - [3934] = 3932, - [3935] = 3935, - [3936] = 3932, - [3937] = 3888, - [3938] = 2353, - [3939] = 2361, - [3940] = 2354, - [3941] = 2362, - [3942] = 2363, - [3943] = 2363, - [3944] = 2364, - [3945] = 3945, - [3946] = 2364, - [3947] = 3932, - [3948] = 2360, - [3949] = 2356, - [3950] = 3950, - [3951] = 3932, - [3952] = 2357, - [3953] = 2358, - [3954] = 3864, - [3955] = 3932, - [3956] = 2359, - [3957] = 2353, - [3958] = 2360, - [3959] = 2361, - [3960] = 3932, - [3961] = 2354, - [3962] = 2355, - [3963] = 3932, - [3964] = 2356, - [3965] = 2357, - [3966] = 2358, - [3967] = 2359, - [3968] = 3932, - [3969] = 2355, - [3970] = 3622, - [3971] = 3971, - [3972] = 3972, - [3973] = 3973, - [3974] = 3974, - [3975] = 3975, - [3976] = 3972, - [3977] = 3610, - [3978] = 3978, - [3979] = 3612, - [3980] = 3972, - [3981] = 3972, - [3982] = 3972, - [3983] = 3983, - [3984] = 3627, - [3985] = 3985, - [3986] = 3971, - [3987] = 3973, - [3988] = 3608, - [3989] = 3974, - [3990] = 3972, - [3991] = 3633, - [3992] = 3975, - [3993] = 3978, - [3994] = 3972, - [3995] = 3983, - [3996] = 3985, - [3997] = 321, - [3998] = 321, - [3999] = 336, - [4000] = 338, - [4001] = 338, - [4002] = 334, - [4003] = 336, - [4004] = 321, - [4005] = 335, - [4006] = 350, - [4007] = 334, - [4008] = 321, - [4009] = 349, - [4010] = 337, - [4011] = 338, - [4012] = 1274, - [4013] = 336, - [4014] = 335, - [4015] = 361, - [4016] = 335, - [4017] = 360, - [4018] = 1274, - [4019] = 354, - [4020] = 347, - [4021] = 366, - [4022] = 349, - [4023] = 365, - [4024] = 334, - [4025] = 348, - [4026] = 350, - [4027] = 338, - [4028] = 364, - [4029] = 363, - [4030] = 336, - [4031] = 346, - [4032] = 357, - [4033] = 345, - [4034] = 337, - [4035] = 368, - [4036] = 361, - [4037] = 364, - [4038] = 365, - [4039] = 349, - [4040] = 357, - [4041] = 348, - [4042] = 205, - [4043] = 360, - [4044] = 345, - [4045] = 354, - [4046] = 1274, - [4047] = 347, - [4048] = 321, - [4049] = 363, - [4050] = 350, - [4051] = 335, - [4052] = 366, - [4053] = 373, - [4054] = 346, - [4055] = 334, - [4056] = 386, - [4057] = 354, - [4058] = 368, - [4059] = 365, - [4060] = 336, - [4061] = 390, - [4062] = 349, - [4063] = 397, - [4064] = 373, - [4065] = 363, - [4066] = 361, - [4067] = 381, - [4068] = 206, - [4069] = 337, - [4070] = 366, - [4071] = 338, - [4072] = 335, - [4073] = 382, - [4074] = 360, - [4075] = 364, - [4076] = 350, - [4077] = 384, - [4078] = 334, - [4079] = 357, - [4080] = 1274, - [4081] = 152, - [4082] = 365, - [4083] = 361, - [4084] = 384, - [4085] = 364, - [4086] = 366, - [4087] = 346, - [4088] = 373, - [4089] = 354, - [4090] = 360, - [4091] = 153, - [4092] = 382, - [4093] = 363, - [4094] = 345, - [4095] = 347, - [4096] = 1382, - [4097] = 386, - [4098] = 348, - [4099] = 390, - [4100] = 357, - [4101] = 364, - [4102] = 381, - [4103] = 397, - [4104] = 366, - [4105] = 350, - [4106] = 152, - [4107] = 368, - [4108] = 154, - [4109] = 2489, - [4110] = 349, - [4111] = 382, - [4112] = 152, - [4113] = 364, - [4114] = 386, + [3409] = 2569, + [3410] = 2514, + [3411] = 2515, + [3412] = 2522, + [3413] = 2525, + [3414] = 2564, + [3415] = 2521, + [3416] = 2535, + [3417] = 2542, + [3418] = 2470, + [3419] = 2483, + [3420] = 2549, + [3421] = 2432, + [3422] = 2440, + [3423] = 2468, + [3424] = 2433, + [3425] = 2437, + [3426] = 2448, + [3427] = 2454, + [3428] = 2460, + [3429] = 2477, + [3430] = 2489, + [3431] = 2524, + [3432] = 2438, + [3433] = 2456, + [3434] = 2484, + [3435] = 2528, + [3436] = 2434, + [3437] = 2476, + [3438] = 2516, + [3439] = 2527, + [3440] = 2482, + [3441] = 2486, + [3442] = 2493, + [3443] = 2495, + [3444] = 2497, + [3445] = 2500, + [3446] = 2529, + [3447] = 2531, + [3448] = 3448, + [3449] = 2537, + [3450] = 2539, + [3451] = 2540, + [3452] = 2544, + [3453] = 2545, + [3454] = 2548, + [3455] = 2550, + [3456] = 2552, + [3457] = 2553, + [3458] = 2556, + [3459] = 2560, + [3460] = 2562, + [3461] = 2563, + [3462] = 2566, + [3463] = 2567, + [3464] = 2507, + [3465] = 2518, + [3466] = 2511, + [3467] = 2436, + [3468] = 2538, + [3469] = 2445, + [3470] = 2532, + [3471] = 2534, + [3472] = 2561, + [3473] = 2439, + [3474] = 2509, + [3475] = 2519, + [3476] = 2442, + [3477] = 2446, + [3478] = 2450, + [3479] = 2451, + [3480] = 2453, + [3481] = 2458, + [3482] = 2461, + [3483] = 2463, + [3484] = 2485, + [3485] = 2510, + [3486] = 2512, + [3487] = 2517, + [3488] = 2487, + [3489] = 2488, + [3490] = 2490, + [3491] = 2492, + [3492] = 2494, + [3493] = 2496, + [3494] = 2498, + [3495] = 2499, + [3496] = 2502, + [3497] = 2503, + [3498] = 2504, + [3499] = 2505, + [3500] = 3500, + [3501] = 3501, + [3502] = 3502, + [3503] = 3389, + [3504] = 314, + [3505] = 2536, + [3506] = 335, + [3507] = 333, + [3508] = 156, + [3509] = 334, + [3510] = 3510, + [3511] = 3511, + [3512] = 157, + [3513] = 3513, + [3514] = 3514, + [3515] = 3515, + [3516] = 3516, + [3517] = 334, + [3518] = 1400, + [3519] = 333, + [3520] = 314, + [3521] = 3353, + [3522] = 3360, + [3523] = 3516, + [3524] = 3524, + [3525] = 2487, + [3526] = 2488, + [3527] = 3514, + [3528] = 2490, + [3529] = 2492, + [3530] = 2494, + [3531] = 2496, + [3532] = 2498, + [3533] = 2499, + [3534] = 2502, + [3535] = 2503, + [3536] = 3515, + [3537] = 153, + [3538] = 336, + [3539] = 1881, + [3540] = 314, + [3541] = 2504, + [3542] = 2505, + [3543] = 332, + [3544] = 3524, + [3545] = 155, + [3546] = 335, + [3547] = 332, + [3548] = 337, + [3549] = 347, + [3550] = 333, + [3551] = 346, + [3552] = 341, + [3553] = 1400, + [3554] = 1440, + [3555] = 3555, + [3556] = 150, + [3557] = 3555, + [3558] = 342, + [3559] = 352, + [3560] = 354, + [3561] = 336, + [3562] = 1411, + [3563] = 334, + [3564] = 348, + [3565] = 1400, + [3566] = 332, + [3567] = 335, + [3568] = 336, + [3569] = 3569, + [3570] = 341, + [3571] = 342, + [3572] = 336, + [3573] = 335, + [3574] = 353, + [3575] = 3575, + [3576] = 355, + [3577] = 3577, + [3578] = 3578, + [3579] = 356, + [3580] = 3580, + [3581] = 357, + [3582] = 341, + [3583] = 1267, + [3584] = 3584, + [3585] = 1378, + [3586] = 342, + [3587] = 3584, + [3588] = 3588, + [3589] = 3569, + [3590] = 3590, + [3591] = 597, + [3592] = 348, + [3593] = 3593, + [3594] = 346, + [3595] = 347, + [3596] = 3596, + [3597] = 1267, + [3598] = 3588, + [3599] = 1440, + [3600] = 3575, + [3601] = 3577, + [3602] = 3578, + [3603] = 3580, + [3604] = 3604, + [3605] = 3605, + [3606] = 1411, + [3607] = 152, + [3608] = 151, + [3609] = 3588, + [3610] = 3569, + [3611] = 3575, + [3612] = 3577, + [3613] = 3578, + [3614] = 3580, + [3615] = 3604, + [3616] = 3605, + [3617] = 3590, + [3618] = 3605, + [3619] = 3604, + [3620] = 337, + [3621] = 676, + [3622] = 360, + [3623] = 353, + [3624] = 358, + [3625] = 3625, + [3626] = 356, + [3627] = 352, + [3628] = 357, + [3629] = 1267, + [3630] = 1267, + [3631] = 341, + [3632] = 354, + [3633] = 358, + [3634] = 3634, + [3635] = 353, + [3636] = 355, + [3637] = 360, + [3638] = 355, + [3639] = 3639, + [3640] = 342, + [3641] = 356, + [3642] = 357, + [3643] = 3643, + [3644] = 150, + [3645] = 421, + [3646] = 150, + [3647] = 152, + [3648] = 425, + [3649] = 416, + [3650] = 401, + [3651] = 402, + [3652] = 151, + [3653] = 439, + [3654] = 1732, + [3655] = 403, + [3656] = 357, + [3657] = 368, + [3658] = 369, + [3659] = 368, + [3660] = 412, + [3661] = 410, + [3662] = 203, + [3663] = 355, + [3664] = 407, + [3665] = 417, + [3666] = 423, + [3667] = 418, + [3668] = 353, + [3669] = 360, + [3670] = 358, + [3671] = 422, + [3672] = 426, + [3673] = 414, + [3674] = 369, + [3675] = 419, + [3676] = 356, + [3677] = 404, + [3678] = 1727, + [3679] = 564, + [3680] = 405, + [3681] = 444, + [3682] = 445, + [3683] = 406, + [3684] = 3684, + [3685] = 636, + [3686] = 613, + [3687] = 679, + [3688] = 618, + [3689] = 619, + [3690] = 204, + [3691] = 614, + [3692] = 687, + [3693] = 629, + [3694] = 152, + [3695] = 655, + [3696] = 691, + [3697] = 158, + [3698] = 648, + [3699] = 3699, + [3700] = 615, + [3701] = 661, + [3702] = 154, + [3703] = 670, + [3704] = 378, + [3705] = 389, + [3706] = 152, + [3707] = 151, + [3708] = 657, + [3709] = 390, + [3710] = 620, + [3711] = 389, + [3712] = 656, + [3713] = 617, + [3714] = 652, + [3715] = 382, + [3716] = 611, + [3717] = 621, + [3718] = 379, + [3719] = 622, + [3720] = 151, + [3721] = 379, + [3722] = 390, + [3723] = 630, + [3724] = 623, + [3725] = 616, + [3726] = 677, + [3727] = 381, + [3728] = 665, + [3729] = 658, + [3730] = 612, + [3731] = 382, + [3732] = 635, + [3733] = 381, + [3734] = 368, + [3735] = 654, + [3736] = 675, + [3737] = 666, + [3738] = 645, + [3739] = 378, + [3740] = 678, + [3741] = 668, + [3742] = 369, + [3743] = 3307, + [3744] = 660, + [3745] = 608, + [3746] = 154, + [3747] = 159, + [3748] = 336, + [3749] = 158, + [3750] = 335, + [3751] = 158, + [3752] = 154, + [3753] = 156, + [3754] = 358, + [3755] = 157, + [3756] = 155, + [3757] = 153, + [3758] = 3307, + [3759] = 360, + [3760] = 422, + [3761] = 423, + [3762] = 378, + [3763] = 379, + [3764] = 381, + [3765] = 382, + [3766] = 439, + [3767] = 444, + [3768] = 445, + [3769] = 421, + [3770] = 401, + [3771] = 402, + [3772] = 403, + [3773] = 404, + [3774] = 405, + [3775] = 407, + [3776] = 410, + [3777] = 412, + [3778] = 414, + [3779] = 352, + [3780] = 354, + [3781] = 150, + [3782] = 416, + [3783] = 417, + [3784] = 418, + [3785] = 419, + [3786] = 1618, + [3787] = 425, + [3788] = 426, + [3789] = 358, + [3790] = 389, + [3791] = 390, + [3792] = 156, + [3793] = 360, + [3794] = 157, + [3795] = 155, + [3796] = 153, + [3797] = 3307, + [3798] = 161, + [3799] = 160, + [3800] = 406, + [3801] = 480, + [3802] = 564, + [3803] = 358, + [3804] = 360, + [3805] = 368, + [3806] = 163, + [3807] = 160, + [3808] = 369, + [3809] = 2161, + [3810] = 368, + [3811] = 159, + [3812] = 342, + [3813] = 474, + [3814] = 369, + [3815] = 453, + [3816] = 537, + [3817] = 159, + [3818] = 454, + [3819] = 335, + [3820] = 452, + [3821] = 1692, + [3822] = 2015, + [3823] = 336, + [3824] = 500, + [3825] = 161, + [3826] = 1705, + [3827] = 161, + [3828] = 527, + [3829] = 341, + [3830] = 1731, + [3831] = 160, + [3832] = 455, + [3833] = 456, + [3834] = 549, + [3835] = 1973, + [3836] = 2159, + [3837] = 555, + [3838] = 536, + [3839] = 450, + [3840] = 1617, + [3841] = 1651, + [3842] = 636, + [3843] = 645, + [3844] = 1891, + [3845] = 1595, + [3846] = 3846, + [3847] = 555, + [3848] = 660, + [3849] = 353, + [3850] = 661, + [3851] = 630, + [3852] = 1780, + [3853] = 1782, + [3854] = 635, + [3855] = 2011, + [3856] = 561, + [3857] = 665, + [3858] = 535, + [3859] = 2008, + [3860] = 355, + [3861] = 368, + [3862] = 675, + [3863] = 369, + [3864] = 2012, + [3865] = 1764, + [3866] = 1765, + [3867] = 1766, + [3868] = 1767, + [3869] = 3869, + [3870] = 342, + [3871] = 356, + [3872] = 658, + [3873] = 2161, + [3874] = 2009, + [3875] = 2013, + [3876] = 687, + [3877] = 357, + [3878] = 548, + [3879] = 666, + [3880] = 2014, + [3881] = 668, + [3882] = 670, + [3883] = 561, + [3884] = 677, + [3885] = 678, + [3886] = 679, + [3887] = 535, + [3888] = 691, + [3889] = 652, + [3890] = 554, + [3891] = 611, + [3892] = 533, + [3893] = 612, + [3894] = 613, + [3895] = 614, + [3896] = 615, + [3897] = 549, + [3898] = 527, + [3899] = 616, + [3900] = 1999, + [3901] = 378, + [3902] = 617, + [3903] = 2000, + [3904] = 555, + [3905] = 536, + [3906] = 618, + [3907] = 619, + [3908] = 379, + [3909] = 620, + [3910] = 381, + [3911] = 621, + [3912] = 382, + [3913] = 2002, + [3914] = 1789, + [3915] = 341, + [3916] = 2159, + [3917] = 2003, + [3918] = 2004, + [3919] = 648, + [3920] = 537, + [3921] = 1727, + [3922] = 360, + [3923] = 163, + [3924] = 1732, + [3925] = 1790, + [3926] = 548, + [3927] = 608, + [3928] = 654, + [3929] = 554, + [3930] = 549, + [3931] = 622, + [3932] = 1601, + [3933] = 537, + [3934] = 657, + [3935] = 378, + [3936] = 2159, + [3937] = 452, + [3938] = 1973, + [3939] = 2161, + [3940] = 2015, + [3941] = 2010, + [3942] = 452, + [3943] = 533, + [3944] = 527, + [3945] = 379, + [3946] = 3946, + [3947] = 450, + [3948] = 455, + [3949] = 456, + [3950] = 500, + [3951] = 381, + [3952] = 382, + [3953] = 623, + [3954] = 629, + [3955] = 655, + [3956] = 656, + [3957] = 536, + [3958] = 2564, + [3959] = 2562, + [3960] = 2563, + [3961] = 2566, + [3962] = 2567, + [3963] = 2507, + [3964] = 2518, + [3965] = 2511, + [3966] = 2436, + [3967] = 2538, + [3968] = 2445, + [3969] = 2532, + [3970] = 2534, + [3971] = 2561, + [3972] = 2439, + [3973] = 2509, + [3974] = 2519, + [3975] = 536, + [3976] = 379, + [3977] = 360, + [3978] = 2442, + [3979] = 2446, + [3980] = 2450, + [3981] = 2451, + [3982] = 2453, + [3983] = 2458, + [3984] = 2461, + [3985] = 2463, + [3986] = 2485, + [3987] = 2510, + [3988] = 2512, + [3989] = 2517, + [3990] = 381, + [3991] = 2459, + [3992] = 2464, + [3993] = 2466, + [3994] = 2469, + [3995] = 382, + [3996] = 3996, + [3997] = 2471, + [3998] = 356, + [3999] = 2475, + [4000] = 2478, + [4001] = 2480, + [4002] = 3996, + [4003] = 378, + [4004] = 2501, + [4005] = 2506, + [4006] = 2513, + [4007] = 2523, + [4008] = 355, + [4009] = 1692, + [4010] = 2462, + [4011] = 2465, + [4012] = 2467, + [4013] = 2472, + [4014] = 2491, + [4015] = 2569, + [4016] = 2514, + [4017] = 2515, + [4018] = 2522, + [4019] = 2525, + [4020] = 537, + [4021] = 2556, + [4022] = 2560, + [4023] = 2535, + [4024] = 2542, + [4025] = 2470, + [4026] = 353, + [4027] = 548, + [4028] = 2483, + [4029] = 561, + [4030] = 2549, + [4031] = 535, + [4032] = 2432, + [4033] = 554, + [4034] = 533, + [4035] = 2440, + [4036] = 2468, + [4037] = 357, + [4038] = 2433, + [4039] = 2437, + [4040] = 2448, + [4041] = 2454, + [4042] = 2460, + [4043] = 2477, + [4044] = 3996, + [4045] = 3996, + [4046] = 3996, + [4047] = 3996, + [4048] = 2489, + [4049] = 2524, + [4050] = 2438, + [4051] = 2456, + [4052] = 1692, + [4053] = 2484, + [4054] = 2528, + [4055] = 2434, + [4056] = 2476, + [4057] = 527, + [4058] = 2516, + [4059] = 2527, + [4060] = 3996, + [4061] = 549, + [4062] = 555, + [4063] = 2482, + [4064] = 2486, + [4065] = 2493, + [4066] = 2495, + [4067] = 2497, + [4068] = 2500, + [4069] = 2529, + [4070] = 2531, + [4071] = 2536, + [4072] = 2537, + [4073] = 2539, + [4074] = 2540, + [4075] = 2544, + [4076] = 2545, + [4077] = 2548, + [4078] = 2550, + [4079] = 2552, + [4080] = 2553, + [4081] = 2521, + [4082] = 2209, + [4083] = 638, + [4084] = 639, + [4085] = 2502, + [4086] = 2265, + [4087] = 4087, + [4088] = 4088, + [4089] = 4089, + [4090] = 2259, + [4091] = 2221, + [4092] = 2215, + [4093] = 3353, + [4094] = 634, + [4095] = 2253, + [4096] = 2503, + [4097] = 3360, + [4098] = 4098, + [4099] = 4089, + [4100] = 2499, + [4101] = 2260, + [4102] = 2504, + [4103] = 2261, + [4104] = 640, + [4105] = 4105, + [4106] = 4106, + [4107] = 641, + [4108] = 642, + [4109] = 643, + [4110] = 4110, + [4111] = 4111, + [4112] = 4112, + [4113] = 644, + [4114] = 4114, [4115] = 4115, - [4116] = 366, - [4117] = 384, - [4118] = 354, - [4119] = 357, - [4120] = 365, - [4121] = 363, - [4122] = 373, - [4123] = 364, - [4124] = 360, - [4125] = 361, - [4126] = 154, - [4127] = 368, - [4128] = 368, - [4129] = 4129, - [4130] = 153, - [4131] = 4131, + [4116] = 646, + [4117] = 647, + [4118] = 2254, + [4119] = 2256, + [4120] = 4120, + [4121] = 537, + [4122] = 4122, + [4123] = 2505, + [4124] = 4124, + [4125] = 2262, + [4126] = 2272, + [4127] = 2222, + [4128] = 2252, + [4129] = 2228, + [4130] = 2487, + [4131] = 2498, [4132] = 4132, - [4133] = 366, - [4134] = 155, - [4135] = 160, - [4136] = 397, - [4137] = 159, - [4138] = 158, - [4139] = 156, - [4140] = 157, - [4141] = 381, - [4142] = 373, - [4143] = 390, - [4144] = 1382, - [4145] = 408, - [4146] = 414, - [4147] = 2642, - [4148] = 415, - [4149] = 416, - [4150] = 417, - [4151] = 418, - [4152] = 419, - [4153] = 420, - [4154] = 421, - [4155] = 422, - [4156] = 450, - [4157] = 424, - [4158] = 425, - [4159] = 426, - [4160] = 4160, - [4161] = 427, - [4162] = 4129, - [4163] = 407, - [4164] = 397, - [4165] = 405, - [4166] = 559, - [4167] = 373, - [4168] = 2641, - [4169] = 561, - [4170] = 562, - [4171] = 386, - [4172] = 4131, - [4173] = 364, - [4174] = 382, - [4175] = 368, - [4176] = 2636, - [4177] = 152, - [4178] = 556, - [4179] = 381, - [4180] = 545, - [4181] = 406, - [4182] = 382, - [4183] = 2643, - [4184] = 155, - [4185] = 384, - [4186] = 154, - [4187] = 384, - [4188] = 534, - [4189] = 4189, - [4190] = 153, - [4191] = 4191, - [4192] = 435, - [4193] = 373, - [4194] = 4194, - [4195] = 163, - [4196] = 4132, - [4197] = 2615, - [4198] = 433, - [4199] = 551, - [4200] = 533, - [4201] = 368, - [4202] = 162, - [4203] = 161, - [4204] = 159, - [4205] = 158, - [4206] = 156, - [4207] = 360, - [4208] = 157, - [4209] = 409, - [4210] = 2611, - [4211] = 2653, - [4212] = 525, - [4213] = 410, - [4214] = 361, - [4215] = 411, - [4216] = 366, - [4217] = 397, - [4218] = 4218, - [4219] = 532, - [4220] = 381, - [4221] = 413, - [4222] = 432, - [4223] = 390, - [4224] = 160, - [4225] = 364, - [4226] = 562, - [4227] = 154, - [4228] = 155, - [4229] = 160, - [4230] = 532, - [4231] = 4231, - [4232] = 499, - [4233] = 497, - [4234] = 4234, - [4235] = 153, - [4236] = 405, - [4237] = 4237, - [4238] = 4234, - [4239] = 4189, - [4240] = 4240, - [4241] = 373, - [4242] = 157, - [4243] = 534, - [4244] = 525, - [4245] = 4191, - [4246] = 406, - [4247] = 390, - [4248] = 4248, - [4249] = 492, - [4250] = 460, - [4251] = 461, - [4252] = 165, - [4253] = 545, - [4254] = 368, - [4255] = 409, - [4256] = 468, - [4257] = 432, - [4258] = 163, - [4259] = 397, - [4260] = 152, - [4261] = 386, - [4262] = 469, - [4263] = 433, - [4264] = 4234, - [4265] = 4218, - [4266] = 381, - [4267] = 4267, - [4268] = 410, - [4269] = 411, - [4270] = 162, - [4271] = 161, - [4272] = 4272, - [4273] = 494, - [4274] = 413, - [4275] = 414, - [4276] = 415, - [4277] = 416, - [4278] = 417, - [4279] = 418, - [4280] = 419, - [4281] = 420, - [4282] = 421, - [4283] = 4283, - [4284] = 422, - [4285] = 450, - [4286] = 424, - [4287] = 384, - [4288] = 425, - [4289] = 426, - [4290] = 397, - [4291] = 427, - [4292] = 4194, - [4293] = 366, - [4294] = 407, - [4295] = 381, - [4296] = 360, - [4297] = 466, - [4298] = 435, - [4299] = 382, - [4300] = 556, - [4301] = 384, - [4302] = 408, - [4303] = 361, - [4304] = 4304, - [4305] = 551, - [4306] = 561, - [4307] = 533, - [4308] = 4160, - [4309] = 4234, - [4310] = 1666, - [4311] = 559, - [4312] = 159, - [4313] = 158, - [4314] = 156, - [4315] = 382, - [4316] = 460, - [4317] = 422, - [4318] = 4318, - [4319] = 533, - [4320] = 4320, - [4321] = 4321, - [4322] = 334, - [4323] = 4323, - [4324] = 4324, - [4325] = 4325, - [4326] = 4326, - [4327] = 4327, - [4328] = 4328, - [4329] = 4329, - [4330] = 4330, - [4331] = 4331, - [4332] = 4332, - [4333] = 4333, - [4334] = 4334, - [4335] = 4335, - [4336] = 4336, - [4337] = 4337, - [4338] = 158, - [4339] = 4339, - [4340] = 4340, - [4341] = 494, - [4342] = 4342, - [4343] = 364, - [4344] = 411, - [4345] = 4345, - [4346] = 156, - [4347] = 408, - [4348] = 4348, - [4349] = 4349, - [4350] = 4350, - [4351] = 450, - [4352] = 384, - [4353] = 162, - [4354] = 156, - [4355] = 4355, - [4356] = 497, - [4357] = 161, - [4358] = 4358, - [4359] = 4359, - [4360] = 417, - [4361] = 163, - [4362] = 4362, - [4363] = 409, - [4364] = 499, - [4365] = 4365, - [4366] = 469, - [4367] = 1666, - [4368] = 4368, - [4369] = 4369, - [4370] = 410, - [4371] = 418, - [4372] = 157, - [4373] = 4373, + [4133] = 4133, + [4134] = 637, + [4135] = 2229, + [4136] = 2488, + [4137] = 2263, + [4138] = 2233, + [4139] = 2490, + [4140] = 2234, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, + [4144] = 1692, + [4145] = 2492, + [4146] = 2236, + [4147] = 2494, + [4148] = 4148, + [4149] = 4149, + [4150] = 624, + [4151] = 4151, + [4152] = 4152, + [4153] = 4153, + [4154] = 4154, + [4155] = 4155, + [4156] = 2264, + [4157] = 4157, + [4158] = 4088, + [4159] = 4098, + [4160] = 2250, + [4161] = 2496, + [4162] = 2257, + [4163] = 631, + [4164] = 4088, + [4165] = 4098, + [4166] = 632, + [4167] = 2212, + [4168] = 2213, + [4169] = 4169, + [4170] = 633, + [4171] = 4171, + [4172] = 2499, + [4173] = 2488, + [4174] = 4174, + [4175] = 2492, + [4176] = 2494, + [4177] = 4087, + [4178] = 2496, + [4179] = 2503, + [4180] = 2504, + [4181] = 2505, + [4182] = 2498, + [4183] = 4183, + [4184] = 2487, + [4185] = 2488, + [4186] = 2490, + [4187] = 2492, + [4188] = 2494, + [4189] = 2496, + [4190] = 2498, + [4191] = 2490, + [4192] = 2503, + [4193] = 2504, + [4194] = 2505, + [4195] = 4183, + [4196] = 4183, + [4197] = 4183, + [4198] = 4183, + [4199] = 2499, + [4200] = 4183, + [4201] = 2502, + [4202] = 4183, + [4203] = 4183, + [4204] = 2487, + [4205] = 4111, + [4206] = 4206, + [4207] = 2502, + [4208] = 4208, + [4209] = 4209, + [4210] = 4210, + [4211] = 4209, + [4212] = 4209, + [4213] = 4209, + [4214] = 4214, + [4215] = 4215, + [4216] = 4209, + [4217] = 4210, + [4218] = 4209, + [4219] = 4219, + [4220] = 4208, + [4221] = 4221, + [4222] = 4209, + [4223] = 4214, + [4224] = 4215, + [4225] = 4225, + [4226] = 4219, + [4227] = 4221, + [4228] = 4225, + [4229] = 314, + [4230] = 163, + [4231] = 333, + [4232] = 314, + [4233] = 332, + [4234] = 334, + [4235] = 347, + [4236] = 314, + [4237] = 346, + [4238] = 337, + [4239] = 348, + [4240] = 332, + [4241] = 335, + [4242] = 334, + [4243] = 336, + [4244] = 333, + [4245] = 347, + [4246] = 335, + [4247] = 342, + [4248] = 314, + [4249] = 332, + [4250] = 341, + [4251] = 1267, + [4252] = 348, + [4253] = 337, + [4254] = 346, + [4255] = 333, + [4256] = 336, + [4257] = 334, + [4258] = 353, + [4259] = 358, + [4260] = 335, + [4261] = 348, + [4262] = 332, + [4263] = 337, + [4264] = 334, + [4265] = 357, + [4266] = 347, + [4267] = 333, + [4268] = 356, + [4269] = 336, + [4270] = 346, + [4271] = 150, + [4272] = 355, + [4273] = 341, + [4274] = 1267, + [4275] = 352, + [4276] = 354, + [4277] = 360, + [4278] = 342, + [4279] = 357, + [4280] = 335, + [4281] = 368, + [4282] = 352, + [4283] = 1267, + [4284] = 354, + [4285] = 347, + [4286] = 341, + [4287] = 360, + [4288] = 337, + [4289] = 336, + [4290] = 346, + [4291] = 358, + [4292] = 348, + [4293] = 353, + [4294] = 356, + [4295] = 369, + [4296] = 203, + [4297] = 150, + [4298] = 152, + [4299] = 151, + [4300] = 342, + [4301] = 355, + [4302] = 314, + [4303] = 381, + [4304] = 353, + [4305] = 358, + [4306] = 150, + [4307] = 356, + [4308] = 341, + [4309] = 150, + [4310] = 360, + [4311] = 379, + [4312] = 336, + [4313] = 357, + [4314] = 352, + [4315] = 1267, + [4316] = 378, + [4317] = 390, + [4318] = 335, + [4319] = 334, + [4320] = 204, + [4321] = 333, + [4322] = 354, + [4323] = 389, + [4324] = 152, + [4325] = 151, + [4326] = 355, + [4327] = 368, + [4328] = 382, + [4329] = 342, + [4330] = 369, + [4331] = 332, + [4332] = 348, + [4333] = 151, + [4334] = 347, + [4335] = 353, + [4336] = 352, + [4337] = 360, + [4338] = 337, + [4339] = 369, + [4340] = 360, + [4341] = 382, + [4342] = 357, + [4343] = 389, + [4344] = 378, + [4345] = 342, + [4346] = 368, + [4347] = 152, + [4348] = 354, + [4349] = 1378, + [4350] = 355, + [4351] = 346, + [4352] = 358, + [4353] = 379, + [4354] = 150, + [4355] = 356, + [4356] = 390, + [4357] = 338, + [4358] = 341, + [4359] = 358, + [4360] = 381, + [4361] = 150, + [4362] = 500, + [4363] = 379, + [4364] = 353, + [4365] = 369, + [4366] = 4366, + [4367] = 157, + [4368] = 153, + [4369] = 158, + [4370] = 382, + [4371] = 154, + [4372] = 369, + [4373] = 356, [4374] = 4374, [4375] = 4375, - [4376] = 4376, - [4377] = 419, - [4378] = 4378, - [4379] = 382, - [4380] = 4380, + [4376] = 358, + [4377] = 360, + [4378] = 390, + [4379] = 358, + [4380] = 352, [4381] = 4381, - [4382] = 427, - [4383] = 4383, - [4384] = 155, - [4385] = 160, - [4386] = 159, - [4387] = 413, - [4388] = 4388, - [4389] = 397, - [4390] = 4390, - [4391] = 4391, - [4392] = 407, - [4393] = 4393, - [4394] = 4394, - [4395] = 4395, - [4396] = 4396, - [4397] = 154, - [4398] = 424, - [4399] = 4399, - [4400] = 4400, - [4401] = 420, - [4402] = 4402, - [4403] = 425, - [4404] = 421, - [4405] = 4405, - [4406] = 4406, - [4407] = 466, - [4408] = 4408, - [4409] = 4409, - [4410] = 4410, - [4411] = 4411, + [4382] = 355, + [4383] = 150, + [4384] = 354, + [4385] = 152, + [4386] = 151, + [4387] = 368, + [4388] = 1378, + [4389] = 452, + [4390] = 378, + [4391] = 450, + [4392] = 455, + [4393] = 456, + [4394] = 360, + [4395] = 155, + [4396] = 357, + [4397] = 381, + [4398] = 368, + [4399] = 389, + [4400] = 156, + [4401] = 456, + [4402] = 2746, + [4403] = 554, + [4404] = 2748, + [4405] = 2749, + [4406] = 150, + [4407] = 421, + [4408] = 401, + [4409] = 533, + [4410] = 402, + [4411] = 352, [4412] = 4412, - [4413] = 4413, - [4414] = 4414, - [4415] = 4415, - [4416] = 4416, - [4417] = 4417, - [4418] = 4304, - [4419] = 4419, - [4420] = 4420, - [4421] = 532, - [4422] = 153, - [4423] = 4423, - [4424] = 4424, - [4425] = 4425, - [4426] = 1584, - [4427] = 4427, - [4428] = 4428, - [4429] = 4429, - [4430] = 4430, - [4431] = 4431, - [4432] = 4432, - [4433] = 373, - [4434] = 4434, - [4435] = 4435, - [4436] = 4436, - [4437] = 4437, - [4438] = 4438, - [4439] = 4439, + [4413] = 2727, + [4414] = 548, + [4415] = 452, + [4416] = 2751, + [4417] = 389, + [4418] = 403, + [4419] = 404, + [4420] = 158, + [4421] = 154, + [4422] = 537, + [4423] = 405, + [4424] = 4375, + [4425] = 406, + [4426] = 381, + [4427] = 447, + [4428] = 407, + [4429] = 439, + [4430] = 358, + [4431] = 354, + [4432] = 397, + [4433] = 2728, + [4434] = 379, + [4435] = 410, + [4436] = 412, + [4437] = 152, + [4438] = 414, + [4439] = 156, [4440] = 4440, - [4441] = 4441, - [4442] = 4442, - [4443] = 4443, - [4444] = 366, - [4445] = 4445, - [4446] = 165, - [4447] = 4447, - [4448] = 4448, - [4449] = 4449, - [4450] = 559, - [4451] = 545, - [4452] = 468, - [4453] = 4453, - [4454] = 4454, - [4455] = 4455, - [4456] = 368, - [4457] = 4457, - [4458] = 414, - [4459] = 4459, - [4460] = 1648, - [4461] = 525, - [4462] = 415, - [4463] = 1649, - [4464] = 561, - [4465] = 562, - [4466] = 534, - [4467] = 157, - [4468] = 4468, - [4469] = 4469, - [4470] = 492, - [4471] = 4471, - [4472] = 4472, - [4473] = 4473, - [4474] = 4474, - [4475] = 159, - [4476] = 4476, - [4477] = 4477, - [4478] = 4478, - [4479] = 152, - [4480] = 405, - [4481] = 4481, - [4482] = 426, - [4483] = 4483, - [4484] = 152, - [4485] = 1626, - [4486] = 4486, - [4487] = 4487, - [4488] = 4488, + [4441] = 416, + [4442] = 417, + [4443] = 157, + [4444] = 418, + [4445] = 4381, + [4446] = 382, + [4447] = 155, + [4448] = 161, + [4449] = 381, + [4450] = 425, + [4451] = 151, + [4452] = 368, + [4453] = 527, + [4454] = 360, + [4455] = 153, + [4456] = 160, + [4457] = 159, + [4458] = 441, + [4459] = 382, + [4460] = 369, + [4461] = 378, + [4462] = 368, + [4463] = 4463, + [4464] = 4464, + [4465] = 4465, + [4466] = 390, + [4467] = 426, + [4468] = 561, + [4469] = 422, + [4470] = 4366, + [4471] = 549, + [4472] = 450, + [4473] = 2745, + [4474] = 378, + [4475] = 455, + [4476] = 535, + [4477] = 500, + [4478] = 444, + [4479] = 445, + [4480] = 423, + [4481] = 555, + [4482] = 536, + [4483] = 369, + [4484] = 379, + [4485] = 419, + [4486] = 155, + [4487] = 450, + [4488] = 441, [4489] = 4489, - [4490] = 4490, + [4490] = 548, [4491] = 4491, - [4492] = 416, - [4493] = 4493, - [4494] = 4494, - [4495] = 4495, - [4496] = 406, - [4497] = 4497, - [4498] = 4498, - [4499] = 4499, - [4500] = 461, - [4501] = 4501, - [4502] = 4502, - [4503] = 4503, - [4504] = 4504, - [4505] = 1639, - [4506] = 4506, - [4507] = 556, + [4492] = 150, + [4493] = 4464, + [4494] = 414, + [4495] = 397, + [4496] = 425, + [4497] = 158, + [4498] = 154, + [4499] = 4463, + [4500] = 378, + [4501] = 4440, + [4502] = 537, + [4503] = 1692, + [4504] = 403, + [4505] = 404, + [4506] = 554, + [4507] = 4507, [4508] = 4508, - [4509] = 1644, - [4510] = 4510, - [4511] = 551, - [4512] = 381, - [4513] = 4513, - [4514] = 158, - [4515] = 4515, - [4516] = 4516, - [4517] = 4517, - [4518] = 4518, - [4519] = 4519, - [4520] = 364, - [4521] = 4521, - [4522] = 466, - [4523] = 1694, + [4509] = 426, + [4510] = 549, + [4511] = 379, + [4512] = 354, + [4513] = 405, + [4514] = 381, + [4515] = 533, + [4516] = 456, + [4517] = 152, + [4518] = 156, + [4519] = 416, + [4520] = 4520, + [4521] = 378, + [4522] = 406, + [4523] = 382, [4524] = 4524, - [4525] = 4437, - [4526] = 384, - [4527] = 4438, - [4528] = 4528, - [4529] = 156, - [4530] = 4423, - [4531] = 4443, - [4532] = 4532, - [4533] = 4381, - [4534] = 492, - [4535] = 4535, - [4536] = 460, - [4537] = 1648, - [4538] = 1649, - [4539] = 373, + [4525] = 4525, + [4526] = 389, + [4527] = 474, + [4528] = 455, + [4529] = 423, + [4530] = 157, + [4531] = 402, + [4532] = 452, + [4533] = 422, + [4534] = 454, + [4535] = 444, + [4536] = 421, + [4537] = 480, + [4538] = 4508, + [4539] = 445, [4540] = 4540, - [4541] = 335, - [4542] = 559, - [4543] = 545, - [4544] = 461, - [4545] = 4440, - [4546] = 157, - [4547] = 4540, - [4548] = 4548, - [4549] = 4441, - [4550] = 4550, - [4551] = 349, - [4552] = 4552, - [4553] = 1668, - [4554] = 1696, - [4555] = 4552, - [4556] = 335, - [4557] = 165, - [4558] = 368, - [4559] = 4559, - [4560] = 551, - [4561] = 162, - [4562] = 1697, - [4563] = 4563, - [4564] = 532, - [4565] = 161, - [4566] = 4566, - [4567] = 533, - [4568] = 4568, - [4569] = 397, - [4570] = 4570, - [4571] = 4491, - [4572] = 4572, - [4573] = 158, - [4574] = 4436, - [4575] = 4575, - [4576] = 4576, - [4577] = 334, - [4578] = 494, - [4579] = 4420, - [4580] = 163, - [4581] = 561, - [4582] = 468, - [4583] = 4424, - [4584] = 364, - [4585] = 4535, - [4586] = 556, - [4587] = 4488, - [4588] = 4427, - [4589] = 562, - [4590] = 582, - [4591] = 159, - [4592] = 154, - [4593] = 469, - [4594] = 4576, + [4541] = 368, + [4542] = 407, + [4543] = 153, + [4544] = 417, + [4545] = 410, + [4546] = 379, + [4547] = 358, + [4548] = 555, + [4549] = 418, + [4550] = 561, + [4551] = 536, + [4552] = 352, + [4553] = 360, + [4554] = 412, + [4555] = 500, + [4556] = 161, + [4557] = 439, + [4558] = 4508, + [4559] = 447, + [4560] = 4465, + [4561] = 163, + [4562] = 401, + [4563] = 4508, + [4564] = 535, + [4565] = 419, + [4566] = 390, + [4567] = 160, + [4568] = 369, + [4569] = 159, + [4570] = 453, + [4571] = 381, + [4572] = 382, + [4573] = 4573, + [4574] = 527, + [4575] = 4412, + [4576] = 151, + [4577] = 4577, + [4578] = 150, + [4579] = 161, + [4580] = 160, + [4581] = 159, + [4582] = 549, + [4583] = 527, + [4584] = 4584, + [4585] = 4585, + [4586] = 4586, + [4587] = 4587, + [4588] = 555, + [4589] = 536, + [4590] = 4590, + [4591] = 4591, + [4592] = 4592, + [4593] = 425, + [4594] = 4594, [4595] = 4595, - [4596] = 4442, - [4597] = 1626, - [4598] = 525, - [4599] = 381, - [4600] = 153, - [4601] = 4489, - [4602] = 4575, - [4603] = 4419, - [4604] = 1666, - [4605] = 499, - [4606] = 155, - [4607] = 160, - [4608] = 4428, - [4609] = 1584, - [4610] = 1639, - [4611] = 4429, - [4612] = 1644, - [4613] = 4431, - [4614] = 534, - [4615] = 1821, - [4616] = 4616, - [4617] = 497, - [4618] = 4432, - [4619] = 4472, - [4620] = 350, - [4621] = 382, - [4622] = 4435, - [4623] = 4623, - [4624] = 686, - [4625] = 365, - [4626] = 1694, - [4627] = 658, - [4628] = 2641, - [4629] = 4629, + [4596] = 4596, + [4597] = 4597, + [4598] = 426, + [4599] = 4599, + [4600] = 4600, + [4601] = 4601, + [4602] = 4602, + [4603] = 439, + [4604] = 444, + [4605] = 445, + [4606] = 358, + [4607] = 421, + [4608] = 156, + [4609] = 401, + [4610] = 402, + [4611] = 4611, + [4612] = 403, + [4613] = 1601, + [4614] = 404, + [4615] = 405, + [4616] = 1617, + [4617] = 4617, + [4618] = 4618, + [4619] = 4619, + [4620] = 406, + [4621] = 407, + [4622] = 410, + [4623] = 412, + [4624] = 414, + [4625] = 1651, + [4626] = 1595, + [4627] = 360, + [4628] = 416, + [4629] = 417, [4630] = 4630, - [4631] = 4631, - [4632] = 551, - [4633] = 533, - [4634] = 635, - [4635] = 626, - [4636] = 363, - [4637] = 631, - [4638] = 677, - [4639] = 525, - [4640] = 1732, - [4641] = 1733, - [4642] = 1734, - [4643] = 4643, - [4644] = 1735, - [4645] = 532, - [4646] = 648, - [4647] = 611, - [4648] = 612, - [4649] = 613, - [4650] = 614, - [4651] = 616, - [4652] = 617, - [4653] = 2653, - [4654] = 163, - [4655] = 618, - [4656] = 632, - [4657] = 4657, - [4658] = 676, - [4659] = 4659, - [4660] = 4660, - [4661] = 2615, - [4662] = 2636, - [4663] = 4663, - [4664] = 397, - [4665] = 625, - [4666] = 659, - [4667] = 4667, - [4668] = 335, - [4669] = 559, - [4670] = 334, + [4631] = 418, + [4632] = 4632, + [4633] = 419, + [4634] = 378, + [4635] = 452, + [4636] = 4636, + [4637] = 4637, + [4638] = 4638, + [4639] = 360, + [4640] = 379, + [4641] = 157, + [4642] = 4642, + [4643] = 381, + [4644] = 382, + [4645] = 453, + [4646] = 548, + [4647] = 454, + [4648] = 455, + [4649] = 456, + [4650] = 500, + [4651] = 155, + [4652] = 561, + [4653] = 535, + [4654] = 537, + [4655] = 156, + [4656] = 1618, + [4657] = 1629, + [4658] = 1692, + [4659] = 335, + [4660] = 152, + [4661] = 157, + [4662] = 153, + [4663] = 155, + [4664] = 554, + [4665] = 4665, + [4666] = 4666, + [4667] = 151, + [4668] = 4668, + [4669] = 4669, + [4670] = 4670, [4671] = 4671, - [4672] = 4623, - [4673] = 381, - [4674] = 2642, - [4675] = 349, - [4676] = 660, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, + [4675] = 4675, + [4676] = 4676, [4677] = 4677, [4678] = 4678, - [4679] = 354, - [4680] = 662, - [4681] = 561, - [4682] = 1668, - [4683] = 634, + [4679] = 4679, + [4680] = 4680, + [4681] = 4681, + [4682] = 4682, + [4683] = 4683, [4684] = 4684, - [4685] = 4548, - [4686] = 382, - [4687] = 350, - [4688] = 562, - [4689] = 645, - [4690] = 621, + [4685] = 4685, + [4686] = 4686, + [4687] = 4687, + [4688] = 4688, + [4689] = 4689, + [4690] = 4690, [4691] = 4691, - [4692] = 4692, - [4693] = 637, - [4694] = 638, + [4692] = 153, + [4693] = 4693, + [4694] = 4694, [4695] = 4695, [4696] = 4696, - [4697] = 384, + [4697] = 4697, [4698] = 4698, [4699] = 4699, - [4700] = 663, + [4700] = 4700, [4701] = 4701, - [4702] = 639, + [4702] = 533, [4703] = 4703, - [4704] = 1821, - [4705] = 4705, - [4706] = 4706, - [4707] = 1696, - [4708] = 664, - [4709] = 1697, - [4710] = 4550, - [4711] = 2350, - [4712] = 159, - [4713] = 364, - [4714] = 665, - [4715] = 640, - [4716] = 641, - [4717] = 158, - [4718] = 156, - [4719] = 534, - [4720] = 1845, - [4721] = 157, - [4722] = 650, - [4723] = 162, - [4724] = 667, - [4725] = 2636, - [4726] = 161, - [4727] = 155, - [4728] = 4559, - [4729] = 357, - [4730] = 160, - [4731] = 668, - [4732] = 622, + [4704] = 4704, + [4705] = 158, + [4706] = 154, + [4707] = 450, + [4708] = 4708, + [4709] = 4709, + [4710] = 4710, + [4711] = 4711, + [4712] = 4712, + [4713] = 474, + [4714] = 4714, + [4715] = 4715, + [4716] = 4716, + [4717] = 4717, + [4718] = 4718, + [4719] = 4719, + [4720] = 4720, + [4721] = 4721, + [4722] = 368, + [4723] = 4723, + [4724] = 4724, + [4725] = 4725, + [4726] = 4726, + [4727] = 4727, + [4728] = 4728, + [4729] = 4729, + [4730] = 4730, + [4731] = 4731, + [4732] = 4732, [4733] = 4733, - [4734] = 623, + [4734] = 4734, [4735] = 4735, [4736] = 4736, - [4737] = 642, - [4738] = 643, - [4739] = 644, - [4740] = 4595, - [4741] = 2615, + [4737] = 4737, + [4738] = 4738, + [4739] = 4739, + [4740] = 4740, + [4741] = 4741, [4742] = 4742, [4743] = 4743, [4744] = 4744, [4745] = 4745, [4746] = 4746, [4747] = 4747, - [4748] = 582, + [4748] = 4748, [4749] = 4749, [4750] = 4750, [4751] = 4751, - [4752] = 556, + [4752] = 4752, [4753] = 4753, - [4754] = 651, - [4755] = 652, - [4756] = 4570, + [4754] = 4754, + [4755] = 4755, + [4756] = 4756, [4757] = 4757, - [4758] = 669, - [4759] = 4759, - [4760] = 4568, + [4758] = 4758, + [4759] = 163, + [4760] = 4760, [4761] = 4761, - [4762] = 582, + [4762] = 4762, [4763] = 4763, - [4764] = 2641, + [4764] = 4764, [4765] = 4765, [4766] = 4766, - [4767] = 694, - [4768] = 675, - [4769] = 1666, + [4767] = 4767, + [4768] = 4768, + [4769] = 4769, [4770] = 4770, [4771] = 4771, - [4772] = 4772, - [4773] = 653, - [4774] = 678, + [4772] = 480, + [4773] = 369, + [4774] = 4774, [4775] = 4775, - [4776] = 683, - [4777] = 670, - [4778] = 684, - [4779] = 4779, - [4780] = 2653, - [4781] = 1728, - [4782] = 1729, - [4783] = 655, - [4784] = 2642, - [4785] = 646, + [4776] = 4776, + [4777] = 4777, + [4778] = 4520, + [4779] = 150, + [4780] = 422, + [4781] = 423, + [4782] = 4782, + [4783] = 474, + [4784] = 160, + [4785] = 159, [4786] = 4786, - [4787] = 545, - [4788] = 4788, - [4789] = 4616, - [4790] = 4790, - [4791] = 687, - [4792] = 688, - [4793] = 630, - [4794] = 657, - [4795] = 610, - [4796] = 1846, - [4797] = 2990, - [4798] = 4798, - [4799] = 652, - [4800] = 648, - [4801] = 614, - [4802] = 4802, - [4803] = 4743, - [4804] = 653, - [4805] = 4805, - [4806] = 616, - [4807] = 650, - [4808] = 4808, - [4809] = 4809, - [4810] = 634, - [4811] = 4811, + [4787] = 1692, + [4788] = 4725, + [4789] = 535, + [4790] = 153, + [4791] = 4732, + [4792] = 336, + [4793] = 341, + [4794] = 4794, + [4795] = 4795, + [4796] = 4733, + [4797] = 4734, + [4798] = 452, + [4799] = 4799, + [4800] = 4800, + [4801] = 156, + [4802] = 4799, + [4803] = 4800, + [4804] = 378, + [4805] = 1618, + [4806] = 4735, + [4807] = 4807, + [4808] = 4727, + [4809] = 4736, + [4810] = 360, + [4811] = 4737, [4812] = 4812, - [4813] = 1734, - [4814] = 337, - [4815] = 651, - [4816] = 652, - [4817] = 2504, - [4818] = 617, - [4819] = 1382, - [4820] = 655, - [4821] = 4821, - [4822] = 632, - [4823] = 349, - [4824] = 4824, - [4825] = 2549, - [4826] = 618, - [4827] = 4827, - [4828] = 4828, - [4829] = 653, - [4830] = 4830, - [4831] = 622, - [4832] = 657, + [4813] = 4813, + [4814] = 1629, + [4815] = 4815, + [4816] = 158, + [4817] = 154, + [4818] = 4750, + [4819] = 342, + [4820] = 157, + [4821] = 4751, + [4822] = 4752, + [4823] = 336, + [4824] = 335, + [4825] = 4636, + [4826] = 4637, + [4827] = 554, + [4828] = 152, + [4829] = 4638, + [4830] = 4708, + [4831] = 4831, + [4832] = 155, [4833] = 163, - [4834] = 4830, - [4835] = 630, - [4836] = 610, - [4837] = 655, - [4838] = 4838, - [4839] = 658, - [4840] = 4840, - [4841] = 4841, - [4842] = 659, - [4843] = 660, - [4844] = 4844, - [4845] = 1735, + [4834] = 151, + [4835] = 561, + [4836] = 4721, + [4837] = 4729, + [4838] = 1727, + [4839] = 1801, + [4840] = 369, + [4841] = 480, + [4842] = 4730, + [4843] = 4794, + [4844] = 1732, + [4845] = 549, [4846] = 4846, - [4847] = 632, - [4848] = 646, - [4849] = 662, - [4850] = 657, - [4851] = 610, - [4852] = 648, - [4853] = 658, - [4854] = 4854, - [4855] = 642, - [4856] = 659, - [4857] = 663, - [4858] = 643, - [4859] = 350, - [4860] = 660, - [4861] = 2642, - [4862] = 4862, - [4863] = 4863, - [4864] = 321, - [4865] = 321, - [4866] = 4811, - [4867] = 644, - [4868] = 664, - [4869] = 162, - [4870] = 4870, + [4847] = 379, + [4848] = 527, + [4849] = 548, + [4850] = 4850, + [4851] = 4851, + [4852] = 1601, + [4853] = 1617, + [4854] = 455, + [4855] = 456, + [4856] = 4795, + [4857] = 500, + [4858] = 533, + [4859] = 4724, + [4860] = 4860, + [4861] = 555, + [4862] = 536, + [4863] = 4719, + [4864] = 4864, + [4865] = 1651, + [4866] = 1595, + [4867] = 381, + [4868] = 4868, + [4869] = 453, + [4870] = 454, [4871] = 4871, - [4872] = 637, - [4873] = 638, - [4874] = 4874, - [4875] = 4875, - [4876] = 161, - [4877] = 662, - [4878] = 675, - [4879] = 665, - [4880] = 4821, - [4881] = 686, - [4882] = 623, - [4883] = 663, - [4884] = 4884, - [4885] = 664, - [4886] = 4844, - [4887] = 354, - [4888] = 3380, - [4889] = 4811, - [4890] = 4890, - [4891] = 337, - [4892] = 2641, - [4893] = 665, - [4894] = 667, - [4895] = 1733, - [4896] = 4896, - [4897] = 4897, - [4898] = 2615, - [4899] = 694, - [4900] = 668, - [4901] = 667, - [4902] = 621, - [4903] = 676, - [4904] = 1782, - [4905] = 687, - [4906] = 1783, - [4907] = 4840, - [4908] = 688, - [4909] = 668, - [4910] = 4910, - [4911] = 4659, - [4912] = 651, - [4913] = 613, - [4914] = 4735, - [4915] = 4770, - [4916] = 4771, - [4917] = 4772, - [4918] = 4631, - [4919] = 4757, - [4920] = 4706, - [4921] = 4667, - [4922] = 4753, - [4923] = 4763, - [4924] = 4766, - [4925] = 4691, - [4926] = 650, - [4927] = 337, + [4872] = 382, + [4873] = 4812, + [4874] = 161, + [4875] = 4666, + [4876] = 4876, + [4877] = 1705, + [4878] = 1731, + [4879] = 4879, + [4880] = 537, + [4881] = 450, + [4882] = 4731, + [4883] = 564, + [4884] = 368, + [4885] = 640, + [4886] = 636, + [4887] = 608, + [4888] = 2746, + [4889] = 654, + [4890] = 675, + [4891] = 656, + [4892] = 4892, + [4893] = 645, + [4894] = 4894, + [4895] = 4895, + [4896] = 687, + [4897] = 655, + [4898] = 4898, + [4899] = 657, + [4900] = 4879, + [4901] = 4901, + [4902] = 658, + [4903] = 357, + [4904] = 4904, + [4905] = 4905, + [4906] = 4906, + [4907] = 666, + [4908] = 4908, + [4909] = 4909, + [4910] = 336, + [4911] = 4911, + [4912] = 665, + [4913] = 4913, + [4914] = 1727, + [4915] = 2748, + [4916] = 4851, + [4917] = 1801, + [4918] = 2751, + [4919] = 4919, + [4920] = 4860, + [4921] = 2749, + [4922] = 624, + [4923] = 4923, + [4924] = 4924, + [4925] = 1731, + [4926] = 1732, + [4927] = 4927, [4928] = 4928, - [4929] = 626, - [4930] = 4930, - [4931] = 678, - [4932] = 622, - [4933] = 637, - [4934] = 640, - [4935] = 638, - [4936] = 623, - [4937] = 641, - [4938] = 2991, - [4939] = 4744, - [4940] = 357, - [4941] = 621, - [4942] = 669, - [4943] = 4943, - [4944] = 646, - [4945] = 4945, - [4946] = 4660, - [4947] = 631, - [4948] = 669, - [4949] = 2636, - [4950] = 4841, - [4951] = 4745, - [4952] = 4692, - [4953] = 4746, - [4954] = 645, - [4955] = 683, - [4956] = 4660, - [4957] = 365, - [4958] = 611, - [4959] = 4959, - [4960] = 639, - [4961] = 4961, - [4962] = 1845, - [4963] = 4747, - [4964] = 363, - [4965] = 670, - [4966] = 630, - [4967] = 612, - [4968] = 4968, - [4969] = 4749, - [4970] = 670, - [4971] = 4971, - [4972] = 684, - [4973] = 4846, - [4974] = 625, - [4975] = 1846, + [4929] = 548, + [4930] = 335, + [4931] = 378, + [4932] = 360, + [4933] = 561, + [4934] = 535, + [4935] = 660, + [4936] = 661, + [4937] = 4937, + [4938] = 554, + [4939] = 533, + [4940] = 649, + [4941] = 670, + [4942] = 668, + [4943] = 353, + [4944] = 1705, + [4945] = 341, + [4946] = 4946, + [4947] = 1764, + [4948] = 2449, + [4949] = 677, + [4950] = 1765, + [4951] = 4951, + [4952] = 379, + [4953] = 4953, + [4954] = 342, + [4955] = 678, + [4956] = 679, + [4957] = 4957, + [4958] = 156, + [4959] = 2745, + [4960] = 4960, + [4961] = 527, + [4962] = 2751, + [4963] = 564, + [4964] = 161, + [4965] = 691, + [4966] = 355, + [4967] = 629, + [4968] = 157, + [4969] = 155, + [4970] = 652, + [4971] = 153, + [4972] = 381, + [4973] = 4973, + [4974] = 4974, + [4975] = 4975, [4976] = 4976, [4977] = 4977, - [4978] = 635, + [4978] = 631, [4979] = 4979, - [4980] = 1728, - [4981] = 1729, - [4982] = 4982, - [4983] = 645, - [4984] = 2653, - [4985] = 626, + [4980] = 4980, + [4981] = 632, + [4982] = 633, + [4983] = 630, + [4984] = 4984, + [4985] = 382, [4986] = 4986, - [4987] = 4987, - [4988] = 631, - [4989] = 4759, - [4990] = 2350, - [4991] = 677, - [4992] = 4992, - [4993] = 640, - [4994] = 642, - [4995] = 641, - [4996] = 639, - [4997] = 4643, - [4998] = 4998, + [4987] = 4868, + [4988] = 611, + [4989] = 612, + [4990] = 634, + [4991] = 549, + [4992] = 669, + [4993] = 4993, + [4994] = 4994, + [4995] = 690, + [4996] = 1766, + [4997] = 555, + [4998] = 536, [4999] = 4999, - [5000] = 643, - [5001] = 644, - [5002] = 1732, - [5003] = 5003, - [5004] = 2995, + [5000] = 1767, + [5001] = 160, + [5002] = 159, + [5003] = 613, + [5004] = 356, [5005] = 5005, - [5006] = 5006, - [5007] = 3403, - [5008] = 5008, - [5009] = 5009, - [5010] = 5010, - [5011] = 335, - [5012] = 334, - [5013] = 5013, - [5014] = 5014, - [5015] = 5015, - [5016] = 5016, - [5017] = 5017, - [5018] = 346, - [5019] = 347, - [5020] = 348, - [5021] = 5021, - [5022] = 2350, - [5023] = 4979, - [5024] = 4943, - [5025] = 625, - [5026] = 4961, - [5027] = 694, - [5028] = 678, - [5029] = 683, - [5030] = 684, - [5031] = 686, - [5032] = 687, - [5033] = 688, - [5034] = 611, - [5035] = 612, - [5036] = 613, - [5037] = 614, - [5038] = 616, - [5039] = 617, - [5040] = 618, + [5006] = 614, + [5007] = 615, + [5008] = 1780, + [5009] = 1782, + [5010] = 154, + [5011] = 616, + [5012] = 5012, + [5013] = 617, + [5014] = 618, + [5015] = 619, + [5016] = 158, + [5017] = 537, + [5018] = 557, + [5019] = 558, + [5020] = 559, + [5021] = 560, + [5022] = 620, + [5023] = 621, + [5024] = 2746, + [5025] = 2748, + [5026] = 637, + [5027] = 5027, + [5028] = 635, + [5029] = 5029, + [5030] = 638, + [5031] = 4813, + [5032] = 5032, + [5033] = 622, + [5034] = 4815, + [5035] = 639, + [5036] = 564, + [5037] = 5037, + [5038] = 623, + [5039] = 1789, + [5040] = 1790, [5041] = 5041, - [5042] = 5042, - [5043] = 5043, - [5044] = 5044, - [5045] = 5045, - [5046] = 5046, - [5047] = 5047, - [5048] = 1782, - [5049] = 1783, - [5050] = 5050, - [5051] = 354, - [5052] = 357, - [5053] = 365, - [5054] = 363, - [5055] = 4897, + [5042] = 2749, + [5043] = 648, + [5044] = 4846, + [5045] = 4850, + [5046] = 1692, + [5047] = 641, + [5048] = 642, + [5049] = 643, + [5050] = 644, + [5051] = 646, + [5052] = 5052, + [5053] = 647, + [5054] = 2745, + [5055] = 5055, [5056] = 5056, [5057] = 5057, - [5058] = 4987, - [5059] = 5059, - [5060] = 4838, - [5061] = 5061, - [5062] = 5062, - [5063] = 4660, - [5064] = 5064, - [5065] = 4862, - [5066] = 4863, - [5067] = 5067, - [5068] = 5068, + [5058] = 679, + [5059] = 1854, + [5060] = 5060, + [5061] = 1789, + [5062] = 1790, + [5063] = 160, + [5064] = 648, + [5065] = 5065, + [5066] = 629, + [5067] = 159, + [5068] = 630, [5069] = 5069, - [5070] = 5070, - [5071] = 5057, - [5072] = 5072, - [5073] = 5073, + [5070] = 1378, + [5071] = 5071, + [5072] = 668, + [5073] = 5065, [5074] = 5074, [5075] = 5075, - [5076] = 5076, - [5077] = 5077, - [5078] = 5078, - [5079] = 5079, - [5080] = 5080, - [5081] = 335, - [5082] = 338, - [5083] = 334, - [5084] = 4976, - [5085] = 4809, - [5086] = 3380, + [5076] = 4908, + [5077] = 5074, + [5078] = 2748, + [5079] = 640, + [5080] = 635, + [5081] = 5081, + [5082] = 5082, + [5083] = 5083, + [5084] = 2449, + [5085] = 648, + [5086] = 5086, [5087] = 5087, [5088] = 5088, - [5089] = 2504, - [5090] = 5064, - [5091] = 4870, - [5092] = 5092, - [5093] = 5093, - [5094] = 4871, - [5095] = 4977, - [5096] = 5096, - [5097] = 2549, - [5098] = 5098, - [5099] = 5099, - [5100] = 5100, - [5101] = 5101, - [5102] = 5102, - [5103] = 5103, + [5089] = 5089, + [5090] = 635, + [5091] = 624, + [5092] = 1766, + [5093] = 641, + [5094] = 642, + [5095] = 636, + [5096] = 643, + [5097] = 644, + [5098] = 646, + [5099] = 647, + [5100] = 645, + [5101] = 1767, + [5102] = 5005, + [5103] = 670, [5104] = 5104, - [5105] = 5105, - [5106] = 5106, - [5107] = 5107, - [5108] = 5108, - [5109] = 5109, - [5110] = 5110, - [5111] = 5111, - [5112] = 1382, - [5113] = 4874, - [5114] = 4875, - [5115] = 336, - [5116] = 4982, - [5117] = 4986, - [5118] = 5118, - [5119] = 5119, - [5120] = 5120, - [5121] = 5121, + [5105] = 677, + [5106] = 678, + [5107] = 655, + [5108] = 657, + [5109] = 691, + [5110] = 314, + [5111] = 652, + [5112] = 5112, + [5113] = 2745, + [5114] = 611, + [5115] = 5115, + [5116] = 612, + [5117] = 613, + [5118] = 665, + [5119] = 614, + [5120] = 615, + [5121] = 608, [5122] = 5122, [5123] = 5123, - [5124] = 5124, - [5125] = 5125, - [5126] = 5126, - [5127] = 5127, - [5128] = 5128, - [5129] = 5129, - [5130] = 5130, - [5131] = 5131, + [5124] = 616, + [5125] = 617, + [5126] = 618, + [5127] = 619, + [5128] = 654, + [5129] = 649, + [5130] = 620, + [5131] = 621, [5132] = 5132, [5133] = 5133, - [5134] = 5134, - [5135] = 5135, - [5136] = 4998, - [5137] = 338, - [5138] = 634, - [5139] = 2733, - [5140] = 635, - [5141] = 345, - [5142] = 336, - [5143] = 5008, - [5144] = 4735, - [5145] = 4770, - [5146] = 4771, - [5147] = 4772, - [5148] = 4808, - [5149] = 4812, - [5150] = 4631, - [5151] = 4757, - [5152] = 4706, - [5153] = 4667, - [5154] = 5088, - [5155] = 4753, - [5156] = 4763, - [5157] = 4766, - [5158] = 4691, - [5159] = 3408, - [5160] = 345, - [5161] = 346, - [5162] = 347, - [5163] = 348, - [5164] = 335, - [5165] = 334, - [5166] = 4824, - [5167] = 345, - [5168] = 346, - [5169] = 347, - [5170] = 348, - [5171] = 4827, - [5172] = 4811, - [5173] = 5173, + [5134] = 332, + [5135] = 690, + [5136] = 4901, + [5137] = 622, + [5138] = 5138, + [5139] = 5139, + [5140] = 5140, + [5141] = 623, + [5142] = 5142, + [5143] = 658, + [5144] = 5144, + [5145] = 5145, + [5146] = 5146, + [5147] = 606, + [5148] = 5148, + [5149] = 583, + [5150] = 5150, + [5151] = 5151, + [5152] = 5152, + [5153] = 5153, + [5154] = 608, + [5155] = 5155, + [5156] = 5156, + [5157] = 5157, + [5158] = 654, + [5159] = 5159, + [5160] = 5160, + [5161] = 5161, + [5162] = 5162, + [5163] = 656, + [5164] = 675, + [5165] = 5165, + [5166] = 2749, + [5167] = 5167, + [5168] = 5168, + [5169] = 629, + [5170] = 630, + [5171] = 5171, + [5172] = 666, + [5173] = 658, [5174] = 5174, - [5175] = 5175, - [5176] = 3380, - [5177] = 337, + [5175] = 660, + [5176] = 661, + [5177] = 668, [5178] = 5178, - [5179] = 334, - [5180] = 406, - [5181] = 409, - [5182] = 410, - [5183] = 411, - [5184] = 413, - [5185] = 414, - [5186] = 415, - [5187] = 416, - [5188] = 417, - [5189] = 152, - [5190] = 418, - [5191] = 152, - [5192] = 407, - [5193] = 408, - [5194] = 419, - [5195] = 420, - [5196] = 5196, - [5197] = 421, - [5198] = 5198, - [5199] = 422, - [5200] = 5200, - [5201] = 450, - [5202] = 424, - [5203] = 425, - [5204] = 426, - [5205] = 427, - [5206] = 3403, - [5207] = 5196, - [5208] = 3408, - [5209] = 5209, - [5210] = 3380, - [5211] = 5196, - [5212] = 3408, - [5213] = 350, - [5214] = 335, - [5215] = 405, - [5216] = 2504, - [5217] = 5217, - [5218] = 154, - [5219] = 5219, - [5220] = 5196, - [5221] = 346, - [5222] = 349, - [5223] = 347, - [5224] = 348, - [5225] = 3380, - [5226] = 4811, - [5227] = 3403, + [5179] = 631, + [5180] = 5180, + [5181] = 5181, + [5182] = 632, + [5183] = 633, + [5184] = 332, + [5185] = 670, + [5186] = 341, + [5187] = 636, + [5188] = 634, + [5189] = 677, + [5190] = 645, + [5191] = 5191, + [5192] = 1780, + [5193] = 678, + [5194] = 5194, + [5195] = 679, + [5196] = 1782, + [5197] = 691, + [5198] = 314, + [5199] = 5199, + [5200] = 652, + [5201] = 4908, + [5202] = 5202, + [5203] = 5203, + [5204] = 5204, + [5205] = 5205, + [5206] = 611, + [5207] = 5207, + [5208] = 612, + [5209] = 669, + [5210] = 5012, + [5211] = 5211, + [5212] = 613, + [5213] = 5213, + [5214] = 614, + [5215] = 615, + [5216] = 342, + [5217] = 616, + [5218] = 660, + [5219] = 617, + [5220] = 618, + [5221] = 661, + [5222] = 619, + [5223] = 5223, + [5224] = 5224, + [5225] = 1764, + [5226] = 5226, + [5227] = 2579, [5228] = 5228, - [5229] = 349, - [5230] = 349, - [5231] = 350, - [5232] = 2549, - [5233] = 5196, + [5229] = 563, + [5230] = 620, + [5231] = 5231, + [5232] = 621, + [5233] = 1765, [5234] = 5234, - [5235] = 335, - [5236] = 350, - [5237] = 5228, - [5238] = 5198, - [5239] = 334, + [5235] = 5235, + [5236] = 5236, + [5237] = 687, + [5238] = 5238, + [5239] = 2746, [5240] = 5240, - [5241] = 5241, + [5241] = 622, [5242] = 5242, - [5243] = 153, - [5244] = 337, - [5245] = 345, - [5246] = 335, - [5247] = 334, - [5248] = 5248, - [5249] = 350, - [5250] = 365, - [5251] = 205, - [5252] = 363, - [5253] = 5253, - [5254] = 335, - [5255] = 1382, - [5256] = 152, - [5257] = 334, + [5243] = 5243, + [5244] = 353, + [5245] = 5245, + [5246] = 5246, + [5247] = 5247, + [5248] = 2751, + [5249] = 2646, + [5250] = 5250, + [5251] = 655, + [5252] = 5252, + [5253] = 657, + [5254] = 5254, + [5255] = 5255, + [5256] = 623, + [5257] = 5257, [5258] = 5258, - [5259] = 5259, - [5260] = 5260, - [5261] = 5261, - [5262] = 5262, - [5263] = 5263, - [5264] = 5264, - [5265] = 5248, - [5266] = 5259, - [5267] = 407, - [5268] = 364, - [5269] = 408, + [5259] = 355, + [5260] = 656, + [5261] = 4974, + [5262] = 4975, + [5263] = 4976, + [5264] = 5057, + [5265] = 4979, + [5266] = 4980, + [5267] = 5240, + [5268] = 4984, + [5269] = 5269, [5270] = 5270, [5271] = 5271, [5272] = 5272, - [5273] = 357, + [5273] = 637, [5274] = 5274, - [5275] = 5260, - [5276] = 5261, - [5277] = 5270, - [5278] = 5272, - [5279] = 5271, - [5280] = 341, - [5281] = 5264, - [5282] = 5248, - [5283] = 5258, - [5284] = 5284, - [5285] = 152, - [5286] = 155, - [5287] = 160, - [5288] = 5288, - [5289] = 2489, - [5290] = 354, - [5291] = 360, - [5292] = 349, - [5293] = 5270, - [5294] = 409, - [5295] = 5271, - [5296] = 410, - [5297] = 411, - [5298] = 413, - [5299] = 414, - [5300] = 415, - [5301] = 416, - [5302] = 417, - [5303] = 418, - [5304] = 349, - [5305] = 420, - [5306] = 421, - [5307] = 422, - [5308] = 450, - [5309] = 424, - [5310] = 425, - [5311] = 426, - [5312] = 427, - [5313] = 5264, - [5314] = 5248, - [5315] = 5272, - [5316] = 5258, - [5317] = 5272, - [5318] = 354, - [5319] = 152, - [5320] = 5264, - [5321] = 5248, - [5322] = 5264, - [5323] = 5248, - [5324] = 357, - [5325] = 350, - [5326] = 335, - [5327] = 334, - [5328] = 5253, - [5329] = 335, - [5330] = 154, - [5331] = 5260, - [5332] = 5261, - [5333] = 5258, - [5334] = 366, - [5335] = 365, - [5336] = 1382, - [5337] = 153, + [5275] = 5254, + [5276] = 5255, + [5277] = 5277, + [5278] = 356, + [5279] = 638, + [5280] = 5280, + [5281] = 5052, + [5282] = 5037, + [5283] = 4923, + [5284] = 5027, + [5285] = 4898, + [5286] = 4904, + [5287] = 4905, + [5288] = 4906, + [5289] = 5289, + [5290] = 4973, + [5291] = 4986, + [5292] = 4999, + [5293] = 5269, + [5294] = 4960, + [5295] = 5295, + [5296] = 639, + [5297] = 5297, + [5298] = 5298, + [5299] = 5299, + [5300] = 5300, + [5301] = 5301, + [5302] = 5302, + [5303] = 665, + [5304] = 5304, + [5305] = 5295, + [5306] = 666, + [5307] = 5240, + [5308] = 357, + [5309] = 5309, + [5310] = 5310, + [5311] = 1850, + [5312] = 161, + [5313] = 5313, + [5314] = 5314, + [5315] = 5315, + [5316] = 2853, + [5317] = 5317, + [5318] = 335, + [5319] = 5319, + [5320] = 5071, + [5321] = 5223, + [5322] = 675, + [5323] = 333, + [5324] = 333, + [5325] = 5325, + [5326] = 5326, + [5327] = 5327, + [5328] = 5122, + [5329] = 624, + [5330] = 2646, + [5331] = 5331, + [5332] = 2449, + [5333] = 5333, + [5334] = 348, + [5335] = 5335, + [5336] = 5336, + [5337] = 5157, [5338] = 5338, - [5339] = 5339, - [5340] = 405, - [5341] = 334, - [5342] = 363, + [5339] = 353, + [5340] = 5340, + [5341] = 5341, + [5342] = 5342, [5343] = 5343, - [5344] = 5263, - [5345] = 354, + [5344] = 5089, + [5345] = 5345, [5346] = 5346, - [5347] = 357, - [5348] = 3408, - [5349] = 406, - [5350] = 3403, - [5351] = 5264, - [5352] = 365, - [5353] = 5259, - [5354] = 363, - [5355] = 361, - [5356] = 349, + [5347] = 336, + [5348] = 5075, + [5349] = 5349, + [5350] = 5350, + [5351] = 5351, + [5352] = 4908, + [5353] = 335, + [5354] = 5314, + [5355] = 5242, + [5356] = 5356, [5357] = 5357, - [5358] = 350, - [5359] = 419, + [5358] = 5224, + [5359] = 687, [5360] = 5360, - [5361] = 157, - [5362] = 350, + [5361] = 5361, + [5362] = 334, [5363] = 5363, [5364] = 5364, - [5365] = 154, - [5366] = 5363, - [5367] = 5367, - [5368] = 5368, - [5369] = 335, - [5370] = 1382, - [5371] = 5360, - [5372] = 153, - [5373] = 5368, - [5374] = 5364, - [5375] = 424, - [5376] = 405, + [5365] = 355, + [5366] = 5366, + [5367] = 5178, + [5368] = 1378, + [5369] = 5369, + [5370] = 337, + [5371] = 346, + [5372] = 347, + [5373] = 5373, + [5374] = 5146, + [5375] = 5375, + [5376] = 5376, [5377] = 5377, - [5378] = 5363, - [5379] = 5367, - [5380] = 373, - [5381] = 5360, - [5382] = 5382, - [5383] = 5363, - [5384] = 5364, - [5385] = 5367, - [5386] = 5360, - [5387] = 5367, - [5388] = 5360, - [5389] = 5389, - [5390] = 206, - [5391] = 5367, - [5392] = 5360, - [5393] = 5367, - [5394] = 5367, - [5395] = 5360, - [5396] = 357, - [5397] = 5367, - [5398] = 5360, - [5399] = 5367, - [5400] = 5360, + [5378] = 5378, + [5379] = 356, + [5380] = 5380, + [5381] = 5243, + [5382] = 631, + [5383] = 632, + [5384] = 633, + [5385] = 5069, + [5386] = 634, + [5387] = 5387, + [5388] = 5388, + [5389] = 348, + [5390] = 5390, + [5391] = 5391, + [5392] = 336, + [5393] = 337, + [5394] = 335, + [5395] = 346, + [5396] = 347, + [5397] = 5257, + [5398] = 357, + [5399] = 5258, + [5400] = 5400, [5401] = 5401, - [5402] = 5367, - [5403] = 5360, - [5404] = 425, - [5405] = 366, - [5406] = 365, - [5407] = 364, - [5408] = 5377, - [5409] = 349, - [5410] = 426, - [5411] = 5411, - [5412] = 363, - [5413] = 334, - [5414] = 5414, - [5415] = 350, - [5416] = 5367, - [5417] = 427, - [5418] = 1584, - [5419] = 354, - [5420] = 349, - [5421] = 5364, - [5422] = 155, - [5423] = 364, - [5424] = 406, - [5425] = 5425, - [5426] = 160, - [5427] = 5346, - [5428] = 5368, - [5429] = 366, - [5430] = 417, - [5431] = 418, - [5432] = 1626, - [5433] = 335, - [5434] = 162, - [5435] = 5389, - [5436] = 416, - [5437] = 161, - [5438] = 5425, - [5439] = 350, - [5440] = 368, - [5441] = 5364, - [5442] = 419, - [5443] = 366, - [5444] = 5363, - [5445] = 334, - [5446] = 5364, - [5447] = 5360, - [5448] = 5425, - [5449] = 5360, - [5450] = 152, - [5451] = 420, - [5452] = 5274, - [5453] = 421, - [5454] = 5288, - [5455] = 5367, - [5456] = 154, + [5402] = 638, + [5403] = 639, + [5404] = 5404, + [5405] = 5405, + [5406] = 5406, + [5407] = 334, + [5408] = 640, + [5409] = 641, + [5410] = 642, + [5411] = 643, + [5412] = 5052, + [5413] = 644, + [5414] = 646, + [5415] = 647, + [5416] = 5037, + [5417] = 4923, + [5418] = 5027, + [5419] = 4898, + [5420] = 4904, + [5421] = 4905, + [5422] = 4906, + [5423] = 5423, + [5424] = 4973, + [5425] = 4986, + [5426] = 4999, + [5427] = 5228, + [5428] = 4960, + [5429] = 5142, + [5430] = 5430, + [5431] = 5431, + [5432] = 5432, + [5433] = 5433, + [5434] = 5434, + [5435] = 5246, + [5436] = 5436, + [5437] = 5437, + [5438] = 5438, + [5439] = 5247, + [5440] = 5363, + [5441] = 5441, + [5442] = 5442, + [5443] = 5443, + [5444] = 1400, + [5445] = 5086, + [5446] = 5406, + [5447] = 5447, + [5448] = 5448, + [5449] = 5087, + [5450] = 2579, + [5451] = 5226, + [5452] = 5452, + [5453] = 5240, + [5454] = 5454, + [5455] = 5455, + [5456] = 5456, [5457] = 5457, - [5458] = 363, - [5459] = 422, - [5460] = 5425, - [5461] = 4677, + [5458] = 5458, + [5459] = 5459, + [5460] = 5460, + [5461] = 5461, [5462] = 5462, - [5463] = 153, - [5464] = 5360, - [5465] = 5425, - [5466] = 5368, - [5467] = 5363, - [5468] = 4678, - [5469] = 450, - [5470] = 5360, - [5471] = 5425, - [5472] = 5360, - [5473] = 349, - [5474] = 354, - [5475] = 159, - [5476] = 158, - [5477] = 365, - [5478] = 407, - [5479] = 364, - [5480] = 405, - [5481] = 357, - [5482] = 408, - [5483] = 406, - [5484] = 409, - [5485] = 156, - [5486] = 365, - [5487] = 410, - [5488] = 363, - [5489] = 411, - [5490] = 413, - [5491] = 5363, - [5492] = 5284, - [5493] = 414, - [5494] = 354, - [5495] = 163, - [5496] = 415, - [5497] = 357, - [5498] = 5411, - [5499] = 5357, - [5500] = 5500, - [5501] = 559, - [5502] = 561, - [5503] = 562, - [5504] = 5504, - [5505] = 152, - [5506] = 154, - [5507] = 153, - [5508] = 1382, - [5509] = 5509, - [5510] = 349, - [5511] = 159, - [5512] = 350, - [5513] = 360, - [5514] = 545, - [5515] = 354, - [5516] = 1584, - [5517] = 4896, - [5518] = 1728, - [5519] = 1729, - [5520] = 158, - [5521] = 357, - [5522] = 156, - [5523] = 365, - [5524] = 363, - [5525] = 361, - [5526] = 1845, - [5527] = 5527, - [5528] = 155, - [5529] = 160, - [5530] = 350, - [5531] = 373, - [5532] = 534, - [5533] = 1732, - [5534] = 1733, - [5535] = 157, - [5536] = 368, - [5537] = 4999, - [5538] = 4805, - [5539] = 5504, - [5540] = 5006, - [5541] = 4928, - [5542] = 4930, - [5543] = 366, - [5544] = 4968, - [5545] = 5504, - [5546] = 5504, - [5547] = 1626, - [5548] = 5504, - [5549] = 1846, - [5550] = 159, - [5551] = 5504, - [5552] = 373, - [5553] = 5504, - [5554] = 5554, - [5555] = 5555, - [5556] = 5504, - [5557] = 354, - [5558] = 397, - [5559] = 5504, - [5560] = 5504, - [5561] = 152, - [5562] = 364, - [5563] = 158, - [5564] = 5504, - [5565] = 5504, - [5566] = 357, - [5567] = 5504, - [5568] = 368, - [5569] = 5504, - [5570] = 5504, - [5571] = 5504, - [5572] = 5504, - [5573] = 5504, - [5574] = 5504, - [5575] = 5504, - [5576] = 5504, - [5577] = 5504, - [5578] = 5504, - [5579] = 5504, - [5580] = 5504, - [5581] = 5504, - [5582] = 5504, - [5583] = 5504, - [5584] = 5504, - [5585] = 5504, - [5586] = 5504, - [5587] = 5504, - [5588] = 5504, - [5589] = 5504, - [5590] = 5504, - [5591] = 5504, - [5592] = 5504, - [5593] = 5504, - [5594] = 5504, - [5595] = 5504, - [5596] = 5504, - [5597] = 354, - [5598] = 156, - [5599] = 5504, - [5600] = 357, - [5601] = 365, - [5602] = 363, - [5603] = 365, - [5604] = 363, - [5605] = 381, - [5606] = 1382, - [5607] = 157, - [5608] = 1668, - [5609] = 1696, - [5610] = 349, - [5611] = 1734, - [5612] = 155, - [5613] = 160, - [5614] = 1666, - [5615] = 1735, - [5616] = 382, - [5617] = 368, - [5618] = 5382, - [5619] = 159, - [5620] = 384, - [5621] = 5504, - [5622] = 158, - [5623] = 156, - [5624] = 157, - [5625] = 163, - [5626] = 5504, - [5627] = 162, - [5628] = 161, - [5629] = 5527, - [5630] = 373, - [5631] = 5631, - [5632] = 425, - [5633] = 422, - [5634] = 382, - [5635] = 381, - [5636] = 1162, - [5637] = 1382, - [5638] = 2636, - [5639] = 384, - [5640] = 357, - [5641] = 582, - [5642] = 365, - [5643] = 382, - [5644] = 2653, - [5645] = 2642, - [5646] = 384, - [5647] = 414, - [5648] = 407, - [5649] = 373, - [5650] = 5357, - [5651] = 418, - [5652] = 426, - [5653] = 2641, - [5654] = 419, - [5655] = 420, - [5656] = 354, - [5657] = 390, - [5658] = 5658, - [5659] = 5659, - [5660] = 407, - [5661] = 5661, - [5662] = 408, - [5663] = 368, - [5664] = 363, - [5665] = 534, - [5666] = 1668, - [5667] = 415, - [5668] = 2643, - [5669] = 2611, + [5463] = 5463, + [5464] = 5464, + [5465] = 5325, + [5466] = 5082, + [5467] = 5467, + [5468] = 5468, + [5469] = 5325, + [5470] = 336, + [5471] = 5471, + [5472] = 5472, + [5473] = 5473, + [5474] = 5474, + [5475] = 5475, + [5476] = 1850, + [5477] = 1854, + [5478] = 5387, + [5479] = 637, + [5480] = 5240, + [5481] = 150, + [5482] = 336, + [5483] = 422, + [5484] = 423, + [5485] = 336, + [5486] = 342, + [5487] = 151, + [5488] = 439, + [5489] = 444, + [5490] = 445, + [5491] = 421, + [5492] = 5492, + [5493] = 401, + [5494] = 402, + [5495] = 403, + [5496] = 404, + [5497] = 405, + [5498] = 5498, + [5499] = 406, + [5500] = 407, + [5501] = 410, + [5502] = 412, + [5503] = 414, + [5504] = 416, + [5505] = 335, + [5506] = 2579, + [5507] = 5507, + [5508] = 341, + [5509] = 335, + [5510] = 1440, + [5511] = 418, + [5512] = 341, + [5513] = 419, + [5514] = 5514, + [5515] = 5515, + [5516] = 425, + [5517] = 5517, + [5518] = 5518, + [5519] = 5498, + [5520] = 5520, + [5521] = 5498, + [5522] = 150, + [5523] = 5517, + [5524] = 336, + [5525] = 5525, + [5526] = 152, + [5527] = 5498, + [5528] = 1411, + [5529] = 335, + [5530] = 5530, + [5531] = 5514, + [5532] = 5498, + [5533] = 5514, + [5534] = 5534, + [5535] = 2646, + [5536] = 342, + [5537] = 341, + [5538] = 426, + [5539] = 5539, + [5540] = 332, + [5541] = 5518, + [5542] = 342, + [5543] = 417, + [5544] = 5544, + [5545] = 5545, + [5546] = 337, + [5547] = 153, + [5548] = 5548, + [5549] = 342, + [5550] = 5545, + [5551] = 1378, + [5552] = 5548, + [5553] = 203, + [5554] = 5545, + [5555] = 353, + [5556] = 5556, + [5557] = 335, + [5558] = 336, + [5559] = 5548, + [5560] = 5545, + [5561] = 356, + [5562] = 5548, + [5563] = 342, + [5564] = 5545, + [5565] = 5548, + [5566] = 421, + [5567] = 341, + [5568] = 152, + [5569] = 416, + [5570] = 417, + [5571] = 401, + [5572] = 5545, + [5573] = 5545, + [5574] = 5574, + [5575] = 426, + [5576] = 5576, + [5577] = 348, + [5578] = 444, + [5579] = 402, + [5580] = 5580, + [5581] = 5548, + [5582] = 5582, + [5583] = 5544, + [5584] = 5582, + [5585] = 346, + [5586] = 5586, + [5587] = 5548, + [5588] = 418, + [5589] = 341, + [5590] = 5590, + [5591] = 5545, + [5592] = 445, + [5593] = 157, + [5594] = 403, + [5595] = 355, + [5596] = 423, + [5597] = 5545, + [5598] = 5548, + [5599] = 5545, + [5600] = 5600, + [5601] = 154, + [5602] = 419, + [5603] = 341, + [5604] = 5604, + [5605] = 5548, + [5606] = 155, + [5607] = 404, + [5608] = 5608, + [5609] = 2596, + [5610] = 5548, + [5611] = 5611, + [5612] = 336, + [5613] = 355, + [5614] = 405, + [5615] = 5545, + [5616] = 342, + [5617] = 360, + [5618] = 335, + [5619] = 406, + [5620] = 357, + [5621] = 336, + [5622] = 335, + [5623] = 1378, + [5624] = 5586, + [5625] = 5545, + [5626] = 5626, + [5627] = 5627, + [5628] = 5556, + [5629] = 422, + [5630] = 5611, + [5631] = 407, + [5632] = 354, + [5633] = 5586, + [5634] = 5548, + [5635] = 5545, + [5636] = 356, + [5637] = 410, + [5638] = 5586, + [5639] = 5556, + [5640] = 5556, + [5641] = 412, + [5642] = 355, + [5643] = 357, + [5644] = 151, + [5645] = 158, + [5646] = 425, + [5647] = 357, + [5648] = 5648, + [5649] = 439, + [5650] = 5548, + [5651] = 5548, + [5652] = 5582, + [5653] = 338, + [5654] = 5544, + [5655] = 353, + [5656] = 414, + [5657] = 352, + [5658] = 5548, + [5659] = 356, + [5660] = 150, + [5661] = 150, + [5662] = 156, + [5663] = 347, + [5664] = 353, + [5665] = 5608, + [5666] = 358, + [5667] = 342, + [5668] = 152, + [5669] = 151, [5670] = 5670, - [5671] = 1666, - [5672] = 5357, - [5673] = 405, - [5674] = 408, - [5675] = 2615, - [5676] = 427, - [5677] = 410, - [5678] = 163, - [5679] = 397, - [5680] = 2863, - [5681] = 411, - [5682] = 381, - [5683] = 363, - [5684] = 354, - [5685] = 409, - [5686] = 2813, - [5687] = 390, - [5688] = 406, - [5689] = 381, - [5690] = 432, - [5691] = 1382, - [5692] = 3169, - [5693] = 152, - [5694] = 416, - [5695] = 2862, - [5696] = 435, - [5697] = 417, - [5698] = 397, - [5699] = 386, - [5700] = 5382, - [5701] = 384, - [5702] = 382, + [5671] = 5671, + [5672] = 5672, + [5673] = 5673, + [5674] = 341, + [5675] = 5626, + [5676] = 5672, + [5677] = 158, + [5678] = 154, + [5679] = 5679, + [5680] = 160, + [5681] = 159, + [5682] = 5682, + [5683] = 423, + [5684] = 5627, + [5685] = 5685, + [5686] = 156, + [5687] = 157, + [5688] = 155, + [5689] = 153, + [5690] = 5648, + [5691] = 5604, + [5692] = 5692, + [5693] = 5693, + [5694] = 5694, + [5695] = 5695, + [5696] = 5679, + [5697] = 5697, + [5698] = 5698, + [5699] = 5697, + [5700] = 5580, + [5701] = 5672, + [5702] = 5673, [5703] = 5703, - [5704] = 5670, + [5704] = 5693, [5705] = 152, - [5706] = 5706, - [5707] = 559, - [5708] = 433, - [5709] = 2816, - [5710] = 421, - [5711] = 162, - [5712] = 386, - [5713] = 397, - [5714] = 161, - [5715] = 357, - [5716] = 365, - [5717] = 424, - [5718] = 162, - [5719] = 1696, - [5720] = 561, - [5721] = 562, - [5722] = 5003, - [5723] = 163, - [5724] = 161, - [5725] = 545, - [5726] = 413, - [5727] = 450, - [5728] = 1734, - [5729] = 5729, - [5730] = 5730, - [5731] = 5731, - [5732] = 559, - [5733] = 5733, - [5734] = 651, - [5735] = 5735, - [5736] = 5736, - [5737] = 652, - [5738] = 5738, - [5739] = 545, - [5740] = 1732, - [5741] = 5741, - [5742] = 653, - [5743] = 5743, - [5744] = 466, - [5745] = 5729, - [5746] = 5730, - [5747] = 5731, - [5748] = 364, - [5749] = 5733, - [5750] = 1733, - [5751] = 5738, - [5752] = 5752, - [5753] = 5753, - [5754] = 655, - [5755] = 5755, - [5756] = 5743, - [5757] = 366, - [5758] = 5729, - [5759] = 5730, - [5760] = 5731, - [5761] = 622, - [5762] = 5731, - [5763] = 5733, - [5764] = 623, - [5765] = 5738, - [5766] = 657, - [5767] = 610, - [5768] = 5768, - [5769] = 658, - [5770] = 5743, - [5771] = 5729, - [5772] = 5730, - [5773] = 5731, - [5774] = 659, - [5775] = 5733, - [5776] = 4160, - [5777] = 660, - [5778] = 5738, - [5779] = 5733, - [5780] = 461, - [5781] = 5743, - [5782] = 5743, - [5783] = 5729, - [5784] = 5730, - [5785] = 5731, - [5786] = 662, - [5787] = 5733, - [5788] = 5788, - [5789] = 663, - [5790] = 5738, - [5791] = 4218, - [5792] = 664, - [5793] = 665, - [5794] = 5743, - [5795] = 5729, - [5796] = 5730, - [5797] = 5797, - [5798] = 5731, - [5799] = 667, - [5800] = 5733, - [5801] = 5801, - [5802] = 668, - [5803] = 5738, - [5804] = 5729, - [5805] = 5805, - [5806] = 5738, - [5807] = 5743, - [5808] = 5729, - [5809] = 5730, - [5810] = 5731, - [5811] = 5733, - [5812] = 5812, - [5813] = 5813, - [5814] = 5738, - [5815] = 669, - [5816] = 492, + [5706] = 369, + [5707] = 5707, + [5708] = 341, + [5709] = 204, + [5710] = 342, + [5711] = 1378, + [5712] = 151, + [5713] = 5685, + [5714] = 358, + [5715] = 1629, + [5716] = 5698, + [5717] = 353, + [5718] = 5672, + [5719] = 5673, + [5720] = 355, + [5721] = 425, + [5722] = 422, + [5723] = 426, + [5724] = 423, + [5725] = 439, + [5726] = 444, + [5727] = 445, + [5728] = 421, + [5729] = 401, + [5730] = 402, + [5731] = 403, + [5732] = 404, + [5733] = 405, + [5734] = 406, + [5735] = 407, + [5736] = 410, + [5737] = 412, + [5738] = 414, + [5739] = 416, + [5740] = 417, + [5741] = 418, + [5742] = 419, + [5743] = 356, + [5744] = 357, + [5745] = 353, + [5746] = 5707, + [5747] = 342, + [5748] = 5698, + [5749] = 355, + [5750] = 5693, + [5751] = 358, + [5752] = 356, + [5753] = 357, + [5754] = 5707, + [5755] = 360, + [5756] = 150, + [5757] = 5672, + [5758] = 5673, + [5759] = 336, + [5760] = 5679, + [5761] = 5698, + [5762] = 360, + [5763] = 335, + [5764] = 1618, + [5765] = 5693, + [5766] = 5707, + [5767] = 5672, + [5768] = 5673, + [5769] = 5679, + [5770] = 5698, + [5771] = 5693, + [5772] = 5672, + [5773] = 5693, + [5774] = 5672, + [5775] = 5693, + [5776] = 5672, + [5777] = 335, + [5778] = 5693, + [5779] = 5672, + [5780] = 5693, + [5781] = 5672, + [5782] = 5693, + [5783] = 5672, + [5784] = 5693, + [5785] = 5672, + [5786] = 5693, + [5787] = 5672, + [5788] = 5693, + [5789] = 5672, + [5790] = 5693, + [5791] = 5672, + [5792] = 5693, + [5793] = 5693, + [5794] = 5693, + [5795] = 5693, + [5796] = 5693, + [5797] = 5692, + [5798] = 5672, + [5799] = 5703, + [5800] = 5670, + [5801] = 5672, + [5802] = 5703, + [5803] = 5670, + [5804] = 353, + [5805] = 355, + [5806] = 161, + [5807] = 356, + [5808] = 422, + [5809] = 336, + [5810] = 368, + [5811] = 357, + [5812] = 341, + [5813] = 5679, + [5814] = 5679, + [5815] = 156, + [5816] = 5816, [5817] = 5817, - [5818] = 5730, - [5819] = 670, - [5820] = 5743, - [5821] = 5729, - [5822] = 5730, - [5823] = 5731, - [5824] = 1694, - [5825] = 5733, - [5826] = 5738, - [5827] = 5827, - [5828] = 5733, - [5829] = 5743, - [5830] = 5830, - [5831] = 5731, + [5818] = 5818, + [5819] = 150, + [5820] = 152, + [5821] = 151, + [5822] = 382, + [5823] = 355, + [5824] = 154, + [5825] = 1789, + [5826] = 5826, + [5827] = 5682, + [5828] = 356, + [5829] = 1764, + [5830] = 1765, + [5831] = 368, [5832] = 5832, - [5833] = 5733, - [5834] = 5738, - [5835] = 534, - [5836] = 153, - [5837] = 5743, - [5838] = 5838, - [5839] = 5731, - [5840] = 5733, - [5841] = 5738, - [5842] = 5842, + [5833] = 1790, + [5834] = 357, + [5835] = 358, + [5836] = 369, + [5837] = 158, + [5838] = 154, + [5839] = 597, + [5840] = 5840, + [5841] = 5841, + [5842] = 1780, [5843] = 5843, - [5844] = 5743, - [5845] = 5845, - [5846] = 5731, - [5847] = 5733, - [5848] = 5738, - [5849] = 5849, - [5850] = 5850, - [5851] = 5733, - [5852] = 5738, - [5853] = 5853, - [5854] = 5733, - [5855] = 5738, - [5856] = 5805, - [5857] = 5857, - [5858] = 5733, - [5859] = 5738, - [5860] = 1697, - [5861] = 5861, - [5862] = 5812, - [5863] = 5813, + [5844] = 5844, + [5845] = 357, + [5846] = 5846, + [5847] = 5847, + [5848] = 5848, + [5849] = 352, + [5850] = 1782, + [5851] = 356, + [5852] = 1692, + [5853] = 5817, + [5854] = 5818, + [5855] = 5826, + [5856] = 5832, + [5857] = 157, + [5858] = 155, + [5859] = 5840, + [5860] = 5841, + [5861] = 5844, + [5862] = 5846, + [5863] = 5863, [5864] = 5864, - [5865] = 5738, + [5865] = 5865, [5866] = 5866, - [5867] = 637, - [5868] = 5731, - [5869] = 638, + [5867] = 5867, + [5868] = 5868, + [5869] = 5869, [5870] = 5870, - [5871] = 639, + [5871] = 5871, [5872] = 5872, - [5873] = 640, - [5874] = 5733, - [5875] = 641, - [5876] = 2908, - [5877] = 5729, - [5878] = 2909, - [5879] = 5730, - [5880] = 5743, - [5881] = 499, - [5882] = 5882, - [5883] = 634, - [5884] = 397, - [5885] = 5885, - [5886] = 642, - [5887] = 643, - [5888] = 1728, - [5889] = 5838, - [5890] = 5890, - [5891] = 5891, - [5892] = 650, - [5893] = 626, - [5894] = 5812, - [5895] = 630, - [5896] = 5896, - [5897] = 631, - [5898] = 5898, - [5899] = 5899, - [5900] = 644, - [5901] = 5901, - [5902] = 5902, - [5903] = 5903, - [5904] = 366, - [5905] = 5896, - [5906] = 5813, - [5907] = 561, - [5908] = 1729, - [5909] = 5898, - [5910] = 5899, - [5911] = 5901, - [5912] = 5903, - [5913] = 165, - [5914] = 632, - [5915] = 5735, - [5916] = 3174, - [5917] = 2813, - [5918] = 5918, - [5919] = 153, - [5920] = 4677, - [5921] = 562, - [5922] = 494, - [5923] = 4678, - [5924] = 154, - [5925] = 5925, - [5926] = 5926, - [5927] = 5927, - [5928] = 5928, - [5929] = 5929, - [5930] = 1626, - [5931] = 5931, - [5932] = 5743, - [5933] = 5729, - [5934] = 5934, - [5935] = 466, - [5936] = 5872, - [5937] = 5937, - [5938] = 5938, - [5939] = 5753, - [5940] = 5730, - [5941] = 5830, - [5942] = 468, - [5943] = 5768, - [5944] = 5797, - [5945] = 5832, - [5946] = 5849, - [5947] = 5731, - [5948] = 5357, - [5949] = 5733, - [5950] = 5801, - [5951] = 5951, - [5952] = 2816, - [5953] = 5953, - [5954] = 5738, - [5955] = 1626, - [5956] = 364, - [5957] = 381, - [5958] = 5738, - [5959] = 5937, - [5960] = 1171, - [5961] = 460, - [5962] = 469, - [5963] = 5963, - [5964] = 5925, - [5965] = 5927, - [5966] = 5928, - [5967] = 5929, - [5968] = 1845, - [5969] = 1846, - [5970] = 5830, - [5971] = 5731, - [5972] = 634, - [5973] = 1584, - [5974] = 621, - [5975] = 5975, - [5976] = 5729, - [5977] = 5977, - [5978] = 5978, - [5979] = 497, - [5980] = 5980, - [5981] = 366, - [5982] = 645, - [5983] = 5983, - [5984] = 5743, - [5985] = 635, - [5986] = 5986, - [5987] = 5729, - [5988] = 5890, - [5989] = 5891, - [5990] = 5730, - [5991] = 5991, - [5992] = 5992, - [5993] = 1584, - [5994] = 5994, - [5995] = 5731, - [5996] = 635, - [5997] = 412, - [5998] = 5866, - [5999] = 404, - [6000] = 5733, - [6001] = 5730, - [6002] = 5743, - [6003] = 1735, - [6004] = 3714, - [6005] = 3719, - [6006] = 466, - [6007] = 382, - [6008] = 492, - [6009] = 460, - [6010] = 461, - [6011] = 384, - [6012] = 5801, - [6013] = 5738, - [6014] = 646, - [6015] = 492, - [6016] = 460, - [6017] = 461, - [6018] = 5801, - [6019] = 165, - [6020] = 5830, - [6021] = 6021, - [6022] = 364, - [6023] = 154, - [6024] = 648, - [6025] = 5743, - [6026] = 5703, - [6027] = 5885, - [6028] = 5938, - [6029] = 5994, - [6030] = 1845, - [6031] = 6031, + [5873] = 5873, + [5874] = 5874, + [5875] = 5875, + [5876] = 5876, + [5877] = 353, + [5878] = 5816, + [5879] = 368, + [5880] = 5847, + [5881] = 153, + [5882] = 5848, + [5883] = 1766, + [5884] = 341, + [5885] = 527, + [5886] = 1767, + [5887] = 5887, + [5888] = 1618, + [5889] = 5870, + [5890] = 150, + [5891] = 5817, + [5892] = 5818, + [5893] = 5826, + [5894] = 342, + [5895] = 5816, + [5896] = 5832, + [5897] = 5840, + [5898] = 354, + [5899] = 5841, + [5900] = 5844, + [5901] = 5846, + [5902] = 5816, + [5903] = 369, + [5904] = 5863, + [5905] = 5816, + [5906] = 5864, + [5907] = 5865, + [5908] = 5816, + [5909] = 5866, + [5910] = 5867, + [5911] = 5869, + [5912] = 5816, + [5913] = 5869, + [5914] = 5863, + [5915] = 5864, + [5916] = 5870, + [5917] = 5816, + [5918] = 5871, + [5919] = 5872, + [5920] = 5816, + [5921] = 5873, + [5922] = 5874, + [5923] = 5816, + [5924] = 5875, + [5925] = 5876, + [5926] = 5816, + [5927] = 355, + [5928] = 5865, + [5929] = 5816, + [5930] = 5816, + [5931] = 5816, + [5932] = 356, + [5933] = 5816, + [5934] = 357, + [5935] = 537, + [5936] = 5816, + [5937] = 5866, + [5938] = 1378, + [5939] = 5816, + [5940] = 1629, + [5941] = 5816, + [5942] = 5816, + [5943] = 5816, + [5944] = 360, + [5945] = 5816, + [5946] = 5816, + [5947] = 5816, + [5948] = 5816, + [5949] = 5816, + [5950] = 5816, + [5951] = 5816, + [5952] = 5816, + [5953] = 5816, + [5954] = 5816, + [5955] = 5816, + [5956] = 5816, + [5957] = 5816, + [5958] = 5816, + [5959] = 5816, + [5960] = 5816, + [5961] = 5816, + [5962] = 5816, + [5963] = 5816, + [5964] = 5816, + [5965] = 5816, + [5966] = 5816, + [5967] = 5816, + [5968] = 5873, + [5969] = 5867, + [5970] = 5816, + [5971] = 161, + [5972] = 342, + [5973] = 1705, + [5974] = 549, + [5975] = 5868, + [5976] = 1731, + [5977] = 555, + [5978] = 536, + [5979] = 5874, + [5980] = 5847, + [5981] = 160, + [5982] = 159, + [5983] = 5875, + [5984] = 5848, + [5985] = 1378, + [5986] = 5871, + [5987] = 5876, + [5988] = 341, + [5989] = 378, + [5990] = 5872, + [5991] = 379, + [5992] = 353, + [5993] = 381, + [5994] = 353, + [5995] = 355, + [5996] = 5887, + [5997] = 158, + [5998] = 5868, + [5999] = 2993, + [6000] = 426, + [6001] = 439, + [6002] = 378, + [6003] = 1378, + [6004] = 2989, + [6005] = 379, + [6006] = 2975, + [6007] = 381, + [6008] = 382, + [6009] = 423, + [6010] = 1692, + [6011] = 358, + [6012] = 425, + [6013] = 5580, + [6014] = 527, + [6015] = 357, + [6016] = 390, + [6017] = 161, + [6018] = 389, + [6019] = 1705, + [6020] = 6020, + [6021] = 447, + [6022] = 160, + [6023] = 389, + [6024] = 159, + [6025] = 444, + [6026] = 445, + [6027] = 353, + [6028] = 6028, + [6029] = 6029, + [6030] = 5580, + [6031] = 355, [6032] = 6032, [6033] = 6033, - [6034] = 6034, - [6035] = 408, - [6036] = 1728, - [6037] = 4805, - [6038] = 1729, - [6039] = 155, - [6040] = 160, - [6041] = 409, - [6042] = 5975, - [6043] = 1694, - [6044] = 360, - [6045] = 6045, - [6046] = 1697, - [6047] = 366, - [6048] = 361, - [6049] = 3714, - [6050] = 4968, + [6034] = 390, + [6035] = 356, + [6036] = 150, + [6037] = 357, + [6038] = 1168, + [6039] = 421, + [6040] = 401, + [6041] = 402, + [6042] = 403, + [6043] = 160, + [6044] = 159, + [6045] = 676, + [6046] = 404, + [6047] = 6047, + [6048] = 378, + [6049] = 406, + [6050] = 407, [6051] = 410, - [6052] = 411, - [6053] = 6053, - [6054] = 6054, - [6055] = 413, - [6056] = 414, - [6057] = 415, - [6058] = 416, - [6059] = 3719, - [6060] = 492, - [6061] = 460, - [6062] = 461, - [6063] = 6063, - [6064] = 152, - [6065] = 512, - [6066] = 1732, - [6067] = 407, - [6068] = 417, - [6069] = 408, - [6070] = 418, - [6071] = 419, - [6072] = 1733, - [6073] = 420, - [6074] = 421, - [6075] = 422, - [6076] = 6076, - [6077] = 6031, - [6078] = 450, - [6079] = 424, - [6080] = 425, - [6081] = 6081, - [6082] = 1846, - [6083] = 426, - [6084] = 5752, - [6085] = 1666, - [6086] = 427, - [6087] = 364, - [6088] = 5845, - [6089] = 5755, - [6090] = 2813, - [6091] = 3714, - [6092] = 1666, - [6093] = 373, - [6094] = 470, - [6095] = 4999, - [6096] = 6096, - [6097] = 364, - [6098] = 368, - [6099] = 6099, - [6100] = 5857, - [6101] = 5978, - [6102] = 5991, - [6103] = 366, - [6104] = 159, - [6105] = 158, - [6106] = 156, - [6107] = 6107, - [6108] = 157, - [6109] = 6109, - [6110] = 4896, - [6111] = 6076, - [6112] = 5861, - [6113] = 6031, - [6114] = 159, - [6115] = 6081, - [6116] = 6116, - [6117] = 373, - [6118] = 158, - [6119] = 156, + [6052] = 412, + [6053] = 422, + [6054] = 379, + [6055] = 161, + [6056] = 356, + [6057] = 537, + [6058] = 397, + [6059] = 368, + [6060] = 6060, + [6061] = 369, + [6062] = 381, + [6063] = 150, + [6064] = 6064, + [6065] = 414, + [6066] = 416, + [6067] = 417, + [6068] = 418, + [6069] = 549, + [6070] = 382, + [6071] = 425, + [6072] = 555, + [6073] = 360, + [6074] = 536, + [6075] = 419, + [6076] = 5682, + [6077] = 2994, + [6078] = 6064, + [6079] = 6079, + [6080] = 6080, + [6081] = 355, + [6082] = 1378, + [6083] = 3307, + [6084] = 203, + [6085] = 353, + [6086] = 426, + [6087] = 441, + [6088] = 564, + [6089] = 1731, + [6090] = 405, + [6091] = 6091, + [6092] = 151, + [6093] = 6093, + [6094] = 620, + [6095] = 621, + [6096] = 636, + [6097] = 6097, + [6098] = 652, + [6099] = 622, + [6100] = 6100, + [6101] = 6101, + [6102] = 6102, + [6103] = 623, + [6104] = 6104, + [6105] = 675, + [6106] = 3339, + [6107] = 358, + [6108] = 6108, + [6109] = 1727, + [6110] = 6110, + [6111] = 645, + [6112] = 152, + [6113] = 6091, + [6114] = 163, + [6115] = 613, + [6116] = 1629, + [6117] = 204, + [6118] = 6118, + [6119] = 6119, [6120] = 6120, - [6121] = 157, - [6122] = 6076, - [6123] = 6123, - [6124] = 6081, - [6125] = 3719, - [6126] = 368, - [6127] = 6127, - [6128] = 6076, - [6129] = 6081, - [6130] = 6076, - [6131] = 6131, - [6132] = 6081, - [6133] = 6076, - [6134] = 6081, - [6135] = 6096, - [6136] = 6053, - [6137] = 6054, - [6138] = 6076, - [6139] = 6081, - [6140] = 6076, - [6141] = 6141, - [6142] = 6081, - [6143] = 6076, - [6144] = 6144, - [6145] = 5006, - [6146] = 466, - [6147] = 6076, - [6148] = 6031, - [6149] = 4928, - [6150] = 6081, - [6151] = 4930, - [6152] = 6076, - [6153] = 6081, - [6154] = 6076, - [6155] = 155, - [6156] = 6081, - [6157] = 6157, - [6158] = 2816, - [6159] = 6076, - [6160] = 6081, - [6161] = 6081, - [6162] = 6162, - [6163] = 6144, - [6164] = 6076, - [6165] = 6081, - [6166] = 6076, - [6167] = 6081, - [6168] = 1734, - [6169] = 1735, - [6170] = 160, - [6171] = 373, - [6172] = 5703, - [6173] = 6109, - [6174] = 6081, + [6121] = 6121, + [6122] = 6119, + [6123] = 611, + [6124] = 6110, + [6125] = 1173, + [6126] = 6101, + [6127] = 3049, + [6128] = 555, + [6129] = 1732, + [6130] = 6091, + [6131] = 608, + [6132] = 5056, + [6133] = 6133, + [6134] = 3050, + [6135] = 536, + [6136] = 6136, + [6137] = 1764, + [6138] = 1765, + [6139] = 612, + [6140] = 2975, + [6141] = 4977, + [6142] = 6142, + [6143] = 6143, + [6144] = 6118, + [6145] = 474, + [6146] = 360, + [6147] = 6120, + [6148] = 6121, + [6149] = 6110, + [6150] = 6101, + [6151] = 6151, + [6152] = 6091, + [6153] = 6097, + [6154] = 6133, + [6155] = 6118, + [6156] = 454, + [6157] = 6120, + [6158] = 6121, + [6159] = 6110, + [6160] = 6101, + [6161] = 6161, + [6162] = 6091, + [6163] = 6104, + [6164] = 6091, + [6165] = 369, + [6166] = 6166, + [6167] = 6118, + [6168] = 163, + [6169] = 6120, + [6170] = 6121, + [6171] = 6110, + [6172] = 675, + [6173] = 358, + [6174] = 6101, [6175] = 6175, - [6176] = 6176, - [6177] = 1668, - [6178] = 368, - [6179] = 6179, - [6180] = 6180, - [6181] = 6181, - [6182] = 1696, - [6183] = 1584, - [6184] = 6176, - [6185] = 6096, - [6186] = 6053, - [6187] = 6054, - [6188] = 6144, - [6189] = 1668, - [6190] = 6179, - [6191] = 6180, - [6192] = 6192, - [6193] = 1626, - [6194] = 1696, - [6195] = 6096, - [6196] = 6053, - [6197] = 6054, - [6198] = 6144, - [6199] = 6179, - [6200] = 6180, - [6201] = 6179, - [6202] = 6180, - [6203] = 6179, - [6204] = 6180, - [6205] = 6179, - [6206] = 6180, - [6207] = 6179, - [6208] = 6180, - [6209] = 6179, - [6210] = 6180, - [6211] = 6179, - [6212] = 6180, - [6213] = 407, - [6214] = 6179, - [6215] = 6180, - [6216] = 6179, - [6217] = 6180, - [6218] = 6180, - [6219] = 6179, - [6220] = 6180, - [6221] = 6179, - [6222] = 6180, - [6223] = 6179, - [6224] = 6180, - [6225] = 6179, - [6226] = 6180, - [6227] = 6179, - [6228] = 6180, - [6229] = 6179, - [6230] = 6180, - [6231] = 6179, - [6232] = 6180, - [6233] = 6076, - [6234] = 6032, - [6235] = 6033, - [6236] = 6034, - [6237] = 6099, - [6238] = 6181, - [6239] = 6239, - [6240] = 6239, - [6241] = 6241, - [6242] = 364, - [6243] = 6243, - [6244] = 6179, - [6245] = 6245, - [6246] = 6246, - [6247] = 6247, - [6248] = 532, - [6249] = 6249, - [6250] = 534, - [6251] = 6245, - [6252] = 6252, - [6253] = 4798, - [6254] = 6162, - [6255] = 6255, + [6176] = 6118, + [6177] = 6091, + [6178] = 655, + [6179] = 656, + [6180] = 6118, + [6181] = 6120, + [6182] = 6121, + [6183] = 6110, + [6184] = 6101, + [6185] = 657, + [6186] = 1766, + [6187] = 6091, + [6188] = 1767, + [6189] = 648, + [6190] = 6118, + [6191] = 6120, + [6192] = 6121, + [6193] = 6110, + [6194] = 6101, + [6195] = 6195, + [6196] = 6196, + [6197] = 6197, + [6198] = 6091, + [6199] = 6199, + [6200] = 6200, + [6201] = 6118, + [6202] = 6120, + [6203] = 6121, + [6204] = 6110, + [6205] = 6101, + [6206] = 6206, + [6207] = 635, + [6208] = 6208, + [6209] = 6209, + [6210] = 6118, + [6211] = 6120, + [6212] = 6121, + [6213] = 6110, + [6214] = 6101, + [6215] = 6195, + [6216] = 6196, + [6217] = 6101, + [6218] = 6091, + [6219] = 658, + [6220] = 6047, + [6221] = 6197, + [6222] = 6199, + [6223] = 6118, + [6224] = 6120, + [6225] = 6121, + [6226] = 6120, + [6227] = 6110, + [6228] = 654, + [6229] = 6101, + [6230] = 660, + [6231] = 6091, + [6232] = 661, + [6233] = 6233, + [6234] = 6118, + [6235] = 6120, + [6236] = 6121, + [6237] = 6110, + [6238] = 6101, + [6239] = 6093, + [6240] = 6240, + [6241] = 6091, + [6242] = 453, + [6243] = 665, + [6244] = 6118, + [6245] = 6110, + [6246] = 6101, + [6247] = 691, + [6248] = 6091, + [6249] = 6166, + [6250] = 6250, + [6251] = 6118, + [6252] = 6110, + [6253] = 6101, + [6254] = 6254, + [6255] = 6091, [6256] = 6256, - [6257] = 6257, - [6258] = 545, - [6259] = 6259, - [6260] = 6260, - [6261] = 6261, - [6262] = 6262, - [6263] = 6263, - [6264] = 6264, + [6257] = 6118, + [6258] = 358, + [6259] = 6110, + [6260] = 6101, + [6261] = 368, + [6262] = 6091, + [6263] = 450, + [6264] = 6101, [6265] = 6265, - [6266] = 6266, - [6267] = 6267, - [6268] = 6268, - [6269] = 6269, - [6270] = 6261, - [6271] = 6263, - [6272] = 6265, + [6266] = 6091, + [6267] = 455, + [6268] = 6101, + [6269] = 456, + [6270] = 6091, + [6271] = 6118, + [6272] = 6101, [6273] = 6273, - [6274] = 2643, - [6275] = 2611, - [6276] = 397, + [6274] = 6091, + [6275] = 6200, + [6276] = 6276, [6277] = 6277, - [6278] = 6278, - [6279] = 162, - [6280] = 6280, + [6278] = 500, + [6279] = 6279, + [6280] = 6206, [6281] = 6281, - [6282] = 1626, - [6283] = 161, + [6282] = 6282, + [6283] = 152, [6284] = 6284, - [6285] = 6285, - [6286] = 6286, - [6287] = 381, - [6288] = 6249, + [6285] = 378, + [6286] = 6208, + [6287] = 6120, + [6288] = 379, [6289] = 6289, - [6290] = 6245, - [6291] = 6291, - [6292] = 3298, - [6293] = 6293, - [6294] = 6262, - [6295] = 6295, - [6296] = 3299, + [6290] = 6209, + [6291] = 381, + [6292] = 382, + [6293] = 4412, + [6294] = 614, + [6295] = 6121, + [6296] = 6296, [6297] = 6297, - [6298] = 2653, - [6299] = 6299, + [6298] = 1780, + [6299] = 6121, [6300] = 6300, [6301] = 6301, - [6302] = 6266, - [6303] = 6267, - [6304] = 6268, - [6305] = 6269, - [6306] = 6261, - [6307] = 6263, - [6308] = 6265, - [6309] = 6273, - [6310] = 6310, - [6311] = 2642, - [6312] = 382, - [6313] = 6249, - [6314] = 6245, - [6315] = 6315, - [6316] = 6316, - [6317] = 1666, - [6318] = 6318, - [6319] = 6319, - [6320] = 6262, - [6321] = 6321, - [6322] = 6322, - [6323] = 6269, - [6324] = 384, - [6325] = 6266, - [6326] = 6267, - [6327] = 6268, - [6328] = 6269, - [6329] = 6261, - [6330] = 6263, - [6331] = 6265, - [6332] = 6273, - [6333] = 3053, - [6334] = 6249, - [6335] = 6245, - [6336] = 6336, - [6337] = 518, - [6338] = 6338, - [6339] = 520, - [6340] = 2636, - [6341] = 6262, + [6302] = 6302, + [6303] = 6303, + [6304] = 1782, + [6305] = 6305, + [6306] = 6100, + [6307] = 6250, + [6308] = 6254, + [6309] = 151, + [6310] = 6256, + [6311] = 6118, + [6312] = 6312, + [6313] = 6120, + [6314] = 687, + [6315] = 360, + [6316] = 615, + [6317] = 6121, + [6318] = 6142, + [6319] = 443, + [6320] = 687, + [6321] = 616, + [6322] = 1618, + [6323] = 6143, + [6324] = 6301, + [6325] = 450, + [6326] = 6302, + [6327] = 455, + [6328] = 456, + [6329] = 500, + [6330] = 6303, + [6331] = 1789, + [6332] = 1790, + [6333] = 452, + [6334] = 666, + [6335] = 5580, + [6336] = 6091, + [6337] = 6337, + [6338] = 480, + [6339] = 6119, + [6340] = 617, + [6341] = 668, [6342] = 6342, - [6343] = 3056, - [6344] = 6344, - [6345] = 6345, + [6343] = 670, + [6344] = 6119, + [6345] = 6273, [6346] = 6346, - [6347] = 6266, - [6348] = 6267, - [6349] = 6268, - [6350] = 6269, - [6351] = 6261, - [6352] = 6263, - [6353] = 6265, - [6354] = 6273, - [6355] = 6355, - [6356] = 6356, - [6357] = 6249, - [6358] = 6358, - [6359] = 6245, - [6360] = 6360, - [6361] = 6361, - [6362] = 6362, - [6363] = 6363, - [6364] = 6262, - [6365] = 534, - [6366] = 6366, - [6367] = 6367, + [6347] = 549, + [6348] = 618, + [6349] = 527, + [6350] = 6300, + [6351] = 619, + [6352] = 677, + [6353] = 6110, + [6354] = 2989, + [6355] = 678, + [6356] = 679, + [6357] = 6357, + [6358] = 6151, + [6359] = 6359, + [6360] = 537, + [6361] = 6273, + [6362] = 6110, + [6363] = 6273, + [6364] = 6364, + [6365] = 1618, + [6366] = 6101, + [6367] = 1629, [6368] = 6368, - [6369] = 6369, - [6370] = 6370, - [6371] = 6266, - [6372] = 6267, - [6373] = 6268, - [6374] = 6269, - [6375] = 6261, - [6376] = 6263, - [6377] = 6265, - [6378] = 6273, - [6379] = 6262, - [6380] = 556, - [6381] = 6249, - [6382] = 6245, - [6383] = 6267, - [6384] = 6249, - [6385] = 6262, - [6386] = 538, - [6387] = 6387, - [6388] = 3062, - [6389] = 4701, - [6390] = 6266, - [6391] = 6267, - [6392] = 6268, - [6393] = 6269, - [6394] = 6261, - [6395] = 6263, - [6396] = 6265, - [6397] = 6273, - [6398] = 551, - [6399] = 6249, - [6400] = 6400, - [6401] = 6245, - [6402] = 559, + [6369] = 6175, + [6370] = 4463, + [6371] = 360, + [6372] = 629, + [6373] = 440, + [6374] = 630, + [6375] = 6375, + [6376] = 6376, + [6377] = 5168, + [6378] = 5271, + [6379] = 404, + [6380] = 405, + [6381] = 6381, + [6382] = 5171, + [6383] = 6383, + [6384] = 5156, + [6385] = 5270, + [6386] = 5250, + [6387] = 5174, + [6388] = 406, + [6389] = 5132, + [6390] = 407, + [6391] = 1692, + [6392] = 410, + [6393] = 156, + [6394] = 412, + [6395] = 360, + [6396] = 6396, + [6397] = 6397, + [6398] = 1692, + [6399] = 439, + [6400] = 426, + [6401] = 2989, + [6402] = 5280, [6403] = 6403, - [6404] = 533, - [6405] = 6262, - [6406] = 6268, - [6407] = 6245, - [6408] = 6408, - [6409] = 6409, - [6410] = 6410, - [6411] = 6266, - [6412] = 6267, - [6413] = 6268, - [6414] = 6269, - [6415] = 6261, - [6416] = 6263, - [6417] = 6265, - [6418] = 6273, - [6419] = 6419, - [6420] = 6249, - [6421] = 6245, + [6404] = 6404, + [6405] = 5289, + [6406] = 6381, + [6407] = 6383, + [6408] = 157, + [6409] = 5297, + [6410] = 5252, + [6411] = 155, + [6412] = 6412, + [6413] = 6413, + [6414] = 5298, + [6415] = 5236, + [6416] = 6416, + [6417] = 414, + [6418] = 1789, + [6419] = 1764, + [6420] = 1790, + [6421] = 369, [6422] = 6422, - [6423] = 6423, - [6424] = 6249, + [6423] = 416, + [6424] = 417, [6425] = 6425, - [6426] = 6262, - [6427] = 6427, - [6428] = 3093, - [6429] = 4788, - [6430] = 6266, - [6431] = 6267, - [6432] = 6268, - [6433] = 6269, - [6434] = 6261, - [6435] = 6263, - [6436] = 6265, - [6437] = 6273, - [6438] = 3292, - [6439] = 6249, - [6440] = 6245, - [6441] = 3293, - [6442] = 6262, - [6443] = 6245, - [6444] = 368, - [6445] = 6266, - [6446] = 6267, - [6447] = 6268, - [6448] = 6269, - [6449] = 6261, - [6450] = 6263, - [6451] = 6265, - [6452] = 6273, - [6453] = 534, - [6454] = 6249, - [6455] = 6245, - [6456] = 6269, - [6457] = 6457, - [6458] = 6262, - [6459] = 6459, - [6460] = 6460, - [6461] = 6461, - [6462] = 561, - [6463] = 6463, - [6464] = 6266, - [6465] = 6267, - [6466] = 6268, - [6467] = 6269, - [6468] = 6261, - [6469] = 6263, - [6470] = 6265, - [6471] = 6273, - [6472] = 562, - [6473] = 6249, - [6474] = 6474, - [6475] = 6475, - [6476] = 6476, - [6477] = 6262, - [6478] = 6478, - [6479] = 6262, - [6480] = 373, - [6481] = 6481, - [6482] = 6482, - [6483] = 6266, - [6484] = 6267, - [6485] = 6268, - [6486] = 6269, - [6487] = 6261, - [6488] = 6263, - [6489] = 6265, - [6490] = 6273, - [6491] = 6400, - [6492] = 6249, - [6493] = 6493, - [6494] = 6245, - [6495] = 6249, - [6496] = 6262, - [6497] = 6497, - [6498] = 2615, - [6499] = 6266, - [6500] = 6267, - [6501] = 6268, - [6502] = 6269, - [6503] = 6261, - [6504] = 6263, - [6505] = 6265, - [6506] = 6273, - [6507] = 6507, - [6508] = 6249, - [6509] = 6509, - [6510] = 6245, - [6511] = 522, - [6512] = 6262, - [6513] = 6262, - [6514] = 6266, - [6515] = 6267, - [6516] = 6268, - [6517] = 6269, - [6518] = 6261, - [6519] = 6263, - [6520] = 6265, - [6521] = 6273, - [6522] = 6522, - [6523] = 6249, - [6524] = 6524, - [6525] = 6245, - [6526] = 6262, - [6527] = 6527, - [6528] = 6266, - [6529] = 6267, - [6530] = 6268, - [6531] = 6269, - [6532] = 6261, - [6533] = 6263, - [6534] = 6265, - [6535] = 6273, - [6536] = 6273, - [6537] = 6249, - [6538] = 6245, - [6539] = 6262, - [6540] = 6266, - [6541] = 6267, - [6542] = 6268, - [6543] = 6269, - [6544] = 6261, - [6545] = 6263, - [6546] = 6265, - [6547] = 6273, - [6548] = 6261, - [6549] = 6249, - [6550] = 6245, - [6551] = 6262, - [6552] = 6266, - [6553] = 6267, - [6554] = 6268, - [6555] = 6269, - [6556] = 6261, - [6557] = 6263, - [6558] = 6265, - [6559] = 6273, - [6560] = 6249, - [6561] = 6245, - [6562] = 6262, - [6563] = 6249, - [6564] = 6245, - [6565] = 6565, - [6566] = 6262, - [6567] = 6249, - [6568] = 6245, - [6569] = 6262, - [6570] = 6249, - [6571] = 6245, - [6572] = 6262, - [6573] = 6249, - [6574] = 6245, - [6575] = 6262, - [6576] = 6249, - [6577] = 6245, - [6578] = 6262, - [6579] = 6249, - [6580] = 6245, - [6581] = 6262, - [6582] = 6582, - [6583] = 6249, - [6584] = 6245, - [6585] = 6262, - [6586] = 6263, - [6587] = 6249, - [6588] = 6245, - [6589] = 6262, - [6590] = 6249, - [6591] = 6245, - [6592] = 6262, - [6593] = 6249, - [6594] = 6245, - [6595] = 6262, - [6596] = 6249, - [6597] = 6245, - [6598] = 6262, - [6599] = 6265, - [6600] = 6249, - [6601] = 6245, - [6602] = 6262, - [6603] = 6603, - [6604] = 6249, - [6605] = 6245, - [6606] = 6262, - [6607] = 6607, - [6608] = 6249, - [6609] = 6245, - [6610] = 6262, - [6611] = 6249, - [6612] = 6245, - [6613] = 6262, - [6614] = 6249, - [6615] = 6245, - [6616] = 6262, - [6617] = 6249, - [6618] = 6245, - [6619] = 6262, - [6620] = 6249, - [6621] = 6245, - [6622] = 6262, - [6623] = 6249, - [6624] = 6245, - [6625] = 6262, - [6626] = 6249, - [6627] = 6245, - [6628] = 6262, - [6629] = 6249, - [6630] = 6245, - [6631] = 6262, - [6632] = 6249, - [6633] = 6245, - [6634] = 6262, - [6635] = 6249, - [6636] = 6245, - [6637] = 6262, - [6638] = 6249, - [6639] = 6245, - [6640] = 6262, - [6641] = 6249, - [6642] = 6245, - [6643] = 6262, - [6644] = 6249, - [6645] = 6245, - [6646] = 6262, - [6647] = 6249, - [6648] = 6245, - [6649] = 6262, - [6650] = 6245, - [6651] = 6262, - [6652] = 6245, - [6653] = 6262, - [6654] = 6245, - [6655] = 6262, - [6656] = 6656, - [6657] = 6249, - [6658] = 6658, + [6426] = 6426, + [6427] = 5088, + [6428] = 1766, + [6429] = 1767, + [6430] = 5299, + [6431] = 6422, + [6432] = 153, + [6433] = 6433, + [6434] = 6434, + [6435] = 6276, + [6436] = 6277, + [6437] = 6426, + [6438] = 1727, + [6439] = 6439, + [6440] = 352, + [6441] = 1765, + [6442] = 382, + [6443] = 6443, + [6444] = 360, + [6445] = 6445, + [6446] = 444, + [6447] = 418, + [6448] = 445, + [6449] = 419, + [6450] = 6422, + [6451] = 6368, + [6452] = 6426, + [6453] = 6396, + [6454] = 6397, + [6455] = 6422, + [6456] = 6426, + [6457] = 1732, + [6458] = 6458, + [6459] = 6434, + [6460] = 6403, + [6461] = 6422, + [6462] = 6404, + [6463] = 6381, + [6464] = 6426, + [6465] = 6383, + [6466] = 6445, + [6467] = 6467, + [6468] = 6468, + [6469] = 150, + [6470] = 6422, + [6471] = 6412, + [6472] = 6413, + [6473] = 6426, + [6474] = 6357, + [6475] = 5245, + [6476] = 6422, + [6477] = 6477, + [6478] = 6422, + [6479] = 6425, + [6480] = 6434, + [6481] = 6426, + [6482] = 5181, + [6483] = 5191, + [6484] = 5194, + [6485] = 6485, + [6486] = 6422, + [6487] = 6426, + [6488] = 5056, + [6489] = 5199, + [6490] = 4977, + [6491] = 6491, + [6492] = 6467, + [6493] = 6422, + [6494] = 1780, + [6495] = 2975, + [6496] = 6426, + [6497] = 6426, + [6498] = 6468, + [6499] = 6499, + [6500] = 5272, + [6501] = 1782, + [6502] = 6422, + [6503] = 6426, + [6504] = 368, + [6505] = 5202, + [6506] = 6108, + [6507] = 6422, + [6508] = 6508, + [6509] = 6426, + [6510] = 378, + [6511] = 156, + [6512] = 360, + [6513] = 6422, + [6514] = 6426, + [6515] = 5300, + [6516] = 157, + [6517] = 155, + [6518] = 153, + [6519] = 5203, + [6520] = 6422, + [6521] = 379, + [6522] = 354, + [6523] = 6426, + [6524] = 5301, + [6525] = 6422, + [6526] = 5151, + [6527] = 6426, + [6528] = 5302, + [6529] = 6529, + [6530] = 6412, + [6531] = 6296, + [6532] = 5155, + [6533] = 425, + [6534] = 426, + [6535] = 6535, + [6536] = 6422, + [6537] = 6297, + [6538] = 6434, + [6539] = 6364, + [6540] = 6540, + [6541] = 6426, + [6542] = 5204, + [6543] = 6413, + [6544] = 5205, + [6545] = 6047, + [6546] = 6546, + [6547] = 5211, + [6548] = 158, + [6549] = 421, + [6550] = 154, + [6551] = 401, + [6552] = 6535, + [6553] = 6553, + [6554] = 6529, + [6555] = 5153, + [6556] = 1705, + [6557] = 5112, + [6558] = 6416, + [6559] = 5213, + [6560] = 5274, + [6561] = 6561, + [6562] = 5138, + [6563] = 5309, + [6564] = 6396, + [6565] = 5144, + [6566] = 6566, + [6567] = 6397, + [6568] = 368, + [6569] = 402, + [6570] = 1731, + [6571] = 5145, + [6572] = 5148, + [6573] = 1629, + [6574] = 5310, + [6575] = 381, + [6576] = 6576, + [6577] = 6577, + [6578] = 368, + [6579] = 6445, + [6580] = 6467, + [6581] = 6468, + [6582] = 2015, + [6583] = 6425, + [6584] = 5277, + [6585] = 425, + [6586] = 1705, + [6587] = 6416, + [6588] = 6561, + [6589] = 369, + [6590] = 6561, + [6591] = 403, + [6592] = 6592, + [6593] = 158, + [6594] = 1618, + [6595] = 1731, + [6596] = 6596, + [6597] = 5150, + [6598] = 358, + [6599] = 6445, + [6600] = 6467, + [6601] = 6468, + [6602] = 6425, + [6603] = 6416, + [6604] = 6561, + [6605] = 6416, + [6606] = 6561, + [6607] = 6416, + [6608] = 6561, + [6609] = 6416, + [6610] = 6561, + [6611] = 6416, + [6612] = 6561, + [6613] = 6416, + [6614] = 6561, + [6615] = 6416, + [6616] = 6561, + [6617] = 6416, + [6618] = 6561, + [6619] = 6416, + [6620] = 6561, + [6621] = 6416, + [6622] = 6561, + [6623] = 5159, + [6624] = 6416, + [6625] = 6561, + [6626] = 6416, + [6627] = 6561, + [6628] = 6416, + [6629] = 6561, + [6630] = 6416, + [6631] = 6561, + [6632] = 6416, + [6633] = 6561, + [6634] = 6416, + [6635] = 6561, + [6636] = 449, + [6637] = 6477, + [6638] = 6499, + [6639] = 6553, + [6640] = 6592, + [6641] = 6508, + [6642] = 6596, + [6643] = 5160, + [6644] = 6403, + [6645] = 5161, + [6646] = 5152, + [6647] = 5231, + [6648] = 6404, + [6649] = 5234, + [6650] = 1973, + [6651] = 5162, + [6652] = 506, + [6653] = 154, + [6654] = 5165, + [6655] = 5235, + [6656] = 5140, + [6657] = 369, + [6658] = 5144, [6659] = 6659, - [6660] = 547, + [6660] = 6660, [6661] = 6661, [6662] = 6662, [6663] = 6663, [6664] = 6664, [6665] = 6665, - [6666] = 397, - [6667] = 6667, + [6666] = 533, + [6667] = 1629, [6668] = 6668, [6669] = 6669, - [6670] = 6670, + [6670] = 3230, [6671] = 6671, - [6672] = 1584, - [6673] = 381, - [6674] = 6674, - [6675] = 6527, - [6676] = 6674, - [6677] = 6677, - [6678] = 6425, - [6679] = 561, - [6680] = 6680, + [6672] = 6662, + [6673] = 6673, + [6674] = 564, + [6675] = 160, + [6676] = 452, + [6677] = 1618, + [6678] = 6678, + [6679] = 159, + [6680] = 6662, [6681] = 6681, - [6682] = 562, - [6683] = 382, + [6682] = 6682, + [6683] = 6683, [6684] = 6684, - [6685] = 384, - [6686] = 364, + [6685] = 6685, + [6686] = 6686, [6687] = 6687, - [6688] = 373, - [6689] = 6689, - [6690] = 1666, - [6691] = 3314, + [6688] = 6660, + [6689] = 6663, + [6690] = 6659, + [6691] = 6691, [6692] = 6692, [6693] = 6693, - [6694] = 162, - [6695] = 3063, - [6696] = 397, - [6697] = 6697, - [6698] = 6698, - [6699] = 6107, - [6700] = 161, + [6694] = 555, + [6695] = 6662, + [6696] = 6696, + [6697] = 6664, + [6698] = 537, + [6699] = 6699, + [6700] = 6700, [6701] = 6701, - [6702] = 6266, - [6703] = 517, - [6704] = 6704, - [6705] = 6705, - [6706] = 6706, - [6707] = 6707, - [6708] = 6708, - [6709] = 6709, - [6710] = 6249, - [6711] = 6249, + [6702] = 6702, + [6703] = 6671, + [6704] = 537, + [6705] = 5088, + [6706] = 5112, + [6707] = 561, + [6708] = 5132, + [6709] = 536, + [6710] = 6664, + [6711] = 5138, [6712] = 6712, [6713] = 6713, - [6714] = 6714, - [6715] = 6715, - [6716] = 559, - [6717] = 545, - [6718] = 6718, - [6719] = 6719, - [6720] = 6720, - [6721] = 6721, - [6722] = 556, - [6723] = 3315, - [6724] = 525, + [6714] = 5140, + [6715] = 6683, + [6716] = 6684, + [6717] = 6685, + [6718] = 6686, + [6719] = 6687, + [6720] = 6660, + [6721] = 6663, + [6722] = 6659, + [6723] = 6723, + [6724] = 6724, [6725] = 6725, - [6726] = 2641, - [6727] = 3066, - [6728] = 4698, - [6729] = 381, + [6726] = 6726, + [6727] = 6662, + [6728] = 6728, + [6729] = 6664, [6730] = 6730, - [6731] = 6731, - [6732] = 6664, + [6731] = 1629, + [6732] = 2746, [6733] = 6733, - [6734] = 219, + [6734] = 6671, [6735] = 6735, - [6736] = 6736, - [6737] = 6266, - [6738] = 6267, - [6739] = 6739, - [6740] = 1668, - [6741] = 6268, - [6742] = 6269, - [6743] = 1696, - [6744] = 6744, - [6745] = 6745, - [6746] = 6746, - [6747] = 6747, - [6748] = 534, - [6749] = 559, - [6750] = 4705, - [6751] = 532, - [6752] = 6668, - [6753] = 545, - [6754] = 6754, - [6755] = 6677, - [6756] = 551, - [6757] = 6757, - [6758] = 533, - [6759] = 6661, - [6760] = 6261, - [6761] = 6263, - [6762] = 6265, - [6763] = 1584, - [6764] = 6764, - [6765] = 6245, - [6766] = 382, - [6767] = 561, - [6768] = 6063, + [6736] = 6671, + [6737] = 6737, + [6738] = 3220, + [6739] = 6671, + [6740] = 537, + [6741] = 6741, + [6742] = 3501, + [6743] = 6683, + [6744] = 6684, + [6745] = 6685, + [6746] = 6686, + [6747] = 6687, + [6748] = 6660, + [6749] = 6663, + [6750] = 6659, + [6751] = 3502, + [6752] = 6752, + [6753] = 6753, + [6754] = 6662, + [6755] = 6755, + [6756] = 6664, + [6757] = 6737, + [6758] = 6758, + [6759] = 6759, + [6760] = 549, + [6761] = 527, + [6762] = 6671, + [6763] = 6458, + [6764] = 6485, + [6765] = 378, + [6766] = 6766, + [6767] = 6767, + [6768] = 6768, [6769] = 6769, - [6770] = 559, + [6770] = 6669, [6771] = 6771, - [6772] = 6681, - [6773] = 6273, - [6774] = 6774, - [6775] = 6775, - [6776] = 368, - [6777] = 562, - [6778] = 6778, - [6779] = 6267, - [6780] = 525, - [6781] = 582, - [6782] = 6273, + [6772] = 6772, + [6773] = 6683, + [6774] = 6684, + [6775] = 6685, + [6776] = 6686, + [6777] = 6687, + [6778] = 6660, + [6779] = 6663, + [6780] = 6659, + [6781] = 455, + [6782] = 456, [6783] = 6783, - [6784] = 561, - [6785] = 562, + [6784] = 6784, + [6785] = 6662, [6786] = 6786, - [6787] = 6787, + [6787] = 6664, [6788] = 6788, - [6789] = 6789, - [6790] = 6790, + [6789] = 500, + [6790] = 6687, [6791] = 6791, - [6792] = 384, - [6793] = 6733, - [6794] = 6794, - [6795] = 6493, - [6796] = 6507, - [6797] = 6774, - [6798] = 6721, - [6799] = 6266, - [6800] = 163, + [6792] = 6792, + [6793] = 6671, + [6794] = 6660, + [6795] = 6795, + [6796] = 6796, + [6797] = 549, + [6798] = 6798, + [6799] = 6663, + [6800] = 6800, [6801] = 6801, - [6802] = 6802, - [6803] = 6733, - [6804] = 6493, - [6805] = 6507, - [6806] = 6774, - [6807] = 6807, - [6808] = 3714, - [6809] = 3719, - [6810] = 6810, - [6811] = 6811, - [6812] = 6812, - [6813] = 6268, - [6814] = 163, + [6802] = 535, + [6803] = 6803, + [6804] = 6683, + [6805] = 6684, + [6806] = 6685, + [6807] = 6686, + [6808] = 6687, + [6809] = 6660, + [6810] = 6663, + [6811] = 6659, + [6812] = 3167, + [6813] = 358, + [6814] = 6814, [6815] = 6815, - [6816] = 1626, - [6817] = 6259, - [6818] = 6818, - [6819] = 6819, - [6820] = 6812, + [6816] = 6662, + [6817] = 6817, + [6818] = 6664, + [6819] = 6683, + [6820] = 6820, [6821] = 6821, - [6822] = 6822, - [6823] = 6823, - [6824] = 6824, - [6825] = 1666, - [6826] = 6826, + [6822] = 6671, + [6823] = 6684, + [6824] = 6685, + [6825] = 6825, + [6826] = 379, [6827] = 6827, - [6828] = 6693, - [6829] = 668, - [6830] = 6819, - [6831] = 204, - [6832] = 252, - [6833] = 6697, - [6834] = 6247, - [6835] = 6835, - [6836] = 6764, - [6837] = 6704, - [6838] = 635, - [6839] = 561, - [6840] = 587, - [6841] = 588, - [6842] = 6842, - [6843] = 562, - [6844] = 648, + [6828] = 6686, + [6829] = 6687, + [6830] = 6683, + [6831] = 6684, + [6832] = 6685, + [6833] = 6686, + [6834] = 6687, + [6835] = 6660, + [6836] = 6663, + [6837] = 6659, + [6838] = 6768, + [6839] = 6660, + [6840] = 6840, + [6841] = 6662, + [6842] = 6663, + [6843] = 6664, + [6844] = 6659, [6845] = 6845, - [6846] = 6826, - [6847] = 6847, - [6848] = 6848, - [6849] = 6849, + [6846] = 6846, + [6847] = 6671, + [6848] = 381, + [6849] = 555, [6850] = 6850, - [6851] = 6821, - [6852] = 6822, - [6853] = 6823, - [6854] = 637, - [6855] = 6824, - [6856] = 638, - [6857] = 6857, - [6858] = 6826, - [6859] = 6827, - [6860] = 6819, - [6861] = 6706, - [6862] = 6422, - [6863] = 6863, - [6864] = 6423, - [6865] = 6707, - [6866] = 6842, - [6867] = 6427, - [6868] = 6714, - [6869] = 650, - [6870] = 6847, - [6871] = 6848, - [6872] = 6842, - [6873] = 6850, - [6874] = 6874, - [6875] = 6821, - [6876] = 6822, - [6877] = 6823, - [6878] = 6878, - [6879] = 6824, - [6880] = 6735, - [6881] = 6826, - [6882] = 6827, - [6883] = 6819, - [6884] = 6849, - [6885] = 3101, - [6886] = 6345, - [6887] = 6887, - [6888] = 6863, + [6851] = 6851, + [6852] = 6852, + [6853] = 6683, + [6854] = 6684, + [6855] = 6685, + [6856] = 6686, + [6857] = 6687, + [6858] = 6660, + [6859] = 6663, + [6860] = 6659, + [6861] = 6861, + [6862] = 5115, + [6863] = 6662, + [6864] = 6664, + [6865] = 6865, + [6866] = 6866, + [6867] = 6867, + [6868] = 6671, + [6869] = 6869, + [6870] = 6870, + [6871] = 6871, + [6872] = 6872, + [6873] = 6873, + [6874] = 6683, + [6875] = 6684, + [6876] = 6685, + [6877] = 6686, + [6878] = 6687, + [6879] = 6660, + [6880] = 6663, + [6881] = 6659, + [6882] = 6766, + [6883] = 6820, + [6884] = 6662, + [6885] = 6664, + [6886] = 6886, + [6887] = 6671, + [6888] = 555, [6889] = 6889, - [6890] = 3062, - [6891] = 2995, - [6892] = 6842, - [6893] = 6893, - [6894] = 6460, - [6895] = 6827, - [6896] = 6848, - [6897] = 3155, - [6898] = 6850, - [6899] = 6821, - [6900] = 6822, - [6901] = 6823, - [6902] = 6824, - [6903] = 6826, - [6904] = 6827, - [6905] = 6842, - [6906] = 6819, - [6907] = 6819, - [6908] = 6461, - [6909] = 6788, - [6910] = 6299, - [6911] = 6911, - [6912] = 625, - [6913] = 3156, - [6914] = 675, - [6915] = 6842, - [6916] = 6476, - [6917] = 676, - [6918] = 6918, - [6919] = 6848, - [6920] = 6482, - [6921] = 6850, - [6922] = 6264, - [6923] = 534, - [6924] = 6821, - [6925] = 6822, - [6926] = 6823, - [6927] = 3053, - [6928] = 6824, - [6929] = 6509, - [6930] = 6826, - [6931] = 6827, - [6932] = 660, - [6933] = 6819, - [6934] = 6246, - [6935] = 6935, - [6936] = 3056, - [6937] = 6937, - [6938] = 6938, - [6939] = 6842, - [6940] = 6847, - [6941] = 397, - [6942] = 3121, - [6943] = 6848, - [6944] = 3122, - [6945] = 6850, - [6946] = 657, - [6947] = 6821, - [6948] = 6822, - [6949] = 6823, - [6950] = 6824, - [6951] = 6848, - [6952] = 6826, - [6953] = 6827, - [6954] = 6257, - [6955] = 3123, - [6956] = 6850, - [6957] = 6850, - [6958] = 6958, - [6959] = 6787, - [6960] = 646, - [6961] = 6789, - [6962] = 6842, - [6963] = 6801, - [6964] = 6811, - [6965] = 6965, - [6966] = 6848, - [6967] = 6850, - [6968] = 3125, - [6969] = 6316, - [6970] = 6821, - [6971] = 6822, - [6972] = 6823, - [6973] = 6824, - [6974] = 559, - [6975] = 1626, - [6976] = 6826, - [6977] = 6827, - [6978] = 6255, - [6979] = 6819, - [6980] = 6360, - [6981] = 6403, - [6982] = 6408, - [6983] = 534, - [6984] = 6409, - [6985] = 640, - [6986] = 6986, - [6987] = 6842, - [6988] = 6410, - [6989] = 6419, - [6990] = 6893, - [6991] = 1584, - [6992] = 6848, - [6993] = 382, - [6994] = 6850, - [6995] = 6463, - [6996] = 6821, - [6997] = 6822, - [6998] = 6823, - [6999] = 6497, - [7000] = 6824, - [7001] = 641, - [7002] = 6826, - [7003] = 6827, - [7004] = 6715, - [7005] = 6524, - [7006] = 6819, - [7007] = 6667, - [7008] = 6670, - [7009] = 6687, - [7010] = 7010, - [7011] = 6842, - [7012] = 6701, - [7013] = 6705, - [7014] = 6775, - [7015] = 6848, - [7016] = 6850, - [7017] = 6318, - [7018] = 6821, - [7019] = 6822, - [7020] = 6823, - [7021] = 6319, - [7022] = 6824, - [7023] = 6857, - [7024] = 6826, - [7025] = 6827, - [7026] = 6281, - [7027] = 6819, - [7028] = 6286, - [7029] = 7029, - [7030] = 6821, - [7031] = 6822, - [7032] = 6823, - [7033] = 7033, - [7034] = 7034, - [7035] = 6842, - [7036] = 6778, - [7037] = 6842, - [7038] = 6848, - [7039] = 6850, - [7040] = 6285, - [7041] = 6821, - [7042] = 6822, - [7043] = 6823, - [7044] = 6824, - [7045] = 635, - [7046] = 6322, - [7047] = 6826, - [7048] = 6827, - [7049] = 6358, - [7050] = 6819, - [7051] = 6842, - [7052] = 7052, - [7053] = 6848, - [7054] = 6850, - [7055] = 626, - [7056] = 6821, - [7057] = 6822, - [7058] = 6823, - [7059] = 6824, - [7060] = 7060, - [7061] = 6826, - [7062] = 6827, - [7063] = 7063, - [7064] = 1668, - [7065] = 6819, - [7066] = 678, - [7067] = 6362, - [7068] = 6582, - [7069] = 6794, - [7070] = 6603, - [7071] = 6289, - [7072] = 6842, - [7073] = 6607, - [7074] = 6848, - [7075] = 6850, - [7076] = 6310, - [7077] = 6790, - [7078] = 6821, - [7079] = 6822, - [7080] = 6823, - [7081] = 6824, - [7082] = 6826, - [7083] = 6827, - [7084] = 6819, - [7085] = 6791, - [7086] = 632, - [7087] = 7087, - [7088] = 1696, - [7089] = 6850, - [7090] = 7090, - [7091] = 6821, - [7092] = 6822, - [7093] = 6823, - [7094] = 6824, - [7095] = 683, - [7096] = 6826, - [7097] = 6827, - [7098] = 6835, - [7099] = 6819, - [7100] = 6824, - [7101] = 6826, - [7102] = 6720, - [7103] = 6827, - [7104] = 6850, - [7105] = 6342, - [7106] = 6821, - [7107] = 6822, - [7108] = 6823, - [7109] = 7109, - [7110] = 6824, - [7111] = 6826, - [7112] = 6827, - [7113] = 7113, - [7114] = 6819, - [7115] = 397, - [7116] = 6367, - [7117] = 6850, - [7118] = 7118, - [7119] = 6821, - [7120] = 6822, - [7121] = 6823, - [7122] = 6291, - [7123] = 6824, - [7124] = 6293, - [7125] = 6826, - [7126] = 6827, - [7127] = 6295, - [7128] = 6819, - [7129] = 6300, - [7130] = 6301, - [7131] = 6315, - [7132] = 6321, - [7133] = 7133, - [7134] = 6708, - [7135] = 6336, - [7136] = 6709, - [7137] = 6712, - [7138] = 611, - [7139] = 612, - [7140] = 6713, - [7141] = 6346, - [7142] = 7142, - [7143] = 6355, - [7144] = 6356, - [7145] = 6848, - [7146] = 6361, - [7147] = 6819, - [7148] = 684, - [7149] = 6819, - [7150] = 6363, - [7151] = 384, - [7152] = 6835, - [7153] = 6847, - [7154] = 4629, - [7155] = 561, + [6890] = 379, + [6891] = 6683, + [6892] = 6684, + [6893] = 6685, + [6894] = 6686, + [6895] = 6687, + [6896] = 6660, + [6897] = 6663, + [6898] = 6659, + [6899] = 536, + [6900] = 6685, + [6901] = 6662, + [6902] = 6664, + [6903] = 5145, + [6904] = 6671, + [6905] = 6741, + [6906] = 6870, + [6907] = 549, + [6908] = 6683, + [6909] = 6684, + [6910] = 6685, + [6911] = 6686, + [6912] = 6687, + [6913] = 6660, + [6914] = 6663, + [6915] = 6659, + [6916] = 381, + [6917] = 6662, + [6918] = 6664, + [6919] = 5148, + [6920] = 6671, + [6921] = 6921, + [6922] = 2727, + [6923] = 527, + [6924] = 6683, + [6925] = 6684, + [6926] = 6685, + [6927] = 6686, + [6928] = 6687, + [6929] = 6660, + [6930] = 6663, + [6931] = 6659, + [6932] = 382, + [6933] = 6662, + [6934] = 6664, + [6935] = 5150, + [6936] = 6671, + [6937] = 6683, + [6938] = 6662, + [6939] = 6664, + [6940] = 5152, + [6941] = 6671, + [6942] = 2728, + [6943] = 6662, + [6944] = 6664, + [6945] = 5155, + [6946] = 6671, + [6947] = 382, + [6948] = 6662, + [6949] = 6664, + [6950] = 6671, + [6951] = 6687, + [6952] = 6662, + [6953] = 6664, + [6954] = 6671, + [6955] = 536, + [6956] = 6662, + [6957] = 6664, + [6958] = 6671, + [6959] = 6662, + [6960] = 6662, + [6961] = 6664, + [6962] = 6671, + [6963] = 6963, + [6964] = 6662, + [6965] = 6664, + [6966] = 6671, + [6967] = 6967, + [6968] = 6662, + [6969] = 6664, + [6970] = 6671, + [6971] = 6971, + [6972] = 6662, + [6973] = 6664, + [6974] = 6671, + [6975] = 6664, + [6976] = 6662, + [6977] = 6664, + [6978] = 6671, + [6979] = 6684, + [6980] = 6662, + [6981] = 6664, + [6982] = 6671, + [6983] = 6983, + [6984] = 6662, + [6985] = 6664, + [6986] = 6671, + [6987] = 6987, + [6988] = 6662, + [6989] = 6664, + [6990] = 6671, + [6991] = 6662, + [6992] = 6662, + [6993] = 6664, + [6994] = 6671, + [6995] = 6995, + [6996] = 6662, + [6997] = 6664, + [6998] = 6671, + [6999] = 6999, + [7000] = 6662, + [7001] = 6664, + [7002] = 6671, + [7003] = 7003, + [7004] = 6662, + [7005] = 6664, + [7006] = 6671, + [7007] = 7007, + [7008] = 6662, + [7009] = 6664, + [7010] = 6671, + [7011] = 6684, + [7012] = 6662, + [7013] = 6664, + [7014] = 6671, + [7015] = 527, + [7016] = 6662, + [7017] = 6664, + [7018] = 6671, + [7019] = 6671, + [7020] = 6662, + [7021] = 6664, + [7022] = 6671, + [7023] = 6660, + [7024] = 6662, + [7025] = 6664, + [7026] = 6663, + [7027] = 6662, + [7028] = 6664, + [7029] = 6671, + [7030] = 6662, + [7031] = 6664, + [7032] = 6671, + [7033] = 6662, + [7034] = 6664, + [7035] = 6671, + [7036] = 6662, + [7037] = 6664, + [7038] = 6671, + [7039] = 6664, + [7040] = 6671, + [7041] = 6664, + [7042] = 6671, + [7043] = 6664, + [7044] = 6671, + [7045] = 6664, + [7046] = 6662, + [7047] = 5156, + [7048] = 7048, + [7049] = 6685, + [7050] = 7050, + [7051] = 6673, + [7052] = 535, + [7053] = 7053, + [7054] = 6737, + [7055] = 1618, + [7056] = 7056, + [7057] = 3216, + [7058] = 6686, + [7059] = 7059, + [7060] = 548, + [7061] = 6766, + [7062] = 7062, + [7063] = 6788, + [7064] = 7064, + [7065] = 161, + [7066] = 7066, + [7067] = 3201, + [7068] = 7068, + [7069] = 6671, + [7070] = 7070, + [7071] = 7071, + [7072] = 7072, + [7073] = 7073, + [7074] = 7074, + [7075] = 6659, + [7076] = 7076, + [7077] = 6995, + [7078] = 7078, + [7079] = 5151, + [7080] = 3215, + [7081] = 7081, + [7082] = 7082, + [7083] = 7083, + [7084] = 7084, + [7085] = 6664, + [7086] = 6791, + [7087] = 5153, + [7088] = 7088, + [7089] = 7089, + [7090] = 533, + [7091] = 2749, + [7092] = 7092, + [7093] = 7093, + [7094] = 7094, + [7095] = 7095, + [7096] = 7096, + [7097] = 7097, + [7098] = 7098, + [7099] = 7099, + [7100] = 7100, + [7101] = 6683, + [7102] = 6684, + [7103] = 550, + [7104] = 5159, + [7105] = 5160, + [7106] = 5161, + [7107] = 5162, + [7108] = 5165, + [7109] = 5168, + [7110] = 5171, + [7111] = 5174, + [7112] = 559, + [7113] = 560, + [7114] = 6685, + [7115] = 7115, + [7116] = 6686, + [7117] = 6687, + [7118] = 6660, + [7119] = 6663, + [7120] = 6659, + [7121] = 378, + [7122] = 6768, + [7123] = 7123, + [7124] = 7124, + [7125] = 3408, + [7126] = 3500, + [7127] = 7127, + [7128] = 6662, + [7129] = 6664, + [7130] = 1692, + [7131] = 7131, + [7132] = 6845, + [7133] = 549, + [7134] = 548, + [7135] = 378, + [7136] = 7136, + [7137] = 6683, + [7138] = 7138, + [7139] = 555, + [7140] = 7140, + [7141] = 160, + [7142] = 159, + [7143] = 536, + [7144] = 6850, + [7145] = 7145, + [7146] = 7146, + [7147] = 6671, + [7148] = 3387, + [7149] = 7149, + [7150] = 379, + [7151] = 7151, + [7152] = 7152, + [7153] = 6662, + [7154] = 6662, + [7155] = 7155, [7156] = 7156, - [7157] = 669, - [7158] = 6369, - [7159] = 381, - [7160] = 610, - [7161] = 381, - [7162] = 4630, - [7163] = 3063, - [7164] = 7034, + [7157] = 7157, + [7158] = 7158, + [7159] = 6659, + [7160] = 7160, + [7161] = 5181, + [7162] = 7162, + [7163] = 7163, + [7164] = 3388, [7165] = 7165, - [7166] = 651, - [7167] = 613, - [7168] = 621, - [7169] = 6746, - [7170] = 614, - [7171] = 616, - [7172] = 6366, - [7173] = 652, - [7174] = 6338, - [7175] = 6256, - [7176] = 643, - [7177] = 644, - [7178] = 6669, - [7179] = 6565, - [7180] = 6824, - [7181] = 6278, - [7182] = 617, - [7183] = 634, - [7184] = 618, - [7185] = 6387, - [7186] = 6824, - [7187] = 6826, - [7188] = 6827, - [7189] = 6671, - [7190] = 6725, - [7191] = 6730, - [7192] = 7192, - [7193] = 6731, - [7194] = 6718, - [7195] = 6719, - [7196] = 4733, - [7197] = 3066, - [7198] = 1666, - [7199] = 559, - [7200] = 6847, - [7201] = 2990, - [7202] = 7202, - [7203] = 6769, - [7204] = 662, - [7205] = 545, - [7206] = 634, + [7166] = 7166, + [7167] = 381, + [7168] = 7076, + [7169] = 6663, + [7170] = 368, + [7171] = 6683, + [7172] = 7172, + [7173] = 7173, + [7174] = 7174, + [7175] = 217, + [7176] = 382, + [7177] = 6684, + [7178] = 5191, + [7179] = 6685, + [7180] = 6686, + [7181] = 7181, + [7182] = 6687, + [7183] = 6660, + [7184] = 6663, + [7185] = 554, + [7186] = 6659, + [7187] = 7187, + [7188] = 7188, + [7189] = 7189, + [7190] = 5194, + [7191] = 6845, + [7192] = 5199, + [7193] = 6683, + [7194] = 5202, + [7195] = 5203, + [7196] = 1705, + [7197] = 5204, + [7198] = 5205, + [7199] = 6662, + [7200] = 7200, + [7201] = 1731, + [7202] = 360, + [7203] = 5211, + [7204] = 5213, + [7205] = 5231, + [7206] = 6664, [7207] = 7207, - [7208] = 7208, - [7209] = 7209, - [7210] = 382, - [7211] = 6848, + [7208] = 5234, + [7209] = 5235, + [7210] = 5236, + [7211] = 7211, [7212] = 7212, - [7213] = 6818, - [7214] = 653, - [7215] = 7215, - [7216] = 630, - [7217] = 631, - [7218] = 645, - [7219] = 7219, - [7220] = 7215, + [7213] = 5245, + [7214] = 5250, + [7215] = 5252, + [7216] = 561, + [7217] = 7217, + [7218] = 5270, + [7219] = 5271, + [7220] = 5272, [7221] = 7221, - [7222] = 7222, - [7223] = 6344, - [7224] = 655, - [7225] = 384, - [7226] = 6958, - [7227] = 7227, - [7228] = 6842, - [7229] = 7229, - [7230] = 7230, - [7231] = 4677, + [7222] = 6671, + [7223] = 5274, + [7224] = 5277, + [7225] = 5280, + [7226] = 6686, + [7227] = 6659, + [7228] = 5289, + [7229] = 5297, + [7230] = 5298, + [7231] = 7231, [7232] = 7232, - [7233] = 6807, - [7234] = 7234, - [7235] = 4678, - [7236] = 686, - [7237] = 687, - [7238] = 3143, - [7239] = 6874, - [7240] = 688, - [7241] = 7241, - [7242] = 7222, - [7243] = 6887, - [7244] = 670, - [7245] = 7245, - [7246] = 6457, - [7247] = 6850, - [7248] = 7248, - [7249] = 6459, - [7250] = 2991, - [7251] = 6847, - [7252] = 6475, - [7253] = 622, - [7254] = 623, - [7255] = 6478, - [7256] = 6481, - [7257] = 1668, - [7258] = 6848, + [7233] = 5299, + [7234] = 5300, + [7235] = 5301, + [7236] = 6801, + [7237] = 7237, + [7238] = 5302, + [7239] = 5309, + [7240] = 5310, + [7241] = 6788, + [7242] = 7242, + [7243] = 2745, + [7244] = 7244, + [7245] = 1692, + [7246] = 537, + [7247] = 7247, + [7248] = 6683, + [7249] = 6684, + [7250] = 6685, + [7251] = 6686, + [7252] = 6687, + [7253] = 6660, + [7254] = 6663, + [7255] = 6659, + [7256] = 6687, + [7257] = 6662, + [7258] = 7258, [7259] = 7259, - [7260] = 7260, - [7261] = 6297, - [7262] = 6850, - [7263] = 6656, + [7260] = 6820, + [7261] = 6870, + [7262] = 6662, + [7263] = 6684, [7264] = 7264, - [7265] = 7202, - [7266] = 6252, - [7267] = 6658, - [7268] = 7215, - [7269] = 6821, - [7270] = 6822, - [7271] = 6823, - [7272] = 6958, - [7273] = 1666, - [7274] = 7232, - [7275] = 7234, - [7276] = 7202, - [7277] = 7277, - [7278] = 3150, - [7279] = 6874, - [7280] = 677, - [7281] = 6835, - [7282] = 7282, - [7283] = 205, - [7284] = 6824, - [7285] = 6284, - [7286] = 642, - [7287] = 694, - [7288] = 6826, - [7289] = 6827, - [7290] = 663, - [7291] = 6819, - [7292] = 6744, - [7293] = 562, - [7294] = 6821, - [7295] = 7295, - [7296] = 7113, - [7297] = 7232, - [7298] = 7202, - [7299] = 6659, - [7300] = 6822, - [7301] = 7215, - [7302] = 6662, - [7303] = 7303, - [7304] = 6663, - [7305] = 6958, - [7306] = 7232, - [7307] = 7234, - [7308] = 6874, - [7309] = 3093, - [7310] = 7202, - [7311] = 7142, - [7312] = 7215, - [7313] = 589, - [7314] = 6958, - [7315] = 7232, - [7316] = 5401, - [7317] = 7234, - [7318] = 6874, - [7319] = 7202, - [7320] = 7215, - [7321] = 1626, + [7265] = 6664, + [7266] = 7266, + [7267] = 7267, + [7268] = 6685, + [7269] = 6686, + [7270] = 450, + [7271] = 7271, + [7272] = 7272, + [7273] = 7273, + [7274] = 7274, + [7275] = 7212, + [7276] = 7181, + [7277] = 7050, + [7278] = 7165, + [7279] = 6850, + [7280] = 7280, + [7281] = 7272, + [7282] = 369, + [7283] = 6671, + [7284] = 161, + [7285] = 6439, + [7286] = 7272, + [7287] = 7212, + [7288] = 7181, + [7289] = 7050, + [7290] = 7290, + [7291] = 7291, + [7292] = 6671, + [7293] = 6795, + [7294] = 554, + [7295] = 547, + [7296] = 557, + [7297] = 6664, + [7298] = 6683, + [7299] = 558, + [7300] = 6684, + [7301] = 6685, + [7302] = 2751, + [7303] = 6686, + [7304] = 7274, + [7305] = 2748, + [7306] = 6687, + [7307] = 7307, + [7308] = 7053, + [7309] = 6660, + [7310] = 6671, + [7311] = 677, + [7312] = 5029, + [7313] = 6792, + [7314] = 360, + [7315] = 7315, + [7316] = 6796, + [7317] = 7317, + [7318] = 675, + [7319] = 7319, + [7320] = 555, + [7321] = 7321, [7322] = 7322, - [7323] = 6958, - [7324] = 7232, - [7325] = 5414, - [7326] = 7234, - [7327] = 6874, - [7328] = 7202, - [7329] = 6747, - [7330] = 6935, - [7331] = 7215, - [7332] = 7212, - [7333] = 6958, - [7334] = 7232, - [7335] = 7234, - [7336] = 6874, - [7337] = 7202, - [7338] = 6754, - [7339] = 7192, - [7340] = 7215, - [7341] = 6958, - [7342] = 7232, - [7343] = 7234, - [7344] = 6874, - [7345] = 7202, - [7346] = 6757, - [7347] = 7215, - [7348] = 6857, - [7349] = 3151, - [7350] = 6958, - [7351] = 7232, - [7352] = 7234, - [7353] = 6874, - [7354] = 7202, - [7355] = 7215, - [7356] = 6958, - [7357] = 7232, - [7358] = 534, - [7359] = 7234, - [7360] = 6874, - [7361] = 7202, + [7323] = 6889, + [7324] = 636, + [7325] = 7325, + [7326] = 536, + [7327] = 6798, + [7328] = 7328, + [7329] = 7329, + [7330] = 7330, + [7331] = 7062, + [7332] = 7332, + [7333] = 631, + [7334] = 7334, + [7335] = 7335, + [7336] = 624, + [7337] = 632, + [7338] = 7338, + [7339] = 633, + [7340] = 670, + [7341] = 7341, + [7342] = 6800, + [7343] = 7343, + [7344] = 6803, + [7345] = 7315, + [7346] = 7200, + [7347] = 7321, + [7348] = 7321, + [7349] = 7322, + [7350] = 7325, + [7351] = 6814, + [7352] = 7352, + [7353] = 7328, + [7354] = 7329, + [7355] = 7330, + [7356] = 7356, + [7357] = 7332, + [7358] = 7334, + [7359] = 7335, + [7360] = 7360, + [7361] = 7338, [7362] = 7362, - [7363] = 7215, - [7364] = 6958, - [7365] = 7232, - [7366] = 7234, - [7367] = 6874, - [7368] = 7202, - [7369] = 6823, - [7370] = 7215, - [7371] = 3152, - [7372] = 6958, - [7373] = 7232, - [7374] = 6802, - [7375] = 7234, - [7376] = 6874, - [7377] = 7202, - [7378] = 7215, - [7379] = 7234, - [7380] = 6958, - [7381] = 7232, - [7382] = 7234, - [7383] = 6874, - [7384] = 7202, - [7385] = 7385, - [7386] = 7215, - [7387] = 559, - [7388] = 6958, - [7389] = 7232, - [7390] = 7234, - [7391] = 6874, - [7392] = 7202, - [7393] = 7215, - [7394] = 6958, - [7395] = 7232, - [7396] = 7396, - [7397] = 7234, - [7398] = 6874, - [7399] = 7202, - [7400] = 7215, - [7401] = 664, - [7402] = 6958, - [7403] = 7232, - [7404] = 7234, - [7405] = 6874, - [7406] = 7202, - [7407] = 7215, - [7408] = 6958, - [7409] = 7232, - [7410] = 7234, - [7411] = 6874, - [7412] = 7202, - [7413] = 7215, - [7414] = 639, - [7415] = 6958, - [7416] = 7232, - [7417] = 7234, - [7418] = 6874, - [7419] = 7202, - [7420] = 7215, - [7421] = 6958, - [7422] = 7232, - [7423] = 7234, - [7424] = 6874, - [7425] = 665, - [7426] = 7208, - [7427] = 6745, - [7428] = 6893, - [7429] = 6842, - [7430] = 6280, - [7431] = 6810, - [7432] = 667, - [7433] = 7259, - [7434] = 7260, - [7435] = 6821, - [7436] = 6822, - [7437] = 6823, - [7438] = 1584, - [7439] = 6847, - [7440] = 6848, - [7441] = 6689, - [7442] = 7442, - [7443] = 7443, - [7444] = 6736, - [7445] = 658, - [7446] = 545, - [7447] = 1696, - [7448] = 6850, - [7449] = 659, - [7450] = 561, - [7451] = 562, - [7452] = 6692, - [7453] = 7209, - [7454] = 6815, - [7455] = 4695, + [7363] = 7363, + [7364] = 6815, + [7365] = 7365, + [7366] = 7366, + [7367] = 7367, + [7368] = 6817, + [7369] = 6821, + [7370] = 7123, + [7371] = 7315, + [7372] = 634, + [7373] = 6693, + [7374] = 7140, + [7375] = 7152, + [7376] = 7155, + [7377] = 7156, + [7378] = 7322, + [7379] = 7328, + [7380] = 7325, + [7381] = 7157, + [7382] = 7328, + [7383] = 7329, + [7384] = 7330, + [7385] = 7332, + [7386] = 623, + [7387] = 7334, + [7388] = 7335, + [7389] = 7315, + [7390] = 7338, + [7391] = 7158, + [7392] = 7160, + [7393] = 6825, + [7394] = 3220, + [7395] = 7056, + [7396] = 7315, + [7397] = 378, + [7398] = 7066, + [7399] = 3216, + [7400] = 635, + [7401] = 7322, + [7402] = 6827, + [7403] = 7325, + [7404] = 7328, + [7405] = 7329, + [7406] = 7330, + [7407] = 7332, + [7408] = 7334, + [7409] = 7335, + [7410] = 7338, + [7411] = 7411, + [7412] = 7412, + [7413] = 3278, + [7414] = 7414, + [7415] = 379, + [7416] = 7244, + [7417] = 3148, + [7418] = 6713, + [7419] = 7315, + [7420] = 3100, + [7421] = 7421, + [7422] = 608, + [7423] = 7338, + [7424] = 654, + [7425] = 381, + [7426] = 669, + [7427] = 7322, + [7428] = 382, + [7429] = 645, + [7430] = 7325, + [7431] = 6851, + [7432] = 6852, + [7433] = 6733, + [7434] = 7328, + [7435] = 7329, + [7436] = 7330, + [7437] = 7081, + [7438] = 7332, + [7439] = 7334, + [7440] = 7335, + [7441] = 7338, + [7442] = 6771, + [7443] = 7321, + [7444] = 369, + [7445] = 7445, + [7446] = 7446, + [7447] = 678, + [7448] = 7315, + [7449] = 7068, + [7450] = 679, + [7451] = 7451, + [7452] = 7322, + [7453] = 7453, + [7454] = 7322, + [7455] = 7070, [7456] = 7456, - [7457] = 7457, + [7457] = 7325, [7458] = 7458, - [7459] = 7459, - [7460] = 7460, - [7461] = 4928, - [7462] = 7462, - [7463] = 7463, - [7464] = 2615, - [7465] = 7465, - [7466] = 7466, - [7467] = 7467, - [7468] = 7468, - [7469] = 7459, - [7470] = 7470, - [7471] = 7471, - [7472] = 661, - [7473] = 3633, + [7459] = 691, + [7460] = 7328, + [7461] = 7329, + [7462] = 7330, + [7463] = 7071, + [7464] = 7332, + [7465] = 7334, + [7466] = 7335, + [7467] = 7338, + [7468] = 6840, + [7469] = 2746, + [7470] = 652, + [7471] = 7232, + [7472] = 7315, + [7473] = 6861, [7474] = 7474, - [7475] = 7475, - [7476] = 4930, - [7477] = 7477, - [7478] = 7478, - [7479] = 7479, - [7480] = 7480, - [7481] = 7481, - [7482] = 7482, - [7483] = 7483, - [7484] = 7484, - [7485] = 7485, - [7486] = 7486, + [7475] = 7352, + [7476] = 7322, + [7477] = 527, + [7478] = 7325, + [7479] = 687, + [7480] = 7280, + [7481] = 7328, + [7482] = 7329, + [7483] = 7330, + [7484] = 7332, + [7485] = 7334, + [7486] = 7335, [7487] = 7487, - [7488] = 1838, - [7489] = 7489, - [7490] = 7457, - [7491] = 2653, - [7492] = 7458, - [7493] = 7493, - [7494] = 7494, + [7488] = 7338, + [7489] = 7072, + [7490] = 7073, + [7491] = 7491, + [7492] = 7145, + [7493] = 7315, + [7494] = 7315, [7495] = 7495, [7496] = 7496, - [7497] = 534, - [7498] = 7498, - [7499] = 7499, - [7500] = 7500, - [7501] = 7501, - [7502] = 7502, - [7503] = 7503, - [7504] = 7486, - [7505] = 534, - [7506] = 2643, - [7507] = 7507, - [7508] = 3627, - [7509] = 7482, - [7510] = 2611, - [7511] = 7483, - [7512] = 7512, - [7513] = 7465, - [7514] = 7514, - [7515] = 3063, - [7516] = 7516, - [7517] = 1668, - [7518] = 7518, - [7519] = 7519, - [7520] = 7520, - [7521] = 7521, - [7522] = 7474, - [7523] = 649, - [7524] = 7466, - [7525] = 7525, - [7526] = 7526, - [7527] = 7527, - [7528] = 7528, - [7529] = 545, - [7530] = 7530, - [7531] = 1666, - [7532] = 7532, - [7533] = 7456, + [7497] = 7325, + [7498] = 7322, + [7499] = 7291, + [7500] = 7325, + [7501] = 537, + [7502] = 7328, + [7503] = 7329, + [7504] = 7330, + [7505] = 7505, + [7506] = 7332, + [7507] = 5694, + [7508] = 7334, + [7509] = 7335, + [7510] = 7510, + [7511] = 7338, + [7512] = 3288, + [7513] = 3289, + [7514] = 7207, + [7515] = 6692, + [7516] = 6699, + [7517] = 7237, + [7518] = 7242, + [7519] = 7074, + [7520] = 7315, + [7521] = 7321, + [7522] = 7322, + [7523] = 7325, + [7524] = 7322, + [7525] = 7328, + [7526] = 7329, + [7527] = 7330, + [7528] = 7247, + [7529] = 7332, + [7530] = 687, + [7531] = 7334, + [7532] = 7335, + [7533] = 7325, [7534] = 7534, - [7535] = 7478, - [7536] = 561, - [7537] = 562, - [7538] = 7538, - [7539] = 7539, - [7540] = 7540, - [7541] = 4896, - [7542] = 7542, - [7543] = 7543, - [7544] = 7465, - [7545] = 7545, - [7546] = 7546, - [7547] = 559, - [7548] = 7548, - [7549] = 1668, - [7550] = 2642, - [7551] = 7480, - [7552] = 7494, - [7553] = 2636, - [7554] = 7466, - [7555] = 7540, - [7556] = 3066, - [7557] = 7495, - [7558] = 3608, - [7559] = 7487, - [7560] = 7496, - [7561] = 7561, - [7562] = 561, - [7563] = 562, - [7564] = 7470, - [7565] = 7565, - [7566] = 7498, - [7567] = 7539, - [7568] = 7568, - [7569] = 7569, - [7570] = 7519, - [7571] = 4999, - [7572] = 7572, - [7573] = 7489, - [7574] = 7527, - [7575] = 7493, - [7576] = 7576, - [7577] = 7457, - [7578] = 7458, - [7579] = 7539, - [7580] = 7580, - [7581] = 7581, - [7582] = 7582, - [7583] = 3093, - [7584] = 7457, - [7585] = 7458, - [7586] = 7481, - [7587] = 7532, - [7588] = 3197, - [7589] = 656, - [7590] = 7538, - [7591] = 7591, - [7592] = 7465, - [7593] = 1696, - [7594] = 7548, - [7595] = 7466, - [7596] = 7596, - [7597] = 7499, - [7598] = 1666, - [7599] = 4643, - [7600] = 7600, - [7601] = 7500, - [7602] = 2118, - [7603] = 7514, - [7604] = 7604, - [7605] = 3191, - [7606] = 4968, - [7607] = 4798, - [7608] = 7608, - [7609] = 7543, - [7610] = 7610, - [7611] = 7611, - [7612] = 7518, - [7613] = 7539, - [7614] = 7460, - [7615] = 666, - [7616] = 7538, - [7617] = 7617, - [7618] = 2641, - [7619] = 7619, - [7620] = 7501, - [7621] = 7539, - [7622] = 7457, - [7623] = 7502, - [7624] = 7458, - [7625] = 7538, - [7626] = 7626, - [7627] = 7482, - [7628] = 7475, - [7629] = 5500, - [7630] = 7538, - [7631] = 7548, - [7632] = 7463, - [7633] = 4659, + [7535] = 7338, + [7536] = 7082, + [7537] = 658, + [7538] = 3290, + [7539] = 3269, + [7540] = 3270, + [7541] = 7258, + [7542] = 7315, + [7543] = 3271, + [7544] = 7083, + [7545] = 7149, + [7546] = 7322, + [7547] = 3273, + [7548] = 7325, + [7549] = 655, + [7550] = 7328, + [7551] = 7329, + [7552] = 7330, + [7553] = 2745, + [7554] = 7332, + [7555] = 7555, + [7556] = 7334, + [7557] = 7335, + [7558] = 7259, + [7559] = 7338, + [7560] = 656, + [7561] = 657, + [7562] = 7562, + [7563] = 7356, + [7564] = 3167, + [7565] = 637, + [7566] = 638, + [7567] = 639, + [7568] = 7315, + [7569] = 7084, + [7570] = 7088, + [7571] = 7089, + [7572] = 7322, + [7573] = 7092, + [7574] = 7325, + [7575] = 7093, + [7576] = 7328, + [7577] = 7329, + [7578] = 7330, + [7579] = 7332, + [7580] = 5695, + [7581] = 7334, + [7582] = 7335, + [7583] = 7338, + [7584] = 7584, + [7585] = 1692, + [7586] = 7094, + [7587] = 7329, + [7588] = 6886, + [7589] = 7328, + [7590] = 7329, + [7591] = 7330, + [7592] = 7325, + [7593] = 7367, + [7594] = 7095, + [7595] = 7328, + [7596] = 7329, + [7597] = 7330, + [7598] = 7332, + [7599] = 7096, + [7600] = 7334, + [7601] = 7335, + [7602] = 6712, + [7603] = 7338, + [7604] = 7097, + [7605] = 7325, + [7606] = 7328, + [7607] = 7329, + [7608] = 7330, + [7609] = 7332, + [7610] = 7098, + [7611] = 7334, + [7612] = 7335, + [7613] = 7613, + [7614] = 6725, + [7615] = 7338, + [7616] = 6702, + [7617] = 549, + [7618] = 203, + [7619] = 7099, + [7620] = 7325, + [7621] = 7100, + [7622] = 7328, + [7623] = 7329, + [7624] = 7330, + [7625] = 7332, + [7626] = 7264, + [7627] = 7334, + [7628] = 7335, + [7629] = 6723, + [7630] = 7338, + [7631] = 555, + [7632] = 536, + [7633] = 7505, [7634] = 7634, - [7635] = 7467, - [7636] = 7538, - [7637] = 7477, - [7638] = 7512, - [7639] = 7639, - [7640] = 7640, - [7641] = 4805, - [7642] = 7642, - [7643] = 7546, - [7644] = 7644, - [7645] = 7543, - [7646] = 7582, - [7647] = 7640, + [7635] = 7271, + [7636] = 3230, + [7637] = 7637, + [7638] = 7534, + [7639] = 7584, + [7640] = 7332, + [7641] = 7334, + [7642] = 7335, + [7643] = 7341, + [7644] = 7343, + [7645] = 7124, + [7646] = 5032, + [7647] = 622, [7648] = 7648, - [7649] = 7649, - [7650] = 647, - [7651] = 7485, - [7652] = 7465, - [7653] = 7520, - [7654] = 7654, - [7655] = 7521, - [7656] = 7483, - [7657] = 559, - [7658] = 5006, - [7659] = 7604, - [7660] = 7611, - [7661] = 7462, - [7662] = 545, - [7663] = 7663, - [7664] = 3612, - [7665] = 7665, - [7666] = 7561, - [7667] = 7648, - [7668] = 671, - [7669] = 7479, + [7649] = 7319, + [7650] = 7211, + [7651] = 7328, + [7652] = 7329, + [7653] = 6700, + [7654] = 6701, + [7655] = 7330, + [7656] = 7315, + [7657] = 6872, + [7658] = 7658, + [7659] = 7659, + [7660] = 7231, + [7661] = 549, + [7662] = 7662, + [7663] = 527, + [7664] = 7664, + [7665] = 6753, + [7666] = 7666, + [7667] = 7667, + [7668] = 2748, + [7669] = 6873, [7670] = 7670, - [7671] = 7465, - [7672] = 7569, - [7673] = 7673, - [7674] = 7619, - [7675] = 7457, - [7676] = 7626, - [7677] = 7458, - [7678] = 1696, - [7679] = 7466, - [7680] = 7649, - [7681] = 7681, - [7682] = 7465, - [7683] = 7466, - [7684] = 7654, - [7685] = 7685, - [7686] = 7475, - [7687] = 7477, - [7688] = 7572, - [7689] = 7466, - [7690] = 7690, - [7691] = 7576, - [7692] = 7617, - [7693] = 7693, - [7694] = 7670, - [7695] = 7600, - [7696] = 7528, - [7697] = 7673, - [7698] = 7693, - [7699] = 3610, - [7700] = 7700, + [7671] = 6866, + [7672] = 7338, + [7673] = 6661, + [7674] = 7674, + [7675] = 7675, + [7676] = 666, + [7677] = 2749, + [7678] = 7138, + [7679] = 7078, + [7680] = 6726, + [7681] = 7146, + [7682] = 6724, + [7683] = 6730, + [7684] = 3201, + [7685] = 7131, + [7686] = 6755, + [7687] = 6758, + [7688] = 648, + [7689] = 6759, + [7690] = 7495, + [7691] = 7691, + [7692] = 7692, + [7693] = 7341, + [7694] = 7048, + [7695] = 7343, + [7696] = 3215, + [7697] = 6999, + [7698] = 2727, + [7699] = 2728, + [7700] = 6921, [7701] = 7701, - [7702] = 534, - [7703] = 7703, - [7704] = 206, - [7705] = 3056, - [7706] = 7706, - [7707] = 7545, - [7708] = 3053, - [7709] = 7538, - [7710] = 7457, - [7711] = 7458, - [7712] = 7712, - [7713] = 7713, - [7714] = 7714, - [7715] = 7715, + [7702] = 611, + [7703] = 612, + [7704] = 1618, + [7705] = 6728, + [7706] = 1692, + [7707] = 6678, + [7708] = 7059, + [7709] = 613, + [7710] = 7496, + [7711] = 614, + [7712] = 615, + [7713] = 7352, + [7714] = 7356, + [7715] = 7637, [7716] = 7716, - [7717] = 7717, - [7718] = 7718, - [7719] = 7713, - [7720] = 7720, - [7721] = 7721, - [7722] = 2636, + [7717] = 7360, + [7718] = 616, + [7719] = 7719, + [7720] = 7363, + [7721] = 7360, + [7722] = 7722, [7723] = 7723, - [7724] = 2615, - [7725] = 7714, + [7724] = 7322, + [7725] = 7325, [7726] = 7726, - [7727] = 7713, - [7728] = 7715, - [7729] = 7729, - [7730] = 7730, - [7731] = 7714, - [7732] = 7732, - [7733] = 7733, - [7734] = 7714, + [7727] = 7365, + [7728] = 7367, + [7729] = 7716, + [7730] = 1705, + [7731] = 7719, + [7732] = 7534, + [7733] = 6752, + [7734] = 7734, [7735] = 7735, - [7736] = 7736, - [7737] = 7737, - [7738] = 7713, - [7739] = 7739, - [7740] = 7714, - [7741] = 7715, - [7742] = 7742, - [7743] = 7743, - [7744] = 7744, - [7745] = 7745, + [7736] = 6971, + [7737] = 7411, + [7738] = 6681, + [7739] = 7332, + [7740] = 6963, + [7741] = 7187, + [7742] = 7334, + [7743] = 7734, + [7744] = 7335, + [7745] = 7634, [7746] = 7746, - [7747] = 7747, - [7748] = 468, - [7749] = 7715, - [7750] = 2642, - [7751] = 7751, - [7752] = 7752, - [7753] = 7714, - [7754] = 7726, - [7755] = 7755, + [7747] = 7007, + [7748] = 7334, + [7749] = 668, + [7750] = 7151, + [7751] = 649, + [7752] = 7217, + [7753] = 7363, + [7754] = 3283, + [7755] = 7453, [7756] = 7756, [7757] = 7757, - [7758] = 7758, - [7759] = 7759, - [7760] = 7714, - [7761] = 7714, - [7762] = 7714, - [7763] = 7714, - [7764] = 7735, - [7765] = 7755, + [7758] = 3284, + [7759] = 7335, + [7760] = 7760, + [7761] = 7761, + [7762] = 7162, + [7763] = 7221, + [7764] = 617, + [7765] = 537, [7766] = 7756, - [7767] = 7747, - [7768] = 7759, - [7769] = 7714, - [7770] = 7770, - [7771] = 7771, - [7772] = 7772, - [7773] = 7716, - [7774] = 7774, - [7775] = 7735, - [7776] = 7776, - [7777] = 7777, - [7778] = 7721, - [7779] = 7779, - [7780] = 7755, - [7781] = 7745, - [7782] = 7714, - [7783] = 7779, - [7784] = 7776, + [7767] = 7767, + [7768] = 7768, + [7769] = 618, + [7770] = 619, + [7771] = 7735, + [7772] = 620, + [7773] = 7330, + [7774] = 7166, + [7775] = 4993, + [7776] = 1629, + [7777] = 6869, + [7778] = 3285, + [7779] = 1618, + [7780] = 6682, + [7781] = 7781, + [7782] = 2751, + [7783] = 4994, + [7784] = 1731, [7785] = 7785, - [7786] = 7777, - [7787] = 7779, - [7788] = 7755, - [7789] = 7721, - [7790] = 7790, - [7791] = 7776, - [7792] = 7736, - [7793] = 7759, - [7794] = 7755, - [7795] = 7714, - [7796] = 7777, - [7797] = 7779, - [7798] = 7715, - [7799] = 7774, - [7800] = 7755, - [7801] = 7735, - [7802] = 7714, - [7803] = 7713, - [7804] = 7804, - [7805] = 7747, - [7806] = 7714, - [7807] = 7807, - [7808] = 7718, - [7809] = 7713, - [7810] = 7713, - [7811] = 7721, - [7812] = 7812, - [7813] = 7714, - [7814] = 7814, - [7815] = 7713, - [7816] = 7759, - [7817] = 7735, - [7818] = 7818, - [7819] = 7714, - [7820] = 469, - [7821] = 7755, - [7822] = 7721, - [7823] = 7714, - [7824] = 7714, - [7825] = 7825, - [7826] = 7714, - [7827] = 7825, - [7828] = 7701, - [7829] = 7756, - [7830] = 7737, - [7831] = 7713, - [7832] = 7739, - [7833] = 7747, - [7834] = 7834, - [7835] = 7744, - [7836] = 7723, - [7837] = 7714, - [7838] = 7732, - [7839] = 7839, - [7840] = 7840, - [7841] = 7729, - [7842] = 7834, - [7843] = 7714, - [7844] = 7735, - [7845] = 7714, - [7846] = 7777, - [7847] = 7714, - [7848] = 7743, - [7849] = 7849, - [7850] = 7747, - [7851] = 7851, - [7852] = 7714, - [7853] = 7714, - [7854] = 7723, - [7855] = 7855, - [7856] = 7770, - [7857] = 7759, - [7858] = 7714, - [7859] = 7770, - [7860] = 7714, - [7861] = 7747, - [7862] = 7735, - [7863] = 7770, - [7864] = 7735, - [7865] = 7804, - [7866] = 7735, - [7867] = 7776, - [7868] = 7807, - [7869] = 7721, - [7870] = 7714, - [7871] = 7747, - [7872] = 7759, - [7873] = 7776, - [7874] = 7770, - [7875] = 7875, - [7876] = 7755, + [7786] = 7786, + [7787] = 7064, + [7788] = 690, + [7789] = 7365, + [7790] = 7315, + [7791] = 7701, + [7792] = 7716, + [7793] = 7793, + [7794] = 1692, + [7795] = 7734, + [7796] = 7453, + [7797] = 7757, + [7798] = 7798, + [7799] = 7321, + [7800] = 7756, + [7801] = 7801, + [7802] = 7723, + [7803] = 537, + [7804] = 7322, + [7805] = 555, + [7806] = 7757, + [7807] = 7325, + [7808] = 1629, + [7809] = 3147, + [7810] = 368, + [7811] = 7584, + [7812] = 6691, + [7813] = 7328, + [7814] = 7329, + [7815] = 7330, + [7816] = 7701, + [7817] = 7332, + [7818] = 7716, + [7819] = 7334, + [7820] = 7335, + [7821] = 7734, + [7822] = 7453, + [7823] = 7757, + [7824] = 7756, + [7825] = 660, + [7826] = 7701, + [7827] = 7338, + [7828] = 621, + [7829] = 7716, + [7830] = 7734, + [7831] = 7453, + [7832] = 1731, + [7833] = 7757, + [7834] = 7756, + [7835] = 7701, + [7836] = 7836, + [7837] = 7716, + [7838] = 536, + [7839] = 665, + [7840] = 7734, + [7841] = 7453, + [7842] = 675, + [7843] = 7757, + [7844] = 7756, + [7845] = 7701, + [7846] = 7798, + [7847] = 7716, + [7848] = 7848, + [7849] = 7734, + [7850] = 7453, + [7851] = 640, + [7852] = 7757, + [7853] = 7756, + [7854] = 7701, + [7855] = 641, + [7856] = 642, + [7857] = 7716, + [7858] = 643, + [7859] = 644, + [7860] = 7734, + [7861] = 7453, + [7862] = 7757, + [7863] = 7756, + [7864] = 7701, + [7865] = 6967, + [7866] = 7716, + [7867] = 7701, + [7868] = 7734, + [7869] = 7453, + [7870] = 7757, + [7871] = 7756, + [7872] = 7701, + [7873] = 661, + [7874] = 7716, + [7875] = 7734, + [7876] = 7453, [7877] = 7877, - [7878] = 7714, - [7879] = 7777, - [7880] = 7779, - [7881] = 7714, - [7882] = 7755, - [7883] = 7735, - [7884] = 7747, - [7885] = 7744, - [7886] = 7721, - [7887] = 7804, - [7888] = 7714, - [7889] = 7807, - [7890] = 7776, - [7891] = 7736, - [7892] = 7713, - [7893] = 2641, - [7894] = 7721, - [7895] = 7714, - [7896] = 7737, - [7897] = 7897, + [7878] = 7757, + [7879] = 7756, + [7880] = 7701, + [7881] = 7881, + [7882] = 7716, + [7883] = 549, + [7884] = 7734, + [7885] = 7453, + [7886] = 646, + [7887] = 7757, + [7888] = 7756, + [7889] = 7701, + [7890] = 647, + [7891] = 7716, + [7892] = 6767, + [7893] = 6769, + [7894] = 7734, + [7895] = 7453, + [7896] = 7338, + [7897] = 7757, [7898] = 7756, - [7899] = 7899, - [7900] = 7774, - [7901] = 7804, - [7902] = 7807, - [7903] = 7747, - [7904] = 7904, - [7905] = 7714, - [7906] = 7737, - [7907] = 7714, - [7908] = 469, - [7909] = 7747, - [7910] = 7910, - [7911] = 7759, - [7912] = 7714, - [7913] = 7913, - [7914] = 7714, - [7915] = 7804, - [7916] = 7807, - [7917] = 7917, - [7918] = 7918, - [7919] = 7713, - [7920] = 7920, - [7921] = 7714, - [7922] = 7922, - [7923] = 7923, - [7924] = 7714, - [7925] = 7925, - [7926] = 7732, - [7927] = 7770, - [7928] = 7714, - [7929] = 7804, - [7930] = 7807, - [7931] = 7747, - [7932] = 7770, - [7933] = 7735, - [7934] = 7721, - [7935] = 7935, - [7936] = 7804, - [7937] = 7759, - [7938] = 7777, - [7939] = 7757, - [7940] = 7779, - [7941] = 7941, - [7942] = 7804, - [7943] = 7807, - [7944] = 7747, - [7945] = 7759, - [7946] = 7825, - [7947] = 7755, - [7948] = 7755, - [7949] = 7770, - [7950] = 7736, - [7951] = 7951, - [7952] = 7952, - [7953] = 7770, - [7954] = 7715, - [7955] = 7804, - [7956] = 7807, - [7957] = 7735, - [7958] = 7713, - [7959] = 7735, - [7960] = 7743, - [7961] = 7772, - [7962] = 7807, - [7963] = 7776, - [7964] = 7721, - [7965] = 7965, - [7966] = 7966, - [7967] = 7713, - [7968] = 7714, - [7969] = 7807, - [7970] = 7776, - [7971] = 7849, - [7972] = 7721, - [7973] = 7759, - [7974] = 7974, - [7975] = 7770, - [7976] = 7923, - [7977] = 7770, - [7978] = 7770, - [7979] = 7714, - [7980] = 7737, - [7981] = 7804, - [7982] = 7807, - [7983] = 7777, - [7984] = 7984, - [7985] = 7739, + [7899] = 7701, + [7900] = 6772, + [7901] = 202, + [7902] = 7716, + [7903] = 301, + [7904] = 6983, + [7905] = 7734, + [7906] = 7453, + [7907] = 7003, + [7908] = 7757, + [7909] = 7756, + [7910] = 7701, + [7911] = 6867, + [7912] = 7716, + [7913] = 7734, + [7914] = 7453, + [7915] = 7757, + [7916] = 7756, + [7917] = 7701, + [7918] = 7716, + [7919] = 7734, + [7920] = 7453, + [7921] = 7648, + [7922] = 7757, + [7923] = 7756, + [7924] = 7701, + [7925] = 7716, + [7926] = 7734, + [7927] = 7453, + [7928] = 7757, + [7929] = 7756, + [7930] = 7701, + [7931] = 7716, + [7932] = 7734, + [7933] = 7453, + [7934] = 6696, + [7935] = 7757, + [7936] = 7756, + [7937] = 7701, + [7938] = 7716, + [7939] = 7734, + [7940] = 7453, + [7941] = 7757, + [7942] = 7756, + [7943] = 7701, + [7944] = 7716, + [7945] = 7734, + [7946] = 7453, + [7947] = 7757, + [7948] = 7756, + [7949] = 606, + [7950] = 583, + [7951] = 7315, + [7952] = 6783, + [7953] = 6784, + [7954] = 7362, + [7955] = 7332, + [7956] = 7956, + [7957] = 7726, + [7958] = 7321, + [7959] = 563, + [7960] = 7322, + [7961] = 1705, + [7962] = 7962, + [7963] = 7325, + [7964] = 7848, + [7965] = 6786, + [7966] = 629, + [7967] = 630, + [7968] = 7328, + [7969] = 7329, + [7970] = 7330, + [7971] = 7584, + [7972] = 7332, + [7973] = 7973, + [7974] = 7334, + [7975] = 7335, + [7976] = 7338, + [7977] = 6865, + [7978] = 7978, + [7979] = 7979, + [7980] = 7980, + [7981] = 7981, + [7982] = 7982, + [7983] = 7983, + [7984] = 2215, + [7985] = 7985, [7986] = 7986, [7987] = 7987, - [7988] = 7737, - [7989] = 7714, - [7990] = 7855, - [7991] = 7714, - [7992] = 7770, - [7993] = 7735, - [7994] = 7804, - [7995] = 7807, - [7996] = 7721, + [7988] = 7988, + [7989] = 527, + [7990] = 381, + [7991] = 1692, + [7992] = 7992, + [7993] = 7993, + [7994] = 7994, + [7995] = 7995, + [7996] = 204, [7997] = 7997, - [7998] = 7877, - [7999] = 468, - [8000] = 7807, - [8001] = 7735, - [8002] = 8002, - [8003] = 468, - [8004] = 7737, + [7998] = 7998, + [7999] = 7999, + [8000] = 8000, + [8001] = 8001, + [8002] = 685, + [8003] = 8003, + [8004] = 8004, [8005] = 8005, - [8006] = 7925, - [8007] = 7804, - [8008] = 7807, - [8009] = 7755, - [8010] = 7735, - [8011] = 7770, - [8012] = 7735, - [8013] = 7777, - [8014] = 7723, - [8015] = 7714, - [8016] = 7779, - [8017] = 8017, - [8018] = 8018, - [8019] = 7729, - [8020] = 7804, - [8021] = 7807, - [8022] = 7779, - [8023] = 7755, - [8024] = 469, - [8025] = 7777, - [8026] = 8026, - [8027] = 7952, + [8006] = 8006, + [8007] = 8007, + [8008] = 8008, + [8009] = 8009, + [8010] = 537, + [8011] = 8011, + [8012] = 8012, + [8013] = 8013, + [8014] = 7997, + [8015] = 8015, + [8016] = 3353, + [8017] = 8012, + [8018] = 379, + [8019] = 8019, + [8020] = 2222, + [8021] = 3167, + [8022] = 3360, + [8023] = 8023, + [8024] = 382, + [8025] = 8025, + [8026] = 549, + [8027] = 3201, [8028] = 8028, - [8029] = 7779, - [8030] = 7804, - [8031] = 7807, - [8032] = 7812, - [8033] = 7834, - [8034] = 7777, - [8035] = 7755, - [8036] = 7737, + [8029] = 8029, + [8030] = 1705, + [8031] = 8031, + [8032] = 686, + [8033] = 8033, + [8034] = 8003, + [8035] = 8007, + [8036] = 549, [8037] = 8037, - [8038] = 7739, - [8039] = 7779, - [8040] = 7804, - [8041] = 7804, - [8042] = 7923, - [8043] = 7714, - [8044] = 7714, - [8045] = 7714, + [8038] = 8013, + [8039] = 7980, + [8040] = 7981, + [8041] = 8041, + [8042] = 8042, + [8043] = 8043, + [8044] = 8006, + [8045] = 8045, [8046] = 8046, - [8047] = 7770, - [8048] = 7735, - [8049] = 7804, - [8050] = 7721, - [8051] = 7772, - [8052] = 7755, - [8053] = 7776, - [8054] = 7755, - [8055] = 8055, - [8056] = 7736, - [8057] = 7747, - [8058] = 7804, - [8059] = 7735, - [8060] = 7759, - [8061] = 8026, - [8062] = 7770, - [8063] = 7735, - [8064] = 7747, + [8047] = 7982, + [8048] = 7983, + [8049] = 8049, + [8050] = 8050, + [8051] = 537, + [8052] = 7994, + [8053] = 689, + [8054] = 3215, + [8055] = 2209, + [8056] = 5115, + [8057] = 8057, + [8058] = 8058, + [8059] = 8033, + [8060] = 3220, + [8061] = 555, + [8062] = 8062, + [8063] = 536, + [8064] = 527, [8065] = 8065, - [8066] = 7776, - [8067] = 7804, - [8068] = 7804, - [8069] = 7804, - [8070] = 7804, - [8071] = 7804, - [8072] = 7804, - [8073] = 7804, - [8074] = 7804, - [8075] = 7804, - [8076] = 7804, - [8077] = 7804, - [8078] = 7804, - [8079] = 7804, - [8080] = 7804, - [8081] = 7804, - [8082] = 7804, - [8083] = 7804, - [8084] = 7804, - [8085] = 7804, - [8086] = 7804, - [8087] = 7804, - [8088] = 7804, - [8089] = 7804, - [8090] = 7804, - [8091] = 7804, - [8092] = 7804, - [8093] = 7804, - [8094] = 7804, - [8095] = 7804, - [8096] = 7804, - [8097] = 7804, - [8098] = 7759, - [8099] = 7714, - [8100] = 8028, - [8101] = 7744, - [8102] = 7721, - [8103] = 7770, - [8104] = 7735, - [8105] = 7772, - [8106] = 7735, - [8107] = 7776, - [8108] = 7721, - [8109] = 7735, + [8066] = 8066, + [8067] = 8050, + [8068] = 8042, + [8069] = 8069, + [8070] = 8070, + [8071] = 7980, + [8072] = 8072, + [8073] = 537, + [8074] = 8074, + [8075] = 8075, + [8076] = 8049, + [8077] = 8077, + [8078] = 8078, + [8079] = 8079, + [8080] = 8080, + [8081] = 8081, + [8082] = 7981, + [8083] = 7978, + [8084] = 2263, + [8085] = 8085, + [8086] = 8086, + [8087] = 8087, + [8088] = 8088, + [8089] = 2221, + [8090] = 8090, + [8091] = 7994, + [8092] = 8092, + [8093] = 8093, + [8094] = 8057, + [8095] = 8095, + [8096] = 8096, + [8097] = 3230, + [8098] = 8098, + [8099] = 8099, + [8100] = 8100, + [8101] = 4901, + [8102] = 8062, + [8103] = 8103, + [8104] = 8104, + [8105] = 1731, + [8106] = 8092, + [8107] = 8107, + [8108] = 8093, + [8109] = 8046, [8110] = 8110, - [8111] = 7776, - [8112] = 7717, - [8113] = 8113, - [8114] = 7732, - [8115] = 7974, + [8111] = 7981, + [8112] = 7982, + [8113] = 7983, + [8114] = 378, + [8115] = 1731, [8116] = 8116, - [8117] = 7715, - [8118] = 7747, - [8119] = 7737, - [8120] = 7941, - [8121] = 8002, - [8122] = 7713, - [8123] = 7759, - [8124] = 7729, - [8125] = 7777, - [8126] = 7777, - [8127] = 7756, - [8128] = 7744, - [8129] = 7779, - [8130] = 7737, - [8131] = 8116, - [8132] = 7746, - [8133] = 7714, - [8134] = 7758, - [8135] = 8028, - [8136] = 7772, - [8137] = 7923, - [8138] = 7735, - [8139] = 7770, - [8140] = 7777, - [8141] = 7779, - [8142] = 7755, - [8143] = 7735, - [8144] = 7925, - [8145] = 7779, - [8146] = 7743, - [8147] = 7917, - [8148] = 7776, - [8149] = 7736, - [8150] = 7755, - [8151] = 7715, - [8152] = 7770, - [8153] = 7735, - [8154] = 7777, - [8155] = 7736, - [8156] = 7755, - [8157] = 7736, + [8117] = 8095, + [8118] = 7979, + [8119] = 7994, + [8120] = 8057, + [8121] = 8011, + [8122] = 8098, + [8123] = 8012, + [8124] = 7998, + [8125] = 7978, + [8126] = 8126, + [8127] = 2264, + [8128] = 8103, + [8129] = 7962, + [8130] = 7994, + [8131] = 8066, + [8132] = 8132, + [8133] = 8133, + [8134] = 7994, + [8135] = 680, + [8136] = 8136, + [8137] = 8137, + [8138] = 1881, + [8139] = 7994, + [8140] = 8062, + [8141] = 8141, + [8142] = 8011, + [8143] = 8012, + [8144] = 7985, + [8145] = 8103, + [8146] = 8146, + [8147] = 7999, + [8148] = 8062, + [8149] = 8103, + [8150] = 8062, + [8151] = 7980, + [8152] = 8103, + [8153] = 7981, + [8154] = 8099, + [8155] = 8100, + [8156] = 8156, + [8157] = 8157, [8158] = 8158, - [8159] = 7779, - [8160] = 7755, - [8161] = 7755, - [8162] = 7736, + [8159] = 7980, + [8160] = 7981, + [8161] = 8126, + [8162] = 7995, [8163] = 8163, - [8164] = 7899, + [8164] = 8000, [8165] = 8165, - [8166] = 7715, - [8167] = 7721, - [8168] = 7736, - [8169] = 7812, - [8170] = 2653, - [8171] = 7776, - [8172] = 7721, - [8173] = 7715, - [8174] = 7804, - [8175] = 8175, + [8166] = 8166, + [8167] = 8167, + [8168] = 555, + [8169] = 7978, + [8170] = 8170, + [8171] = 1705, + [8172] = 8172, + [8173] = 8173, + [8174] = 681, + [8175] = 8001, + [8176] = 8005, + [8177] = 8177, + [8178] = 8137, + [8179] = 8179, + [8180] = 8090, + [8181] = 5012, + [8182] = 1692, + [8183] = 8028, + [8184] = 8062, + [8185] = 8103, + [8186] = 7988, + [8187] = 8187, + [8188] = 8165, + [8189] = 536, + [8190] = 8008, + [8191] = 8019, + [8192] = 8192, + [8193] = 8025, + [8194] = 7982, + [8195] = 8170, + [8196] = 7983, + [8197] = 8058, + [8198] = 8029, + [8199] = 684, + [8200] = 5139, + [8201] = 8062, + [8202] = 8103, + [8203] = 8104, + [8204] = 7978, + [8205] = 8037, + [8206] = 8008, + [8207] = 8057, + [8208] = 7980, + [8209] = 7981, + [8210] = 8116, + [8211] = 8187, + [8212] = 8177, + [8213] = 8011, + [8214] = 7986, + [8215] = 8031, + [8216] = 8107, + [8217] = 7987, + [8218] = 8072, + [8219] = 8136, + [8220] = 8156, + [8221] = 8166, + [8222] = 7992, + [8223] = 7980, + [8224] = 8224, + [8225] = 8225, + [8226] = 2746, + [8227] = 8227, + [8228] = 8228, + [8229] = 8229, + [8230] = 8230, + [8231] = 8231, + [8232] = 8232, + [8233] = 8233, + [8234] = 8230, + [8235] = 8235, + [8236] = 8236, + [8237] = 8237, + [8238] = 8224, + [8239] = 8239, + [8240] = 8240, + [8241] = 8241, + [8242] = 8242, + [8243] = 8225, + [8244] = 8244, + [8245] = 8225, + [8246] = 8246, + [8247] = 8247, + [8248] = 8248, + [8249] = 8249, + [8250] = 8225, + [8251] = 8227, + [8252] = 8252, + [8253] = 8231, + [8254] = 8235, + [8255] = 8237, + [8256] = 8252, + [8257] = 8257, + [8258] = 8224, + [8259] = 8259, + [8260] = 8225, + [8261] = 8227, + [8262] = 8262, + [8263] = 8262, + [8264] = 8264, + [8265] = 8228, + [8266] = 8231, + [8267] = 8267, + [8268] = 8235, + [8269] = 8225, + [8270] = 8225, + [8271] = 8271, + [8272] = 8272, + [8273] = 8273, + [8274] = 8274, + [8275] = 8225, + [8276] = 8257, + [8277] = 8252, + [8278] = 8158, + [8279] = 2751, + [8280] = 8237, + [8281] = 8224, + [8282] = 8282, + [8283] = 8237, + [8284] = 8225, + [8285] = 8227, + [8286] = 8252, + [8287] = 8228, + [8288] = 8288, + [8289] = 8289, + [8290] = 8231, + [8291] = 8235, + [8292] = 8292, + [8293] = 8237, + [8294] = 8294, + [8295] = 8224, + [8296] = 8230, + [8297] = 8231, + [8298] = 8298, + [8299] = 8235, + [8300] = 8300, + [8301] = 8249, + [8302] = 8302, + [8303] = 8225, + [8304] = 8262, + [8305] = 8305, + [8306] = 8225, + [8307] = 8292, + [8308] = 8308, + [8309] = 8309, + [8310] = 8310, + [8311] = 8235, + [8312] = 8242, + [8313] = 8230, + [8314] = 8262, + [8315] = 8292, + [8316] = 8248, + [8317] = 8225, + [8318] = 8225, + [8319] = 8228, + [8320] = 8320, + [8321] = 8246, + [8322] = 8272, + [8323] = 8259, + [8324] = 8227, + [8325] = 8259, + [8326] = 8252, + [8327] = 8239, + [8328] = 8225, + [8329] = 8329, + [8330] = 8292, + [8331] = 8230, + [8332] = 8252, + [8333] = 8292, + [8334] = 8334, + [8335] = 8239, + [8336] = 8259, + [8337] = 8230, + [8338] = 8230, + [8339] = 8259, + [8340] = 8239, + [8341] = 8239, + [8342] = 8262, + [8343] = 8343, + [8344] = 8227, + [8345] = 8309, + [8346] = 8259, + [8347] = 8225, + [8348] = 8348, + [8349] = 8349, + [8350] = 8292, + [8351] = 8351, + [8352] = 8352, + [8353] = 8320, + [8354] = 8225, + [8355] = 8329, + [8356] = 8356, + [8357] = 453, + [8358] = 8358, + [8359] = 8320, + [8360] = 8225, + [8361] = 8361, + [8362] = 8362, + [8363] = 8230, + [8364] = 8225, + [8365] = 8239, + [8366] = 8235, + [8367] = 8302, + [8368] = 8252, + [8369] = 8292, + [8370] = 8305, + [8371] = 8225, + [8372] = 8230, + [8373] = 8225, + [8374] = 8225, + [8375] = 8224, + [8376] = 8320, + [8377] = 8235, + [8378] = 8225, + [8379] = 8225, + [8380] = 8227, + [8381] = 8231, + [8382] = 8257, + [8383] = 8235, + [8384] = 8384, + [8385] = 8224, + [8386] = 8225, + [8387] = 8387, + [8388] = 8302, + [8389] = 2748, + [8390] = 8302, + [8391] = 8391, + [8392] = 8305, + [8393] = 8252, + [8394] = 8262, + [8395] = 8349, + [8396] = 8320, + [8397] = 8225, + [8398] = 8237, + [8399] = 8305, + [8400] = 8230, + [8401] = 8292, + [8402] = 8230, + [8403] = 8225, + [8404] = 8242, + [8405] = 8302, + [8406] = 8305, + [8407] = 8384, + [8408] = 8239, + [8409] = 8241, + [8410] = 8259, + [8411] = 8320, + [8412] = 8412, + [8413] = 8228, + [8414] = 8239, + [8415] = 8415, + [8416] = 8235, + [8417] = 8227, + [8418] = 8225, + [8419] = 8302, + [8420] = 8305, + [8421] = 8421, + [8422] = 8228, + [8423] = 2749, + [8424] = 8424, + [8425] = 8425, + [8426] = 8426, + [8427] = 8427, + [8428] = 8428, + [8429] = 8225, + [8430] = 8225, + [8431] = 8431, + [8432] = 8248, + [8433] = 8302, + [8434] = 8305, + [8435] = 8435, + [8436] = 8227, + [8437] = 8228, + [8438] = 8225, + [8439] = 8231, + [8440] = 8235, + [8441] = 8224, + [8442] = 8231, + [8443] = 8227, + [8444] = 8235, + [8445] = 8289, + [8446] = 8302, + [8447] = 8305, + [8448] = 8237, + [8449] = 8449, + [8450] = 8224, + [8451] = 8451, + [8452] = 8452, + [8453] = 8230, + [8454] = 8425, + [8455] = 8320, + [8456] = 8456, + [8457] = 8289, + [8458] = 8231, + [8459] = 8302, + [8460] = 8305, + [8461] = 8252, + [8462] = 8225, + [8463] = 8231, + [8464] = 8224, + [8465] = 8428, + [8466] = 8466, + [8467] = 454, + [8468] = 8228, + [8469] = 8320, + [8470] = 8257, + [8471] = 8289, + [8472] = 8302, + [8473] = 8305, + [8474] = 8252, + [8475] = 8249, + [8476] = 8292, + [8477] = 8292, + [8478] = 8478, + [8479] = 8225, + [8480] = 8230, + [8481] = 8329, + [8482] = 8320, + [8483] = 8320, + [8484] = 8235, + [8485] = 8302, + [8486] = 8305, + [8487] = 8239, + [8488] = 8225, + [8489] = 8489, + [8490] = 454, + [8491] = 8225, + [8492] = 8231, + [8493] = 8235, + [8494] = 8224, + [8495] = 8298, + [8496] = 8237, + [8497] = 8224, + [8498] = 8302, + [8499] = 8305, + [8500] = 8230, + [8501] = 8320, + [8502] = 8231, + [8503] = 8231, + [8504] = 8225, + [8505] = 8310, + [8506] = 8235, + [8507] = 8235, + [8508] = 8508, + [8509] = 8227, + [8510] = 8237, + [8511] = 8302, + [8512] = 8305, + [8513] = 8244, + [8514] = 8246, + [8515] = 8305, + [8516] = 8516, + [8517] = 8225, + [8518] = 8225, + [8519] = 8508, + [8520] = 8237, + [8521] = 8449, + [8522] = 8225, + [8523] = 8224, + [8524] = 8302, + [8525] = 8305, + [8526] = 8228, + [8527] = 8310, + [8528] = 8435, + [8529] = 8227, + [8530] = 8530, + [8531] = 8228, + [8532] = 8225, + [8533] = 8231, + [8534] = 8302, + [8535] = 8305, + [8536] = 8235, + [8537] = 8231, + [8538] = 453, + [8539] = 8225, + [8540] = 8233, + [8541] = 8227, + [8542] = 8230, + [8543] = 8543, + [8544] = 8302, + [8545] = 8246, + [8546] = 8225, + [8547] = 8228, + [8548] = 8548, + [8549] = 454, + [8550] = 8235, + [8551] = 8225, + [8552] = 8235, + [8553] = 8302, + [8554] = 8224, + [8555] = 453, + [8556] = 8289, + [8557] = 8557, + [8558] = 8237, + [8559] = 8231, + [8560] = 8560, + [8561] = 8272, + [8562] = 8302, + [8563] = 8252, + [8564] = 8560, + [8565] = 8235, + [8566] = 8224, + [8567] = 8231, + [8568] = 8237, + [8569] = 8225, + [8570] = 8570, + [8571] = 8302, + [8572] = 8302, + [8573] = 8302, + [8574] = 8302, + [8575] = 8302, + [8576] = 8302, + [8577] = 8302, + [8578] = 8302, + [8579] = 8302, + [8580] = 8302, + [8581] = 8302, + [8582] = 8302, + [8583] = 8302, + [8584] = 8302, + [8585] = 8302, + [8586] = 8302, + [8587] = 8302, + [8588] = 8302, + [8589] = 8302, + [8590] = 8302, + [8591] = 8302, + [8592] = 8302, + [8593] = 8302, + [8594] = 8302, + [8595] = 8302, + [8596] = 8302, + [8597] = 8302, + [8598] = 8302, + [8599] = 8302, + [8600] = 8302, + [8601] = 8224, + [8602] = 8384, + [8603] = 8288, + [8604] = 2745, + [8605] = 8225, + [8606] = 8231, + [8607] = 8235, + [8608] = 8244, + [8609] = 8302, + [8610] = 8235, + [8611] = 8262, + [8612] = 8235, + [8613] = 8225, + [8614] = 8235, + [8615] = 8248, + [8616] = 8236, + [8617] = 8227, + [8618] = 8246, + [8619] = 8619, + [8620] = 8620, + [8621] = 8621, + [8622] = 8230, + [8623] = 8548, + [8624] = 8624, + [8625] = 8228, + [8626] = 8252, + [8627] = 8431, + [8628] = 8456, + [8629] = 8292, + [8630] = 8230, + [8631] = 8262, + [8632] = 8231, + [8633] = 8259, + [8634] = 8235, + [8635] = 8237, + [8636] = 8239, + [8637] = 8309, + [8638] = 8273, + [8639] = 8242, + [8640] = 8252, + [8641] = 8259, + [8642] = 8292, + [8643] = 8288, + [8644] = 8230, + [8645] = 8235, + [8646] = 8271, + [8647] = 8426, + [8648] = 8320, + [8649] = 8329, + [8650] = 8225, + [8651] = 8262, + [8652] = 8237, + [8653] = 8292, + [8654] = 8252, + [8655] = 8655, + [8656] = 8248, + [8657] = 8224, + [8658] = 8435, + [8659] = 8230, + [8660] = 8320, + [8661] = 8230, + [8662] = 8662, + [8663] = 8309, + [8664] = 8225, + [8665] = 8292, + [8666] = 8620, + [8667] = 8230, + [8668] = 8451, + [8669] = 8225, + [8670] = 8225, + [8671] = 8227, + [8672] = 8672, + [8673] = 8230, + [8674] = 8228, + [8675] = 8675, + [8676] = 8320, + [8677] = 8619, + [8678] = 8247, + [8679] = 8679, + [8680] = 8298, + [8681] = 8681, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13734,10483 +14349,11296 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1804); + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '"', 4129, - '#', 5543, - '$', 3773, - '\'', 4145, - '(', 3853, - ')', 3978, - '*', 3116, - '+', 3121, - ',', 3651, - '-', 3122, - '.', 3917, - '/', 3118, - '0', 3318, - ':', 4157, - ';', 3610, - '<', 3139, - '=', 1818, - '>', 3142, - '?', 3675, - '@', 3672, - '[', 4099, - ']', 3648, - '^', 4166, - '_', 3765, - '`', 525, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5588, + '$', 3815, + '\'', 4187, + '(', 3895, + ')', 4021, + '*', 3156, + '+', 3161, + ',', 3690, + '-', 3162, + '.', 3937, + '/', 3158, + '0', 3358, + ':', 4199, + ';', 3650, + '<', 3179, + '=', 1862, + '>', 3182, + '?', 3714, + '@', 3711, + '[', 4141, + ']', 3687, + '^', 4208, + '_', 3807, + '`', 553, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 12, ' ', 12, - '!', 5090, - '&', 5090, - 'I', 3371, - 'i', 3371, - 'N', 3365, - 'n', 3365, - 0x0b, 489, - '\f', 489, + '!', 5393, + '&', 5393, + 'I', 3411, + 'i', 3411, + 'N', 3405, + 'n', 3405, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if (lookahead != 0) ADVANCE(3379); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if (lookahead != 0) ADVANCE(3419); END_STATE(); case 1: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 2459, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '*', 3821, - '+', 3869, - ',', 3651, - '-', 3693, - '.', 3902, - '/', 3860, - '0', 4011, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2655, - 'b', 2621, - 'c', 2494, - 'd', 2548, - 'e', 1934, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2489, - 'n', 2721, - 'o', 1935, - 'r', 2549, - 's', 2703, - 't', 2743, - 'u', 2787, - 'w', 2613, - 'x', 2711, - '|', 3611, - '}', 3762, + '!', 2502, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '*', 3863, + '+', 3913, + ',', 3690, + '-', 3733, + '.', 3947, + '/', 3902, + '0', 4054, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2698, + 'b', 2664, + 'c', 2537, + 'd', 2591, + 'e', 1976, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2532, + 'n', 2765, + 'o', 1977, + 'r', 2592, + 's', 2746, + 't', 2785, + 'u', 2827, + 'w', 2656, + 'x', 2754, + '|', 3651, + '}', 3804, '\t', 3, ' ', 3, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); case 2: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 2459, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '*', 3821, - '+', 3869, - ',', 3651, - '-', 3693, - '.', 3902, - '/', 3860, - '0', 4011, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - 'I', 2877, - 'N', 2870, - '[', 4099, - '_', 2478, - '`', 525, - 'a', 2655, - 'b', 2621, - 'c', 2494, - 'd', 2548, - 'e', 1934, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2489, - 'n', 2721, - 'o', 1935, - 'r', 2549, - 's', 2703, - 't', 2743, - 'u', 2787, - 'w', 2613, - 'x', 2711, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 2502, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '*', 3863, + '+', 3913, + ',', 3690, + '-', 3733, + '.', 3947, + '/', 3902, + '0', 4054, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + 'I', 2917, + 'N', 2910, + '[', 4141, + '_', 2521, + '`', 553, + 'a', 2698, + 'b', 2664, + 'c', 2537, + 'd', 2591, + 'e', 1976, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2532, + 'n', 2765, + 'o', 1977, + 'r', 2592, + 's', 2746, + 't', 2785, + 'u', 2827, + 'w', 2656, + 'x', 2754, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 4, ' ', 4, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(2891); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(2931); END_STATE(); case 3: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 2459, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '*', 3821, - '+', 3869, - ',', 3651, - '-', 3693, - '.', 2099, - '/', 3860, - '0', 4011, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2655, - 'b', 2621, - 'c', 2494, - 'd', 2548, - 'e', 1934, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2489, - 'n', 2721, - 'o', 1935, - 'r', 2549, - 's', 2703, - 't', 2743, - 'u', 2787, - 'w', 2613, - 'x', 2711, - '|', 3611, - '}', 3762, + '!', 2502, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '*', 3863, + '+', 3913, + ',', 3690, + '-', 3733, + '.', 2141, + '/', 3902, + '0', 4054, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2698, + 'b', 2664, + 'c', 2537, + 'd', 2591, + 'e', 1976, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2532, + 'n', 2765, + 'o', 1977, + 'r', 2592, + 's', 2746, + 't', 2785, + 'u', 2827, + 'w', 2656, + 'x', 2754, + '|', 3651, + '}', 3804, '\t', 3, ' ', 3, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); case 4: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 2459, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '*', 3821, - '+', 3869, - ',', 3651, - '-', 3693, - '.', 2099, - '/', 3860, - '0', 4011, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2655, - 'b', 2621, - 'c', 2494, - 'd', 2548, - 'e', 1934, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2489, - 'n', 2721, - 'o', 1935, - 'r', 2549, - 's', 2703, - 't', 2743, - 'u', 2787, - 'w', 2613, - 'x', 2711, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 2502, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '*', 3863, + '+', 3913, + ',', 3690, + '-', 3733, + '.', 2141, + '/', 3902, + '0', 4054, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2698, + 'b', 2664, + 'c', 2537, + 'd', 2591, + 'e', 1976, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2532, + 'n', 2765, + 'o', 1977, + 'r', 2592, + 's', 2746, + 't', 2785, + 'u', 2827, + 'w', 2656, + 'x', 2754, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 4, ' ', 4, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(2891); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(2931); END_STATE(); case 5: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 2459, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '*', 3821, - '+', 3869, - ',', 3651, - '-', 3693, - '.', 2099, - '/', 3860, - '0', 4011, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2655, - 'b', 2621, - 'c', 2494, - 'd', 2548, - 'e', 1934, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2489, - 'n', 2721, - 'o', 1935, - 'r', 2549, - 's', 2703, - 't', 2743, - 'u', 2787, - 'w', 2613, - 'x', 2711, - '|', 3611, - '}', 3762, + '!', 2502, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '*', 3863, + '+', 3913, + ',', 3690, + '-', 3733, + '.', 2141, + '/', 3902, + '0', 4054, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2698, + 'b', 2664, + 'c', 2537, + 'd', 2591, + 'e', 1976, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2532, + 'n', 2765, + 'o', 1977, + 'r', 2592, + 's', 2746, + 't', 2785, + 'u', 2827, + 'w', 2656, + 'x', 2754, + '|', 3651, + '}', 3804, '\t', 5, ' ', 5, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); case 6: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 2459, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '*', 3821, - '+', 3869, - ',', 3651, - '-', 3693, - '.', 2098, - '/', 3860, - '0', 4011, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2655, - 'b', 2621, - 'c', 2494, - 'd', 2548, - 'e', 1934, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2489, - 'n', 2721, - 'o', 1935, - 'r', 2549, - 's', 2703, - 't', 2743, - 'u', 2787, - 'w', 2613, - 'x', 2711, - '|', 3611, - '}', 3762, + '!', 2502, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '*', 3863, + '+', 3913, + ',', 3690, + '-', 3733, + '.', 2140, + '/', 3902, + '0', 4054, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2698, + 'b', 2664, + 'c', 2537, + 'd', 2591, + 'e', 1976, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2532, + 'n', 2765, + 'o', 1977, + 'r', 2592, + 's', 2746, + 't', 2785, + 'u', 2827, + 'w', 2656, + 'x', 2754, + '|', 3651, + '}', 3804, '\t', 5, ' ', 5, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); case 7: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 493, - '#', 5541, - '$', 3652, - '(', 3649, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 3906, - '/', 3859, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'B', 4078, - 'E', 511, - 'G', 511, - 'K', 511, - 'M', 511, - 'P', 511, - 'T', 511, - 'a', 1178, - 'b', 4081, - 'd', 559, - 'e', 416, - 'f', 641, - 'g', 509, - 'h', 1338, - 'i', 881, - 'k', 509, - 'm', 510, - 'n', 1268, - 'o', 425, - 'p', 509, - 's', 833, - 't', 508, - 'u', 1406, - 'w', 1027, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 1406, + '!', 520, + '#', 5586, + '$', 3691, + '(', 3688, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 521, + '>', 3709, + '?', 3865, + 'B', 4120, + 'E', 538, + 'G', 538, + 'K', 538, + 'M', 538, + 'P', 538, + 'T', 538, + 'a', 1205, + 'b', 4123, + 'd', 587, + 'e', 443, + 'f', 669, + 'g', 536, + 'h', 1365, + 'i', 909, + 'k', 536, + 'm', 537, + 'n', 1295, + 'o', 451, + 'p', 536, + 's', 861, + 't', 535, + 'u', 1433, + 'w', 1055, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 1433, '\t', 8, ' ', 8, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); END_STATE(); case 8: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 493, - '#', 5541, - '$', 3652, - '(', 3649, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'a', 1178, - 'b', 989, - 'e', 419, - 'f', 641, - 'i', 881, - 'm', 1245, - 'n', 1267, - 'o', 425, - 's', 1540, - 't', 1397, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 520, + '#', 5586, + '$', 3691, + '(', 3688, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 521, + '>', 3709, + '?', 3865, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'f', 669, + 'i', 909, + 'm', 1272, + 'n', 1294, + 'o', 451, + 's', 1567, + 't', 1424, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 8, ' ', 8, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); END_STATE(); case 9: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '|', 3611, - '}', 3762, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '|', 3651, + '}', 3804, '\t', 9, ' ', 9, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); END_STATE(); case 10: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 493, - '#', 5541, - '*', 3821, - '+', 3870, - '-', 3703, - '.', 3906, - '/', 3860, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - '?', 3823, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 520, + '#', 5586, + '*', 3863, + '+', 3914, + '-', 3745, + '.', 3951, + '/', 3902, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + '?', 3865, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 11, ' ', 11, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); END_STATE(); case 11: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 493, - '#', 5541, - '*', 3821, - '+', 3870, - '-', 3703, - '/', 3860, - ':', 4157, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - '?', 3823, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 520, + '#', 5586, + '*', 3863, + '+', 3914, + '-', 3745, + '/', 3902, + ':', 4199, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + '?', 3865, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 11, ' ', 11, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); END_STATE(); case 12: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '"', 4129, - '#', 5543, - '$', 3652, - '\'', 413, - '(', 3649, - ')', 3650, - '*', 3820, - '+', 3868, - ',', 3651, - '-', 3680, - '.', 4994, - '/', 3862, - '0', 3318, - ':', 4157, - ';', 3610, - '<', 3841, - '=', 1818, - '>', 3669, - '?', 3823, - '[', 3647, - ']', 3648, - '^', 4166, - '_', 3765, - '`', 525, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5588, + '$', 3691, + '\'', 441, + '(', 3688, + ')', 3689, + '*', 3862, + '+', 3910, + ',', 3690, + '-', 3719, + '.', 5299, + '/', 3904, + '0', 3358, + ':', 4199, + ';', 3650, + '<', 3883, + '=', 1862, + '>', 3708, + '?', 3865, + '[', 3686, + ']', 3687, + '^', 4208, + '_', 3807, + '`', 553, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 12, ' ', 12, - 'I', 3371, - 'i', 3371, - 'N', 3365, - 'n', 3365, - 0x0b, 489, - '\f', 489, - '!', 4997, - '&', 4997, - '@', 4997, + 'I', 3411, + 'i', 3411, + 'N', 3405, + 'n', 3405, + 0x0b, 516, + '\f', 516, + '!', 5355, + '&', 5355, + '@', 5355, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if (lookahead != 0) ADVANCE(3379); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if (lookahead != 0) ADVANCE(3419); END_STATE(); case 13: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 473, - '-', 3695, - '.', 474, - '0', 4007, - ':', 4157, - ';', 3610, - '>', 3669, - '?', 3823, - 'I', 1645, - 'N', 1632, - '[', 3647, - '_', 514, - '`', 525, - 'a', 1109, - 'c', 1285, - 'd', 805, - 'e', 424, - 'f', 641, - 'i', 882, - 'm', 551, - 'n', 1265, - 'o', 428, - 't', 1340, - 'u', 1438, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 499, + '-', 3735, + '.', 500, + '0', 4050, + ':', 4199, + ';', 3650, + '>', 3708, + '?', 3865, + 'I', 1672, + 'N', 1659, + '[', 3686, + '_', 541, + '`', 553, + 'a', 1137, + 'c', 1312, + 'd', 833, + 'e', 450, + 'f', 669, + 'i', 910, + 'm', 579, + 'n', 1292, + 'o', 454, + 't', 1367, + 'u', 1465, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 13, ' ', 13, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4030); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); END_STATE(); case 14: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 473, - '-', 3695, - '.', 3897, - '0', 4007, - ':', 4157, - ';', 3610, - '=', 4348, - '>', 3669, - '?', 3823, - '@', 3672, - 'I', 1645, - 'N', 1632, - '[', 3647, - '_', 514, - '`', 525, - 'a', 1109, - 'c', 1285, - 'd', 805, - 'e', 424, - 'f', 641, - 'i', 882, - 'm', 551, - 'n', 1265, - 'o', 428, - 't', 1340, - 'u', 1438, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 499, + '-', 3735, + '.', 3942, + '0', 4050, + ':', 4199, + ';', 3650, + '=', 4390, + '>', 3708, + '?', 3865, + '@', 3711, + 'I', 1672, + 'N', 1659, + '[', 3686, + '_', 541, + '`', 553, + 'a', 1137, + 'c', 1312, + 'd', 833, + 'e', 450, + 'f', 669, + 'i', 910, + 'm', 579, + 'n', 1292, + 'o', 454, + 't', 1367, + 'u', 1465, + '{', 3803, + '|', 3651, + '}', 3804, '\t', 13, ' ', 13, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4030); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); END_STATE(); case 15: ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '#', 5541, - ':', 4157, - ';', 3610, - 'e', 423, - 'o', 428, - '|', 3611, - '}', 3762, - '\t', 3608, - ' ', 3608, - 0x0b, 489, - '\f', 489, + '#', 5586, + ':', 4199, + ';', 3650, + 'e', 449, + 'o', 454, + '|', 3651, + '}', 3804, + '\t', 3648, + ' ', 3648, + 0x0b, 516, + '\f', 516, ); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(3607); - if (lookahead == ':') ADVANCE(4157); + if (lookahead == '\n') ADVANCE(3647); + if (lookahead == ':') ADVANCE(4199); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(489); + lookahead == ' ') ADVANCE(516); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(3606); + if (lookahead == '\n') ADVANCE(3646); END_STATE(); case 18: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 3906, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 3963, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 19: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 4624, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 20: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 21: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4572, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 22: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'a', 4626, - 'b', 4614, - 'e', 4627, - 'i', 4625, - 'm', 4631, - 'n', 4633, - 'o', 4640, - 's', 4663, - 'x', 4635, - '{', 3761, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 23: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4756, - '#', 5547, - '(', 3853, - '*', 3822, - '+', 3871, - '-', 3704, - '/', 3861, - '<', 3843, - '=', 4758, - '>', 3671, - 'a', 4845, - 'b', 4828, - 'e', 4850, - 'i', 4846, - 'm', 4858, - 'n', 4861, - 'o', 4871, - 's', 4901, - 'x', 4860, - '{', 3761, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 24: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3681, - '.', 3906, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'B', 4078, - 'E', 507, - 'G', 511, - 'K', 511, - 'M', 511, - 'P', 511, - 'T', 511, - '[', 4099, - '_', 518, - 'a', 1179, - 'b', 4081, - 'd', 559, - 'e', 414, - 'g', 509, - 'h', 1338, - 'i', 881, - 'k', 509, - 'm', 510, - 'n', 1263, - 'o', 425, - 'p', 509, - 's', 833, - 't', 509, - 'u', 1406, - 'w', 1027, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 1406, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4616, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 25: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '|', 3611, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); + lookahead == ' ') SKIP(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 26: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 422, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 427, - 's', 1540, - 'x', 1264, - '|', 3611, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 27: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3681, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'a', 1179, - 'b', 989, - 'e', 419, - 'i', 881, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 28: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3936, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 29: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 422, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 427, - 's', 1540, - 'x', 1264, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); + lookahead == ' ') SKIP(40); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 30: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '|', 3611, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 31: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 422, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 427, - 's', 1540, - 'x', 1264, - '|', 3611, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 32: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 1210, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 1334, - 's', 1540, - 'x', 1264, - '{', 3761, + '!', 4801, + '#', 5592, + '(', 3895, + '*', 3864, + '+', 3915, + '-', 3746, + '/', 3903, + '<', 3885, + '=', 4803, + '>', 3710, + 'a', 4890, + 'b', 4873, + 'e', 4895, + 'i', 4891, + 'm', 4903, + 'n', 4906, + 'o', 4916, + 's', 4946, + 'x', 4905, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); + lookahead == ' ') SKIP(40); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 33: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 3916, - ':', 3644, - ';', 3610, - '<', 3139, - '=', 1818, - '>', 3669, - '?', 3823, - '@', 3672, - '[', 3647, - ']', 3648, - '`', 525, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 520, + '#', 5586, + '$', 3691, + '*', 3862, + '+', 3911, + '-', 3740, + '.', 545, + '/', 3901, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(33); + END_STATE(); + case 34: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '|', 3651, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); + END_STATE(); + case 35: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 448, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 453, + 's', 1567, + 'x', 1291, + '|', 3651, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(35); + END_STATE(); + case 36: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(36); + END_STATE(); + case 37: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 448, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 453, + 's', 1567, + 'x', 1291, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(37); + END_STATE(); + case 38: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '|', 3651, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(38); + END_STATE(); + case 39: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 448, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 453, + 's', 1567, + 'x', 1291, + '|', 3651, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(39); + END_STATE(); + case 40: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(40); + END_STATE(); + case 41: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 3961, + ':', 3684, + ';', 3650, + '<', 3179, + '=', 1862, + '>', 3708, + '?', 3865, + '@', 3711, + '[', 3686, + ']', 3687, + '`', 553, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(42); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(3379); + lookahead != '^') ADVANCE(3419); END_STATE(); - case 34: + case 42: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 476, - ':', 3644, - ';', 3610, - '=', 1818, - '>', 3669, - '?', 3823, - '[', 3647, - ']', 3648, - '`', 525, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 504, + ':', 3684, + ';', 3650, + '=', 1862, + '>', 3708, + '?', 3865, + '[', 3686, + ']', 3687, + '`', 553, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); + lookahead == ' ') SKIP(42); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(3379); + lookahead != '^') ADVANCE(3419); END_STATE(); - case 35: + case 43: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2099, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2141, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(43); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 36: + case 44: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4438, - '-', 470, - '.', 4434, - '0', 4005, - 'N', 4496, - '[', 3647, - '_', 3766, - '`', 525, - 'e', 4429, - 'f', 4464, - 'n', 4492, - 'o', 4430, - 't', 4479, - '{', 3761, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 4480, + '-', 496, + '.', 4476, + '0', 4048, + 'N', 4538, + '[', 3686, + '_', 3808, + '`', 553, + 'e', 4471, + 'f', 4506, + 'n', 4534, + 'o', 4472, + 't', 4521, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); + lookahead == ' ') SKIP(44); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4519); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); END_STATE(); - case 37: + case 45: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1942, - '0', 4012, - 'I', 2072, - 'N', 2069, - '[', 4099, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5030, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); + lookahead == ' ') SKIP(45); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + END_STATE(); + case 46: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1984, + '0', 4055, + 'I', 2114, + 'N', 2111, + '[', 4141, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(43); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 38: + case 47: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - ';', 3610, - '=', 4348, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2265, - 'b', 2239, - 'c', 2112, - 'd', 2141, - 'e', 2115, - 'f', 2118, - 'g', 2231, - 'h', 2130, - 'i', 2108, - 'j', 2367, - 'k', 2172, - 'l', 2192, - 'm', 2120, - 'n', 2315, - 'o', 2423, - 'p', 2135, - 'q', 2417, - 'r', 2122, - 's', 2159, - 't', 2125, - 'u', 2325, - 'v', 2243, - 'w', 2228, - '{', 3761, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + ';', 3650, + '=', 4390, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2307, + 'b', 2281, + 'c', 2154, + 'd', 2183, + 'e', 2157, + 'f', 2160, + 'g', 2273, + 'h', 2172, + 'i', 2150, + 'j', 2409, + 'k', 2214, + 'l', 2234, + 'm', 2162, + 'n', 2357, + 'o', 2465, + 'p', 2177, + 'q', 2459, + 'r', 2164, + 's', 2201, + 't', 2167, + 'u', 2367, + 'v', 2285, + 'w', 2270, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(48); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); END_STATE(); - case 39: + case 48: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - ';', 3610, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2265, - 'b', 2239, - 'c', 2112, - 'd', 2141, - 'e', 2115, - 'f', 2118, - 'g', 2231, - 'h', 2130, - 'i', 2108, - 'j', 2367, - 'k', 2172, - 'l', 2192, - 'm', 2120, - 'n', 2315, - 'o', 2423, - 'p', 2135, - 'q', 2417, - 'r', 2122, - 's', 2159, - 't', 2125, - 'u', 2325, - 'v', 2243, - 'w', 2228, - '{', 3761, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + ';', 3650, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2307, + 'b', 2281, + 'c', 2154, + 'd', 2183, + 'e', 2157, + 'f', 2160, + 'g', 2273, + 'h', 2172, + 'i', 2150, + 'j', 2409, + 'k', 2214, + 'l', 2234, + 'm', 2162, + 'n', 2357, + 'o', 2465, + 'p', 2177, + 'q', 2459, + 'r', 2164, + 's', 2201, + 't', 2167, + 'u', 2367, + 'v', 2285, + 'w', 2270, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(48); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); END_STATE(); - case 40: + case 49: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - '=', 4348, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2279, - 'b', 2240, - 'c', 2114, - 'd', 2143, - 'e', 2116, - 'f', 2119, - 'g', 2231, - 'h', 2131, - 'i', 2110, - 'j', 2367, - 'k', 2172, - 'l', 2202, - 'm', 2147, - 'n', 2315, - 'o', 2424, - 'p', 2135, - 'q', 2417, - 'r', 2123, - 's', 2160, - 't', 2126, - 'u', 2326, - 'v', 2243, - 'w', 2233, - '{', 3761, - '\t', 3609, - ' ', 3609, - '!', 2891, - '&', 2891, - '*', 2891, - ',', 2891, - '?', 2891, - '@', 2891, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + '=', 4390, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2321, + 'b', 2282, + 'c', 2156, + 'd', 2185, + 'e', 2158, + 'f', 2161, + 'g', 2273, + 'h', 2173, + 'i', 2152, + 'j', 2409, + 'k', 2214, + 'l', 2244, + 'm', 2189, + 'n', 2357, + 'o', 2466, + 'p', 2177, + 'q', 2459, + 'r', 2165, + 's', 2202, + 't', 2168, + 'u', 2368, + 'v', 2285, + 'w', 2275, + '{', 3803, + '\t', 3649, + ' ', 3649, + '!', 2931, + '&', 2931, + '*', 2931, + ',', 2931, + '?', 2931, + '@', 2931, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); END_STATE(); - case 41: + case 50: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - 'I', 2877, - 'N', 2870, - '[', 3647, - '^', 4166, - '_', 2478, - '`', 525, - 'a', 2677, - 'b', 2633, - 'c', 2493, - 'd', 2512, - 'e', 2513, - 'f', 2516, - 'g', 2612, - 'h', 2503, - 'i', 2472, - 'j', 2791, - 'k', 2563, - 'l', 2595, - 'm', 2496, - 'n', 2716, - 'o', 2860, - 'p', 2505, - 'q', 2858, - 'r', 2511, - 's', 2526, - 't', 2497, - 'u', 2732, - 'v', 2634, - 'w', 2620, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + 'I', 2917, + 'N', 2910, + '[', 3686, + '^', 4208, + '_', 2521, + '`', 553, + 'a', 2720, + 'b', 2676, + 'c', 2536, + 'd', 2555, + 'e', 2556, + 'f', 2559, + 'g', 2655, + 'h', 2546, + 'i', 2515, + 'j', 2831, + 'k', 2606, + 'l', 2638, + 'm', 2539, + 'n', 2759, + 'o', 2900, + 'p', 2548, + 'q', 2898, + 'r', 2554, + 's', 2569, + 't', 2540, + 'u', 2774, + 'v', 2677, + 'w', 2663, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == ' ') SKIP(50); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 42: + case 51: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 4005, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4429, - 'f', 4464, - 'n', 4492, - 'o', 4430, - 't', 4479, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 2136, + '-', 464, + '.', 2518, + '=', 4390, + 'I', 2919, + 'N', 2911, + '[', 4141, + ']', 3687, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(42); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == ' ') SKIP(52); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4519); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 43: + case 52: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4438, - '-', 3695, - '.', 4434, - '0', 4005, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4429, - 'f', 4464, - 'n', 4476, - 'o', 4430, - 't', 4479, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 2136, + '-', 464, + '.', 2518, + 'I', 2919, + 'N', 2911, + ']', 3687, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(43); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == ' ') SKIP(52); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4519); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 44: + case 53: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4990, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 4048, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4471, + 'f', 4506, + 'n', 4534, + 'o', 4472, + 't', 4521, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); + lookahead == ' ') SKIP(53); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); END_STATE(); - case 45: + case 54: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4985, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4480, + '-', 3735, + '.', 4476, + '0', 4048, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4471, + 'f', 4506, + 'n', 4518, + 'o', 4472, + 't', 4521, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(54); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); END_STATE(); - case 46: + case 55: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 438, - '.', 2475, - 'I', 2879, - 'N', 2871, - ']', 3648, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5035, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2891); + lookahead == ' ') SKIP(55); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 47: + case 56: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 4542, - '.', 2475, - 'I', 2879, - 'N', 2871, - ']', 3648, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 5303, + '-', 5302, + '.', 5301, + '0', 4051, + 'N', 5335, + '[', 3686, + '_', 5312, + '`', 553, + 'e', 5294, + 'f', 5314, + 'n', 5331, + 'o', 5295, + 't', 5324, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(56); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5341); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4074); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5355); END_STATE(); - case 48: + case 57: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - '+', 5082, - ',', 3651, - '-', 3686, - '.', 5078, - ':', 3644, - '=', 1818, - ']', 3648, - '_', 3320, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '+', 5363, + ',', 3690, + '-', 3726, + '.', 5359, + ':', 3684, + '=', 1862, + ']', 3687, + '_', 3360, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); + lookahead == ' ') SKIP(74); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 49: + case 58: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - '+', 5082, - ',', 3651, - '-', 3686, - '.', 3913, - ':', 3644, - '=', 1818, - ']', 3648, - '_', 3320, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '+', 5363, + ',', 3690, + '-', 3726, + '.', 3958, + ':', 3684, + '=', 1862, + ']', 3687, + '_', 3360, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); + lookahead == ' ') SKIP(74); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 50: + case 59: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 3916, - ':', 3644, - '=', 1818, - 'E', 3308, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - ']', 3648, - 'd', 3322, - 'e', 3307, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - '|', 3611, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 3961, + ':', 3684, + '=', 1862, + 'E', 3346, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + ']', 3687, + 'd', 3362, + 'e', 3345, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + '|', 3651, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 51: + case 60: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 3916, - ':', 3644, - '=', 1818, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 3961, + ':', 3684, + '=', 1862, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3309); + lookahead == 'e') ADVANCE(3347); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 52: + case 61: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5083, - ':', 3644, - '=', 1818, - 'E', 3308, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - ']', 3648, - '_', 3320, - 'd', 3322, - 'e', 3307, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - '|', 3611, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5362, + ':', 3684, + '=', 1862, + 'E', 3346, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + ']', 3687, + '_', 3360, + 'd', 3362, + 'e', 3345, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + '|', 3651, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 53: + case 62: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5083, - ':', 3644, - '=', 1818, - 'E', 3308, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - ']', 3648, - 'd', 3322, - 'e', 3307, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - '|', 3611, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5362, + ':', 3684, + '=', 1862, + 'E', 3346, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + ']', 3687, + 'd', 3362, + 'e', 3345, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + '|', 3651, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 54: + case 63: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5083, - ':', 3644, - '=', 1818, - 'E', 3316, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - ']', 3648, - 'd', 3322, - 'e', 3315, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - '|', 3611, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5362, + ':', 3684, + '=', 1862, + 'E', 3356, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + ']', 3687, + 'd', 3362, + 'e', 3355, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + '|', 3651, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 55: + case 64: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5083, - ':', 3644, - '=', 1818, - '[', 4099, - ']', 3648, - '{', 3761, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5362, + ':', 3684, + '=', 1862, + '[', 4141, + ']', 3687, + '{', 3803, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(78); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); + lookahead == '^') ADVANCE(5393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3379); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3419); END_STATE(); - case 56: + case 65: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5083, - ':', 3644, - '=', 1818, - ']', 3648, - '_', 3320, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5362, + ':', 3684, + '=', 1862, + ']', 3687, + '_', 3360, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3309); + lookahead == 'e') ADVANCE(3347); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 57: + case 66: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5083, - ':', 3644, - '=', 1818, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5362, + ':', 3684, + '=', 1862, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3309); + lookahead == 'e') ADVANCE(3347); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 58: + case 67: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5079, - ':', 3644, - '=', 1818, - ']', 3648, - '_', 3320, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5360, + ':', 3684, + '=', 1862, + ']', 3687, + '_', 3360, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3309); + lookahead == 'e') ADVANCE(3347); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 59: + case 68: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5079, - ':', 3644, - '=', 1818, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5360, + ':', 3684, + '=', 1862, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3309); + lookahead == 'e') ADVANCE(3347); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 60: + case 69: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 5079, - ':', 3644, - '=', 1818, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 5360, + ':', 3684, + '=', 1862, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 61: + case 70: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 3912, - ':', 3644, - '=', 1818, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 3957, + ':', 3684, + '=', 1862, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3309); + lookahead == 'e') ADVANCE(3347); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(5393); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 62: + case 71: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3649, - ')', 3650, - '-', 3681, - '.', 3892, - ':', 3644, - ';', 3610, - '=', 1818, - '>', 3669, - '?', 3823, - '[', 3647, - '{', 3761, - '}', 3762, + '#', 5586, + '$', 3691, + '(', 3688, + ')', 3689, + '-', 3720, + '.', 3936, + ':', 3684, + ';', 3650, + '=', 1862, + '>', 3708, + '?', 3865, + '[', 3686, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(72); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 63: + case 72: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3649, - ')', 3650, - '-', 3681, - ':', 3644, - ';', 3610, - '=', 1818, - '>', 3669, - '?', 3823, - '[', 3647, - '{', 3761, - '}', 3762, + '#', 5586, + '$', 3691, + '(', 3688, + ')', 3689, + '-', 3720, + ':', 3684, + ';', 3650, + '=', 1862, + '>', 3708, + '?', 3865, + '[', 3686, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(72); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 64: + case 73: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3649, - '+', 473, - '-', 3695, - '.', 515, - '0', 3318, - ':', 3644, - '=', 1818, - 'N', 3365, - '_', 3319, - 'f', 3324, - 'n', 3346, - 't', 3355, - '{', 3761, + '#', 5586, + '$', 3691, + '(', 3688, + '+', 499, + '-', 3735, + '.', 542, + '0', 3358, + ':', 3684, + '=', 1862, + 'N', 3405, + '_', 3359, + 'f', 3364, + 'n', 3386, + 't', 3395, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(64); + lookahead == ' ') SKIP(73); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3371); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == 'i') ADVANCE(3411); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 65: + case 74: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '+', 478, - ',', 3651, - '-', 3684, - '.', 477, - ':', 3644, - '=', 1818, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + ')', 3689, + '+', 503, + ',', 3690, + '-', 3723, + '.', 505, + ':', 3684, + '=', 1862, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(74); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 66: + case 75: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 476, - ':', 3644, - '=', 1818, - '?', 3675, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 3960, + ':', 3684, + '=', 1862, + '?', 3865, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(77); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 67: + case 76: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 476, - ':', 3644, - '=', 1818, - '?', 3823, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 504, + ':', 3684, + '=', 1862, + '?', 3714, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(79); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 68: + case 77: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 476, - ':', 3644, - '=', 1818, - ']', 3648, - '{', 3761, - '|', 3611, + '#', 5586, + '$', 3691, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 504, + ':', 3684, + '=', 1862, + '?', 3865, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(77); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 69: + case 78: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 476, - ':', 3644, - '=', 1818, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 504, + ':', 3684, + '=', 1862, + ']', 3687, + '{', 3803, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(78); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 70: + case 79: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - ',', 3651, - '-', 3681, - '.', 3914, - ':', 3644, - '=', 1818, - '?', 3823, - ']', 3648, - '|', 3611, + '#', 5586, + '$', 3691, + ')', 3689, + ',', 3690, + '-', 3720, + '.', 504, + ':', 3684, + '=', 1862, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(79); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 71: + case 80: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '-', 3681, - '.', 3892, - ':', 3644, - ';', 3610, - '=', 1818, - '>', 3669, - '@', 3672, - '[', 3647, - ']', 3648, - 'c', 3328, - 'e', 3354, - 'f', 3363, - 'i', 3342, - 'o', 3345, - 'v', 3323, - '{', 3761, - '}', 3762, + '#', 5586, + '$', 3691, + ')', 3689, + '-', 3720, + '.', 3936, + ':', 3684, + ';', 3650, + '=', 1862, + '>', 3708, + '@', 3711, + '[', 3686, + ']', 3687, + 'c', 3368, + 'e', 3394, + 'f', 3403, + 'i', 3382, + 'o', 3385, + 'v', 3363, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(82); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 72: + case 81: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '-', 3681, - ':', 3644, - ';', 3610, - '=', 1818, - '>', 3669, - '[', 3647, - ']', 3648, - 'c', 3328, - 'e', 3354, - 'f', 3363, - 'i', 3342, - 'o', 3345, - 'v', 3323, - '{', 3761, - '}', 3762, + '#', 5586, + '$', 3691, + ')', 3689, + '-', 3720, + '.', 501, + ':', 3684, + ';', 3650, + '=', 1862, + 'a', 1206, + 'e', 449, + 'i', 1181, + 'o', 453, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); - END_STATE(); - case 73: - if (lookahead == '\n') ADVANCE(3606); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '{') ADVANCE(3761); - if (lookahead == '\t' || - lookahead == ' ') SKIP(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 74: - if (lookahead == '\n') ADVANCE(3606); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '{') ADVANCE(3761); if (lookahead == '\t' || lookahead == ' ') SKIP(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(3606); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '{') ADVANCE(3761); + case 82: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '#', 5586, + '$', 3691, + ')', 3689, + '-', 3720, + ':', 3684, + ';', 3650, + '=', 1862, + '>', 3708, + '[', 3686, + ']', 3687, + 'c', 3368, + 'e', 3394, + 'f', 3403, + 'i', 3382, + 'o', 3385, + 'v', 3363, + '{', 3803, + '}', 3804, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(82); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 76: - if (lookahead == '\n') ADVANCE(3606); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '{') ADVANCE(3761); + case 83: + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '#', 5586, + '$', 3691, + ')', 3689, + '-', 3720, + ':', 3684, + ';', 3650, + '=', 1862, + 'a', 1206, + 'e', 449, + 'i', 1181, + 'o', 453, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(83); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); END_STATE(); - case 77: + case 84: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '.', 3906, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, + '#', 5586, + '.', 3951, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 78: + case 85: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, + '#', 5586, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 79: + case 86: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, + '#', 5586, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 80: + case 87: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '.', 4551, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4574, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, + '#', 5586, + '.', 4595, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4618, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 81: - if (lookahead == '\n') ADVANCE(3606); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4348); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3609); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); - END_STATE(); - case 82: - if (lookahead == '\n') ADVANCE(3606); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4348); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3609); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); - END_STATE(); - case 83: - if (lookahead == '\n') ADVANCE(3606); + case 88: + if (lookahead == '\n') ADVANCE(3646); if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '{') ADVANCE(3761); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4390); if (lookahead == '\t' || - lookahead == ' ') SKIP(83); + lookahead == ' ') ADVANCE(3649); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); END_STATE(); - case 84: - if (lookahead == '\n') ADVANCE(3606); + case 89: + if (lookahead == '\n') ADVANCE(3646); if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5541); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4390); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') ADVANCE(3649); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 85: - if (lookahead == '\n') ADVANCE(3606); + case 90: + if (lookahead == '\n') ADVANCE(3646); if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5547); - if (lookahead == '(') ADVANCE(3853); + if (lookahead == '#') ADVANCE(5586); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') ADVANCE(3649); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 86: + case 91: ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5546, - '$', 3657, - '(', 3853, - ')', 3650, - ',', 3651, - '-', 3692, - '.', 5195, - ':', 3645, - '=', 1820, - ']', 3648, - '|', 3611, + '#', 5589, + '$', 3695, + '(', 3895, + ')', 3689, + ',', 3690, + '-', 3732, + '.', 5471, + ':', 3684, + '=', 1864, + ']', 3687, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(79); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5263); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5247); - END_STATE(); - case 87: - if (lookahead == ' ') ADVANCE(749); - END_STATE(); - case 88: - if (lookahead == ' ') ADVANCE(660); - END_STATE(); - case 89: - ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 3906, - '/', 3859, - '<', 3842, - '=', 4558, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - 0xb5, 4654, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 90: - ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4558, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - 0xb5, 4654, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 91: - ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4558, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - 0xb5, 4654, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '^') ADVANCE(5579); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5578); END_STATE(); case 92: - ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4558, - '>', 3670, - 'B', 4078, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4572, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - 0xb5, 4654, - ); + if (lookahead == '\n') ADVANCE(3646); + if (lookahead == '\r') ADVANCE(17); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == '(') ADVANCE(3895); if (lookahead == '\t' || - lookahead == ' ') SKIP(103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') ADVANCE(3649); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 93: - ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3681, - '.', 3906, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(104); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == ' ') ADVANCE(777); END_STATE(); case 94: - ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3681, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(104); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == ' ') ADVANCE(688); END_STATE(); case 95: ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3681, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4569, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 3963, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(104); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 96: ADVANCE_MAP( - '!', 4557, - '#', 5541, - '(', 3853, - '*', 3820, - '+', 3868, - '-', 3681, - '.', 4551, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4572, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4640, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 4624, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(104); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 97: ADVANCE_MAP( - '!', 4557, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - '<', 3842, - '=', 4558, - '>', 3670, - 'a', 4626, - 'b', 4614, - 'e', 4627, - 'i', 4625, - 'm', 4631, - 'n', 4633, - 'o', 4640, - 's', 4663, - 'x', 4635, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + '*', 3862, + '+', 3912, + '-', 3725, + '.', 3963, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 98: ADVANCE_MAP( - '!', 4557, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3681, - '/', 3859, - '<', 3842, - '=', 4559, - '>', 3670, - 'a', 4626, - 'b', 4614, - 'e', 4627, - 'i', 4625, - 'm', 4631, - 'n', 4633, - 'o', 4640, - 's', 4663, - 'x', 4635, - '{', 3761, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + '*', 3862, + '+', 3912, + '-', 3725, + '.', 4624, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(104); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 99: ADVANCE_MAP( - '!', 4756, - '#', 5547, - '(', 3853, - '*', 3822, - '+', 3871, - '-', 3704, - '/', 3861, - '<', 3843, - '=', 4757, - '>', 3671, - 'a', 4845, - 'b', 4828, - 'e', 4850, - 'i', 4846, - 'm', 4858, - 'n', 4861, - 'o', 4871, - 's', 4901, - 'x', 4860, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 100: ADVANCE_MAP( - '!', 4756, - '#', 5547, - '(', 3853, - '*', 3822, - '+', 3871, - '-', 3691, - '/', 3861, - '<', 3843, - '=', 4758, - '>', 3671, - 'a', 4845, - 'b', 4828, - 'e', 4850, - 'i', 4846, - 'm', 4858, - 'n', 4861, - 'o', 4871, - 's', 4901, - 'x', 4860, - '{', 3761, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(104); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 101: ADVANCE_MAP( - '!', 493, - '#', 5541, - '$', 3652, - '*', 3820, - '+', 3868, - '-', 3681, - '.', 3892, - '/', 3859, - ':', 4157, - ';', 4160, - '<', 3842, - '=', 495, - '>', 3670, - '?', 3823, - 'a', 1178, - 'b', 989, - 'e', 1210, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 1334, - 's', 1540, - 'x', 1264, - '{', 3761, - '\t', 102, - ' ', 102, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + 0xb5, 4699, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(488); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 102: ADVANCE_MAP( - '!', 493, - '#', 5541, - '$', 3652, - '*', 3820, - '+', 3868, - '-', 3681, - '/', 3859, - ':', 4157, - ';', 4160, - '<', 3842, - '=', 495, - '>', 3670, - '?', 3823, - 'a', 1178, - 'b', 989, - 'e', 1210, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 1334, - 's', 1540, - 'x', 1264, - '{', 3761, - '\t', 102, - ' ', 102, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + 0xb5, 4699, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(488); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 103: ADVANCE_MAP( - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - '<', 3842, - '=', 494, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 1210, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 1334, - 's', 1540, - 'x', 1264, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'B', 4120, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4616, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(103); + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 104: ADVANCE_MAP( - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3681, - '/', 3859, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 1210, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 1334, - 's', 1540, - 'x', 1264, - '{', 3761, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(104); + lookahead == ' ') SKIP(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 105: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4985, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 106: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 107: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3936, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 108: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 109: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 110: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 4602, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 111: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 3951, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 112: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 3951, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 113: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 114: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4613, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 115: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4616, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4685, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + 0xb5, 4699, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 116: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 117: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 118: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 4595, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 119: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 3936, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 120: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 121: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4630, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 122: + ADVANCE_MAP( + '!', 4601, + '#', 5586, + '(', 3895, + '*', 3862, + '+', 3910, + '-', 3720, + '/', 3901, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4672, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4685, + 's', 4708, + 'x', 4680, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 123: + ADVANCE_MAP( + '!', 4801, + '#', 5592, + '(', 3895, + '*', 3864, + '+', 3915, + '-', 3746, + '/', 3903, + '<', 3885, + '=', 4802, + '>', 3710, + 'a', 4890, + 'b', 4873, + 'e', 4895, + 'i', 4891, + 'm', 4903, + 'n', 4906, + 'o', 4916, + 's', 4946, + 'x', 4905, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + END_STATE(); + case 124: + ADVANCE_MAP( + '!', 4801, + '#', 5592, + '(', 3895, + '*', 3864, + '+', 3915, + '-', 3729, + '/', 3903, + '<', 3885, + '=', 4803, + '>', 3710, + 'a', 4890, + 'b', 4873, + 'e', 4895, + 'i', 4891, + 'm', 4903, + 'n', 4906, + 'o', 4916, + 's', 4946, + 'x', 4905, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + END_STATE(); + case 125: + ADVANCE_MAP( + '!', 520, + '#', 5586, + '$', 3691, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 3936, + '/', 3901, + ':', 4199, + ';', 4202, + '<', 3884, + '=', 522, + '>', 3709, + '?', 3865, + 'E', 551, + 'a', 1205, + 'b', 1017, + 'e', 549, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + '{', 3803, + '\t', 126, + ' ', 126, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); + END_STATE(); + case 126: + ADVANCE_MAP( + '!', 520, + '#', 5586, + '$', 3691, + '*', 3862, + '+', 3910, + '-', 3720, + '/', 3901, + ':', 4199, + ';', 4202, + '<', 3884, + '=', 522, + '>', 3709, + '?', 3865, + 'a', 1205, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + '{', 3803, + '\t', 126, + ' ', 126, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); + END_STATE(); + case 127: + ADVANCE_MAP( + '!', 520, + '#', 5586, + '$', 3691, + '*', 3862, + '+', 3911, + '-', 3740, + '.', 545, + '/', 3901, + '<', 3884, + '=', 521, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(127); + END_STATE(); + case 128: + ADVANCE_MAP( + '!', 520, + '#', 5586, + '$', 3691, + '*', 3862, + '+', 3911, + '-', 3723, + '.', 545, + '/', 3901, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + '{', 3803, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(128); + END_STATE(); + case 129: + ADVANCE_MAP( + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + '<', 3884, + '=', 521, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(129); + END_STATE(); + case 130: + ADVANCE_MAP( + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3720, + '/', 3901, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + '{', 3803, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130); + END_STATE(); + case 131: + ADVANCE_MAP( + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5030, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 106: + case 132: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5082, - ',', 3651, - '-', 5081, - '.', 5074, - '0', 3937, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5120, + ',', 3690, + '-', 5119, + '.', 5115, + '0', 3980, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(227); + lookahead == ' ') SKIP(253); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 107: + case 133: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5082, - ',', 3651, - '-', 5081, - '.', 3896, - '0', 3937, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5120, + ',', 3690, + '-', 5119, + '.', 3941, + '0', 3980, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(227); + lookahead == ' ') SKIP(253); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 108: + case 134: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5082, - ',', 4152, - '-', 5081, - '.', 5074, - '0', 3937, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5120, + ',', 4194, + '-', 5119, + '.', 5115, + '0', 3980, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 109: + case 135: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5082, - ',', 4152, - '-', 5081, - '.', 3896, - '0', 3937, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5120, + ',', 4194, + '-', 5119, + '.', 3941, + '0', 3980, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 110: + case 136: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1942, - '0', 3940, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1984, + '0', 3983, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 111: + case 137: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1942, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1984, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 112: + case 138: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1942, - '0', 4012, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1984, + '0', 4055, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 113: + case 139: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 3915, - '0', 4012, - 'B', 4078, - 'E', 1949, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1948, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 3959, + '0', 4055, + 'B', 4120, + 'E', 1991, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1990, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 114: + case 140: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 3915, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 3959, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 115: + case 141: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1945, - '0', 3940, - 'B', 4078, - 'E', 1949, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1948, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1987, + '0', 3983, + 'B', 4120, + 'E', 1991, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1990, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 116: + case 142: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1945, - '0', 3940, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1987, + '0', 3983, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 117: + case 143: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1945, - '0', 4012, - 'B', 4078, - 'E', 1949, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1948, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1987, + '0', 4055, + 'B', 4120, + 'E', 1991, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1990, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 118: + case 144: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1945, - '0', 4012, - 'B', 4078, - 'E', 1954, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1951, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1987, + '0', 4055, + 'B', 4120, + 'E', 1996, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1993, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 119: + case 145: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1945, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1987, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 120: + case 146: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 1945, - '0', 4012, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 1987, + '0', 4055, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 121: + case 147: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 2891, - '-', 3697, - '.', 3904, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 2931, + '-', 3742, + '.', 3949, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 122: + case 148: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1942, - '0', 3940, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1984, + '0', 3983, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 123: + case 149: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1942, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1984, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 124: + case 150: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1942, - '0', 4012, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1984, + '0', 4055, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 125: + case 151: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 3915, - '0', 4012, - 'B', 4078, - 'E', 1949, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1948, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 3959, + '0', 4055, + 'B', 4120, + 'E', 1991, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1990, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 126: + case 152: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 3915, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 3959, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 127: + case 153: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1945, - '0', 3940, - 'B', 4078, - 'E', 1949, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '[', 4099, - ']', 3648, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1948, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1987, + '0', 3983, + 'B', 4120, + 'E', 1991, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1990, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 128: + case 154: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1945, - '0', 3940, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1987, + '0', 3983, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 129: + case 155: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1945, - '0', 4012, - 'B', 4078, - 'E', 1949, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1948, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1987, + '0', 4055, + 'B', 4120, + 'E', 1991, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1990, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 130: + case 156: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1945, - '0', 4012, - 'B', 4078, - 'E', 1954, - 'G', 1954, - 'I', 2072, - 'K', 1954, - 'M', 1954, - 'N', 2069, - 'P', 1954, - 'T', 1954, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 4082, - 'c', 1969, - 'd', 1975, - 'e', 1951, - 'f', 1970, - 'g', 1953, - 'h', 2007, - 'i', 1955, - 'k', 1953, - 'l', 1993, - 'm', 1950, - 'n', 2046, - 'o', 2066, - 'p', 1953, - 'r', 1984, - 's', 1996, - 't', 1952, - 'u', 2048, - 'w', 2005, - '}', 3762, - 0xb5, 2047, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1987, + '0', 4055, + 'B', 4120, + 'E', 1996, + 'G', 1996, + 'I', 2114, + 'K', 1996, + 'M', 1996, + 'N', 2111, + 'P', 1996, + 'T', 1996, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 4124, + 'c', 2011, + 'd', 2017, + 'e', 1993, + 'f', 2012, + 'g', 1995, + 'h', 2049, + 'i', 1997, + 'k', 1995, + 'l', 2035, + 'm', 1992, + 'n', 2088, + 'o', 2108, + 'p', 1995, + 'r', 2026, + 's', 2038, + 't', 1994, + 'u', 2090, + 'w', 2047, + '}', 3804, + 0xb5, 2089, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 131: + case 157: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1945, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1987, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 132: + case 158: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1945, - '0', 4012, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1987, + '0', 4055, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 133: + case 159: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 3904, - '0', 4012, - 'E', 1967, - 'I', 2072, - 'N', 2069, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 1966, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 3949, + '0', 4055, + 'E', 2009, + 'I', 2114, + 'N', 2111, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2008, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 134: + case 160: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3876, - ',', 2891, - '-', 3701, - '.', 3905, - '0', 3940, - 'I', 2072, - 'N', 2069, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3920, + ',', 2931, + '-', 3743, + '.', 3950, + '0', 3983, + 'I', 2114, + 'N', 2111, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(226); + lookahead == ' ') SKIP(252); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 135: + case 161: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3876, - ',', 2891, - '-', 3701, - '.', 1943, - '0', 3940, - 'I', 2072, - 'N', 2069, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3920, + ',', 2931, + '-', 3743, + '.', 1985, + '0', 3983, + 'I', 2114, + 'N', 2111, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(226); + lookahead == ' ') SKIP(252); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 136: + case 162: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3876, - ',', 4152, - '-', 3701, - '.', 3905, - '0', 3940, - 'I', 2072, - 'N', 2069, - '[', 3647, - ']', 3648, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3920, + ',', 4194, + '-', 3743, + '.', 3950, + '0', 3983, + ':', 3684, + 'I', 2114, + 'N', 2111, + '[', 3686, + ']', 3687, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 137: + case 163: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 3876, - ',', 4152, - '-', 3701, - '.', 1943, - '0', 3940, - 'I', 2072, - 'N', 2069, - '_', 1961, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 3920, + ',', 4194, + '-', 3743, + '.', 1985, + '0', 3983, + 'I', 2114, + 'N', 2111, + '[', 4141, + ']', 3687, + '_', 2003, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 138: + case 164: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5076, - '0', 3937, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'd', 5117, - 'e', 5069, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, - '\t', 4153, - ' ', 4153, - 'B', 4078, - 'b', 4078, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5117, + '0', 3980, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'd', 5150, + 'e', 5110, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, + '\t', 4195, + ' ', 4195, + 'B', 4120, + 'b', 4120, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 139: + case 165: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5076, - '0', 3937, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5117, + '0', 3980, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 140: + case 166: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5076, - '0', 4010, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'd', 5117, - 'e', 5069, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, - '\t', 4153, - ' ', 4153, - 'B', 4078, - 'b', 4078, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5117, + '0', 4053, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'd', 5150, + 'e', 5110, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, + '\t', 4195, + ' ', 4195, + 'B', 4120, + 'b', 4120, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 141: + case 167: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5076, - '0', 4010, - 'E', 5101, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'd', 5117, - 'e', 5066, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, - '\t', 4153, - ' ', 4153, - 'B', 4078, - 'b', 4078, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5117, + '0', 4053, + 'E', 5134, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'd', 5150, + 'e', 5107, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, + '\t', 4195, + ' ', 4195, + 'B', 4120, + 'b', 4120, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 142: + case 168: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5076, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5117, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 143: + case 169: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5076, - '0', 4010, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5117, + '0', 4053, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 144: + case 170: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5075, - '0', 3937, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5116, + '0', 3980, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 145: + case 171: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5075, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5116, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 146: + case 172: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5075, - '0', 4010, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5116, + '0', 4053, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 147: + case 173: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 3911, - '0', 4010, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'd', 5117, - 'e', 5069, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, - '\t', 4153, - ' ', 4153, - 'B', 4078, - 'b', 4078, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 3956, + '0', 4053, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'd', 5150, + 'e', 5110, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, + '\t', 4195, + ' ', 4195, + 'B', 4120, + 'b', 4120, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 148: + case 174: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 3911, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 3956, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 149: + case 175: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 3901, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 3946, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 150: + case 176: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 4992, - ',', 3651, - '-', 4991, - '.', 4986, - '0', 3938, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5037, + ',', 3690, + '-', 5036, + '.', 5031, + '0', 3981, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(227); + lookahead == ' ') SKIP(253); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 151: + case 177: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 4992, - ',', 3651, - '-', 4991, - '.', 3899, - '0', 3938, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5037, + ',', 3690, + '-', 5036, + '.', 3944, + '0', 3981, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(227); + lookahead == ' ') SKIP(253); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 152: + case 178: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 4992, - ',', 4152, - '-', 4991, - '.', 4986, - '0', 3938, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5037, + ',', 4194, + '-', 5036, + '.', 5031, + '0', 3981, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 153: + case 179: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3853, - '+', 4992, - ',', 4152, - '-', 4991, - '.', 3899, - '0', 3938, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3895, + '+', 5037, + ',', 4194, + '-', 5036, + '.', 3944, + '0', 3981, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 154: + case 180: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 3651, - '-', 3694, - '.', 2099, - '0', 4011, - ':', 4157, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 154, - ' ', 154, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 3690, + '-', 3734, + '.', 2141, + '0', 4054, + ':', 4199, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 180, + ' ', 180, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 155: + case 181: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 3651, - '-', 3694, - '.', 2099, - '0', 4011, - ':', 4157, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 155, - ' ', 155, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 3690, + '-', 3734, + '.', 2141, + '0', 4054, + ':', 4199, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 181, + ' ', 181, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 156: + case 182: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 3651, - '-', 3694, - '.', 3903, - '0', 4011, - ':', 4157, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 154, - ' ', 154, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 3690, + '-', 3734, + '.', 3948, + '0', 4054, + ':', 4199, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 180, + ' ', 180, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 157: + case 183: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 3651, - '-', 3694, - '.', 3903, - '0', 4011, - ':', 4157, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 155, - ' ', 155, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 3690, + '-', 3734, + '.', 3948, + '0', 4054, + ':', 4199, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 181, + ' ', 181, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 158: + case 184: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 3902, - '0', 4011, - '<', 3139, - 'I', 2877, - 'N', 2870, - ']', 3648, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 3947, + '0', 4054, + ':', 3684, + '>', 3708, + 'I', 2917, + 'N', 2910, + ']', 3687, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 159: + case 185: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 3902, - '0', 4011, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 3947, + '0', 4054, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 160: + case 186: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 3902, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 3947, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 161: + case 187: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 2099, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 2141, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 162: + case 188: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 2099, - '0', 3939, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2486, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 2141, + '0', 3982, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2526, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 163: + case 189: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 3903, - '0', 4011, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 3948, + '0', 4054, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 164: + case 190: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 3903, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 3948, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 165: + case 191: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 3903, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 3948, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 166: + case 192: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 2098, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 2140, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 167: + case 193: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 2098, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 2140, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 168: + case 194: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - ',', 4152, - '-', 3694, - '.', 2098, - '0', 3939, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2486, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + ',', 4194, + '-', 3734, + '.', 2140, + '0', 3982, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2526, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, + '\t', 4195, + ' ', 4195, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 169: + case 195: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 3902, - '0', 4011, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 3947, + '0', 4054, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(198); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 170: + case 196: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 3902, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 3947, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 171: + case 197: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 3902, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 3947, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 172: + case 198: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2099, - '0', 4011, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2141, + '0', 4054, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(198); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 173: + case 199: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2099, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2141, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 174: + case 200: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2099, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2141, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 175: + case 201: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2099, - '0', 3939, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2486, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2141, + '0', 3982, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2526, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 176: + case 202: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 3903, - '0', 4011, - '?', 3823, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 3948, + '0', 4054, + '?', 3865, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(198); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 177: + case 203: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 3903, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 3948, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 178: + case 204: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 3903, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 3948, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 179: + case 205: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2098, - '0', 4011, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2140, + '0', 4054, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 180: + case 206: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2098, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2140, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 181: + case 207: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3872, - '-', 3694, - '.', 2098, - '0', 3939, - 'E', 2484, - 'I', 2877, - 'N', 2870, - '_', 2486, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2483, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3916, + '-', 3734, + '.', 2140, + '0', 3982, + 'E', 2528, + 'I', 2917, + 'N', 2910, + '_', 2526, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2527, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 182: + case 208: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4438, - ',', 4152, - '-', 471, - '.', 4434, - '0', 4005, - 'N', 4496, - '[', 3647, - '_', 3766, - '`', 525, - 'e', 4429, - 'f', 4464, - 'n', 4492, - 'o', 4430, - 't', 4479, - '{', 3761, - '}', 3762, - '\t', 4153, - ' ', 4153, - 'I', 4499, - 'i', 4499, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 4480, + ',', 4194, + '-', 497, + '.', 4476, + '0', 4048, + 'N', 4538, + '[', 3686, + '_', 3808, + '`', 553, + 'e', 4471, + 'f', 4506, + 'n', 4534, + 'o', 4472, + 't', 4521, + '{', 3803, + '}', 3804, + '\t', 4195, + ' ', 4195, + 'I', 4541, + 'i', 4541, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4519); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); END_STATE(); - case 183: + case 209: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4985, - '0', 4006, - ';', 4160, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 183, - ' ', 183, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5030, + '0', 4049, + ';', 4202, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 209, + ' ', 209, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(492); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(519); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 184: + case 210: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4985, - '0', 4006, - '?', 3823, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5030, + '0', 4049, + '?', 3865, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(184); + lookahead == ' ') SKIP(210); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 185: + case 211: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4985, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5030, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 186: + case 212: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4985, - '0', 4006, - 'N', 5037, - '[', 4099, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5030, + '0', 4049, + 'N', 5078, + '[', 4141, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 187: + case 213: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4985, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5030, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 188: + case 214: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4985, - '0', 3938, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5030, + '0', 3981, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 189: + case 215: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4987, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5032, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 190: + case 216: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4987, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5032, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 191: + case 217: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 4987, - '0', 3938, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 5032, + '0', 3981, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 192: + case 218: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 3909, - '0', 4006, - '?', 3823, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 3954, + '0', 4049, + '?', 3865, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(184); + lookahead == ' ') SKIP(210); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 193: + case 219: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 3909, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 3954, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 194: + case 220: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 3909, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 3954, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 195: + case 221: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 3894, - '0', 4006, - ';', 4160, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 183, - ' ', 183, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 3939, + '0', 4049, + ';', 4202, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 209, + ' ', 209, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(492); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(519); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 196: + case 222: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 3894, - '0', 4006, - '?', 3823, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 3939, + '0', 4049, + '?', 3865, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(184); + lookahead == ' ') SKIP(210); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 197: + case 223: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 3651, - '-', 4988, - '.', 3894, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 3690, + '-', 5033, + '.', 3939, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 198: + case 224: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4985, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5030, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 199: + case 225: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4985, - '0', 4006, - 'N', 5037, - '[', 4099, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5030, + '0', 4049, + 'N', 5078, + '[', 4141, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 200: + case 226: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4985, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5030, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 201: + case 227: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4985, - '0', 3938, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5030, + '0', 3981, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 202: + case 228: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4987, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5032, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 203: + case 229: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4987, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5032, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 204: + case 230: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 4987, - '0', 3938, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5013, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 5032, + '0', 3981, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5054, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3953); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 205: + case 231: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 3909, - '0', 4006, - '?', 3823, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 3954, + '0', 4049, + '?', 3865, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 206: + case 232: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 3909, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 3954, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 207: + case 233: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 3909, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 3954, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 208: + case 234: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 3894, - '0', 4006, - ';', 4160, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4154, - ' ', 4154, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 3939, + '0', 4049, + ';', 4202, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4196, + ' ', 4196, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4155); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4197); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 209: + case 235: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 3894, - '0', 4006, - '?', 3823, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 3939, + '0', 4049, + '?', 3865, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 210: + case 236: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 3894, - '0', 4006, - 'E', 5015, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4981, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 3939, + '0', 4049, + 'E', 5056, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5026, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 211: + case 237: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4989, - ',', 4152, - '-', 4988, - '.', 3894, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5034, + ',', 4194, + '-', 5033, + '.', 3939, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5084, + 'i', 5084, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 212: + case 238: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3874, - ',', 4152, - '-', 3697, - '.', 1942, - '0', 4012, - 'I', 2072, - 'N', 2069, - '[', 4099, - '_', 1956, - '`', 525, - 'a', 2015, - 'b', 2038, - 'c', 1969, - 'd', 1983, - 'e', 2021, - 'f', 1970, - 'h', 2008, - 'i', 1955, - 'l', 1993, - 'm', 1971, - 'n', 2060, - 'o', 2066, - 'r', 1984, - 's', 2028, - 't', 2034, - 'u', 2049, - 'w', 2006, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3918, + ',', 4194, + '-', 3742, + '.', 1984, + '0', 4055, + 'I', 2114, + 'N', 2111, + '[', 4141, + '_', 1998, + '`', 553, + 'a', 2057, + 'b', 2080, + 'c', 2011, + 'd', 2025, + 'e', 2063, + 'f', 2012, + 'h', 2050, + 'i', 1997, + 'l', 2035, + 'm', 2013, + 'n', 2102, + 'o', 2108, + 'r', 2026, + 's', 2070, + 't', 2076, + 'u', 2091, + 'w', 2048, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5351); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(5393); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2077); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); END_STATE(); - case 213: + case 239: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5076, - '0', 3937, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'd', 5117, - 'e', 5069, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5117, + '0', 3980, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'd', 5150, + 'e', 5110, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 214: + case 240: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5076, - '0', 3937, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5117, + '0', 3980, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 215: + case 241: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5076, - '0', 4010, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'd', 5117, - 'e', 5069, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5117, + '0', 4053, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'd', 5150, + 'e', 5110, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 216: + case 242: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5076, - '0', 4010, - 'E', 5101, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'd', 5117, - 'e', 5066, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5117, + '0', 4053, + 'E', 5134, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'd', 5150, + 'e', 5107, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 217: + case 243: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5076, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5117, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 218: + case 244: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5076, - '0', 4010, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5117, + '0', 4053, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 219: + case 245: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5075, - '0', 3937, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5103, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5116, + '0', 3980, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5136, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3952); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 220: + case 246: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5075, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5116, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 221: + case 247: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 5075, - '0', 4010, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 5116, + '0', 4053, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 222: + case 248: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 3911, - '0', 4010, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'N', 5146, - 'P', 5101, - 'T', 5101, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'd', 5117, - 'e', 5069, - 'f', 5116, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5137, - 'o', 5068, - 'p', 5100, - 's', 5122, - 't', 5099, - 'u', 5138, - 'w', 5125, - '{', 3761, - 0xb5, 5138, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 3956, + '0', 4053, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'N', 5179, + 'P', 5134, + 'T', 5134, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'd', 5150, + 'e', 5110, + 'f', 5149, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5170, + 'o', 5109, + 'p', 5133, + 's', 5155, + 't', 5132, + 'u', 5171, + 'w', 5158, + '{', 3803, + 0xb5, 5171, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 223: + case 249: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 3911, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 3956, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 224: + case 250: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 3651, - '-', 5084, - '.', 3901, - '0', 4010, - 'E', 5112, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5070, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 3690, + '-', 5121, + '.', 3946, + '0', 4053, + 'E', 5145, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5111, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5153); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + lookahead == 'i') ADVANCE(5186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 225: + case 251: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 5085, - ',', 4152, - '-', 5084, - '.', 5075, - '0', 4010, - 'N', 5146, - '[', 3647, - ']', 3648, - '_', 5108, - '`', 525, - 'e', 5067, - 'f', 5116, - 'n', 5142, - 'o', 5068, - 't', 5133, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5153, - 'i', 5153, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5122, + ',', 4194, + '-', 5121, + '.', 5116, + '0', 4053, + 'N', 5179, + '[', 3686, + ']', 3687, + '_', 5141, + '`', 553, + 'e', 5108, + 'f', 5149, + 'n', 5175, + 'o', 5109, + 't', 5166, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5186, + 'i', 5186, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4033); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 226: + case 252: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 3875, - '-', 3700, - '.', 2100, - '0', 4011, - 'I', 2877, - 'N', 2870, - '_', 2478, - '`', 525, - 'a', 2656, - 'b', 2752, - 'c', 2494, - 'd', 2548, - 'e', 2669, - 'f', 2487, - 'h', 2623, - 'i', 2471, - 'l', 2565, - 'm', 2490, - 'n', 2841, - 'o', 2859, - 'r', 2549, - 's', 2704, - 't', 2743, - 'u', 2787, - 'w', 2613, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 3919, + '-', 3739, + '.', 2142, + '0', 4054, + 'I', 2917, + 'N', 2910, + '_', 2521, + '`', 553, + 'a', 2699, + 'b', 2794, + 'c', 2537, + 'd', 2591, + 'e', 2712, + 'f', 2530, + 'h', 2666, + 'i', 2514, + 'l', 2608, + 'm', 2533, + 'n', 2881, + 'o', 2899, + 'r', 2592, + 's', 2747, + 't', 2785, + 'u', 2827, + 'w', 2656, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(226); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 227: + case 253: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3652, - '\'', 413, - '(', 3649, - '+', 4992, - ',', 3651, - '-', 4991, - '.', 4986, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3691, + '\'', 441, + '(', 3688, + '+', 5037, + ',', 3690, + '-', 5036, + '.', 5031, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(227); + lookahead == ' ') SKIP(253); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5043); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == 'i') ADVANCE(5084); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 228: + case 254: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - '+', 473, - '-', 3696, - '.', 474, - '0', 4367, - '=', 4348, - 'N', 4393, - '[', 3647, - '_', 4368, - '`', 525, - 'f', 4375, - 'n', 4382, - 't', 4383, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + '+', 499, + '-', 3736, + '.', 500, + '0', 4409, + '=', 4390, + 'N', 4435, + '[', 3686, + '_', 4410, + '`', 553, + 'f', 4417, + 'n', 4424, + 't', 4425, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4374); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'i') ADVANCE(4440); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4416); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 229: + case 255: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - ';', 4160, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2279, - 'b', 2239, - 'c', 2113, - 'd', 2142, - 'e', 2116, - 'f', 2119, - 'g', 2231, - 'h', 2131, - 'i', 2108, - 'j', 2367, - 'k', 2172, - 'l', 2202, - 'm', 2121, - 'n', 2315, - 'o', 2424, - 'p', 2135, - 'q', 2417, - 'r', 2124, - 's', 2160, - 't', 2125, - 'u', 2326, - 'v', 2243, - 'w', 2238, - '{', 3761, - '\t', 229, - ' ', 229, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + ';', 4202, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2321, + 'b', 2281, + 'c', 2155, + 'd', 2184, + 'e', 2158, + 'f', 2161, + 'g', 2273, + 'h', 2173, + 'i', 2150, + 'j', 2409, + 'k', 2214, + 'l', 2244, + 'm', 2163, + 'n', 2357, + 'o', 2466, + 'p', 2177, + 'q', 2459, + 'r', 2166, + 's', 2202, + 't', 2167, + 'u', 2368, + 'v', 2285, + 'w', 2280, + '{', 3803, + '\t', 255, + ' ', 255, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(492); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(519); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); END_STATE(); - case 230: + case 256: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2279, - 'b', 2240, - 'c', 2114, - 'd', 2143, - 'e', 2116, - 'f', 2119, - 'g', 2231, - 'h', 2131, - 'i', 2110, - 'j', 2367, - 'k', 2172, - 'l', 2202, - 'm', 2147, - 'n', 2315, - 'o', 2424, - 'p', 2135, - 'q', 2417, - 'r', 2123, - 's', 2160, - 't', 2126, - 'u', 2326, - 'v', 2243, - 'w', 2233, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2321, + 'b', 2282, + 'c', 2156, + 'd', 2185, + 'e', 2158, + 'f', 2161, + 'g', 2273, + 'h', 2173, + 'i', 2152, + 'j', 2409, + 'k', 2214, + 'l', 2244, + 'm', 2189, + 'n', 2357, + 'o', 2466, + 'p', 2177, + 'q', 2459, + 'r', 2165, + 's', 2202, + 't', 2168, + 'u', 2368, + 'v', 2285, + 'w', 2275, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(256); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2436); - END_STATE(); - case 231: - ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 2094, - '-', 438, - '.', 2475, - ':', 4157, - '=', 4348, - 'I', 2879, - 'N', 2871, - '[', 4099, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, - '\t', 232, - ' ', 232, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); END_STATE(); - case 232: - ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 2094, - '-', 438, - '.', 2475, - ':', 4157, - 'I', 2879, - 'N', 2871, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, - '\t', 232, - ' ', 232, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); - END_STATE(); - case 233: + case 257: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 473, - '-', 3682, - '.', 474, - '0', 4007, - '=', 1818, - '@', 3672, - 'N', 1632, - '[', 3647, - '_', 514, - '`', 525, - 'f', 641, - 'n', 1265, - 't', 1397, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 499, + '-', 3721, + '.', 500, + '0', 4050, + '=', 1862, + '@', 3711, + 'N', 1659, + '[', 3686, + '_', 541, + '`', 553, + 'f', 669, + 'n', 1292, + 't', 1424, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(234); + lookahead == ' ') SKIP(258); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1645); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4030); + lookahead == 'i') ADVANCE(1672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); END_STATE(); - case 234: + case 258: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 473, - '-', 3682, - '.', 474, - '0', 4007, - '=', 1818, - 'N', 1632, - '[', 3647, - '_', 514, - '`', 525, - 'f', 641, - 'n', 1265, - 't', 1397, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 499, + '-', 3721, + '.', 500, + '0', 4050, + '=', 1862, + 'N', 1659, + '[', 3686, + '_', 541, + '`', 553, + 'f', 669, + 'n', 1292, + 't', 1424, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(234); + lookahead == ' ') SKIP(258); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1645); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4030); + lookahead == 'i') ADVANCE(1672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); END_STATE(); - case 235: + case 259: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 473, - '-', 3695, - '.', 474, - '0', 4007, - 'N', 1632, - '[', 4099, - '_', 514, - '`', 525, - 'f', 641, - 'n', 1265, - 't', 1397, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 499, + '-', 3735, + '.', 500, + '0', 4050, + 'N', 1659, + '[', 4141, + '_', 541, + '`', 553, + 'f', 669, + 'n', 1292, + 't', 1424, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1645); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4030); + lookahead == 'i') ADVANCE(1672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); END_STATE(); - case 236: + case 260: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 473, - '-', 3695, - '.', 474, - '0', 4007, - 'N', 1632, - '[', 3647, - '_', 514, - '`', 525, - 'f', 641, - 'n', 1265, - 't', 1397, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 499, + '-', 3735, + '.', 500, + '0', 4050, + 'N', 1659, + '[', 3686, + '_', 541, + '`', 553, + 'f', 669, + 'n', 1292, + 't', 1424, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1645); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4030); + lookahead == 'i') ADVANCE(1672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); END_STATE(); - case 237: + case 261: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 473, - '-', 3695, - '.', 474, - '0', 3402, - '=', 4348, - 'N', 3530, - '[', 3647, - '_', 3403, - '`', 525, - 'f', 3410, - 'n', 3479, - 't', 3484, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 499, + '-', 3735, + '.', 500, + '0', 3442, + '=', 4390, + 'N', 3570, + '[', 3686, + '_', 3443, + '`', 553, + 'f', 3450, + 'n', 3519, + 't', 3524, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3409); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); + lookahead == 'i') ADVANCE(3582); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); END_STATE(); - case 238: + case 262: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4438, - '-', 471, - '.', 4434, - '0', 4005, - ':', 4157, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4429, - 'f', 4464, - 'n', 4492, - 'o', 4430, - 't', 4479, - '{', 3761, - '\t', 238, - ' ', 238, - 'I', 4499, - 'i', 4499, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4480, + '-', 497, + '.', 4476, + '0', 4048, + ':', 4199, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4471, + 'f', 4506, + 'n', 4534, + 'o', 4472, + 't', 4521, + '{', 3803, + '\t', 262, + ' ', 262, + 'I', 4541, + 'i', 4541, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4519); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); END_STATE(); - case 239: + case 263: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4438, - '-', 471, - '.', 4434, - ':', 4157, - 'N', 4496, - '_', 4451, - '`', 525, - 'e', 4429, - 'f', 4464, - 'n', 4492, - 'o', 4430, - 't', 4479, - '\t', 239, - ' ', 239, - 'I', 4499, - 'i', 4499, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4480, + '-', 497, + '.', 4476, + ':', 4199, + 'N', 4538, + '_', 4493, + '`', 553, + 'e', 4471, + 'f', 4506, + 'n', 4534, + 'o', 4472, + 't', 4521, + '\t', 263, + ' ', 263, + 'I', 4541, + 'i', 4541, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4028); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4519); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); END_STATE(); - case 240: + case 264: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4438, - '-', 471, - '.', 4434, - 'N', 4496, - '_', 4451, - '`', 525, - 'e', 4429, - 'f', 4464, - 'n', 4492, - 'o', 4430, - 't', 4479, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4480, + '-', 497, + '.', 4476, + 'N', 4538, + '_', 4493, + '`', 553, + 'e', 4471, + 'f', 4506, + 'n', 4534, + 'o', 4472, + 't', 4521, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(264); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4519); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); END_STATE(); - case 241: + case 265: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4989, - '-', 4988, - '.', 4990, - '0', 4006, - 'N', 5037, - '[', 3647, - ']', 3648, - '_', 5004, - '`', 525, - 'e', 4979, - 'f', 5017, - 'n', 5034, - 'o', 4980, - 't', 5027, - '{', 3761, - '\t', 4156, - ' ', 4156, - 'I', 5043, - 'i', 5043, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 5034, + '-', 5033, + '.', 5035, + '0', 4049, + 'N', 5078, + '[', 3686, + ']', 3687, + '_', 5045, + '`', 553, + 'e', 5024, + 'f', 5058, + 'n', 5075, + 'o', 5025, + 't', 5068, + '{', 3803, + '\t', 4198, + ' ', 4198, + 'I', 5084, + 'i', 5084, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4029); + lookahead == ',') ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5065); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); END_STATE(); - case 242: + case 266: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 5271, - '-', 5270, - '.', 5269, - '0', 4008, - 'N', 5302, - '[', 3647, - '_', 5277, - '`', 525, - 'e', 5264, - 'f', 5282, - 'n', 5299, - 'o', 5265, - 't', 5292, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4597, + '-', 3744, + '.', 4594, + '0', 3978, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4622, + '`', 553, + 'd', 4638, + 'e', 4614, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4682, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(242); + lookahead == ' ') SKIP(260); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5308); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4031); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5322); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); END_STATE(); - case 243: + case 267: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4553, - '-', 3702, - '.', 4550, - '0', 3935, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4578, - '`', 525, - 'd', 4593, - 'e', 4570, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4637, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4597, + '-', 3744, + '.', 4594, + '0', 4052, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4614, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4682, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3950); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4718); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); END_STATE(); - case 244: + case 268: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4553, - '-', 3702, - '.', 4550, - '0', 4009, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4570, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4637, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4597, + '-', 3744, + '.', 4594, + '0', 4052, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4618, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4682, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4718); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); END_STATE(); - case 245: + case 269: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4553, - '-', 3702, - '.', 4550, - '0', 4009, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4574, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4637, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4597, + '-', 3744, + '.', 4593, + '0', 4052, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'f', 4637, + 'n', 4683, + 't', 4690, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == ' ') SKIP(260); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4718); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); END_STATE(); - case 246: + case 270: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4553, - '-', 3702, - '.', 4549, - '0', 4009, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'f', 4592, - 'n', 4638, - 't', 4645, - '{', 3761, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 4597, + '-', 3744, + '.', 3955, + '0', 4052, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4614, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4682, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4718); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); END_STATE(); - case 247: + case 271: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 4553, - '-', 3702, - '.', 3910, - '0', 4009, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4570, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4637, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + ',', 4194, + '-', 498, + '.', 2518, + 'I', 2919, + 'N', 2911, + ']', 3687, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, + '\t', 4195, + ' ', 4195, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(236); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4718); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 248: + case 272: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - ',', 4152, - '-', 472, - '.', 2475, - 'I', 2879, - 'N', 2871, - ']', 3648, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 464, + '.', 2518, + ':', 4199, + 'I', 2919, + 'N', 2911, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, + '\t', 272, + ' ', 272, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 249: + case 273: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 438, - '.', 3918, - '?', 3823, - 'I', 2879, - 'N', 2871, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 464, + '.', 2518, + '=', 4390, + 'I', 3583, + 'N', 3571, + '_', 3443, + '`', 553, + 'a', 3499, + 'b', 3531, + 'c', 3454, + 'd', 3464, + 'e', 3504, + 'f', 3456, + 'h', 3490, + 'i', 3438, + 'l', 3470, + 'm', 3451, + 'n', 3558, + 'o', 3563, + 'r', 3465, + 's', 3518, + 't', 3526, + 'u', 3541, + 'w', 3487, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(252); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2891); + lookahead == ' ') SKIP(275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 250: + case 274: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 438, - '.', 3918, - 'I', 2879, - 'N', 2871, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 464, + '.', 2518, + '?', 3865, + 'I', 2919, + 'N', 2911, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2891); + lookahead == ' ') SKIP(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); END_STATE(); - case 251: + case 275: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 438, - '.', 2475, - '=', 4348, - 'I', 3543, - 'N', 3531, - '_', 3403, - '`', 525, - 'a', 3459, - 'b', 3491, - 'c', 3414, - 'd', 3424, - 'e', 3464, - 'f', 3416, - 'h', 3450, - 'i', 3398, - 'l', 3430, - 'm', 3411, - 'n', 3518, - 'o', 3523, - 'r', 3425, - 's', 3478, - 't', 3486, - 'u', 3501, - 'w', 3447, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 464, + '.', 2518, + 'I', 2919, + 'N', 2911, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2891); + lookahead == ' ') SKIP(275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); END_STATE(); - case 252: + case 276: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 438, - '.', 2475, - '?', 3823, - 'I', 2879, - 'N', 2871, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 464, + '.', 3962, + '?', 3865, + 'I', 2919, + 'N', 2911, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(252); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2891); + lookahead == ' ') SKIP(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); END_STATE(); - case 253: + case 277: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 438, - '.', 2475, - 'I', 2879, - 'N', 2871, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 464, + '.', 3962, + 'I', 2919, + 'N', 2911, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2891); + lookahead == ' ') SKIP(275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); END_STATE(); - case 254: + case 278: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 4542, - '.', 2101, - 'B', 4078, - 'E', 2465, - 'G', 2470, - 'I', 2879, - 'K', 2470, - 'M', 2470, - 'N', 2871, - 'P', 2470, - 'T', 2470, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 4083, - 'c', 2510, - 'd', 2501, - 'e', 2464, - 'f', 2488, - 'g', 2469, - 'h', 2639, - 'i', 2473, - 'k', 2469, - 'l', 2595, - 'm', 2466, - 'n', 2783, - 'o', 2860, - 'p', 2469, - 'r', 2596, - 's', 2571, - 't', 2468, - 'u', 2785, - 'w', 2619, - 0xb5, 2784, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 4586, + '.', 2518, + 'I', 2919, + 'N', 2911, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(275); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + END_STATE(); + case 279: + ADVANCE_MAP( + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 4586, + '.', 2143, + 'B', 4120, + 'E', 2508, + 'G', 2513, + 'I', 2919, + 'K', 2513, + 'M', 2513, + 'N', 2911, + 'P', 2513, + 'T', 2513, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 4125, + 'c', 2553, + 'd', 2544, + 'e', 2507, + 'f', 2531, + 'g', 2512, + 'h', 2682, + 'i', 2516, + 'k', 2512, + 'l', 2638, + 'm', 2509, + 'n', 2823, + 'o', 2900, + 'p', 2512, + 'r', 2639, + 's', 2614, + 't', 2511, + 'u', 2825, + 'w', 2662, + 0xb5, 2824, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(275); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 255: + case 280: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 4542, - '.', 2101, - 'B', 4078, - 'E', 2465, - 'G', 2470, - 'I', 2879, - 'K', 2470, - 'M', 2470, - 'N', 2871, - 'P', 2470, - 'T', 2470, - '_', 2486, - '`', 525, - 'a', 2678, - 'b', 4083, - 'c', 2510, - 'd', 2501, - 'e', 2464, - 'f', 2488, - 'g', 2469, - 'h', 2639, - 'i', 2473, - 'k', 2469, - 'l', 2595, - 'm', 2466, - 'n', 2783, - 'o', 2860, - 'p', 2469, - 'r', 2596, - 's', 2571, - 't', 2468, - 'u', 2785, - 'w', 2619, - 0xb5, 2784, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 4586, + '.', 2143, + 'B', 4120, + 'E', 2508, + 'G', 2513, + 'I', 2919, + 'K', 2513, + 'M', 2513, + 'N', 2911, + 'P', 2513, + 'T', 2513, + '_', 2526, + '`', 553, + 'a', 2721, + 'b', 4125, + 'c', 2553, + 'd', 2544, + 'e', 2507, + 'f', 2531, + 'g', 2512, + 'h', 2682, + 'i', 2516, + 'k', 2512, + 'l', 2638, + 'm', 2509, + 'n', 2823, + 'o', 2900, + 'p', 2512, + 'r', 2639, + 's', 2614, + 't', 2511, + 'u', 2825, + 'w', 2662, + 0xb5, 2824, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(275); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == '^') ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 256: + case 281: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 4542, - '.', 2101, - 'B', 4078, - 'E', 2470, - 'G', 2470, - 'I', 2879, - 'K', 2470, - 'M', 2470, - 'N', 2871, - 'P', 2470, - 'T', 2470, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 4083, - 'c', 2510, - 'd', 2501, - 'e', 2467, - 'f', 2488, - 'g', 2469, - 'h', 2639, - 'i', 2473, - 'k', 2469, - 'l', 2595, - 'm', 2466, - 'n', 2783, - 'o', 2860, - 'p', 2469, - 'r', 2596, - 's', 2571, - 't', 2468, - 'u', 2785, - 'w', 2619, - 0xb5, 2784, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 4586, + '.', 2143, + 'B', 4120, + 'E', 2513, + 'G', 2513, + 'I', 2919, + 'K', 2513, + 'M', 2513, + 'N', 2911, + 'P', 2513, + 'T', 2513, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 4125, + 'c', 2553, + 'd', 2544, + 'e', 2510, + 'f', 2531, + 'g', 2512, + 'h', 2682, + 'i', 2516, + 'k', 2512, + 'l', 2638, + 'm', 2509, + 'n', 2823, + 'o', 2900, + 'p', 2512, + 'r', 2639, + 's', 2614, + 't', 2511, + 'u', 2825, + 'w', 2662, + 0xb5, 2824, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(275); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 257: + case 282: ADVANCE_MAP( - '"', 4129, - '#', 5541, - '\'', 413, - '+', 2094, - '-', 4542, - '.', 3907, - 'B', 4078, - 'E', 2465, - 'G', 2470, - 'I', 2879, - 'K', 2470, - 'M', 2470, - 'N', 2871, - 'P', 2470, - 'T', 2470, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 4083, - 'c', 2510, - 'd', 2501, - 'e', 2464, - 'f', 2488, - 'g', 2469, - 'h', 2639, - 'i', 2473, - 'k', 2469, - 'l', 2595, - 'm', 2466, - 'n', 2783, - 'o', 2860, - 'p', 2469, - 'r', 2596, - 's', 2571, - 't', 2468, - 'u', 2785, - 'w', 2619, - 0xb5, 2784, + '"', 4171, + '#', 5586, + '\'', 441, + '+', 2136, + '-', 4586, + '.', 3952, + 'B', 4120, + 'E', 2508, + 'G', 2513, + 'I', 2919, + 'K', 2513, + 'M', 2513, + 'N', 2911, + 'P', 2513, + 'T', 2513, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 4125, + 'c', 2553, + 'd', 2544, + 'e', 2507, + 'f', 2531, + 'g', 2512, + 'h', 2682, + 'i', 2516, + 'k', 2512, + 'l', 2638, + 'm', 2509, + 'n', 2823, + 'o', 2900, + 'p', 2512, + 'r', 2639, + 's', 2614, + 't', 2511, + 'u', 2825, + 'w', 2662, + 0xb5, 2824, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(275); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == '^') ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 258: - if (lookahead == '"') ADVANCE(4129); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '\'') ADVANCE(413); - if (lookahead == '`') ADVANCE(525); + case 283: + ADVANCE_MAP( + '"', 4171, + '#', 5586, + '\'', 441, + '.', 3936, + '>', 3708, + '?', 3865, + ']', 3687, + '`', 553, + '}', 3804, + '\t', 4198, + ' ', 4198, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3419); + END_STATE(); + case 284: + if (lookahead == '"') ADVANCE(4171); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '\'') ADVANCE(441); + if (lookahead == '`') ADVANCE(553); if (lookahead == '\t' || - lookahead == ' ') SKIP(258); + lookahead == ' ') SKIP(284); END_STATE(); - case 259: - if (lookahead == '"') ADVANCE(4129); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '\'') ADVANCE(4161); - if (lookahead == '`') ADVANCE(4162); + case 285: + if (lookahead == '"') ADVANCE(4171); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '\'') ADVANCE(4203); + if (lookahead == '`') ADVANCE(4204); if (lookahead == '\t' || - lookahead == ' ') SKIP(258); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4163); + lookahead == ' ') SKIP(284); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4205); END_STATE(); - case 260: + case 286: ADVANCE_MAP( - '"', 4129, - '#', 5544, - '$', 3656, - '\'', 413, - '(', 3853, - '+', 3873, - ',', 2891, - '-', 3698, - '.', 5426, - '0', 5429, - 'I', 5527, - 'N', 5524, - '_', 5431, - '`', 525, - 'a', 5475, - 'b', 5497, - 'c', 5435, - 'd', 5446, - 'e', 5481, - 'f', 5436, - 'h', 5468, - 'i', 5428, - 'l', 5456, - 'm', 5437, - 'n', 5516, - 'o', 5522, - 'r', 5447, - 's', 5487, - 't', 5493, - 'u', 5505, - 'w', 5467, - '}', 3762, + '"', 4171, + '#', 5589, + '$', 3695, + '\'', 441, + '(', 3895, + '+', 3917, + ',', 2931, + '-', 3737, + '.', 5468, + '0', 5473, + 'I', 5571, + 'N', 5568, + '_', 5475, + '`', 553, + 'a', 5519, + 'b', 5541, + 'c', 5479, + 'd', 5490, + 'e', 5525, + 'f', 5480, + 'h', 5512, + 'i', 5472, + 'l', 5500, + 'm', 5481, + 'n', 5560, + 'o', 5566, + 'r', 5491, + 's', 5531, + 't', 5537, + 'u', 5549, + 'w', 5511, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(174); + lookahead == ' ') SKIP(200); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5534); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5431); + lookahead == '^') ADVANCE(5579); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5475); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5577); END_STATE(); - case 261: + case 287: ADVANCE_MAP( - '"', 4129, - '#', 5544, - '$', 3656, - '\'', 413, - '(', 3853, - '+', 3873, - ',', 4152, - '-', 3698, - '.', 5426, - '0', 5429, - 'I', 5527, - 'N', 5524, - '_', 5431, - '`', 525, - 'a', 5475, - 'b', 5497, - 'c', 5435, - 'd', 5446, - 'e', 5481, - 'f', 5436, - 'h', 5468, - 'i', 5428, - 'l', 5456, - 'm', 5437, - 'n', 5516, - 'o', 5522, - 'r', 5447, - 's', 5487, - 't', 5493, - 'u', 5505, - 'w', 5467, - '}', 3762, - '\t', 4153, - ' ', 4153, + '"', 4171, + '#', 5589, + '$', 3695, + '\'', 441, + '(', 3895, + '+', 3917, + ',', 4194, + '-', 3737, + '.', 5468, + '0', 5473, + 'I', 5571, + 'N', 5568, + '_', 5475, + '`', 553, + 'a', 5519, + 'b', 5541, + 'c', 5479, + 'd', 5490, + 'e', 5525, + 'f', 5480, + 'h', 5512, + 'i', 5472, + 'l', 5500, + 'm', 5481, + 'n', 5560, + 'o', 5566, + 'r', 5491, + 's', 5531, + 't', 5537, + 'u', 5549, + 'w', 5511, + '}', 3804, + '\t', 4195, + ' ', 4195, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5534); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5431); + lookahead == '^') ADVANCE(5579); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5475); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5533); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5577); END_STATE(); - case 262: + case 288: ADVANCE_MAP( - '"', 4129, - '#', 5547, - '$', 3654, - '\'', 413, - '(', 3649, - '+', 4748, - '-', 3699, - '.', 4749, - '0', 4770, - 'N', 4936, - '[', 3647, - '_', 4772, - '`', 525, - 'f', 4782, - 'n', 4865, - 't', 4869, - '{', 3761, + '"', 4171, + '#', 5592, + '$', 3693, + '\'', 441, + '(', 3688, + '+', 4793, + '-', 3738, + '.', 4794, + '0', 4815, + 'N', 4981, + '[', 3686, + '_', 4817, + '`', 553, + 'f', 4827, + 'n', 4910, + 't', 4914, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(260); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4946); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4775); + lookahead == 'i') ADVANCE(4991); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4820); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4977); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5022); END_STATE(); - case 263: + case 289: ADVANCE_MAP( - '"', 4129, - '#', 5547, - '\'', 413, - '+', 4750, - '-', 4740, - '.', 4777, - 'I', 4948, - 'N', 4937, - '_', 4781, - '`', 525, - 'a', 4840, - 'b', 4877, - 'c', 4783, - 'd', 4802, - 'e', 4837, - 'f', 4784, - 'h', 4823, - 'i', 4768, - 'l', 4806, - 'm', 4785, - 'n', 4915, - 'o', 4923, - 'r', 4803, - 's', 4855, - 't', 4876, - 'u', 4894, - 'w', 4822, + '"', 4171, + '#', 5592, + '\'', 441, + '+', 4795, + '-', 4785, + '.', 4822, + 'I', 4993, + 'N', 4982, + '_', 4826, + '`', 553, + 'a', 4885, + 'b', 4922, + 'c', 4828, + 'd', 4847, + 'e', 4882, + 'f', 4829, + 'h', 4868, + 'i', 4813, + 'l', 4851, + 'm', 4830, + 'n', 4960, + 'o', 4968, + 'r', 4848, + 's', 4900, + 't', 4921, + 'u', 4939, + 'w', 4867, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(275); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4781); + lookahead == '^') ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4957); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5002); END_STATE(); - case 264: + case 290: ADVANCE_MAP( - '"', 4129, - '#', 5546, - '$', 3657, - '\'', 413, - '(', 3853, - '+', 5192, - ',', 4152, - '-', 5191, - '.', 5193, - '0', 5206, - 'N', 5235, - '[', 3647, - ']', 3648, - '_', 5208, - '`', 525, - 'e', 5185, - 'f', 5214, - 'n', 5231, - 'o', 5186, - 't', 5224, - '{', 3761, - '\t', 4153, - ' ', 4153, - 'I', 5240, - 'i', 5240, + '"', 4171, + '#', 5591, + '$', 3696, + '\'', 441, + '(', 3895, + '+', 5225, + ',', 4194, + '-', 5224, + '.', 5226, + '0', 5237, + 'N', 5266, + '[', 3686, + ']', 3687, + '_', 5239, + '`', 553, + 'e', 5218, + 'f', 5245, + 'n', 5262, + 'o', 5219, + 't', 5255, + '{', 3803, + '\t', 4195, + ' ', 4195, + 'I', 5271, + 'i', 5271, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5211); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5242); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5263); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5293); END_STATE(); - case 265: + case 291: ADVANCE_MAP( - '"', 4129, - '#', 5546, - '$', 3657, - '\'', 413, - '(', 3649, - '+', 5192, - ',', 3651, - '-', 5191, - '.', 5193, - '0', 5206, - 'N', 5235, - '[', 3647, - ']', 3648, - '_', 5208, - '`', 525, - 'e', 5185, - 'f', 5214, - 'n', 5231, - 'o', 5186, - 't', 5224, - '{', 3761, + '"', 4171, + '#', 5591, + '$', 3696, + '\'', 441, + '(', 3688, + '+', 5225, + ',', 3690, + '-', 5224, + '.', 5226, + '0', 5237, + 'N', 5266, + '[', 3686, + ']', 3687, + '_', 5239, + '`', 553, + 'e', 5218, + 'f', 5245, + 'n', 5262, + 'o', 5219, + 't', 5255, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(187); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5240); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5211); + lookahead == 'i') ADVANCE(5271); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5242); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5263); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5293); END_STATE(); - case 266: - if (lookahead == '"') ADVANCE(4129); - if (lookahead == '#') ADVANCE(4132); - if (lookahead == '\\') ADVANCE(1573); + case 292: + if (lookahead == '"') ADVANCE(4171); + if (lookahead == '#') ADVANCE(4174); + if (lookahead == '\\') ADVANCE(1600); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4131); - if (lookahead != 0) ADVANCE(4132); + lookahead == ' ') ADVANCE(4173); + if (lookahead != 0) ADVANCE(4174); END_STATE(); - case 267: - if (lookahead == '"') ADVANCE(4130); - if (lookahead == '#') ADVANCE(5550); - if (lookahead == '$') ADVANCE(3655); - if (lookahead == '\'') ADVANCE(4420); - if (lookahead == '(') ADVANCE(3649); - if (lookahead == '`') ADVANCE(4421); + case 293: + if (lookahead == '"') ADVANCE(4172); + if (lookahead == '#') ADVANCE(5595); + if (lookahead == '$') ADVANCE(3694); + if (lookahead == '\'') ADVANCE(4462); + if (lookahead == '(') ADVANCE(3688); + if (lookahead == '`') ADVANCE(4463); if (lookahead == '\t' || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(293); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 268: - if (lookahead == '"') ADVANCE(4148); - if (lookahead == '#') ADVANCE(4139); - if (lookahead == '(') ADVANCE(3649); - if (lookahead == '\\') ADVANCE(1544); + case 294: + if (lookahead == '"') ADVANCE(4190); + if (lookahead == '#') ADVANCE(4181); + if (lookahead == '(') ADVANCE(3688); + if (lookahead == '\\') ADVANCE(1571); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4138); - if (lookahead != 0) ADVANCE(4139); + lookahead == ' ') ADVANCE(4180); + if (lookahead != 0) ADVANCE(4181); END_STATE(); - case 269: + case 295: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '(', 3853, - '.', 4580, - '=', 4560, - '_', 4578, - 'i', 4610, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + '.', 3963, + '=', 4604, + '_', 4622, + 'i', 4655, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(328); if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 270: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(4580); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '|') ADVANCE(3611); + case 296: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(3963); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(303); + lookahead == ' ') SKIP(329); if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 271: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(4580); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '{') ADVANCE(3761); + case 297: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(3963); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(305); + lookahead == ' ') SKIP(331); if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 272: - ADVANCE_MAP( - '#', 5541, - '$', 3652, - '(', 3853, - '.', 5105, - ']', 3648, - '_', 5103, - '\t', 4156, - ' ', 4156, - '+', 5082, - '-', 5082, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); - END_STATE(); - case 273: + case 298: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '(', 3853, - '.', 3919, - '=', 4560, - '_', 4578, - 'i', 4610, - '|', 3611, + '#', 5586, + '$', 3691, + '(', 3895, + '.', 4624, + '=', 4604, + '_', 4622, + 'i', 4655, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(328); if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 274: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(3919); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '|') ADVANCE(3611); + case 299: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(4624); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(303); + lookahead == ' ') SKIP(329); if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 275: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(3919); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '{') ADVANCE(3761); + case 300: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(4624); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(305); + lookahead == ' ') SKIP(331); if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 276: + case 301: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '(', 3853, - '.', 5334, - '_', 5333, - '}', 3762, - '\t', 4156, - ' ', 4156, - '+', 5325, - '-', 5325, + '#', 5586, + '$', 3691, + '(', 3895, + '.', 3965, + ']', 3687, + '_', 5379, + '}', 3804, + '\t', 4198, + ' ', 4198, + '+', 5363, + '-', 5363, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5351); + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5393); END_STATE(); - case 277: + case 302: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '(', 3853, - '.', 3921, - ']', 3648, - '_', 5333, - '}', 3762, - '\t', 4156, - ' ', 4156, - '+', 5325, - '-', 5325, + '#', 5586, + '$', 3691, + '(', 3895, + '.', 5138, + ']', 3687, + '_', 5136, + '\t', 4198, + ' ', 4198, + '+', 5120, + '-', 5120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && + lookahead != ';' && lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5351); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 278: + case 303: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '(', 3853, - '.', 3920, - ']', 3648, - '_', 5103, - '\t', 4156, - ' ', 4156, - '+', 5082, - '-', 5082, + '#', 5586, + '$', 3691, + '(', 3895, + '.', 3964, + ']', 3687, + '_', 5136, + '\t', 4198, + ' ', 4198, + '+', 5120, + '-', 5120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24218,697 +25646,715 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 279: + case 304: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 3906, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '#', 5586, + '$', 3691, + '(', 3895, + '.', 5374, + '_', 5379, + '}', 3804, + '\t', 4198, + ' ', 4198, + '+', 5363, + '-', 5363, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5393); + END_STATE(); + case 305: + ADVANCE_MAP( + '#', 5586, + '$', 3691, + '-', 3720, + '.', 3951, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); + lookahead == ' ') SKIP(317); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 280: + case 306: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 3906, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '-', 3720, + '.', 3951, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(321); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 281: + case 307: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '#', 5586, + '$', 3691, + '-', 3720, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); + lookahead == ' ') SKIP(317); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 282: + case 308: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '#', 5586, + '$', 3691, + '-', 3720, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); + lookahead == ' ') SKIP(317); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 283: + case 309: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 4551, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4574, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '#', 5586, + '$', 3691, + '-', 3720, + '.', 4595, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4618, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); + lookahead == ' ') SKIP(317); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 284: + case 310: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 4551, - 'E', 3316, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3315, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '-', 3720, + '.', 4595, + 'E', 3356, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3355, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(321); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 285: + case 311: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 4551, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - '_', 3320, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '-', 3720, + '.', 4595, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + '_', 3360, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(321); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); + lookahead == 'b') ADVANCE(4126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 286: + case 312: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - '.', 4551, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '-', 3720, + '.', 4595, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(321); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 287: + case 313: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - ':', 4157, - ';', 4160, - '=', 4348, - '{', 3761, - '\t', 288, - ' ', 288, + '#', 5586, + '$', 3691, + '-', 3720, + ':', 4199, + ';', 4202, + '=', 4390, + '{', 3803, + '\t', 314, + ' ', 314, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(488); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 288: + case 314: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '-', 3681, - ':', 4157, - ';', 4160, - '{', 3761, - '\t', 288, - ' ', 288, + '#', 5586, + '$', 3691, + '-', 3720, + ':', 4199, + ';', 4202, + '{', 3803, + '\t', 314, + ' ', 314, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(488); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 289: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3681); - if (lookahead == '=') ADVANCE(4348); - if (lookahead == '{') ADVANCE(3761); + case 315: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3720); + if (lookahead == '=') ADVANCE(4390); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); + lookahead == ' ') SKIP(317); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); END_STATE(); - case 290: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3681); - if (lookahead == '=') ADVANCE(4348); + case 316: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3720); + if (lookahead == '=') ADVANCE(4390); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3529); + lookahead == ' ') SKIP(321); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3569); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3379); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3419); END_STATE(); - case 291: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3681); - if (lookahead == '{') ADVANCE(3761); + case 317: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3720); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); + lookahead == ' ') SKIP(317); END_STATE(); - case 292: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3681); - if (lookahead == '{') ADVANCE(3761); + case 318: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3720); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(317); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 293: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3681); - if (lookahead == '{') ADVANCE(3761); + case 319: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3720); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(319); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 294: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3681); + case 320: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3720); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(321); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 295: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3681); + case 321: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3720); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(321); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 296: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3689); - if (lookahead == '=') ADVANCE(4348); - if (lookahead == '{') ADVANCE(3761); + case 322: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3731); + if (lookahead == '=') ADVANCE(4390); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == ' ') SKIP(317); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 297: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '-') ADVANCE(3689); - if (lookahead == '=') ADVANCE(4348); + case 323: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '-') ADVANCE(3731); + if (lookahead == '=') ADVANCE(4390); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(321); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(4419); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4402); + lookahead == '@') ADVANCE(4461); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4444); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3379); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3419); END_STATE(); - case 298: + case 324: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '.', 3906, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '.', 3951, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); + lookahead == ' ') SKIP(335); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 299: + case 325: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '.', 4551, - 'E', 3316, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3315, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '.', 4595, + 'E', 3356, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3355, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); + lookahead == ' ') SKIP(335); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 300: + case 326: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '.', 4551, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - '_', 3320, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '.', 4595, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + '_', 3360, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); + lookahead == ' ') SKIP(335); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); + lookahead == 'b') ADVANCE(4126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 301: + case 327: ADVANCE_MAP( - '#', 5541, - '$', 3652, - '.', 4551, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '$', 3691, + '.', 4595, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); + lookahead == ' ') SKIP(335); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 302: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '.') ADVANCE(522); - if (lookahead == '=') ADVANCE(497); - if (lookahead == 'i') ADVANCE(880); - if (lookahead == '|') ADVANCE(3611); + case 328: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '.') ADVANCE(545); + if (lookahead == '=') ADVANCE(524); + if (lookahead == 'i') ADVANCE(908); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(302); + lookahead == ' ') SKIP(328); if (lookahead == '+' || - lookahead == '-') ADVANCE(478); + lookahead == '-') ADVANCE(503); END_STATE(); - case 303: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '.') ADVANCE(522); - if (lookahead == '=') ADVANCE(497); - if (lookahead == '|') ADVANCE(3611); + case 329: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '.') ADVANCE(545); + if (lookahead == '=') ADVANCE(524); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(303); + lookahead == ' ') SKIP(329); if (lookahead == '+' || - lookahead == '-') ADVANCE(478); + lookahead == '-') ADVANCE(503); END_STATE(); - case 304: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '.') ADVANCE(522); - if (lookahead == ']') ADVANCE(3648); + case 330: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '.') ADVANCE(545); + if (lookahead == ']') ADVANCE(3687); if (lookahead == '\t' || - lookahead == ' ') SKIP(304); + lookahead == ' ') SKIP(330); if (lookahead == '+' || - lookahead == '-') ADVANCE(478); + lookahead == '-') ADVANCE(503); END_STATE(); - case 305: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '.') ADVANCE(522); - if (lookahead == '{') ADVANCE(3761); + case 331: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '.') ADVANCE(545); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(305); + lookahead == ' ') SKIP(331); if (lookahead == '+' || - lookahead == '-') ADVANCE(478); + lookahead == '-') ADVANCE(503); END_STATE(); - case 306: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '.') ADVANCE(522); + case 332: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '.') ADVANCE(545); if (lookahead == '\t' || - lookahead == ' ') SKIP(306); + lookahead == ' ') SKIP(332); if (lookahead == '+' || - lookahead == '-') ADVANCE(478); + lookahead == '-') ADVANCE(503); END_STATE(); - case 307: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '=') ADVANCE(4348); + case 333: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '=') ADVANCE(4390); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); + lookahead == ' ') SKIP(335); if (lookahead == '!' || lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(4419); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4402); + lookahead == '@') ADVANCE(4461); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4444); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3379); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3419); END_STATE(); - case 308: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); + case 334: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); + lookahead == ' ') SKIP(335); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 309: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); + case 335: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(335); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 310: + case 336: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 3906, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'P', 5101, - 'T', 5101, - ']', 3648, - 'd', 5117, - 'e', 5097, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5138, - 'p', 5100, - 's', 5122, - 't', 5100, - 'u', 5138, - 'w', 5125, - '}', 3762, - 0xb5, 5138, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + '.', 3951, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'P', 5134, + 'T', 5134, + ']', 3687, + 'd', 5150, + 'e', 5130, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5171, + 'p', 5133, + 's', 5155, + 't', 5133, + 'u', 5171, + 'w', 5158, + '}', 3804, + 0xb5, 5171, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24916,56 +26362,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 311: + case 337: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 3906, - 'E', 5327, - 'G', 5329, - 'K', 5329, - 'M', 5329, - 'P', 5329, - 'T', 5329, - 'd', 5339, - 'e', 5326, - 'g', 5328, - 'h', 5345, - 'k', 5328, - 'm', 5330, - 'n', 5346, - 'p', 5328, - 's', 5342, - 't', 5328, - 'u', 5346, - 'w', 5343, - '}', 3762, - 0xb5, 5346, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + '.', 3951, + 'E', 5365, + 'G', 5367, + 'K', 5367, + 'M', 5367, + 'P', 5367, + 'T', 5367, + 'd', 5380, + 'e', 5364, + 'g', 5366, + 'h', 5386, + 'k', 5366, + 'm', 5368, + 'n', 5387, + 'p', 5366, + 's', 5383, + 't', 5366, + 'u', 5387, + 'w', 5384, + '}', 3804, + 0xb5, 5387, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); - case 312: + case 338: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 3906, - ']', 3648, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5112, - 'e', 5112, + '#', 5586, + '(', 3895, + '.', 3951, + ']', 3687, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5145, + 'e', 5145, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24973,254 +26419,104 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 313: + case 339: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 3906, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5337, - 'e', 5337, + '#', 5586, + '(', 3895, + '.', 3951, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5377, + 'e', 5377, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); - case 314: + case 340: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 3892, - ']', 3648, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5112, - 'e', 5112, + '#', 5586, + '(', 3895, + '.', 3936, + ']', 3687, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5377, + 'e', 5377, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ':' && lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5393); END_STATE(); - case 315: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(3892); - if (lookahead == '{') ADVANCE(3761); - if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 316: - ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 3892, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5337, - 'e', 5337, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); - END_STATE(); - case 317: - ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5324, - 'E', 5327, - 'G', 5329, - 'K', 5329, - 'M', 5329, - 'P', 5329, - 'T', 5329, - '_', 5333, - 'd', 5339, - 'e', 5326, - 'g', 5328, - 'h', 5345, - 'k', 5328, - 'm', 5330, - 'n', 5346, - 'p', 5328, - 's', 5342, - 't', 5328, - 'u', 5346, - 'w', 5343, - '}', 3762, - 0xb5, 5346, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); - END_STATE(); - case 318: - ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5324, - 'E', 5327, - 'G', 5329, - 'K', 5329, - 'M', 5329, - 'P', 5329, - 'T', 5329, - 'd', 5339, - 'e', 5326, - 'g', 5328, - 'h', 5345, - 'k', 5328, - 'm', 5330, - 'n', 5346, - 'p', 5328, - 's', 5342, - 't', 5328, - 'u', 5346, - 'w', 5343, - '}', 3762, - 0xb5, 5346, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); - END_STATE(); - case 319: - ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5324, - 'E', 5329, - 'G', 5329, - 'K', 5329, - 'M', 5329, - 'P', 5329, - 'T', 5329, - 'd', 5339, - 'e', 5328, - 'g', 5328, - 'h', 5345, - 'k', 5328, - 'm', 5330, - 'n', 5346, - 'p', 5328, - 's', 5342, - 't', 5328, - 'u', 5346, - 'w', 5343, - '}', 3762, - 0xb5, 5346, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); - END_STATE(); - case 320: - ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5324, - '_', 5333, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5337, - 'e', 5337, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); - END_STATE(); - case 321: + case 341: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5324, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5337, - 'e', 5337, + '#', 5586, + '(', 3895, + '.', 3936, + ']', 3687, + '\t', 4198, + ' ', 4198, + 'E', 5145, + 'e', 5145, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); - END_STATE(); - case 322: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(5324); - if (lookahead == '}') ADVANCE(3762); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + lookahead == ',') ADVANCE(4194); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 323: + case 342: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5077, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'P', 5101, - 'T', 5101, - ']', 3648, - '_', 5103, - 'd', 5117, - 'e', 5097, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5138, - 'p', 5100, - 's', 5122, - 't', 5100, - 'u', 5138, - 'w', 5125, - '}', 3762, - 0xb5, 5138, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + '.', 5118, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'P', 5134, + 'T', 5134, + ']', 3687, + '_', 5136, + 'd', 5150, + 'e', 5130, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5171, + 'p', 5133, + 's', 5155, + 't', 5133, + 'u', 5171, + 'w', 5158, + '}', 3804, + 0xb5, 5171, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25229,41 +26525,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 324: + case 343: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5077, - 'E', 5098, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'P', 5101, - 'T', 5101, - ']', 3648, - 'd', 5117, - 'e', 5097, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5138, - 'p', 5100, - 's', 5122, - 't', 5100, - 'u', 5138, - 'w', 5125, - '}', 3762, - 0xb5, 5138, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + '.', 5118, + 'E', 5131, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'P', 5134, + 'T', 5134, + ']', 3687, + 'd', 5150, + 'e', 5130, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5171, + 'p', 5133, + 's', 5155, + 't', 5133, + 'u', 5171, + 'w', 5158, + '}', 3804, + 0xb5, 5171, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25271,41 +26567,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 325: + case 344: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5077, - 'E', 5101, - 'G', 5101, - 'K', 5101, - 'M', 5101, - 'P', 5101, - 'T', 5101, - ']', 3648, - 'd', 5117, - 'e', 5100, - 'g', 5100, - 'h', 5132, - 'k', 5100, - 'm', 5102, - 'n', 5138, - 'p', 5100, - 's', 5122, - 't', 5100, - 'u', 5138, - 'w', 5125, - '}', 3762, - 0xb5, 5138, - '\t', 4156, - ' ', 4156, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + '.', 5118, + 'E', 5134, + 'G', 5134, + 'K', 5134, + 'M', 5134, + 'P', 5134, + 'T', 5134, + ']', 3687, + 'd', 5150, + 'e', 5133, + 'g', 5133, + 'h', 5165, + 'k', 5133, + 'm', 5135, + 'n', 5171, + 'p', 5133, + 's', 5155, + 't', 5133, + 'u', 5171, + 'w', 5158, + '}', 3804, + 0xb5, 5171, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25313,24 +26609,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 326: + case 345: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5077, - ']', 3648, - '_', 5103, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5112, - 'e', 5112, + '#', 5586, + '(', 3895, + '.', 5118, + ']', 3687, + '_', 5136, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5145, + 'e', 5145, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25339,22 +26635,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 327: + case 346: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '.', 5077, - ']', 3648, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5112, - 'e', 5112, + '#', 5586, + '(', 3895, + '.', 5118, + ']', 3687, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5145, + 'e', 5145, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25362,18 +26658,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 328: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(5077); - if (lookahead == ']') ADVANCE(3648); - if (lookahead == '}') ADVANCE(3762); + case 347: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(5118); + if (lookahead == ']') ADVANCE(3687); + if (lookahead == '}') ADVANCE(3804); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); + lookahead == ' ') ADVANCE(4198); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25381,22 +26677,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 329: + case 348: + ADVANCE_MAP( + '#', 5586, + '(', 3895, + '.', 5357, + 'E', 5365, + 'G', 5367, + 'K', 5367, + 'M', 5367, + 'P', 5367, + 'T', 5367, + '_', 5379, + 'd', 5380, + 'e', 5364, + 'g', 5366, + 'h', 5386, + 'k', 5366, + 'm', 5368, + 'n', 5387, + 'p', 5366, + 's', 5383, + 't', 5366, + 'u', 5387, + 'w', 5384, + '}', 3804, + 0xb5, 5387, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + END_STATE(); + case 349: ADVANCE_MAP( - '#', 5541, - '(', 3853, - ']', 3648, - '_', 5103, - '\t', 4156, - ' ', 4156, - 'E', 5112, - 'e', 5112, + '#', 5586, + '(', 3895, + '.', 5357, + 'E', 5365, + 'G', 5367, + 'K', 5367, + 'M', 5367, + 'P', 5367, + 'T', 5367, + 'd', 5380, + 'e', 5364, + 'g', 5366, + 'h', 5386, + 'k', 5366, + 'm', 5368, + 'n', 5387, + 'p', 5366, + 's', 5383, + 't', 5366, + 'u', 5387, + 'w', 5384, + '}', 3804, + 0xb5, 5387, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + END_STATE(); + case 350: + ADVANCE_MAP( + '#', 5586, + '(', 3895, + '.', 5357, + 'E', 5367, + 'G', 5367, + 'K', 5367, + 'M', 5367, + 'P', 5367, + 'T', 5367, + 'd', 5380, + 'e', 5366, + 'g', 5366, + 'h', 5386, + 'k', 5366, + 'm', 5368, + 'n', 5387, + 'p', 5366, + 's', 5383, + 't', 5366, + 'u', 5387, + 'w', 5384, + '}', 3804, + 0xb5, 5387, + '\t', 4198, + ' ', 4198, + 'B', 4120, + 'b', 4120, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + END_STATE(); + case 351: + ADVANCE_MAP( + '#', 5586, + '(', 3895, + '.', 5357, + '_', 5379, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5377, + 'e', 5377, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + END_STATE(); + case 352: + ADVANCE_MAP( + '#', 5586, + '(', 3895, + '.', 5357, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5377, + 'e', 5377, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + END_STATE(); + case 353: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(5357); + if (lookahead == '}') ADVANCE(3804); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4198); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + END_STATE(); + case 354: + ADVANCE_MAP( + '#', 5586, + '(', 3895, + ']', 3687, + '_', 5136, + '\t', 4198, + ' ', 4198, + 'E', 5145, + 'e', 5145, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25405,18 +26848,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 330: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == ']') ADVANCE(3648); + case 355: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == ']') ADVANCE(3687); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); + lookahead == ' ') ADVANCE(4198); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5112); + lookahead == 'e') ADVANCE(5145); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25424,16 +26867,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 331: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == ']') ADVANCE(3648); + case 356: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == ']') ADVANCE(3687); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); + lookahead == ' ') ADVANCE(4198); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25441,9197 +26884,9924 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5175); - END_STATE(); - case 332: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '{') ADVANCE(3761); - if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); END_STATE(); - case 333: + case 357: ADVANCE_MAP( - '#', 5541, - '(', 3853, - '_', 5333, - '}', 3762, - '\t', 4156, - ' ', 4156, - 'E', 5337, - 'e', 5337, + '#', 5586, + '(', 3895, + '_', 5379, + '}', 3804, + '\t', 4198, + ' ', 4198, + 'E', 5377, + 'e', 5377, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); - END_STATE(); - case 334: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '{') ADVANCE(3761); - if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 335: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '{') ADVANCE(3761); - if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ',') ADVANCE(4194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); - case 336: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '}') ADVANCE(3762); + case 358: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '}') ADVANCE(3804); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); + lookahead == ' ') ADVANCE(4198); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5337); + lookahead == 'e') ADVANCE(5377); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); - case 337: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '}') ADVANCE(3762); + case 359: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '}') ADVANCE(3804); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); + lookahead == ' ') ADVANCE(4198); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); - case 338: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == ',') ADVANCE(3651); - if (lookahead == ']') ADVANCE(3648); + case 360: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == ',') ADVANCE(3690); + if (lookahead == ']') ADVANCE(3687); if (lookahead == '\t' || - lookahead == ' ') SKIP(338); + lookahead == ' ') SKIP(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4100); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4142); END_STATE(); - case 339: + case 361: ADVANCE_MAP( - '#', 5541, - ',', 4152, - '.', 3892, - ';', 4160, - '?', 3823, - ']', 3648, - '\t', 4154, - ' ', 4154, + '#', 5586, + ',', 4194, + '.', 3936, + ';', 4202, + '?', 3865, + ']', 3687, + '\t', 4196, + ' ', 4196, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4155); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4197); END_STATE(); - case 340: + case 362: ADVANCE_MAP( - '#', 5541, - '-', 3681, - '.', 3906, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '-', 3720, + '.', 3951, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); + lookahead == ' ') SKIP(367); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 341: + case 363: ADVANCE_MAP( - '#', 5541, - '-', 3681, - '.', 4551, - 'E', 3316, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3315, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '-', 3720, + '.', 4595, + 'E', 3356, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3355, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); + lookahead == ' ') SKIP(367); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 342: + case 364: ADVANCE_MAP( - '#', 5541, - '-', 3681, - '.', 4551, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - '_', 3320, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '-', 3720, + '.', 4595, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + '_', 3360, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); + lookahead == ' ') SKIP(367); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); + lookahead == 'b') ADVANCE(4126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 343: + case 365: ADVANCE_MAP( - '#', 5541, - '-', 3681, - '.', 4551, - 'E', 3306, - 'G', 3316, - 'K', 3316, - 'M', 3316, - 'P', 3316, - 'T', 3316, - 'd', 3322, - 'e', 3305, - 'g', 3315, - 'h', 3353, - 'k', 3315, - 'm', 3317, - 'n', 3357, - 'p', 3315, - 's', 3332, - 't', 3315, - 'u', 3357, - 'w', 3336, - 0xb5, 3357, + '#', 5586, + '-', 3720, + '.', 4595, + 'E', 3349, + 'G', 3356, + 'K', 3356, + 'M', 3356, + 'P', 3356, + 'T', 3356, + 'd', 3362, + 'e', 3348, + 'g', 3355, + 'h', 3393, + 'k', 3355, + 'm', 3357, + 'n', 3397, + 'p', 3355, + 's', 3372, + 't', 3355, + 'u', 3397, + 'w', 3376, + 0xb5, 3397, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); + lookahead == ' ') SKIP(367); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); + lookahead == 'b') ADVANCE(4126); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 344: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '-') ADVANCE(3681); + case 366: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '-') ADVANCE(3720); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); + lookahead == ' ') SKIP(367); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4718); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3379); + lookahead == '^') ADVANCE(4763); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); END_STATE(); - case 345: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '-') ADVANCE(3681); + case 367: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '-') ADVANCE(3720); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); - END_STATE(); - case 346: - ADVANCE_MAP( - '#', 5541, - '-', 502, - ':', 4157, - '<', 3139, - '=', 1818, - '>', 3669, - '@', 3672, - 'h', 3335, - 'u', 3359, - '{', 3761, - '\t', 347, - ' ', 347, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(367); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 347: + case 368: ADVANCE_MAP( - '#', 5541, - '-', 502, - ':', 4157, - '=', 1818, - '>', 3669, - 'h', 3335, - 'u', 3359, - '{', 3761, - '\t', 347, - ' ', 347, + '#', 5586, + '-', 529, + ':', 4199, + '<', 3179, + '=', 1862, + '>', 3708, + '@', 3711, + 'h', 3375, + 'u', 3399, + '{', 3803, + '\t', 369, + ' ', 369, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 348: + case 369: ADVANCE_MAP( - '#', 5541, - '.', 3906, - '=', 4560, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'i', 4610, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, + '#', 5586, + '-', 529, + ':', 4199, + '=', 1862, + '>', 3708, + 'h', 3375, + 'u', 3399, + '{', 3803, + '\t', 369, + ' ', 369, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); - case 349: + case 370: ADVANCE_MAP( - '#', 5541, - '.', 3906, - '=', 4560, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, + '#', 5586, + '.', 3951, + ':', 3684, + '<', 3179, + '>', 3708, + '?', 3865, + '@', 3711, + '[', 3686, + ']', 3687, + 'c', 3368, + 'e', 3394, + 'f', 3403, + 'i', 3382, + 'o', 3385, + 'v', 3363, + '}', 3804, + '\t', 4198, + ' ', 4198, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 350: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 351: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 352: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '?') ADVANCE(3823); - if (lookahead == ']') ADVANCE(3648); - if (lookahead == '}') ADVANCE(3762); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - END_STATE(); - case 353: - ADVANCE_MAP( - '#', 5541, - '.', 3906, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 354: - ADVANCE_MAP( - '#', 5541, - '.', 3906, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ',') ADVANCE(4194); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3419); END_STATE(); - case 355: + case 371: ADVANCE_MAP( - '#', 5541, - '.', 4551, - '=', 4560, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'i', 4610, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, + '#', 5586, + '.', 3951, + '=', 4604, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'i', 4655, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(380); + lookahead == ' ') SKIP(406); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 356: + case 372: ADVANCE_MAP( - '#', 5541, - '.', 4551, - '=', 4560, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, + '#', 5586, + '.', 3951, + '=', 4604, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); + lookahead == ' ') SKIP(407); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 357: - ADVANCE_MAP( - '#', 5541, - '.', 4551, - '=', 4560, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'i', 4610, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, - ); + case 373: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(3951); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(406); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 358: - ADVANCE_MAP( - '#', 5541, - '.', 4551, - '=', 4560, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, - ); + case 374: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(3951); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(407); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 359: + case 375: ADVANCE_MAP( - '#', 5541, - '.', 4551, - '=', 4560, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4574, - 'g', 4574, - 'h', 4644, - 'i', 4610, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, + '#', 5586, + '.', 3951, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(380); + lookahead == ' ') SKIP(420); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 360: + case 376: ADVANCE_MAP( - '#', 5541, - '.', 4551, - '=', 4560, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4574, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - 0xb5, 4654, + '#', 5586, + '.', 3951, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); + lookahead == ' ') SKIP(421); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 361: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 362: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 363: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 364: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 365: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '|') ADVANCE(3611); + case 377: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(3951); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); + lookahead == ' ') SKIP(421); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 366: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4551); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '|') ADVANCE(3611); + case 378: + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(3963); + if (lookahead == '_') ADVANCE(4622); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(404); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 367: + case 379: ADVANCE_MAP( - '#', 5541, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, + '#', 5586, + '.', 4595, + '=', 4604, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'i', 4655, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); + lookahead == ' ') SKIP(406); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 368: + case 380: ADVANCE_MAP( - '#', 5541, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '#', 5586, + '.', 4595, + '=', 4604, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(395); + lookahead == ' ') SKIP(407); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 369: + case 381: ADVANCE_MAP( - '#', 5541, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, + '#', 5586, + '.', 4595, + '=', 4604, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'i', 4655, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); + lookahead == ' ') SKIP(406); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 370: + case 382: ADVANCE_MAP( - '#', 5541, - '.', 4551, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '#', 5586, + '.', 4595, + '=', 4604, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(395); + lookahead == ' ') SKIP(407); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 371: + case 383: ADVANCE_MAP( - '#', 5541, - '.', 4551, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4574, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 0xb5, 4654, + '#', 5586, + '.', 4595, + '=', 4604, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4618, + 'g', 4618, + 'h', 4689, + 'i', 4655, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); + lookahead == ' ') SKIP(406); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 372: + case 384: ADVANCE_MAP( - '#', 5541, - '.', 4551, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4574, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '{', 3761, - 0xb5, 4654, + '#', 5586, + '.', 4595, + '=', 4604, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4618, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(395); + lookahead == ' ') SKIP(407); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 373: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(3892); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 374: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(3892); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 375: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(3892); - if (lookahead == '?') ADVANCE(3823); - if (lookahead == ']') ADVANCE(3648); - if (lookahead == '}') ADVANCE(3762); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - END_STATE(); - case 376: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4580); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 377: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(3919); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 378: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(522); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == '+' || - lookahead == '-') ADVANCE(478); - END_STATE(); - case 379: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == ':') ADVANCE(4157); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(379); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - END_STATE(); - case 380: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(497); - if (lookahead == 'i') ADVANCE(880); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - END_STATE(); - case 381: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(497); - if (lookahead == '|') ADVANCE(3611); - if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - END_STATE(); - case 382: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4348); - if (lookahead == 'i') ADVANCE(4381); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); - END_STATE(); - case 383: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4348); - if (lookahead == 'i') ADVANCE(3470); - if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); - END_STATE(); - case 384: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4348); - if (lookahead == '{') ADVANCE(3761); - if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 385: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(380); + lookahead == ' ') SKIP(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'e') ADVANCE(4633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 386: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '_') ADVANCE(4578); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); + lookahead == ' ') SKIP(407); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'e') ADVANCE(4633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 387: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(380); + lookahead == ' ') SKIP(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 388: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == 'i') ADVANCE(4610); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(406); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 389: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); + lookahead == ' ') SKIP(407); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 390: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '=') ADVANCE(4560); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 391: ADVANCE_MAP( - '#', 5541, - '[', 3647, - ']', 3648, - 'c', 3328, - 'e', 3354, - 'f', 3363, - 'i', 3342, - 'o', 3345, - 'v', 3323, - '\t', 4156, - ' ', 4156, + '#', 5586, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3379); + if (lookahead == '\t' || + lookahead == ' ') SKIP(420); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 392: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == 'i') ADVANCE(4625); + ADVANCE_MAP( + '#', 5586, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(421); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 393: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == 'i') ADVANCE(3344); + ADVANCE_MAP( + '#', 5586, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(393); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3379); + lookahead == ' ') SKIP(420); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 394: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == 'i') ADVANCE(1154); + ADVANCE_MAP( + '#', 5586, + '.', 4595, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); + lookahead == ' ') SKIP(421); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 395: - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '{') ADVANCE(3761); + ADVANCE_MAP( + '#', 5586, + '.', 4595, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4618, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 0xb5, 4699, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(395); + lookahead == ' ') SKIP(420); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 396: - if (lookahead == '#') ADVANCE(5541); + ADVANCE_MAP( + '#', 5586, + '.', 4595, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4618, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '{', 3803, + 0xb5, 4699, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); + lookahead == ' ') SKIP(421); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 397: - if (lookahead == '#') ADVANCE(5541); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3705); + lookahead == ' ') SKIP(421); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 398: - if (lookahead == '#') ADVANCE(5541); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4165); + lookahead == ' ') SKIP(421); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 399: - if (lookahead == '#') ADVANCE(5541); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4595); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + lookahead == ' ') SKIP(421); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 400: - if (lookahead == '#') ADVANCE(5541); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(3936); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + lookahead == ' ') SKIP(406); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 401: - if (lookahead == '#') ADVANCE(5544); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '}') ADVANCE(3762); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(3936); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + lookahead == ' ') SKIP(407); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 402: - if (lookahead == '#') ADVANCE(5544); - if (lookahead == '(') ADVANCE(3853); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(3936); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + lookahead == ' ') SKIP(421); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 403: - if (lookahead == '#') ADVANCE(5547); - if (lookahead == '$') ADVANCE(3658); - if (lookahead == '-') ADVANCE(3691); - if (lookahead == '{') ADVANCE(3761); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4624); + if (lookahead == '_') ADVANCE(4622); if (lookahead == '\t' || - lookahead == ' ') SKIP(293); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4977); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4961); + lookahead == ' ') SKIP(404); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 404: - if (lookahead == '#') ADVANCE(5547); - if (lookahead == '$') ADVANCE(3658); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(545); if (lookahead == '\t' || - lookahead == ' ') SKIP(309); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4977); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4961); + lookahead == ' ') SKIP(404); + if (lookahead == '+' || + lookahead == '-') ADVANCE(503); END_STATE(); case 405: - if (lookahead == '#') ADVANCE(5547); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '{') ADVANCE(3761); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == ':') ADVANCE(4199); if (lookahead == '\t' || - lookahead == ' ') SKIP(395); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') ADVANCE(405); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); END_STATE(); case 406: - if (lookahead == '#') ADVANCE(5547); - if (lookahead == '-') ADVANCE(3691); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(524); + if (lookahead == 'i') ADVANCE(908); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); - if (lookahead == '!' || - lookahead == '$' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4977); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4961); + lookahead == ' ') SKIP(406); END_STATE(); case 407: - if (lookahead == '#') ADVANCE(5547); - if (lookahead == '=') ADVANCE(4763); - if (lookahead == 'i') ADVANCE(4816); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(524); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(380); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(407); END_STATE(); case 408: - if (lookahead == '#') ADVANCE(5547); - if (lookahead == '=') ADVANCE(4763); - if (lookahead == '|') ADVANCE(3611); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4390); + if (lookahead == 'i') ADVANCE(4423); if (lookahead == '\t' || - lookahead == ' ') SKIP(381); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(420); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); case 409: - if (lookahead == '#') ADVANCE(5547); - if (lookahead == 'i') ADVANCE(4846); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4390); + if (lookahead == 'i') ADVANCE(3510); if (lookahead == '\t' || - lookahead == ' ') SKIP(394); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(420); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); END_STATE(); case 410: - if (lookahead == '#') ADVANCE(5546); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == ']') ADVANCE(3648); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4390); + if (lookahead == '{') ADVANCE(3803); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5263); + lookahead == ' ') SKIP(421); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); case 411: - if (lookahead == '#') ADVANCE(5546); - if (lookahead == '(') ADVANCE(3853); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + lookahead == ' ') SKIP(406); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 412: - if (lookahead == '#') ADVANCE(4141); - if (lookahead == '\'') ADVANCE(4144); - if (lookahead == '(') ADVANCE(3649); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '|') ADVANCE(3651); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4140); - if (lookahead != 0) ADVANCE(4141); + lookahead == ' ') SKIP(407); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 413: - if (lookahead == '\'') ADVANCE(4133); - if (lookahead != 0) ADVANCE(413); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); + if (lookahead == '\t' || + lookahead == ' ') SKIP(406); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 414: - ADVANCE_MAP( - '+', 519, - '-', 521, - '>', 4301, - 'I', 1633, - '_', 521, - 'i', 1633, - 'n', 753, - 'r', 1339, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == 'i') ADVANCE(4655); + if (lookahead == '|') ADVANCE(3651); + if (lookahead == '\t' || + lookahead == ' ') SKIP(406); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 415: - if (lookahead == '+') ADVANCE(519); - if (lookahead == '-') ADVANCE(521); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == '_') ADVANCE(521); - if (lookahead == 'n') ADVANCE(753); - if (lookahead == 'r') ADVANCE(1339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '|') ADVANCE(3651); + if (lookahead == '\t' || + lookahead == ' ') SKIP(407); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 416: - ADVANCE_MAP( - '+', 1222, - '>', 4301, - 'I', 1633, - 'i', 1633, - 'n', 753, - 'r', 1339, - 'B', 4078, - 'b', 4078, - ); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '=') ADVANCE(4604); + if (lookahead == '|') ADVANCE(3651); + if (lookahead == '\t' || + lookahead == ' ') SKIP(407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 417: - if (lookahead == '+') ADVANCE(1222); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'l') ADVANCE(1440); - if (lookahead == 'n') ADVANCE(753); - if (lookahead == 'r') ADVANCE(1339); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '_') ADVANCE(4622); + if (lookahead == '{') ADVANCE(3803); + if (lookahead == '\t' || + lookahead == ' ') SKIP(421); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 418: - if (lookahead == '+') ADVANCE(1222); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'l') ADVANCE(1440); - if (lookahead == 'r') ADVANCE(1339); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == 'i') ADVANCE(4670); + if (lookahead == '\t' || + lookahead == ' ') SKIP(420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 419: - if (lookahead == '+') ADVANCE(1222); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'n') ADVANCE(753); - if (lookahead == 'r') ADVANCE(1339); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == 'i') ADVANCE(3384); + if (lookahead == '\t' || + lookahead == ' ') SKIP(419); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); END_STATE(); case 420: - if (lookahead == '+') ADVANCE(1222); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'r') ADVANCE(1339); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == 'i') ADVANCE(1181); + if (lookahead == '\t' || + lookahead == ' ') SKIP(420); END_STATE(); case 421: - if (lookahead == '+') ADVANCE(1257); - if (lookahead == '>') ADVANCE(4293); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '{') ADVANCE(3803); + if (lookahead == '\t' || + lookahead == ' ') SKIP(421); END_STATE(); case 422: - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'n') ADVANCE(753); - if (lookahead == 'r') ADVANCE(1348); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '{') ADVANCE(3803); + if (lookahead == '\t' || + lookahead == ' ') SKIP(421); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 423: - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'r') ADVANCE(1348); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '{') ADVANCE(3803); + if (lookahead == '\t' || + lookahead == ' ') SKIP(421); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 424: - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'r') ADVANCE(1348); - if (lookahead == 'x') ADVANCE(1511); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '\t' || + lookahead == ' ') SKIP(424); END_STATE(); case 425: - if (lookahead == '+') ADVANCE(782); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'r') ADVANCE(3829); - if (lookahead == 'u') ADVANCE(1464); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '\t' || + lookahead == ' ') SKIP(424); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3747); END_STATE(); case 426: - if (lookahead == '+') ADVANCE(847); - if (lookahead == '>') ADVANCE(4297); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '\t' || + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4207); END_STATE(); case 427: - if (lookahead == '+') ADVANCE(803); - if (lookahead == '>') ADVANCE(1623); - if (lookahead == 'r') ADVANCE(3829); - if (lookahead == 'u') ADVANCE(1470); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '\t' || + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 428: - if (lookahead == '+') ADVANCE(803); - if (lookahead == '>') ADVANCE(1623); - if (lookahead == 'u') ADVANCE(1470); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '\t' || + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 429: - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(1625); + if (lookahead == '#') ADVANCE(5589); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '}') ADVANCE(3804); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4198); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); case 430: - if (lookahead == '+') ADVANCE(861); - if (lookahead == '>') ADVANCE(1627); + if (lookahead == '#') ADVANCE(5589); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '\t' || + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); case 431: - if (lookahead == '-') ADVANCE(1297); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == '$') ADVANCE(3697); + if (lookahead == '-') ADVANCE(3729); + if (lookahead == '{') ADVANCE(3803); + if (lookahead == '\t' || + lookahead == ' ') SKIP(319); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5022); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5006); END_STATE(); case 432: - if (lookahead == '-') ADVANCE(737); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == '$') ADVANCE(3697); + if (lookahead == '\t' || + lookahead == ' ') SKIP(335); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5022); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5006); END_STATE(); case 433: - if (lookahead == '-') ADVANCE(893); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '{') ADVANCE(3803); + if (lookahead == '\t' || + lookahead == ' ') SKIP(421); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 434: - if (lookahead == '-') ADVANCE(1114); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == '-') ADVANCE(3729); + if (lookahead == '\t' || + lookahead == ' ') SKIP(367); + if (lookahead == '!' || + lookahead == '$' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5022); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5006); END_STATE(); case 435: - if (lookahead == '-') ADVANCE(1024); - if (lookahead == 'f') ADVANCE(1498); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == '=') ADVANCE(4808); + if (lookahead == 'i') ADVANCE(4861); + if (lookahead == '|') ADVANCE(3651); + if (lookahead == '\t' || + lookahead == ' ') SKIP(406); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 436: - if (lookahead == '-') ADVANCE(727); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == '=') ADVANCE(4808); + if (lookahead == '|') ADVANCE(3651); + if (lookahead == '\t' || + lookahead == ' ') SKIP(407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 437: - if (lookahead == '-') ADVANCE(901); + if (lookahead == '#') ADVANCE(5592); + if (lookahead == 'i') ADVANCE(4891); + if (lookahead == '\t' || + lookahead == ' ') SKIP(420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 438: - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(473); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '#') ADVANCE(5591); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == ']') ADVANCE(3687); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4198); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4194); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5293); END_STATE(); case 439: - if (lookahead == '-') ADVANCE(626); + if (lookahead == '#') ADVANCE(5591); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '\t' || + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 440: - if (lookahead == '-') ADVANCE(1033); + if (lookahead == '#') ADVANCE(4183); + if (lookahead == '\'') ADVANCE(4186); + if (lookahead == '(') ADVANCE(3688); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4182); + if (lookahead != 0) ADVANCE(4183); END_STATE(); case 441: - if (lookahead == '-') ADVANCE(1371); + if (lookahead == '\'') ADVANCE(4175); + if (lookahead != 0) ADVANCE(441); END_STATE(); case 442: - if (lookahead == '-') ADVANCE(707); + if (lookahead == '+') ADVANCE(550); + if (lookahead == '-') ADVANCE(552); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == '_') ADVANCE(552); + if (lookahead == 'n') ADVANCE(781); + if (lookahead == 'r') ADVANCE(1366); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); case 443: - if (lookahead == '-') ADVANCE(1593); + ADVANCE_MAP( + '+', 1249, + '>', 4343, + 'I', 1660, + 'i', 1660, + 'n', 781, + 'r', 1366, + 'B', 4120, + 'b', 4120, + ); END_STATE(); case 444: - if (lookahead == '-') ADVANCE(655); + if (lookahead == '+') ADVANCE(1249); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'l') ADVANCE(1467); + if (lookahead == 'n') ADVANCE(781); + if (lookahead == 'r') ADVANCE(1366); END_STATE(); case 445: - if (lookahead == '-') ADVANCE(1578); - if (lookahead == 'o') ADVANCE(1454); + if (lookahead == '+') ADVANCE(1249); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'n') ADVANCE(781); + if (lookahead == 'r') ADVANCE(1366); END_STATE(); case 446: - if (lookahead == '-') ADVANCE(1308); + if (lookahead == '+') ADVANCE(1284); + if (lookahead == '>') ADVANCE(4335); END_STATE(); case 447: - if (lookahead == '-') ADVANCE(1432); + if (lookahead == '+') ADVANCE(1258); + if (lookahead == '>') ADVANCE(1649); + if (lookahead == 'l') ADVANCE(1467); + if (lookahead == 'r') ADVANCE(1375); END_STATE(); case 448: - if (lookahead == '-') ADVANCE(706); + if (lookahead == '+') ADVANCE(1258); + if (lookahead == '>') ADVANCE(1649); + if (lookahead == 'n') ADVANCE(781); + if (lookahead == 'r') ADVANCE(1375); END_STATE(); case 449: - if (lookahead == '-') ADVANCE(1450); + if (lookahead == '+') ADVANCE(1258); + if (lookahead == '>') ADVANCE(1649); + if (lookahead == 'r') ADVANCE(1375); END_STATE(); case 450: - if (lookahead == '-') ADVANCE(1554); + if (lookahead == '+') ADVANCE(1258); + if (lookahead == '>') ADVANCE(1649); + if (lookahead == 'r') ADVANCE(1375); + if (lookahead == 'x') ADVANCE(1538); END_STATE(); case 451: - if (lookahead == '-') ADVANCE(1173); + if (lookahead == '+') ADVANCE(810); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'r') ADVANCE(3871); + if (lookahead == 'u') ADVANCE(1491); END_STATE(); case 452: - if (lookahead == '-') ADVANCE(1160); + if (lookahead == '+') ADVANCE(875); + if (lookahead == '>') ADVANCE(4339); END_STATE(); case 453: - if (lookahead == '-') ADVANCE(1198); + if (lookahead == '+') ADVANCE(831); + if (lookahead == '>') ADVANCE(1650); + if (lookahead == 'r') ADVANCE(3871); + if (lookahead == 'u') ADVANCE(1497); END_STATE(); case 454: - if (lookahead == '-') ADVANCE(1465); + if (lookahead == '+') ADVANCE(831); + if (lookahead == '>') ADVANCE(1650); + if (lookahead == 'u') ADVANCE(1497); END_STATE(); case 455: - if (lookahead == '-') ADVANCE(1218); + if (lookahead == '+') ADVANCE(1304); + if (lookahead == '>') ADVANCE(1652); END_STATE(); case 456: - if (lookahead == '-') ADVANCE(1535); + if (lookahead == '+') ADVANCE(889); + if (lookahead == '>') ADVANCE(1654); END_STATE(); case 457: - if (lookahead == '-') ADVANCE(1274); + if (lookahead == '-') ADVANCE(1324); END_STATE(); case 458: - if (lookahead == '-') ADVANCE(1557); + if (lookahead == '-') ADVANCE(765); END_STATE(); case 459: - if (lookahead == '-') ADVANCE(699); + if (lookahead == '-') ADVANCE(921); END_STATE(); case 460: - if (lookahead == '-') ADVANCE(1664); + if (lookahead == '-') ADVANCE(1142); END_STATE(); case 461: - if (lookahead == '-') ADVANCE(1517); + if (lookahead == '-') ADVANCE(1052); + if (lookahead == 'f') ADVANCE(1525); END_STATE(); case 462: - if (lookahead == '-') ADVANCE(1433); + if (lookahead == '-') ADVANCE(755); END_STATE(); case 463: - if (lookahead == '-') ADVANCE(988); + if (lookahead == '-') ADVANCE(929); END_STATE(); case 464: - if (lookahead == '-') ADVANCE(988); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(499); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); case 465: - if (lookahead == '-') ADVANCE(1596); + if (lookahead == '-') ADVANCE(654); END_STATE(); case 466: - if (lookahead == '-') ADVANCE(688); + if (lookahead == '-') ADVANCE(1061); END_STATE(); case 467: - if (lookahead == '-') ADVANCE(1322); + if (lookahead == '-') ADVANCE(1398); END_STATE(); case 468: - if (lookahead == '-') ADVANCE(1325); + if (lookahead == '-') ADVANCE(735); END_STATE(); case 469: - if (lookahead == '-') ADVANCE(1600); + if (lookahead == '-') ADVANCE(1620); END_STATE(); case 470: - if (lookahead == '.') ADVANCE(512); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == '_') ADVANCE(473); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '-') ADVANCE(683); END_STATE(); case 471: - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(473); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '-') ADVANCE(1605); + if (lookahead == 'o') ADVANCE(1481); END_STATE(); case 472: - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(473); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '-') ADVANCE(1335); END_STATE(); case 473: - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(473); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '-') ADVANCE(1459); END_STATE(); case 474: - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if (lookahead == '-') ADVANCE(734); END_STATE(); case 475: - if (lookahead == '.') ADVANCE(3673); + if (lookahead == '-') ADVANCE(1477); END_STATE(); case 476: - if (lookahead == '.') ADVANCE(475); + if (lookahead == '-') ADVANCE(1581); END_STATE(); case 477: - if (lookahead == '.') ADVANCE(475); - if (lookahead == '_') ADVANCE(522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (lookahead == '-') ADVANCE(1200); END_STATE(); case 478: - if (lookahead == '.') ADVANCE(513); - if (lookahead == '_') ADVANCE(478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (lookahead == '-') ADVANCE(1187); END_STATE(); case 479: - if (lookahead == '2') ADVANCE(4291); + if (lookahead == '-') ADVANCE(1225); END_STATE(); case 480: - if (lookahead == '2') ADVANCE(1653); - if (lookahead == '0' || - lookahead == '1') ADVANCE(1659); + if (lookahead == '-') ADVANCE(1492); END_STATE(); case 481: - if (lookahead == '2') ADVANCE(486); + if (lookahead == '-') ADVANCE(1245); END_STATE(); case 482: - if (lookahead == '2') ADVANCE(4225); + if (lookahead == '-') ADVANCE(1562); END_STATE(); case 483: - if (lookahead == '3') ADVANCE(482); - if (lookahead == '6') ADVANCE(484); + if (lookahead == '-') ADVANCE(1301); END_STATE(); case 484: - if (lookahead == '4') ADVANCE(4291); + if (lookahead == '-') ADVANCE(1584); END_STATE(); case 485: - if (lookahead == '5') ADVANCE(4291); + if (lookahead == '-') ADVANCE(727); END_STATE(); case 486: - if (lookahead == '5') ADVANCE(487); + if (lookahead == '-') ADVANCE(1691); END_STATE(); case 487: - if (lookahead == '6') ADVANCE(4291); + if (lookahead == '-') ADVANCE(1544); END_STATE(); case 488: - if (lookahead == ':') ADVANCE(4157); - if (lookahead == ';') ADVANCE(4160); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(488); + if (lookahead == '-') ADVANCE(1460); END_STATE(); case 489: - if (lookahead == ':') ADVANCE(4157); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(489); + if (lookahead == '-') ADVANCE(1016); END_STATE(); case 490: - if (lookahead == ':') ADVANCE(1660); + if (lookahead == '-') ADVANCE(1016); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); END_STATE(); case 491: - if (lookahead == ':') ADVANCE(1661); + if (lookahead == '-') ADVANCE(1623); END_STATE(); case 492: - if (lookahead == ';') ADVANCE(4160); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(492); + if (lookahead == '-') ADVANCE(716); END_STATE(); case 493: - if (lookahead == '=') ADVANCE(3839); - if (lookahead == '~') ADVANCE(3850); + if (lookahead == '-') ADVANCE(1349); END_STATE(); case 494: - if (lookahead == '=') ADVANCE(3837); - if (lookahead == '>') ADVANCE(3763); - if (lookahead == '~') ADVANCE(3848); + if (lookahead == '-') ADVANCE(1352); END_STATE(); case 495: - if (lookahead == '=') ADVANCE(3837); - if (lookahead == '~') ADVANCE(3848); + if (lookahead == '-') ADVANCE(1627); END_STATE(); case 496: - if (lookahead == '=') ADVANCE(3137); - if (lookahead == '~') ADVANCE(3125); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '>') ADVANCE(3685); + if (lookahead == '_') ADVANCE(499); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); case 497: - if (lookahead == '>') ADVANCE(3763); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(499); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); case 498: - if (lookahead == '>') ADVANCE(4321); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(499); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); case 499: - if (lookahead == '>') ADVANCE(4317); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); case 500: - if (lookahead == '>') ADVANCE(4309); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(542); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); END_STATE(); case 501: - if (lookahead == '>') ADVANCE(4313); + if (lookahead == '.') ADVANCE(3935); END_STATE(); case 502: - if (lookahead == '>') ADVANCE(3646); + if (lookahead == '.') ADVANCE(3712); END_STATE(); case 503: - if (lookahead == '>') ADVANCE(1624); + if (lookahead == '.') ADVANCE(540); + if (lookahead == '_') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); case 504: - if (lookahead == '>') ADVANCE(1626); + if (lookahead == '.') ADVANCE(502); END_STATE(); case 505: - if (lookahead == '>') ADVANCE(1628); + if (lookahead == '.') ADVANCE(502); + if (lookahead == '_') ADVANCE(545); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); END_STATE(); case 506: - if (lookahead == '>') ADVANCE(1629); + if (lookahead == '2') ADVANCE(4333); END_STATE(); case 507: - if (lookahead == 'I') ADVANCE(1633); - if (lookahead == '_') ADVANCE(521); - if (lookahead == 'i') ADVANCE(652); - if (lookahead == '+' || - lookahead == '-') ADVANCE(521); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == '2') ADVANCE(1680); + if (lookahead == '0' || + lookahead == '1') ADVANCE(1686); END_STATE(); case 508: - if (lookahead == 'I') ADVANCE(1633); - if (lookahead == 'i') ADVANCE(1633); - if (lookahead == 'r') ADVANCE(1571); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + if (lookahead == '2') ADVANCE(513); END_STATE(); case 509: - if (lookahead == 'I') ADVANCE(1633); - if (lookahead == 'i') ADVANCE(1633); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + if (lookahead == '2') ADVANCE(4267); END_STATE(); case 510: - if (lookahead == 'I') ADVANCE(1633); - if (lookahead == 'i') ADVANCE(1153); - if (lookahead == 'o') ADVANCE(724); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + if (lookahead == '3') ADVANCE(509); + if (lookahead == '6') ADVANCE(511); END_STATE(); case 511: - if (lookahead == 'I') ADVANCE(1633); - if (lookahead == 'i') ADVANCE(652); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + if (lookahead == '4') ADVANCE(4333); END_STATE(); case 512: - if (lookahead == '_') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); + if (lookahead == '5') ADVANCE(4333); END_STATE(); case 513: - if (lookahead == '_') ADVANCE(513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); + if (lookahead == '5') ADVANCE(514); END_STATE(); case 514: - if (lookahead == '_') ADVANCE(514); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '6') ADVANCE(4333); END_STATE(); case 515: - if (lookahead == '_') ADVANCE(515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if (lookahead == ':') ADVANCE(4199); + if (lookahead == ';') ADVANCE(4202); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(515); END_STATE(); case 516: - if (lookahead == '_') ADVANCE(517); - if (lookahead == '+' || - lookahead == '-') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if (lookahead == ':') ADVANCE(4199); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(516); END_STATE(); case 517: - if (lookahead == '_') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if (lookahead == ':') ADVANCE(1687); END_STATE(); case 518: - if (lookahead == '_') ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == ':') ADVANCE(1688); END_STATE(); case 519: - if (lookahead == '_') ADVANCE(521); - if (lookahead == 'o') ADVANCE(498); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == ';') ADVANCE(4202); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(519); END_STATE(); case 520: - if (lookahead == '_') ADVANCE(521); - if (lookahead == '+' || - lookahead == '-') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == '=') ADVANCE(3881); + if (lookahead == '~') ADVANCE(3892); END_STATE(); case 521: - if (lookahead == '_') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == '=') ADVANCE(3879); + if (lookahead == '>') ADVANCE(3805); + if (lookahead == '~') ADVANCE(3890); END_STATE(); case 522: - if (lookahead == '_') ADVANCE(522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (lookahead == '=') ADVANCE(3879); + if (lookahead == '~') ADVANCE(3890); END_STATE(); case 523: - if (lookahead == '_') ADVANCE(524); - if (lookahead == '+' || - lookahead == '-') ADVANCE(524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if (lookahead == '=') ADVANCE(3177); + if (lookahead == '~') ADVANCE(3165); END_STATE(); case 524: - if (lookahead == '_') ADVANCE(524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if (lookahead == '>') ADVANCE(3805); END_STATE(); case 525: - if (lookahead == '`') ADVANCE(4135); - if (lookahead != 0) ADVANCE(525); + if (lookahead == '>') ADVANCE(4363); END_STATE(); case 526: - ADVANCE_MAP( - 'a', 725, - 'b', 996, - 'c', 925, - 'd', 940, - 'f', 851, - 'g', 1369, - 'h', 776, - 'i', 1169, - 'l', 1219, - 'p', 1354, - 'r', 760, - 's', 1474, - 't', 549, - 'w', 1246, - ); + if (lookahead == '>') ADVANCE(4359); END_STATE(); case 527: - ADVANCE_MAP( - 'a', 725, - 'b', 820, - 'c', 929, - 'd', 1238, - 'h', 776, - 'i', 1149, - 'm', 867, - 'n', 754, - 'p', 1547, - 'r', 1553, - 's', 870, - 't', 784, - 'u', 1201, - ); + if (lookahead == '>') ADVANCE(4351); END_STATE(); case 528: - if (lookahead == 'a') ADVANCE(725); - if (lookahead == 'd') ADVANCE(940); - if (lookahead == 'f') ADVANCE(1224); - if (lookahead == 'n') ADVANCE(1211); - if (lookahead == 'p') ADVANCE(561); - if (lookahead == 't') ADVANCE(1212); - if (lookahead == 'u') ADVANCE(1455); + if (lookahead == '>') ADVANCE(4355); END_STATE(); case 529: - if (lookahead == 'a') ADVANCE(725); - if (lookahead == 'g') ADVANCE(842); - if (lookahead == 'r') ADVANCE(780); - if (lookahead == 's') ADVANCE(842); + if (lookahead == '>') ADVANCE(3685); END_STATE(); case 530: - if (lookahead == 'a') ADVANCE(725); - if (lookahead == 'l') ADVANCE(951); - if (lookahead == 'm') ADVANCE(1269); - if (lookahead == 'p') ADVANCE(1353); - if (lookahead == 'r') ADVANCE(816); - if (lookahead == 'u') ADVANCE(1203); + if (lookahead == '>') ADVANCE(1651); END_STATE(); case 531: - if (lookahead == 'a') ADVANCE(725); - if (lookahead == 'l') ADVANCE(950); - if (lookahead == 'r') ADVANCE(1110); - if (lookahead == 's') ADVANCE(1502); - if (lookahead == 'u') ADVANCE(1430); + if (lookahead == '>') ADVANCE(1653); END_STATE(); case 532: - if (lookahead == 'a') ADVANCE(725); - if (lookahead == 'r') ADVANCE(816); + if (lookahead == '>') ADVANCE(1655); END_STATE(); case 533: - ADVANCE_MAP( - 'a', 1044, - 'b', 1349, - 'c', 548, - 'e', 1603, - 'g', 994, - 'i', 1415, - 'l', 535, - 'o', 1342, - 'p', 1330, - 'r', 756, - 's', 757, - 'v', 566, - 'w', 1232, - ); + if (lookahead == '>') ADVANCE(1656); END_STATE(); case 534: - if (lookahead == 'a') ADVANCE(4291); + if (lookahead == 'I') ADVANCE(1660); + if (lookahead == 'i') ADVANCE(1660); + if (lookahead == 'n') ADVANCE(781); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); END_STATE(); case 535: - if (lookahead == 'a') ADVANCE(659); + if (lookahead == 'I') ADVANCE(1660); + if (lookahead == 'i') ADVANCE(1660); + if (lookahead == 'r') ADVANCE(1598); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); END_STATE(); case 536: - if (lookahead == 'a') ADVANCE(1111); + if (lookahead == 'I') ADVANCE(1660); + if (lookahead == 'i') ADVANCE(1660); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); END_STATE(); case 537: - if (lookahead == 'a') ADVANCE(1111); - if (lookahead == 'm') ADVANCE(1037); + if (lookahead == 'I') ADVANCE(1660); + if (lookahead == 'i') ADVANCE(1180); + if (lookahead == 'o') ADVANCE(752); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); END_STATE(); case 538: - if (lookahead == 'a') ADVANCE(1037); + if (lookahead == 'I') ADVANCE(1660); + if (lookahead == 'i') ADVANCE(680); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); END_STATE(); case 539: - ADVANCE_MAP( - 'a', 658, - 'c', 821, - 'e', 1605, - 'f', 1072, - 'l', 1147, - 'm', 563, - 'p', 1390, - 'r', 1237, - 's', 971, - 't', 588, - 'v', 634, - ); + if (lookahead == '_') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); END_STATE(); case 540: - if (lookahead == 'a') ADVANCE(1142); - if (lookahead == 'o') ADVANCE(1122); + if (lookahead == '_') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); END_STATE(); case 541: - ADVANCE_MAP( - 'a', 726, - 'b', 1577, - 'c', 1250, - 'e', 1194, - 'i', 1174, - 'l', 804, - 'r', 764, - 's', 1527, - ); + if (lookahead == '_') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); case 542: - if (lookahead == 'a') ADVANCE(1419); + if (lookahead == '_') ADVANCE(542); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); END_STATE(); case 543: - if (lookahead == 'a') ADVANCE(1368); + if (lookahead == '_') ADVANCE(544); + if (lookahead == '+' || + lookahead == '-') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); END_STATE(); case 544: - ADVANCE_MAP( - 'a', 900, - 'c', 545, - 'd', 628, - 'e', 1608, - 'f', 852, - 'g', 834, - 'i', 1140, - 'j', 1272, - 'l', 556, - 'm', 562, - 'n', 445, - 'o', 1316, - 'p', 949, - 'q', 1543, - 'r', 765, - 's', 546, - 't', 613, - 'u', 1151, - 'v', 555, - 'w', 935, - ); + if (lookahead == '_') ADVANCE(544); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); END_STATE(); case 545: - if (lookahead == 'a') ADVANCE(683); - if (lookahead == 'o') ADVANCE(1040); - if (lookahead == 'u') ADVANCE(1124); + if (lookahead == '_') ADVANCE(545); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); END_STATE(); case 546: - ADVANCE_MAP( - 'a', 1143, - 'c', 932, - 'e', 1087, - 'h', 607, - 'l', 968, - 'o', 1375, - 't', 719, - 'u', 1113, - ); + if (lookahead == '_') ADVANCE(547); + if (lookahead == '+' || + lookahead == '-') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); case 547: - if (lookahead == 'a') ADVANCE(718); + if (lookahead == '_') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); case 548: - if (lookahead == 'a') ADVANCE(682); - if (lookahead == 'o') ADVANCE(732); + if (lookahead == '_') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); case 549: - if (lookahead == 'a') ADVANCE(895); + if (lookahead == '_') ADVANCE(552); + if (lookahead == 'n') ADVANCE(781); + if (lookahead == '+' || + lookahead == '-') ADVANCE(552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); case 550: - if (lookahead == 'a') ADVANCE(481); + if (lookahead == '_') ADVANCE(552); + if (lookahead == 'o') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); case 551: - if (lookahead == 'a') ADVANCE(1035); - if (lookahead == 'o') ADVANCE(752); + if (lookahead == '_') ADVANCE(552); + if (lookahead == '+' || + lookahead == '-') ADVANCE(552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); case 552: - if (lookahead == 'a') ADVANCE(1471); + if (lookahead == '_') ADVANCE(552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); case 553: - if (lookahead == 'a') ADVANCE(1103); - if (lookahead == 'c') ADVANCE(1235); - if (lookahead == 'e') ADVANCE(1441); - if (lookahead == 'm') ADVANCE(1230); - if (lookahead == 'o') ADVANCE(1307); + if (lookahead == '`') ADVANCE(4177); + if (lookahead != 0) ADVANCE(553); END_STATE(); case 554: - if (lookahead == 'a') ADVANCE(1103); - if (lookahead == 'c') ADVANCE(1235); - if (lookahead == 'e') ADVANCE(1171); - if (lookahead == 'm') ADVANCE(1230); - if (lookahead == 'v') ADVANCE(645); + ADVANCE_MAP( + 'a', 753, + 'b', 1024, + 'c', 953, + 'd', 968, + 'f', 879, + 'g', 1396, + 'h', 804, + 'i', 1196, + 'l', 1246, + 'p', 1381, + 'r', 788, + 's', 1501, + 't', 577, + 'w', 1273, + ); END_STATE(); case 555: - if (lookahead == 'a') ADVANCE(1097); + ADVANCE_MAP( + 'a', 753, + 'b', 848, + 'c', 957, + 'd', 1265, + 'h', 804, + 'i', 1176, + 'm', 895, + 'n', 782, + 'p', 1574, + 'r', 1580, + 's', 899, + 't', 812, + 'u', 1228, + ); END_STATE(); case 556: - if (lookahead == 'a') ADVANCE(1413); - if (lookahead == 'e') ADVANCE(1146); - if (lookahead == 'i') ADVANCE(1454); - if (lookahead == 'o') ADVANCE(1594); + if (lookahead == 'a') ADVANCE(753); + if (lookahead == 'd') ADVANCE(968); + if (lookahead == 'f') ADVANCE(1251); + if (lookahead == 'n') ADVANCE(1238); + if (lookahead == 'p') ADVANCE(589); + if (lookahead == 't') ADVANCE(1239); + if (lookahead == 'u') ADVANCE(1482); END_STATE(); case 557: - if (lookahead == 'a') ADVANCE(1157); + if (lookahead == 'a') ADVANCE(753); + if (lookahead == 'g') ADVANCE(870); + if (lookahead == 'r') ADVANCE(808); + if (lookahead == 's') ADVANCE(870); END_STATE(); case 558: - if (lookahead == 'a') ADVANCE(1157); - if (lookahead == 'n') ADVANCE(1227); - if (lookahead == 'o') ADVANCE(1329); - if (lookahead == 'r') ADVANCE(1215); - if (lookahead == 's') ADVANCE(913); - if (lookahead == 'x') ADVANCE(1242); + if (lookahead == 'a') ADVANCE(753); + if (lookahead == 'l') ADVANCE(979); + if (lookahead == 'm') ADVANCE(1296); + if (lookahead == 'p') ADVANCE(1380); + if (lookahead == 'r') ADVANCE(844); + if (lookahead == 'u') ADVANCE(1230); END_STATE(); case 559: - if (lookahead == 'a') ADVANCE(1611); + if (lookahead == 'a') ADVANCE(753); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'r') ADVANCE(1138); + if (lookahead == 's') ADVANCE(1529); + if (lookahead == 'u') ADVANCE(1457); END_STATE(); case 560: - if (lookahead == 'a') ADVANCE(1454); + if (lookahead == 'a') ADVANCE(753); + if (lookahead == 'r') ADVANCE(844); END_STATE(); case 561: - if (lookahead == 'a') ADVANCE(1352); + ADVANCE_MAP( + 'a', 1072, + 'b', 1376, + 'c', 576, + 'e', 1630, + 'g', 1022, + 'i', 1442, + 'l', 563, + 'o', 1369, + 'p', 1357, + 'r', 784, + 's', 785, + 'v', 594, + 'w', 1259, + ); END_STATE(); case 562: - if (lookahead == 'a') ADVANCE(1601); - if (lookahead == 'e') ADVANCE(575); - if (lookahead == 'i') ADVANCE(1146); + if (lookahead == 'a') ADVANCE(4333); END_STATE(); case 563: - if (lookahead == 'a') ADVANCE(1601); - if (lookahead == 'e') ADVANCE(746); - if (lookahead == 'i') ADVANCE(1146); - if (lookahead == 'o') ADVANCE(739); + if (lookahead == 'a') ADVANCE(687); END_STATE(); case 564: - if (lookahead == 'a') ADVANCE(1601); - if (lookahead == 'i') ADVANCE(1146); + if (lookahead == 'a') ADVANCE(1139); END_STATE(); case 565: - if (lookahead == 'a') ADVANCE(1617); + if (lookahead == 'a') ADVANCE(1139); + if (lookahead == 'm') ADVANCE(1065); END_STATE(); case 566: - if (lookahead == 'a') ADVANCE(1388); + if (lookahead == 'a') ADVANCE(1065); END_STATE(); case 567: - if (lookahead == 'a') ADVANCE(667); + ADVANCE_MAP( + 'a', 686, + 'c', 849, + 'e', 1632, + 'f', 1100, + 'l', 1174, + 'm', 591, + 'p', 1417, + 'r', 1264, + 's', 999, + 't', 616, + 'v', 662, + ); END_STATE(); case 568: - if (lookahead == 'a') ADVANCE(667); - if (lookahead == 'i') ADVANCE(1135); + if (lookahead == 'a') ADVANCE(1170); + if (lookahead == 'o') ADVANCE(1150); END_STATE(); case 569: - if (lookahead == 'a') ADVANCE(1287); + ADVANCE_MAP( + 'a', 754, + 'b', 1604, + 'c', 1277, + 'e', 1221, + 'i', 1201, + 'l', 832, + 'r', 792, + 's', 1554, + ); END_STATE(); case 570: - if (lookahead == 'a') ADVANCE(1475); + if (lookahead == 'a') ADVANCE(1446); END_STATE(); case 571: - if (lookahead == 'a') ADVANCE(1445); + if (lookahead == 'a') ADVANCE(1395); END_STATE(); case 572: - if (lookahead == 'a') ADVANCE(657); + ADVANCE_MAP( + 'a', 928, + 'c', 573, + 'd', 656, + 'e', 1635, + 'f', 880, + 'g', 862, + 'i', 1168, + 'j', 1299, + 'l', 584, + 'm', 590, + 'n', 471, + 'o', 1343, + 'p', 977, + 'q', 1570, + 'r', 793, + 's', 574, + 't', 641, + 'u', 1178, + 'v', 583, + 'w', 963, + ); END_STATE(); case 573: - if (lookahead == 'a') ADVANCE(738); + if (lookahead == 'a') ADVANCE(711); + if (lookahead == 'o') ADVANCE(1068); + if (lookahead == 'u') ADVANCE(1152); END_STATE(); case 574: - if (lookahead == 'a') ADVANCE(1146); + ADVANCE_MAP( + 'a', 1171, + 'c', 960, + 'e', 1115, + 'h', 635, + 'l', 996, + 'o', 1402, + 't', 747, + 'u', 1141, + ); END_STATE(); case 575: - if (lookahead == 'a') ADVANCE(1146); - if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'a') ADVANCE(746); END_STATE(); case 576: - if (lookahead == 'a') ADVANCE(1146); - if (lookahead == 'u') ADVANCE(1038); + if (lookahead == 'a') ADVANCE(710); + if (lookahead == 'o') ADVANCE(760); END_STATE(); case 577: - if (lookahead == 'a') ADVANCE(1333); - if (lookahead == 'l') ADVANCE(950); - if (lookahead == 'n') ADVANCE(895); + if (lookahead == 'a') ADVANCE(923); END_STATE(); case 578: - if (lookahead == 'a') ADVANCE(1403); + if (lookahead == 'a') ADVANCE(508); END_STATE(); case 579: - if (lookahead == 'a') ADVANCE(1329); + if (lookahead == 'a') ADVANCE(1063); + if (lookahead == 'o') ADVANCE(780); END_STATE(); case 580: - if (lookahead == 'a') ADVANCE(686); + if (lookahead == 'a') ADVANCE(1498); END_STATE(); case 581: - if (lookahead == 'a') ADVANCE(1048); + if (lookahead == 'a') ADVANCE(1131); + if (lookahead == 'c') ADVANCE(1262); + if (lookahead == 'e') ADVANCE(1468); + if (lookahead == 'm') ADVANCE(1257); + if (lookahead == 'o') ADVANCE(1334); END_STATE(); case 582: - if (lookahead == 'a') ADVANCE(1389); + if (lookahead == 'a') ADVANCE(1131); + if (lookahead == 'c') ADVANCE(1262); + if (lookahead == 'e') ADVANCE(1198); + if (lookahead == 'm') ADVANCE(1257); + if (lookahead == 'v') ADVANCE(673); END_STATE(); case 583: - if (lookahead == 'a') ADVANCE(1389); - if (lookahead == 'c') ADVANCE(1359); + if (lookahead == 'a') ADVANCE(1125); END_STATE(); case 584: - if (lookahead == 'a') ADVANCE(1449); + if (lookahead == 'a') ADVANCE(1440); + if (lookahead == 'e') ADVANCE(1173); + if (lookahead == 'i') ADVANCE(1481); + if (lookahead == 'o') ADVANCE(1621); END_STATE(); case 585: - if (lookahead == 'a') ADVANCE(1193); + if (lookahead == 'a') ADVANCE(1184); END_STATE(); case 586: - if (lookahead == 'a') ADVANCE(1392); + if (lookahead == 'a') ADVANCE(1184); + if (lookahead == 'n') ADVANCE(1254); + if (lookahead == 'o') ADVANCE(1356); + if (lookahead == 'r') ADVANCE(1242); + if (lookahead == 's') ADVANCE(941); + if (lookahead == 'x') ADVANCE(1269); END_STATE(); case 587: - if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'a') ADVANCE(1638); END_STATE(); case 588: - if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'a') ADVANCE(1481); END_STATE(); case 589: - if (lookahead == 'a') ADVANCE(704); - if (lookahead == 's') ADVANCE(787); + if (lookahead == 'a') ADVANCE(1379); END_STATE(); case 590: - if (lookahead == 'a') ADVANCE(1530); + if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'e') ADVANCE(603); + if (lookahead == 'i') ADVANCE(1173); END_STATE(); case 591: - if (lookahead == 'a') ADVANCE(1054); + if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'e') ADVANCE(774); + if (lookahead == 'i') ADVANCE(1173); + if (lookahead == 'o') ADVANCE(767); END_STATE(); case 592: - if (lookahead == 'a') ADVANCE(1363); + if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'i') ADVANCE(1173); END_STATE(); case 593: - if (lookahead == 'a') ADVANCE(1565); + if (lookahead == 'a') ADVANCE(1644); END_STATE(); case 594: - if (lookahead == 'a') ADVANCE(1575); - if (lookahead == 'p') ADVANCE(1377); + if (lookahead == 'a') ADVANCE(1415); END_STATE(); case 595: - if (lookahead == 'a') ADVANCE(1479); + if (lookahead == 'a') ADVANCE(695); END_STATE(); case 596: - if (lookahead == 'a') ADVANCE(1344); + if (lookahead == 'a') ADVANCE(695); + if (lookahead == 'i') ADVANCE(1163); END_STATE(); case 597: - if (lookahead == 'a') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(1314); END_STATE(); case 598: - if (lookahead == 'a') ADVANCE(1367); + if (lookahead == 'a') ADVANCE(1502); END_STATE(); case 599: - if (lookahead == 'a') ADVANCE(1038); + if (lookahead == 'a') ADVANCE(1472); END_STATE(); case 600: - if (lookahead == 'a') ADVANCE(1476); + if (lookahead == 'a') ADVANCE(685); END_STATE(); case 601: - if (lookahead == 'a') ADVANCE(1095); + if (lookahead == 'a') ADVANCE(766); END_STATE(); case 602: - if (lookahead == 'a') ADVANCE(1514); - if (lookahead == 'o') ADVANCE(1413); - if (lookahead == 'u') ADVANCE(1454); + if (lookahead == 'a') ADVANCE(1173); END_STATE(); case 603: - if (lookahead == 'a') ADVANCE(1358); - if (lookahead == 'o') ADVANCE(1256); + if (lookahead == 'a') ADVANCE(1173); + if (lookahead == 'd') ADVANCE(1031); END_STATE(); case 604: - if (lookahead == 'a') ADVANCE(1034); + if (lookahead == 'a') ADVANCE(1173); + if (lookahead == 'u') ADVANCE(1066); END_STATE(); case 605: - if (lookahead == 'a') ADVANCE(1499); + if (lookahead == 'a') ADVANCE(1360); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'n') ADVANCE(923); END_STATE(); case 606: - if (lookahead == 'a') ADVANCE(1499); - if (lookahead == 'u') ADVANCE(1396); + if (lookahead == 'a') ADVANCE(1430); END_STATE(); case 607: - if (lookahead == 'a') ADVANCE(1306); - if (lookahead == 'i') ADVANCE(887); + if (lookahead == 'a') ADVANCE(1356); END_STATE(); case 608: - if (lookahead == 'a') ADVANCE(1127); + if (lookahead == 'a') ADVANCE(714); END_STATE(); case 609: - if (lookahead == 'a') ADVANCE(1391); + if (lookahead == 'a') ADVANCE(1076); END_STATE(); case 610: - if (lookahead == 'a') ADVANCE(1536); + if (lookahead == 'a') ADVANCE(1416); END_STATE(); case 611: - if (lookahead == 'a') ADVANCE(1176); + if (lookahead == 'a') ADVANCE(1416); + if (lookahead == 'c') ADVANCE(1386); END_STATE(); case 612: - if (lookahead == 'a') ADVANCE(1360); + if (lookahead == 'a') ADVANCE(1476); END_STATE(); case 613: - if (lookahead == 'a') ADVANCE(1031); + if (lookahead == 'a') ADVANCE(1220); END_STATE(); case 614: - if (lookahead == 'a') ADVANCE(1181); + if (lookahead == 'a') ADVANCE(1419); END_STATE(); case 615: - if (lookahead == 'a') ADVANCE(1144); + if (lookahead == 'a') ADVANCE(724); END_STATE(); case 616: - if (lookahead == 'a') ADVANCE(1309); + if (lookahead == 'a') ADVANCE(1177); END_STATE(); case 617: - if (lookahead == 'a') ADVANCE(1430); + if (lookahead == 'a') ADVANCE(732); + if (lookahead == 's') ADVANCE(815); END_STATE(); case 618: - if (lookahead == 'a') ADVANCE(1059); + if (lookahead == 'a') ADVANCE(1557); END_STATE(); case 619: - if (lookahead == 'a') ADVANCE(700); + if (lookahead == 'a') ADVANCE(1082); END_STATE(); case 620: - if (lookahead == 'a') ADVANCE(1161); + if (lookahead == 'a') ADVANCE(1390); END_STATE(); case 621: - if (lookahead == 'a') ADVANCE(1518); - if (lookahead == 'u') ADVANCE(1396); + if (lookahead == 'a') ADVANCE(1592); END_STATE(); case 622: - if (lookahead == 'a') ADVANCE(1078); + if (lookahead == 'a') ADVANCE(1603); + if (lookahead == 'p') ADVANCE(1404); END_STATE(); case 623: - if (lookahead == 'a') ADVANCE(1500); + if (lookahead == 'a') ADVANCE(1506); END_STATE(); case 624: - if (lookahead == 'a') ADVANCE(1487); + if (lookahead == 'a') ADVANCE(1371); END_STATE(); case 625: - if (lookahead == 'a') ADVANCE(1504); + if (lookahead == 'a') ADVANCE(1434); END_STATE(); case 626: - if (lookahead == 'a') ADVANCE(1180); - if (lookahead == 'o') ADVANCE(1336); - if (lookahead == 's') ADVANCE(923); - if (lookahead == 'x') ADVANCE(1266); + if (lookahead == 'a') ADVANCE(1394); END_STATE(); case 627: - if (lookahead == 'a') ADVANCE(1489); + if (lookahead == 'a') ADVANCE(1066); END_STATE(); case 628: - if (lookahead == 'a') ADVANCE(1508); - if (lookahead == 'e') ADVANCE(697); - if (lookahead == 'r') ADVANCE(1248); - if (lookahead == 'u') ADVANCE(1141); + if (lookahead == 'a') ADVANCE(1503); END_STATE(); case 629: - if (lookahead == 'a') ADVANCE(1437); + if (lookahead == 'a') ADVANCE(1123); END_STATE(); case 630: - if (lookahead == 'a') ADVANCE(982); + if (lookahead == 'a') ADVANCE(1541); + if (lookahead == 'o') ADVANCE(1440); + if (lookahead == 'u') ADVANCE(1481); END_STATE(); case 631: - if (lookahead == 'a') ADVANCE(1436); + if (lookahead == 'a') ADVANCE(1385); + if (lookahead == 'o') ADVANCE(1283); END_STATE(); case 632: - if (lookahead == 'a') ADVANCE(1510); + if (lookahead == 'a') ADVANCE(1062); END_STATE(); case 633: - if (lookahead == 'a') ADVANCE(986); + if (lookahead == 'a') ADVANCE(1526); END_STATE(); case 634: - if (lookahead == 'a') ADVANCE(1394); + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'u') ADVANCE(1423); END_STATE(); case 635: - if (lookahead == 'a') ADVANCE(666); + if (lookahead == 'a') ADVANCE(1333); + if (lookahead == 'i') ADVANCE(915); END_STATE(); case 636: - if (lookahead == 'a') ADVANCE(1205); - if (lookahead == 'e') ADVANCE(1344); + if (lookahead == 'a') ADVANCE(1155); END_STATE(); case 637: - if (lookahead == 'a') ADVANCE(750); + if (lookahead == 'a') ADVANCE(1418); END_STATE(); case 638: - if (lookahead == 'a') ADVANCE(1532); + if (lookahead == 'a') ADVANCE(1563); END_STATE(); case 639: - if (lookahead == 'a') ADVANCE(1516); + if (lookahead == 'a') ADVANCE(1203); END_STATE(); case 640: - if (lookahead == 'a') ADVANCE(1533); + if (lookahead == 'a') ADVANCE(1387); END_STATE(); case 641: - if (lookahead == 'a') ADVANCE(1102); + if (lookahead == 'a') ADVANCE(1059); END_STATE(); case 642: - if (lookahead == 'a') ADVANCE(1528); + if (lookahead == 'a') ADVANCE(1208); END_STATE(); case 643: - if (lookahead == 'a') ADVANCE(1539); + if (lookahead == 'a') ADVANCE(1172); END_STATE(); case 644: - if (lookahead == 'a') ADVANCE(1524); + if (lookahead == 'a') ADVANCE(1336); END_STATE(); case 645: - if (lookahead == 'a') ADVANCE(1401); + if (lookahead == 'a') ADVANCE(1457); END_STATE(); case 646: - if (lookahead == 'a') ADVANCE(1402); + if (lookahead == 'a') ADVANCE(1087); END_STATE(); case 647: - ADVANCE_MAP( - 'b', 1616, - 'c', 1404, - 'e', 1111, - 'g', 1615, - 'i', 687, - 'j', 1418, - 'm', 1409, - 'n', 1550, - 'o', 731, - 'p', 577, - 's', 1404, - 't', 1213, - 'u', 1331, - 'v', 675, - 'x', 1060, - 'y', 537, - 'z', 1413, - ); + if (lookahead == 'a') ADVANCE(728); END_STATE(); case 648: - ADVANCE_MAP( - 'b', 1616, - 'c', 1404, - 'g', 1615, - 'h', 1456, - 'j', 1418, - 'm', 720, - 'n', 1550, - 'p', 577, - 't', 853, - 'x', 1112, - 'y', 536, - 'z', 1413, - ); + if (lookahead == 'a') ADVANCE(1188); END_STATE(); case 649: - if (lookahead == 'b') ADVANCE(4291); + if (lookahead == 'a') ADVANCE(1545); + if (lookahead == 'u') ADVANCE(1423); END_STATE(); case 650: - ADVANCE_MAP( - 'b', 943, - 'c', 809, - 'd', 621, - 'f', 1006, - 'g', 1070, - 'i', 1164, - 'r', 795, - 's', 1327, - 'v', 581, - ); + if (lookahead == 'a') ADVANCE(1106); END_STATE(); case 651: - if (lookahead == 'b') ADVANCE(4260); + if (lookahead == 'a') ADVANCE(1527); END_STATE(); case 652: - if (lookahead == 'b') ADVANCE(4078); + if (lookahead == 'a') ADVANCE(1514); END_STATE(); case 653: - if (lookahead == 'b') ADVANCE(1556); - if (lookahead == 'd') ADVANCE(791); - if (lookahead == 'e') ADVANCE(1166); - if (lookahead == 'j') ADVANCE(1272); - if (lookahead == 'p') ADVANCE(586); - if (lookahead == 's') ADVANCE(1294); + if (lookahead == 'a') ADVANCE(1531); END_STATE(); case 654: - if (lookahead == 'b') ADVANCE(980); - if (lookahead == 'c') ADVANCE(937); - if (lookahead == 'd') ADVANCE(968); - if (lookahead == 'f') ADVANCE(1069); - if (lookahead == 'i') ADVANCE(1164); - if (lookahead == 'u') ADVANCE(1562); + if (lookahead == 'a') ADVANCE(1207); + if (lookahead == 'o') ADVANCE(1363); + if (lookahead == 's') ADVANCE(951); + if (lookahead == 'x') ADVANCE(1293); END_STATE(); case 655: - if (lookahead == 'b') ADVANCE(1610); + if (lookahead == 'a') ADVANCE(1516); END_STATE(); case 656: - ADVANCE_MAP( - 'b', 783, - 'c', 540, - 'd', 761, - 'e', 1195, - 'i', 1163, - 'j', 1272, - 'k', 775, - 'l', 804, - 'p', 571, - 'r', 762, - 's', 708, - 't', 959, - 'u', 1290, - 'w', 1364, - ); + if (lookahead == 'a') ADVANCE(1535); + if (lookahead == 'e') ADVANCE(725); + if (lookahead == 'r') ADVANCE(1275); + if (lookahead == 'u') ADVANCE(1169); END_STATE(); case 657: - if (lookahead == 'b') ADVANCE(442); + if (lookahead == 'a') ADVANCE(1464); END_STATE(); case 658: - if (lookahead == 'b') ADVANCE(1403); - if (lookahead == 'r') ADVANCE(671); - if (lookahead == 'v') ADVANCE(895); + if (lookahead == 'a') ADVANCE(1010); END_STATE(); case 659: - if (lookahead == 'b') ADVANCE(759); + if (lookahead == 'a') ADVANCE(1463); END_STATE(); case 660: - if (lookahead == 'b') ADVANCE(547); - if (lookahead == 'g') ADVANCE(1261); - if (lookahead == 'r') ADVANCE(869); - if (lookahead == 's') ADVANCE(1030); + if (lookahead == 'a') ADVANCE(1537); END_STATE(); case 661: - if (lookahead == 'b') ADVANCE(572); + if (lookahead == 'a') ADVANCE(1014); END_STATE(); case 662: - ADVANCE_MAP( - 'b', 584, - 'd', 975, - 'e', 1602, - 'j', 1272, - 'p', 586, - 'r', 817, - 's', 1299, - 't', 1613, - ); + if (lookahead == 'a') ADVANCE(1421); END_STATE(); case 663: - if (lookahead == 'b') ADVANCE(617); - if (lookahead == 'f') ADVANCE(1049); - if (lookahead == 'm') ADVANCE(1282); - if (lookahead == 's') ADVANCE(1529); + if (lookahead == 'a') ADVANCE(694); END_STATE(); case 664: - if (lookahead == 'b') ADVANCE(1446); + if (lookahead == 'a') ADVANCE(1232); + if (lookahead == 'e') ADVANCE(1371); END_STATE(); case 665: - if (lookahead == 'b') ADVANCE(629); - if (lookahead == 'h') ADVANCE(789); + if (lookahead == 'a') ADVANCE(778); END_STATE(); case 666: - if (lookahead == 'b') ADVANCE(1085); + if (lookahead == 'a') ADVANCE(1559); END_STATE(); case 667: - if (lookahead == 'b') ADVANCE(1077); + if (lookahead == 'a') ADVANCE(1543); END_STATE(); case 668: - if (lookahead == 'b') ADVANCE(1096); + if (lookahead == 'a') ADVANCE(1560); END_STATE(); case 669: - if (lookahead == 'c') ADVANCE(4291); + if (lookahead == 'a') ADVANCE(1130); END_STATE(); case 670: - if (lookahead == 'c') ADVANCE(810); - if (lookahead == 'l') ADVANCE(950); - if (lookahead == 'r') ADVANCE(1211); - if (lookahead == 'w') ADVANCE(1253); + if (lookahead == 'a') ADVANCE(1555); END_STATE(); case 671: - if (lookahead == 'c') ADVANCE(698); + if (lookahead == 'a') ADVANCE(1566); END_STATE(); case 672: - if (lookahead == 'c') ADVANCE(1089); - if (lookahead == 'd') ADVANCE(860); - if (lookahead == 'e') ADVANCE(729); - if (lookahead == 'l') ADVANCE(950); - if (lookahead == 'r') ADVANCE(828); - if (lookahead == 'v') ADVANCE(983); + if (lookahead == 'a') ADVANCE(1551); END_STATE(); case 673: - if (lookahead == 'c') ADVANCE(1089); - if (lookahead == 'f') ADVANCE(1260); - if (lookahead == 'l') ADVANCE(950); - if (lookahead == 'v') ADVANCE(983); + if (lookahead == 'a') ADVANCE(1428); END_STATE(); case 674: - if (lookahead == 'c') ADVANCE(4085); + if (lookahead == 'a') ADVANCE(1429); END_STATE(); case 675: - if (lookahead == 'c') ADVANCE(879); + ADVANCE_MAP( + 'b', 1643, + 'c', 1431, + 'e', 1139, + 'g', 1642, + 'i', 715, + 'j', 1445, + 'm', 1436, + 'n', 1577, + 'o', 759, + 'p', 605, + 's', 1431, + 't', 1240, + 'u', 1358, + 'v', 703, + 'x', 1088, + 'y', 565, + 'z', 1440, + ); END_STATE(); case 676: - if (lookahead == 'c') ADVANCE(936); - if (lookahead == 'd') ADVANCE(605); + ADVANCE_MAP( + 'b', 1643, + 'c', 1431, + 'g', 1642, + 'h', 1483, + 'j', 1445, + 'm', 748, + 'n', 1577, + 'p', 605, + 't', 881, + 'x', 1140, + 'y', 564, + 'z', 1440, + ); END_STATE(); case 677: - if (lookahead == 'c') ADVANCE(1293); - if (lookahead == 'd') ADVANCE(960); - if (lookahead == 'h') ADVANCE(1225); - if (lookahead == 'm') ADVANCE(792); - if (lookahead == 'n') ADVANCE(787); - if (lookahead == 't') ADVANCE(797); - if (lookahead == 'u') ADVANCE(1427); + if (lookahead == 'b') ADVANCE(4333); END_STATE(); case 678: - if (lookahead == 'c') ADVANCE(1454); + ADVANCE_MAP( + 'b', 971, + 'c', 837, + 'd', 649, + 'f', 1034, + 'g', 1098, + 'i', 1191, + 'r', 823, + 's', 1354, + 'v', 609, + ); END_STATE(); case 679: - if (lookahead == 'c') ADVANCE(911); + if (lookahead == 'b') ADVANCE(4302); END_STATE(); case 680: - if (lookahead == 'c') ADVANCE(1158); + if (lookahead == 'b') ADVANCE(4120); END_STATE(); case 681: - if (lookahead == 'c') ADVANCE(1025); + if (lookahead == 'b') ADVANCE(1583); + if (lookahead == 'd') ADVANCE(819); + if (lookahead == 'e') ADVANCE(1193); + if (lookahead == 'j') ADVANCE(1299); + if (lookahead == 'p') ADVANCE(614); + if (lookahead == 's') ADVANCE(1321); END_STATE(); case 682: - if (lookahead == 'c') ADVANCE(928); + if (lookahead == 'b') ADVANCE(1008); + if (lookahead == 'c') ADVANCE(965); + if (lookahead == 'd') ADVANCE(996); + if (lookahead == 'f') ADVANCE(1097); + if (lookahead == 'i') ADVANCE(1191); + if (lookahead == 'u') ADVANCE(1589); END_STATE(); case 683: - if (lookahead == 'c') ADVANCE(928); - if (lookahead == 's') ADVANCE(1454); + if (lookahead == 'b') ADVANCE(1637); END_STATE(); case 684: - if (lookahead == 'c') ADVANCE(1032); + ADVANCE_MAP( + 'b', 811, + 'c', 568, + 'd', 789, + 'e', 1222, + 'i', 1190, + 'j', 1299, + 'k', 803, + 'l', 832, + 'p', 599, + 'r', 790, + 's', 736, + 't', 987, + 'u', 1317, + 'w', 1391, + ); END_STATE(); case 685: - if (lookahead == 'c') ADVANCE(1032); - if (lookahead == 'r') ADVANCE(1347); + if (lookahead == 'b') ADVANCE(468); END_STATE(); case 686: - if (lookahead == 'c') ADVANCE(1026); + if (lookahead == 'b') ADVANCE(1430); + if (lookahead == 'r') ADVANCE(699); + if (lookahead == 'v') ADVANCE(923); END_STATE(); case 687: - if (lookahead == 'c') ADVANCE(1403); - if (lookahead == 'n') ADVANCE(941); + if (lookahead == 'b') ADVANCE(787); END_STATE(); case 688: - if (lookahead == 'c') ADVANCE(1236); + if (lookahead == 'b') ADVANCE(575); + if (lookahead == 'g') ADVANCE(1288); + if (lookahead == 'r') ADVANCE(897); + if (lookahead == 's') ADVANCE(1058); END_STATE(); case 689: - if (lookahead == 'c') ADVANCE(1236); - if (lookahead == 'n') ADVANCE(1471); + if (lookahead == 'b') ADVANCE(600); END_STATE(); case 690: - if (lookahead == 'c') ADVANCE(917); + ADVANCE_MAP( + 'b', 612, + 'd', 1003, + 'e', 1629, + 'j', 1299, + 'p', 614, + 'r', 845, + 's', 1326, + 't', 1640, + ); END_STATE(); case 691: - if (lookahead == 'c') ADVANCE(918); + if (lookahead == 'b') ADVANCE(645); + if (lookahead == 'f') ADVANCE(1077); + if (lookahead == 'm') ADVANCE(1309); + if (lookahead == 's') ADVANCE(1556); END_STATE(); case 692: - if (lookahead == 'c') ADVANCE(1463); + if (lookahead == 'b') ADVANCE(1473); END_STATE(); case 693: - if (lookahead == 'c') ADVANCE(616); + if (lookahead == 'b') ADVANCE(657); + if (lookahead == 'h') ADVANCE(817); END_STATE(); case 694: - if (lookahead == 'c') ADVANCE(1275); - if (lookahead == 'd') ADVANCE(796); - if (lookahead == 'u') ADVANCE(1184); + if (lookahead == 'b') ADVANCE(1113); END_STATE(); case 695: - if (lookahead == 'c') ADVANCE(1271); + if (lookahead == 'b') ADVANCE(1105); END_STATE(); case 696: - if (lookahead == 'c') ADVANCE(755); + if (lookahead == 'b') ADVANCE(1124); END_STATE(); case 697: - if (lookahead == 'c') ADVANCE(1013); + if (lookahead == 'c') ADVANCE(4333); END_STATE(); case 698: - if (lookahead == 'c') ADVANCE(1244); - if (lookahead == 's') ADVANCE(970); - if (lookahead == 't') ADVANCE(588); + if (lookahead == 'c') ADVANCE(838); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'r') ADVANCE(1238); + if (lookahead == 'w') ADVANCE(1280); END_STATE(); case 699: - if (lookahead == 'c') ADVANCE(1279); + if (lookahead == 'c') ADVANCE(726); END_STATE(); case 700: - if (lookahead == 'c') ADVANCE(811); + if (lookahead == 'c') ADVANCE(1117); + if (lookahead == 'd') ADVANCE(888); + if (lookahead == 'e') ADVANCE(757); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'r') ADVANCE(856); + if (lookahead == 'v') ADVANCE(1011); END_STATE(); case 701: - if (lookahead == 'c') ADVANCE(930); + if (lookahead == 'c') ADVANCE(1117); + if (lookahead == 'f') ADVANCE(1287); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'v') ADVANCE(1011); END_STATE(); case 702: - if (lookahead == 'c') ADVANCE(939); + if (lookahead == 'c') ADVANCE(4127); END_STATE(); case 703: - if (lookahead == 'c') ADVANCE(591); + if (lookahead == 'c') ADVANCE(907); END_STATE(); case 704: - if (lookahead == 'c') ADVANCE(715); + if (lookahead == 'c') ADVANCE(964); + if (lookahead == 'd') ADVANCE(633); END_STATE(); case 705: - if (lookahead == 'c') ADVANCE(1378); - if (lookahead == 'd') ADVANCE(860); - if (lookahead == 'e') ADVANCE(1607); - if (lookahead == 'i') ADVANCE(1120); - if (lookahead == 'o') ADVANCE(1315); - if (lookahead == 'r') ADVANCE(869); - if (lookahead == 'u') ADVANCE(1295); + if (lookahead == 'c') ADVANCE(1320); + if (lookahead == 'd') ADVANCE(988); + if (lookahead == 'h') ADVANCE(1252); + if (lookahead == 'm') ADVANCE(820); + if (lookahead == 'n') ADVANCE(815); + if (lookahead == 't') ADVANCE(825); + if (lookahead == 'u') ADVANCE(1454); END_STATE(); case 706: - if (lookahead == 'c') ADVANCE(1567); + if (lookahead == 'c') ADVANCE(1481); END_STATE(); case 707: - if (lookahead == 'c') ADVANCE(617); + if (lookahead == 'c') ADVANCE(939); END_STATE(); case 708: - if (lookahead == 'c') ADVANCE(1380); - if (lookahead == 'i') ADVANCE(1137); - if (lookahead == 'n') ADVANCE(604); - if (lookahead == 't') ADVANCE(543); - if (lookahead == 'u') ADVANCE(664); + if (lookahead == 'c') ADVANCE(1185); END_STATE(); case 709: - if (lookahead == 'c') ADVANCE(865); + if (lookahead == 'c') ADVANCE(1053); END_STATE(); case 710: - if (lookahead == 'c') ADVANCE(1258); + if (lookahead == 'c') ADVANCE(956); END_STATE(); case 711: - if (lookahead == 'c') ADVANCE(612); - if (lookahead == 'r') ADVANCE(1582); + if (lookahead == 'c') ADVANCE(956); + if (lookahead == 's') ADVANCE(1481); END_STATE(); case 712: - if (lookahead == 'c') ADVANCE(600); - if (lookahead == 't') ADVANCE(630); + if (lookahead == 'c') ADVANCE(1060); END_STATE(); case 713: - if (lookahead == 'c') ADVANCE(1284); + if (lookahead == 'c') ADVANCE(1060); + if (lookahead == 'r') ADVANCE(1374); END_STATE(); case 714: - ADVANCE_MAP( - 'c', 1281, - 'd', 798, - 'h', 776, - 'o', 1588, - 'r', 1553, - 's', 778, - 't', 603, - 'u', 1295, - ); + if (lookahead == 'c') ADVANCE(1054); END_STATE(); case 715: - if (lookahead == 'c') ADVANCE(862); + if (lookahead == 'c') ADVANCE(1430); + if (lookahead == 'n') ADVANCE(969); END_STATE(); case 716: - if (lookahead == 'c') ADVANCE(632); + if (lookahead == 'c') ADVANCE(1263); END_STATE(); case 717: - if (lookahead == 'c') ADVANCE(876); + if (lookahead == 'c') ADVANCE(1263); + if (lookahead == 'n') ADVANCE(1498); END_STATE(); case 718: - if (lookahead == 'd') ADVANCE(4291); + if (lookahead == 'c') ADVANCE(945); END_STATE(); case 719: - if (lookahead == 'd') ADVANCE(4291); - if (lookahead == 'o') ADVANCE(1387); - if (lookahead == 'r') ADVANCE(435); + if (lookahead == 'c') ADVANCE(946); END_STATE(); case 720: - if (lookahead == 'd') ADVANCE(4291); - if (lookahead == 's') ADVANCE(909); + if (lookahead == 'c') ADVANCE(1490); END_STATE(); case 721: - if (lookahead == 'd') ADVANCE(485); + if (lookahead == 'c') ADVANCE(644); END_STATE(); case 722: - if (lookahead == 'd') ADVANCE(3825); + if (lookahead == 'c') ADVANCE(1302); + if (lookahead == 'd') ADVANCE(824); + if (lookahead == 'u') ADVANCE(1211); END_STATE(); case 723: - if (lookahead == 'd') ADVANCE(3881); + if (lookahead == 'c') ADVANCE(1298); END_STATE(); case 724: - if (lookahead == 'd') ADVANCE(3863); + if (lookahead == 'c') ADVANCE(783); END_STATE(); case 725: - if (lookahead == 'd') ADVANCE(718); + if (lookahead == 'c') ADVANCE(1035); END_STATE(); case 726: - if (lookahead == 'd') ADVANCE(718); - if (lookahead == 't') ADVANCE(4291); + if (lookahead == 'c') ADVANCE(1271); + if (lookahead == 's') ADVANCE(998); + if (lookahead == 't') ADVANCE(616); END_STATE(); case 727: - if (lookahead == 'd') ADVANCE(879); - if (lookahead == 'l') ADVANCE(565); - if (lookahead == 'n') ADVANCE(1542); + if (lookahead == 'c') ADVANCE(1306); END_STATE(); case 728: - if (lookahead == 'd') ADVANCE(649); - if (lookahead == 'g') ADVANCE(953); - if (lookahead == 'j') ADVANCE(1418); - if (lookahead == 'w') ADVANCE(799); - if (lookahead == 'x') ADVANCE(1111); + if (lookahead == 'c') ADVANCE(839); END_STATE(); case 729: - if (lookahead == 'd') ADVANCE(953); + if (lookahead == 'c') ADVANCE(958); END_STATE(); case 730: - if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'c') ADVANCE(967); END_STATE(); case 731: - if (lookahead == 'd') ADVANCE(1403); + if (lookahead == 'c') ADVANCE(619); END_STATE(); case 732: - if (lookahead == 'd') ADVANCE(814); - if (lookahead == 'm') ADVANCE(1296); - if (lookahead == 'n') ADVANCE(889); + if (lookahead == 'c') ADVANCE(743); END_STATE(); case 733: - if (lookahead == 'd') ADVANCE(1580); + if (lookahead == 'c') ADVANCE(1405); + if (lookahead == 'd') ADVANCE(888); + if (lookahead == 'e') ADVANCE(1634); + if (lookahead == 'i') ADVANCE(1148); + if (lookahead == 'o') ADVANCE(1342); + if (lookahead == 'r') ADVANCE(897); + if (lookahead == 'u') ADVANCE(1322); END_STATE(); case 734: - if (lookahead == 'd') ADVANCE(1559); + if (lookahead == 'c') ADVANCE(1594); END_STATE(); case 735: - if (lookahead == 'd') ADVANCE(1410); + if (lookahead == 'c') ADVANCE(645); END_STATE(); case 736: - if (lookahead == 'd') ADVANCE(1229); - if (lookahead == 'l') ADVANCE(790); - if (lookahead == 'r') ADVANCE(952); - if (lookahead == 'u') ADVANCE(1287); + if (lookahead == 'c') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(1165); + if (lookahead == 'n') ADVANCE(632); + if (lookahead == 't') ADVANCE(571); + if (lookahead == 'u') ADVANCE(692); END_STATE(); case 737: - if (lookahead == 'd') ADVANCE(1583); - if (lookahead == 'i') ADVANCE(1146); - if (lookahead == 'n') ADVANCE(1259); - if (lookahead == 'u') ADVANCE(1191); + if (lookahead == 'c') ADVANCE(893); END_STATE(); case 738: - if (lookahead == 'd') ADVANCE(1010); + if (lookahead == 'c') ADVANCE(1285); END_STATE(); case 739: - if (lookahead == 'd') ADVANCE(755); + if (lookahead == 'c') ADVANCE(640); + if (lookahead == 'r') ADVANCE(1609); END_STATE(); case 740: - if (lookahead == 'd') ADVANCE(779); + if (lookahead == 'c') ADVANCE(628); + if (lookahead == 't') ADVANCE(658); END_STATE(); case 741: - if (lookahead == 'd') ADVANCE(798); - if (lookahead == 'l') ADVANCE(1015); + if (lookahead == 'c') ADVANCE(1311); END_STATE(); case 742: - if (lookahead == 'd') ADVANCE(758); + ADVANCE_MAP( + 'c', 1308, + 'd', 826, + 'h', 804, + 'o', 1615, + 'r', 1580, + 's', 806, + 't', 631, + 'u', 1322, + ); END_STATE(); case 743: - if (lookahead == 'd') ADVANCE(802); + if (lookahead == 'c') ADVANCE(890); END_STATE(); case 744: - if (lookahead == 'd') ADVANCE(860); - if (lookahead == 'g') ADVANCE(787); - if (lookahead == 'h') ADVANCE(824); - if (lookahead == 'o') ADVANCE(1298); - if (lookahead == 'p') ADVANCE(602); + if (lookahead == 'c') ADVANCE(660); END_STATE(); case 745: - if (lookahead == 'd') ADVANCE(605); + if (lookahead == 'c') ADVANCE(904); END_STATE(); case 746: - if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'd') ADVANCE(4333); END_STATE(); case 747: - if (lookahead == 'd') ADVANCE(794); + if (lookahead == 'd') ADVANCE(4333); + if (lookahead == 'o') ADVANCE(1414); + if (lookahead == 'r') ADVANCE(461); END_STATE(); case 748: - if (lookahead == 'd') ADVANCE(742); + if (lookahead == 'd') ADVANCE(4333); + if (lookahead == 's') ADVANCE(937); END_STATE(); case 749: - if (lookahead == 'd') ADVANCE(1379); - if (lookahead == 'l') ADVANCE(950); - if (lookahead == 'p') ADVANCE(1234); - if (lookahead == 's') ADVANCE(921); + if (lookahead == 'd') ADVANCE(512); END_STATE(); case 750: - if (lookahead == 'd') ADVANCE(625); + if (lookahead == 'd') ADVANCE(3867); END_STATE(); case 751: - if (lookahead == 'd') ADVANCE(606); - if (lookahead == 'f') ADVANCE(1005); - if (lookahead == 'p') ADVANCE(590); + if (lookahead == 'd') ADVANCE(3925); END_STATE(); case 752: - if (lookahead == 'd') ADVANCE(1581); + if (lookahead == 'd') ADVANCE(3905); END_STATE(); case 753: - if (lookahead == 'd') ADVANCE(1452); + if (lookahead == 'd') ADVANCE(746); END_STATE(); case 754: - if (lookahead == 'e') ADVANCE(1590); + if (lookahead == 'd') ADVANCE(746); + if (lookahead == 't') ADVANCE(4333); END_STATE(); case 755: - if (lookahead == 'e') ADVANCE(4291); + if (lookahead == 'd') ADVANCE(907); + if (lookahead == 'l') ADVANCE(593); + if (lookahead == 'n') ADVANCE(1569); END_STATE(); case 756: - if (lookahead == 'e') ADVANCE(1063); - if (lookahead == 'u') ADVANCE(1064); + if (lookahead == 'd') ADVANCE(677); + if (lookahead == 'g') ADVANCE(981); + if (lookahead == 'j') ADVANCE(1445); + if (lookahead == 'w') ADVANCE(827); + if (lookahead == 'x') ADVANCE(1139); END_STATE(); case 757: - if (lookahead == 'e') ADVANCE(583); - if (lookahead == 's') ADVANCE(912); - if (lookahead == 't') ADVANCE(570); + if (lookahead == 'd') ADVANCE(981); END_STATE(); case 758: - if (lookahead == 'e') ADVANCE(1585); + if (lookahead == 'd') ADVANCE(494); END_STATE(); case 759: - if (lookahead == 'e') ADVANCE(1037); + if (lookahead == 'd') ADVANCE(1430); END_STATE(); case 760: - if (lookahead == 'e') ADVANCE(663); - if (lookahead == 'm') ADVANCE(4291); + if (lookahead == 'd') ADVANCE(842); + if (lookahead == 'm') ADVANCE(1323); + if (lookahead == 'n') ADVANCE(917); END_STATE(); case 761: - if (lookahead == 'e') ADVANCE(694); - if (lookahead == 'i') ADVANCE(1443); - if (lookahead == 'o') ADVANCE(1595); + if (lookahead == 'd') ADVANCE(1607); END_STATE(); case 762: - if (lookahead == 'e') ADVANCE(1301); + if (lookahead == 'd') ADVANCE(1586); END_STATE(); case 763: - if (lookahead == 'e') ADVANCE(685); + if (lookahead == 'd') ADVANCE(1437); END_STATE(); case 764: - if (lookahead == 'e') ADVANCE(1130); + if (lookahead == 'd') ADVANCE(1256); + if (lookahead == 'l') ADVANCE(818); + if (lookahead == 'r') ADVANCE(980); + if (lookahead == 'u') ADVANCE(1314); END_STATE(); case 765: - if (lookahead == 'e') ADVANCE(1189); - if (lookahead == 'o') ADVANCE(1071); + if (lookahead == 'd') ADVANCE(1610); + if (lookahead == 'i') ADVANCE(1173); + if (lookahead == 'n') ADVANCE(1286); + if (lookahead == 'u') ADVANCE(1218); END_STATE(); case 766: - if (lookahead == 'e') ADVANCE(483); + if (lookahead == 'd') ADVANCE(1039); END_STATE(); case 767: - if (lookahead == 'e') ADVANCE(3979); + if (lookahead == 'd') ADVANCE(783); END_STATE(); case 768: - if (lookahead == 'e') ADVANCE(3987); + if (lookahead == 'd') ADVANCE(807); END_STATE(); case 769: - if (lookahead == 'e') ADVANCE(3638); + if (lookahead == 'd') ADVANCE(826); + if (lookahead == 'l') ADVANCE(1043); END_STATE(); case 770: - if (lookahead == 'e') ADVANCE(3731); + if (lookahead == 'd') ADVANCE(786); END_STATE(); case 771: - if (lookahead == 'e') ADVANCE(3633); + if (lookahead == 'd') ADVANCE(830); END_STATE(); case 772: - if (lookahead == 'e') ADVANCE(3751); + if (lookahead == 'd') ADVANCE(888); + if (lookahead == 'g') ADVANCE(815); + if (lookahead == 'h') ADVANCE(852); + if (lookahead == 'o') ADVANCE(1325); + if (lookahead == 'p') ADVANCE(630); END_STATE(); case 773: - if (lookahead == 'e') ADVANCE(3668); + if (lookahead == 'd') ADVANCE(633); END_STATE(); case 774: - if (lookahead == 'e') ADVANCE(718); + if (lookahead == 'd') ADVANCE(1031); END_STATE(); case 775: - if (lookahead == 'e') ADVANCE(661); + if (lookahead == 'd') ADVANCE(822); END_STATE(); case 776: - if (lookahead == 'e') ADVANCE(1053); + if (lookahead == 'd') ADVANCE(770); END_STATE(); case 777: - if (lookahead == 'e') ADVANCE(1610); + if (lookahead == 'd') ADVANCE(1406); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'p') ADVANCE(1261); + if (lookahead == 's') ADVANCE(949); END_STATE(); case 778: - if (lookahead == 'e') ADVANCE(1046); + if (lookahead == 'd') ADVANCE(653); END_STATE(); case 779: - if (lookahead == 'e') ADVANCE(1165); + if (lookahead == 'd') ADVANCE(634); + if (lookahead == 'f') ADVANCE(1033); + if (lookahead == 'p') ADVANCE(618); END_STATE(); case 780: - if (lookahead == 'e') ADVANCE(1129); + if (lookahead == 'd') ADVANCE(1608); END_STATE(); case 781: - if (lookahead == 'e') ADVANCE(4169); + if (lookahead == 'd') ADVANCE(1479); END_STATE(); case 782: - if (lookahead == 'e') ADVANCE(499); + if (lookahead == 'e') ADVANCE(1617); END_STATE(); case 783: - if (lookahead == 'e') ADVANCE(1609); + if (lookahead == 'e') ADVANCE(4333); END_STATE(); case 784: - if (lookahead == 'e') ADVANCE(1413); + if (lookahead == 'e') ADVANCE(1091); + if (lookahead == 'u') ADVANCE(1092); END_STATE(); case 785: - if (lookahead == 'e') ADVANCE(1619); + if (lookahead == 'e') ADVANCE(611); + if (lookahead == 's') ADVANCE(940); + if (lookahead == 't') ADVANCE(598); END_STATE(); case 786: - if (lookahead == 'e') ADVANCE(1157); + if (lookahead == 'e') ADVANCE(1612); END_STATE(); case 787: - if (lookahead == 'e') ADVANCE(1454); + if (lookahead == 'e') ADVANCE(1065); END_STATE(); case 788: - if (lookahead == 'e') ADVANCE(1352); + if (lookahead == 'e') ADVANCE(691); + if (lookahead == 'm') ADVANCE(4333); END_STATE(); case 789: - if (lookahead == 'e') ADVANCE(1601); + if (lookahead == 'e') ADVANCE(722); + if (lookahead == 'i') ADVANCE(1470); + if (lookahead == 'o') ADVANCE(1622); END_STATE(); case 790: - if (lookahead == 'e') ADVANCE(887); + if (lookahead == 'e') ADVANCE(1328); END_STATE(); case 791: - if (lookahead == 'e') ADVANCE(695); + if (lookahead == 'e') ADVANCE(713); END_STATE(); case 792: - if (lookahead == 'e') ADVANCE(1110); + if (lookahead == 'e') ADVANCE(1158); END_STATE(); case 793: - if (lookahead == 'e') ADVANCE(4171); + if (lookahead == 'e') ADVANCE(1216); + if (lookahead == 'o') ADVANCE(1099); END_STATE(); case 794: - if (lookahead == 'e') ADVANCE(1606); + if (lookahead == 'e') ADVANCE(510); END_STATE(); case 795: - if (lookahead == 'e') ADVANCE(710); + if (lookahead == 'e') ADVANCE(4022); END_STATE(); case 796: - if (lookahead == 'e') ADVANCE(1164); + if (lookahead == 'e') ADVANCE(4030); END_STATE(); case 797: - if (lookahead == 'e') ADVANCE(1117); + if (lookahead == 'e') ADVANCE(3678); END_STATE(); case 798: - if (lookahead == 'e') ADVANCE(892); + if (lookahead == 'e') ADVANCE(3773); END_STATE(); case 799: - if (lookahead == 'e') ADVANCE(651); + if (lookahead == 'e') ADVANCE(3673); END_STATE(); case 800: - if (lookahead == 'e') ADVANCE(1287); + if (lookahead == 'e') ADVANCE(3793); END_STATE(); case 801: - if (lookahead == 'e') ADVANCE(442); + if (lookahead == 'e') ADVANCE(3707); END_STATE(); case 802: - if (lookahead == 'e') ADVANCE(4173); + if (lookahead == 'e') ADVANCE(746); END_STATE(); case 803: - if (lookahead == 'e') ADVANCE(504); + if (lookahead == 'e') ADVANCE(689); END_STATE(); case 804: - if (lookahead == 'e') ADVANCE(1167); + if (lookahead == 'e') ADVANCE(1081); END_STATE(); case 805: - if (lookahead == 'e') ADVANCE(883); - if (lookahead == 'o') ADVANCE(3740); + if (lookahead == 'e') ADVANCE(1637); END_STATE(); case 806: - if (lookahead == 'e') ADVANCE(1146); + if (lookahead == 'e') ADVANCE(1074); END_STATE(); case 807: - if (lookahead == 'e') ADVANCE(1403); + if (lookahead == 'e') ADVANCE(1192); END_STATE(); case 808: - if (lookahead == 'e') ADVANCE(692); + if (lookahead == 'e') ADVANCE(1157); END_STATE(); case 809: - if (lookahead == 'e') ADVANCE(1066); + if (lookahead == 'e') ADVANCE(4211); END_STATE(); case 810: - if (lookahead == 'e') ADVANCE(1066); - if (lookahead == 'h') ADVANCE(592); - if (lookahead == 'o') ADVANCE(1061); + if (lookahead == 'e') ADVANCE(526); END_STATE(); case 811: - if (lookahead == 'e') ADVANCE(4185); + if (lookahead == 'e') ADVANCE(1636); END_STATE(); case 812: - if (lookahead == 'e') ADVANCE(1329); + if (lookahead == 'e') ADVANCE(1440); END_STATE(); case 813: - if (lookahead == 'e') ADVANCE(729); - if (lookahead == 'g') ADVANCE(844); - if (lookahead == 's') ADVANCE(844); + if (lookahead == 'e') ADVANCE(1646); END_STATE(); case 814: - if (lookahead == 'e') ADVANCE(1448); + if (lookahead == 'e') ADVANCE(1184); END_STATE(); case 815: - if (lookahead == 'e') ADVANCE(681); + if (lookahead == 'e') ADVANCE(1481); END_STATE(); case 816: - if (lookahead == 'e') ADVANCE(1128); + if (lookahead == 'e') ADVANCE(1379); END_STATE(); case 817: - if (lookahead == 'e') ADVANCE(1099); + if (lookahead == 'e') ADVANCE(1628); END_STATE(); case 818: - if (lookahead == 'e') ADVANCE(684); + if (lookahead == 'e') ADVANCE(915); END_STATE(); case 819: - if (lookahead == 'e') ADVANCE(1182); + if (lookahead == 'e') ADVANCE(723); END_STATE(); case 820: - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'u') ADVANCE(981); + if (lookahead == 'e') ADVANCE(1138); END_STATE(); case 821: - if (lookahead == 'e') ADVANCE(942); - if (lookahead == 'o') ADVANCE(1405); + if (lookahead == 'e') ADVANCE(4213); END_STATE(); case 822: - if (lookahead == 'e') ADVANCE(1392); + if (lookahead == 'e') ADVANCE(1633); END_STATE(); case 823: - if (lookahead == 'e') ADVANCE(678); + if (lookahead == 'e') ADVANCE(738); END_STATE(); case 824: - if (lookahead == 'e') ADVANCE(547); + if (lookahead == 'e') ADVANCE(1191); END_STATE(); case 825: - if (lookahead == 'e') ADVANCE(1424); + if (lookahead == 'e') ADVANCE(1145); END_STATE(); case 826: - if (lookahead == 'e') ADVANCE(1148); - if (lookahead == 'n') ADVANCE(1542); - if (lookahead == 'r') ADVANCE(869); + if (lookahead == 'e') ADVANCE(920); END_STATE(); case 827: - if (lookahead == 'e') ADVANCE(437); + if (lookahead == 'e') ADVANCE(679); END_STATE(); case 828: - if (lookahead == 'e') ADVANCE(1188); + if (lookahead == 'e') ADVANCE(1314); END_STATE(); case 829: - if (lookahead == 'e') ADVANCE(1286); + if (lookahead == 'e') ADVANCE(468); END_STATE(); case 830: - if (lookahead == 'e') ADVANCE(462); + if (lookahead == 'e') ADVANCE(4215); END_STATE(); case 831: - if (lookahead == 'e') ADVANCE(1054); + if (lookahead == 'e') ADVANCE(531); END_STATE(); case 832: - if (lookahead == 'e') ADVANCE(1363); + if (lookahead == 'e') ADVANCE(1194); END_STATE(); case 833: - if (lookahead == 'e') ADVANCE(674); - if (lookahead == 't') ADVANCE(646); + if (lookahead == 'e') ADVANCE(911); + if (lookahead == 'o') ADVANCE(3782); END_STATE(); case 834: - if (lookahead == 'e') ADVANCE(1467); - if (lookahead == 'r') ADVANCE(1251); + if (lookahead == 'e') ADVANCE(1173); END_STATE(); case 835: - if (lookahead == 'e') ADVANCE(1344); + if (lookahead == 'e') ADVANCE(1430); END_STATE(); case 836: - if (lookahead == 'e') ADVANCE(1374); + if (lookahead == 'e') ADVANCE(720); END_STATE(); case 837: - if (lookahead == 'e') ADVANCE(615); + if (lookahead == 'e') ADVANCE(1094); END_STATE(); case 838: - if (lookahead == 'e') ADVANCE(1472); + if (lookahead == 'e') ADVANCE(1094); + if (lookahead == 'h') ADVANCE(620); + if (lookahead == 'o') ADVANCE(1089); END_STATE(); case 839: - if (lookahead == 'e') ADVANCE(1393); + if (lookahead == 'e') ADVANCE(4227); END_STATE(); case 840: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1356); END_STATE(); case 841: - if (lookahead == 'e') ADVANCE(1351); + if (lookahead == 'e') ADVANCE(757); + if (lookahead == 'g') ADVANCE(872); + if (lookahead == 's') ADVANCE(872); END_STATE(); case 842: - if (lookahead == 'e') ADVANCE(1491); + if (lookahead == 'e') ADVANCE(1475); END_STATE(); case 843: - if (lookahead == 'e') ADVANCE(1357); + if (lookahead == 'e') ADVANCE(709); END_STATE(); case 844: - if (lookahead == 'e') ADVANCE(1492); + if (lookahead == 'e') ADVANCE(1156); END_STATE(); case 845: - if (lookahead == 'e') ADVANCE(1361); + if (lookahead == 'e') ADVANCE(1127); END_STATE(); case 846: - if (lookahead == 'e') ADVANCE(1399); + if (lookahead == 'e') ADVANCE(712); END_STATE(); case 847: - if (lookahead == 'e') ADVANCE(1384); + if (lookahead == 'e') ADVANCE(1209); END_STATE(); case 848: - if (lookahead == 'e') ADVANCE(1382); + if (lookahead == 'e') ADVANCE(1220); + if (lookahead == 'u') ADVANCE(1009); END_STATE(); case 849: - if (lookahead == 'e') ADVANCE(1383); + if (lookahead == 'e') ADVANCE(970); + if (lookahead == 'o') ADVANCE(1432); END_STATE(); case 850: - if (lookahead == 'e') ADVANCE(793); + if (lookahead == 'e') ADVANCE(1419); END_STATE(); case 851: - if (lookahead == 'e') ADVANCE(1514); + if (lookahead == 'e') ADVANCE(706); END_STATE(); case 852: - if (lookahead == 'e') ADVANCE(1514); - if (lookahead == 'i') ADVANCE(1047); - if (lookahead == 'l') ADVANCE(610); + if (lookahead == 'e') ADVANCE(575); END_STATE(); case 853: - if (lookahead == 'e') ADVANCE(1604); - if (lookahead == 'o') ADVANCE(1111); - if (lookahead == 's') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1451); END_STATE(); case 854: - if (lookahead == 'e') ADVANCE(1426); + if (lookahead == 'e') ADVANCE(1175); + if (lookahead == 'n') ADVANCE(1569); + if (lookahead == 'r') ADVANCE(897); END_STATE(); case 855: - if (lookahead == 'e') ADVANCE(605); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 856: - if (lookahead == 'e') ADVANCE(1499); + if (lookahead == 'e') ADVANCE(1215); END_STATE(); case 857: - if (lookahead == 'e') ADVANCE(454); + if (lookahead == 'e') ADVANCE(1313); END_STATE(); case 858: - if (lookahead == 'e') ADVANCE(906); - if (lookahead == 'o') ADVANCE(436); + if (lookahead == 'e') ADVANCE(488); END_STATE(); case 859: - if (lookahead == 'e') ADVANCE(1196); + if (lookahead == 'e') ADVANCE(1082); END_STATE(); case 860: - if (lookahead == 'e') ADVANCE(1083); + if (lookahead == 'e') ADVANCE(1390); END_STATE(); case 861: - if (lookahead == 'e') ADVANCE(1385); + if (lookahead == 'e') ADVANCE(702); + if (lookahead == 't') ADVANCE(674); END_STATE(); case 862: - if (lookahead == 'e') ADVANCE(1423); + if (lookahead == 'e') ADVANCE(1494); + if (lookahead == 'r') ADVANCE(1278); END_STATE(); case 863: - if (lookahead == 'e') ADVANCE(574); - if (lookahead == 'i') ADVANCE(1300); + if (lookahead == 'e') ADVANCE(1371); END_STATE(); case 864: - if (lookahead == 'e') ADVANCE(1190); + if (lookahead == 'e') ADVANCE(1401); END_STATE(); case 865: - if (lookahead == 'e') ADVANCE(1073); + if (lookahead == 'e') ADVANCE(643); END_STATE(); case 866: - if (lookahead == 'e') ADVANCE(1498); + if (lookahead == 'e') ADVANCE(1499); END_STATE(); case 867: - if (lookahead == 'e') ADVANCE(1501); + if (lookahead == 'e') ADVANCE(1420); END_STATE(); case 868: - if (lookahead == 'e') ADVANCE(617); + if (lookahead == 'e') ADVANCE(1084); END_STATE(); case 869: - if (lookahead == 'e') ADVANCE(1420); + if (lookahead == 'e') ADVANCE(1378); END_STATE(); case 870: - if (lookahead == 'e') ADVANCE(582); + if (lookahead == 'e') ADVANCE(1518); END_STATE(); case 871: - if (lookahead == 'e') ADVANCE(1134); + if (lookahead == 'e') ADVANCE(1384); END_STATE(); case 872: - if (lookahead == 'e') ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1519); END_STATE(); case 873: - if (lookahead == 'e') ADVANCE(1516); + if (lookahead == 'e') ADVANCE(1388); END_STATE(); case 874: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'e') ADVANCE(1426); END_STATE(); case 875: - if (lookahead == 'e') ADVANCE(1398); + if (lookahead == 'e') ADVANCE(1411); END_STATE(); case 876: - if (lookahead == 'e') ADVANCE(1105); + if (lookahead == 'e') ADVANCE(1409); END_STATE(); case 877: - if (lookahead == 'e') ADVANCE(1538); + if (lookahead == 'e') ADVANCE(1410); END_STATE(); case 878: - if (lookahead == 'f') ADVANCE(1224); - if (lookahead == 'h') ADVANCE(1576); - if (lookahead == 'l') ADVANCE(1008); - if (lookahead == 'n') ADVANCE(1211); - if (lookahead == 't') ADVANCE(1220); + if (lookahead == 'e') ADVANCE(821); END_STATE(); case 879: - if (lookahead == 'f') ADVANCE(4291); + if (lookahead == 'e') ADVANCE(1541); END_STATE(); case 880: - if (lookahead == 'f') ADVANCE(3745); + if (lookahead == 'e') ADVANCE(1541); + if (lookahead == 'i') ADVANCE(1075); + if (lookahead == 'l') ADVANCE(638); END_STATE(); case 881: - if (lookahead == 'f') ADVANCE(3745); - if (lookahead == 'n') ADVANCE(3718); + if (lookahead == 'e') ADVANCE(1631); + if (lookahead == 'o') ADVANCE(1139); + if (lookahead == 's') ADVANCE(1612); END_STATE(); case 882: - if (lookahead == 'f') ADVANCE(3745); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1637); + if (lookahead == 'e') ADVANCE(1453); END_STATE(); case 883: - if (lookahead == 'f') ADVANCE(3620); + if (lookahead == 'e') ADVANCE(633); END_STATE(); case 884: - if (lookahead == 'f') ADVANCE(3667); + if (lookahead == 'e') ADVANCE(1526); END_STATE(); case 885: - if (lookahead == 'f') ADVANCE(879); + if (lookahead == 'e') ADVANCE(480); END_STATE(); case 886: - if (lookahead == 'f') ADVANCE(1212); + if (lookahead == 'e') ADVANCE(934); + if (lookahead == 'o') ADVANCE(462); END_STATE(); case 887: - if (lookahead == 'f') ADVANCE(1454); + if (lookahead == 'e') ADVANCE(1223); END_STATE(); case 888: - if (lookahead == 'f') ADVANCE(1014); - if (lookahead == 'i') ADVANCE(1329); - if (lookahead == 's') ADVANCE(1240); + if (lookahead == 'e') ADVANCE(1111); END_STATE(); case 889: - if (lookahead == 'f') ADVANCE(945); + if (lookahead == 'e') ADVANCE(1412); END_STATE(); case 890: - if (lookahead == 'f') ADVANCE(1045); + if (lookahead == 'e') ADVANCE(1450); END_STATE(); case 891: - if (lookahead == 'f') ADVANCE(450); + if (lookahead == 'e') ADVANCE(602); + if (lookahead == 'i') ADVANCE(1327); END_STATE(); case 892: - if (lookahead == 'f') ADVANCE(593); + if (lookahead == 'e') ADVANCE(1217); END_STATE(); case 893: - if (lookahead == 'f') ADVANCE(601); - if (lookahead == 't') ADVANCE(1350); + if (lookahead == 'e') ADVANCE(1101); END_STATE(); case 894: - if (lookahead == 'f') ADVANCE(1017); + if (lookahead == 'e') ADVANCE(1525); END_STATE(); case 895: - if (lookahead == 'g') ADVANCE(4291); + if (lookahead == 'e') ADVANCE(1528); END_STATE(); case 896: - if (lookahead == 'g') ADVANCE(440); + if (lookahead == 'e') ADVANCE(645); END_STATE(); case 897: - if (lookahead == 'g') ADVANCE(4178); + if (lookahead == 'e') ADVANCE(1447); END_STATE(); case 898: - if (lookahead == 'g') ADVANCE(1212); + if (lookahead == 'e') ADVANCE(1162); END_STATE(); case 899: - if (lookahead == 'g') ADVANCE(1471); + if (lookahead == 'e') ADVANCE(610); END_STATE(); case 900: - if (lookahead == 'g') ADVANCE(897); - if (lookahead == 'l') ADVANCE(1062); - if (lookahead == 'p') ADVANCE(1310); - if (lookahead == 'r') ADVANCE(903); - if (lookahead == 's') ADVANCE(4177); + if (lookahead == 'e') ADVANCE(1403); END_STATE(); case 901: - if (lookahead == 'g') ADVANCE(787); - if (lookahead == 'l') ADVANCE(1403); - if (lookahead == 'r') ADVANCE(1110); + if (lookahead == 'e') ADVANCE(1543); END_STATE(); case 902: - if (lookahead == 'g') ADVANCE(922); + if (lookahead == 'e') ADVANCE(485); END_STATE(); case 903: - if (lookahead == 'g') ADVANCE(434); + if (lookahead == 'e') ADVANCE(1425); END_STATE(); case 904: - if (lookahead == 'g') ADVANCE(447); + if (lookahead == 'e') ADVANCE(1133); END_STATE(); case 905: - if (lookahead == 'g') ADVANCE(838); + if (lookahead == 'e') ADVANCE(1565); END_STATE(); case 906: - if (lookahead == 'g') ADVANCE(812); + if (lookahead == 'f') ADVANCE(1251); + if (lookahead == 'h') ADVANCE(1601); + if (lookahead == 'l') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(1238); + if (lookahead == 't') ADVANCE(1247); END_STATE(); case 907: - if (lookahead == 'g') ADVANCE(1480); + if (lookahead == 'f') ADVANCE(4333); END_STATE(); case 908: - if (lookahead == 'g') ADVANCE(1365); - if (lookahead == 'l') ADVANCE(962); - if (lookahead == 's') ADVANCE(1486); + if (lookahead == 'f') ADVANCE(3787); END_STATE(); case 909: - if (lookahead == 'g') ADVANCE(1304); + if (lookahead == 'f') ADVANCE(3787); + if (lookahead == 'n') ADVANCE(3760); END_STATE(); case 910: - if (lookahead == 'g') ADVANCE(998); + if (lookahead == 'f') ADVANCE(3787); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1664); END_STATE(); case 911: - if (lookahead == 'h') ADVANCE(4291); + if (lookahead == 'f') ADVANCE(3660); END_STATE(); case 912: - if (lookahead == 'h') ADVANCE(440); + if (lookahead == 'f') ADVANCE(3706); END_STATE(); case 913: - if (lookahead == 'h') ADVANCE(1652); + if (lookahead == 'f') ADVANCE(907); END_STATE(); case 914: - if (lookahead == 'h') ADVANCE(87); + if (lookahead == 'f') ADVANCE(1239); END_STATE(); case 915: - if (lookahead == 'h') ADVANCE(3835); + if (lookahead == 'f') ADVANCE(1481); END_STATE(); case 916: - if (lookahead == 'h') ADVANCE(3833); + if (lookahead == 'f') ADVANCE(1042); + if (lookahead == 'i') ADVANCE(1356); + if (lookahead == 's') ADVANCE(1267); END_STATE(); case 917: - if (lookahead == 'h') ADVANCE(3756); + if (lookahead == 'f') ADVANCE(973); END_STATE(); case 918: - if (lookahead == 'h') ADVANCE(3779); + if (lookahead == 'f') ADVANCE(1073); END_STATE(); case 919: - if (lookahead == 'h') ADVANCE(3659); + if (lookahead == 'f') ADVANCE(476); END_STATE(); case 920: - if (lookahead == 'h') ADVANCE(3665); + if (lookahead == 'f') ADVANCE(621); END_STATE(); case 921: - if (lookahead == 'h') ADVANCE(1211); + if (lookahead == 'f') ADVANCE(629); + if (lookahead == 't') ADVANCE(1377); END_STATE(); case 922: - if (lookahead == 'h') ADVANCE(1454); + if (lookahead == 'f') ADVANCE(1045); END_STATE(); case 923: - if (lookahead == 'h') ADVANCE(1041); + if (lookahead == 'g') ADVANCE(4333); END_STATE(); case 924: - if (lookahead == 'h') ADVANCE(1403); + if (lookahead == 'g') ADVANCE(466); END_STATE(); case 925: - if (lookahead == 'h') ADVANCE(763); - if (lookahead == 'l') ADVANCE(1247); - if (lookahead == 'o') ADVANCE(1136); + if (lookahead == 'g') ADVANCE(4220); END_STATE(); case 926: - if (lookahead == 'h') ADVANCE(550); + if (lookahead == 'g') ADVANCE(1239); END_STATE(); case 927: - if (lookahead == 'h') ADVANCE(466); + if (lookahead == 'g') ADVANCE(1498); END_STATE(); case 928: - if (lookahead == 'h') ADVANCE(755); + if (lookahead == 'g') ADVANCE(925); + if (lookahead == 'l') ADVANCE(1090); + if (lookahead == 'p') ADVANCE(1337); + if (lookahead == 'r') ADVANCE(931); + if (lookahead == 's') ADVANCE(4219); END_STATE(); case 929: - if (lookahead == 'h') ADVANCE(815); - if (lookahead == 'l') ADVANCE(863); + if (lookahead == 'g') ADVANCE(815); + if (lookahead == 'l') ADVANCE(1430); + if (lookahead == 'r') ADVANCE(1138); END_STATE(); case 930: - if (lookahead == 'h') ADVANCE(818); + if (lookahead == 'g') ADVANCE(950); END_STATE(); case 931: - if (lookahead == 'h') ADVANCE(843); + if (lookahead == 'g') ADVANCE(460); END_STATE(); case 932: - if (lookahead == 'h') ADVANCE(871); + if (lookahead == 'g') ADVANCE(473); END_STATE(); case 933: - if (lookahead == 'h') ADVANCE(872); + if (lookahead == 'g') ADVANCE(866); END_STATE(); case 934: - if (lookahead == 'h') ADVANCE(457); + if (lookahead == 'g') ADVANCE(840); END_STATE(); case 935: - if (lookahead == 'h') ADVANCE(806); - if (lookahead == 'i') ADVANCE(1513); + if (lookahead == 'g') ADVANCE(1507); END_STATE(); case 936: - if (lookahead == 'h') ADVANCE(579); + if (lookahead == 'g') ADVANCE(1392); + if (lookahead == 'l') ADVANCE(990); + if (lookahead == 's') ADVANCE(1513); END_STATE(); case 937: - if (lookahead == 'h') ADVANCE(592); + if (lookahead == 'g') ADVANCE(1331); END_STATE(); case 938: - if (lookahead == 'h') ADVANCE(1017); + if (lookahead == 'g') ADVANCE(1026); END_STATE(); case 939: - if (lookahead == 'h') ADVANCE(633); + if (lookahead == 'h') ADVANCE(4333); END_STATE(); case 940: - if (lookahead == 'i') ADVANCE(885); + if (lookahead == 'h') ADVANCE(466); END_STATE(); case 941: - if (lookahead == 'i') ADVANCE(4291); + if (lookahead == 'h') ADVANCE(1679); END_STATE(); case 942: - if (lookahead == 'i') ADVANCE(1037); + if (lookahead == 'h') ADVANCE(93); END_STATE(); case 943: - if (lookahead == 'i') ADVANCE(1207); - if (lookahead == 'o') ADVANCE(1214); + if (lookahead == 'h') ADVANCE(3877); END_STATE(); case 944: - if (lookahead == 'i') ADVANCE(718); + if (lookahead == 'h') ADVANCE(3875); END_STATE(); case 945: - if (lookahead == 'i') ADVANCE(895); + if (lookahead == 'h') ADVANCE(3798); END_STATE(); case 946: - if (lookahead == 'i') ADVANCE(1471); + if (lookahead == 'h') ADVANCE(3821); END_STATE(); case 947: - if (lookahead == 'i') ADVANCE(1618); + if (lookahead == 'h') ADVANCE(3698); END_STATE(); case 948: - if (lookahead == 'i') ADVANCE(1586); + if (lookahead == 'h') ADVANCE(3704); END_STATE(); case 949: - if (lookahead == 'i') ADVANCE(1586); - if (lookahead == 'r') ADVANCE(1270); + if (lookahead == 'h') ADVANCE(1238); END_STATE(); case 950: - if (lookahead == 'i') ADVANCE(1413); + if (lookahead == 'h') ADVANCE(1481); END_STATE(); case 951: - if (lookahead == 'i') ADVANCE(1413); - if (lookahead == 'o') ADVANCE(681); + if (lookahead == 'h') ADVANCE(1069); END_STATE(); case 952: - if (lookahead == 'i') ADVANCE(902); + if (lookahead == 'h') ADVANCE(1430); END_STATE(); case 953: - if (lookahead == 'i') ADVANCE(1454); + if (lookahead == 'h') ADVANCE(791); + if (lookahead == 'l') ADVANCE(1274); + if (lookahead == 'o') ADVANCE(1164); END_STATE(); case 954: - if (lookahead == 'i') ADVANCE(1454); - if (lookahead == 's') ADVANCE(1522); + if (lookahead == 'h') ADVANCE(578); END_STATE(); case 955: - if (lookahead == 'i') ADVANCE(695); + if (lookahead == 'h') ADVANCE(492); END_STATE(); case 956: - if (lookahead == 'i') ADVANCE(1110); + if (lookahead == 'h') ADVANCE(783); END_STATE(); case 957: - if (lookahead == 'i') ADVANCE(1287); + if (lookahead == 'h') ADVANCE(843); + if (lookahead == 'l') ADVANCE(891); END_STATE(); case 958: - if (lookahead == 'i') ADVANCE(1239); + if (lookahead == 'h') ADVANCE(846); END_STATE(); case 959: - if (lookahead == 'i') ADVANCE(1525); - if (lookahead == 'r') ADVANCE(956); + if (lookahead == 'h') ADVANCE(871); END_STATE(); case 960: - if (lookahead == 'i') ADVANCE(1412); + if (lookahead == 'h') ADVANCE(898); END_STATE(); case 961: - if (lookahead == 'i') ADVANCE(1146); + if (lookahead == 'h') ADVANCE(900); END_STATE(); case 962: - if (lookahead == 'i') ADVANCE(1168); + if (lookahead == 'h') ADVANCE(483); END_STATE(); case 963: - if (lookahead == 'i') ADVANCE(1329); + if (lookahead == 'h') ADVANCE(834); + if (lookahead == 'i') ADVANCE(1540); END_STATE(); case 964: - if (lookahead == 'i') ADVANCE(1135); + if (lookahead == 'h') ADVANCE(607); END_STATE(); case 965: - if (lookahead == 'i') ADVANCE(681); + if (lookahead == 'h') ADVANCE(620); END_STATE(); case 966: - if (lookahead == 'i') ADVANCE(1170); - if (lookahead == 'p') ADVANCE(1377); + if (lookahead == 'h') ADVANCE(1045); END_STATE(); case 967: - if (lookahead == 'i') ADVANCE(567); + if (lookahead == 'h') ADVANCE(661); END_STATE(); case 968: - if (lookahead == 'i') ADVANCE(696); + if (lookahead == 'i') ADVANCE(913); END_STATE(); case 969: - if (lookahead == 'i') ADVANCE(1058); + if (lookahead == 'i') ADVANCE(4333); END_STATE(); case 970: - if (lookahead == 'i') ADVANCE(1150); + if (lookahead == 'i') ADVANCE(1065); END_STATE(); case 971: - if (lookahead == 'i') ADVANCE(1150); - if (lookahead == 'q') ADVANCE(1352); - if (lookahead == 't') ADVANCE(748); - if (lookahead == 'u') ADVANCE(1110); + if (lookahead == 'i') ADVANCE(1234); + if (lookahead == 'o') ADVANCE(1241); END_STATE(); case 972: - if (lookahead == 'i') ADVANCE(1478); + if (lookahead == 'i') ADVANCE(746); END_STATE(); case 973: - if (lookahead == 'i') ADVANCE(1416); + if (lookahead == 'i') ADVANCE(923); END_STATE(); case 974: - if (lookahead == 'i') ADVANCE(716); + if (lookahead == 'i') ADVANCE(1498); END_STATE(); case 975: - if (lookahead == 'i') ADVANCE(1372); + if (lookahead == 'i') ADVANCE(1645); END_STATE(); case 976: - if (lookahead == 'i') ADVANCE(1208); + if (lookahead == 'i') ADVANCE(1613); END_STATE(); case 977: - if (lookahead == 'i') ADVANCE(1208); - if (lookahead == 'u') ADVANCE(1200); + if (lookahead == 'i') ADVANCE(1613); + if (lookahead == 'r') ADVANCE(1297); END_STATE(); case 978: - if (lookahead == 'i') ADVANCE(1159); + if (lookahead == 'i') ADVANCE(1440); END_STATE(); case 979: - if (lookahead == 'i') ADVANCE(1101); + if (lookahead == 'i') ADVANCE(1440); + if (lookahead == 'o') ADVANCE(709); END_STATE(); case 980: - if (lookahead == 'i') ADVANCE(1206); - if (lookahead == 'o') ADVANCE(1214); + if (lookahead == 'i') ADVANCE(930); END_STATE(); case 981: - if (lookahead == 'i') ADVANCE(1043); + if (lookahead == 'i') ADVANCE(1481); END_STATE(); case 982: - if (lookahead == 'i') ADVANCE(1175); + if (lookahead == 'i') ADVANCE(1481); + if (lookahead == 's') ADVANCE(1549); END_STATE(); case 983: - if (lookahead == 'i') ADVANCE(754); + if (lookahead == 'i') ADVANCE(723); END_STATE(); case 984: - if (lookahead == 'i') ADVANCE(1199); + if (lookahead == 'i') ADVANCE(1138); END_STATE(); case 985: - if (lookahead == 'i') ADVANCE(614); + if (lookahead == 'i') ADVANCE(1314); END_STATE(); case 986: - if (lookahead == 'i') ADVANCE(1172); + if (lookahead == 'i') ADVANCE(1266); END_STATE(); case 987: - if (lookahead == 'i') ADVANCE(1461); + if (lookahead == 'i') ADVANCE(1552); + if (lookahead == 'r') ADVANCE(984); END_STATE(); case 988: - if (lookahead == 'i') ADVANCE(1152); + if (lookahead == 'i') ADVANCE(1439); END_STATE(); case 989: - if (lookahead == 'i') ADVANCE(1495); + if (lookahead == 'i') ADVANCE(1173); END_STATE(); case 990: - if (lookahead == 'i') ADVANCE(807); + if (lookahead == 'i') ADVANCE(1195); END_STATE(); case 991: - if (lookahead == 'i') ADVANCE(1514); + if (lookahead == 'i') ADVANCE(1356); END_STATE(); case 992: - if (lookahead == 'i') ADVANCE(1587); + if (lookahead == 'i') ADVANCE(1163); END_STATE(); case 993: - if (lookahead == 'i') ADVANCE(1499); + if (lookahead == 'i') ADVANCE(709); END_STATE(); case 994: - if (lookahead == 'i') ADVANCE(1417); - if (lookahead == 'p') ADVANCE(896); + if (lookahead == 'i') ADVANCE(1197); + if (lookahead == 'p') ADVANCE(1404); END_STATE(); case 995: - if (lookahead == 'i') ADVANCE(578); + if (lookahead == 'i') ADVANCE(595); END_STATE(); case 996: - if (lookahead == 'i') ADVANCE(1431); - if (lookahead == 'r') ADVANCE(585); + if (lookahead == 'i') ADVANCE(724); END_STATE(); case 997: - if (lookahead == 'i') ADVANCE(1127); + if (lookahead == 'i') ADVANCE(1086); END_STATE(); case 998: - if (lookahead == 'i') ADVANCE(1192); + if (lookahead == 'i') ADVANCE(1177); END_STATE(); case 999: - if (lookahead == 'i') ADVANCE(1589); + if (lookahead == 'i') ADVANCE(1177); + if (lookahead == 'q') ADVANCE(1379); + if (lookahead == 't') ADVANCE(776); + if (lookahead == 'u') ADVANCE(1138); END_STATE(); case 1000: - if (lookahead == 'i') ADVANCE(1481); + if (lookahead == 'i') ADVANCE(1505); END_STATE(); case 1001: - if (lookahead == 'i') ADVANCE(1430); + if (lookahead == 'i') ADVANCE(1443); END_STATE(); case 1002: - if (lookahead == 'i') ADVANCE(1119); - if (lookahead == 's') ADVANCE(854); + if (lookahead == 'i') ADVANCE(744); END_STATE(); case 1003: - if (lookahead == 'i') ADVANCE(574); + if (lookahead == 'i') ADVANCE(1399); END_STATE(); case 1004: - if (lookahead == 'i') ADVANCE(1254); + if (lookahead == 'i') ADVANCE(1235); END_STATE(); case 1005: - if (lookahead == 'i') ADVANCE(1091); + if (lookahead == 'i') ADVANCE(1235); + if (lookahead == 'u') ADVANCE(1227); END_STATE(); case 1006: - if (lookahead == 'i') ADVANCE(1091); - if (lookahead == 'l') ADVANCE(1278); + if (lookahead == 'i') ADVANCE(1186); END_STATE(); case 1007: - if (lookahead == 'i') ADVANCE(1482); + if (lookahead == 'i') ADVANCE(1129); END_STATE(); case 1008: - if (lookahead == 'i') ADVANCE(1425); + if (lookahead == 'i') ADVANCE(1233); + if (lookahead == 'o') ADVANCE(1241); END_STATE(); case 1009: - if (lookahead == 'i') ADVANCE(743); + if (lookahead == 'i') ADVANCE(1071); END_STATE(); case 1010: - if (lookahead == 'i') ADVANCE(796); + if (lookahead == 'i') ADVANCE(1202); END_STATE(); case 1011: - if (lookahead == 'i') ADVANCE(1276); + if (lookahead == 'i') ADVANCE(782); END_STATE(); case 1012: - if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'i') ADVANCE(1226); END_STATE(); case 1013: - if (lookahead == 'i') ADVANCE(1133); + if (lookahead == 'i') ADVANCE(642); END_STATE(); case 1014: - if (lookahead == 'i') ADVANCE(1085); + if (lookahead == 'i') ADVANCE(1199); END_STATE(); case 1015: - if (lookahead == 'i') ADVANCE(1428); + if (lookahead == 'i') ADVANCE(1488); END_STATE(); case 1016: - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'i') ADVANCE(1179); END_STATE(); case 1017: - if (lookahead == 'i') ADVANCE(1077); + if (lookahead == 'i') ADVANCE(1522); END_STATE(); case 1018: - if (lookahead == 'i') ADVANCE(1429); - if (lookahead == 'p') ADVANCE(557); + if (lookahead == 'i') ADVANCE(835); END_STATE(); case 1019: - if (lookahead == 'i') ADVANCE(1324); + if (lookahead == 'i') ADVANCE(1541); END_STATE(); case 1020: - if (lookahead == 'i') ADVANCE(1324); - if (lookahead == 'n') ADVANCE(784); - if (lookahead == 'p') ADVANCE(948); + if (lookahead == 'i') ADVANCE(1614); END_STATE(); case 1021: - if (lookahead == 'i') ADVANCE(635); + if (lookahead == 'i') ADVANCE(1526); END_STATE(); case 1022: - if (lookahead == 'i') ADVANCE(1519); + if (lookahead == 'i') ADVANCE(1444); + if (lookahead == 'p') ADVANCE(924); END_STATE(); case 1023: - if (lookahead == 'i') ADVANCE(631); + if (lookahead == 'i') ADVANCE(606); END_STATE(); case 1024: - if (lookahead == 'j') ADVANCE(1272); - if (lookahead == 'l') ADVANCE(859); - if (lookahead == 's') ADVANCE(1068); + if (lookahead == 'i') ADVANCE(1458); + if (lookahead == 'r') ADVANCE(613); END_STATE(); case 1025: - if (lookahead == 'k') ADVANCE(4291); + if (lookahead == 'i') ADVANCE(1155); END_STATE(); case 1026: - if (lookahead == 'k') ADVANCE(4290); + if (lookahead == 'i') ADVANCE(1219); END_STATE(); case 1027: - if (lookahead == 'k') ADVANCE(4085); + if (lookahead == 'i') ADVANCE(1616); END_STATE(); case 1028: - if (lookahead == 'k') ADVANCE(890); + if (lookahead == 'i') ADVANCE(1508); END_STATE(); case 1029: - if (lookahead == 'k') ADVANCE(1403); + if (lookahead == 'i') ADVANCE(1457); END_STATE(); case 1030: - if (lookahead == 'k') ADVANCE(957); - if (lookahead == 't') ADVANCE(561); + if (lookahead == 'i') ADVANCE(1147); + if (lookahead == 's') ADVANCE(882); END_STATE(); case 1031: - if (lookahead == 'k') ADVANCE(755); + if (lookahead == 'i') ADVANCE(602); END_STATE(); case 1032: - if (lookahead == 'k') ADVANCE(1249); + if (lookahead == 'i') ADVANCE(1281); END_STATE(); case 1033: - if (lookahead == 'k') ADVANCE(777); + if (lookahead == 'i') ADVANCE(1119); END_STATE(); case 1034: - if (lookahead == 'k') ADVANCE(801); + if (lookahead == 'i') ADVANCE(1119); + if (lookahead == 'l') ADVANCE(1305); END_STATE(); case 1035: - if (lookahead == 'k') ADVANCE(770); - if (lookahead == 't') ADVANCE(690); + if (lookahead == 'i') ADVANCE(1161); END_STATE(); case 1036: - if (lookahead == 'k') ADVANCE(1531); + if (lookahead == 'i') ADVANCE(1509); END_STATE(); case 1037: - if (lookahead == 'l') ADVANCE(4291); + if (lookahead == 'i') ADVANCE(1452); END_STATE(); case 1038: - if (lookahead == 'l') ADVANCE(1037); + if (lookahead == 'i') ADVANCE(771); END_STATE(); case 1039: - if (lookahead == 'l') ADVANCE(1037); - if (lookahead == 's') ADVANCE(911); + if (lookahead == 'i') ADVANCE(824); END_STATE(); case 1040: - if (lookahead == 'l') ADVANCE(4238); - if (lookahead == 'n') ADVANCE(712); - if (lookahead == 'u') ADVANCE(1187); + if (lookahead == 'i') ADVANCE(1303); END_STATE(); case 1041: - if (lookahead == 'l') ADVANCE(3877); - if (lookahead == 'r') ADVANCE(3879); + if (lookahead == 'i') ADVANCE(1530); END_STATE(); case 1042: - if (lookahead == 'l') ADVANCE(3971); + if (lookahead == 'i') ADVANCE(1113); END_STATE(); case 1043: - if (lookahead == 'l') ADVANCE(718); + if (lookahead == 'i') ADVANCE(1455); END_STATE(); case 1044: - if (lookahead == 'l') ADVANCE(995); - if (lookahead == 'p') ADVANCE(941); - if (lookahead == 'u') ADVANCE(1471); + if (lookahead == 'i') ADVANCE(625); END_STATE(); case 1045: - if (lookahead == 'l') ADVANCE(1211); + if (lookahead == 'i') ADVANCE(1105); END_STATE(); case 1046: - if (lookahead == 'l') ADVANCE(879); - if (lookahead == 't') ADVANCE(4170); + if (lookahead == 'i') ADVANCE(1456); + if (lookahead == 'p') ADVANCE(585); END_STATE(); case 1047: - if (lookahead == 'l') ADVANCE(1092); - if (lookahead == 'r') ADVANCE(1413); + if (lookahead == 'i') ADVANCE(1351); END_STATE(); case 1048: - if (lookahead == 'l') ADVANCE(1563); + if (lookahead == 'i') ADVANCE(1351); + if (lookahead == 'n') ADVANCE(812); + if (lookahead == 'p') ADVANCE(976); END_STATE(); case 1049: - if (lookahead == 'l') ADVANCE(1219); + if (lookahead == 'i') ADVANCE(663); END_STATE(); case 1050: - if (lookahead == 'l') ADVANCE(1454); + if (lookahead == 'i') ADVANCE(1546); END_STATE(); case 1051: - if (lookahead == 'l') ADVANCE(431); + if (lookahead == 'i') ADVANCE(659); END_STATE(); case 1052: - if (lookahead == 'l') ADVANCE(953); + if (lookahead == 'j') ADVANCE(1299); + if (lookahead == 'l') ADVANCE(887); + if (lookahead == 's') ADVANCE(1096); END_STATE(); case 1053: - if (lookahead == 'l') ADVANCE(1287); + if (lookahead == 'k') ADVANCE(4333); END_STATE(); case 1054: - if (lookahead == 'l') ADVANCE(442); + if (lookahead == 'k') ADVANCE(4332); END_STATE(); case 1055: - if (lookahead == 'l') ADVANCE(4186); + if (lookahead == 'k') ADVANCE(4127); END_STATE(); case 1056: - if (lookahead == 'l') ADVANCE(891); + if (lookahead == 'k') ADVANCE(918); END_STATE(); case 1057: - if (lookahead == 'l') ADVANCE(1403); + if (lookahead == 'k') ADVANCE(1430); END_STATE(); case 1058: - if (lookahead == 'l') ADVANCE(730); + if (lookahead == 'k') ADVANCE(985); + if (lookahead == 't') ADVANCE(589); END_STATE(); case 1059: - if (lookahead == 'l') ADVANCE(947); + if (lookahead == 'k') ADVANCE(783); END_STATE(); case 1060: - if (lookahead == 'l') ADVANCE(1414); - if (lookahead == 'm') ADVANCE(1037); - if (lookahead == 'z') ADVANCE(4291); + if (lookahead == 'k') ADVANCE(1276); END_STATE(); case 1061: - if (lookahead == 'l') ADVANCE(1552); + if (lookahead == 'k') ADVANCE(805); END_STATE(); case 1062: - if (lookahead == 'l') ADVANCE(433); + if (lookahead == 'k') ADVANCE(829); END_STATE(); case 1063: - if (lookahead == 'l') ADVANCE(868); - if (lookahead == 'p') ADVANCE(1221); + if (lookahead == 'k') ADVANCE(798); + if (lookahead == 't') ADVANCE(718); END_STATE(); case 1064: - if (lookahead == 'l') ADVANCE(869); - if (lookahead == 'n') ADVANCE(4291); + if (lookahead == 'k') ADVANCE(1558); END_STATE(); case 1065: - if (lookahead == 'l') ADVANCE(972); + if (lookahead == 'l') ADVANCE(4333); END_STATE(); case 1066: - if (lookahead == 'l') ADVANCE(1051); + if (lookahead == 'l') ADVANCE(1065); END_STATE(); case 1067: - if (lookahead == 'l') ADVANCE(993); + if (lookahead == 'l') ADVANCE(1065); + if (lookahead == 's') ADVANCE(939); END_STATE(); case 1068: - if (lookahead == 'l') ADVANCE(968); + if (lookahead == 'l') ADVANCE(4280); + if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'u') ADVANCE(1214); END_STATE(); case 1069: - if (lookahead == 'l') ADVANCE(1278); + if (lookahead == 'l') ADVANCE(3921); + if (lookahead == 'r') ADVANCE(3923); END_STATE(); case 1070: - if (lookahead == 'l') ADVANCE(1226); + if (lookahead == 'l') ADVANCE(4014); END_STATE(); case 1071: - if (lookahead == 'l') ADVANCE(1098); + if (lookahead == 'l') ADVANCE(746); END_STATE(); case 1072: - if (lookahead == 'l') ADVANCE(1280); + if (lookahead == 'l') ADVANCE(1023); + if (lookahead == 'p') ADVANCE(969); + if (lookahead == 'u') ADVANCE(1498); END_STATE(); case 1073: - if (lookahead == 'l') ADVANCE(1057); + if (lookahead == 'l') ADVANCE(1238); END_STATE(); case 1074: - if (lookahead == 'l') ADVANCE(1271); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 't') ADVANCE(4212); END_STATE(); case 1075: - if (lookahead == 'l') ADVANCE(1271); - if (lookahead == 'r') ADVANCE(451); + if (lookahead == 'l') ADVANCE(1120); + if (lookahead == 'r') ADVANCE(1440); END_STATE(); case 1076: - if (lookahead == 'l') ADVANCE(587); + if (lookahead == 'l') ADVANCE(1590); END_STATE(); case 1077: - if (lookahead == 'l') ADVANCE(755); + if (lookahead == 'l') ADVANCE(1246); END_STATE(); case 1078: - if (lookahead == 'l') ADVANCE(1055); + if (lookahead == 'l') ADVANCE(1481); END_STATE(); case 1079: - if (lookahead == 'l') ADVANCE(1042); + if (lookahead == 'l') ADVANCE(457); END_STATE(); case 1080: - if (lookahead == 'l') ADVANCE(974); + if (lookahead == 'l') ADVANCE(981); END_STATE(); case 1081: - if (lookahead == 'l') ADVANCE(873); + if (lookahead == 'l') ADVANCE(1314); END_STATE(); case 1082: - if (lookahead == 'l') ADVANCE(1243); + if (lookahead == 'l') ADVANCE(468); END_STATE(); case 1083: - if (lookahead == 'l') ADVANCE(856); + if (lookahead == 'l') ADVANCE(4228); END_STATE(); case 1084: - if (lookahead == 'l') ADVANCE(801); + if (lookahead == 'l') ADVANCE(919); END_STATE(); case 1085: - if (lookahead == 'l') ADVANCE(807); + if (lookahead == 'l') ADVANCE(1430); END_STATE(); case 1086: - if (lookahead == 'l') ADVANCE(823); + if (lookahead == 'l') ADVANCE(758); END_STATE(); case 1087: - if (lookahead == 'l') ADVANCE(823); - if (lookahead == 't') ADVANCE(4180); + if (lookahead == 'l') ADVANCE(975); END_STATE(); case 1088: - if (lookahead == 'l') ADVANCE(771); + if (lookahead == 'l') ADVANCE(1441); + if (lookahead == 'm') ADVANCE(1065); + if (lookahead == 'z') ADVANCE(4333); END_STATE(); case 1089: - if (lookahead == 'l') ADVANCE(1247); - if (lookahead == 'r') ADVANCE(855); + if (lookahead == 'l') ADVANCE(1579); END_STATE(); case 1090: - if (lookahead == 'l') ADVANCE(1574); + if (lookahead == 'l') ADVANCE(459); END_STATE(); case 1091: - if (lookahead == 'l') ADVANCE(825); + if (lookahead == 'l') ADVANCE(896); + if (lookahead == 'p') ADVANCE(1248); END_STATE(); case 1092: - if (lookahead == 'l') ADVANCE(452); - if (lookahead == 't') ADVANCE(846); + if (lookahead == 'l') ADVANCE(897); + if (lookahead == 'n') ADVANCE(4333); END_STATE(); case 1093: - if (lookahead == 'l') ADVANCE(619); + if (lookahead == 'l') ADVANCE(1000); END_STATE(); case 1094: - if (lookahead == 'l') ADVANCE(702); + if (lookahead == 'l') ADVANCE(1079); END_STATE(); case 1095: - if (lookahead == 'l') ADVANCE(1430); + if (lookahead == 'l') ADVANCE(1021); END_STATE(); case 1096: - if (lookahead == 'l') ADVANCE(973); + if (lookahead == 'l') ADVANCE(996); END_STATE(); case 1097: - if (lookahead == 'l') ADVANCE(1570); - if (lookahead == 'r') ADVANCE(4291); + if (lookahead == 'l') ADVANCE(1305); END_STATE(); case 1098: - if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'l') ADVANCE(1253); END_STATE(); case 1099: - if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'l') ADVANCE(1126); END_STATE(); case 1100: - if (lookahead == 'l') ADVANCE(1086); + if (lookahead == 'l') ADVANCE(1307); END_STATE(); case 1101: - if (lookahead == 'l') ADVANCE(609); + if (lookahead == 'l') ADVANCE(1085); END_STATE(); case 1102: - if (lookahead == 'l') ADVANCE(1439); + if (lookahead == 'l') ADVANCE(1298); END_STATE(); case 1103: - if (lookahead == 'l') ADVANCE(1023); + if (lookahead == 'l') ADVANCE(1298); + if (lookahead == 'r') ADVANCE(477); END_STATE(); case 1104: - if (lookahead == 'l') ADVANCE(467); + if (lookahead == 'l') ADVANCE(615); END_STATE(); case 1105: - if (lookahead == 'l') ADVANCE(1104); + if (lookahead == 'l') ADVANCE(783); END_STATE(); case 1106: - if (lookahead == 'l') ADVANCE(877); - if (lookahead == 'o') ADVANCE(1204); + if (lookahead == 'l') ADVANCE(1083); END_STATE(); case 1107: - if (lookahead == 'l') ADVANCE(1015); + if (lookahead == 'l') ADVANCE(1070); END_STATE(); case 1108: - if (lookahead == 'l') ADVANCE(643); + if (lookahead == 'l') ADVANCE(1002); END_STATE(); case 1109: - if (lookahead == 'l') ADVANCE(1016); + if (lookahead == 'l') ADVANCE(901); END_STATE(); case 1110: - if (lookahead == 'm') ADVANCE(4291); + if (lookahead == 'l') ADVANCE(1270); END_STATE(); case 1111: - if (lookahead == 'm') ADVANCE(1037); + if (lookahead == 'l') ADVANCE(884); END_STATE(); case 1112: - if (lookahead == 'm') ADVANCE(1037); - if (lookahead == 'z') ADVANCE(4291); + if (lookahead == 'l') ADVANCE(829); END_STATE(); case 1113: - if (lookahead == 'm') ADVANCE(4244); + if (lookahead == 'l') ADVANCE(835); END_STATE(); case 1114: - if (lookahead == 'm') ADVANCE(564); - if (lookahead == 's') ADVANCE(1228); - if (lookahead == 't') ADVANCE(1350); - if (lookahead == 'u') ADVANCE(1191); - if (lookahead == 'w') ADVANCE(933); + if (lookahead == 'l') ADVANCE(851); END_STATE(); case 1115: - if (lookahead == 'm') ADVANCE(721); - if (lookahead == 's') ADVANCE(926); + if (lookahead == 'l') ADVANCE(851); + if (lookahead == 't') ADVANCE(4222); END_STATE(); case 1116: - if (lookahead == 'm') ADVANCE(953); + if (lookahead == 'l') ADVANCE(799); END_STATE(); case 1117: - if (lookahead == 'm') ADVANCE(1287); + if (lookahead == 'l') ADVANCE(1274); + if (lookahead == 'r') ADVANCE(883); END_STATE(); case 1118: - if (lookahead == 'm') ADVANCE(1146); + if (lookahead == 'l') ADVANCE(1602); END_STATE(); case 1119: - if (lookahead == 'm') ADVANCE(1321); + if (lookahead == 'l') ADVANCE(853); END_STATE(); case 1120: - if (lookahead == 'm') ADVANCE(1321); - if (lookahead == 'n') ADVANCE(1435); + if (lookahead == 'l') ADVANCE(478); + if (lookahead == 't') ADVANCE(874); END_STATE(); case 1121: - if (lookahead == 'm') ADVANCE(1319); + if (lookahead == 'l') ADVANCE(647); END_STATE(); case 1122: - if (lookahead == 'm') ADVANCE(1319); - if (lookahead == 'n') ADVANCE(1493); + if (lookahead == 'l') ADVANCE(730); END_STATE(); case 1123: - if (lookahead == 'm') ADVANCE(1288); + if (lookahead == 'l') ADVANCE(1457); END_STATE(); case 1124: - if (lookahead == 'm') ADVANCE(1584); + if (lookahead == 'l') ADVANCE(1001); END_STATE(); case 1125: - if (lookahead == 'm') ADVANCE(611); + if (lookahead == 'l') ADVANCE(1597); + if (lookahead == 'r') ADVANCE(4333); END_STATE(); case 1126: - if (lookahead == 'm') ADVANCE(1175); + if (lookahead == 'l') ADVANCE(1006); END_STATE(); case 1127: - if (lookahead == 'm') ADVANCE(755); + if (lookahead == 'l') ADVANCE(651); END_STATE(); case 1128: - if (lookahead == 'm') ADVANCE(1269); + if (lookahead == 'l') ADVANCE(1114); END_STATE(); case 1129: - if (lookahead == 'm') ADVANCE(1269); - if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'l') ADVANCE(637); END_STATE(); case 1130: - if (lookahead == 'm') ADVANCE(1269); - if (lookahead == 'p') ADVANCE(1076); - if (lookahead == 'v') ADVANCE(822); + if (lookahead == 'l') ADVANCE(1466); END_STATE(); case 1131: - if (lookahead == 'm') ADVANCE(620); + if (lookahead == 'l') ADVANCE(1051); END_STATE(); case 1132: - if (lookahead == 'm') ADVANCE(990); + if (lookahead == 'l') ADVANCE(493); END_STATE(); case 1133: - if (lookahead == 'm') ADVANCE(538); + if (lookahead == 'l') ADVANCE(1132); END_STATE(); case 1134: - if (lookahead == 'm') ADVANCE(534); + if (lookahead == 'l') ADVANCE(905); + if (lookahead == 'o') ADVANCE(1231); END_STATE(); case 1135: - if (lookahead == 'm') ADVANCE(785); + if (lookahead == 'l') ADVANCE(1043); END_STATE(); case 1136: - if (lookahead == 'm') ADVANCE(1116); + if (lookahead == 'l') ADVANCE(671); END_STATE(); case 1137: - if (lookahead == 'm') ADVANCE(979); + if (lookahead == 'l') ADVANCE(1044); END_STATE(); case 1138: - if (lookahead == 'm') ADVANCE(560); + if (lookahead == 'm') ADVANCE(4333); END_STATE(); case 1139: - if (lookahead == 'm') ADVANCE(1131); + if (lookahead == 'm') ADVANCE(1065); END_STATE(); case 1140: - if (lookahead == 'm') ADVANCE(1317); - if (lookahead == 'n') ADVANCE(1466); - if (lookahead == 's') ADVANCE(432); + if (lookahead == 'm') ADVANCE(1065); + if (lookahead == 'z') ADVANCE(4333); END_STATE(); case 1141: - if (lookahead == 'm') ADVANCE(1132); + if (lookahead == 'm') ADVANCE(4286); END_STATE(); case 1142: - if (lookahead == 'm') ADVANCE(831); - if (lookahead == 'p') ADVANCE(1012); + if (lookahead == 'm') ADVANCE(592); + if (lookahead == 's') ADVANCE(1255); + if (lookahead == 't') ADVANCE(1377); + if (lookahead == 'u') ADVANCE(1218); + if (lookahead == 'w') ADVANCE(961); END_STATE(); case 1143: - if (lookahead == 'm') ADVANCE(1320); - if (lookahead == 'v') ADVANCE(755); + if (lookahead == 'm') ADVANCE(749); + if (lookahead == 's') ADVANCE(954); END_STATE(); case 1144: - if (lookahead == 'm') ADVANCE(984); + if (lookahead == 'm') ADVANCE(981); END_STATE(); case 1145: - if (lookahead == 'm') ADVANCE(613); + if (lookahead == 'm') ADVANCE(1314); END_STATE(); case 1146: - if (lookahead == 'n') ADVANCE(4291); + if (lookahead == 'm') ADVANCE(1173); END_STATE(); case 1147: - if (lookahead == 'n') ADVANCE(4291); - if (lookahead == 'o') ADVANCE(895); + if (lookahead == 'm') ADVANCE(1348); END_STATE(); case 1148: - if (lookahead == 'n') ADVANCE(1585); + if (lookahead == 'm') ADVANCE(1348); + if (lookahead == 'n') ADVANCE(1462); END_STATE(); case 1149: - if (lookahead == 'n') ADVANCE(954); + if (lookahead == 'm') ADVANCE(1346); END_STATE(); case 1150: - if (lookahead == 'n') ADVANCE(4224); + if (lookahead == 'm') ADVANCE(1346); + if (lookahead == 'n') ADVANCE(1520); END_STATE(); case 1151: - if (lookahead == 'n') ADVANCE(1020); - if (lookahead == 'p') ADVANCE(1311); + if (lookahead == 'm') ADVANCE(1315); END_STATE(); case 1152: - if (lookahead == 'n') ADVANCE(3831); + if (lookahead == 'm') ADVANCE(1611); END_STATE(); case 1153: - if (lookahead == 'n') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + if (lookahead == 'm') ADVANCE(639); END_STATE(); case 1154: - if (lookahead == 'n') ADVANCE(3718); + if (lookahead == 'm') ADVANCE(1202); END_STATE(); case 1155: - if (lookahead == 'n') ADVANCE(3628); + if (lookahead == 'm') ADVANCE(783); END_STATE(); case 1156: - if (lookahead == 'n') ADVANCE(3666); + if (lookahead == 'm') ADVANCE(1296); END_STATE(); case 1157: - if (lookahead == 'n') ADVANCE(718); + if (lookahead == 'm') ADVANCE(1296); + if (lookahead == 'n') ADVANCE(636); END_STATE(); case 1158: - if (lookahead == 'n') ADVANCE(1211); + if (lookahead == 'm') ADVANCE(1296); + if (lookahead == 'p') ADVANCE(1104); + if (lookahead == 'v') ADVANCE(850); END_STATE(); case 1159: - if (lookahead == 'n') ADVANCE(895); + if (lookahead == 'm') ADVANCE(648); END_STATE(); case 1160: - if (lookahead == 'n') ADVANCE(576); + if (lookahead == 'm') ADVANCE(1018); END_STATE(); case 1161: - if (lookahead == 'n') ADVANCE(731); + if (lookahead == 'm') ADVANCE(566); END_STATE(); case 1162: - if (lookahead == 'n') ADVANCE(707); + if (lookahead == 'm') ADVANCE(562); END_STATE(); case 1163: - if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'm') ADVANCE(813); END_STATE(); case 1164: - if (lookahead == 'n') ADVANCE(1454); + if (lookahead == 'm') ADVANCE(1144); END_STATE(); case 1165: - if (lookahead == 'n') ADVANCE(1454); - if (lookahead == 'x') ADVANCE(455); + if (lookahead == 'm') ADVANCE(1007); END_STATE(); case 1166: - if (lookahead == 'n') ADVANCE(695); + if (lookahead == 'm') ADVANCE(1159); END_STATE(); case 1167: - if (lookahead == 'n') ADVANCE(899); + if (lookahead == 'm') ADVANCE(588); END_STATE(); case 1168: - if (lookahead == 'n') ADVANCE(1025); + if (lookahead == 'm') ADVANCE(1344); + if (lookahead == 'n') ADVANCE(1493); + if (lookahead == 's') ADVANCE(458); END_STATE(); case 1169: - if (lookahead == 'n') ADVANCE(953); + if (lookahead == 'm') ADVANCE(1160); END_STATE(); case 1170: - if (lookahead == 'n') ADVANCE(886); + if (lookahead == 'm') ADVANCE(859); + if (lookahead == 'p') ADVANCE(1041); END_STATE(); case 1171: - if (lookahead == 'n') ADVANCE(910); - if (lookahead == 'x') ADVANCE(1506); + if (lookahead == 'm') ADVANCE(1347); + if (lookahead == 'v') ADVANCE(783); END_STATE(); case 1172: - if (lookahead == 'n') ADVANCE(4174); + if (lookahead == 'm') ADVANCE(1012); END_STATE(); case 1173: - if (lookahead == 'n') ADVANCE(1227); + if (lookahead == 'n') ADVANCE(4333); END_STATE(); case 1174: - if (lookahead == 'n') ADVANCE(747); + if (lookahead == 'n') ADVANCE(4333); + if (lookahead == 'o') ADVANCE(923); END_STATE(); case 1175: - if (lookahead == 'n') ADVANCE(1403); + if (lookahead == 'n') ADVANCE(1612); END_STATE(); case 1176: - if (lookahead == 'n') ADVANCE(947); + if (lookahead == 'n') ADVANCE(982); END_STATE(); case 1177: - if (lookahead == 'n') ADVANCE(604); + if (lookahead == 'n') ADVANCE(4266); END_STATE(); case 1178: - if (lookahead == 'n') ADVANCE(722); + if (lookahead == 'n') ADVANCE(1048); + if (lookahead == 'p') ADVANCE(1338); END_STATE(); case 1179: - if (lookahead == 'n') ADVANCE(722); - if (lookahead == 's') ADVANCE(3811); + if (lookahead == 'n') ADVANCE(3873); END_STATE(); case 1180: - if (lookahead == 'n') ADVANCE(723); + if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); END_STATE(); case 1181: - if (lookahead == 'n') ADVANCE(696); + if (lookahead == 'n') ADVANCE(3760); END_STATE(); case 1182: - if (lookahead == 'n') ADVANCE(1444); + if (lookahead == 'n') ADVANCE(3668); END_STATE(); case 1183: - if (lookahead == 'n') ADVANCE(1422); + if (lookahead == 'n') ADVANCE(3705); END_STATE(); case 1184: - if (lookahead == 'n') ADVANCE(955); + if (lookahead == 'n') ADVANCE(746); END_STATE(); case 1185: - if (lookahead == 'n') ADVANCE(1479); + if (lookahead == 'n') ADVANCE(1238); END_STATE(); case 1186: - if (lookahead == 'n') ADVANCE(755); + if (lookahead == 'n') ADVANCE(923); END_STATE(); case 1187: - if (lookahead == 'n') ADVANCE(1473); + if (lookahead == 'n') ADVANCE(604); END_STATE(); case 1188: - if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'n') ADVANCE(759); END_STATE(); case 1189: - if (lookahead == 'n') ADVANCE(608); - if (lookahead == 'p') ADVANCE(1093); - if (lookahead == 'v') ADVANCE(822); + if (lookahead == 'n') ADVANCE(735); END_STATE(); case 1190: - if (lookahead == 'n') ADVANCE(1472); + if (lookahead == 'n') ADVANCE(768); END_STATE(); case 1191: - if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 'n') ADVANCE(1481); END_STATE(); case 1192: - if (lookahead == 'n') ADVANCE(830); + if (lookahead == 'n') ADVANCE(1481); + if (lookahead == 'x') ADVANCE(481); END_STATE(); case 1193: - if (lookahead == 'n') ADVANCE(679); + if (lookahead == 'n') ADVANCE(723); END_STATE(); case 1194: - if (lookahead == 'n') ADVANCE(735); + if (lookahead == 'n') ADVANCE(927); END_STATE(); case 1195: - if (lookahead == 'n') ADVANCE(735); - if (lookahead == 'x') ADVANCE(1303); + if (lookahead == 'n') ADVANCE(1053); END_STATE(); case 1196: - if (lookahead == 'n') ADVANCE(907); + if (lookahead == 'n') ADVANCE(981); END_STATE(); case 1197: - if (lookahead == 'n') ADVANCE(1483); + if (lookahead == 'n') ADVANCE(914); END_STATE(); case 1198: - if (lookahead == 'n') ADVANCE(1564); + if (lookahead == 'n') ADVANCE(938); + if (lookahead == 'x') ADVANCE(1533); END_STATE(); case 1199: - if (lookahead == 'n') ADVANCE(904); + if (lookahead == 'n') ADVANCE(4216); END_STATE(); case 1200: - if (lookahead == 'n') ADVANCE(976); + if (lookahead == 'n') ADVANCE(1254); END_STATE(); case 1201: - if (lookahead == 'n') ADVANCE(976); - if (lookahead == 'p') ADVANCE(745); + if (lookahead == 'n') ADVANCE(775); END_STATE(); case 1202: - if (lookahead == 'n') ADVANCE(1420); + if (lookahead == 'n') ADVANCE(1430); END_STATE(); case 1203: - if (lookahead == 'n') ADVANCE(1082); + if (lookahead == 'n') ADVANCE(975); END_STATE(); case 1204: - if (lookahead == 'n') ADVANCE(864); + if (lookahead == 'n') ADVANCE(632); END_STATE(); case 1205: - if (lookahead == 'n') ADVANCE(1537); + if (lookahead == 'n') ADVANCE(750); END_STATE(); case 1206: - if (lookahead == 'n') ADVANCE(596); + if (lookahead == 'n') ADVANCE(750); + if (lookahead == 's') ADVANCE(3853); END_STATE(); case 1207: - if (lookahead == 'n') ADVANCE(596); - if (lookahead == 't') ADVANCE(1403); + if (lookahead == 'n') ADVANCE(751); END_STATE(); case 1208: - if (lookahead == 'n') ADVANCE(1451); + if (lookahead == 'n') ADVANCE(724); END_STATE(); case 1209: - if (lookahead == 'n') ADVANCE(1434); + if (lookahead == 'n') ADVANCE(1471); END_STATE(); case 1210: - if (lookahead == 'n') ADVANCE(753); + if (lookahead == 'n') ADVANCE(1449); END_STATE(); case 1211: - if (lookahead == 'o') ADVANCE(1590); + if (lookahead == 'n') ADVANCE(983); END_STATE(); case 1212: - if (lookahead == 'o') ADVANCE(4291); + if (lookahead == 'n') ADVANCE(1506); END_STATE(); case 1213: - if (lookahead == 'o') ADVANCE(1111); - if (lookahead == 's') ADVANCE(1585); + if (lookahead == 'n') ADVANCE(783); END_STATE(); case 1214: - if (lookahead == 'o') ADVANCE(1037); + if (lookahead == 'n') ADVANCE(1500); END_STATE(); case 1215: - if (lookahead == 'o') ADVANCE(1652); + if (lookahead == 'n') ADVANCE(636); END_STATE(); case 1216: - if (lookahead == 'o') ADVANCE(3740); + if (lookahead == 'n') ADVANCE(636); + if (lookahead == 'p') ADVANCE(1121); + if (lookahead == 'v') ADVANCE(850); END_STATE(); case 1217: - if (lookahead == 'o') ADVANCE(718); + if (lookahead == 'n') ADVANCE(1499); END_STATE(); case 1218: - if (lookahead == 'o') ADVANCE(879); + if (lookahead == 'n') ADVANCE(1047); END_STATE(); case 1219: - if (lookahead == 'o') ADVANCE(895); + if (lookahead == 'n') ADVANCE(858); END_STATE(); case 1220: - if (lookahead == 'o') ADVANCE(441); + if (lookahead == 'n') ADVANCE(707); END_STATE(); case 1221: - if (lookahead == 'o') ADVANCE(4168); + if (lookahead == 'n') ADVANCE(763); END_STATE(); case 1222: - if (lookahead == 'o') ADVANCE(498); + if (lookahead == 'n') ADVANCE(763); + if (lookahead == 'x') ADVANCE(1330); END_STATE(); case 1223: - if (lookahead == 'o') ADVANCE(1597); + if (lookahead == 'n') ADVANCE(935); END_STATE(); case 1224: - if (lookahead == 'o') ADVANCE(1343); + if (lookahead == 'n') ADVANCE(1510); END_STATE(); case 1225: - if (lookahead == 'o') ADVANCE(1413); + if (lookahead == 'n') ADVANCE(1591); END_STATE(); case 1226: - if (lookahead == 'o') ADVANCE(649); + if (lookahead == 'n') ADVANCE(932); END_STATE(); case 1227: - if (lookahead == 'o') ADVANCE(1454); + if (lookahead == 'n') ADVANCE(1004); END_STATE(); case 1228: - if (lookahead == 'o') ADVANCE(1352); + if (lookahead == 'n') ADVANCE(1004); + if (lookahead == 'p') ADVANCE(773); END_STATE(); case 1229: - if (lookahead == 'o') ADVANCE(1592); + if (lookahead == 'n') ADVANCE(1447); END_STATE(); case 1230: - if (lookahead == 'o') ADVANCE(733); + if (lookahead == 'n') ADVANCE(1110); END_STATE(); case 1231: - if (lookahead == 'o') ADVANCE(503); + if (lookahead == 'n') ADVANCE(892); END_STATE(); case 1232: - if (lookahead == 'o') ADVANCE(1332); + if (lookahead == 'n') ADVANCE(1564); END_STATE(); case 1233: - if (lookahead == 'o') ADVANCE(1287); + if (lookahead == 'n') ADVANCE(624); END_STATE(); case 1234: - if (lookahead == 'o') ADVANCE(1287); - if (lookahead == 'u') ADVANCE(1416); + if (lookahead == 'n') ADVANCE(624); + if (lookahead == 't') ADVANCE(1430); END_STATE(); case 1235: - if (lookahead == 'o') ADVANCE(1139); + if (lookahead == 'n') ADVANCE(1478); END_STATE(); case 1236: - if (lookahead == 'o') ADVANCE(1061); + if (lookahead == 'n') ADVANCE(1461); END_STATE(); case 1237: - if (lookahead == 'o') ADVANCE(1545); + if (lookahead == 'n') ADVANCE(781); END_STATE(); case 1238: - if (lookahead == 'o') ADVANCE(669); + if (lookahead == 'o') ADVANCE(1617); END_STATE(); case 1239: - if (lookahead == 'o') ADVANCE(1146); + if (lookahead == 'o') ADVANCE(4333); END_STATE(); case 1240: - if (lookahead == 'o') ADVANCE(1561); - if (lookahead == 'p') ADVANCE(574); + if (lookahead == 'o') ADVANCE(1139); + if (lookahead == 's') ADVANCE(1612); END_STATE(); case 1241: - if (lookahead == 'o') ADVANCE(884); + if (lookahead == 'o') ADVANCE(1065); END_STATE(); case 1242: - if (lookahead == 'o') ADVANCE(1329); + if (lookahead == 'o') ADVANCE(1679); END_STATE(); case 1243: - if (lookahead == 'o') ADVANCE(681); + if (lookahead == 'o') ADVANCE(3782); END_STATE(); case 1244: - if (lookahead == 'o') ADVANCE(1405); + if (lookahead == 'o') ADVANCE(746); END_STATE(); case 1245: - if (lookahead == 'o') ADVANCE(724); + if (lookahead == 'o') ADVANCE(907); END_STATE(); case 1246: - if (lookahead == 'o') ADVANCE(1346); + if (lookahead == 'o') ADVANCE(923); END_STATE(); case 1247: - if (lookahead == 'o') ADVANCE(1186); + if (lookahead == 'o') ADVANCE(467); END_STATE(); case 1248: - if (lookahead == 'o') ADVANCE(1292); + if (lookahead == 'o') ADVANCE(4210); END_STATE(); case 1249: - if (lookahead == 'o') ADVANCE(1546); + if (lookahead == 'o') ADVANCE(525); END_STATE(); case 1250: - if (lookahead == 'o') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1624); END_STATE(); case 1251: - if (lookahead == 'o') ADVANCE(1560); + if (lookahead == 'o') ADVANCE(1370); END_STATE(); case 1252: - if (lookahead == 'o') ADVANCE(1363); + if (lookahead == 'o') ADVANCE(1440); END_STATE(); case 1253: - if (lookahead == 'o') ADVANCE(1345); + if (lookahead == 'o') ADVANCE(677); END_STATE(); case 1254: - if (lookahead == 'o') ADVANCE(1175); + if (lookahead == 'o') ADVANCE(1481); END_STATE(); case 1255: - if (lookahead == 'o') ADVANCE(449); + if (lookahead == 'o') ADVANCE(1379); END_STATE(); case 1256: - if (lookahead == 'o') ADVANCE(1094); + if (lookahead == 'o') ADVANCE(1619); END_STATE(); case 1257: - if (lookahead == 'o') ADVANCE(1568); + if (lookahead == 'o') ADVANCE(761); END_STATE(); case 1258: - if (lookahead == 'o') ADVANCE(1341); + if (lookahead == 'o') ADVANCE(530); END_STATE(); case 1259: - if (lookahead == 'o') ADVANCE(1523); - if (lookahead == 'u') ADVANCE(1038); + if (lookahead == 'o') ADVANCE(1359); END_STATE(); case 1260: - if (lookahead == 'o') ADVANCE(1355); + if (lookahead == 'o') ADVANCE(1314); END_STATE(); case 1261: - if (lookahead == 'o') ADVANCE(1217); + if (lookahead == 'o') ADVANCE(1314); + if (lookahead == 'u') ADVANCE(1443); END_STATE(); case 1262: - if (lookahead == 'o') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1166); END_STATE(); case 1263: - if (lookahead == 'o') ADVANCE(1497); - if (lookahead == 's') ADVANCE(4085); + if (lookahead == 'o') ADVANCE(1089); END_STATE(); case 1264: - if (lookahead == 'o') ADVANCE(1335); + if (lookahead == 'o') ADVANCE(1572); END_STATE(); case 1265: - if (lookahead == 'o') ADVANCE(1458); - if (lookahead == 'u') ADVANCE(1079); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1642); + if (lookahead == 'o') ADVANCE(697); END_STATE(); case 1266: - if (lookahead == 'o') ADVANCE(1337); + if (lookahead == 'o') ADVANCE(1173); END_STATE(); case 1267: - if (lookahead == 'o') ADVANCE(1460); + if (lookahead == 'o') ADVANCE(1588); + if (lookahead == 'p') ADVANCE(602); END_STATE(); case 1268: - if (lookahead == 'o') ADVANCE(1460); - if (lookahead == 's') ADVANCE(4085); + if (lookahead == 'o') ADVANCE(912); END_STATE(); case 1269: - if (lookahead == 'o') ADVANCE(1587); + if (lookahead == 'o') ADVANCE(1356); END_STATE(); case 1270: - if (lookahead == 'o') ADVANCE(894); + if (lookahead == 'o') ADVANCE(709); END_STATE(); case 1271: - if (lookahead == 'o') ADVANCE(739); + if (lookahead == 'o') ADVANCE(1432); END_STATE(); case 1272: - if (lookahead == 'o') ADVANCE(961); + if (lookahead == 'o') ADVANCE(752); END_STATE(); case 1273: - if (lookahead == 'o') ADVANCE(734); + if (lookahead == 'o') ADVANCE(1373); END_STATE(); case 1274: - if (lookahead == 'o') ADVANCE(1314); + if (lookahead == 'o') ADVANCE(1213); END_STATE(); case 1275: - if (lookahead == 'o') ADVANCE(1121); + if (lookahead == 'o') ADVANCE(1319); END_STATE(); case 1276: - if (lookahead == 'o') ADVANCE(1183); + if (lookahead == 'o') ADVANCE(1573); END_STATE(); case 1277: - if (lookahead == 'o') ADVANCE(1569); + if (lookahead == 'o') ADVANCE(1128); END_STATE(); case 1278: - if (lookahead == 'o') ADVANCE(560); + if (lookahead == 'o') ADVANCE(1587); END_STATE(); case 1279: - if (lookahead == 'o') ADVANCE(1579); + if (lookahead == 'o') ADVANCE(1390); END_STATE(); case 1280: - if (lookahead == 'o') ADVANCE(1242); + if (lookahead == 'o') ADVANCE(1372); END_STATE(); case 1281: - if (lookahead == 'o') ADVANCE(1123); + if (lookahead == 'o') ADVANCE(1202); END_STATE(); case 1282: - if (lookahead == 'o') ADVANCE(1507); + if (lookahead == 'o') ADVANCE(475); END_STATE(); case 1283: - if (lookahead == 'o') ADVANCE(1376); + if (lookahead == 'o') ADVANCE(1122); END_STATE(); case 1284: - if (lookahead == 'o') ADVANCE(1090); + if (lookahead == 'o') ADVANCE(1595); END_STATE(); case 1285: - if (lookahead == 'o') ADVANCE(1209); + if (lookahead == 'o') ADVANCE(1368); END_STATE(); case 1286: - if (lookahead == 'p') ADVANCE(561); + if (lookahead == 'o') ADVANCE(1550); + if (lookahead == 'u') ADVANCE(1066); END_STATE(); case 1287: - if (lookahead == 'p') ADVANCE(4291); + if (lookahead == 'o') ADVANCE(1382); END_STATE(); case 1288: - if (lookahead == 'p') ADVANCE(1106); + if (lookahead == 'o') ADVANCE(1244); END_STATE(); case 1289: - if (lookahead == 'p') ADVANCE(1610); + if (lookahead == 'o') ADVANCE(1524); END_STATE(); case 1290: - if (lookahead == 'p') ADVANCE(707); + if (lookahead == 'o') ADVANCE(1524); + if (lookahead == 's') ADVANCE(4127); END_STATE(); case 1291: - if (lookahead == 'p') ADVANCE(1075); + if (lookahead == 'o') ADVANCE(1362); END_STATE(); case 1292: - if (lookahead == 'p') ADVANCE(4181); + if (lookahead == 'o') ADVANCE(1485); + if (lookahead == 'u') ADVANCE(1107); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1669); END_STATE(); case 1293: - if (lookahead == 'p') ADVANCE(1542); + if (lookahead == 'o') ADVANCE(1364); END_STATE(); case 1294: - if (lookahead == 'p') ADVANCE(1065); + if (lookahead == 'o') ADVANCE(1487); END_STATE(); case 1295: - if (lookahead == 'p') ADVANCE(745); + if (lookahead == 'o') ADVANCE(1487); + if (lookahead == 's') ADVANCE(4127); END_STATE(); case 1296: - if (lookahead == 'p') ADVANCE(1081); + if (lookahead == 'o') ADVANCE(1614); END_STATE(); case 1297: - if (lookahead == 'p') ADVANCE(552); + if (lookahead == 'o') ADVANCE(922); END_STATE(); case 1298: - if (lookahead == 'p') ADVANCE(1490); + if (lookahead == 'o') ADVANCE(767); END_STATE(); case 1299: - if (lookahead == 'p') ADVANCE(1052); + if (lookahead == 'o') ADVANCE(989); END_STATE(); case 1300: - if (lookahead == 'p') ADVANCE(1289); + if (lookahead == 'o') ADVANCE(762); END_STATE(); case 1301: - if (lookahead == 'p') ADVANCE(1076); - if (lookahead == 'v') ADVANCE(822); + if (lookahead == 'o') ADVANCE(1341); END_STATE(); case 1302: - if (lookahead == 'p') ADVANCE(444); + if (lookahead == 'o') ADVANCE(1149); END_STATE(); case 1303: - if (lookahead == 'p') ADVANCE(557); + if (lookahead == 'o') ADVANCE(1210); END_STATE(); case 1304: - if (lookahead == 'p') ADVANCE(580); + if (lookahead == 'o') ADVANCE(1596); END_STATE(); case 1305: - if (lookahead == 'p') ADVANCE(587); + if (lookahead == 'o') ADVANCE(588); END_STATE(); case 1306: - if (lookahead == 'p') ADVANCE(755); + if (lookahead == 'o') ADVANCE(1606); END_STATE(); case 1307: - if (lookahead == 'p') ADVANCE(875); + if (lookahead == 'o') ADVANCE(1269); END_STATE(); case 1308: - if (lookahead == 'p') ADVANCE(965); + if (lookahead == 'o') ADVANCE(1151); END_STATE(); case 1309: - if (lookahead == 'p') ADVANCE(807); + if (lookahead == 'o') ADVANCE(1534); END_STATE(); case 1310: - if (lookahead == 'p') ADVANCE(786); + if (lookahead == 'o') ADVANCE(1403); END_STATE(); case 1311: - if (lookahead == 'p') ADVANCE(841); + if (lookahead == 'o') ADVANCE(1118); END_STATE(); case 1312: - if (lookahead == 'p') ADVANCE(773); + if (lookahead == 'o') ADVANCE(1236); END_STATE(); case 1313: - if (lookahead == 'p') ADVANCE(624); + if (lookahead == 'p') ADVANCE(589); END_STATE(); case 1314: - if (lookahead == 'p') ADVANCE(1520); + if (lookahead == 'p') ADVANCE(4333); END_STATE(); case 1315: - if (lookahead == 'p') ADVANCE(806); + if (lookahead == 'p') ADVANCE(1134); END_STATE(); case 1316: - if (lookahead == 'p') ADVANCE(806); - if (lookahead == 't') ADVANCE(931); + if (lookahead == 'p') ADVANCE(1637); END_STATE(); case 1317: - if (lookahead == 'p') ADVANCE(1074); + if (lookahead == 'p') ADVANCE(735); END_STATE(); case 1318: - if (lookahead == 'p') ADVANCE(1080); + if (lookahead == 'p') ADVANCE(1103); END_STATE(); case 1319: - if (lookahead == 'p') ADVANCE(1400); + if (lookahead == 'p') ADVANCE(4223); END_STATE(); case 1320: - if (lookahead == 'p') ADVANCE(1077); + if (lookahead == 'p') ADVANCE(1569); END_STATE(); case 1321: - if (lookahead == 'p') ADVANCE(1228); + if (lookahead == 'p') ADVANCE(1093); END_STATE(); case 1322: - if (lookahead == 'p') ADVANCE(627); + if (lookahead == 'p') ADVANCE(773); END_STATE(); case 1323: - if (lookahead == 'p') ADVANCE(640); + if (lookahead == 'p') ADVANCE(1109); END_STATE(); case 1324: - if (lookahead == 'q') ADVANCE(1563); + if (lookahead == 'p') ADVANCE(580); END_STATE(); case 1325: - if (lookahead == 'q') ADVANCE(1566); + if (lookahead == 'p') ADVANCE(1517); END_STATE(); case 1326: - if (lookahead == 'q') ADVANCE(1566); - if (lookahead == 's') ADVANCE(947); + if (lookahead == 'p') ADVANCE(1080); END_STATE(); case 1327: - if (lookahead == 'q') ADVANCE(1067); - if (lookahead == 't') ADVANCE(1395); + if (lookahead == 'p') ADVANCE(1316); END_STATE(); case 1328: - if (lookahead == 'q') ADVANCE(1551); + if (lookahead == 'p') ADVANCE(1104); + if (lookahead == 'v') ADVANCE(850); END_STATE(); case 1329: - if (lookahead == 'r') ADVANCE(4291); + if (lookahead == 'p') ADVANCE(470); END_STATE(); case 1330: - if (lookahead == 'r') ADVANCE(4176); + if (lookahead == 'p') ADVANCE(585); END_STATE(); case 1331: - if (lookahead == 'r') ADVANCE(1037); + if (lookahead == 'p') ADVANCE(608); END_STATE(); case 1332: - if (lookahead == 'r') ADVANCE(1028); + if (lookahead == 'p') ADVANCE(615); END_STATE(); case 1333: - if (lookahead == 'r') ADVANCE(1328); + if (lookahead == 'p') ADVANCE(783); END_STATE(); case 1334: - if (lookahead == 'r') ADVANCE(3829); + if (lookahead == 'p') ADVANCE(903); END_STATE(); case 1335: - if (lookahead == 'r') ADVANCE(3827); + if (lookahead == 'p') ADVANCE(993); END_STATE(); case 1336: - if (lookahead == 'r') ADVANCE(3885); + if (lookahead == 'p') ADVANCE(835); END_STATE(); case 1337: - if (lookahead == 'r') ADVANCE(3883); + if (lookahead == 'p') ADVANCE(814); END_STATE(); case 1338: - if (lookahead == 'r') ADVANCE(4085); + if (lookahead == 'p') ADVANCE(869); END_STATE(); case 1339: - if (lookahead == 'r') ADVANCE(421); + if (lookahead == 'p') ADVANCE(801); END_STATE(); case 1340: - if (lookahead == 'r') ADVANCE(1572); + if (lookahead == 'p') ADVANCE(652); END_STATE(); case 1341: - if (lookahead == 'r') ADVANCE(718); + if (lookahead == 'p') ADVANCE(1547); END_STATE(); case 1342: - if (lookahead == 'r') ADVANCE(895); + if (lookahead == 'p') ADVANCE(834); END_STATE(); case 1343: - if (lookahead == 'r') ADVANCE(1138); + if (lookahead == 'p') ADVANCE(834); + if (lookahead == 't') ADVANCE(959); END_STATE(); case 1344: - if (lookahead == 'r') ADVANCE(1610); + if (lookahead == 'p') ADVANCE(1102); END_STATE(); case 1345: - if (lookahead == 'r') ADVANCE(731); + if (lookahead == 'p') ADVANCE(1108); END_STATE(); case 1346: - if (lookahead == 'r') ADVANCE(1036); + if (lookahead == 'p') ADVANCE(1427); END_STATE(); case 1347: - if (lookahead == 'r') ADVANCE(1612); + if (lookahead == 'p') ADVANCE(1105); END_STATE(); case 1348: - if (lookahead == 'r') ADVANCE(429); + if (lookahead == 'p') ADVANCE(1255); END_STATE(); case 1349: - if (lookahead == 'r') ADVANCE(1223); + if (lookahead == 'p') ADVANCE(655); END_STATE(); case 1350: - if (lookahead == 'r') ADVANCE(1563); + if (lookahead == 'p') ADVANCE(668); END_STATE(); case 1351: - if (lookahead == 'r') ADVANCE(707); + if (lookahead == 'q') ADVANCE(1590); END_STATE(); case 1352: - if (lookahead == 'r') ADVANCE(1454); + if (lookahead == 'q') ADVANCE(1593); END_STATE(); case 1353: - if (lookahead == 'r') ADVANCE(1558); + if (lookahead == 'q') ADVANCE(1593); + if (lookahead == 's') ADVANCE(975); END_STATE(); case 1354: - if (lookahead == 'r') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(1039); + if (lookahead == 'q') ADVANCE(1095); + if (lookahead == 't') ADVANCE(1422); END_STATE(); case 1355: - if (lookahead == 'r') ADVANCE(1025); + if (lookahead == 'q') ADVANCE(1578); END_STATE(); case 1356: - if (lookahead == 'r') ADVANCE(501); + if (lookahead == 'r') ADVANCE(4333); END_STATE(); case 1357: - if (lookahead == 'r') ADVANCE(1599); + if (lookahead == 'r') ADVANCE(4218); END_STATE(); case 1358: - if (lookahead == 'r') ADVANCE(905); + if (lookahead == 'r') ADVANCE(1065); END_STATE(); case 1359: - if (lookahead == 'r') ADVANCE(787); + if (lookahead == 'r') ADVANCE(1056); END_STATE(); case 1360: - if (lookahead == 'r') ADVANCE(898); + if (lookahead == 'r') ADVANCE(1355); END_STATE(); case 1361: - if (lookahead == 'r') ADVANCE(1146); + if (lookahead == 'r') ADVANCE(3871); END_STATE(); case 1362: - if (lookahead == 'r') ADVANCE(506); + if (lookahead == 'r') ADVANCE(3869); END_STATE(); case 1363: - if (lookahead == 'r') ADVANCE(1403); + if (lookahead == 'r') ADVANCE(3929); END_STATE(); case 1364: - if (lookahead == 'r') ADVANCE(569); + if (lookahead == 'r') ADVANCE(3927); END_STATE(); case 1365: - if (lookahead == 'r') ADVANCE(573); + if (lookahead == 'r') ADVANCE(4127); END_STATE(); case 1366: - if (lookahead == 'r') ADVANCE(696); + if (lookahead == 'r') ADVANCE(446); END_STATE(); case 1367: - if (lookahead == 'r') ADVANCE(1484); + if (lookahead == 'r') ADVANCE(1599); END_STATE(); case 1368: - if (lookahead == 'r') ADVANCE(1484); - if (lookahead == 't') ADVANCE(1403); + if (lookahead == 'r') ADVANCE(746); END_STATE(); case 1369: - if (lookahead == 'r') ADVANCE(800); + if (lookahead == 'r') ADVANCE(923); END_STATE(); case 1370: - if (lookahead == 'r') ADVANCE(957); + if (lookahead == 'r') ADVANCE(1167); END_STATE(); case 1371: - if (lookahead == 'r') ADVANCE(795); - if (lookahead == 't') ADVANCE(568); + if (lookahead == 'r') ADVANCE(1637); END_STATE(); case 1372: - if (lookahead == 'r') ADVANCE(1188); + if (lookahead == 'r') ADVANCE(759); END_STATE(); case 1373: - if (lookahead == 'r') ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1064); END_STATE(); case 1374: - if (lookahead == 'r') ADVANCE(1175); + if (lookahead == 'r') ADVANCE(1639); END_STATE(); case 1375: - if (lookahead == 'r') ADVANCE(1485); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 1376: - if (lookahead == 'r') ADVANCE(755); + if (lookahead == 'r') ADVANCE(1250); END_STATE(); case 1377: - if (lookahead == 'r') ADVANCE(1270); + if (lookahead == 'r') ADVANCE(1590); END_STATE(); case 1378: - if (lookahead == 'r') ADVANCE(855); + if (lookahead == 'r') ADVANCE(735); END_STATE(); case 1379: - if (lookahead == 'r') ADVANCE(1233); + if (lookahead == 'r') ADVANCE(1481); END_STATE(); case 1380: - if (lookahead == 'r') ADVANCE(837); + if (lookahead == 'r') ADVANCE(1585); END_STATE(); case 1381: - if (lookahead == 'r') ADVANCE(1009); + if (lookahead == 'r') ADVANCE(1585); + if (lookahead == 'u') ADVANCE(1067); END_STATE(); case 1382: - if (lookahead == 'r') ADVANCE(1155); + if (lookahead == 'r') ADVANCE(1053); END_STATE(); case 1383: - if (lookahead == 'r') ADVANCE(1156); + if (lookahead == 'r') ADVANCE(528); END_STATE(); case 1384: - if (lookahead == 'r') ADVANCE(1356); + if (lookahead == 'r') ADVANCE(1626); END_STATE(); case 1385: - if (lookahead == 'r') ADVANCE(1362); + if (lookahead == 'r') ADVANCE(933); END_STATE(); case 1386: - if (lookahead == 'r') ADVANCE(850); + if (lookahead == 'r') ADVANCE(815); END_STATE(); case 1387: - if (lookahead == 'r') ADVANCE(827); + if (lookahead == 'r') ADVANCE(926); END_STATE(); case 1388: - if (lookahead == 'r') ADVANCE(967); + if (lookahead == 'r') ADVANCE(1173); END_STATE(); case 1389: - if (lookahead == 'r') ADVANCE(679); + if (lookahead == 'r') ADVANCE(533); END_STATE(); case 1390: - if (lookahead == 'r') ADVANCE(1273); + if (lookahead == 'r') ADVANCE(1430); END_STATE(); case 1391: - if (lookahead == 'r') ADVANCE(987); + if (lookahead == 'r') ADVANCE(597); END_STATE(); case 1392: - if (lookahead == 'r') ADVANCE(1430); + if (lookahead == 'r') ADVANCE(601); END_STATE(); case 1393: - if (lookahead == 'r') ADVANCE(1381); + if (lookahead == 'r') ADVANCE(724); END_STATE(); case 1394: - if (lookahead == 'r') ADVANCE(985); + if (lookahead == 'r') ADVANCE(1511); END_STATE(); case 1395: - if (lookahead == 'r') ADVANCE(978); + if (lookahead == 'r') ADVANCE(1511); + if (lookahead == 't') ADVANCE(1430); END_STATE(); case 1396: - if (lookahead == 'r') ADVANCE(639); + if (lookahead == 'r') ADVANCE(828); END_STATE(); case 1397: - if (lookahead == 'r') ADVANCE(1571); + if (lookahead == 'r') ADVANCE(985); END_STATE(); case 1398: - if (lookahead == 'r') ADVANCE(638); + if (lookahead == 'r') ADVANCE(823); + if (lookahead == 't') ADVANCE(596); END_STATE(); case 1399: - if (lookahead == 'r') ADVANCE(4188); + if (lookahead == 'r') ADVANCE(1215); END_STATE(); case 1400: - if (lookahead == 'r') ADVANCE(862); + if (lookahead == 'r') ADVANCE(1474); END_STATE(); case 1401: - if (lookahead == 'r') ADVANCE(1021); + if (lookahead == 'r') ADVANCE(1202); END_STATE(); case 1402: - if (lookahead == 'r') ADVANCE(1541); + if (lookahead == 'r') ADVANCE(1512); END_STATE(); case 1403: - if (lookahead == 's') ADVANCE(4291); + if (lookahead == 'r') ADVANCE(783); END_STATE(); case 1404: - if (lookahead == 's') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(1297); END_STATE(); case 1405: - if (lookahead == 's') ADVANCE(4224); + if (lookahead == 'r') ADVANCE(883); END_STATE(); case 1406: - if (lookahead == 's') ADVANCE(4085); + if (lookahead == 'r') ADVANCE(1260); END_STATE(); case 1407: - if (lookahead == 's') ADVANCE(1813); + if (lookahead == 'r') ADVANCE(865); END_STATE(); case 1408: - if (lookahead == 's') ADVANCE(3811); + if (lookahead == 'r') ADVANCE(1038); END_STATE(); case 1409: - if (lookahead == 's') ADVANCE(909); + if (lookahead == 'r') ADVANCE(1182); END_STATE(); case 1410: - if (lookahead == 's') ADVANCE(443); + if (lookahead == 'r') ADVANCE(1183); END_STATE(); case 1411: - if (lookahead == 's') ADVANCE(1563); + if (lookahead == 'r') ADVANCE(1383); END_STATE(); case 1412: - if (lookahead == 's') ADVANCE(1029); + if (lookahead == 'r') ADVANCE(1389); END_STATE(); case 1413: - if (lookahead == 's') ADVANCE(1454); + if (lookahead == 'r') ADVANCE(878); END_STATE(); case 1414: - if (lookahead == 's') ADVANCE(1601); + if (lookahead == 'r') ADVANCE(855); END_STATE(); case 1415: - if (lookahead == 's') ADVANCE(1411); + if (lookahead == 'r') ADVANCE(995); END_STATE(); case 1416: - if (lookahead == 's') ADVANCE(911); + if (lookahead == 'r') ADVANCE(707); END_STATE(); case 1417: - if (lookahead == 's') ADVANCE(1457); + if (lookahead == 'r') ADVANCE(1300); END_STATE(); case 1418: - if (lookahead == 's') ADVANCE(1239); + if (lookahead == 'r') ADVANCE(1015); END_STATE(); case 1419: - if (lookahead == 's') ADVANCE(914); - if (lookahead == 't') ADVANCE(1555); + if (lookahead == 'r') ADVANCE(1457); END_STATE(); case 1420: - if (lookahead == 's') ADVANCE(787); + if (lookahead == 'r') ADVANCE(1408); END_STATE(); case 1421: - if (lookahead == 's') ADVANCE(787); - if (lookahead == 'u') ADVANCE(1202); + if (lookahead == 'r') ADVANCE(1013); END_STATE(); case 1422: - if (lookahead == 's') ADVANCE(4175); + if (lookahead == 'r') ADVANCE(1006); END_STATE(); case 1423: - if (lookahead == 's') ADVANCE(1403); + if (lookahead == 'r') ADVANCE(667); END_STATE(); case 1424: - if (lookahead == 's') ADVANCE(947); + if (lookahead == 'r') ADVANCE(1598); END_STATE(); case 1425: - if (lookahead == 's') ADVANCE(1468); + if (lookahead == 'r') ADVANCE(666); END_STATE(); case 1426: - if (lookahead == 's') ADVANCE(1444); + if (lookahead == 'r') ADVANCE(4230); END_STATE(); case 1427: - if (lookahead == 's') ADVANCE(832); + if (lookahead == 'r') ADVANCE(890); END_STATE(); case 1428: - if (lookahead == 's') ADVANCE(1462); + if (lookahead == 'r') ADVANCE(1049); END_STATE(); case 1429: - if (lookahead == 's') ADVANCE(1479); + if (lookahead == 'r') ADVANCE(1568); END_STATE(); case 1430: - if (lookahead == 's') ADVANCE(755); + if (lookahead == 's') ADVANCE(4333); END_STATE(); case 1431: - if (lookahead == 's') ADVANCE(808); + if (lookahead == 's') ADVANCE(1612); END_STATE(); case 1432: - if (lookahead == 's') ADVANCE(1177); + if (lookahead == 's') ADVANCE(4266); END_STATE(); case 1433: - if (lookahead == 's') ADVANCE(1534); + if (lookahead == 's') ADVANCE(4127); END_STATE(); case 1434: - if (lookahead == 's') ADVANCE(1459); + if (lookahead == 's') ADVANCE(1857); END_STATE(); case 1435: - if (lookahead == 's') ADVANCE(788); + if (lookahead == 's') ADVANCE(3853); END_STATE(); case 1436: - if (lookahead == 's') ADVANCE(807); + if (lookahead == 's') ADVANCE(937); END_STATE(); case 1437: - if (lookahead == 's') ADVANCE(766); + if (lookahead == 's') ADVANCE(469); END_STATE(); case 1438: - if (lookahead == 's') ADVANCE(769); + if (lookahead == 's') ADVANCE(1590); END_STATE(); case 1439: - if (lookahead == 's') ADVANCE(768); + if (lookahead == 's') ADVANCE(1057); END_STATE(); case 1440: - if (lookahead == 's') ADVANCE(772); + if (lookahead == 's') ADVANCE(1481); END_STATE(); case 1441: - if (lookahead == 's') ADVANCE(693); - if (lookahead == 'x') ADVANCE(1506); + if (lookahead == 's') ADVANCE(1628); END_STATE(); case 1442: - if (lookahead == 's') ADVANCE(1494); + if (lookahead == 's') ADVANCE(1438); END_STATE(); case 1443: - if (lookahead == 's') ADVANCE(1496); + if (lookahead == 's') ADVANCE(939); END_STATE(); case 1444: - if (lookahead == 's') ADVANCE(958); + if (lookahead == 's') ADVANCE(1484); END_STATE(); case 1445: - if (lookahead == 's') ADVANCE(703); + if (lookahead == 's') ADVANCE(1266); END_STATE(); case 1446: - if (lookahead == 's') ADVANCE(1488); + if (lookahead == 's') ADVANCE(942); + if (lookahead == 't') ADVANCE(1582); END_STATE(); case 1447: - if (lookahead == 's') ADVANCE(1242); + if (lookahead == 's') ADVANCE(815); END_STATE(); case 1448: - if (lookahead == 's') ADVANCE(1305); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 'u') ADVANCE(1229); END_STATE(); case 1449: - if (lookahead == 's') ADVANCE(828); + if (lookahead == 's') ADVANCE(4217); END_STATE(); case 1450: - if (lookahead == 's') ADVANCE(840); + if (lookahead == 's') ADVANCE(1430); END_STATE(); case 1451: - if (lookahead == 's') ADVANCE(1526); + if (lookahead == 's') ADVANCE(975); END_STATE(); case 1452: - if (lookahead == 's') ADVANCE(465); + if (lookahead == 's') ADVANCE(1495); END_STATE(); case 1453: - if (lookahead == 's') ADVANCE(469); + if (lookahead == 's') ADVANCE(1471); END_STATE(); case 1454: - if (lookahead == 't') ADVANCE(4291); + if (lookahead == 's') ADVANCE(860); END_STATE(); case 1455: - if (lookahead == 't') ADVANCE(680); + if (lookahead == 's') ADVANCE(1489); END_STATE(); case 1456: - if (lookahead == 't') ADVANCE(1111); + if (lookahead == 's') ADVANCE(1506); END_STATE(); case 1457: - if (lookahead == 't') ADVANCE(4167); + if (lookahead == 's') ADVANCE(783); END_STATE(); case 1458: - if (lookahead == 't') ADVANCE(1654); + if (lookahead == 's') ADVANCE(836); END_STATE(); case 1459: - if (lookahead == 't') ADVANCE(1832); + if (lookahead == 's') ADVANCE(1204); END_STATE(); case 1460: - if (lookahead == 't') ADVANCE(464); + if (lookahead == 's') ADVANCE(1561); END_STATE(); case 1461: - if (lookahead == 't') ADVANCE(1610); + if (lookahead == 's') ADVANCE(1486); END_STATE(); case 1462: - if (lookahead == 't') ADVANCE(4212); + if (lookahead == 's') ADVANCE(816); END_STATE(); case 1463: - if (lookahead == 't') ADVANCE(88); + if (lookahead == 's') ADVANCE(835); END_STATE(); case 1464: - if (lookahead == 't') ADVANCE(426); + if (lookahead == 's') ADVANCE(794); END_STATE(); case 1465: - if (lookahead == 't') ADVANCE(1212); + if (lookahead == 's') ADVANCE(797); END_STATE(); case 1466: - if (lookahead == 't') ADVANCE(858); + if (lookahead == 's') ADVANCE(796); END_STATE(); case 1467: - if (lookahead == 't') ADVANCE(4179); + if (lookahead == 's') ADVANCE(800); END_STATE(); case 1468: - if (lookahead == 't') ADVANCE(461); + if (lookahead == 's') ADVANCE(721); + if (lookahead == 'x') ADVANCE(1533); END_STATE(); case 1469: - if (lookahead == 't') ADVANCE(500); + if (lookahead == 's') ADVANCE(1521); END_STATE(); case 1470: - if (lookahead == 't') ADVANCE(430); + if (lookahead == 's') ADVANCE(1523); END_STATE(); case 1471: - if (lookahead == 't') ADVANCE(911); + if (lookahead == 's') ADVANCE(986); END_STATE(); case 1472: - if (lookahead == 't') ADVANCE(4172); + if (lookahead == 's') ADVANCE(731); END_STATE(); case 1473: - if (lookahead == 't') ADVANCE(4183); + if (lookahead == 's') ADVANCE(1515); END_STATE(); case 1474: - if (lookahead == 't') ADVANCE(542); - if (lookahead == 'w') ADVANCE(991); + if (lookahead == 's') ADVANCE(1269); END_STATE(); case 1475: - if (lookahead == 't') ADVANCE(1555); + if (lookahead == 's') ADVANCE(1332); END_STATE(); case 1476: - if (lookahead == 't') ADVANCE(4182); + if (lookahead == 's') ADVANCE(856); END_STATE(); case 1477: - if (lookahead == 't') ADVANCE(505); + if (lookahead == 's') ADVANCE(868); END_STATE(); case 1478: - if (lookahead == 't') ADVANCE(468); + if (lookahead == 's') ADVANCE(1553); END_STATE(); case 1479: - if (lookahead == 't') ADVANCE(1403); + if (lookahead == 's') ADVANCE(491); END_STATE(); case 1480: - if (lookahead == 't') ADVANCE(924); + if (lookahead == 's') ADVANCE(495); END_STATE(); case 1481: - if (lookahead == 't') ADVANCE(915); + if (lookahead == 't') ADVANCE(4333); END_STATE(); case 1482: - if (lookahead == 't') ADVANCE(916); + if (lookahead == 't') ADVANCE(708); END_STATE(); case 1483: - if (lookahead == 't') ADVANCE(942); + if (lookahead == 't') ADVANCE(1139); END_STATE(); case 1484: - if (lookahead == 't') ADVANCE(1410); + if (lookahead == 't') ADVANCE(4209); END_STATE(); case 1485: - if (lookahead == 't') ADVANCE(444); + if (lookahead == 't') ADVANCE(1681); END_STATE(); case 1486: - if (lookahead == 't') ADVANCE(1370); + if (lookahead == 't') ADVANCE(1876); END_STATE(); case 1487: - if (lookahead == 't') ADVANCE(919); + if (lookahead == 't') ADVANCE(490); END_STATE(); case 1488: - if (lookahead == 't') ADVANCE(1395); + if (lookahead == 't') ADVANCE(1637); END_STATE(); case 1489: - if (lookahead == 't') ADVANCE(920); + if (lookahead == 't') ADVANCE(4254); END_STATE(); case 1490: - if (lookahead == 't') ADVANCE(1004); + if (lookahead == 't') ADVANCE(94); END_STATE(); case 1491: - if (lookahead == 't') ADVANCE(458); + if (lookahead == 't') ADVANCE(452); END_STATE(); case 1492: - if (lookahead == 't') ADVANCE(448); + if (lookahead == 't') ADVANCE(1239); END_STATE(); case 1493: - if (lookahead == 't') ADVANCE(630); + if (lookahead == 't') ADVANCE(886); END_STATE(); case 1494: - if (lookahead == 't') ADVANCE(1549); + if (lookahead == 't') ADVANCE(4221); END_STATE(); case 1495: - if (lookahead == 't') ADVANCE(439); + if (lookahead == 't') ADVANCE(487); END_STATE(); case 1496: - if (lookahead == 't') ADVANCE(614); + if (lookahead == 't') ADVANCE(527); END_STATE(); case 1497: - if (lookahead == 't') ADVANCE(463); + if (lookahead == 't') ADVANCE(456); END_STATE(); case 1498: - if (lookahead == 't') ADVANCE(997); + if (lookahead == 't') ADVANCE(939); END_STATE(); case 1499: - if (lookahead == 't') ADVANCE(755); + if (lookahead == 't') ADVANCE(4214); END_STATE(); case 1500: - if (lookahead == 't') ADVANCE(999); + if (lookahead == 't') ADVANCE(4225); END_STATE(); case 1501: - if (lookahead == 't') ADVANCE(637); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'w') ADVANCE(1019); END_STATE(); case 1502: - if (lookahead == 't') ADVANCE(1233); + if (lookahead == 't') ADVANCE(1582); END_STATE(); case 1503: - if (lookahead == 't') ADVANCE(618); + if (lookahead == 't') ADVANCE(4224); END_STATE(); case 1504: - if (lookahead == 't') ADVANCE(534); + if (lookahead == 't') ADVANCE(532); END_STATE(); case 1505: - if (lookahead == 't') ADVANCE(1255); + if (lookahead == 't') ADVANCE(494); END_STATE(); case 1506: - if (lookahead == 't') ADVANCE(836); + if (lookahead == 't') ADVANCE(1430); END_STATE(); case 1507: - if (lookahead == 't') ADVANCE(781); + if (lookahead == 't') ADVANCE(952); END_STATE(); case 1508: - if (lookahead == 't') ADVANCE(829); + if (lookahead == 't') ADVANCE(943); END_STATE(); case 1509: - if (lookahead == 't') ADVANCE(845); + if (lookahead == 't') ADVANCE(944); END_STATE(); case 1510: - if (lookahead == 't') ADVANCE(774); + if (lookahead == 't') ADVANCE(970); END_STATE(); case 1511: - if (lookahead == 't') ADVANCE(848); + if (lookahead == 't') ADVANCE(1437); END_STATE(); case 1512: - if (lookahead == 't') ADVANCE(849); + if (lookahead == 't') ADVANCE(470); END_STATE(); case 1513: - if (lookahead == 't') ADVANCE(927); + if (lookahead == 't') ADVANCE(1397); END_STATE(); case 1514: - if (lookahead == 't') ADVANCE(679); + if (lookahead == 't') ADVANCE(947); END_STATE(); case 1515: - if (lookahead == 't') ADVANCE(819); + if (lookahead == 't') ADVANCE(1422); END_STATE(); case 1516: - if (lookahead == 't') ADVANCE(958); + if (lookahead == 't') ADVANCE(948); END_STATE(); case 1517: - if (lookahead == 't') ADVANCE(964); + if (lookahead == 't') ADVANCE(1032); END_STATE(); case 1518: - if (lookahead == 't') ADVANCE(866); + if (lookahead == 't') ADVANCE(484); END_STATE(); case 1519: - if (lookahead == 't') ADVANCE(934); + if (lookahead == 't') ADVANCE(474); END_STATE(); case 1520: - if (lookahead == 't') ADVANCE(456); + if (lookahead == 't') ADVANCE(658); END_STATE(); case 1521: - if (lookahead == 't') ADVANCE(806); + if (lookahead == 't') ADVANCE(1576); END_STATE(); case 1522: - if (lookahead == 't') ADVANCE(622); + if (lookahead == 't') ADVANCE(465); END_STATE(); case 1523: - if (lookahead == 't') ADVANCE(453); + if (lookahead == 't') ADVANCE(642); END_STATE(); case 1524: - if (lookahead == 't') ADVANCE(690); + if (lookahead == 't') ADVANCE(489); END_STATE(); case 1525: - if (lookahead == 't') ADVANCE(1084); + if (lookahead == 't') ADVANCE(1025); END_STATE(); case 1526: - if (lookahead == 't') ADVANCE(599); + if (lookahead == 't') ADVANCE(783); END_STATE(); case 1527: - if (lookahead == 't') ADVANCE(598); + if (lookahead == 't') ADVANCE(1027); END_STATE(); case 1528: - if (lookahead == 't') ADVANCE(691); + if (lookahead == 't') ADVANCE(665); END_STATE(); case 1529: - if (lookahead == 't') ADVANCE(1283); + if (lookahead == 't') ADVANCE(1260); END_STATE(); case 1530: - if (lookahead == 't') ADVANCE(1509); + if (lookahead == 't') ADVANCE(646); END_STATE(); case 1531: - if (lookahead == 't') ADVANCE(1386); + if (lookahead == 't') ADVANCE(562); END_STATE(); case 1532: - if (lookahead == 't') ADVANCE(1252); + if (lookahead == 't') ADVANCE(1282); END_STATE(); case 1533: - if (lookahead == 't') ADVANCE(1512); + if (lookahead == 't') ADVANCE(864); END_STATE(); case 1534: - if (lookahead == 't') ADVANCE(595); + if (lookahead == 't') ADVANCE(809); END_STATE(); case 1535: - if (lookahead == 't') ADVANCE(1614); + if (lookahead == 't') ADVANCE(857); END_STATE(); case 1536: - if (lookahead == 't') ADVANCE(1521); + if (lookahead == 't') ADVANCE(873); END_STATE(); case 1537: - if (lookahead == 't') ADVANCE(1017); + if (lookahead == 't') ADVANCE(802); END_STATE(); case 1538: - if (lookahead == 't') ADVANCE(1011); + if (lookahead == 't') ADVANCE(876); END_STATE(); case 1539: - if (lookahead == 't') ADVANCE(992); + if (lookahead == 't') ADVANCE(877); END_STATE(); case 1540: - if (lookahead == 't') ADVANCE(646); + if (lookahead == 't') ADVANCE(955); END_STATE(); case 1541: - if (lookahead == 't') ADVANCE(1453); + if (lookahead == 't') ADVANCE(707); END_STATE(); case 1542: - if (lookahead == 'u') ADVANCE(4291); + if (lookahead == 't') ADVANCE(847); END_STATE(); case 1543: - if (lookahead == 'u') ADVANCE(636); + if (lookahead == 't') ADVANCE(986); END_STATE(); case 1544: - if (lookahead == 'u') ADVANCE(1620); - if (lookahead == 'x') ADVANCE(1673); - if (lookahead != 0) ADVANCE(4149); + if (lookahead == 't') ADVANCE(992); END_STATE(); case 1545: - if (lookahead == 'u') ADVANCE(1157); + if (lookahead == 't') ADVANCE(894); END_STATE(); case 1546: - if (lookahead == 'u') ADVANCE(1454); + if (lookahead == 't') ADVANCE(962); END_STATE(); case 1547: - if (lookahead == 'u') ADVANCE(668); + if (lookahead == 't') ADVANCE(482); END_STATE(); case 1548: - if (lookahead == 'u') ADVANCE(1197); - if (lookahead == 'w') ADVANCE(938); + if (lookahead == 't') ADVANCE(834); END_STATE(); case 1549: - if (lookahead == 'u') ADVANCE(1287); + if (lookahead == 't') ADVANCE(650); END_STATE(); case 1550: - if (lookahead == 'u') ADVANCE(1239); + if (lookahead == 't') ADVANCE(479); END_STATE(); case 1551: - if (lookahead == 'u') ADVANCE(787); + if (lookahead == 't') ADVANCE(718); END_STATE(); case 1552: - if (lookahead == 'u') ADVANCE(1118); + if (lookahead == 't') ADVANCE(1112); END_STATE(); case 1553: - if (lookahead == 'u') ADVANCE(1146); + if (lookahead == 't') ADVANCE(627); END_STATE(); case 1554: - if (lookahead == 'u') ADVANCE(1295); + if (lookahead == 't') ADVANCE(626); END_STATE(); case 1555: - if (lookahead == 'u') ADVANCE(1403); + if (lookahead == 't') ADVANCE(719); END_STATE(); case 1556: - if (lookahead == 'u') ADVANCE(969); + if (lookahead == 't') ADVANCE(1310); END_STATE(); case 1557: - if (lookahead == 'u') ADVANCE(1331); + if (lookahead == 't') ADVANCE(1536); END_STATE(); case 1558: - if (lookahead == 'u') ADVANCE(1186); + if (lookahead == 't') ADVANCE(1413); END_STATE(); case 1559: - if (lookahead == 'u') ADVANCE(678); + if (lookahead == 't') ADVANCE(1279); END_STATE(); case 1560: - if (lookahead == 'u') ADVANCE(1302); + if (lookahead == 't') ADVANCE(1539); END_STATE(); case 1561: - if (lookahead == 'u') ADVANCE(1366); + if (lookahead == 't') ADVANCE(623); END_STATE(); case 1562: - if (lookahead == 'u') ADVANCE(944); + if (lookahead == 't') ADVANCE(1641); END_STATE(); case 1563: - if (lookahead == 'u') ADVANCE(755); + if (lookahead == 't') ADVANCE(1548); END_STATE(); case 1564: - if (lookahead == 'u') ADVANCE(1038); + if (lookahead == 't') ADVANCE(1045); END_STATE(); case 1565: - if (lookahead == 'u') ADVANCE(1050); + if (lookahead == 't') ADVANCE(1040); END_STATE(); case 1566: - if (lookahead == 'u') ADVANCE(835); + if (lookahead == 't') ADVANCE(1020); END_STATE(); case 1567: - if (lookahead == 'u') ADVANCE(1373); + if (lookahead == 't') ADVANCE(674); END_STATE(); case 1568: - if (lookahead == 'u') ADVANCE(1469); + if (lookahead == 't') ADVANCE(1480); END_STATE(); case 1569: - if (lookahead == 'u') ADVANCE(1477); + if (lookahead == 'u') ADVANCE(4333); END_STATE(); case 1570: - if (lookahead == 'u') ADVANCE(874); + if (lookahead == 'u') ADVANCE(664); END_STATE(); case 1571: - if (lookahead == 'u') ADVANCE(767); + if (lookahead == 'u') ADVANCE(1647); + if (lookahead == 'x') ADVANCE(1700); + if (lookahead != 0) ADVANCE(4191); END_STATE(); case 1572: - if (lookahead == 'u') ADVANCE(767); - if (lookahead == 'y') ADVANCE(3774); + if (lookahead == 'u') ADVANCE(1184); END_STATE(); case 1573: - if (lookahead == 'u') ADVANCE(1621); - if (lookahead == 'x') ADVANCE(1674); - if (lookahead != 0) ADVANCE(4137); + if (lookahead == 'u') ADVANCE(1481); END_STATE(); case 1574: - if (lookahead == 'u') ADVANCE(1126); + if (lookahead == 'u') ADVANCE(696); END_STATE(); case 1575: - if (lookahead == 'u') ADVANCE(1505); + if (lookahead == 'u') ADVANCE(1224); + if (lookahead == 'w') ADVANCE(966); END_STATE(); case 1576: - if (lookahead == 'u') ADVANCE(1125); + if (lookahead == 'u') ADVANCE(1314); END_STATE(); case 1577: - if (lookahead == 'u') ADVANCE(981); + if (lookahead == 'u') ADVANCE(1266); END_STATE(); case 1578: - if (lookahead == 'u') ADVANCE(1191); + if (lookahead == 'u') ADVANCE(815); END_STATE(); case 1579: - if (lookahead == 'u') ADVANCE(1185); + if (lookahead == 'u') ADVANCE(1146); END_STATE(); case 1580: - if (lookahead == 'u') ADVANCE(1085); + if (lookahead == 'u') ADVANCE(1173); END_STATE(); case 1581: - if (lookahead == 'u') ADVANCE(1088); + if (lookahead == 'u') ADVANCE(1322); END_STATE(); case 1582: - if (lookahead == 'u') ADVANCE(1442); + if (lookahead == 'u') ADVANCE(1430); END_STATE(); case 1583: - if (lookahead == 'u') ADVANCE(1318); + if (lookahead == 'u') ADVANCE(997); END_STATE(); case 1584: - if (lookahead == 'u') ADVANCE(1108); + if (lookahead == 'u') ADVANCE(1358); END_STATE(); case 1585: - if (lookahead == 'v') ADVANCE(4291); + if (lookahead == 'u') ADVANCE(1213); END_STATE(); case 1586: - if (lookahead == 'v') ADVANCE(1227); + if (lookahead == 'u') ADVANCE(706); END_STATE(); case 1587: - if (lookahead == 'v') ADVANCE(755); + if (lookahead == 'u') ADVANCE(1329); END_STATE(); case 1588: - if (lookahead == 'v') ADVANCE(839); + if (lookahead == 'u') ADVANCE(1393); END_STATE(); case 1589: - if (lookahead == 'v') ADVANCE(857); + if (lookahead == 'u') ADVANCE(972); END_STATE(); case 1590: - if (lookahead == 'w') ADVANCE(4291); + if (lookahead == 'u') ADVANCE(783); END_STATE(); case 1591: - if (lookahead == 'w') ADVANCE(938); + if (lookahead == 'u') ADVANCE(1066); END_STATE(); case 1592: - if (lookahead == 'w') ADVANCE(1146); + if (lookahead == 'u') ADVANCE(1078); END_STATE(); case 1593: - if (lookahead == 'w') ADVANCE(946); + if (lookahead == 'u') ADVANCE(863); END_STATE(); case 1594: - if (lookahead == 'w') ADVANCE(841); + if (lookahead == 'u') ADVANCE(1400); END_STATE(); case 1595: - if (lookahead == 'w') ADVANCE(1162); + if (lookahead == 'u') ADVANCE(1496); END_STATE(); case 1596: - if (lookahead == 'w') ADVANCE(1000); + if (lookahead == 'u') ADVANCE(1504); END_STATE(); case 1597: - if (lookahead == 'w') ADVANCE(1430); + if (lookahead == 'u') ADVANCE(902); END_STATE(); case 1598: - if (lookahead == 'w') ADVANCE(1022); + if (lookahead == 'u') ADVANCE(795); END_STATE(); case 1599: - if (lookahead == 'w') ADVANCE(1001); + if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'y') ADVANCE(3816); END_STATE(); case 1600: - if (lookahead == 'w') ADVANCE(1007); + if (lookahead == 'u') ADVANCE(1648); + if (lookahead == 'x') ADVANCE(1701); + if (lookahead != 0) ADVANCE(4179); END_STATE(); case 1601: - if (lookahead == 'x') ADVANCE(4291); + if (lookahead == 'u') ADVANCE(1153); END_STATE(); case 1602: - if (lookahead == 'x') ADVANCE(1018); + if (lookahead == 'u') ADVANCE(1154); END_STATE(); case 1603: - if (lookahead == 'x') ADVANCE(1515); + if (lookahead == 'u') ADVANCE(1532); END_STATE(); case 1604: - if (lookahead == 'x') ADVANCE(1454); + if (lookahead == 'u') ADVANCE(1009); END_STATE(); case 1605: - if (lookahead == 'x') ADVANCE(1287); + if (lookahead == 'u') ADVANCE(1218); END_STATE(); case 1606: - if (lookahead == 'x') ADVANCE(455); + if (lookahead == 'u') ADVANCE(1212); END_STATE(); case 1607: - if (lookahead == 'x') ADVANCE(1321); + if (lookahead == 'u') ADVANCE(1113); END_STATE(); case 1608: - if (lookahead == 'x') ADVANCE(1291); + if (lookahead == 'u') ADVANCE(1116); END_STATE(); case 1609: - if (lookahead == 'x') ADVANCE(1303); + if (lookahead == 'u') ADVANCE(1469); END_STATE(); case 1610: - if (lookahead == 'y') ADVANCE(4291); + if (lookahead == 'u') ADVANCE(1345); END_STATE(); case 1611: - if (lookahead == 'y') ADVANCE(4085); + if (lookahead == 'u') ADVANCE(1136); END_STATE(); case 1612: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == 'v') ADVANCE(4333); END_STATE(); case 1613: - if (lookahead == 'y') ADVANCE(1306); + if (lookahead == 'v') ADVANCE(1254); END_STATE(); case 1614: - if (lookahead == 'y') ADVANCE(1312); + if (lookahead == 'v') ADVANCE(783); END_STATE(); case 1615: - if (lookahead == 'z') ADVANCE(4291); + if (lookahead == 'v') ADVANCE(867); END_STATE(); case 1616: - if (lookahead == 'z') ADVANCE(479); + if (lookahead == 'v') ADVANCE(885); END_STATE(); case 1617: - if (lookahead == 'z') ADVANCE(1610); + if (lookahead == 'w') ADVANCE(4333); END_STATE(); case 1618: - if (lookahead == 'z') ADVANCE(755); + if (lookahead == 'w') ADVANCE(966); END_STATE(); case 1619: - if (lookahead == 'z') ADVANCE(1247); + if (lookahead == 'w') ADVANCE(1173); END_STATE(); case 1620: - if (lookahead == '{') ADVANCE(1670); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1668); + if (lookahead == 'w') ADVANCE(974); END_STATE(); case 1621: - if (lookahead == '{') ADVANCE(1672); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1675); + if (lookahead == 'w') ADVANCE(869); END_STATE(); case 1622: - if (lookahead == '|') ADVANCE(3614); + if (lookahead == 'w') ADVANCE(1189); END_STATE(); case 1623: - if (lookahead == '|') ADVANCE(3615); + if (lookahead == 'w') ADVANCE(1028); END_STATE(); case 1624: - if (lookahead == '|') ADVANCE(3619); + if (lookahead == 'w') ADVANCE(1457); END_STATE(); case 1625: - if (lookahead == '|') ADVANCE(3612); + if (lookahead == 'w') ADVANCE(1050); END_STATE(); case 1626: - if (lookahead == '|') ADVANCE(3618); + if (lookahead == 'w') ADVANCE(1029); END_STATE(); case 1627: - if (lookahead == '|') ADVANCE(3613); + if (lookahead == 'w') ADVANCE(1036); END_STATE(); case 1628: - if (lookahead == '|') ADVANCE(3616); + if (lookahead == 'x') ADVANCE(4333); END_STATE(); case 1629: - if (lookahead == '|') ADVANCE(3617); + if (lookahead == 'x') ADVANCE(1046); END_STATE(); case 1630: - if (lookahead == '}') ADVANCE(4149); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1630); + if (lookahead == 'x') ADVANCE(1542); END_STATE(); case 1631: - if (lookahead == '}') ADVANCE(4137); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1631); + if (lookahead == 'x') ADVANCE(1481); END_STATE(); case 1632: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1642); + if (lookahead == 'x') ADVANCE(1314); END_STATE(); case 1633: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + if (lookahead == 'x') ADVANCE(481); END_STATE(); case 1634: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4063); + if (lookahead == 'x') ADVANCE(1348); END_STATE(); case 1635: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4064); + if (lookahead == 'x') ADVANCE(1318); END_STATE(); case 1636: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1638); + if (lookahead == 'x') ADVANCE(1330); END_STATE(); case 1637: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4060); + if (lookahead == 'y') ADVANCE(4333); END_STATE(); case 1638: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + if (lookahead == 'y') ADVANCE(4127); END_STATE(); case 1639: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1648); + if (lookahead == 'y') ADVANCE(472); END_STATE(); case 1640: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1649); + if (lookahead == 'y') ADVANCE(1333); END_STATE(); case 1641: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1634); + if (lookahead == 'y') ADVANCE(1339); END_STATE(); case 1642: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4069); + if (lookahead == 'z') ADVANCE(4333); END_STATE(); case 1643: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1639); + if (lookahead == 'z') ADVANCE(506); END_STATE(); case 1644: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1635); + if (lookahead == 'z') ADVANCE(1637); END_STATE(); case 1645: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1637); + if (lookahead == 'z') ADVANCE(783); END_STATE(); case 1646: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1636); + if (lookahead == 'z') ADVANCE(1274); END_STATE(); case 1647: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1640); + if (lookahead == '{') ADVANCE(1697); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1695); END_STATE(); case 1648: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1651); + if (lookahead == '{') ADVANCE(1699); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1702); END_STATE(); case 1649: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1650); + if (lookahead == '|') ADVANCE(3654); END_STATE(); case 1650: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4051); + if (lookahead == '|') ADVANCE(3655); END_STATE(); case 1651: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4061); + if (lookahead == '|') ADVANCE(3659); END_STATE(); case 1652: - if (lookahead == 'l' || - lookahead == 'r') ADVANCE(4291); + if (lookahead == '|') ADVANCE(3652); END_STATE(); case 1653: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4107); + if (lookahead == '|') ADVANCE(3658); END_STATE(); case 1654: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); + if (lookahead == '|') ADVANCE(3653); END_STATE(); case 1655: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(491); + if (lookahead == '|') ADVANCE(3656); END_STATE(); case 1656: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4102); + if (lookahead == '|') ADVANCE(3657); END_STATE(); case 1657: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4101); + if (lookahead == '}') ADVANCE(4191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1657); END_STATE(); case 1658: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4119); + if (lookahead == '}') ADVANCE(4179); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1658); END_STATE(); case 1659: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4107); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1669); END_STATE(); case 1660: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); END_STATE(); case 1661: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1656); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4105); END_STATE(); case 1662: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4118); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4106); END_STATE(); case 1663: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1665); END_STATE(); case 1664: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1662); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4102); END_STATE(); case 1665: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(460); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); case 1666: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(490); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1675); END_STATE(); case 1667: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1676); END_STATE(); case 1668: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1661); + END_STATE(); + case 1669: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4111); + END_STATE(); + case 1670: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1666); + END_STATE(); + case 1671: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1662); + END_STATE(); + case 1672: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1664); + END_STATE(); + case 1673: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1663); + END_STATE(); + case 1674: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1667); + END_STATE(); + case 1675: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1678); + END_STATE(); + case 1676: + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1677); + END_STATE(); + case 1677: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4093); + END_STATE(); + case 1678: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4103); + END_STATE(); + case 1679: + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(4333); + END_STATE(); + case 1680: + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4149); + END_STATE(); + case 1681: + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + END_STATE(); + case 1682: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); + END_STATE(); + case 1683: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4144); + END_STATE(); + case 1684: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); + END_STATE(); + case 1685: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4161); + END_STATE(); + case 1686: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4149); + END_STATE(); + case 1687: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); + END_STATE(); + case 1688: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); + END_STATE(); + case 1689: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4160); + END_STATE(); + case 1690: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); + END_STATE(); + case 1691: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1689); + END_STATE(); + case 1692: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); + END_STATE(); + case 1693: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); + END_STATE(); + case 1694: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + END_STATE(); + case 1695: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1673); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1700); END_STATE(); - case 1669: + case 1696: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4149); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4191); END_STATE(); - case 1670: + case 1697: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1630); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1657); END_STATE(); - case 1671: + case 1698: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4137); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4179); END_STATE(); - case 1672: + case 1699: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1631); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1658); END_STATE(); - case 1673: + case 1700: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1669); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); END_STATE(); - case 1674: + case 1701: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1671); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1698); END_STATE(); - case 1675: + case 1702: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1674); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1701); END_STATE(); - case 1676: - if (eof) ADVANCE(1804); + case 1703: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 3963, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4564, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1733); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4763); + END_STATE(); + case 1704: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 3963, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4580, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 1705: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 4624, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4564, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 1706: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 4601, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3912, + '-', 3741, + '.', 4624, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4580, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + END_STATE(); + case 1707: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 3906, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '[', 4099, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4526, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4524, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '[', 4141, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4568, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4566, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); + lookahead == ' ') SKIP(1742); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4718); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1677: - if (eof) ADVANCE(1804); + case 1708: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 3906, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4530, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4538, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4573, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4582, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1678: - if (eof) ADVANCE(1804); + case 1709: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4526, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4524, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4570, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ' ') SKIP(1742); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4718); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1679: - if (eof) ADVANCE(1804); + case 1710: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4530, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4538, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4575, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1680: - if (eof) ADVANCE(1804); + case 1711: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4526, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4524, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4568, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4566, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); + lookahead == ' ') SKIP(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4718); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1681: - if (eof) ADVANCE(1804); + case 1712: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4530, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4538, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4573, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4582, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1682: - if (eof) ADVANCE(1804); + case 1713: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4520, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4524, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4568, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4566, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); + lookahead == ' ') SKIP(1742); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4718); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1683: - if (eof) ADVANCE(1804); + case 1714: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 4551, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'B', 4078, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'b', 4080, - 'd', 4593, - 'e', 4534, - 'g', 4574, - 'h', 4644, - 'i', 4625, - 'k', 4574, - 'm', 4576, - 'n', 4632, - 'o', 4538, - 'p', 4574, - 's', 4604, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4573, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4582, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1684: - if (eof) ADVANCE(1804); + case 1715: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'a', 4626, - 'b', 4614, - 'e', 4522, - 'i', 4625, - 'm', 4631, - 'n', 4633, - 'o', 4524, - 's', 4663, - 'x', 4635, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4562, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4566, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1742); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1685: - if (eof) ADVANCE(1804); + case 1716: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4557, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 4559, - '>', 3670, - 'a', 4626, - 'b', 4614, - 'e', 4536, - 'i', 4625, - 'm', 4631, - 'n', 4633, - 'o', 4538, - 's', 4663, - 'x', 4635, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'B', 4120, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'b', 4122, + 'd', 4638, + 'e', 4578, + 'g', 4618, + 'h', 4689, + 'i', 4670, + 'k', 4618, + 'm', 4620, + 'n', 4677, + 'o', 4582, + 'p', 4618, + 's', 4649, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1686: - if (eof) ADVANCE(1804); + case 1717: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4756, - '#', 5547, - '(', 3853, - ')', 3650, - '*', 3822, - '+', 3871, - '-', 3704, - '/', 3861, - ';', 3610, - '<', 3843, - '=', 4758, - '>', 3671, - 'a', 4845, - 'b', 4828, - 'e', 4728, - 'i', 4846, - 'm', 4858, - 'n', 4861, - 'o', 4730, - 's', 4901, - 'x', 4860, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4570, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(1742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1687: - if (eof) ADVANCE(1804); + case 1718: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 4756, - '#', 5547, - '(', 3853, - ')', 3650, - '*', 3822, - '+', 3871, - '-', 3704, - '/', 3861, - ';', 3610, - '<', 3843, - '=', 4758, - '>', 3671, - 'a', 4845, - 'b', 4828, - 'e', 4734, - 'i', 4846, - 'm', 4858, - 'n', 4861, - 'o', 4736, - 's', 4901, - 'x', 4860, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4575, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(1744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1688: - if (eof) ADVANCE(1804); + case 1719: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 3906, - '/', 3859, - ':', 3644, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - '[', 3647, - 'a', 1178, - 'b', 989, - 'c', 642, - 'e', 417, - 'i', 881, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4570, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1691); + lookahead == ' ') SKIP(1742); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1689: - if (eof) ADVANCE(1804); + case 1720: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '(', 3853, - ')', 3650, - '*', 3821, - '+', 3870, - '-', 3703, - '.', 3906, - '/', 3860, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - '?', 3823, - 'E', 520, - '_', 518, - 'a', 1178, - 'b', 989, - 'e', 415, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4575, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1698); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1690: - if (eof) ADVANCE(1804); + case 1721: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '.', 3892, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'E', 520, - '[', 4099, - '_', 518, - 'a', 1178, - 'b', 989, - 'e', 415, - 'i', 881, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4564, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + lookahead == ' ') SKIP(1742); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); END_STATE(); - case 1691: - if (eof) ADVANCE(1804); + case 1722: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ':', 3644, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - '[', 3647, - 'a', 1178, - 'b', 989, - 'c', 642, - 'e', 417, - 'i', 881, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 4595, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4580, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1691); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1692: - if (eof) ADVANCE(1804); + case 1723: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 881, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3936, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4570, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1692); + lookahead == ' ') SKIP(1743); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1693: - if (eof) ADVANCE(1804); + case 1724: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3936, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4575, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1694: - if (eof) ADVANCE(1804); + case 1725: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4570, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1694); + lookahead == ' ') SKIP(1743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1695: - if (eof) ADVANCE(1804); + case 1726: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 422, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 427, - 's', 1540, - 'x', 1264, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'b', 4660, + 'e', 4575, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); + lookahead == ' ') SKIP(1744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1696: - if (eof) ADVANCE(1804); + case 1727: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3681, - '.', 3892, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'E', 520, - 'a', 1179, - 'b', 989, - 'e', 415, - 'i', 881, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4570, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1697); + lookahead == ' ') SKIP(1743); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1697: - if (eof) ADVANCE(1804); + case 1728: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3820, - '+', 3868, - '-', 3681, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 494, - '>', 3670, - '?', 3823, - 'a', 1179, - 'b', 989, - 'e', 419, - 'i', 881, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'E', 4633, + 'a', 4671, + 'b', 4660, + 'e', 4575, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1697); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1698: - if (eof) ADVANCE(1804); + case 1729: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - ')', 3650, - '*', 3821, - '+', 3870, - '-', 3703, - '/', 3860, - ';', 3610, - '<', 3842, - '=', 1819, - '>', 3670, - '?', 3823, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4564, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4566, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1698); + lookahead == ' ') SKIP(1743); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1699: - if (eof) ADVANCE(1804); + case 1730: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 419, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 425, - 's', 1540, - 'x', 1264, - '|', 3611, + '!', 4601, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 4603, + '>', 3709, + 'a', 4671, + 'b', 4660, + 'e', 4580, + 'i', 4670, + 'm', 4676, + 'n', 4678, + 'o', 4582, + 's', 4708, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1699); + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1700: - if (eof) ADVANCE(1804); + case 1731: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 493, - '#', 5541, - '*', 3820, - '+', 3868, - '-', 3680, - '/', 3859, - ';', 3610, - '<', 3842, - '=', 495, - '>', 3670, - 'a', 1178, - 'b', 989, - 'e', 422, - 'i', 1154, - 'm', 1245, - 'n', 1262, - 'o', 427, - 's', 1540, - 'x', 1264, - '|', 3611, + '!', 4801, + '#', 5592, + '(', 3895, + ')', 3689, + '*', 3864, + '+', 3915, + '-', 3746, + '/', 3903, + ';', 3650, + '<', 3885, + '=', 4803, + '>', 3710, + 'a', 4890, + 'b', 4873, + 'e', 4773, + 'i', 4891, + 'm', 4903, + 'n', 4906, + 'o', 4775, + 's', 4946, + 'x', 4905, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1700); + lookahead == ' ') SKIP(1743); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 1701: - if (eof) ADVANCE(1804); + case 1732: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 4801, + '#', 5592, + '(', 3895, + ')', 3689, + '*', 3864, + '+', 3915, + '-', 3746, + '/', 3903, + ';', 3650, + '<', 3885, + '=', 4803, + '>', 3710, + 'a', 4890, + 'b', 4873, + 'e', 4779, + 'i', 4891, + 'm', 4903, + 'n', 4906, + 'o', 4781, + 's', 4946, + 'x', 4905, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + END_STATE(); + case 1733: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '$', 3691, + ')', 3689, + '*', 3862, + '+', 3911, + '-', 3740, + '.', 545, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1733); + END_STATE(); + case 1734: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '$', 3691, + ')', 3689, + '*', 3862, + '+', 3911, + '-', 3740, + '.', 545, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1734); + END_STATE(); + case 1735: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '$', 3691, + ')', 3689, + '*', 3862, + '+', 3911, + '-', 3740, + '.', 545, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 448, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 453, + 's', 1567, + 'x', 1291, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1735); + END_STATE(); + case 1736: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3951, + '/', 3901, + ':', 3684, + ';', 3650, + '<', 3884, + '=', 521, + '>', 3709, + '?', 3865, + '[', 3686, + 'a', 1205, + 'b', 1017, + 'c', 670, + 'e', 444, + 'i', 909, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1740); + END_STATE(); + case 1737: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3720, + '.', 3951, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + '?', 3865, + 'B', 4120, + 'E', 538, + 'G', 538, + 'K', 538, + 'M', 538, + 'P', 538, + 'T', 538, + '[', 4141, + 'a', 1206, + 'b', 4123, + 'd', 587, + 'e', 534, + 'g', 536, + 'h', 1365, + 'i', 1181, + 'k', 536, + 'm', 537, + 'n', 1290, + 'o', 1361, + 'p', 536, + 's', 861, + 't', 536, + 'u', 1433, + 'w', 1055, + 'x', 1291, + '{', 3803, + '}', 3804, + 0xb5, 1433, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1745); + END_STATE(); + case 1738: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '(', 3895, + ')', 3689, + '*', 3863, + '+', 3914, + '-', 3745, + '.', 3951, + '/', 3902, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + '?', 3865, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1746); + END_STATE(); + case 1739: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '.', 3936, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 521, + '>', 3709, + '?', 3865, + 'E', 551, + '[', 4141, + '_', 548, + 'a', 1205, + 'b', 1017, + 'e', 442, + 'i', 909, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + END_STATE(); + case 1740: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ':', 3684, + ';', 3650, + '<', 3884, + '=', 521, + '>', 3709, + '?', 3865, + '[', 3686, + 'a', 1205, + 'b', 1017, + 'c', 670, + 'e', 444, + 'i', 909, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1740); + END_STATE(); + case 1741: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 521, + '>', 3709, + '?', 3865, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 909, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1741); + END_STATE(); + case 1742: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1742); + END_STATE(); + case 1743: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1743); + END_STATE(); + case 1744: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 448, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 453, + 's', 1567, + 'x', 1291, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1744); + END_STATE(); + case 1745: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3862, + '+', 3910, + '-', 3720, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + '?', 3865, + 'a', 1206, + 'b', 1017, + 'e', 1237, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 1361, + 's', 1567, + 'x', 1291, + '{', 3803, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1745); + END_STATE(); + case 1746: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + ')', 3689, + '*', 3863, + '+', 3914, + '-', 3745, + '/', 3902, + ';', 3650, + '<', 3884, + '=', 1863, + '>', 3709, + '?', 3865, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1746); + END_STATE(); + case 1747: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 445, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 451, + 's', 1567, + 'x', 1291, + '|', 3651, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1747); + END_STATE(); + case 1748: + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 520, + '#', 5586, + '*', 3862, + '+', 3910, + '-', 3719, + '/', 3901, + ';', 3650, + '<', 3884, + '=', 522, + '>', 3709, + 'a', 1205, + 'b', 1017, + 'e', 448, + 'i', 1181, + 'm', 1272, + 'n', 1289, + 'o', 453, + 's', 1567, + 'x', 1291, + '|', 3651, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1748); + END_STATE(); + case 1749: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5543, - '$', 3653, - '\'', 413, - '(', 3649, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - ';', 3610, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2265, - 'b', 2239, - 'c', 2112, - 'd', 2141, - 'e', 2115, - 'f', 2118, - 'g', 2231, - 'h', 2130, - 'i', 2108, - 'j', 2367, - 'k', 2172, - 'l', 2192, - 'm', 2120, - 'n', 2315, - 'o', 2423, - 'p', 2135, - 'q', 2417, - 'r', 2122, - 's', 2159, - 't', 2125, - 'u', 2325, - 'v', 2243, - 'w', 2228, - '{', 3761, + '"', 4171, + '#', 5588, + '$', 3692, + '\'', 441, + '(', 3688, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + ';', 3650, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2307, + 'b', 2281, + 'c', 2154, + 'd', 2183, + 'e', 2157, + 'f', 2160, + 'g', 2273, + 'h', 2172, + 'i', 2150, + 'j', 2409, + 'k', 2214, + 'l', 2234, + 'm', 2162, + 'n', 2357, + 'o', 2465, + 'p', 2177, + 'q', 2459, + 'r', 2164, + 's', 2201, + 't', 2167, + 'u', 2367, + 'v', 2285, + 'w', 2270, + '{', 3803, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1701); + lookahead == ' ') SKIP(1749); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2436); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); END_STATE(); - case 1702: - if (eof) ADVANCE(1804); + case 1750: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1703: - if (eof) ADVANCE(1804); + case 1751: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4552, - '-', 3685, - '.', 4548, - '0', 3935, - ';', 3610, - 'N', 4685, - '[', 3647, - '_', 4578, - '`', 525, - 'e', 4523, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4596, + '-', 3724, + '.', 4592, + '0', 3978, + ';', 3650, + 'N', 4730, + '[', 3686, + '_', 4622, + '`', 553, + 'e', 4565, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); + lookahead == ' ') SKIP(1795); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3950); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1704: - if (eof) ADVANCE(1804); + case 1752: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4552, - '-', 3685, - '.', 3895, - '0', 3935, - ';', 3610, - 'N', 4685, - '[', 3647, - '_', 4578, - '`', 525, - 'e', 4523, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4596, + '-', 3724, + '.', 3940, + '0', 3978, + ';', 3650, + 'N', 4730, + '[', 3686, + '_', 4622, + '`', 553, + 'e', 4565, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); + lookahead == ' ') SKIP(1795); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3950); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1705: - if (eof) ADVANCE(1804); + case 1753: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 3935, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4578, - '`', 525, - 'd', 4593, - 'e', 4527, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 3978, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4622, + '`', 553, + 'd', 4638, + 'e', 4569, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3950); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1706: - if (eof) ADVANCE(1804); + case 1754: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 3935, - ';', 3610, - 'E', 4588, - 'N', 4685, - '[', 3647, - '_', 4578, - '`', 525, - 'e', 4528, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 3978, + ';', 3650, + 'E', 4633, + 'N', 4730, + '[', 3686, + '_', 4622, + '`', 553, + 'e', 4571, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3950); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1707: - if (eof) ADVANCE(1804); + case 1755: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 4009, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4527, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 4052, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4569, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1708: - if (eof) ADVANCE(1804); + case 1756: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 4009, - ';', 3610, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4521, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 4052, + ';', 3650, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4563, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1709: - if (eof) ADVANCE(1804); + case 1757: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 4009, - ';', 3610, - 'E', 4588, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'e', 4528, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 4052, + ';', 3650, + 'E', 4633, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'e', 4571, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1710: - if (eof) ADVANCE(1804); + case 1758: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 4009, - ';', 3610, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'e', 4523, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 4052, + ';', 3650, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'e', 4565, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1711: - if (eof) ADVANCE(1804); + case 1759: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4549, - '0', 3935, - ';', 3610, - 'E', 4588, - 'N', 4685, - '[', 3647, - '_', 4578, - '`', 525, - 'e', 4528, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4593, + '0', 3978, + ';', 3650, + 'E', 4633, + 'N', 4730, + '[', 3686, + '_', 4622, + '`', 553, + 'e', 4571, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3950); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1712: - if (eof) ADVANCE(1804); + case 1760: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4549, - '0', 4009, - ';', 3610, - 'E', 4588, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'e', 4528, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4593, + '0', 4052, + ';', 3650, + 'E', 4633, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'e', 4571, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1713: - if (eof) ADVANCE(1804); + case 1761: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4549, - '0', 4009, - ';', 3610, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'e', 4523, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4593, + '0', 4052, + ';', 3650, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'e', 4565, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1714: - if (eof) ADVANCE(1804); + case 1762: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 3910, - '0', 4009, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4527, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 3955, + '0', 4052, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4569, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1715: - if (eof) ADVANCE(1804); + case 1763: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 3910, - '0', 4009, - ';', 3610, - 'E', 4588, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'e', 4528, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 3955, + '0', 4052, + ';', 3650, + 'E', 4633, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'e', 4571, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1716: - if (eof) ADVANCE(1804); + case 1764: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 3900, - '0', 4009, - ';', 3610, - 'E', 4588, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'e', 4528, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 3945, + '0', 4052, + ';', 3650, + 'E', 4633, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'e', 4571, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1717: - if (eof) ADVANCE(1804); + case 1765: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4439, - '-', 3683, - '.', 4435, - '0', 3936, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4460, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4481, + '-', 3722, + '.', 4477, + '0', 3979, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4502, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); + lookahead == ' ') SKIP(1795); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3951); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1718: - if (eof) ADVANCE(1804); + case 1766: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4439, - '-', 3683, - '.', 3898, - '0', 3936, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4460, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4481, + '-', 3722, + '.', 3943, + '0', 3979, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4502, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); + lookahead == ' ') SKIP(1795); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3951); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1719: - if (eof) ADVANCE(1804); + case 1767: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3978, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - ';', 3610, - '=', 497, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2265, - 'b', 2239, - 'c', 2112, - 'd', 2141, - 'e', 2115, - 'f', 2118, - 'g', 2231, - 'h', 2130, - 'i', 2108, - 'j', 2367, - 'k', 2172, - 'l', 2192, - 'm', 2120, - 'n', 2315, - 'o', 2423, - 'p', 2135, - 'q', 2417, - 'r', 2122, - 's', 2159, - 't', 2125, - 'u', 2325, - 'v', 2243, - 'w', 2228, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 4021, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + ';', 3650, + '=', 524, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2307, + 'b', 2281, + 'c', 2154, + 'd', 2183, + 'e', 2157, + 'f', 2160, + 'g', 2273, + 'h', 2172, + 'i', 2150, + 'j', 2409, + 'k', 2214, + 'l', 2234, + 'm', 2162, + 'n', 2357, + 'o', 2465, + 'p', 2177, + 'q', 2459, + 'r', 2164, + 's', 2201, + 't', 2167, + 'u', 2367, + 'v', 2285, + 'w', 2270, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1720); + lookahead == ' ') SKIP(1768); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2436); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2478); END_STATE(); - case 1720: - if (eof) ADVANCE(1804); + case 1768: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - ';', 3610, - '=', 497, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2265, - 'b', 2239, - 'c', 2112, - 'd', 2141, - 'e', 2115, - 'f', 2118, - 'g', 2231, - 'h', 2130, - 'i', 2108, - 'j', 2367, - 'k', 2172, - 'l', 2192, - 'm', 2120, - 'n', 2315, - 'o', 2423, - 'p', 2135, - 'q', 2417, - 'r', 2122, - 's', 2159, - 't', 2125, - 'u', 2325, - 'v', 2243, - 'w', 2228, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + ';', 3650, + '=', 524, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2307, + 'b', 2281, + 'c', 2154, + 'd', 2183, + 'e', 2157, + 'f', 2160, + 'g', 2273, + 'h', 2172, + 'i', 2150, + 'j', 2409, + 'k', 2214, + 'l', 2234, + 'm', 2162, + 'n', 2357, + 'o', 2465, + 'p', 2177, + 'q', 2459, + 'r', 2164, + 's', 2201, + 't', 2167, + 'u', 2367, + 'v', 2285, + 'w', 2270, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1720); + lookahead == ' ') SKIP(1768); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2436); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2478); END_STATE(); - case 1721: - if (eof) ADVANCE(1804); + case 1769: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 2094, - '-', 3694, - '.', 2095, - '0', 4004, - ';', 3610, - 'I', 2433, - 'N', 2431, - '[', 3647, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2279, - 'b', 2239, - 'c', 2113, - 'd', 2142, - 'e', 1937, - 'f', 2119, - 'g', 2231, - 'h', 2131, - 'i', 2108, - 'j', 2367, - 'k', 2172, - 'l', 2202, - 'm', 2121, - 'n', 2315, - 'o', 1939, - 'p', 2135, - 'q', 2417, - 'r', 2124, - 's', 2160, - 't', 2125, - 'u', 2326, - 'v', 2243, - 'w', 2238, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 2136, + '-', 3734, + '.', 2137, + '0', 4047, + ';', 3650, + 'I', 2475, + 'N', 2473, + '[', 3686, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2321, + 'b', 2281, + 'c', 2155, + 'd', 2184, + 'e', 1979, + 'f', 2161, + 'g', 2273, + 'h', 2173, + 'i', 2150, + 'j', 2409, + 'k', 2214, + 'l', 2244, + 'm', 2163, + 'n', 2357, + 'o', 1981, + 'p', 2177, + 'q', 2459, + 'r', 2166, + 's', 2202, + 't', 2167, + 'u', 2368, + 'v', 2285, + 'w', 2280, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1721); + lookahead == ' ') SKIP(1769); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2436); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2478); END_STATE(); - case 1722: - if (eof) ADVANCE(1804); + case 1770: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 473, - '-', 3695, - '.', 474, - '0', 4007, - ';', 3610, - '=', 497, - 'I', 1645, - 'N', 1632, - '[', 3647, - '_', 514, - '`', 525, - 'a', 1178, - 'c', 642, - 'd', 1216, - 'e', 418, - 'f', 641, - 'i', 882, - 'm', 644, - 'n', 1265, - 'o', 425, - 't', 1340, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 499, + '-', 3735, + '.', 500, + '0', 4050, + ';', 3650, + '=', 524, + 'I', 1672, + 'N', 1659, + '[', 3686, + '_', 541, + '`', 553, + 'a', 1205, + 'c', 670, + 'd', 1243, + 'e', 447, + 'f', 669, + 'i', 910, + 'm', 672, + 'n', 1292, + 'o', 453, + 't', 1367, + 'x', 1291, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1722); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4030); + lookahead == ' ') SKIP(1770); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); END_STATE(); - case 1723: - if (eof) ADVANCE(1804); + case 1771: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 3872, - '-', 3694, - '.', 2096, - '0', 4004, - ':', 3644, - ';', 3610, - '=', 1818, - '>', 3669, - 'I', 2433, - 'N', 2431, - '[', 3647, - ']', 3648, - '^', 4166, - '_', 2111, - '`', 525, - 'a', 2264, - 'b', 2239, - 'c', 2146, - 'd', 2141, - 'e', 2117, - 'f', 2118, - 'g', 2231, - 'h', 2130, - 'i', 2109, - 'j', 2367, - 'k', 2172, - 'l', 2192, - 'm', 2139, - 'n', 2315, - 'o', 2423, - 'p', 2135, - 'q', 2417, - 'r', 2122, - 's', 2159, - 't', 2125, - 'u', 2325, - 'v', 2243, - 'w', 2228, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 3916, + '-', 3734, + '.', 2138, + '0', 4047, + ':', 3684, + ';', 3650, + '=', 1862, + '>', 3708, + 'I', 2475, + 'N', 2473, + '[', 3686, + ']', 3687, + '^', 4208, + '_', 2153, + '`', 553, + 'a', 2306, + 'b', 2281, + 'c', 2188, + 'd', 2183, + 'e', 2159, + 'f', 2160, + 'g', 2273, + 'h', 2172, + 'i', 2151, + 'j', 2409, + 'k', 2214, + 'l', 2234, + 'm', 2181, + 'n', 2357, + 'o', 2465, + 'p', 2177, + 'q', 2459, + 'r', 2164, + 's', 2201, + 't', 2167, + 'u', 2367, + 'v', 2285, + 'w', 2270, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1723); + lookahead == ' ') SKIP(1771); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4027); + lookahead == '@') ADVANCE(2931); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(2436); + (lookahead < '0' || '@' < lookahead)) ADVANCE(2478); END_STATE(); - case 1724: - if (eof) ADVANCE(1804); + case 1772: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4437, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, - 'I', 4499, - 'i', 4499, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4479, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, + 'I', 4541, + 'i', 4541, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1725: - if (eof) ADVANCE(1804); + case 1773: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 3401, - ';', 3610, - '=', 4348, - 'N', 3530, - '[', 3647, - '_', 3403, - '`', 525, - 'e', 3380, - 'f', 3410, - 'n', 3516, - 'o', 3381, - 't', 3484, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 3441, + ';', 3650, + '=', 4390, + 'N', 3570, + '[', 3686, + '_', 3443, + '`', 553, + 'e', 3420, + 'f', 3450, + 'n', 3556, + 'o', 3421, + 't', 3524, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); + lookahead == 'i') ADVANCE(3582); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1726: - if (eof) ADVANCE(1804); + case 1774: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 4005, - ';', 3610, - '=', 4348, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 4048, + ';', 3650, + '=', 4390, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1727: - if (eof) ADVANCE(1804); + case 1775: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 4005, - ';', 3610, - '?', 3823, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 4048, + ';', 3650, + '?', 3865, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1727); + lookahead == ' ') SKIP(1775); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1728: - if (eof) ADVANCE(1804); + case 1776: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 4005, - ';', 3610, - 'E', 4462, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4426, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 4048, + ';', 3650, + 'E', 4504, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4468, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1729: - if (eof) ADVANCE(1804); + case 1777: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 4099, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 4141, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1730: - if (eof) ADVANCE(1804); + case 1778: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1731: - if (eof) ADVANCE(1804); + case 1779: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4434, - '0', 3936, - ';', 3610, - 'E', 4462, - 'N', 4496, - '[', 3647, - '_', 4460, - '`', 525, - 'e', 4426, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4476, + '0', 3979, + ';', 3650, + 'E', 4504, + 'N', 4538, + '[', 3686, + '_', 4502, + '`', 553, + 'e', 4468, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3951); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1732: - if (eof) ADVANCE(1804); + case 1780: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4436, - '0', 4005, - ';', 3610, - 'E', 4462, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4426, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4478, + '0', 4048, + ';', 3650, + 'E', 4504, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4468, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1733: - if (eof) ADVANCE(1804); + case 1781: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4436, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4478, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1734: - if (eof) ADVANCE(1804); + case 1782: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 4436, - '0', 3936, - ';', 3610, - 'E', 4462, - 'N', 4496, - '[', 3647, - '_', 4460, - '`', 525, - 'e', 4426, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 4478, + '0', 3979, + ';', 3650, + 'E', 4504, + 'N', 4538, + '[', 3686, + '_', 4502, + '`', 553, + 'e', 4468, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3951); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1735: - if (eof) ADVANCE(1804); + case 1783: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 3908, - '0', 4005, - ';', 3610, - '?', 3823, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 3953, + '0', 4048, + ';', 3650, + '?', 3865, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1727); + lookahead == ' ') SKIP(1775); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1736: - if (eof) ADVANCE(1804); + case 1784: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 3908, - '0', 4005, - ';', 3610, - 'E', 4462, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4426, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 3953, + '0', 4048, + ';', 3650, + 'E', 4504, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4468, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1737: - if (eof) ADVANCE(1804); + case 1785: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 3908, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 3953, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1738: - if (eof) ADVANCE(1804); + case 1786: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 3893, - '0', 4005, - ';', 3610, - '?', 3823, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 3938, + '0', 4048, + ';', 3650, + '?', 3865, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1727); + lookahead == ' ') SKIP(1775); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1739: - if (eof) ADVANCE(1804); + case 1787: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 3893, - '0', 4005, - ';', 3610, - 'E', 4462, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4426, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 3938, + '0', 4048, + ';', 3650, + 'E', 4504, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4468, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1740: - if (eof) ADVANCE(1804); + case 1788: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3682, - '.', 3893, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3721, + '.', 3938, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1741: - if (eof) ADVANCE(1804); + case 1789: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4438, - '-', 3688, - '.', 4434, - '0', 4366, - ';', 3610, - '=', 4348, - 'N', 4393, - '[', 3647, - '_', 4368, - '`', 525, - 'e', 4349, - 'f', 4375, - 'n', 4392, - 'o', 4350, - 't', 4383, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4480, + '-', 3730, + '.', 4476, + '0', 4408, + ';', 3650, + '=', 4390, + 'N', 4435, + '[', 3686, + '_', 4410, + '`', 553, + 'e', 4391, + 'f', 4417, + 'n', 4434, + 'o', 4392, + 't', 4425, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4371); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'i') ADVANCE(4440); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4413); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1742: - if (eof) ADVANCE(1804); + case 1790: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 3935, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4578, - '`', 525, - 'd', 4593, - 'e', 4527, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 3978, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4622, + '`', 553, + 'd', 4638, + 'e', 4569, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3950); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1743: - if (eof) ADVANCE(1804); + case 1791: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 4009, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4527, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 4052, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4569, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1744: - if (eof) ADVANCE(1804); + case 1792: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4550, - '0', 4009, - ';', 3610, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4521, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4594, + '0', 4052, + ';', 3650, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4563, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1745: - if (eof) ADVANCE(1804); + case 1793: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 4549, - '0', 4009, - ';', 3610, - 'N', 4685, - '[', 3647, - '_', 4583, - '`', 525, - 'e', 4523, - 'f', 4592, - 'n', 4670, - 'o', 4525, - 't', 4645, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 4593, + '0', 4052, + ';', 3650, + 'N', 4730, + '[', 3686, + '_', 4627, + '`', 553, + 'e', 4565, + 'f', 4637, + 'n', 4715, + 'o', 4567, + 't', 4690, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1746: - if (eof) ADVANCE(1804); + case 1794: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4553, - '-', 3687, - '.', 3910, - '0', 4009, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'N', 4685, - 'P', 4575, - 'T', 4575, - '[', 3647, - '_', 4583, - '`', 525, - 'd', 4593, - 'e', 4527, - 'f', 4592, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4653, - 'o', 4525, - 'p', 4574, - 's', 4605, - 't', 4573, - 'u', 4654, - 'w', 4618, - '{', 3761, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4597, + '-', 3727, + '.', 3955, + '0', 4052, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'N', 4730, + 'P', 4619, + 'T', 4619, + '[', 3686, + '_', 4627, + '`', 553, + 'd', 4638, + 'e', 4569, + 'f', 4637, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4698, + 'o', 4567, + 'p', 4618, + 's', 4650, + 't', 4617, + 'u', 4699, + 'w', 4663, + '{', 3803, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); + lookahead == 'b') ADVANCE(4120); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4694); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4032); + lookahead == 'i') ADVANCE(4739); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4718); + lookahead != ']') ADVANCE(4763); END_STATE(); - case 1747: - if (eof) ADVANCE(1804); + case 1795: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '$', 3653, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4439, - '-', 3683, - '.', 4435, - '0', 4005, - ';', 3610, - 'N', 4496, - '[', 3647, - '_', 4451, - '`', 525, - 'e', 4424, - 'f', 4464, - 'n', 4492, - 'o', 4425, - 't', 4479, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5586, + '$', 3692, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4481, + '-', 3722, + '.', 4477, + '0', 4048, + ';', 3650, + 'N', 4538, + '[', 3686, + '_', 4493, + '`', 553, + 'e', 4466, + 'f', 4506, + 'n', 4534, + 'o', 4467, + 't', 4521, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); + lookahead == ' ') SKIP(1795); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4499); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4028); + lookahead == 'i') ADVANCE(4541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4519); + lookahead != ']') ADVANCE(4561); END_STATE(); - case 1748: - if (eof) ADVANCE(1804); + case 1796: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '\'', 413, - ')', 3650, - '*', 3819, - '+', 2094, - '-', 472, - '.', 3918, - ';', 3610, - '?', 3823, - 'I', 2879, - 'N', 2871, - '[', 3647, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, - '}', 3762, + '"', 4171, + '#', 5586, + '\'', 441, + ')', 3689, + '*', 3861, + '+', 2136, + '-', 498, + '.', 2518, + ';', 3650, + '?', 3865, + 'I', 2919, + 'N', 2911, + '[', 3686, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1750); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 1749: - if (eof) ADVANCE(1804); + case 1797: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '\'', 413, - ')', 3650, - '*', 3819, - '+', 2094, - '-', 472, - '.', 3918, - ';', 3610, - 'I', 2879, - 'N', 2871, - '[', 3647, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, - '}', 3762, + '"', 4171, + '#', 5586, + '\'', 441, + ')', 3689, + '*', 3861, + '+', 2136, + '-', 498, + '.', 2518, + ';', 3650, + 'I', 2919, + 'N', 2911, + '[', 3686, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1751); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(1797); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 1750: - if (eof) ADVANCE(1804); + case 1798: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '\'', 413, - ')', 3650, - '*', 3819, - '+', 2094, - '-', 472, - '.', 2475, - ';', 3610, - '?', 3823, - 'I', 2879, - 'N', 2871, - '[', 3647, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, - '}', 3762, + '"', 4171, + '#', 5586, + '\'', 441, + ')', 3689, + '*', 3861, + '+', 2136, + '-', 498, + '.', 3962, + ';', 3650, + '?', 3865, + 'I', 2919, + 'N', 2911, + '[', 3686, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1750); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 1751: - if (eof) ADVANCE(1804); + case 1799: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5541, - '\'', 413, - ')', 3650, - '*', 3819, - '+', 2094, - '-', 472, - '.', 2475, - ';', 3610, - 'I', 2879, - 'N', 2871, - '[', 3647, - '_', 2478, - '`', 525, - 'a', 2678, - 'b', 2770, - 'c', 2510, - 'd', 2560, - 'e', 2674, - 'f', 2488, - 'h', 2640, - 'i', 2473, - 'l', 2595, - 'm', 2509, - 'n', 2842, - 'o', 2860, - 'r', 2596, - 's', 2728, - 't', 2771, - 'u', 2797, - 'w', 2620, - '}', 3762, + '"', 4171, + '#', 5586, + '\'', 441, + ')', 3689, + '*', 3861, + '+', 2136, + '-', 498, + '.', 3962, + ';', 3650, + 'I', 2919, + 'N', 2911, + '[', 3686, + '_', 2521, + '`', 553, + 'a', 2721, + 'b', 2811, + 'c', 2553, + 'd', 2603, + 'e', 2717, + 'f', 2531, + 'h', 2683, + 'i', 2516, + 'l', 2638, + 'm', 2552, + 'n', 2882, + 'o', 2900, + 'r', 2639, + 's', 2770, + 't', 2812, + 'u', 2837, + 'w', 2663, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1751); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + lookahead == ' ') SKIP(1797); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2891); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); END_STATE(); - case 1752: - if (eof) ADVANCE(1804); + case 1800: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5547, - '$', 3654, - '\'', 413, - '(', 3853, - ')', 3650, - '+', 4748, - '-', 3690, - '.', 4749, - '0', 4770, - ';', 3610, - 'N', 4936, - '[', 3647, - '_', 4772, - '`', 525, - 'e', 4729, - 'f', 4782, - 'n', 4912, - 'o', 4731, - 't', 4869, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5592, + '$', 3693, + '\'', 441, + '(', 3895, + ')', 3689, + '+', 4793, + '-', 3728, + '.', 4794, + '0', 4815, + ';', 3650, + 'N', 4981, + '[', 3686, + '_', 4817, + '`', 553, + 'e', 4774, + 'f', 4827, + 'n', 4957, + 'o', 4776, + 't', 4914, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4946); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4775); + lookahead == 'i') ADVANCE(4991); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4820); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4977); + lookahead != ']') ADVANCE(5022); END_STATE(); - case 1753: - if (eof) ADVANCE(1804); + case 1801: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '"', 4129, - '#', 5547, - '$', 3654, - '\'', 413, - '(', 3649, - ')', 3650, - '+', 4748, - '-', 3690, - '.', 4749, - '0', 4770, - ';', 3610, - 'N', 4936, - '[', 3647, - '_', 4772, - '`', 525, - 'e', 4729, - 'f', 4782, - 'n', 4912, - 'o', 4731, - 't', 4869, - '{', 3761, - '|', 3611, - '}', 3762, + '"', 4171, + '#', 5592, + '$', 3693, + '\'', 441, + '(', 3688, + ')', 3689, + '+', 4793, + '-', 3728, + '.', 4794, + '0', 4815, + ';', 3650, + 'N', 4981, + '[', 3686, + '_', 4817, + '`', 553, + 'e', 4774, + 'f', 4827, + 'n', 4957, + 'o', 4776, + 't', 4914, + '{', 3803, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1730); + lookahead == ' ') SKIP(1778); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4946); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4775); + lookahead == 'i') ADVANCE(4991); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4820); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4977); - END_STATE(); - case 1754: - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - '+', 478, - '-', 3684, - '.', 3922, - ';', 3610, - '=', 497, - '_', 518, - 'a', 1178, - 'e', 420, - 'i', 880, - 'o', 425, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1759); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - END_STATE(); - case 1755: - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - '.', 4580, - ';', 3610, - '_', 4578, - 'a', 4626, - 'e', 4537, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1763); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead != ']') ADVANCE(5022); END_STATE(); - case 1756: - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - '.', 4580, - ';', 3610, - '_', 4578, - 'e', 4537, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, - '+', 4552, - '-', 4552, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 1757: - if (eof) ADVANCE(1804); + case 1802: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - '.', 3919, - ';', 3610, - '[', 4099, - '_', 4578, - 'e', 4537, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, - '+', 4552, - '-', 4552, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '.', 3963, + ';', 3650, + '[', 4141, + '_', 4622, + 'e', 4581, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, + '+', 4596, + '-', 4596, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -34639,10250 +36809,10211 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4718); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); END_STATE(); - case 1758: - if (eof) ADVANCE(1804); + case 1803: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - '(', 3853, - ')', 3650, - '.', 3919, - ';', 3610, - '_', 4578, - 'a', 4626, - 'e', 4537, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '.', 3963, + ';', 3650, + '_', 4622, + 'a', 4671, + 'e', 4581, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1763); + lookahead == ' ') SKIP(1809); if (lookahead == '+' || - lookahead == '-') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1759: - if (eof) ADVANCE(1804); + case 1804: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '+', 478, - '-', 3684, - '.', 522, - ';', 3610, - '=', 497, - 'a', 1178, - 'e', 420, - 'i', 880, - 'o', 425, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '.', 4624, + ';', 3650, + '_', 4622, + 'a', 4671, + 'e', 4581, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1759); + lookahead == ' ') SKIP(1809); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1760: - if (eof) ADVANCE(1804); + case 1805: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '-', 3681, - '.', 3906, - ':', 3644, - ';', 3610, - '=', 1818, - '[', 4099, - 'a', 1179, - 'e', 420, - 'i', 1154, - 'o', 425, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '#', 5586, + '$', 3691, + '(', 3895, + ')', 3689, + '.', 4624, + ';', 3650, + '_', 4622, + 'e', 4581, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, + '+', 4596, + '-', 4596, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1762); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1761: - if (eof) ADVANCE(1804); + case 1806: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '-', 3681, - '.', 3906, - ';', 3610, - '=', 4348, - '?', 3823, - 'e', 3384, - 'o', 3385, - '{', 3761, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '$', 3691, + ')', 3689, + '-', 3720, + '.', 3951, + ';', 3650, + '=', 4390, + '?', 3865, + 'e', 3424, + 'o', 3425, + '{', 3803, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); END_STATE(); - case 1762: - if (eof) ADVANCE(1804); + case 1807: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '-', 3681, - ':', 3644, - ';', 3610, - '=', 1818, - 'a', 1179, - 'e', 420, - 'i', 1154, - 'o', 425, - 'x', 1264, - '{', 3761, - '|', 3611, - '}', 3762, + '#', 5586, + '$', 3691, + ')', 3689, + '-', 3720, + '.', 3936, + ';', 3650, + '=', 4390, + '?', 3865, + 'a', 1435, + 'i', 1181, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1762); + lookahead == ' ') SKIP(1808); END_STATE(); - case 1763: - if (eof) ADVANCE(1804); + case 1808: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '$', 3652, - ')', 3650, - '.', 522, - ';', 3610, - 'a', 1178, - 'e', 423, - 'o', 427, - 'x', 1264, - '|', 3611, - '}', 3762, + '#', 5586, + '$', 3691, + ')', 3689, + '-', 3720, + ';', 3650, + '?', 3865, + 'a', 1435, + 'i', 1181, + '{', 3803, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1763); - if (lookahead == '+' || - lookahead == '-') ADVANCE(478); + lookahead == ' ') SKIP(1808); END_STATE(); - case 1764: - if (eof) ADVANCE(1804); + case 1809: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 3906, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'd', 4593, - 'e', 4531, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4538, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '#', 5586, + '$', 3691, + ')', 3689, + '.', 545, + ';', 3650, + 'a', 1205, + 'e', 449, + 'o', 453, + 'x', 1291, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); - END_STATE(); - case 1765: - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 3906, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4531, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4539, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - '}', 3762, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1809); + if (lookahead == '+' || + lookahead == '-') ADVANCE(503); END_STATE(); - case 1766: - if (eof) ADVANCE(1804); + case 1810: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 3906, - ';', 3610, - 'E', 4588, - 'a', 4626, - 'e', 4532, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 3951, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'd', 4638, + 'e', 4574, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4582, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1767: - if (eof) ADVANCE(1804); + case 1811: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 3906, - ';', 3610, - 'E', 4588, - 'e', 4532, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 3951, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4574, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4583, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + '}', 3804, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1768: - if (eof) ADVANCE(1804); + case 1812: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'a', 4626, - 'd', 4593, - 'e', 4531, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4538, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 3951, + ';', 3650, + 'E', 4633, + 'a', 4671, + 'e', 4576, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1769: - if (eof) ADVANCE(1804); + case 1813: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'd', 4593, - 'e', 4531, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4539, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - '}', 3762, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 3951, + ';', 3650, + 'E', 4633, + 'e', 4576, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1770: - if (eof) ADVANCE(1804); + case 1814: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'd', 4593, - 'e', 4531, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4538, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'a', 4671, + 'd', 4638, + 'e', 4574, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4582, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); + lookahead == ' ') SKIP(1844); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1771: - if (eof) ADVANCE(1804); + case 1815: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4531, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4539, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - '}', 3762, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'd', 4638, + 'e', 4574, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4583, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + '}', 3804, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1772: - if (eof) ADVANCE(1804); + case 1816: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4626, - 'd', 4593, - 'e', 4535, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4538, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - 'x', 4635, - '|', 3611, - '}', 3762, - 0xb5, 4654, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'd', 4638, + 'e', 4574, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4582, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); + lookahead == ' ') SKIP(1844); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1773: - if (eof) ADVANCE(1804); + case 1817: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'd', 4593, - 'e', 4535, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'o', 4539, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '|', 3611, - '}', 3762, - 0xb5, 4654, - '\t', 3609, - ' ', 3609, - 'B', 4078, - 'b', 4078, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4574, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4583, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + '}', 3804, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1774: - if (eof) ADVANCE(1804); + case 1818: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4588, - '_', 4578, - 'a', 4626, - 'e', 4532, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4671, + 'd', 4638, + 'e', 4579, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4582, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + 'x', 4680, + '|', 3651, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1775: - if (eof) ADVANCE(1804); + case 1819: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4588, - '_', 4578, - 'e', 4532, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'd', 4638, + 'e', 4579, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'o', 4583, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '|', 3651, + '}', 3804, + 0xb5, 4699, + '\t', 3649, + ' ', 3649, + 'B', 4120, + 'b', 4120, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1776: - if (eof) ADVANCE(1804); + case 1820: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4588, - 'a', 4626, - 'e', 4532, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'e', 4576, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1777: - if (eof) ADVANCE(1804); + case 1821: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'E', 4588, - 'e', 4532, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4633, + '_', 4622, + 'e', 4576, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1778: - if (eof) ADVANCE(1804); + case 1822: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'a', 4626, - 'e', 4537, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4633, + 'a', 4671, + 'e', 4576, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1779: - if (eof) ADVANCE(1804); + case 1823: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 4551, - ';', 3610, - 'e', 4537, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'E', 4633, + 'e', 4576, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1780: - if (eof) ADVANCE(1804); + case 1824: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 3892, - ';', 3610, - 'E', 4588, - 'a', 4626, - 'e', 4532, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'a', 4671, + 'e', 4581, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1781: - if (eof) ADVANCE(1804); + case 1825: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - '.', 3892, - ';', 3610, - 'E', 4588, - 'e', 4532, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 4595, + ';', 3650, + 'e', 4581, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1782: - if (eof) ADVANCE(1804); + case 1826: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - ';', 3610, - 'E', 4588, - '_', 4578, - 'a', 4626, - 'e', 4532, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 3936, + ';', 3650, + 'E', 4633, + 'a', 4671, + 'e', 4576, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1783: - if (eof) ADVANCE(1804); + case 1827: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - ';', 3610, - 'E', 4588, - '_', 4578, - 'e', 4532, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + '.', 3936, + ';', 3650, + 'E', 4633, + 'e', 4576, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1784: - if (eof) ADVANCE(1804); + case 1828: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - ';', 3610, - 'E', 4588, - 'a', 4626, - 'e', 4532, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + ';', 3650, + 'E', 4633, + '_', 4622, + 'a', 4671, + 'e', 4576, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1785: - if (eof) ADVANCE(1804); + case 1829: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - ';', 3610, - 'E', 4588, - 'e', 4532, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + ';', 3650, + 'E', 4633, + '_', 4622, + 'e', 4576, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1786: - if (eof) ADVANCE(1804); + case 1830: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - ';', 3610, - 'a', 4626, - 'e', 4537, - 'o', 4538, - 'x', 4635, - '|', 3611, - '}', 3762, + '#', 5586, + '(', 3895, + ')', 3689, + ';', 3650, + 'E', 4633, + 'a', 4671, + 'e', 4576, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1787: - if (eof) ADVANCE(1804); + case 1831: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - '(', 3853, - ')', 3650, - ';', 3610, - 'e', 4537, - 'o', 4539, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + '(', 3895, + ')', 3689, + ';', 3650, + 'E', 4633, + 'e', 4576, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1788: - if (eof) ADVANCE(1804); + case 1832: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - '.', 3906, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4655, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '}', 3762, - 0xb5, 4654, + '#', 5586, + '(', 3895, + ')', 3689, + ';', 3650, + 'a', 4671, + 'e', 4581, + 'o', 4582, + 'x', 4680, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1789: - if (eof) ADVANCE(1804); + case 1833: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - '.', 4551, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - '_', 4578, - 'a', 4655, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '}', 3762, - 0xb5, 4654, + '#', 5586, + '(', 3895, + ')', 3689, + ';', 3650, + 'e', 4581, + 'o', 4583, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1790: - if (eof) ADVANCE(1804); + case 1834: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - '.', 4551, - ';', 3610, - 'E', 4571, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4655, - 'd', 4593, - 'e', 4570, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '}', 3762, - 0xb5, 4654, + '#', 5586, + ')', 3689, + '-', 3720, + '.', 3951, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4700, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); + lookahead == ' ') SKIP(1840); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1791: - if (eof) ADVANCE(1804); + case 1835: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - '.', 4551, - ';', 3610, - 'E', 4575, - 'G', 4575, - 'K', 4575, - 'M', 4575, - 'P', 4575, - 'T', 4575, - 'a', 4655, - 'd', 4593, - 'e', 4574, - 'g', 4574, - 'h', 4644, - 'k', 4574, - 'm', 4577, - 'n', 4654, - 'p', 4574, - 's', 4605, - 't', 4574, - 'u', 4654, - 'w', 4618, - '}', 3762, - 0xb5, 4654, + '#', 5586, + ')', 3689, + '-', 3720, + '.', 4595, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + '_', 4622, + 'a', 4700, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); + lookahead == ' ') SKIP(1840); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1792: - if (eof) ADVANCE(1804); + case 1836: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - ';', 3610, - '=', 4348, - 'a', 3498, - '}', 3762, + '#', 5586, + ')', 3689, + '-', 3720, + '.', 4595, + ';', 3650, + 'E', 4615, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4700, + 'd', 4638, + 'e', 4614, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3570); + lookahead == ' ') SKIP(1840); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1793: - if (eof) ADVANCE(1804); + case 1837: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - ';', 3610, - '=', 4348, - 'a', 1408, - 'i', 1154, - '}', 3762, + '#', 5586, + ')', 3689, + '-', 3720, + '.', 4595, + ';', 3650, + 'E', 4619, + 'G', 4619, + 'K', 4619, + 'M', 4619, + 'P', 4619, + 'T', 4619, + 'a', 4700, + 'd', 4638, + 'e', 4618, + 'g', 4618, + 'h', 4689, + 'k', 4618, + 'm', 4621, + 'n', 4699, + 'p', 4618, + 's', 4650, + 't', 4618, + 'u', 4699, + 'w', 4663, + '}', 3804, + 0xb5, 4699, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1795); + lookahead == ' ') SKIP(1840); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1794: - if (eof) ADVANCE(1804); + case 1838: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - ';', 3610, - 'a', 4655, - '}', 3762, + '#', 5586, + ')', 3689, + '-', 3720, + ';', 3650, + '=', 4390, + 'a', 3538, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + lookahead == ' ') SKIP(1840); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); END_STATE(); - case 1795: - if (eof) ADVANCE(1804); + case 1839: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - ';', 3610, - 'a', 1408, - 'i', 1154, - '}', 3762, + '#', 5586, + ')', 3689, + '-', 3720, + ';', 3650, + 'a', 4700, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1795); + lookahead == ' ') SKIP(1840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); - case 1796: - if (eof) ADVANCE(1804); + case 1840: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3681, - ';', 3610, - 'a', 1408, - '}', 3762, + '#', 5586, + ')', 3689, + '-', 3720, + ';', 3650, + 'a', 1435, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); + lookahead == ' ') SKIP(1840); END_STATE(); - case 1797: - if (eof) ADVANCE(1804); + case 1841: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '-', 3689, - ';', 3610, - '=', 4348, - 'a', 4386, - '}', 3762, + '#', 5586, + ')', 3689, + '-', 3731, + ';', 3650, + '=', 4390, + 'a', 4428, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == ' ') SKIP(1840); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 1798: - if (eof) ADVANCE(1804); + case 1842: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - '.', 3892, - ';', 3610, - '?', 3823, - 'e', 423, - 'o', 428, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + ')', 3689, + '.', 3936, + ';', 3650, + '?', 3865, + 'e', 449, + 'o', 454, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); END_STATE(); - case 1799: - if (eof) ADVANCE(1804); + case 1843: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - ';', 3610, - '=', 4348, - 'e', 4353, - 'o', 4354, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5586, + ')', 3689, + ';', 3650, + '=', 4390, + 'e', 4395, + 'o', 4396, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 1800: - if (eof) ADVANCE(1804); + case 1844: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5541, - ')', 3650, - ';', 3610, - 'a', 1178, - 'e', 423, - 'o', 427, - 'x', 1264, - '|', 3611, - '}', 3762, + '#', 5586, + ')', 3689, + ';', 3650, + 'a', 1205, + 'e', 449, + 'o', 453, + 'x', 1291, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); + lookahead == ' ') SKIP(1844); END_STATE(); - case 1801: - if (eof) ADVANCE(1804); + case 1845: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5547, - '(', 3853, - ')', 3650, - ';', 3610, - 'a', 4845, - 'e', 4735, - 'o', 4736, - 'x', 4860, - '|', 3611, - '}', 3762, + '#', 5592, + '(', 3895, + ')', 3689, + ';', 3650, + 'a', 4890, + 'e', 4780, + 'o', 4781, + 'x', 4905, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(1844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 1802: - if (eof) ADVANCE(1804); + case 1846: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5547, - '(', 3853, - ')', 3650, - ';', 3610, - 'e', 4735, - 'o', 4737, - '|', 3611, - '}', 3762, - '\t', 3609, - ' ', 3609, + '#', 5592, + '(', 3895, + ')', 3689, + ';', 3650, + 'e', 4780, + 'o', 4782, + '|', 3651, + '}', 3804, + '\t', 3649, + ' ', 3649, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 1803: - if (eof) ADVANCE(1804); + case 1847: + if (eof) ADVANCE(1848); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '#', 5547, - ')', 3650, - '-', 3691, - ';', 3610, - 'a', 4890, - '}', 3762, + '#', 5592, + ')', 3689, + '-', 3729, + ';', 3650, + 'a', 4935, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == ' ') SKIP(1840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 1804: + case 1848: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1805: + case 1849: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 1806: + case 1850: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 1807: + case 1851: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1806); - if (lookahead == '\r') ADVANCE(1808); - if (lookahead == '#') ADVANCE(5542); + if (lookahead == '\n') ADVANCE(1850); + if (lookahead == '\r') ADVANCE(1852); + if (lookahead == '#') ADVANCE(5587); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1807); - if (lookahead != 0) ADVANCE(1808); + lookahead == ' ') ADVANCE(1851); + if (lookahead != 0) ADVANCE(1852); END_STATE(); - case 1808: + case 1852: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1806); - if (lookahead == '\r') ADVANCE(1808); - if (lookahead != 0) ADVANCE(1808); + if (lookahead == '\n') ADVANCE(1850); + if (lookahead == '\r') ADVANCE(1852); + if (lookahead != 0) ADVANCE(1852); END_STATE(); - case 1809: + case 1853: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == '-') ADVANCE(3064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == '-') ADVANCE(3104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); END_STATE(); - case 1810: + case 1854: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == '-') ADVANCE(5409); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5412); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == '-') ADVANCE(5451); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); - case 1811: + case 1855: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3068); + if (lookahead == '-') ADVANCE(3108); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3075); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3074); + lookahead == '@') ADVANCE(3115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3114); END_STATE(); - case 1812: + case 1856: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == '-') ADVANCE(3108); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 1813: + case 1857: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 1814: + case 1858: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2925); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + if (lookahead == ',') ADVANCE(2965); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5443); END_STATE(); - case 1815: + case 1859: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); + if (lookahead == ',') ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); END_STATE(); - case 1816: + case 1860: ACCEPT_TOKEN(anon_sym_alias); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2925); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2924); + lookahead == '@') ADVANCE(2965); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2964); END_STATE(); - case 1817: + case 1861: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); END_STATE(); - case 1818: + case 1862: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1819: + case 1863: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3837); - if (lookahead == '~') ADVANCE(3848); + if (lookahead == '=') ADVANCE(3879); + if (lookahead == '~') ADVANCE(3890); END_STATE(); - case 1820: + case 1864: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 1821: + case 1865: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == '-') ADVANCE(2937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2940); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == '-') ADVANCE(2977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); - case 1822: + case 1866: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == '-') ADVANCE(5379); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == '-') ADVANCE(5421); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); - case 1823: + case 1867: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2941); + if (lookahead == '-') ADVANCE(2981); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2948); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2947); + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); END_STATE(); - case 1824: + case 1868: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if (lookahead == '-') ADVANCE(2981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); - case 1825: + case 1869: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2948); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); + if (lookahead == ',') ADVANCE(2988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); - case 1826: + case 1870: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2940); + if (lookahead == ',') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); - case 1827: + case 1871: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); - case 1828: + case 1872: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5383); + if (lookahead == ',') ADVANCE(2991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5425); END_STATE(); - case 1829: + case 1873: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2949); + if (lookahead == ',') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); END_STATE(); - case 1830: + case 1874: ACCEPT_TOKEN(anon_sym_mut); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2951); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2950); + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); END_STATE(); - case 1831: + case 1875: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); - case 1832: + case 1876: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 1833: + case 1877: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2954); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5404); + if (lookahead == ',') ADVANCE(2994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5446); END_STATE(); - case 1834: + case 1878: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2952); + if (lookahead == ',') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); END_STATE(); - case 1835: + case 1879: ACCEPT_TOKEN(anon_sym_const); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2954); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2953); + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); END_STATE(); - case 1836: + case 1880: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); - case 1837: + case 1881: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1838: + case 1882: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1839: + case 1883: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1840: + case 1884: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1841: + case 1885: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); - case 1842: + case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(528); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(556); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1843: + case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1844: + case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(533); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(561); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1845: + case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1846: + case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(648); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(676); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1847: + case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1848: + case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(526); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(554); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1849: + case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1850: + case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(676); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(704); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1851: + case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1852: + case 1896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(656); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(684); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1853: + case 1897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1854: + case 1898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(677); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(705); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1855: + case 1899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1856: + case 1900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(653); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(681); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1857: + case 1901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1858: + case 1902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(908); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(936); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1859: + case 1903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1860: + case 1904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(558); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(586); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1861: + case 1905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1862: + case 1906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(878); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(906); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1863: + case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1864: + case 1908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(689); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(717); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1865: + case 1909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1866: + case 1910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(647); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(675); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1867: + case 1911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1868: + case 1912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1115); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(1143); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1869: + case 1913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(1143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1870: + case 1914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(553); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(581); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1871: + case 1915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1872: + case 1916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(744); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(772); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1873: + case 1917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1874: + case 1918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1297); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(1324); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1875: + case 1919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1876: + case 1920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(539); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(567); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1877: + case 1921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1878: + case 1922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(662); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(690); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1879: + case 1923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1880: + case 1924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(736); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(764); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1881: + case 1925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1882: + case 1926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1548); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(1575); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1883: + case 1927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(1575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1884: + case 1928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(705); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(733); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1885: + case 1929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1886: + case 1930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1326); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(1353); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1887: + case 1931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(1353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1888: + case 1932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(888); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(916); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1889: + case 1933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1890: + case 1934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(541); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(569); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1891: + case 1935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1892: + case 1936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(527); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(555); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1893: + case 1937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1894: + case 1938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(728); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(756); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1895: + case 1939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1896: + case 1940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(554); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(582); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1897: + case 1941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1898: + case 1942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(670); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(698); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1899: + case 1943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1900: + case 1944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(826); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(854); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1901: + case 1945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1902: + case 1946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(665); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(693); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1903: + case 1947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(665); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1904: + case 1948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(531); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == ' ') ADVANCE(559); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); - case 1905: + case 1949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1906: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(544); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1907: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1908: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(654); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1909: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1910: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(714); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1911: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1912: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(589); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1913: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1914: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(813); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1915: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1916: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(741); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1917: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1918: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(966); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1919: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1920: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1591); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1921: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1922: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1002); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1923: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1924: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(709); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1925: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1926: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1145); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3002); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3001); - END_STATE(); - case 1927: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3002); - END_STATE(); - case 1928: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(713); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1929: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1930: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(963); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1931: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1932: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3995); - if (lookahead == '(') ADVANCE(3887); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '{') ADVANCE(4151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1933: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3995); - if (lookahead == '(') ADVANCE(3887); - if (lookahead == '{') ADVANCE(4151); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1934: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2705); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'l') ADVANCE(2788); - if (lookahead == 'n') ADVANCE(2536); - if (lookahead == 'r') ADVANCE(2744); - if (lookahead == 'x') ADVANCE(2740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1935: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2561); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'r') ADVANCE(3829); - if (lookahead == 'u') ADVANCE(2811); - if (lookahead == 'v') ADVANCE(2569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1936: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2707); - if (lookahead == '>') ADVANCE(4293); - if (lookahead == 'o') ADVANCE(2747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); - END_STATE(); - case 1937: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '+', 2306, - '=', 4164, - '>', 1622, - 'a', 2151, - 'l', 2370, - 'n', 2154, - 'r', 2341, - 'x', 2334, - ); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1938: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2313); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '>') ADVANCE(1625); - if (lookahead == 'o') ADVANCE(2355); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1939: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2214); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '>') ADVANCE(1623); - if (lookahead == 'u') ADVANCE(2388); - if (lookahead == 'v') ADVANCE(2216); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1940: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2578); - if (lookahead == '>') ADVANCE(4297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ' ') ADVANCE(559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); - case 1941: + case 1950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2206); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '>') ADVANCE(1627); + if (lookahead == ' ') ADVANCE(572); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); - END_STATE(); - case 1942: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '.') ADVANCE(1944); - if (lookahead == '_') ADVANCE(1958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1943: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '.') ADVANCE(1944); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1944: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '.') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1945: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '.') ADVANCE(3889); - if (lookahead == '_') ADVANCE(1958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1946: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '.') ADVANCE(1957); - if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1947: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1948: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2891, - 'I', 2070, - '_', 1968, - 'i', 2070, - 'l', 2051, - 'r', 2040, - 'x', 2033, - '+', 1968, - '-', 1968, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1949: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2891, - 'I', 2070, - '_', 1968, - 'i', 1976, - '+', 1968, - '-', 1968, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); - END_STATE(); - case 1950: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2891, - 'I', 2070, - 'a', 2014, - 'i', 2026, - 'o', 1981, - 's', 4085, - 'u', 2056, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2891, - 'I', 2070, - 'i', 2070, - 'l', 2051, - 'r', 2040, - 'x', 2033, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'I') ADVANCE(2070); - if (lookahead == 'i') ADVANCE(2070); - if (lookahead == 'r') ADVANCE(2062); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(682); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'I') ADVANCE(2070); - if (lookahead == 'i') ADVANCE(2070); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'I') ADVANCE(2070); - if (lookahead == 'i') ADVANCE(1976); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(742); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'N') ADVANCE(2071); - if (lookahead == 'f') ADVANCE(3747); - if (lookahead == 'n') ADVANCE(3719); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1956); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(617); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1957); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(841); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1960); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(769); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1961); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1962); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(994); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1965); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(1618); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1965); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1968); - if (lookahead == 'l') ADVANCE(2051); - if (lookahead == 'r') ADVANCE(2040); - if (lookahead == 'x') ADVANCE(2033); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1968); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(1030); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1968); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1968); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '_') ADVANCE(1968); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(737); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'a') ADVANCE(2054); - if (lookahead == 'o') ADVANCE(2023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'a') ADVANCE(2022); - if (lookahead == 'o') ADVANCE(2035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(741); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'a') ADVANCE(2014); - if (lookahead == 'o') ADVANCE(1981); - if (lookahead == 'u') ADVANCE(2056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'a') ADVANCE(2013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(991); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'a') ADVANCE(2067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ' ') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'a') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '$') ADVANCE(4038); + if (lookahead == '(') ADVANCE(3931); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '{') ADVANCE(4193); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'a') ADVANCE(2068); - if (lookahead == 'e') ADVANCE(2001); - if (lookahead == 'o') ADVANCE(3742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '$') ADVANCE(4038); + if (lookahead == '(') ADVANCE(3931); + if (lookahead == '{') ADVANCE(4193); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '+') ADVANCE(2748); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'l') ADVANCE(2828); + if (lookahead == 'n') ADVANCE(2579); + if (lookahead == 'r') ADVANCE(2786); + if (lookahead == 'x') ADVANCE(2782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'c') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '+') ADVANCE(2604); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'r') ADVANCE(3871); + if (lookahead == 'u') ADVANCE(2851); + if (lookahead == 'v') ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'c') ADVANCE(2003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '+') ADVANCE(2750); + if (lookahead == '>') ADVANCE(4335); + if (lookahead == 'o') ADVANCE(2789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'c') ADVANCE(2004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + ADVANCE_MAP( + '+', 2348, + '=', 4206, + '>', 1649, + 'a', 2193, + 'l', 2412, + 'n', 2196, + 'r', 2383, + 'x', 2376, + ); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'c') ADVANCE(1991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '+') ADVANCE(2355); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '>') ADVANCE(1652); + if (lookahead == 'o') ADVANCE(2391); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'd') ADVANCE(2065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '+') ADVANCE(2256); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '>') ADVANCE(1650); + if (lookahead == 'u') ADVANCE(2430); + if (lookahead == 'v') ADVANCE(2258); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'd') ADVANCE(1987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '+') ADVANCE(2621); + if (lookahead == '>') ADVANCE(4339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 1983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2001); - if (lookahead == 'o') ADVANCE(3742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == '+') ADVANCE(2248); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '>') ADVANCE(1654); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 1984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '.') ADVANCE(1986); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '.') ADVANCE(1986); + if (lookahead == '_') ADVANCE(2005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '.') ADVANCE(1974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '.') ADVANCE(3933); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '.') ADVANCE(2004); + if (lookahead == '_') ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + ADVANCE_MAP( + ',', 2931, + 'I', 2112, + '_', 2010, + 'i', 2112, + 'l', 2093, + 'r', 2082, + 'x', 2075, + '+', 2010, + '-', 2010, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + ADVANCE_MAP( + ',', 2931, + 'I', 2112, + '_', 2010, + 'i', 2018, + '+', 2010, + '-', 2010, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(3711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + ADVANCE_MAP( + ',', 2931, + 'I', 2112, + 'a', 2056, + 'i', 2068, + 'o', 2023, + 's', 4127, + 'u', 2098, + 'B', 4120, + 'b', 4120, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2055); - if (lookahead == 'o') ADVANCE(2029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + ADVANCE_MAP( + ',', 2931, + 'I', 2112, + 'i', 2112, + 'l', 2093, + 'r', 2082, + 'x', 2075, + 'B', 4120, + 'b', 4120, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(1972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'I') ADVANCE(2112); + if (lookahead == 'i') ADVANCE(2112); + if (lookahead == 'r') ADVANCE(2104); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'I') ADVANCE(2112); + if (lookahead == 'i') ADVANCE(2112); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(1977); - if (lookahead == 'o') ADVANCE(2061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'I') ADVANCE(2112); + if (lookahead == 'i') ADVANCE(2018); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'N') ADVANCE(2113); + if (lookahead == 'f') ADVANCE(3789); + if (lookahead == 'n') ADVANCE(3761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(1998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(1999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'e') ADVANCE(2037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'f') ADVANCE(3622); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2002); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'g') ADVANCE(2011); - if (lookahead == 't') ADVANCE(2063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'h') ADVANCE(3781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'h') ADVANCE(3758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2004); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'h') ADVANCE(2012); - if (lookahead == 'k') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'h') ADVANCE(2012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2007); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'i') ADVANCE(1982); - if (lookahead == 'r') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'i') ADVANCE(1982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2010); + if (lookahead == 'l') ADVANCE(2093); + if (lookahead == 'r') ADVANCE(2082); + if (lookahead == 'x') ADVANCE(2075); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'i') ADVANCE(1974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2010); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'i') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '_') ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'i') ADVANCE(2052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'a') ADVANCE(2096); + if (lookahead == 'o') ADVANCE(2065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'i') ADVANCE(2019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'a') ADVANCE(2064); + if (lookahead == 'o') ADVANCE(2077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'k') ADVANCE(3707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'a') ADVANCE(2056); + if (lookahead == 'o') ADVANCE(2023); + if (lookahead == 'u') ADVANCE(2098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'k') ADVANCE(1988); - if (lookahead == 't') ADVANCE(1979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'a') ADVANCE(2055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(2009); - if (lookahead == 's') ADVANCE(3813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'a') ADVANCE(2109); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(2078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'a') ADVANCE(2087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(2016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'a') ADVANCE(2110); + if (lookahead == 'e') ADVANCE(2043); + if (lookahead == 'o') ADVANCE(3784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(1973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(1989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'c') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(1990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'c') ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(2051); - if (lookahead == 'r') ADVANCE(2040); - if (lookahead == 'x') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'c') ADVANCE(2046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'l') ADVANCE(2053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'c') ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'n') ADVANCE(2050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2107); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'n') ADVANCE(3630); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'n') ADVANCE(3785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2043); + if (lookahead == 'o') ADVANCE(3784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'n') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'n') ADVANCE(2064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'o') ADVANCE(2061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'o') ADVANCE(2032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'o') ADVANCE(2036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'o') ADVANCE(2043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'p') ADVANCE(3728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'p') ADVANCE(2031); - if (lookahead == 't') ADVANCE(1999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(2062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(3715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2097); + if (lookahead == 'o') ADVANCE(2071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(3662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(3796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(1994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2019); + if (lookahead == 'o') ADVANCE(2103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(1980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(2024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(2025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(2058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'f') ADVANCE(3662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'r') ADVANCE(2018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'g') ADVANCE(2053); + if (lookahead == 't') ADVANCE(2105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(1815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'h') ADVANCE(3823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'u') ADVANCE(2017); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'h') ADVANCE(3800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2054); + if (lookahead == 'k') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(4086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(1985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2024); + if (lookahead == 'r') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(2057); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(1986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(2059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 's') ADVANCE(1997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 't') ADVANCE(1978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 't') ADVANCE(1821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'k') ADVANCE(3749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 't') ADVANCE(1829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2030); + if (lookahead == 't') ADVANCE(2021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 't') ADVANCE(1834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2051); + if (lookahead == 's') ADVANCE(3855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 't') ADVANCE(1809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 't') ADVANCE(2000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'u') ADVANCE(2017); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'u') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'u') ADVANCE(1995); - if (lookahead == 'y') ADVANCE(3776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'u') ADVANCE(2042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2093); + if (lookahead == 'r') ADVANCE(2082); + if (lookahead == 'x') ADVANCE(2075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'u') ADVANCE(1992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'u') ADVANCE(2020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'v') ADVANCE(1998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'n') ADVANCE(3670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'y') ADVANCE(3808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'n') ADVANCE(3827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'y') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'p') ADVANCE(3770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'p') ADVANCE(2073); + if (lookahead == 't') ADVANCE(2041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2104); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3083); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3080); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2495); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2942); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2947); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2960); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2966); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2965); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(1859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'u') ADVANCE(2059); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3069); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3075); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3074); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(4128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2972); - if (lookahead == '=') ADVANCE(4164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2978); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2977); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(2099); + if (lookahead == 't') ADVANCE(2052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(2028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2474); - if (lookahead == '_') ADVANCE(2094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(2101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 's') ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3767); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 't') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 't') ADVANCE(1865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3888); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 't') ADVANCE(1873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2097); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 't') ADVANCE(1878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2097); - if (lookahead == '_') ADVANCE(2480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 't') ADVANCE(1853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 't') ADVANCE(2042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2479); - if (lookahead == '_') ADVANCE(2102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2059); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '>') ADVANCE(1624); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2037); + if (lookahead == 'y') ADVANCE(3818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '>') ADVANCE(1626); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '>') ADVANCE(1628); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '>') ADVANCE(1629); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'N') ADVANCE(2432); - if (lookahead == 'f') ADVANCE(3748); - if (lookahead == 'n') ADVANCE(2323); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'v') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'N') ADVANCE(2432); - if (lookahead == 'f') ADVANCE(3748); - if (lookahead == 'n') ADVANCE(3721); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'y') ADVANCE(3850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'N') ADVANCE(2432); - if (lookahead == 'f') ADVANCE(2439); - if (lookahead == 'n') ADVANCE(2323); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'y') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == '_') ADVANCE(2111); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2336); - if (lookahead == 'o') ADVANCE(2284); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2336); - if (lookahead == 'o') ADVANCE(2285); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2336); - if (lookahead == 'o') ADVANCE(2286); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2151); - if (lookahead == 'l') ADVANCE(2370); - if (lookahead == 'n') ADVANCE(2154); - if (lookahead == 'r') ADVANCE(2346); - if (lookahead == 'x') ADVANCE(2322); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2151); - if (lookahead == 'l') ADVANCE(2370); - if (lookahead == 'n') ADVANCE(2154); - if (lookahead == 'r') ADVANCE(2363); - if (lookahead == 'x') ADVANCE(2334); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2151); - if (lookahead == 'l') ADVANCE(2375); - if (lookahead == 'n') ADVANCE(2154); - if (lookahead == 'r') ADVANCE(2346); - if (lookahead == 'x') ADVANCE(2322); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2280); - if (lookahead == 'o') ADVANCE(2338); - if (lookahead == 'r') ADVANCE(2308); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2280); - if (lookahead == 'o') ADVANCE(2343); - if (lookahead == 'r') ADVANCE(2308); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2258); - if (lookahead == 'e') ADVANCE(2389); - if (lookahead == 'o') ADVANCE(2162); - if (lookahead == 'u') ADVANCE(2383); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(3125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3123); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2258); - if (lookahead == 'e') ADVANCE(2389); - if (lookahead == 'o') ADVANCE(2171); - if (lookahead == 'u') ADVANCE(2395); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3117); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2294); - if (lookahead == 'e') ADVANCE(2220); - if (lookahead == 'o') ADVANCE(2283); - if (lookahead == 'u') ADVANCE(2373); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ',') ADVANCE(3122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3120); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2294); - if (lookahead == 'e') ADVANCE(2227); - if (lookahead == 'o') ADVANCE(2283); - if (lookahead == 'u') ADVANCE(2373); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(2538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2294); - if (lookahead == 'e') ADVANCE(2226); - if (lookahead == 'o') ADVANCE(2283); - if (lookahead == 'u') ADVANCE(2373); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(2901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2262); - if (lookahead == 'e') ADVANCE(2357); - if (lookahead == 'o') ADVANCE(1846); - if (lookahead == 'r') ADVANCE(2411); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(2670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2262); - if (lookahead == 'e') ADVANCE(2357); - if (lookahead == 'o') ADVANCE(1846); - if (lookahead == 'r') ADVANCE(2412); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2257); + if (lookahead == '-') ADVANCE(2982); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2987); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2427); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(2982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2261); + if (lookahead == '-') ADVANCE(3000); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3005); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2379); - if (lookahead == 'e') ADVANCE(2278); - if (lookahead == 'i') ADVANCE(2165); - if (lookahead == 't') ADVANCE(2401); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2379); - if (lookahead == 'e') ADVANCE(2278); - if (lookahead == 'i') ADVANCE(2167); - if (lookahead == 't') ADVANCE(2401); + if (lookahead == '-') ADVANCE(3109); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3114); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2428); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(3109); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2366); + if (lookahead == '-') ADVANCE(3012); + if (lookahead == '=') ADVANCE(4206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3017); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2371); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(3012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2403); - if (lookahead == 'l') ADVANCE(2408); - if (lookahead == 'o') ADVANCE(2266); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '-') ADVANCE(2903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2364); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(2517); + if (lookahead == '_') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2396); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(1912); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(3809); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2260); - if (lookahead == 'e') ADVANCE(2389); - if (lookahead == 'o') ADVANCE(2162); - if (lookahead == 'u') ADVANCE(2383); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(1975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2296); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(3932); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2394); - if (lookahead == 'e') ADVANCE(2149); - if (lookahead == 'o') ADVANCE(3743); - if (lookahead == 'r') ADVANCE(2305); - if (lookahead == 't') ADVANCE(1842); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(2139); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2394); - if (lookahead == 'e') ADVANCE(2150); - if (lookahead == 'o') ADVANCE(3743); - if (lookahead == 'r') ADVANCE(2305); - if (lookahead == 't') ADVANCE(1842); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(2139); + if (lookahead == '_') ADVANCE(2523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2394); - if (lookahead == 'e') ADVANCE(2150); - if (lookahead == 'o') ADVANCE(2438); - if (lookahead == 'r') ADVANCE(2305); - if (lookahead == 't') ADVANCE(1842); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2164); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == '.') ADVANCE(2522); + if (lookahead == '_') ADVANCE(2144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2406); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + if (lookahead == ':') ADVANCE(1687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2337); - if (lookahead == 'o') ADVANCE(2284); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '>') ADVANCE(1651); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'a') ADVANCE(2259); - if (lookahead == 'e') ADVANCE(2389); - if (lookahead == 'o') ADVANCE(2171); - if (lookahead == 'u') ADVANCE(2395); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '>') ADVANCE(1653); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'b') ADVANCE(2252); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '>') ADVANCE(1655); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'b') ADVANCE(2409); - if (lookahead == 'c') ADVANCE(2311); - if (lookahead == 'f') ADVANCE(3623); - if (lookahead == 't') ADVANCE(2188); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '>') ADVANCE(1656); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'b') ADVANCE(2409); - if (lookahead == 'c') ADVANCE(2311); - if (lookahead == 'f') ADVANCE(2440); - if (lookahead == 't') ADVANCE(2188); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'N') ADVANCE(2474); + if (lookahead == 'f') ADVANCE(3790); + if (lookahead == 'n') ADVANCE(2365); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2234); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'N') ADVANCE(2474); + if (lookahead == 'f') ADVANCE(3790); + if (lookahead == 'n') ADVANCE(3763); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2232); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'N') ADVANCE(2474); + if (lookahead == 'f') ADVANCE(2481); + if (lookahead == 'n') ADVANCE(2365); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2229); - if (lookahead == 'h') ADVANCE(1876); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == '_') ADVANCE(2153); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2311); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2378); + if (lookahead == 'o') ADVANCE(2326); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2230); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2378); + if (lookahead == 'o') ADVANCE(2327); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2181); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2378); + if (lookahead == 'o') ADVANCE(2328); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2191); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2193); + if (lookahead == 'l') ADVANCE(2412); + if (lookahead == 'n') ADVANCE(2196); + if (lookahead == 'r') ADVANCE(2388); + if (lookahead == 'x') ADVANCE(2364); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2237); - if (lookahead == 'h') ADVANCE(1876); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2193); + if (lookahead == 'l') ADVANCE(2412); + if (lookahead == 'n') ADVANCE(2196); + if (lookahead == 'r') ADVANCE(2405); + if (lookahead == 'x') ADVANCE(2376); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '=', 4164, - 'c', 2310, - 'e', 2335, - 'k', 2254, - 'o', 2410, - 'p', 2267, - 't', 2314, - 'y', 2369, - ); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2193); + if (lookahead == 'l') ADVANCE(2417); + if (lookahead == 'n') ADVANCE(2196); + if (lookahead == 'r') ADVANCE(2388); + if (lookahead == 'x') ADVANCE(2364); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '=', 4164, - 'c', 2310, - 'e', 2335, - 'k', 2254, - 'o', 2418, - 'p', 2267, - 't', 2314, - 'y', 2369, - ); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2322); + if (lookahead == 'o') ADVANCE(2380); + if (lookahead == 'r') ADVANCE(2350); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'c') ADVANCE(2399); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2322); + if (lookahead == 'o') ADVANCE(2385); + if (lookahead == 'r') ADVANCE(2350); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2419); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2300); + if (lookahead == 'e') ADVANCE(2431); + if (lookahead == 'o') ADVANCE(2204); + if (lookahead == 'u') ADVANCE(2425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2145); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2300); + if (lookahead == 'e') ADVANCE(2431); + if (lookahead == 'o') ADVANCE(2213); + if (lookahead == 'u') ADVANCE(2437); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2137); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2336); + if (lookahead == 'e') ADVANCE(2262); + if (lookahead == 'o') ADVANCE(2325); + if (lookahead == 'u') ADVANCE(2415); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2175); - if (lookahead == 's') ADVANCE(2404); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2336); + if (lookahead == 'e') ADVANCE(2269); + if (lookahead == 'o') ADVANCE(2325); + if (lookahead == 'u') ADVANCE(2415); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2244); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2336); + if (lookahead == 'e') ADVANCE(2268); + if (lookahead == 'o') ADVANCE(2325); + if (lookahead == 'u') ADVANCE(2415); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2186); - if (lookahead == 's') ADVANCE(2404); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2304); + if (lookahead == 'e') ADVANCE(2399); + if (lookahead == 'o') ADVANCE(1890); + if (lookahead == 'r') ADVANCE(2453); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2272); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2304); + if (lookahead == 'e') ADVANCE(2399); + if (lookahead == 'o') ADVANCE(1890); + if (lookahead == 'r') ADVANCE(2454); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2210); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2299); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2321); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2469); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'd') ADVANCE(2421); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2303); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2426); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2421); + if (lookahead == 'e') ADVANCE(2320); + if (lookahead == 'i') ADVANCE(2207); + if (lookahead == 't') ADVANCE(2443); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3641); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2421); + if (lookahead == 'e') ADVANCE(2320); + if (lookahead == 'i') ADVANCE(2209); + if (lookahead == 't') ADVANCE(2443); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2425); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2470); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3801); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2408); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3980); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2413); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3988); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2445); + if (lookahead == 'l') ADVANCE(2450); + if (lookahead == 'o') ADVANCE(2308); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3824); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2406); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3738); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2438); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3636); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(1956); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3790); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2302); + if (lookahead == 'e') ADVANCE(2431); + if (lookahead == 'o') ADVANCE(2204); + if (lookahead == 'u') ADVANCE(2425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3712); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2338); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3754); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2436); + if (lookahead == 'e') ADVANCE(2191); + if (lookahead == 'o') ADVANCE(3785); + if (lookahead == 'r') ADVANCE(2347); + if (lookahead == 't') ADVANCE(1886); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(3734); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2436); + if (lookahead == 'e') ADVANCE(2192); + if (lookahead == 'o') ADVANCE(3785); + if (lookahead == 'r') ADVANCE(2347); + if (lookahead == 't') ADVANCE(1886); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2127); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2436); + if (lookahead == 'e') ADVANCE(2192); + if (lookahead == 'o') ADVANCE(2480); + if (lookahead == 'r') ADVANCE(2347); + if (lookahead == 't') ADVANCE(1886); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2087); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2206); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2444); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2448); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2161); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2379); + if (lookahead == 'o') ADVANCE(2326); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2446); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'a') ADVANCE(2301); + if (lookahead == 'e') ADVANCE(2431); + if (lookahead == 'o') ADVANCE(2213); + if (lookahead == 'u') ADVANCE(2437); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2359); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'b') ADVANCE(2294); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2091); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'b') ADVANCE(2451); + if (lookahead == 'c') ADVANCE(2353); + if (lookahead == 'f') ADVANCE(3663); + if (lookahead == 't') ADVANCE(2230); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2382); - if (lookahead == 'o') ADVANCE(2309); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'b') ADVANCE(2451); + if (lookahead == 'c') ADVANCE(2353); + if (lookahead == 'f') ADVANCE(2482); + if (lookahead == 't') ADVANCE(2230); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2342); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2276); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2443); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2274); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2350); - if (lookahead == 'i') ADVANCE(2273); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2271); + if (lookahead == 'h') ADVANCE(1920); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2350); - if (lookahead == 'i') ADVANCE(2276); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2353); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(1862); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2272); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2345); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2223); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2129); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2233); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2452); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2279); + if (lookahead == 'h') ADVANCE(1920); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2454); + ADVANCE_MAP( + '=', 4206, + 'c', 2352, + 'e', 2377, + 'k', 2296, + 'o', 2452, + 'p', 2309, + 't', 2356, + 'y', 2411, + ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2387); - if (lookahead == 'o') ADVANCE(2312); + ADVANCE_MAP( + '=', 4206, + 'c', 2352, + 'e', 2377, + 'k', 2296, + 'o', 2460, + 'p', 2309, + 't', 2356, + 'y', 2411, + ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2340); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'c') ADVANCE(2441); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2348); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2461); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2351); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2187); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2353); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2179); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(1882); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2217); + if (lookahead == 's') ADVANCE(2446); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2457); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2286); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(1896); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2228); + if (lookahead == 's') ADVANCE(2446); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(1902); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2314); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(1924); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2252); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(1930); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2363); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(1914); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'd') ADVANCE(2463); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2105); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2468); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2376); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3681); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'e') ADVANCE(2361); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2467); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'f') ADVANCE(2251); - if (lookahead == 's') ADVANCE(2385); - if (lookahead == 't') ADVANCE(2242); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3843); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'f') ADVANCE(2251); - if (lookahead == 's') ADVANCE(2397); - if (lookahead == 't') ADVANCE(2242); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(4023); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'f') ADVANCE(2251); - if (lookahead == 's') ADVANCE(2397); - if (lookahead == 't') ADVANCE(2255); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(4031); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(2246); - if (lookahead == 't') ADVANCE(2413); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3866); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(2318); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3780); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(2249); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3676); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(1918); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3832); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(1900); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3754); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(2378); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3796); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(2256); - if (lookahead == 't') ADVANCE(2413); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(3776); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'g') ADVANCE(2256); - if (lookahead == 't') ADVANCE(2420); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2169); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(2195); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2129); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(3759); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2486); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(3782); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2203); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(1844); - if (lookahead == 'i') ADVANCE(2391); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2488); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(2449); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(2253); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2133); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(1920); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2424); + if (lookahead == 'o') ADVANCE(2351); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(1868); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2384); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(1878); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2485); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(2451); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2393); + if (lookahead == 'i') ADVANCE(2315); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'h') ADVANCE(2196); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2393); + if (lookahead == 'i') ADVANCE(2318); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2400); - if (lookahead == 'r') ADVANCE(2185); - if (lookahead == 'y') ADVANCE(2393); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(1906); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2400); - if (lookahead == 'r') ADVANCE(2199); - if (lookahead == 'y') ADVANCE(2393); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2387); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2133); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2171); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2302); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2495); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2174); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2497); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2295); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2429); + if (lookahead == 'o') ADVANCE(2354); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2304); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2382); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2380); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2390); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(1858); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2394); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2134); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2301); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(1926); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2398); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2500); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2224); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(1940); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2297); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(1946); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2276); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(1968); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2331); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(1972); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2303); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(1958); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'i') ADVANCE(2381); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2147); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'k') ADVANCE(3708); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2418); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'k') ADVANCE(2189); - if (lookahead == 't') ADVANCE(2153); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'e') ADVANCE(2403); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'k') ADVANCE(2189); - if (lookahead == 't') ADVANCE(2158); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'f') ADVANCE(2293); + if (lookahead == 's') ADVANCE(2427); + if (lookahead == 't') ADVANCE(2284); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'k') ADVANCE(2184); - if (lookahead == 't') ADVANCE(2153); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'f') ADVANCE(2293); + if (lookahead == 's') ADVANCE(2439); + if (lookahead == 't') ADVANCE(2284); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'k') ADVANCE(2448); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'f') ADVANCE(2293); + if (lookahead == 's') ADVANCE(2439); + if (lookahead == 't') ADVANCE(2297); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'k') ADVANCE(2207); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(2288); + if (lookahead == 't') ADVANCE(2455); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(3972); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(2361); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2241); - if (lookahead == 'n') ADVANCE(2368); - if (lookahead == 's') ADVANCE(3814); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(2291); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2241); - if (lookahead == 'n') ADVANCE(2368); - if (lookahead == 's') ADVANCE(2437); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(1962); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2136); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(1944); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2250); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(2420); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2263); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(2298); + if (lookahead == 't') ADVANCE(2455); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(1856); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'g') ADVANCE(2298); + if (lookahead == 't') ADVANCE(2462); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2128); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(2237); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2132); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(3801); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2245); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(3824); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2179); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(1888); + if (lookahead == 'i') ADVANCE(2433); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2180); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(2491); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(1880); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(2295); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2200); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(1964); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2201); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(1912); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2329); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(1922); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2248); - if (lookahead == 'n') ADVANCE(2368); - if (lookahead == 's') ADVANCE(2437); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(2494); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2374); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'h') ADVANCE(2238); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2317); - if (lookahead == 'o') ADVANCE(2349); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2442); + if (lookahead == 'r') ADVANCE(2227); + if (lookahead == 'y') ADVANCE(2435); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2317); - if (lookahead == 'o') ADVANCE(2352); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2442); + if (lookahead == 'r') ADVANCE(2241); + if (lookahead == 'y') ADVANCE(2435); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'l') ADVANCE(2275); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2175); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(2288); - if (lookahead == 'n') ADVANCE(2217); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2344); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(2288); - if (lookahead == 'n') ADVANCE(2218); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2216); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(2288); - if (lookahead == 'n') ADVANCE(2219); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2337); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(2988); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2346); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2992); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(2140); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2422); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(1866); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(1902); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(1886); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2176); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'm') ADVANCE(1908); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2343); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(3631); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2440); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(3786); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2266); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2170); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2339); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2225); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2318); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2168); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2373); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2166); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2345); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2453); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'i') ADVANCE(2423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(1874); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'k') ADVANCE(3750); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2455); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'k') ADVANCE(2231); + if (lookahead == 't') ADVANCE(2195); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(1904); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'k') ADVANCE(2231); + if (lookahead == 't') ADVANCE(2200); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2414); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'k') ADVANCE(2226); + if (lookahead == 't') ADVANCE(2195); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2416); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'k') ADVANCE(2490); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'n') ADVANCE(2213); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'k') ADVANCE(2249); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2328); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(4015); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2104); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2283); + if (lookahead == 'n') ADVANCE(2410); + if (lookahead == 's') ADVANCE(3856); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2299); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2283); + if (lookahead == 'n') ADVANCE(2410); + if (lookahead == 's') ADVANCE(2479); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2289); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2178); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2324); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2292); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2333); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2305); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2169); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(1900); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2327); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2170); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2415); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2174); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2354); - if (lookahead == 'r') ADVANCE(1852); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2287); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2384); - if (lookahead == 'u') ADVANCE(2268); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2434); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2221); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2339); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2222); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2365); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(1924); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(1892); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2242); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2356); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2355); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'o') ADVANCE(2291); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2290); + if (lookahead == 'n') ADVANCE(2410); + if (lookahead == 's') ADVANCE(2479); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(2281); - if (lookahead == 't') ADVANCE(2198); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2416); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(3047); - if (lookahead == 't') ADVANCE(3043); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3049); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2359); + if (lookahead == 'o') ADVANCE(2392); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(3729); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2359); + if (lookahead == 'o') ADVANCE(2395); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(2163); - if (lookahead == 'r') ADVANCE(2269); - if (lookahead == 's') ADVANCE(2173); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'l') ADVANCE(2317); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(2163); - if (lookahead == 'r') ADVANCE(2269); - if (lookahead == 's') ADVANCE(2194); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(2330); + if (lookahead == 'n') ADVANCE(2259); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(2445); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(2330); + if (lookahead == 'n') ADVANCE(2260); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(1864); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(2330); + if (lookahead == 'n') ADVANCE(2261); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(1870); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(3028); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(3033); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3032); END_STATE(); case 2330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(1872); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(2182); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(1882); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(1910); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(1910); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(1930); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(2209); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'm') ADVANCE(1952); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'p') ADVANCE(2282); - if (lookahead == 't') ADVANCE(2204); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(3671); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'q') ADVANCE(1850); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(3828); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2221); - if (lookahead == 't') ADVANCE(2152); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2212); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2221); - if (lookahead == 't') ADVANCE(2155); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2267); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(3716); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2210); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(3660); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2208); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(3797); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2496); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(1938); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(1918); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2429); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2498); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2287); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(1948); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2156); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2456); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2292); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2458); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2316); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'n') ADVANCE(2255); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2293); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2370); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2298); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2146); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2386); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2341); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2178); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2331); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2458); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2366); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2390); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2375); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2362); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2211); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(1884); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2369); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(1926); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2457); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2430); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2397); + if (lookahead == 'r') ADVANCE(1896); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2290); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2426); + if (lookahead == 'u') ADVANCE(2310); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2476); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2157); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2381); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2270); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2407); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2300); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2391); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2271); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(1936); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2107); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2398); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2320); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'o') ADVANCE(2333); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2377); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(2323); + if (lookahead == 't') ADVANCE(2240); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'r') ADVANCE(2212); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(3087); + if (lookahead == 't') ADVANCE(3083); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3089); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3099); END_STATE(); case 2366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(1816); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(3771); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2307); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(2205); + if (lookahead == 'r') ADVANCE(2311); + if (lookahead == 's') ADVANCE(2215); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2247); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(2205); + if (lookahead == 'r') ADVANCE(2311); + if (lookahead == 's') ADVANCE(2236); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(1854); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(2487); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2187); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(1908); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2447); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(1914); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(1860); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(1916); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2392); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(1926); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2177); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(1954); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2183); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(2251); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(1890); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'p') ADVANCE(2324); + if (lookahead == 't') ADVANCE(2246); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(1906); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'q') ADVANCE(1894); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(1916); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2263); + if (lookahead == 't') ADVANCE(2194); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2235); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2263); + if (lookahead == 't') ADVANCE(2197); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2405); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(3758); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 's') ADVANCE(2407); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(3701); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1823); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(3839); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1830); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(1980); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2435); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2471); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1835); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2329); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1811); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2198); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2085); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2334); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1941); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2358); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2144); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2335); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2089); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2340); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1848); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2493); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2422); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2428); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2215); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2197); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2501); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2441); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2432); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2138); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2404); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2450); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(1928); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1898); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2472); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(1928); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2332); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2372); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2199); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2330); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2312); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2106); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2342); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2236); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2313); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2319); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2203); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2360); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2211); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2419); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 't') ADVANCE(2205); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(2254); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2222); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(1860); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2223); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2349); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2344); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2289); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2176); - if (lookahead == 'y') ADVANCE(3777); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(1898); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2176); - if (lookahead == 'y') ADVANCE(2442); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2229); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2347); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2489); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2182); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(1904); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2402); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2434); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2208); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2219); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2193); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2225); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2358); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(1934); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2274); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(1950); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2360); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(1960); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2277); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2277); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'u') ADVANCE(2332); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2447); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'v') ADVANCE(2190); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 's') ADVANCE(2449); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'v') ADVANCE(2216); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1867); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'w') ADVANCE(1888); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1874); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'y') ADVANCE(2148); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2477); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'y') ADVANCE(3809); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1879); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'y') ADVANCE(2456); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1855); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'y') ADVANCE(1894); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2127); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'y') ADVANCE(1922); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1983); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2434); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2186); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4053); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2131); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2432); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1892); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4071); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2464); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2257); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2239); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2436); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2483); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3031); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2180); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3004); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2492); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3008); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3007); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1942); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2922); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2921); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(1970); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2951); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2950); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2414); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3014); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3013); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2372); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2927); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2148); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3011); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3010); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2278); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2996); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2995); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2362); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3062); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2245); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2925); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2924); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2253); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3023); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3022); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 't') ADVANCE(2247); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3016); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2264); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2954); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2953); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2265); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3020); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3019); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2386); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2999); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2998); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2218); + if (lookahead == 'y') ADVANCE(3819); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2933); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2932); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2218); + if (lookahead == 'y') ADVANCE(2484); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2935); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2389); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2224); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2981); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2980); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2444); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3026); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3025); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4164); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2250); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2984); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2983); + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3839); - if (lookahead == '~') ADVANCE(3850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2235); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2400); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2316); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2402); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2319); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 2872, - '_', 2485, - 'i', 2872, - 'l', 2798, - 'r', 2781, - 'x', 2741, - '+', 2485, - '-', 2485, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(2374); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2872); - if (lookahead == '_') ADVANCE(2485); - if (lookahead == 'i') ADVANCE(2518); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2485); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'v') ADVANCE(2232); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 2872, - 'a', 2650, - 'i', 2689, - 'o', 2547, - 's', 4085, - 'u', 2825, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'v') ADVANCE(2258); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2872); - if (lookahead == 'i') ADVANCE(2872); - if (lookahead == 'l') ADVANCE(2798); - if (lookahead == 'r') ADVANCE(2781); - if (lookahead == 'x') ADVANCE(2741); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'w') ADVANCE(1932); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2872); - if (lookahead == 'i') ADVANCE(2872); - if (lookahead == 'r') ADVANCE(2847); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'y') ADVANCE(2190); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2872); - if (lookahead == 'i') ADVANCE(2872); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'y') ADVANCE(3851); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2872); - if (lookahead == 'i') ADVANCE(2518); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'y') ADVANCE(2499); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2873); - if (lookahead == 'f') ADVANCE(3749); - if (lookahead == 'n') ADVANCE(3722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'y') ADVANCE(1938); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2873); - if (lookahead == 'f') ADVANCE(3749); - if (lookahead == 'n') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'y') ADVANCE(1966); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2875); - if (lookahead == 'f') ADVANCE(2894); - if (lookahead == 'n') ADVANCE(2874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2476); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4095); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2474); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2477); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4113); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); END_STATE(); case 2479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2479); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3071); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3045); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3044); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2482); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3048); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3047); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2482); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2962); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2961); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2485); - if (lookahead == 'l') ADVANCE(2788); - if (lookahead == 'r') ADVANCE(2777); - if (lookahead == 'x') ADVANCE(2740); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2990); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2485); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3054); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3053); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2968); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2967); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2486); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3051); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3050); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2672); - if (lookahead == 'o') ADVANCE(2745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3036); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3035); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2672); - if (lookahead == 'o') ADVANCE(2767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3103); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3102); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2647); - if (lookahead == 'o') ADVANCE(2534); - if (lookahead == 'u') ADVANCE(2810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2965); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2964); END_STATE(); case 2490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2647); - if (lookahead == 'o') ADVANCE(2537); - if (lookahead == 'u') ADVANCE(2810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3063); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3062); END_STATE(); case 2491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3057); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3056); END_STATE(); case 2492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2993); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2751); - if (lookahead == 'o') ADVANCE(2679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3042); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3041); END_STATE(); case 2494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2808); - if (lookahead == 'o') ADVANCE(2685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3060); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3059); END_STATE(); case 2495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2692); - if (lookahead == 'o') ADVANCE(2748); - if (lookahead == 's') ADVANCE(2609); - if (lookahead == 'x') ADVANCE(2715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3039); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3038); END_STATE(); case 2496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2649); - if (lookahead == 'e') ADVANCE(2822); - if (lookahead == 'o') ADVANCE(2547); - if (lookahead == 'u') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2972); END_STATE(); case 2497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2651); - if (lookahead == 'e') ADVANCE(2774); - if (lookahead == 'o') ADVANCE(1847); - if (lookahead == 'r') ADVANCE(2851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2975); END_STATE(); case 2498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3068); END_STATE(); case 2499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3021); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3020); END_STATE(); case 2500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3065); END_STATE(); case 2501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2866); - if (lookahead == 'e') ADVANCE(2598); - if (lookahead == 'o') ADVANCE(2893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(4206); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3023); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '=') ADVANCE(3881); + if (lookahead == '~') ADVANCE(3892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2805); - if (lookahead == 'e') ADVANCE(2671); - if (lookahead == 'i') ADVANCE(2542); - if (lookahead == 't') ADVANCE(2833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '>') ADVANCE(4363); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '>') ADVANCE(4359); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2834); - if (lookahead == 'l') ADVANCE(2843); - if (lookahead == 'o') ADVANCE(2670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '>') ADVANCE(4351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '>') ADVANCE(4355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + ADVANCE_MAP( + 'I', 2912, + '_', 2529, + 'i', 2912, + 'l', 2838, + 'r', 2821, + 'x', 2783, + '+', 2529, + '-', 2529, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'I') ADVANCE(2912); + if (lookahead == '_') ADVANCE(2529); + if (lookahead == 'i') ADVANCE(2561); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2529); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2650); - if (lookahead == 'o') ADVANCE(2547); - if (lookahead == 'u') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + ADVANCE_MAP( + 'I', 2912, + 'a', 2693, + 'i', 2732, + 'o', 2590, + 's', 4127, + 'u', 2865, + 'B', 4120, + 'b', 4120, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2836); - if (lookahead == 'o') ADVANCE(2700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'I') ADVANCE(2912); + if (lookahead == 'i') ADVANCE(2912); + if (lookahead == 'l') ADVANCE(2838); + if (lookahead == 'r') ADVANCE(2821); + if (lookahead == 'x') ADVANCE(2783); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2693); - if (lookahead == 'e') ADVANCE(2606); - if (lookahead == 'o') ADVANCE(2663); - if (lookahead == 'u') ADVANCE(2799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'I') ADVANCE(2912); + if (lookahead == 'i') ADVANCE(2912); + if (lookahead == 'r') ADVANCE(2887); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2830); - if (lookahead == 'e') ADVANCE(2519); - if (lookahead == 'o') ADVANCE(2893); - if (lookahead == 'r') ADVANCE(2708); - if (lookahead == 't') ADVANCE(1843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'I') ADVANCE(2912); + if (lookahead == 'i') ADVANCE(2912); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2524); - if (lookahead == 'l') ADVANCE(2798); - if (lookahead == 'n') ADVANCE(2527); - if (lookahead == 'r') ADVANCE(2780); - if (lookahead == 'x') ADVANCE(2730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'I') ADVANCE(2912); + if (lookahead == 'i') ADVANCE(2561); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'N') ADVANCE(2913); + if (lookahead == 'f') ADVANCE(3791); + if (lookahead == 'n') ADVANCE(3764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'N') ADVANCE(2913); + if (lookahead == 'f') ADVANCE(3791); + if (lookahead == 'n') ADVANCE(2773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2675); - if (lookahead == 'o') ADVANCE(2754); - if (lookahead == 'r') ADVANCE(2710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'N') ADVANCE(2915); + if (lookahead == 'f') ADVANCE(2934); + if (lookahead == 'n') ADVANCE(2914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2844); - if (lookahead == 'c') ADVANCE(2722); - if (lookahead == 'f') ADVANCE(2896); - if (lookahead == 't') ADVANCE(2568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2520); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2525); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2712); - if (lookahead == 'e') ADVANCE(2742); - if (lookahead == 'k') ADVANCE(2643); - if (lookahead == 'o') ADVANCE(2854); - if (lookahead == 'p') ADVANCE(2673); - if (lookahead == 't') ADVANCE(2717); - if (lookahead == 'y') ADVANCE(2790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2529); + if (lookahead == 'l') ADVANCE(2828); + if (lookahead == 'r') ADVANCE(2818); + if (lookahead == 'x') ADVANCE(2782); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2529); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == '_') ADVANCE(2529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2617); - if (lookahead == 'h') ADVANCE(1877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2715); + if (lookahead == 'o') ADVANCE(2787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2715); + if (lookahead == 'o') ADVANCE(2810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2690); + if (lookahead == 'o') ADVANCE(2577); + if (lookahead == 'u') ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2690); + if (lookahead == 'o') ADVANCE(2580); + if (lookahead == 'u') ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2793); + if (lookahead == 'o') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2848); + if (lookahead == 'o') ADVANCE(2728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2552); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2735); + if (lookahead == 'o') ADVANCE(2790); + if (lookahead == 's') ADVANCE(2652); + if (lookahead == 'x') ADVANCE(2758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2515); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2692); + if (lookahead == 'e') ADVANCE(2862); + if (lookahead == 'o') ADVANCE(2590); + if (lookahead == 'u') ADVANCE(2865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2665); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2694); + if (lookahead == 'e') ADVANCE(2815); + if (lookahead == 'o') ADVANCE(1891); + if (lookahead == 'r') ADVANCE(2891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2572); - if (lookahead == 's') ADVANCE(2838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2906); + if (lookahead == 'e') ADVANCE(2641); + if (lookahead == 'o') ADVANCE(2933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2507); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2845); + if (lookahead == 'e') ADVANCE(2714); + if (lookahead == 'i') ADVANCE(2585); + if (lookahead == 't') ADVANCE(2873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2597); - if (lookahead == 'o') ADVANCE(3744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2874); + if (lookahead == 'l') ADVANCE(2883); + if (lookahead == 'o') ADVANCE(2713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2693); + if (lookahead == 'o') ADVANCE(2590); + if (lookahead == 'u') ADVANCE(2865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2876); + if (lookahead == 'o') ADVANCE(2743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2736); + if (lookahead == 'e') ADVANCE(2649); + if (lookahead == 'o') ADVANCE(2706); + if (lookahead == 'u') ADVANCE(2839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2870); + if (lookahead == 'e') ADVANCE(2562); + if (lookahead == 'o') ADVANCE(2933); + if (lookahead == 'r') ADVANCE(2751); + if (lookahead == 't') ADVANCE(1887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2567); + if (lookahead == 'l') ADVANCE(2838); + if (lookahead == 'n') ADVANCE(2570); + if (lookahead == 'r') ADVANCE(2821); + if (lookahead == 'x') ADVANCE(2772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2718); + if (lookahead == 'o') ADVANCE(2796); + if (lookahead == 'r') ADVANCE(2753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2598); - if (lookahead == 'o') ADVANCE(2893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'a') ADVANCE(2588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'b') ADVANCE(2884); + if (lookahead == 'c') ADVANCE(2766); + if (lookahead == 'f') ADVANCE(2936); + if (lookahead == 't') ADVANCE(2611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'b') ADVANCE(2685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2809); - if (lookahead == 'o') ADVANCE(2706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2491); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2755); + if (lookahead == 'e') ADVANCE(2784); + if (lookahead == 'k') ADVANCE(2686); + if (lookahead == 'o') ADVANCE(2894); + if (lookahead == 'p') ADVANCE(2716); + if (lookahead == 't') ADVANCE(2760); + if (lookahead == 'y') ADVANCE(2830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2499); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2521); - if (lookahead == 'o') ADVANCE(2854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2660); + if (lookahead == 'h') ADVANCE(1921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'c') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(3867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(3906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(3925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2579: 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(2891); + if (lookahead == 'd') ADVANCE(2826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2615); + if (lookahead == 's') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'd') ADVANCE(2896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2640); + if (lookahead == 'o') ADVANCE(3786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2819); - if (lookahead == 'o') ADVANCE(2709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2606); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(3624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2637); - if (lookahead == 's') ADVANCE(2828); - if (lookahead == 't') ADVANCE(2644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2625); - if (lookahead == 't') ADVANCE(2848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(3755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(4027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(4035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2641); + if (lookahead == 'o') ADVANCE(2933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2645); - if (lookahead == 't') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2849); + if (lookahead == 'o') ADVANCE(2749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1845); - if (lookahead == 'i') ADVANCE(2818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2564); + if (lookahead == 'o') ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2641); - if (lookahead == 'k') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2815); - if (lookahead == 'r') ADVANCE(2566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2498); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(1927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2691); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(1941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2826); - if (lookahead == 'r') ADVANCE(2570); - if (lookahead == 'y') ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(1969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(1973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(1959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2859); + if (lookahead == 'o') ADVANCE(2752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2543); - if (lookahead == 'r') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'e') ADVANCE(2649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'f') ADVANCE(3664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'f') ADVANCE(2936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'f') ADVANCE(2680); + if (lookahead == 's') ADVANCE(2868); + if (lookahead == 't') ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'g') ADVANCE(2668); + if (lookahead == 't') ADVANCE(2888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'g') ADVANCE(2764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'g') ADVANCE(2681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'g') ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2553); - if (lookahead == 't') ADVANCE(2523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'g') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'g') ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2579); - if (lookahead == 't') ADVANCE(2530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'g') ADVANCE(2688); + if (lookahead == 't') ADVANCE(2895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2579); - if (lookahead == 't') ADVANCE(2531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(3825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(3802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(3877); - if (lookahead == 'r') ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(2695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(3975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(3877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(3875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2622); - if (lookahead == 'n') ADVANCE(2533); - if (lookahead == 's') ADVANCE(3817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(1889); + if (lookahead == 'i') ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2622); - if (lookahead == 's') ADVANCE(3817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(2669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(1965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2492); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(1913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(2948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2500); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(2952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(1923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(2684); + if (lookahead == 'k') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'h') ADVANCE(2684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2630); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2788); - if (lookahead == 'r') ADVANCE(2777); - if (lookahead == 'x') ADVANCE(2740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2506); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(1903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2798); - if (lookahead == 'r') ADVANCE(2781); - if (lookahead == 'x') ADVANCE(2741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2719); - if (lookahead == 'o') ADVANCE(2778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2866); + if (lookahead == 'r') ADVANCE(2613); + if (lookahead == 'y') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2636); - if (lookahead == 'n') ADVANCE(2793); - if (lookahead == 's') ADVANCE(2892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2636); - if (lookahead == 's') ADVANCE(2892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2681); - if (lookahead == 'n') ADVANCE(2599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if (lookahead == 'i') ADVANCE(2647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2514); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2586); + if (lookahead == 'r') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'i') ADVANCE(2847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'k') ADVANCE(3751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'k') ADVANCE(2596); + if (lookahead == 't') ADVANCE(2566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'k') ADVANCE(2947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'k') ADVANCE(2622); + if (lookahead == 't') ADVANCE(2573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'k') ADVANCE(2622); + if (lookahead == 't') ADVANCE(2574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'k') ADVANCE(2627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(3921); + if (lookahead == 'r') ADVANCE(3923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(4018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2665); + if (lookahead == 'n') ADVANCE(2576); + if (lookahead == 's') ADVANCE(3859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2665); + if (lookahead == 's') ADVANCE(3859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(1901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2845); - if (lookahead == 't') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2460); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(1925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2828); + if (lookahead == 'r') ADVANCE(2818); + if (lookahead == 'x') ADVANCE(2782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2814); - if (lookahead == 'u') ADVANCE(2661); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2765); - if (lookahead == 'r') ADVANCE(1853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2838); + if (lookahead == 'r') ADVANCE(2821); + if (lookahead == 'x') ADVANCE(2783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2763); + if (lookahead == 'o') ADVANCE(2819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2679); + if (lookahead == 'n') ADVANCE(2833); + if (lookahead == 's') ADVANCE(2932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2816); - if (lookahead == 'u') ADVANCE(2657); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'l') ADVANCE(2679); + if (lookahead == 's') ADVANCE(2932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'm') ADVANCE(2724); + if (lookahead == 'n') ADVANCE(2642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'm') ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'm') ADVANCE(2557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'm') ADVANCE(1911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'm') ADVANCE(1931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'm') ADVANCE(1953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(3672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2676); - if (lookahead == 't') ADVANCE(2585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(3873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3048); - if (lookahead == 't') ADVANCE(3044); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 'n') ADVANCE(3829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2539); - if (lookahead == 'r') ADVANCE(2659); - if (lookahead == 's') ADVANCE(2575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(1919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2723); - if (lookahead == 't') ADVANCE(2574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2718); - if (lookahead == 't') ADVANCE(2585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'q') ADVANCE(1851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(1949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2885); + if (lookahead == 't') ADVANCE(2545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3664); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3798); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2601); - if (lookahead == 't') ADVANCE(2525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2463); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2854); + if (lookahead == 'u') ADVANCE(2704); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2808); + if (lookahead == 'r') ADVANCE(1897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(1937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2856); + if (lookahead == 'u') ADVANCE(2700); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2570); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'o') ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(2719); + if (lookahead == 't') ADVANCE(2628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(3088); + if (lookahead == 't') ADVANCE(3084); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(2582); + if (lookahead == 'r') ADVANCE(2702); + if (lookahead == 's') ADVANCE(2618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(1909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(1915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(1917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(1927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(2631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(1955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(2767); + if (lookahead == 't') ADVANCE(2617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'u') ADVANCE(2657); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'p') ADVANCE(2762); + if (lookahead == 't') ADVANCE(2628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'q') ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(3759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(3869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2812); - if (lookahead == 't') ADVANCE(2624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(3703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(3929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(3927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(3840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2644); + if (lookahead == 't') ADVANCE(2568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2828); - if (lookahead == 't') ADVANCE(2644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'r') ADVANCE(2761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2517); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(1861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'u') ADVANCE(2700); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(4129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2508); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2852); + if (lookahead == 't') ADVANCE(2667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(1899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(1905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2868); + if (lookahead == 't') ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2657); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2657); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(1935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2603); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2564); - if (lookahead == 'y') ADVANCE(3778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2564); - if (lookahead == 'y') ADVANCE(2899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 's') ADVANCE(2879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2558); - if (lookahead == 'y') ADVANCE(2899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2664); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2631); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 't') ADVANCE(2661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 't') ADVANCE(2568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 't') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2700); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2700); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2607); + if (lookahead == 'y') ADVANCE(3820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2607); + if (lookahead == 'y') ADVANCE(2939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); + if (lookahead == 'u') ADVANCE(2601); + if (lookahead == 'y') ADVANCE(2939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if (lookahead == 'u') ADVANCE(2629); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3005); + if (lookahead == 'u') ADVANCE(2707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3008); + if (lookahead == 'u') ADVANCE(2813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3113); + if (lookahead == 'u') ADVANCE(2816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + if (lookahead == 'u') ADVANCE(2711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if (lookahead == 'u') ADVANCE(2781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); + if (lookahead == 'u') ADVANCE(2625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3014); + if (lookahead == 'v') ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); + if (lookahead == 'v') ADVANCE(2636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + if (lookahead == 'w') ADVANCE(2674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + if (lookahead == 'w') ADVANCE(1933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + if (lookahead == 'w') ADVANCE(2675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3085); + if (lookahead == 'y') ADVANCE(3852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + if (lookahead == 'y') ADVANCE(2563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); + if (lookahead == 'y') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3023); + if (lookahead == 'y') ADVANCE(2957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3017); + if (lookahead == 'y') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2954); + if (lookahead == 'y') ADVANCE(1967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3002); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3020); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2999); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2933); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2936); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3026); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4114); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2920: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(2922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2920); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2921: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2922); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2921); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2922: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2923: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(2925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2924: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2925); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2924); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2925: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4154); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2926: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2926); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2927: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2928); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2927); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2928: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2929: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2929); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2930: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2931: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(2933); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2932: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2933); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2932); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); END_STATE(); case 2933: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2933); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); END_STATE(); case 2934: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); END_STATE(); case 2935: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2936); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2935); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); END_STATE(); case 2936: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2936); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); END_STATE(); case 2937: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == 'e') ADVANCE(2938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2940); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); END_STATE(); case 2938: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == 'n') ADVANCE(2939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2940); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 2939: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == 'v') ADVANCE(1826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2940); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); case 2940: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2940); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); END_STATE(); case 2941: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(2943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); END_STATE(); case 2942: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); END_STATE(); case 2943: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); END_STATE(); case 2944: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); END_STATE(); case 2945: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); END_STATE(); case 2946: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); END_STATE(); case 2947: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2948); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2947); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); END_STATE(); case 2948: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); END_STATE(); case 2949: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2949); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 2950: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2951); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2950); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); END_STATE(); case 2951: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); END_STATE(); case 2952: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2952); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); END_STATE(); case 2953: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2954); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2953); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); case 2954: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2954); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 2955: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == 'e') ADVANCE(2956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 2956: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == 'n') ADVANCE(2957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); case 2957: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == 'v') ADVANCE(3805); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); END_STATE(); case 2958: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); END_STATE(); case 2959: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(2961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 2960: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == ',') ADVANCE(2962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); END_STATE(); case 2961: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2962); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); END_STATE(); case 2962: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); END_STATE(); case 2963: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(2966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == ',') ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); END_STATE(); case 2964: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); - END_STATE(); - case 2965: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2966); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2965); + lookahead == '@') ADVANCE(2965); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2964); + END_STATE(); + case 2965: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); END_STATE(); case 2966: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == ',') ADVANCE(2968); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); END_STATE(); case 2967: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == 'e') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2968); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2967); END_STATE(); case 2968: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == 'n') ADVANCE(2969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); END_STATE(); case 2969: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == 'v') ADVANCE(3793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if (lookahead == ',') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); END_STATE(); case 2970: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 2971: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(2973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (lookahead == ',') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); END_STATE(); case 2972: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(2974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); END_STATE(); case 2973: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 2974: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if (lookahead == ',') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); END_STATE(); case 2975: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(2978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); END_STATE(); case 2976: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 2977: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2978); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2977); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == 'e') ADVANCE(2978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); case 2978: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == 'n') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); case 2979: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(2981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == 'v') ADVANCE(1870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); case 2980: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2980); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == ',') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); case 2981: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'e') ADVANCE(2983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2982: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'e') ADVANCE(2984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2983: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2984); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2983); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'n') ADVANCE(2986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2984: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'n') ADVANCE(2985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2985: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(751); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'v') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2986: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if (lookahead == 'v') ADVANCE(1871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2987: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); - END_STATE(); - case 2988: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 'a') ADVANCE(2990); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); + END_STATE(); + case 2988: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2989: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 'a') ADVANCE(2991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if (lookahead == ',') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); END_STATE(); case 2990: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 't') ADVANCE(2985); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); END_STATE(); case 2991: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 't') ADVANCE(2986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 2992: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if (lookahead == ',') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); END_STATE(); case 2993: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); END_STATE(); case 2994: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2996); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 2995: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2996); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2995); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == 'e') ADVANCE(2996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); case 2996: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == 'n') ADVANCE(2997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); case 2997: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == 'v') ADVANCE(3847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); case 2998: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2998); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == ',') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); case 2999: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2999); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'e') ADVANCE(3001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3000: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(3002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3000); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'e') ADVANCE(3002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3001: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3001); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'n') ADVANCE(3004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3002: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3002); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'n') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3003: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3003); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'v') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3004: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3005); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3004); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if (lookahead == 'v') ADVANCE(3848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3005: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3005); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3006); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3005); END_STATE(); case 3006: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(3008); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3007: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3008); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3007); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == 'e') ADVANCE(3008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); END_STATE(); case 3008: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3008); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == 'n') ADVANCE(3009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); END_STATE(); case 3009: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(3011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3009); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == 'v') ADVANCE(3835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); END_STATE(); case 3010: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3011); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3010); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == ',') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); END_STATE(); case 3011: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'e') ADVANCE(3013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3012: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(3014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3012); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'e') ADVANCE(3014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3013: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3014); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3013); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'n') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3014: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3014); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'n') ADVANCE(3015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3015: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3015); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'v') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3016: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3017); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3016); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if (lookahead == 'v') ADVANCE(3836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3017: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3017); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3018); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3017); END_STATE(); case 3018: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(3020); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3019: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3019); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if (lookahead == ',') ADVANCE(3021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); case 3020: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3020); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3021); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3020); END_STATE(); case 3021: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); END_STATE(); case 3022: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3023); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3022); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if (lookahead == ',') ADVANCE(3024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3022); END_STATE(); case 3023: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3023); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); case 3024: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(3026); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3025: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ' ') ADVANCE(779); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3026); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3025); + lookahead == '@') ADVANCE(3033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); END_STATE(); case 3026: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3026); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ' ') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); END_STATE(); case 3027: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(3029); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == ',') ADVANCE(3033); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); END_STATE(); case 3028: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == 'a') ADVANCE(3030); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); END_STATE(); case 3029: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == 'a') ADVANCE(3031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); END_STATE(); case 3030: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3030); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == 't') ADVANCE(3025); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); END_STATE(); case 3031: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if (lookahead == 't') ADVANCE(3026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + END_STATE(); + case 3032: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); + END_STATE(); + case 3033: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + END_STATE(); + case 3034: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if (lookahead == ',') ADVANCE(3036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3034); + END_STATE(); + case 3035: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3035); + END_STATE(); + case 3036: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + END_STATE(); + case 3037: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if (lookahead == ',') ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); + END_STATE(); + case 3038: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3039); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); + END_STATE(); + case 3039: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + END_STATE(); + case 3040: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if (lookahead == ',') ADVANCE(3042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); + END_STATE(); + case 3041: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3042); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3041); + END_STATE(); + case 3042: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + END_STATE(); + case 3043: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if (lookahead == ',') ADVANCE(3045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); + END_STATE(); + case 3044: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3044); + END_STATE(); + case 3045: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); + END_STATE(); + case 3046: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if (lookahead == ',') ADVANCE(3048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + END_STATE(); + case 3047: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3047); + END_STATE(); + case 3048: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + END_STATE(); + case 3049: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if (lookahead == ',') ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + END_STATE(); + case 3050: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3051); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3050); + END_STATE(); + case 3051: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + END_STATE(); + case 3052: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if (lookahead == ',') ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); + END_STATE(); + case 3053: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3053); + END_STATE(); + case 3054: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + END_STATE(); + case 3055: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if (lookahead == ',') ADVANCE(3057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); + END_STATE(); + case 3056: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3057); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3056); + END_STATE(); + case 3057: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); + END_STATE(); + case 3058: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if (lookahead == ',') ADVANCE(3060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3058); + END_STATE(); + case 3059: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + END_STATE(); + case 3060: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + END_STATE(); + case 3061: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if (lookahead == ',') ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3061); + END_STATE(); + case 3062: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3063); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3062); + END_STATE(); + case 3063: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + END_STATE(); + case 3064: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if (lookahead == ',') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + END_STATE(); + case 3065: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3065); + END_STATE(); + case 3066: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); + END_STATE(); + case 3067: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if (lookahead == ',') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + END_STATE(); + case 3068: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + END_STATE(); + case 3069: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + END_STATE(); + case 3070: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if (lookahead == ',') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); + END_STATE(); + case 3071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3031); + lookahead == '@') ADVANCE(3072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3071); END_STATE(); - case 3032: + case 3072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); END_STATE(); - case 3033: + case 3073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(650); + if (lookahead == ' ') ADVANCE(678); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3034: + case 3074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == ' ') ADVANCE(678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3035: + case 3075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1107); + if (lookahead == ' ') ADVANCE(1135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3036: + case 3076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == ' ') ADVANCE(1135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3037: + case 3077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3060); + if (lookahead == ',') ADVANCE(3100); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + lookahead == 'i') ADVANCE(3079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3038: + case 3078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3060); + if (lookahead == ',') ADVANCE(3100); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + lookahead == 'i') ADVANCE(3080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3039: + case 3079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3060); + if (lookahead == ',') ADVANCE(3100); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + lookahead == 'n') ADVANCE(3078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3040: + case 3080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3060); + if (lookahead == ',') ADVANCE(3100); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + lookahead == 't') ADVANCE(3081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3041: + case 3081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3060); + if (lookahead == ',') ADVANCE(3100); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + lookahead == 'y') ADVANCE(3082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3042: + case 3082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + if (lookahead == ',') ADVANCE(3100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3043: + case 3083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'o') ADVANCE(3033); + if (lookahead == 'o') ADVANCE(3073); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3044: + case 3084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'o') ADVANCE(3034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 'o') ADVANCE(3074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3045: + case 3085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 't') ADVANCE(3035); + if (lookahead == 't') ADVANCE(3075); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3046: + case 3086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 't') ADVANCE(3036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 't') ADVANCE(3076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3047: + case 3087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'u') ADVANCE(3045); + if (lookahead == 'u') ADVANCE(3085); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3048: + case 3088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'u') ADVANCE(3046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 'u') ADVANCE(3086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3049: + case 3089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3053); + lookahead == 'i') ADVANCE(3093); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3050: + case 3090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3055); + lookahead == 'i') ADVANCE(3095); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3051: + case 3091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + lookahead == 'i') ADVANCE(3094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3052: + case 3092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + lookahead == 'i') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3053: + case 3093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3050); + lookahead == 'n') ADVANCE(3090); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3054: + case 3094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + lookahead == 'n') ADVANCE(3092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3055: + case 3095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3058); + lookahead == 't') ADVANCE(3098); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3056: + case 3096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + lookahead == 't') ADVANCE(3097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3057: + case 3097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + lookahead == 'y') ADVANCE(3100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3058: + case 3098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3059); + lookahead == 'y') ADVANCE(3099); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3059: + case 3099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3060: + case 3100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3061: + case 3101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3061); + if (lookahead == ',') ADVANCE(3103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3101); END_STATE(); - case 3062: + case 3102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3063); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3062); + lookahead == '@') ADVANCE(3103); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3102); END_STATE(); - case 3063: + case 3103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); END_STATE(); - case 3064: + case 3104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == 'e') ADVANCE(3065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == 'e') ADVANCE(3105); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); END_STATE(); - case 3065: + case 3105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == 'n') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == 'n') ADVANCE(3106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); END_STATE(); - case 3066: + case 3106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == 'v') ADVANCE(3626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == 'v') ADVANCE(3666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); END_STATE(); - case 3067: + case 3107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + if (lookahead == ',') ADVANCE(3115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); END_STATE(); - case 3068: + case 3108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(3070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'e') ADVANCE(3110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 3069: + case 3109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(3071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'e') ADVANCE(3111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 3070: + case 3110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'n') ADVANCE(3112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 3071: + case 3111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(3073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'n') ADVANCE(3113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 3072: + case 3112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'v') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 3073: + case 3113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'v') ADVANCE(3116); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 3074: + case 3114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3075); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3074); + lookahead == '@') ADVANCE(3115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3114); END_STATE(); - case 3075: + case 3115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); - case 3076: + case 3116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 3077: + case 3117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(3079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); + if (lookahead == ',') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3117); END_STATE(); - case 3078: + case 3118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3078); + lookahead == '@') ADVANCE(3119); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3118); END_STATE(); - case 3079: + case 3119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); END_STATE(); - case 3080: + case 3120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(3082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3080); + if (lookahead == ',') ADVANCE(3122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3120); END_STATE(); - case 3081: + case 3121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3082); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3081); + lookahead == '@') ADVANCE(3122); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3121); END_STATE(); - case 3082: + case 3122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); END_STATE(); - case 3083: + case 3123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == ',') ADVANCE(3085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3083); + if (lookahead == ',') ADVANCE(3125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3123); END_STATE(); - case 3084: + case 3124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3084); + lookahead == '@') ADVANCE(3125); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3124); END_STATE(); - case 3085: + case 3125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); END_STATE(); - case 3086: + case 3126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3140); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); + lookahead == 'i') ADVANCE(3128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); END_STATE(); - case 3087: + case 3127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3140); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); + lookahead == 'n') ADVANCE(3126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); END_STATE(); - case 3088: + case 3128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3140); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); + lookahead == 't') ADVANCE(3129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); END_STATE(); - case 3089: + case 3129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3140); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); + lookahead == 'y') ADVANCE(3130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); END_STATE(); - case 3090: + case 3130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); + if (lookahead == ',') ADVANCE(3140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); END_STATE(); - case 3091: + case 3131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3095); + lookahead == 'i') ADVANCE(3135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); END_STATE(); - case 3092: + case 3132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'i') ADVANCE(3136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); - case 3093: + case 3133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3091); + lookahead == 'n') ADVANCE(3131); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); END_STATE(); - case 3094: + case 3134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'n') ADVANCE(3132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); - case 3095: + case 3135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3098); + lookahead == 't') ADVANCE(3138); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); END_STATE(); - case 3096: + case 3136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 't') ADVANCE(3137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); - case 3097: + case 3137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'y') ADVANCE(3140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); - case 3098: + case 3138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3099); + lookahead == 'y') ADVANCE(3139); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); END_STATE(); - case 3099: + case 3139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); END_STATE(); - case 3100: + case 3140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); - case 3101: + case 3141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3110); + if (lookahead == ',') ADVANCE(3150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3105); + lookahead == 'i') ADVANCE(3143); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); END_STATE(); - case 3102: + case 3142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3110); + if (lookahead == ',') ADVANCE(3150); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3105); + lookahead == 'n') ADVANCE(3141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); END_STATE(); - case 3103: + case 3143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3110); + if (lookahead == ',') ADVANCE(3150); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3105); + lookahead == 't') ADVANCE(3144); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); END_STATE(); - case 3104: + case 3144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3110); + if (lookahead == ',') ADVANCE(3150); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3105); + lookahead == 'y') ADVANCE(3145); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); END_STATE(); - case 3105: + case 3145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3105); + if (lookahead == ',') ADVANCE(3150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); END_STATE(); - case 3106: + case 3146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + lookahead == 'i') ADVANCE(3148); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); - case 3107: + case 3147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + lookahead == 'n') ADVANCE(3146); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); - case 3108: + case 3148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + lookahead == 't') ADVANCE(3149); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); - case 3109: + case 3149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + lookahead == 'y') ADVANCE(3150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); - case 3110: + case 3150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); - case 3111: + case 3151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if (lookahead == ',') ADVANCE(3113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3111); + if (lookahead == ',') ADVANCE(3153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3151); END_STATE(); - case 3112: + case 3152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3113); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3112); + lookahead == '@') ADVANCE(3153); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3152); END_STATE(); - case 3113: + case 3153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); END_STATE(); - case 3114: + case 3154: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 3115: + case 3155: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 3116: + case 3156: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(3114); + if (lookahead == '*') ADVANCE(3154); END_STATE(); - case 3117: + case 3157: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(3120); + if (lookahead == '/') ADVANCE(3160); END_STATE(); - case 3118: + case 3158: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3119: + case 3159: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 3120: + case 3160: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 3121: + case 3161: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3115); + if (lookahead == '+') ADVANCE(3155); END_STATE(); - case 3122: + case 3162: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 3123: + case 3163: ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 3124: + case 3164: ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 3125: + case 3165: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 3126: + case 3166: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 3127: + case 3167: ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 3128: + case 3168: ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 3129: + case 3169: ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 3130: + case 3170: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 3131: + case 3171: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 3132: + case 3172: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 3133: + case 3173: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 3134: + case 3174: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 3135: + case 3175: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 3136: + case 3176: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 3137: + case 3177: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 3138: + case 3178: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 3139: + case 3179: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 3140: + case 3180: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3141); + if (lookahead == '=') ADVANCE(3181); END_STATE(); - case 3141: + case 3181: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 3142: + case 3182: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 3143: + case 3183: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3144); + if (lookahead == '=') ADVANCE(3184); END_STATE(); - case 3144: + case 3184: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 3145: + case 3185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - ':', 4157, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + ':', 4199, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, '\t', 9, ' ', 9, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && @@ -44890,115 +47021,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3294); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); END_STATE(); - case 3146: + case 3186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ':', 4157, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ':', 4199, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, '\t', 9, ' ', 9, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3294); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); END_STATE(); - case 3147: + case 3187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ':', 4157, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ':', 4199, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, '\t', 9, ' ', 9, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && @@ -45006,56 +47137,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3294); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); END_STATE(); - case 3148: + case 3188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3607, + '\n', 3647, '\r', 16, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ':', 4157, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3193, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ':', 4199, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3233, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, '\t', 9, ' ', 9, - 0x0b, 489, - '\f', 489, + 0x0b, 516, + '\f', 516, ); if (lookahead != 0 && (lookahead < ' ' || '#' < lookahead) && @@ -45063,7189 +47194,7206 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3294); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); END_STATE(); - case 3149: + case 3189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3150: + case 3190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3151: + case 3191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3152: + case 3192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3153: + case 3193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3154: + case 3194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3155: + case 3195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3193, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3233, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3156: + case 3196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3195, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3235, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3157: + case 3197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3194, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3190, - 's', 3279, - 'x', 3256, - '|', 3611, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3234, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3230, + 's', 3319, + 'x', 3296, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3158: + case 3198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - ')', 3650, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3196, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3198, - 's', 3279, - 'x', 3256, - '|', 3611, + '!', 3246, + '#', 5586, + ')', 3689, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3236, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3238, + 's', 3319, + 'x', 3296, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3159: + case 3199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3160: + case 3200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3161: + case 3201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(38); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3162: + case 3202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(39); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3163: + case 3203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3164: + case 3204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(37); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3165: + case 3205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3166: + case 3206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3167: + case 3207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3193, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3233, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3168: + case 3208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3195, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - '}', 3762, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3235, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + '}', 3804, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3169: + case 3209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(38); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3170: + case 3210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3171: + case 3211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(38); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3172: + case 3212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(39); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3173: + case 3213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3193, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3233, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(38); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3174: + case 3214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3195, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3235, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(39); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3175: + case 3215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3194, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3190, - 's', 3279, - 'x', 3256, - '|', 3611, - '}', 3762, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3234, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3230, + 's', 3319, + 'x', 3296, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3176: + case 3216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3196, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3198, - 's', 3279, - 'x', 3256, - '|', 3611, - '}', 3762, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3236, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3238, + 's', 3319, + 'x', 3296, + '|', 3651, + '}', 3804, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3177: + case 3217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3194, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3190, - 's', 3279, - 'x', 3256, - '|', 3611, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3234, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3230, + 's', 3319, + 'x', 3296, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(38); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3178: + case 3218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3606, + '\n', 3646, '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3196, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3198, - 's', 3279, - 'x', 3256, - '|', 3611, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3236, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3238, + 's', 3319, + 'x', 3296, + '|', 3651, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(39); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3179: + case 3219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3892, - '/', 3117, - ':', 4157, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3215, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, - '\t', 379, - ' ', 379, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3936, + '/', 3157, + ':', 4199, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3255, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, + '\t', 405, + ' ', 405, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3180: + case 3220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3892, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3215, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3936, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3255, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3181: + case 3221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ':', 4157, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3215, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, - '\t', 379, - ' ', 379, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ':', 4199, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3255, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, + '\t', 405, + ' ', 405, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3182: + case 3222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ':', 4157, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3215, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, - '\t', 379, - ' ', 379, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ':', 4199, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3255, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, + '\t', 405, + ' ', 405, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3183: + case 3223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ':', 4157, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3217, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, - '\t', 379, - ' ', 379, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ':', 4199, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3257, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, + '\t', 405, + ' ', 405, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3184: + case 3224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3215, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3255, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3185: + case 3225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3215, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3255, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3186: + case 3226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3217, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3264, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - 0xb5, 3275, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3257, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3304, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + 0xb5, 3315, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3187: + case 3227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3252, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3264, - 's', 3279, - 'x', 3256, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3292, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3304, + 's', 3319, + 'x', 3296, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3188: + case 3228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '#') ADVANCE(5541); + if (lookahead == '#') ADVANCE(5586); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3189: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 3221, - '-', 3223, - '>', 4301, - 'I', 3293, - '_', 3223, - 'i', 3293, - 'n', 3233, - 'r', 3265, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3190: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3235); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'r') ADVANCE(3132); - if (lookahead == 'u') ADVANCE(3281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3191: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3255); - if (lookahead == '>') ADVANCE(4293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3192: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3236); - if (lookahead == '>') ADVANCE(4297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3193: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 3254, - '>', 4301, - 'I', 3293, - 'i', 3293, - 'n', 3233, - 'r', 3265, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3194: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3254); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'n') ADVANCE(3233); - if (lookahead == 'r') ADVANCE(3265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3195: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 3258, - '>', 1622, - 'I', 3293, - 'i', 3293, - 'n', 3233, - 'r', 3270, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3196: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3258); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'n') ADVANCE(3233); - if (lookahead == 'r') ADVANCE(3270); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3197: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 3222, - '-', 3223, - '>', 1622, - 'I', 3293, - '_', 3223, - 'i', 3293, - 'n', 3233, - 'r', 3270, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3198: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3237); - if (lookahead == '>') ADVANCE(1623); - if (lookahead == 'r') ADVANCE(3132); - if (lookahead == 'u') ADVANCE(3285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3199: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3262); - if (lookahead == '>') ADVANCE(1625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3200: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3238); - if (lookahead == '>') ADVANCE(1627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3201: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3202: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3203: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3204: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3205: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3206: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '=') ADVANCE(3138); - if (lookahead == '~') ADVANCE(3126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3207: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3208: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3209: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3210: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3211: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3212: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3213: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3214: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + lookahead == ' ') SKIP(424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); - case 3215: + case 3229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - 'I', 3293, - '_', 3223, - 'i', 3293, - 'n', 3233, - '+', 3223, - '-', 3223, - 'B', 4078, - 'b', 4078, + '+', 3261, + '-', 3263, + '>', 4343, + 'I', 3333, + '_', 3263, + 'i', 3333, + 'n', 3273, + 'r', 3305, + 'B', 4120, + 'b', 4120, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3216: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3293); - if (lookahead == '_') ADVANCE(3223); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3223); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3217: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3293); - if (lookahead == 'i') ADVANCE(3293); - if (lookahead == 'n') ADVANCE(3233); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3218: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3293); - if (lookahead == 'i') ADVANCE(3293); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3219: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3293); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3220: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3293); - if (lookahead == 'i') ADVANCE(3248); - if (lookahead == 'o') ADVANCE(3231); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3221: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3223); - if (lookahead == 'o') ADVANCE(3207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3222: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3223); - if (lookahead == 'o') ADVANCE(3211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3223: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3223); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3224: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3224); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3225: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3226: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3227: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3253); - if (lookahead == 'o') ADVANCE(3267); - if (lookahead == 's') ADVANCE(3239); - if (lookahead == 'x') ADVANCE(3259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3228: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); - END_STATE(); - case 3229: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3275); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'r') ADVANCE(3172); + if (lookahead == 'u') ADVANCE(3321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3119); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3295); + if (lookahead == '>') ADVANCE(4335); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3276); + if (lookahead == '>') ADVANCE(4339); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + ADVANCE_MAP( + '+', 3294, + '>', 4343, + 'I', 3333, + 'i', 3333, + 'n', 3273, + 'r', 3305, + 'B', 4120, + 'b', 4120, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3229); - if (lookahead == 't') ADVANCE(3226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3294); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'n') ADVANCE(3273); + if (lookahead == 'r') ADVANCE(3305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3208); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + ADVANCE_MAP( + '+', 3298, + '>', 1649, + 'I', 3333, + 'i', 3333, + 'n', 3273, + 'r', 3310, + 'B', 4120, + 'b', 4120, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3298); + if (lookahead == '>') ADVANCE(1649); + if (lookahead == 'n') ADVANCE(3273); + if (lookahead == 'r') ADVANCE(3310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + ADVANCE_MAP( + '+', 3262, + '-', 3263, + '>', 1649, + 'I', 3333, + '_', 3263, + 'i', 3333, + 'n', 3273, + 'r', 3310, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3274); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3277); + if (lookahead == '>') ADVANCE(1650); + if (lookahead == 'r') ADVANCE(3172); + if (lookahead == 'u') ADVANCE(3325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3302); + if (lookahead == '>') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '+') ADVANCE(3278); + if (lookahead == '>') ADVANCE(1654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '-') ADVANCE(3267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '-') ADVANCE(3283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '-') ADVANCE(3330); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '-') ADVANCE(3331); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '.') ADVANCE(3935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '=') ADVANCE(3178); + if (lookahead == '~') ADVANCE(3166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'l') ADVANCE(3123); - if (lookahead == 'r') ADVANCE(3124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(4363); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(4359); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(4351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(4355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '>') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + ADVANCE_MAP( + 'I', 3333, + '_', 3263, + 'i', 3333, + 'n', 3273, + '+', 3263, + '-', 3263, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'I') ADVANCE(3333); + if (lookahead == '_') ADVANCE(3263); + if (lookahead == 'i') ADVANCE(3268); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3263); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'I') ADVANCE(3333); + if (lookahead == 'i') ADVANCE(3333); + if (lookahead == 'n') ADVANCE(3273); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'I') ADVANCE(3333); + if (lookahead == 'i') ADVANCE(3333); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3268); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'I') ADVANCE(3333); + if (lookahead == 'i') ADVANCE(3268); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3280); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'I') ADVANCE(3333); + if (lookahead == 'i') ADVANCE(3288); + if (lookahead == 'o') ADVANCE(3271); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '_') ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3247); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '_') ADVANCE(3263); + if (lookahead == 'o') ADVANCE(3251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '_') ADVANCE(3263); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == '_') ADVANCE(3264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'a') ADVANCE(3332); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'a') ADVANCE(3309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'a') ADVANCE(3293); + if (lookahead == 'o') ADVANCE(3307); + if (lookahead == 's') ADVANCE(3279); + if (lookahead == 'x') ADVANCE(3299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'c') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'd') ADVANCE(3170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'd') ADVANCE(3159); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'd') ADVANCE(3167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'd') ADVANCE(3316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'e') ADVANCE(3269); + if (lookahead == 't') ADVANCE(3266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'e') ADVANCE(3248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'e') ADVANCE(3312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'e') ADVANCE(3252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'e') ADVANCE(3314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'h') ADVANCE(3287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'h') ADVANCE(3176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'h') ADVANCE(3175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'i') ADVANCE(3318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'i') ADVANCE(3291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'i') ADVANCE(3322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'i') ADVANCE(3324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'k') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'l') ADVANCE(3163); + if (lookahead == 'r') ADVANCE(3164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'n') ADVANCE(3270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(3244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'n') ADVANCE(3173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(3245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'n') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'n') ADVANCE(3273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'n') ADVANCE(3272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3906, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1699); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - '_', 3224, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1700); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3189, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3216, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3197, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3320); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3193, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3190, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '.', 3205, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'B', 4078, - 'E', 3219, - 'G', 3219, - 'K', 3219, - 'M', 3219, - 'P', 3219, - 'T', 3219, - 'a', 3249, - 'b', 4079, - 'd', 3225, - 'e', 3195, - 'g', 3218, - 'h', 3263, - 'i', 3250, - 'k', 3218, - 'm', 3220, - 'n', 3260, - 'o', 3198, - 'p', 3218, - 's', 3234, - 't', 3218, - 'u', 3275, - 'w', 3246, - 'x', 3256, - '|', 3611, - 0xb5, 3275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'o') ADVANCE(3329); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3194, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3190, - 's', 3279, - 'x', 3256, - '|', 3611, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'r') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1804); - ADVANCE_MAP( - '\n', 3606, - '\r', 17, - '!', 3206, - '#', 5541, - '*', 3116, - '+', 3121, - '-', 3122, - '/', 3117, - ';', 3610, - '<', 3140, - '=', 496, - '>', 3143, - 'a', 3249, - 'b', 3242, - 'e', 3196, - 'i', 3250, - 'm', 3257, - 'n', 3261, - 'o', 3198, - 's', 3279, - 'x', 3256, - '|', 3611, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3294); + if (lookahead == 'r') ADVANCE(3172); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3305: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3321); - if (lookahead == '-') ADVANCE(4589); - if (lookahead == 'I') ADVANCE(3366); - if (lookahead == '_') ADVANCE(3321); - if (lookahead == 'i') ADVANCE(3366); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3306: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3321); - if (lookahead == '-') ADVANCE(4589); - if (lookahead == 'I') ADVANCE(3366); - if (lookahead == '_') ADVANCE(3321); - if (lookahead == 'i') ADVANCE(3325); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3307: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3321); - if (lookahead == '-') ADVANCE(5113); - if (lookahead == 'I') ADVANCE(3366); - if (lookahead == '_') ADVANCE(3321); - if (lookahead == 'i') ADVANCE(3366); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3169); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3308: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3321); - if (lookahead == '-') ADVANCE(5113); - if (lookahead == 'I') ADVANCE(3366); - if (lookahead == '_') ADVANCE(3321); - if (lookahead == 'i') ADVANCE(3325); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3309: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3321); - if (lookahead == '-') ADVANCE(5113); - if (lookahead == '_') ADVANCE(3321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3310: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1241); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3311: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1598); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3312: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1323); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3313: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1313); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3314: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(717); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'r') ADVANCE(3313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3315: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3366); - if (lookahead == 'i') ADVANCE(3366); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3316: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3366); - if (lookahead == 'i') ADVANCE(3325); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 's') ADVANCE(3243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3317: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3366); - if (lookahead == 'i') ADVANCE(3343); - if (lookahead == 's') ADVANCE(4088); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 's') ADVANCE(3244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3318: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3319); - if (lookahead == 'b') ADVANCE(3375); - if (lookahead == 'o') ADVANCE(3377); - if (lookahead == 'x') ADVANCE(3378); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3319: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3320: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3320); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3321: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3322: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3323: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3324: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3325: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(4084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3326: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(4088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3327: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3334); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 't') ADVANCE(3317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3328: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(3323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3329: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3310); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'u') ADVANCE(3326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3330: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3983); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'w') ADVANCE(3284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3331: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'w') ADVANCE(3285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3332: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3326); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'y') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3333: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3334: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3803); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3335: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(3327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3336: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(4088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3951, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3337: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1747); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3338: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + '_', 3264, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1748); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3339: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3313); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3229, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3340: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3314); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3256, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3237, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3341: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3233, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3230, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3342: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(3349); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '.', 3245, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'B', 4120, + 'E', 3259, + 'G', 3259, + 'K', 3259, + 'M', 3259, + 'P', 3259, + 'T', 3259, + 'a', 3289, + 'b', 4121, + 'd', 3265, + 'e', 3235, + 'g', 3258, + 'h', 3303, + 'i', 3290, + 'k', 3258, + 'm', 3260, + 'n', 3300, + 'o', 3238, + 'p', 3258, + 's', 3274, + 't', 3258, + 'u', 3315, + 'w', 3286, + 'x', 3296, + '|', 3651, + 0xb5, 3315, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3343: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(4088); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3234, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3230, + 's', 3319, + 'x', 3296, + '|', 3651, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3344: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3725); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1848); + ADVANCE_MAP( + '\n', 3646, + '\r', 17, + '!', 3246, + '#', 5586, + '*', 3156, + '+', 3161, + '-', 3162, + '/', 3157, + ';', 3650, + '<', 3180, + '=', 523, + '>', 3183, + 'a', 3289, + 'b', 3282, + 'e', 3236, + 'i', 3290, + 'm', 3297, + 'n', 3301, + 'o', 3238, + 's', 3319, + 'x', 3296, + '|', 3651, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); END_STATE(); case 3345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3329); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '+') ADVANCE(3361); + if (lookahead == '-') ADVANCE(5378); + if (lookahead == 'I') ADVANCE(3406); + if (lookahead == '_') ADVANCE(3361); + if (lookahead == 'i') ADVANCE(3406); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3360); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '+') ADVANCE(3361); + if (lookahead == '-') ADVANCE(5378); + if (lookahead == 'I') ADVANCE(3406); + if (lookahead == '_') ADVANCE(3361); + if (lookahead == 'i') ADVANCE(3365); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '+') ADVANCE(3361); + if (lookahead == '-') ADVANCE(5378); + if (lookahead == '_') ADVANCE(3361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '+') ADVANCE(3361); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == 'I') ADVANCE(3406); + if (lookahead == '_') ADVANCE(3361); + if (lookahead == 'i') ADVANCE(3406); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3348); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '+') ADVANCE(3361); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == 'I') ADVANCE(3406); + if (lookahead == '_') ADVANCE(3361); + if (lookahead == 'i') ADVANCE(3365); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3347); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '-') ADVANCE(1268); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '-') ADVANCE(1625); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '-') ADVANCE(1350); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(4088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '-') ADVANCE(1340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '-') ADVANCE(745); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3362); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'I') ADVANCE(3406); + if (lookahead == 'i') ADVANCE(3406); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'I') ADVANCE(3406); + if (lookahead == 'i') ADVANCE(3365); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(4088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'I') ADVANCE(3406); + if (lookahead == 'i') ADVANCE(3383); + if (lookahead == 's') ADVANCE(4130); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3331); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '_') ADVANCE(3359); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3417); + if (lookahead == 'x') ADVANCE(3418); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3333); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '_') ADVANCE(3359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3376); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '_') ADVANCE(3360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3312); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '_') ADVANCE(3361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3330); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'a') ADVANCE(3404); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'a') ADVANCE(3396); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(4088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'a') ADVANCE(3377); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'b') ADVANCE(4126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4084); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'c') ADVANCE(4130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'd') ADVANCE(3374); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3373); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'e') ADVANCE(3378); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3372); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'e') ADVANCE(3350); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3379); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'e') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'e') ADVANCE(4034); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3368); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'e') ADVANCE(3366); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3374); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'e') ADVANCE(3682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3379); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'e') ADVANCE(3845); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3375); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'i') ADVANCE(3367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3376: ACCEPT_TOKEN(sym_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'k') ADVANCE(4130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3377: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3377); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'l') ADVANCE(3398); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3378: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3378); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'l') ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3379: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'l') ADVANCE(3353); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3380: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4474); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'r') ADVANCE(3485); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(3354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3381: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4467); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'u') ADVANCE(3509); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(3380); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3382: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4475); - if (lookahead == '>') ADVANCE(4293); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(3389); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3383: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4468); - if (lookahead == '>') ADVANCE(4297); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(4130); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3384: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'r') ADVANCE(3488); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(3767); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3385: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(803); - if (lookahead == '>') ADVANCE(1623); - if (lookahead == 'u') ADVANCE(3511); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(3369); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3386: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(1625); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(3400); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3410); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3387: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(861); - if (lookahead == '>') ADVANCE(1627); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(3391); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3388: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3560); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(3392); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3389: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3426); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(3388); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3390: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3428); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3387); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3391: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3431); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3702); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3392: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3433); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3401); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3393: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3562); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(4130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3394: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3566); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3390); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3395: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3568); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3402); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3396: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(1660); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(3351); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3397: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(4518); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(4130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3398: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(3533); - if (lookahead == 'f') ADVANCE(3573); - if (lookahead == 'n') ADVANCE(3534); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(3371); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3399: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(3563); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(3373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3400: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(3564); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(3416); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3401: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (lookahead == 'b') ADVANCE(4076); - if (lookahead == 'o') ADVANCE(4092); - if (lookahead == 'x') ADVANCE(4097); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(3352); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3402: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (lookahead == 'b') ADVANCE(4076); - if (lookahead == 'o') ADVANCE(4092); - if (lookahead == 'x') ADVANCE(4097); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(3370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3403: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(3381); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3404: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(4130); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3405: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3410); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3406: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4126); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3407: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3409); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3408: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3413); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3409: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3412); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3410: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3457); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3419); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3411: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3456); - if (lookahead == 'o') ADVANCE(3420); - if (lookahead == 'u') ADVANCE(3512); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3407); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3412: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3455); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3408); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3413: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3528); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3414); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3414: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3506); - if (lookahead == 'o') ADVANCE(3468); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3419); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3415: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3502); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3415); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3416: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3465); - if (lookahead == 'o') ADVANCE(3494); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3417: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3448); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3417); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3418: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3432); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3418); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3419: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3449); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3522); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '+') ADVANCE(4516); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'r') ADVANCE(3525); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3427); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '+') ADVANCE(4509); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'u') ADVANCE(3549); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3981); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '+') ADVANCE(4517); + if (lookahead == '>') ADVANCE(4335); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3989); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '+') ADVANCE(4510); + if (lookahead == '>') ADVANCE(4339); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3445); - if (lookahead == 'o') ADVANCE(3572); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '+') ADVANCE(1258); + if (lookahead == '>') ADVANCE(1649); + if (lookahead == 'r') ADVANCE(3528); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3446); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '+') ADVANCE(831); + if (lookahead == '>') ADVANCE(1650); + if (lookahead == 'u') ADVANCE(3551); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3469); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if (lookahead == '+') ADVANCE(1304); + if (lookahead == '>') ADVANCE(1652); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3390); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '+') ADVANCE(889); + if (lookahead == '>') ADVANCE(1654); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3471); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == '-') ADVANCE(3600); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3412); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '-') ADVANCE(3466); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3507); - if (lookahead == 'o') ADVANCE(3477); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '-') ADVANCE(3468); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3472); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == '-') ADVANCE(3471); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); case 3432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3392); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '-') ADVANCE(3473); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3473); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (lookahead == '-') ADVANCE(3602); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3493); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '-') ADVANCE(3606); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3490); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '-') ADVANCE(3608); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3580); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == ':') ADVANCE(1687); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3582); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == ':') ADVANCE(4560); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3585); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'N') ADVANCE(3573); + if (lookahead == 'f') ADVANCE(3613); + if (lookahead == 'n') ADVANCE(3574); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3587); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'T') ADVANCE(3603); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3593); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'T') ADVANCE(3604); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3596); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (lookahead == 'b') ADVANCE(4117); + if (lookahead == 'o') ADVANCE(4133); + if (lookahead == 'x') ADVANCE(4138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3598); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (lookahead == 'b') ADVANCE(4117); + if (lookahead == 'o') ADVANCE(4133); + if (lookahead == 'x') ADVANCE(4138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3603); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3496); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3428); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(3575); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(3453); - if (lookahead == 't') ADVANCE(3519); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3454); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3435); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3590); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3595); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '_') ADVANCE(3443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3450: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3421); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'a') ADVANCE(3497); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3415); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'a') ADVANCE(3496); + if (lookahead == 'o') ADVANCE(3460); + if (lookahead == 'u') ADVANCE(3552); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3476); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'a') ADVANCE(3495); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3500); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'a') ADVANCE(3568); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3466); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'a') ADVANCE(3546); + if (lookahead == 'o') ADVANCE(3508); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3589); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'a') ADVANCE(3542); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3456: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3438); - if (lookahead == 't') ADVANCE(3419); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'a') ADVANCE(3505); + if (lookahead == 'o') ADVANCE(3534); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3499); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'c') ADVANCE(3488); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3458: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3973); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'c') ADVANCE(3472); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3451); - if (lookahead == 's') ADVANCE(3571); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'c') ADVANCE(3489); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3460: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3458); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'd') ADVANCE(3562); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3461: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3413); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'd') ADVANCE(3467); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3462: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3463); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(4024); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3463: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3586); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(4032); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3464: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3504); - if (lookahead == 'r') ADVANCE(3489); - if (lookahead == 'x') ADVANCE(3483); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3485); + if (lookahead == 'o') ADVANCE(3612); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3465: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3505); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3486); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3466: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3441); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3509); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3467: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3442); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3430); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3468: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3503); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3511); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3524); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if (lookahead == 'e') ADVANCE(3452); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3470: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3723); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3547); + if (lookahead == 'o') ADVANCE(3517); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3471: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3525); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == 'e') ADVANCE(3512); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); case 3472: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3527); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'e') ADVANCE(3432); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3473: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3526); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (lookahead == 'e') ADVANCE(3513); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3474: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3597); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3533); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3475: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3599); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3530); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3476: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3521); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3620); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3477: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3482); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3622); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3478: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3517); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3625); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3479: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3508); - if (lookahead == 'u') ADVANCE(3460); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3541); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3627); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3480: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3492); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3633); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3481: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3495); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3636); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3482: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3584); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3638); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3483: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3480); - if (lookahead == 't') ADVANCE(3435); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3643); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3484: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3515); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3536); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3485: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3382); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'f') ADVANCE(3615); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3486: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3520); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'g') ADVANCE(3493); + if (lookahead == 't') ADVANCE(3559); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3487: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3418); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'h') ADVANCE(3494); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3488: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3386); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'h') ADVANCE(3630); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3489: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3481); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'h') ADVANCE(3635); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3490: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3474); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'i') ADVANCE(3461); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3491: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3429); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'i') ADVANCE(3455); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3492: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3510); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'i') ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3493: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3461); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'i') ADVANCE(3540); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3494: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3576); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'i') ADVANCE(3506); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3495: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3592); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'k') ADVANCE(3629); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3496: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3604); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'k') ADVANCE(3478); + if (lookahead == 't') ADVANCE(3459); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3497: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3475); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3539); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3498: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3815); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(4016); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3499: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3423); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3491); + if (lookahead == 's') ADVANCE(3611); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3500: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3514); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3498); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3501: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3436); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3453); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3502: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3588); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3503); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3503: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3513); - if (lookahead == 't') ADVANCE(3452); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3626); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3504: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3437); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3544); + if (lookahead == 'r') ADVANCE(3529); + if (lookahead == 'x') ADVANCE(3523); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3505: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3440); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3545); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3506: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3417); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3481); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3507: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3389); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'l') ADVANCE(3482); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3508: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3555); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3543); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3509: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3383); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3564); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3510: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3391); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3765); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3511: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3387); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3565); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3512: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3578); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3567); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); case 3513: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3591); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3566); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3514: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3444); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3637); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3515: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3422); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3639); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3516: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3460); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3541); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'n') ADVANCE(3561); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3517: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3487); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'o') ADVANCE(3522); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3518: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3462); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3546); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'o') ADVANCE(3557); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3519: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3497); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'o') ADVANCE(3548); + if (lookahead == 'u') ADVANCE(3500); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3581); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3520: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3439); - if (lookahead == 'y') ADVANCE(3579); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'o') ADVANCE(3532); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3521: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3443); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'o') ADVANCE(3535); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3522: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3467); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'p') ADVANCE(3624); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3523: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3434); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'p') ADVANCE(3520); + if (lookahead == 't') ADVANCE(3475); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3524: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3583); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if (lookahead == 'r') ADVANCE(3555); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3525: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3594); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == 'r') ADVANCE(3422); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3526: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3602); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (lookahead == 'r') ADVANCE(3560); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3527: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3605); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (lookahead == 'r') ADVANCE(3458); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3528: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(3601); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'r') ADVANCE(3426); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3529: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(3570); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == 'r') ADVANCE(3521); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3530: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3541); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'r') ADVANCE(3514); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3531: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3546); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'r') ADVANCE(3469); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3532: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3540); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'r') ADVANCE(3550); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3533: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3536); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'r') ADVANCE(3501); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3534: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3538); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 'r') ADVANCE(3616); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3535: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3548); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'r') ADVANCE(3632); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3536: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3545); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 'r') ADVANCE(3644); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3537: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3549); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 'r') ADVANCE(3515); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3538: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3547); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 's') ADVANCE(3857); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3539: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3550); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 's') ADVANCE(3463); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3540: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3544); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 's') ADVANCE(3554); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3541: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3570); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 's') ADVANCE(3476); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3542: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3532); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 's') ADVANCE(3628); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3543: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3533); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 's') ADVANCE(3553); + if (lookahead == 't') ADVANCE(3492); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3544: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3535); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 's') ADVANCE(3477); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3545: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3537); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 's') ADVANCE(3480); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3546: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3574); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 't') ADVANCE(3457); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3547: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3539); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 't') ADVANCE(3429); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3548: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3551); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 't') ADVANCE(3595); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3549: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3553); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 't') ADVANCE(3423); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3550: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3552); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 't') ADVANCE(3431); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3551: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3570); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 't') ADVANCE(3427); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3552: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3577); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 't') ADVANCE(3618); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3553: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3581); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 't') ADVANCE(3631); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3554: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3554); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 't') ADVANCE(3484); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3555: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3462); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3556: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3556); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3500); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3581); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3557: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3527); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3558: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3502); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3586); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3559: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3537); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3560: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3557); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3479); + if (lookahead == 'y') ADVANCE(3619); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3561: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3396); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3483); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3562: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3558); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'u') ADVANCE(3507); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3563: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3559); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'v') ADVANCE(3474); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3564: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3561); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'v') ADVANCE(3623); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3565: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'v') ADVANCE(3634); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3566: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3565); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'v') ADVANCE(3642); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); case 3567: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'v') ADVANCE(3645); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); END_STATE(); case 3568: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3567); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'y') ADVANCE(3641); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3569: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3569); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == '-' || + lookahead == '?') ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3569); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); case 3570: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3581); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3571: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3586); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3572: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3005); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3580); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3573: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3008); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3576); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3574: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3113); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3578); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 3575: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3588); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3576: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3585); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); case 3577: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3589); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); case 3578: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3587); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 3579: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3014); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3590); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 3580: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3584); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3581: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3582: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3572); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3583: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3573); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3584: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3575); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3585: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3577); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); case 3586: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3085); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3614); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3587: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3579); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 3588: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2925); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3591); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3589: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3023); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3593); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); case 3590: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3017); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3592); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 3591: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2954); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3592: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3002); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3617); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); case 3593: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3621); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); case 3594: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3594); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3595: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3020); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3596: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2999); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3596); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3597: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3433); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3598: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3598); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3439); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3599: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3437); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3600: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3597); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3601: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3601); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3436); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3602: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3598); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3603: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3603); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3026); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3599); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3604: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3601); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3605: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3606: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3605); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); case 3607: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + END_STATE(); + case 3608: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3607); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + END_STATE(); + case 3609: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3609); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + END_STATE(); + case 3610: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + END_STATE(); + case 3611: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); + END_STATE(); + case 3612: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); + END_STATE(); + case 3613: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + END_STATE(); + case 3614: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); + END_STATE(); + case 3615: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + END_STATE(); + case 3616: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + END_STATE(); + case 3617: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + END_STATE(); + case 3618: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); + END_STATE(); + case 3619: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + END_STATE(); + case 3620: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + END_STATE(); + case 3621: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + END_STATE(); + case 3622: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + END_STATE(); + case 3623: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + END_STATE(); + case 3624: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + END_STATE(); + case 3625: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); + END_STATE(); + case 3626: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); + END_STATE(); + case 3627: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); + END_STATE(); + case 3628: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); + END_STATE(); + case 3629: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3629); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + END_STATE(); + case 3630: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); + END_STATE(); + case 3631: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); + END_STATE(); + case 3632: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + END_STATE(); + case 3633: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); + END_STATE(); + case 3634: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + END_STATE(); + case 3635: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + END_STATE(); + case 3636: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + END_STATE(); + case 3637: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); + END_STATE(); + case 3638: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); + END_STATE(); + case 3639: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3639); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + END_STATE(); + case 3640: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + END_STATE(); + case 3641: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); + END_STATE(); + case 3642: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + END_STATE(); + case 3643: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); + END_STATE(); + case 3644: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + END_STATE(); + case 3645: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + END_STATE(); + case 3646: + ACCEPT_TOKEN(sym__newline); + END_STATE(); + case 3647: ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(4157); + if (lookahead == ':') ADVANCE(4199); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(489); + lookahead == ' ') ADVANCE(516); END_STATE(); - case 3608: + case 3648: ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(3607); + if (lookahead == '\n') ADVANCE(3647); if (lookahead == '\r') ADVANCE(16); - if (lookahead == ':') ADVANCE(4157); + if (lookahead == ':') ADVANCE(4199); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3608); + lookahead == ' ') ADVANCE(3648); if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(489); + lookahead == '\f') ADVANCE(516); END_STATE(); - case 3609: + case 3649: ACCEPT_TOKEN(sym__space); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3609); + lookahead == ' ') ADVANCE(3649); END_STATE(); - case 3610: + case 3650: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 3611: + case 3651: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 3612: + case 3652: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 3613: + case 3653: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 3614: + case 3654: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 3615: + case 3655: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 3616: + case 3656: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 3617: + case 3657: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 3618: + case 3658: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 3619: + case 3659: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 3620: + case 3660: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 3621: + case 3661: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2922); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5377); + if (lookahead == ',') ADVANCE(2962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); END_STATE(); - case 3622: + case 3662: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2920); + if (lookahead == ',') ADVANCE(2962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); END_STATE(); - case 3623: + case 3663: ACCEPT_TOKEN(anon_sym_def); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2922); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2921); + lookahead == '@') ADVANCE(2962); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); END_STATE(); - case 3624: + case 3664: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); END_STATE(); - case 3625: + case 3665: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); + if (lookahead == ',') ADVANCE(2970); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5465); END_STATE(); - case 3626: + case 3666: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2929); + if (lookahead == ',') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); END_STATE(); - case 3627: + case 3667: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 3628: + case 3668: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 3629: + case 3669: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2933); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5413); + if (lookahead == ',') ADVANCE(2973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); END_STATE(); - case 3630: + case 3670: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ',') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); END_STATE(); - case 3631: + case 3671: ACCEPT_TOKEN(anon_sym_extern); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2933); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2932); + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); END_STATE(); - case 3632: + case 3672: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); - case 3633: + case 3673: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 3634: + case 3674: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5414); + if (lookahead == ',') ADVANCE(2976); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); - case 3635: + case 3675: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + if (lookahead == ',') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); END_STATE(); - case 3636: + case 3676: ACCEPT_TOKEN(anon_sym_module); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2936); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2935); + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); END_STATE(); - case 3637: + case 3677: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); - case 3638: + case 3678: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 3639: + case 3679: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2928); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5385); + if (lookahead == ',') ADVANCE(2968); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5427); END_STATE(); - case 3640: + case 3680: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2926); + if (lookahead == ',') ADVANCE(2968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); END_STATE(); - case 3641: + case 3681: ACCEPT_TOKEN(anon_sym_use); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2928); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2927); + lookahead == '@') ADVANCE(2968); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2967); END_STATE(); - case 3642: + case 3682: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3643: + case 3683: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2928); - END_STATE(); - case 3644: - ACCEPT_TOKEN(anon_sym_COLON); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); END_STATE(); - case 3645: + case 3684: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); END_STATE(); - case 3646: + case 3685: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 3647: + case 3686: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 3648: + case 3687: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 3649: + case 3688: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 3650: + case 3689: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 3651: + case 3690: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 3652: + case 3691: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 3653: + case 3692: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4146); - if (lookahead == '\'') ADVANCE(4142); + if (lookahead == '"') ADVANCE(4188); + if (lookahead == '\'') ADVANCE(4184); END_STATE(); - case 3654: + case 3693: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4146); - if (lookahead == '\'') ADVANCE(4142); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '"') ADVANCE(4188); + if (lookahead == '\'') ADVANCE(4184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3655: + case 3694: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4147); - if (lookahead == '\'') ADVANCE(4143); + if (lookahead == '"') ADVANCE(4189); + if (lookahead == '\'') ADVANCE(4185); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 3656: + case 3695: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 3657: + case 3696: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 3658: + case 3697: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3659: + case 3698: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 3660: + case 3699: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ' ') ADVANCE(1145); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3002); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3001); + if (lookahead == ',') ADVANCE(3042); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5447); END_STATE(); - case 3661: + case 3700: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(3002); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5405); + if (lookahead == ',') ADVANCE(3042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); - case 3662: + case 3701: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(3002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3000); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3042); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3041); END_STATE(); - case 3663: + case 3702: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3664: + case 3703: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); END_STATE(); - case 3665: + case 3704: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 3666: + case 3705: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 3667: + case 3706: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 3668: + case 3707: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 3669: + case 3708: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 3670: + case 3709: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(3846); + if (lookahead == '=') ADVANCE(3888); END_STATE(); - case 3671: + case 3710: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(3847); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '=') ADVANCE(3889); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3672: + case 3711: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 3673: + case 3712: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 3674: + case 3713: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 3675: + case 3714: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 3676: + case 3715: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 3677: + case 3716: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3678: + case 3717: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 3679: + case 3718: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3680: + case 3719: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 3681: + case 3720: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3676); + if (lookahead == '-') ADVANCE(3715); END_STATE(); - case 3682: + case 3721: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(473); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(499); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + lookahead == 'i') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3683: + case 3722: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(513); - if (lookahead == '_') ADVANCE(478); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(540); + if (lookahead == '_') ADVANCE(503); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + lookahead == 'i') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3684: + case 3723: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(513); - if (lookahead == '_') ADVANCE(478); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(540); + if (lookahead == '_') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3685: + case 3724: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(4579); - if (lookahead == '_') ADVANCE(4552); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(4623); + if (lookahead == '_') ADVANCE(4596); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4696); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + lookahead == 'i') ADVANCE(4741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3686: + case 3725: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(5104); - if (lookahead == '_') ADVANCE(5082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(4623); + if (lookahead == '_') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3687: + case 3726: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4553); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(5373); + if (lookahead == '_') ADVANCE(5363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + END_STATE(); + case 3727: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(4628); + if (lookahead == '_') ADVANCE(4597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4696); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + lookahead == 'i') ADVANCE(4741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3688: + case 3728: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3677); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(4361); + if (lookahead == '-') ADVANCE(3718); + if (lookahead == '.') ADVANCE(4817); + if (lookahead == '_') ADVANCE(4793); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'i') ADVANCE(4991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3689: + case 3729: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3677); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '-') ADVANCE(3718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3690: + case 3730: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3679); - if (lookahead == '.') ADVANCE(4772); - if (lookahead == '_') ADVANCE(4748); + if (lookahead == '-') ADVANCE(3716); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(4403); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == 'i') ADVANCE(4440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3691: + case 3731: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3679); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '-') ADVANCE(3716); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3692: + case 3732: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3678); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '-') ADVANCE(3717); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 3693: + case 3733: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '=') ADVANCE(1838); - if (lookahead == '_') ADVANCE(473); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '=') ADVANCE(1882); + if (lookahead == '_') ADVANCE(499); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1641); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + lookahead == 'i') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3694: + case 3734: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(473); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(499); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1641); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + lookahead == 'i') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3695: + case 3735: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(473); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(499); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + lookahead == 'i') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3696: + case 3736: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(4361); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(4403); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'i') ADVANCE(4440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3697: + case 3737: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5331); - if (lookahead == '_') ADVANCE(5323); + if (lookahead == '.') ADVANCE(5476); + if (lookahead == '_') ADVANCE(5467); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + lookahead == 'i') ADVANCE(5572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5476); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 3698: + case 3738: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5432); - if (lookahead == '_') ADVANCE(5425); + if (lookahead == '.') ADVANCE(4817); + if (lookahead == '_') ADVANCE(4793); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + lookahead == 'i') ADVANCE(4991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3699: + case 3739: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(4772); - if (lookahead == '_') ADVANCE(4748); + if (lookahead == '.') ADVANCE(540); + if (lookahead == '_') ADVANCE(503); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == 'i') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3700: + case 3740: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(540); + if (lookahead == '_') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + END_STATE(); + case 3741: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(4623); + if (lookahead == '_') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + END_STATE(); + case 3742: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(513); - if (lookahead == '_') ADVANCE(478); + if (lookahead == '.') ADVANCE(5372); + if (lookahead == '_') ADVANCE(5361); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1641); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + lookahead == 'i') ADVANCE(5392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3701: + case 3743: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5332); - if (lookahead == '_') ADVANCE(5325); + if (lookahead == '.') ADVANCE(5373); + if (lookahead == '_') ADVANCE(5363); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + lookahead == 'i') ADVANCE(5392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3702: + case 3744: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4553); + if (lookahead == '.') ADVANCE(4628); + if (lookahead == '_') ADVANCE(4597); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4696); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + lookahead == 'i') ADVANCE(4741); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3703: + case 3745: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(1838); + if (lookahead == '=') ADVANCE(1882); END_STATE(); - case 3704: + case 3746: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3705: + case 3747: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 3706: + case 3748: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(3023); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5402); + if (lookahead == ',') ADVANCE(3063); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5444); END_STATE(); - case 3707: + case 3749: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(3023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); + if (lookahead == ',') ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3061); END_STATE(); - case 3708: + case 3750: ACCEPT_TOKEN(anon_sym_break); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3023); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3022); + lookahead == '@') ADVANCE(3063); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3062); END_STATE(); - case 3709: + case 3751: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); END_STATE(); - case 3710: + case 3752: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(3026); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5421); + if (lookahead == ',') ADVANCE(3066); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5463); END_STATE(); - case 3711: + case 3753: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(3026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if (lookahead == ',') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); - case 3712: + case 3754: ACCEPT_TOKEN(anon_sym_continue); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3026); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3025); + lookahead == '@') ADVANCE(3066); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3065); END_STATE(); - case 3713: + case 3755: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); END_STATE(); - case 3714: + case 3756: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2993); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5378); + if (lookahead == ',') ADVANCE(3033); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5420); END_STATE(); - case 3715: + case 3757: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); + if (lookahead == ',') ADVANCE(3033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); END_STATE(); - case 3716: + case 3758: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == 'm') ADVANCE(2988); + if (lookahead == 'm') ADVANCE(3028); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); + lookahead == '@') ADVANCE(3033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); END_STATE(); - case 3717: + case 3759: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); END_STATE(); - case 3718: + case 3760: ACCEPT_TOKEN(anon_sym_in2); END_STATE(); - case 3719: + case 3761: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3060); + if (lookahead == ',') ADVANCE(3100); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + lookahead == 'f') ADVANCE(3077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); END_STATE(); - case 3720: + case 3762: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3060); + if (lookahead == ',') ADVANCE(3100); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5364); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + lookahead == 'f') ADVANCE(5406); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); - case 3721: + case 3763: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == 'p') ADVANCE(3047); - if (lookahead == 't') ADVANCE(3043); + if (lookahead == 'p') ADVANCE(3087); + if (lookahead == 't') ADVANCE(3083); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3049); + lookahead == 'f') ADVANCE(3089); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(3100); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); END_STATE(); - case 3722: + case 3764: ACCEPT_TOKEN(anon_sym_in2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + lookahead == 'f') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); END_STATE(); - case 3723: + case 3765: ACCEPT_TOKEN(anon_sym_in2); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 3724: + case 3766: ACCEPT_TOKEN(anon_sym_in2); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3725: + case 3767: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3726: + case 3768: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3727: + case 3769: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2996); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5397); + if (lookahead == ',') ADVANCE(3036); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5439); END_STATE(); - case 3728: + case 3770: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); + if (lookahead == ',') ADVANCE(3036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3034); END_STATE(); - case 3729: + case 3771: ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2996); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2995); + lookahead == '@') ADVANCE(3036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3035); END_STATE(); - case 3730: + case 3772: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); END_STATE(); - case 3731: + case 3773: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 3732: + case 3774: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5398); + if (lookahead == ',') ADVANCE(3103); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5440); END_STATE(); - case 3733: + case 3775: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3061); + if (lookahead == ',') ADVANCE(3103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3101); END_STATE(); - case 3734: + case 3776: ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3063); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3062); + lookahead == '@') ADVANCE(3103); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3102); END_STATE(); - case 3735: + case 3777: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); END_STATE(); - case 3736: + case 3778: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2999); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5408); + if (lookahead == ',') ADVANCE(3039); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5450); END_STATE(); - case 3737: + case 3779: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); + if (lookahead == ',') ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); - case 3738: + case 3780: ACCEPT_TOKEN(anon_sym_while); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2998); + lookahead == '@') ADVANCE(3039); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); END_STATE(); - case 3739: + case 3781: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3740: + case 3782: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 3741: + case 3783: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(3005); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5362); + if (lookahead == ',') ADVANCE(3045); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5404); END_STATE(); - case 3742: + case 3784: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3003); + if (lookahead == ',') ADVANCE(3045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); END_STATE(); - case 3743: + case 3785: ACCEPT_TOKEN(anon_sym_do); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3005); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3004); + lookahead == '@') ADVANCE(3045); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3044); END_STATE(); - case 3744: + case 3786: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); END_STATE(); - case 3745: + case 3787: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 3746: + case 3788: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(3008); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); + if (lookahead == ',') ADVANCE(3048); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5405); END_STATE(); - case 3747: + case 3789: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(3008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == ',') ADVANCE(3048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); END_STATE(); - case 3748: + case 3790: ACCEPT_TOKEN(anon_sym_if); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3008); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3007); + lookahead == '@') ADVANCE(3048); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3047); END_STATE(); - case 3749: + case 3791: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); END_STATE(); - case 3750: + case 3792: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3751: + case 3793: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 3752: + case 3794: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(3011); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5392); + if (lookahead == ',') ADVANCE(3051); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5434); END_STATE(); - case 3753: + case 3795: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(3011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3009); + if (lookahead == ',') ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); END_STATE(); - case 3754: + case 3796: ACCEPT_TOKEN(anon_sym_else); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3011); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3010); + lookahead == '@') ADVANCE(3051); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3050); END_STATE(); - case 3755: + case 3797: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); END_STATE(); - case 3756: + case 3798: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 3757: + case 3799: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(3020); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5407); + if (lookahead == ',') ADVANCE(3060); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5449); END_STATE(); - case 3758: + case 3800: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(3020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == ',') ADVANCE(3060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3058); END_STATE(); - case 3759: + case 3801: ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3019); + lookahead == '@') ADVANCE(3060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); END_STATE(); - case 3760: + case 3802: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); END_STATE(); - case 3761: + case 3803: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 3762: + case 3804: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 3763: + case 3805: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 3764: + case 3806: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3765: + case 3807: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3319); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '_') ADVANCE(3359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3766: + case 3808: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4451); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '_') ADVANCE(4493); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 3767: + case 3809: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1933); - if (lookahead == '<') ADVANCE(3926); - if (lookahead == '=') ADVANCE(3923); + if (lookahead == '.') ADVANCE(1975); + if (lookahead == '<') ADVANCE(3969); + if (lookahead == '=') ADVANCE(3966); END_STATE(); - case 3768: + case 3810: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4423); - if (lookahead == '<') ADVANCE(3926); - if (lookahead == '=') ADVANCE(3923); + if (lookahead == '.') ADVANCE(4465); + if (lookahead == '<') ADVANCE(3969); + if (lookahead == '=') ADVANCE(3966); END_STATE(); - case 3769: + case 3811: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4978); - if (lookahead == '<') ADVANCE(3926); - if (lookahead == '=') ADVANCE(3923); + if (lookahead == '.') ADVANCE(5023); + if (lookahead == '<') ADVANCE(3969); + if (lookahead == '=') ADVANCE(3966); END_STATE(); - case 3770: + case 3812: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3926); - if (lookahead == '=') ADVANCE(3923); + if (lookahead == '<') ADVANCE(3969); + if (lookahead == '=') ADVANCE(3966); END_STATE(); - case 3771: + case 3813: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3928); - if (lookahead == '=') ADVANCE(3925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '<') ADVANCE(3971); + if (lookahead == '=') ADVANCE(3968); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3772: + case 3814: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3927); - if (lookahead == '=') ADVANCE(3924); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '<') ADVANCE(3970); + if (lookahead == '=') ADVANCE(3967); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 3773: + case 3815: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 3774: + case 3816: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 3775: + case 3817: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(3014); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5384); + if (lookahead == ',') ADVANCE(3054); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5426); END_STATE(); - case 3776: + case 3818: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(3014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3012); + if (lookahead == ',') ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); END_STATE(); - case 3777: + case 3819: ACCEPT_TOKEN(anon_sym_try); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3014); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3013); + lookahead == '@') ADVANCE(3054); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3053); END_STATE(); - case 3778: + case 3820: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); - case 3779: + case 3821: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 3780: + case 3822: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(3017); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5403); + if (lookahead == ',') ADVANCE(3057); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5445); END_STATE(); - case 3781: + case 3823: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3015); + if (lookahead == ',') ADVANCE(3057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); END_STATE(); - case 3782: + case 3824: ACCEPT_TOKEN(anon_sym_catch); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3017); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3016); + lookahead == '@') ADVANCE(3057); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3056); END_STATE(); - case 3783: + case 3825: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); END_STATE(); - case 3784: + case 3826: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(3029); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5415); + if (lookahead == ',') ADVANCE(3069); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5457); END_STATE(); - case 3785: + case 3827: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); + if (lookahead == ',') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); END_STATE(); - case 3786: + case 3828: ACCEPT_TOKEN(anon_sym_return); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3028); + lookahead == '@') ADVANCE(3069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); END_STATE(); - case 3787: + case 3829: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); - case 3788: + case 3830: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == '-') ADVANCE(2967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == '-') ADVANCE(3007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); END_STATE(); - case 3789: + case 3831: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == '-') ADVANCE(5416); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == '-') ADVANCE(5458); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 3790: + case 3832: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2971); + if (lookahead == '-') ADVANCE(3011); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2978); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2977); + lookahead == '@') ADVANCE(3018); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3017); END_STATE(); - case 3791: + case 3833: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if (lookahead == '-') ADVANCE(3011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); - case 3792: + case 3834: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); + if (lookahead == ',') ADVANCE(3018); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 3793: + case 3835: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + if (lookahead == ',') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); END_STATE(); - case 3794: + case 3836: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); END_STATE(); - case 3795: + case 3837: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2984); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5422); + if (lookahead == ',') ADVANCE(3024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5464); END_STATE(); - case 3796: + case 3838: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); + if (lookahead == ',') ADVANCE(3024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3022); END_STATE(); - case 3797: + case 3839: ACCEPT_TOKEN(anon_sym_register); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2984); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2983); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3798: + case 3840: ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3799: + case 3841: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == '-') ADVANCE(2955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == '-') ADVANCE(2995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); - case 3800: + case 3842: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == '-') ADVANCE(5393); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == '-') ADVANCE(5435); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); END_STATE(); - case 3801: + case 3843: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2959); + if (lookahead == '-') ADVANCE(2999); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2966); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2965); + lookahead == '@') ADVANCE(3006); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3005); END_STATE(); - case 3802: + case 3844: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == '-') ADVANCE(2999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3803: + case 3845: ACCEPT_TOKEN(anon_sym_hide); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3804: + case 3846: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + if (lookahead == ',') ADVANCE(3006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); END_STATE(); - case 3805: + case 3847: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + if (lookahead == ',') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); END_STATE(); - case 3806: + case 3848: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3807: + case 3849: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2981); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5420); + if (lookahead == ',') ADVANCE(3021); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5462); END_STATE(); - case 3808: + case 3850: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); + if (lookahead == ',') ADVANCE(3021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); END_STATE(); - case 3809: + case 3851: ACCEPT_TOKEN(anon_sym_overlay); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2980); + lookahead == '@') ADVANCE(3021); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3020); END_STATE(); - case 3810: + case 3852: ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); END_STATE(); - case 3811: + case 3853: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 3812: + case 3854: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(3032); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5361); + if (lookahead == ',') ADVANCE(3072); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5403); END_STATE(); - case 3813: + case 3855: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3030); + if (lookahead == ',') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); END_STATE(); - case 3814: + case 3856: ACCEPT_TOKEN(anon_sym_as); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3031); + lookahead == '@') ADVANCE(3072); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3071); END_STATE(); - case 3815: + case 3857: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 3816: + case 3858: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3817: + case 3859: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); END_STATE(); - case 3818: + case 3860: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3819: + case 3861: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 3820: + case 3862: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3854); + if (lookahead == '*') ADVANCE(3896); END_STATE(); - case 3821: + case 3863: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3854); - if (lookahead == '=') ADVANCE(1839); + if (lookahead == '*') ADVANCE(3896); + if (lookahead == '=') ADVANCE(1883); END_STATE(); - case 3822: + case 3864: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3855); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '*') ADVANCE(3897); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3823: + case 3865: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 3824: + case 3866: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 3825: + case 3867: ACCEPT_TOKEN(anon_sym_and2); END_STATE(); - case 3826: + case 3868: ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3827: + case 3869: ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); - case 3828: + case 3870: ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3829: + case 3871: ACCEPT_TOKEN(anon_sym_or2); END_STATE(); - case 3830: + case 3872: ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3831: + case 3873: ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); - case 3832: + case 3874: ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3833: + case 3875: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); - case 3834: + case 3876: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3835: + case 3877: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); - case 3836: + case 3878: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3837: + case 3879: ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); - case 3838: + case 3880: ACCEPT_TOKEN(anon_sym_EQ_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3839: + case 3881: ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); - case 3840: + case 3882: ACCEPT_TOKEN(anon_sym_BANG_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3841: + case 3883: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 3842: + case 3884: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3844); + if (lookahead == '=') ADVANCE(3886); END_STATE(); - case 3843: + case 3885: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '=') ADVANCE(3887); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3844: + case 3886: ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); - case 3845: + case 3887: ACCEPT_TOKEN(anon_sym_LT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3846: + case 3888: ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); - case 3847: + case 3889: ACCEPT_TOKEN(anon_sym_GT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3848: + case 3890: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); - case 3849: + case 3891: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3850: + case 3892: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); - case 3851: + case 3893: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3852: + case 3894: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 3853: + case 3895: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 3854: + case 3896: ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); - case 3855: + case 3897: ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3856: + case 3898: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 3857: + case 3899: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(1841); + if (lookahead == '=') ADVANCE(1885); END_STATE(); - case 3858: + case 3900: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3859: + case 3901: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3866); + if (lookahead == '/') ADVANCE(3908); END_STATE(); - case 3860: + case 3902: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3866); - if (lookahead == '=') ADVANCE(1840); + if (lookahead == '/') ADVANCE(3908); + if (lookahead == '=') ADVANCE(1884); END_STATE(); - case 3861: + case 3903: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '/') ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3862: + case 3904: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3863: + case 3905: ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); - case 3864: + case 3906: ACCEPT_TOKEN(anon_sym_mod2); - if (lookahead == 'u') ADVANCE(2664); + if (lookahead == 'u') ADVANCE(2707); END_STATE(); - case 3865: + case 3907: ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3866: + case 3908: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); - case 3867: + case 3909: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3868: + case 3910: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3856); + if (lookahead == '+') ADVANCE(3898); END_STATE(); - case 3869: + case 3911: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3857); - if (lookahead == '.') ADVANCE(2474); - if (lookahead == '=') ADVANCE(1837); - if (lookahead == '_') ADVANCE(2094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '+') ADVANCE(3898); + if (lookahead == '.') ADVANCE(540); + if (lookahead == '_') ADVANCE(503); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3870: + case 3912: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3857); - if (lookahead == '=') ADVANCE(1837); + if (lookahead == '+') ADVANCE(3898); + if (lookahead == '.') ADVANCE(4623); + if (lookahead == '_') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3871: + case 3913: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3858); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '+') ADVANCE(3899); + if (lookahead == '.') ADVANCE(2517); + if (lookahead == '=') ADVANCE(1881); + if (lookahead == '_') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3872: + case 3914: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2474); - if (lookahead == '_') ADVANCE(2094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '+') ADVANCE(3899); + if (lookahead == '=') ADVANCE(1881); END_STATE(); - case 3873: + case 3915: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(5431); - if (lookahead == '_') ADVANCE(5424); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5431); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '+') ADVANCE(3900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3874: + case 3916: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1957); - if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '.') ADVANCE(2517); + if (lookahead == '_') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3875: + case 3917: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2479); - if (lookahead == '_') ADVANCE(2102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (lookahead == '.') ADVANCE(5475); + if (lookahead == '_') ADVANCE(5466); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); - case 3876: + case 3918: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1947); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (lookahead == '.') ADVANCE(1999); + if (lookahead == '_') ADVANCE(1988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 3877: + case 3919: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(2522); + if (lookahead == '_') ADVANCE(2144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + END_STATE(); + case 3920: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(2004); + if (lookahead == '_') ADVANCE(1989); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + END_STATE(); + case 3921: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); - case 3878: + case 3922: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3879: + case 3923: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); - case 3880: + case 3924: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3881: + case 3925: ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); - case 3882: + case 3926: ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3883: + case 3927: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); - case 3884: + case 3928: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3885: + case 3929: ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); - case 3886: + case 3930: ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3887: + case 3931: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); - case 3888: + case 3932: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1933); - if (lookahead == '<') ADVANCE(3930); - if (lookahead == '=') ADVANCE(3929); + if (lookahead == '.') ADVANCE(1975); + if (lookahead == '<') ADVANCE(3973); + if (lookahead == '=') ADVANCE(3972); END_STATE(); - case 3889: + case 3933: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1932); - if (lookahead == '<') ADVANCE(3930); - if (lookahead == '=') ADVANCE(3929); + if (lookahead == '.') ADVANCE(1974); + if (lookahead == '<') ADVANCE(3973); + if (lookahead == '=') ADVANCE(3972); END_STATE(); - case 3890: + case 3934: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(3673); - if (lookahead == '<') ADVANCE(3930); - if (lookahead == '=') ADVANCE(3929); + if (lookahead == '.') ADVANCE(3712); + if (lookahead == '<') ADVANCE(3973); + if (lookahead == '=') ADVANCE(3972); END_STATE(); - case 3891: + case 3935: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3930); - if (lookahead == '=') ADVANCE(3929); + if (lookahead == '<') ADVANCE(3973); + if (lookahead == '=') ADVANCE(3972); END_STATE(); - case 3892: + case 3936: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 3893: + case 3937: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + if (lookahead == '.') ADVANCE(5356); + if (lookahead == '_') ADVANCE(5369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); END_STATE(); - case 3894: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - END_STATE(); - case 3895: + case 3938: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); END_STATE(); - case 3896: + case 3939: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); END_STATE(); - case 3897: + case 3940: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); END_STATE(); - case 3898: + case 3941: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4457); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); END_STATE(); - case 3899: + case 3942: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(542); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); END_STATE(); - case 3900: + case 3943: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); END_STATE(); - case 3901: + case 3944: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5051); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); END_STATE(); - case 3902: + case 3945: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3888); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); END_STATE(); - case 3903: + case 3946: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2097); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); END_STATE(); - case 3904: + case 3947: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1944); - if (lookahead == '_') ADVANCE(1958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); + if (lookahead == '.') ADVANCE(3932); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); END_STATE(); - case 3905: + case 3948: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1944); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); + if (lookahead == '.') ADVANCE(2139); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); END_STATE(); - case 3906: + case 3949: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3891); + if (lookahead == '.') ADVANCE(1986); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); END_STATE(); - case 3907: + case 3950: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if (lookahead == '.') ADVANCE(1986); + if (lookahead == '_') ADVANCE(2005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); END_STATE(); - case 3908: + case 3951: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + if (lookahead == '.') ADVANCE(3935); END_STATE(); - case 3909: + case 3952: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(5006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); END_STATE(); - case 3910: + case 3953: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); END_STATE(); - case 3911: + case 3954: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(5110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(5047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); END_STATE(); - case 3912: + case 3955: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5080); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); END_STATE(); - case 3913: + case 3956: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5080); - if (lookahead == '_') ADVANCE(5105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(5143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); END_STATE(); - case 3914: + case 3957: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(475); + if (lookahead == '.') ADVANCE(5358); END_STATE(); - case 3915: + case 3958: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3889); - if (lookahead == '_') ADVANCE(1958); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); + if (lookahead == '.') ADVANCE(5358); + if (lookahead == '_') ADVANCE(5374); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); END_STATE(); - case 3916: + case 3959: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3890); + if (lookahead == '.') ADVANCE(3933); + if (lookahead == '_') ADVANCE(2000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); END_STATE(); - case 3917: + case 3960: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4036); + if (lookahead == '.') ADVANCE(502); END_STATE(); - case 3918: + case 3961: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(2475); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if (lookahead == '.') ADVANCE(3934); END_STATE(); - case 3919: + case 3962: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + if (lookahead == '_') ADVANCE(2518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); END_STATE(); - case 3920: + case 3963: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (lookahead == '_') ADVANCE(4624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); END_STATE(); - case 3921: + case 3964: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5334); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead == '_') ADVANCE(5138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); END_STATE(); - case 3922: + case 3965: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (lookahead == '_') ADVANCE(5374); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); END_STATE(); - case 3923: + case 3966: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 3924: + case 3967: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 3925: + case 3968: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3926: + case 3969: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); - case 3927: + case 3970: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 3928: + case 3971: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3929: + case 3972: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); - case 3930: + case 3973: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); - case 3931: + case 3974: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4513); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '-') ADVANCE(4555); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); - case 3932: + case 3975: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(5055); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '-') ADVANCE(5096); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); - case 3933: + case 3976: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4708); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '-') ADVANCE(4753); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); - case 3934: + case 3977: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(5165); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '-') ADVANCE(5198); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); - case 3935: + case 3978: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3943); + if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); END_STATE(); - case 3936: + case 3979: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3945); + if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); END_STATE(); - case 3937: + case 3980: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3947); + if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); END_STATE(); - case 3938: + case 3981: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3949); + if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); END_STATE(); - case 3939: + case 3982: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (lookahead == 'b') ADVANCE(2881); - if (lookahead == 'o') ADVANCE(2883); - if (lookahead == 'x') ADVANCE(2890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'b') ADVANCE(2921); + if (lookahead == 'o') ADVANCE(2923); + if (lookahead == 'x') ADVANCE(2930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); - case 3940: + case 3983: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (lookahead == 'b') ADVANCE(2074); - if (lookahead == 'o') ADVANCE(2075); - if (lookahead == 'x') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'b') ADVANCE(2116); + if (lookahead == 'o') ADVANCE(2117); + if (lookahead == 'x') ADVANCE(2118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); - case 3941: + case 3984: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); - case 3942: + case 3985: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3933); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); - case 3943: + case 3986: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3942); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); END_STATE(); - case 3944: + case 3987: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3931); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); - case 3945: + case 3988: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3944); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); END_STATE(); - case 3946: + case 3989: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3934); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); END_STATE(); - case 3947: + case 3990: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3946); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); END_STATE(); - case 3948: + case 3991: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3932); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); END_STATE(); - case 3949: + case 3992: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3948); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); END_STATE(); - case 3950: + case 3993: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3943); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); END_STATE(); - case 3951: + case 3994: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3945); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); END_STATE(); - case 3952: + case 3995: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3947); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); END_STATE(); - case 3953: + case 3996: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3941); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3949); + if (lookahead == '_') ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); END_STATE(); - case 3954: + case 3997: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3954); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '_') ADVANCE(3997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3955: + case 3998: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3955); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); END_STATE(); - case 3956: + case 3999: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3956); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if (lookahead == '_') ADVANCE(3999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3957: + case 4000: ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(3957); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (lookahead == '_') ADVANCE(4000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); END_STATE(); - case 3958: + case 4001: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3958); + if (lookahead == '_') ADVANCE(4001); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1964); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); + lookahead == 'e') ADVANCE(2006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); END_STATE(); - case 3959: + case 4002: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3959); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if (lookahead == '_') ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); END_STATE(); - case 3960: + case 4003: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3960); + if (lookahead == '_') ADVANCE(4003); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + lookahead == 'e') ADVANCE(2524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); END_STATE(); - case 3961: + case 4004: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3961); + if (lookahead == '_') ADVANCE(4004); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4581); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + lookahead == 'e') ADVANCE(4625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); END_STATE(); - case 3962: + case 4005: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3962); + if (lookahead == '_') ADVANCE(4005); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4458); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); + lookahead == 'e') ADVANCE(4500); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); END_STATE(); - case 3963: + case 4006: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3963); + if (lookahead == '_') ADVANCE(4006); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + lookahead == 'e') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); END_STATE(); - case 3964: + case 4007: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3964); + if (lookahead == '_') ADVANCE(4007); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5011); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); + lookahead == 'e') ADVANCE(5139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); END_STATE(); - case 3965: + case 4008: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3965); + if (lookahead == '_') ADVANCE(4008); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == 'e') ADVANCE(5052); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); END_STATE(); - case 3966: + case 4009: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3966); + if (lookahead == '_') ADVANCE(4009); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'e') ADVANCE(5375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); END_STATE(); - case 3967: + case 4010: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3967); + if (lookahead == '_') ADVANCE(4010); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'e') ADVANCE(5215); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4010); END_STATE(); - case 3968: + case 4011: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3968); + if (lookahead == '_') ADVANCE(4011); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4725); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3968); + lookahead == 'e') ADVANCE(4770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4011); END_STATE(); - case 3969: + case 4012: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3969); + if (lookahead == '_') ADVANCE(4012); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5357); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3969); + lookahead == 'e') ADVANCE(5399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4012); END_STATE(); - case 3970: + case 4013: ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(3970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); + if (lookahead == '_') ADVANCE(4013); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); END_STATE(); - case 3971: + case 4014: ACCEPT_TOKEN(anon_sym_null); END_STATE(); - case 3972: + case 4015: ACCEPT_TOKEN(anon_sym_null); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3084); + lookahead == '@') ADVANCE(3125); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3124); END_STATE(); - case 3973: + case 4016: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 3974: + case 4017: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3975: + case 4018: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); END_STATE(); - case 3976: + case 4019: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 3977: + case 4020: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3978: + case 4021: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 3979: + case 4022: ACCEPT_TOKEN(anon_sym_true); END_STATE(); - case 3980: + case 4023: ACCEPT_TOKEN(anon_sym_true); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3078); + lookahead == '@') ADVANCE(3119); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3118); END_STATE(); - case 3981: + case 4024: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 3982: + case 4025: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3983: + case 4026: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3984: + case 4027: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); END_STATE(); - case 3985: + case 4028: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 3986: + case 4029: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3987: + case 4030: ACCEPT_TOKEN(anon_sym_false); END_STATE(); - case 3988: + case 4031: ACCEPT_TOKEN(anon_sym_false); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3082); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3081); + lookahead == '@') ADVANCE(3122); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3121); END_STATE(); - case 3989: + case 4032: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 3990: + case 4033: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 3991: + case 4034: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 3992: + case 4035: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); END_STATE(); - case 3993: + case 4036: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 3994: + case 4037: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 3995: + case 4038: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); - case 3996: + case 4039: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); - case 3997: + case 4040: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2887); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '-') ADVANCE(2927); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 3998: + case 4041: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4513); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '-') ADVANCE(4555); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 3999: + case 4042: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5055); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '-') ADVANCE(5096); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4000: + case 4043: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5318); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '-') ADVANCE(5351); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4001: + case 4044: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4708); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '-') ADVANCE(4753); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4002: + case 4045: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5165); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '-') ADVANCE(5198); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4003: + case 4046: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1663); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '-') ADVANCE(1690); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4004: + case 4047: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4014); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); END_STATE(); - case 4005: + case 4048: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4016); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); END_STATE(); - case 4006: + case 4049: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4018); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); END_STATE(); - case 4007: + case 4050: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4020); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); END_STATE(); - case 4008: + case 4051: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4022); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); END_STATE(); - case 4009: + case 4052: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4024); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4067); END_STATE(); - case 4010: + case 4053: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(4073); - if (lookahead == 'o') ADVANCE(4089); - if (lookahead == 'x') ADVANCE(4094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4026); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(4115); + if (lookahead == 'o') ADVANCE(4131); + if (lookahead == 'x') ADVANCE(4136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4069); END_STATE(); - case 4011: + case 4054: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(2881); - if (lookahead == 'o') ADVANCE(2883); - if (lookahead == 'x') ADVANCE(2890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(2921); + if (lookahead == 'o') ADVANCE(2923); + if (lookahead == 'x') ADVANCE(2930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4012: + case 4055: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (lookahead == 'b') ADVANCE(2074); - if (lookahead == 'o') ADVANCE(2075); - if (lookahead == 'x') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '_') ADVANCE(4077); + if (lookahead == 'b') ADVANCE(2116); + if (lookahead == 'o') ADVANCE(2117); + if (lookahead == 'x') ADVANCE(2118); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4013: + case 4056: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); END_STATE(); - case 4014: + case 4057: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); END_STATE(); - case 4015: + case 4058: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); END_STATE(); - case 4016: + case 4059: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4015); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); END_STATE(); - case 4017: + case 4060: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); END_STATE(); - case 4018: + case 4061: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4017); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); END_STATE(); - case 4019: + case 4062: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); END_STATE(); - case 4020: + case 4063: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4019); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4062); END_STATE(); - case 4021: + case 4064: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); END_STATE(); - case 4022: + case 4065: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4021); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); END_STATE(); - case 4023: + case 4066: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); END_STATE(); - case 4024: + case 4067: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4023); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4066); END_STATE(); - case 4025: + case 4068: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); END_STATE(); - case 4026: + case 4069: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4025); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4068); END_STATE(); - case 4027: + case 4070: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4014); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); END_STATE(); - case 4028: + case 4071: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4016); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); END_STATE(); - case 4029: + case 4072: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4018); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); END_STATE(); - case 4030: + case 4073: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4020); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); END_STATE(); - case 4031: + case 4074: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4022); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); END_STATE(); - case 4032: + case 4075: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4024); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4067); END_STATE(); - case 4033: + case 4076: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4026); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4069); END_STATE(); - case 4034: + case 4077: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if (lookahead == '_') ADVANCE(4077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); END_STATE(); - case 4035: + case 4078: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); + if (lookahead == '_') ADVANCE(4078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); END_STATE(); - case 4036: + case 4079: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4036); + if (lookahead == '_') ADVANCE(4079); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4036); - END_STATE(); - case 4037: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + lookahead == 'e') ADVANCE(5370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); END_STATE(); - case 4038: + case 4080: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4038); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4995); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); + if (lookahead == '_') ADVANCE(4080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); END_STATE(); - case 4039: + case 4081: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4039); + if (lookahead == '_') ADVANCE(4081); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + lookahead == 'e') ADVANCE(5310); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); END_STATE(); - case 4040: + case 4082: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4040); + if (lookahead == '_') ADVANCE(4082); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1959); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); + lookahead == 'e') ADVANCE(2519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); END_STATE(); - case 4041: + case 4083: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4041); + if (lookahead == '_') ADVANCE(4083); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4454); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + lookahead == 'e') ADVANCE(2001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); END_STATE(); - case 4042: + case 4084: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4042); + if (lookahead == '_') ADVANCE(4084); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5007); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); + lookahead == 'e') ADVANCE(4496); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); END_STATE(); - case 4043: + case 4085: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4043); + if (lookahead == '_') ADVANCE(4085); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + lookahead == 'e') ADVANCE(5048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); END_STATE(); - case 4044: + case 4086: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4044); + if (lookahead == '_') ADVANCE(4086); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); + lookahead == 'e') ADVANCE(543); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); END_STATE(); - case 4045: + case 4087: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4045); + if (lookahead == '_') ADVANCE(4087); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4590); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); + lookahead == 'e') ADVANCE(4635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); END_STATE(); - case 4046: + case 4088: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4046); + if (lookahead == '_') ADVANCE(4088); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + lookahead == 'e') ADVANCE(5147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); END_STATE(); - case 4047: + case 4089: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(4047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); + if (lookahead == '_') ADVANCE(4089); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); END_STATE(); - case 4048: + case 4090: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4048); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); END_STATE(); - case 4049: + case 4091: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4049); + lookahead == '_') ADVANCE(4091); END_STATE(); - case 4050: + case 4092: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4050); + lookahead == '_') ADVANCE(4092); END_STATE(); - case 4051: + case 4093: ACCEPT_TOKEN(aux_sym__val_number_token4); END_STATE(); - case 4052: + case 4094: ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3140); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3090); + lookahead == 'i') ADVANCE(3127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); END_STATE(); - case 4053: + case 4095: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3093); + lookahead == 'i') ADVANCE(3133); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); END_STATE(); - case 4054: + case 4096: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'i') ADVANCE(3134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); END_STATE(); - case 4055: + case 4097: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4501); + lookahead == 'i') ADVANCE(4543); END_STATE(); - case 4056: + case 4098: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5044); + lookahead == 'i') ADVANCE(5085); END_STATE(); - case 4057: + case 4099: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5309); + lookahead == 'i') ADVANCE(5342); END_STATE(); - case 4058: + case 4100: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4695); + lookahead == 'i') ADVANCE(4740); END_STATE(); - case 4059: + case 4101: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5154); + lookahead == 'i') ADVANCE(5187); END_STATE(); - case 4060: + case 4102: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1647); + lookahead == 'i') ADVANCE(1674); END_STATE(); - case 4061: + case 4103: ACCEPT_TOKEN(aux_sym__val_number_token5); END_STATE(); - case 4062: + case 4104: ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == ',') ADVANCE(3110); + if (lookahead == ',') ADVANCE(3150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3105); + lookahead == 'i') ADVANCE(3142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); END_STATE(); - case 4063: + case 4105: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + lookahead == 'i') ADVANCE(3147); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); - case 4064: + case 4106: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1643); + lookahead == 'i') ADVANCE(1670); END_STATE(); - case 4065: + case 4107: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5046); + lookahead == 'i') ADVANCE(5087); END_STATE(); - case 4066: + case 4108: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5311); + lookahead == 'i') ADVANCE(5344); END_STATE(); - case 4067: + case 4109: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4698); + lookahead == 'i') ADVANCE(4743); END_STATE(); - case 4068: + case 4110: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5156); + lookahead == 'i') ADVANCE(5189); END_STATE(); - case 4069: + case 4111: ACCEPT_TOKEN(aux_sym__val_number_token6); END_STATE(); - case 4070: + case 4112: ACCEPT_TOKEN(aux_sym__val_number_token6); - if (lookahead == ',') ADVANCE(3113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3111); + if (lookahead == ',') ADVANCE(3153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3151); END_STATE(); - case 4071: + case 4113: ACCEPT_TOKEN(aux_sym__val_number_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3113); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3112); + lookahead == '@') ADVANCE(3153); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3152); END_STATE(); - case 4072: + case 4114: ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); END_STATE(); - case 4073: + case 4115: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4049); + lookahead == '_') ADVANCE(4091); END_STATE(); - case 4074: + case 4116: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4403); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == '_') ADVANCE(5001); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4075: + case 4117: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4956); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == '_') ADVANCE(3594); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 4076: + case 4118: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3554); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + lookahead == '_') ADVANCE(4445); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4077: + case 4119: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5244); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + lookahead == '_') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4078: + case 4120: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 4079: + case 4121: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3278); + if (lookahead == 'i') ADVANCE(3318); END_STATE(); - case 4080: + case 4122: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(4661); + if (lookahead == 'i') ADVANCE(4706); END_STATE(); - case 4081: + case 4123: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1495); + if (lookahead == 'i') ADVANCE(1522); END_STATE(); - case 4082: + case 4124: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1994); + if (lookahead == 'r') ADVANCE(2036); END_STATE(); - case 4083: + case 4125: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(2570); + if (lookahead == 'r') ADVANCE(2613); END_STATE(); - case 4084: + case 4126: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 4085: + case 4127: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 4086: + case 4128: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(3640); + if (lookahead == 'e') ADVANCE(3680); END_STATE(); - case 4087: + case 4129: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2900); + if (lookahead == 'e') ADVANCE(2940); END_STATE(); - case 4088: + case 4130: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 4089: + case 4131: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4050); + lookahead == '_') ADVANCE(4092); END_STATE(); - case 4090: + case 4132: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4405); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == '_') ADVANCE(5007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4091: + case 4133: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + lookahead == '_') ADVANCE(3596); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 4092: + case 4134: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3556); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + lookahead == '_') ADVANCE(4447); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4093: + case 4135: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5248); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + lookahead == '_') ADVANCE(5278); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4094: + case 4136: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4048); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); END_STATE(); - case 4095: + case 4137: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4418); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4096: + case 4138: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4976); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3609); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); END_STATE(); - case 4097: + case 4139: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3569); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3570); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4460); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4098: + case 4140: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5262); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5292); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4099: + case 4141: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 4100: + case 4142: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4100); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4142); END_STATE(); - case 4101: + case 4143: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 4102: + case 4144: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(1658); + if (lookahead == '.') ADVANCE(1685); if (lookahead == '+' || - lookahead == '-') ADVANCE(480); + lookahead == '-') ADVANCE(507); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); + lookahead == 'z') ADVANCE(4143); END_STATE(); - case 4103: + case 4145: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4511); + if (lookahead == '.') ADVANCE(4553); if (lookahead == '+' || - lookahead == '-') ADVANCE(4440); + lookahead == '-') ADVANCE(4482); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); + lookahead == 'z') ADVANCE(4143); END_STATE(); - case 4104: + case 4146: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(5058); + if (lookahead == '.') ADVANCE(5099); if (lookahead == '+' || - lookahead == '-') ADVANCE(4993); + lookahead == '-') ADVANCE(5038); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); + lookahead == 'z') ADVANCE(4143); END_STATE(); - case 4105: + case 4147: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4711); + if (lookahead == '.') ADVANCE(4756); if (lookahead == '+' || - lookahead == '-') ADVANCE(4554); + lookahead == '-') ADVANCE(4598); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); + lookahead == 'z') ADVANCE(4143); END_STATE(); - case 4106: + case 4148: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(5169); + if (lookahead == '.') ADVANCE(5202); if (lookahead == '+' || - lookahead == '-') ADVANCE(5086); + lookahead == '-') ADVANCE(5123); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); + lookahead == 'z') ADVANCE(4143); END_STATE(); - case 4107: + case 4149: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4124); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1657); + if (lookahead == ':') ADVANCE(4166); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1684); END_STATE(); - case 4108: + case 4150: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4125); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4506); + if (lookahead == ':') ADVANCE(4167); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4548); END_STATE(); - case 4109: + case 4151: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5052); + if (lookahead == ':') ADVANCE(4168); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5093); END_STATE(); - case 4110: + case 4152: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4127); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4705); + if (lookahead == ':') ADVANCE(4169); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4750); END_STATE(); - case 4111: + case 4153: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4128); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5162); + if (lookahead == ':') ADVANCE(4170); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5195); END_STATE(); - case 4112: + case 4154: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2889); + if (lookahead == 'T') ADVANCE(2929); END_STATE(); - case 4113: + case 4155: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4515); + if (lookahead == 'T') ADVANCE(4557); END_STATE(); - case 4114: + case 4156: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5061); + if (lookahead == 'T') ADVANCE(5102); END_STATE(); - case 4115: + case 4157: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5320); + if (lookahead == 'T') ADVANCE(5353); END_STATE(); - case 4116: + case 4158: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4713); + if (lookahead == 'T') ADVANCE(4758); END_STATE(); - case 4117: + case 4159: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5167); + if (lookahead == 'T') ADVANCE(5200); END_STATE(); - case 4118: + case 4160: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1667); + if (lookahead == 'T') ADVANCE(1694); END_STATE(); - case 4119: + case 4161: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(480); + lookahead == '-') ADVANCE(507); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4119); + lookahead == 'z') ADVANCE(4143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4161); END_STATE(); - case 4120: + case 4162: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4440); + lookahead == '-') ADVANCE(4482); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4120); + lookahead == 'z') ADVANCE(4143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4162); END_STATE(); - case 4121: + case 4163: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4993); + lookahead == '-') ADVANCE(5038); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4121); + lookahead == 'z') ADVANCE(4143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4163); END_STATE(); - case 4122: + case 4164: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4554); + lookahead == '-') ADVANCE(4598); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4122); + lookahead == 'z') ADVANCE(4143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4164); END_STATE(); - case 4123: + case 4165: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(5086); + lookahead == '-') ADVANCE(5123); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4123); + lookahead == 'z') ADVANCE(4143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4165); END_STATE(); - case 4124: + case 4166: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1684); END_STATE(); - case 4125: + case 4167: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4506); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4548); END_STATE(); - case 4126: + case 4168: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5052); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5093); END_STATE(); - case 4127: + case 4169: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4705); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4750); END_STATE(); - case 4128: + case 4170: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5162); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5195); END_STATE(); - case 4129: + case 4171: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 4130: + case 4172: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52253,28 +54401,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 4131: + case 4173: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(4132); + if (lookahead == '#') ADVANCE(4174); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4131); + lookahead == ' ') ADVANCE(4173); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(4132); + lookahead != '\\') ADVANCE(4174); END_STATE(); - case 4132: + case 4174: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(4132); + lookahead != '\\') ADVANCE(4174); END_STATE(); - case 4133: + case 4175: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 4134: + case 4176: ACCEPT_TOKEN(sym__str_single_quotes); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52282,12 +54430,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 4135: + case 4177: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 4136: + case 4178: ACCEPT_TOKEN(sym__str_back_ticks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52295,48 +54443,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 4137: + case 4179: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 4138: + case 4180: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(4139); + if (lookahead == '#') ADVANCE(4181); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4138); + lookahead == ' ') ADVANCE(4180); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(4139); + lookahead != '\\') ADVANCE(4181); END_STATE(); - case 4139: + case 4181: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(4139); + lookahead != '\\') ADVANCE(4181); END_STATE(); - case 4140: + case 4182: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(4141); + if (lookahead == '#') ADVANCE(4183); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4140); + lookahead == ' ') ADVANCE(4182); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4141); + lookahead != '(') ADVANCE(4183); END_STATE(); - case 4141: + case 4183: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4141); + lookahead != '(') ADVANCE(4183); END_STATE(); - case 4142: + case 4184: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 4143: + case 4185: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52344,20 +54492,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 4144: + case 4186: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 4145: + case 4187: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(4133); - if (lookahead != 0) ADVANCE(413); + if (lookahead == '\'') ADVANCE(4175); + if (lookahead != 0) ADVANCE(441); END_STATE(); - case 4146: + case 4188: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 4147: + case 4189: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52365,68 +54513,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 4148: + case 4190: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 4149: + case 4191: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 4150: + case 4192: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 4151: + case 4193: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 4152: + case 4194: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 4153: + case 4195: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4152); + if (lookahead == ',') ADVANCE(4194); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4153); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4152); + lookahead == ' ') ADVANCE(4195); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); END_STATE(); - case 4154: + case 4196: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4152); + if (lookahead == ',') ADVANCE(4194); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4154); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4155); + lookahead == ' ') ADVANCE(4196); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4197); END_STATE(); - case 4155: + case 4197: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(4160); + if (lookahead == ';') ADVANCE(4202); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(492); + lookahead == ' ') ADVANCE(519); END_STATE(); - case 4156: + case 4198: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4156); + lookahead == ' ') ADVANCE(4198); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4152); + lookahead == ',') ADVANCE(4194); END_STATE(); - case 4157: + case 4199: ACCEPT_TOKEN(aux_sym_record_entry_token1); END_STATE(); - case 4158: + case 4200: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(5545); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4159); + if (lookahead == '#') ADVANCE(5590); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4201); END_STATE(); - case 4159: + case 4201: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4159); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4201); END_STATE(); - case 4160: + case 4202: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 4161: + case 4203: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(4133); + if (lookahead == '\'') ADVANCE(4175); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -52438,12 +54586,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(413); - if (lookahead != 0) ADVANCE(4161); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(441); + if (lookahead != 0) ADVANCE(4203); END_STATE(); - case 4162: + case 4204: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(4135); + if (lookahead == '`') ADVANCE(4177); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -52455,1708 +54603,1708 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); - if (lookahead != 0) ADVANCE(4162); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(553); + if (lookahead != 0) ADVANCE(4204); END_STATE(); - case 4163: + case 4205: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4163); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4205); END_STATE(); - case 4164: + case 4206: ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 4165: + case 4207: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4165); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4207); END_STATE(); - case 4166: + case 4208: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 4167: + case 4209: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(672); + if (lookahead == ' ') ADVANCE(700); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4168: + case 4210: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(673); + if (lookahead == ' ') ADVANCE(701); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4169: + case 4211: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(529); + if (lookahead == ' ') ADVANCE(557); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4170: + case 4212: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(594); + if (lookahead == ' ') ADVANCE(622); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4171: + case 4213: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(530); + if (lookahead == ' ') ADVANCE(558); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4172: + case 4214: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(532); + if (lookahead == ' ') ADVANCE(560); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4173: + case 4215: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(1421); + if (lookahead == ' ') ADVANCE(1448); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4174: + case 4216: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(977); + if (lookahead == ' ') ADVANCE(1005); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4175: + case 4217: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(711); + if (lookahead == ' ') ADVANCE(739); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4176: + case 4218: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(701); - if (lookahead == 'o') ADVANCE(4235); + if (lookahead == ' ') ADVANCE(729); + if (lookahead == 'o') ADVANCE(4277); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4177: + case 4219: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4205); + if (lookahead == '-') ADVANCE(4247); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4178: + case 4220: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4222); + if (lookahead == '-') ADVANCE(4264); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4179: + case 4221: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4207); + if (lookahead == '-') ADVANCE(4249); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4180: + case 4222: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4286); + if (lookahead == '-') ADVANCE(4328); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4181: + case 4223: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4203); + if (lookahead == '-') ADVANCE(4245); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4182: + case 4224: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4269); + if (lookahead == '-') ADVANCE(4311); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4183: + case 4225: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4254); + if (lookahead == '-') ADVANCE(4296); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4184: + case 4226: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4230); + if (lookahead == '-') ADVANCE(4272); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4185: + case 4227: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4196); + if (lookahead == '-') ADVANCE(4238); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4186: + case 4228: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4281); + if (lookahead == '-') ADVANCE(4323); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4187: + case 4229: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4234); + if (lookahead == '-') ADVANCE(4276); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4188: + case 4230: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4287); + if (lookahead == '-') ADVANCE(4329); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4189: + case 4231: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4289); + if (lookahead == 'a') ADVANCE(4331); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4190: + case 4232: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4276); + if (lookahead == 'a') ADVANCE(4318); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4191: + case 4233: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4223); + if (lookahead == 'a') ADVANCE(4265); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4192: + case 4234: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4265); + if (lookahead == 'a') ADVANCE(4307); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4193: + case 4235: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4264); + if (lookahead == 'a') ADVANCE(4306); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4194: + case 4236: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4237); + if (lookahead == 'a') ADVANCE(4279); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4195: + case 4237: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4249); + if (lookahead == 'a') ADVANCE(4291); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4196: + case 4238: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4242); + if (lookahead == 'a') ADVANCE(4284); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4197: + case 4239: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4277); + if (lookahead == 'a') ADVANCE(4319); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4198: + case 4240: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4278); + if (lookahead == 'a') ADVANCE(4320); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4199: + case 4241: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4271); + if (lookahead == 'c') ADVANCE(4313); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4200: + case 4242: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4258); + if (lookahead == 'c') ADVANCE(4300); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4201: + case 4243: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4198); + if (lookahead == 'c') ADVANCE(4240); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4202: + case 4244: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4291); + if (lookahead == 'd') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4203: + case 4245: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4280); - if (lookahead == 'n') ADVANCE(4279); + if (lookahead == 'd') ADVANCE(4322); + if (lookahead == 'n') ADVANCE(4321); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4204: + case 4246: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4288); + if (lookahead == 'd') ADVANCE(4330); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4205: + case 4247: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4190); + if (lookahead == 'd') ADVANCE(4232); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4206: + case 4248: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4233); + if (lookahead == 'd') ADVANCE(4275); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4207: + case 4249: ACCEPT_TOKEN(aux_sym_command_token1); ADVANCE_MAP( - 'd', 4189, - 'h', 4257, - 'm', 4231, - 'n', 4195, - 'o', 4266, - 's', 4216, - 'w', 4218, - 'y', 4220, + 'd', 4231, + 'h', 4299, + 'm', 4273, + 'n', 4237, + 'o', 4308, + 's', 4258, + 'w', 4260, + 'y', 4262, ); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4208: + case 4250: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4189); + if (lookahead == 'd') ADVANCE(4231); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4209: + case 4251: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4197); + if (lookahead == 'd') ADVANCE(4239); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4210: + case 4252: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4291); + if (lookahead == 'e') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4211: + case 4253: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4199); + if (lookahead == 'e') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4212: + case 4254: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4246); + if (lookahead == 'e') ADVANCE(4288); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4213: + case 4255: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4268); + if (lookahead == 'e') ADVANCE(4310); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4214: + case 4256: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4236); + if (lookahead == 'e') ADVANCE(4278); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4215: + case 4257: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4288); + if (lookahead == 'e') ADVANCE(4330); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4216: + case 4258: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4200); + if (lookahead == 'e') ADVANCE(4242); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4217: + case 4259: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4274); + if (lookahead == 'e') ADVANCE(4316); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4218: + case 4260: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4214); + if (lookahead == 'e') ADVANCE(4256); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4219: + case 4261: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4187); + if (lookahead == 'e') ADVANCE(4229); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4220: + case 4262: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4193); + if (lookahead == 'e') ADVANCE(4235); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4221: + case 4263: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'f') ADVANCE(4255); + if (lookahead == 'f') ADVANCE(4297); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4222: + case 4264: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4267); + if (lookahead == 'g') ADVANCE(4309); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4223: + case 4265: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4219); + if (lookahead == 'g') ADVANCE(4261); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4224: + case 4266: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4291); + if (lookahead == 'h') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4225: + case 4267: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4215); + if (lookahead == 'h') ADVANCE(4257); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4226: + case 4268: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4184); + if (lookahead == 'h') ADVANCE(4226); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4227: + case 4269: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4201); + if (lookahead == 'i') ADVANCE(4243); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4228: + case 4270: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4273); + if (lookahead == 'i') ADVANCE(4315); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4229: + case 4271: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4245); + if (lookahead == 'i') ADVANCE(4287); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4230: + case 4272: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4204); + if (lookahead == 'i') ADVANCE(4246); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4231: + case 4273: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4251); - if (lookahead == 'o') ADVANCE(4252); + if (lookahead == 'i') ADVANCE(4293); + if (lookahead == 'o') ADVANCE(4294); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4232: + case 4274: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4272); + if (lookahead == 'i') ADVANCE(4314); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4233: + case 4275: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4253); + if (lookahead == 'i') ADVANCE(4295); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4234: + case 4276: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4248); + if (lookahead == 'i') ADVANCE(4290); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4235: + case 4277: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'j') ADVANCE(4211); + if (lookahead == 'j') ADVANCE(4253); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4236: + case 4278: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'k') ADVANCE(4208); + if (lookahead == 'k') ADVANCE(4250); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4237: + case 4279: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4291); + if (lookahead == 'l') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4238: + case 4280: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4211); - if (lookahead == 'u') ADVANCE(4243); + if (lookahead == 'l') ADVANCE(4253); + if (lookahead == 'u') ADVANCE(4285); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4239: + case 4281: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4268); + if (lookahead == 'l') ADVANCE(4310); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4240: + case 4282: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4239); + if (lookahead == 'l') ADVANCE(4281); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4241: + case 4283: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4227); + if (lookahead == 'l') ADVANCE(4269); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4242: + case 4284: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4237); + if (lookahead == 'l') ADVANCE(4279); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4243: + case 4285: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4247); + if (lookahead == 'm') ADVANCE(4289); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4244: + case 4286: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4192); + if (lookahead == 'm') ADVANCE(4234); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4245: + case 4287: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4210); + if (lookahead == 'm') ADVANCE(4252); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4246: + case 4288: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4291); + if (lookahead == 'n') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4247: + case 4289: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4268); + if (lookahead == 'n') ADVANCE(4310); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4248: + case 4290: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4221); + if (lookahead == 'n') ADVANCE(4263); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4249: + case 4291: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4256); + if (lookahead == 'n') ADVANCE(4298); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4250: + case 4292: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4202); + if (lookahead == 'n') ADVANCE(4244); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4251: + case 4293: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4285); + if (lookahead == 'n') ADVANCE(4327); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4252: + case 4294: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4272); + if (lookahead == 'n') ADVANCE(4314); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4253: + case 4295: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4194); + if (lookahead == 'n') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4254: + case 4296: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4284); + if (lookahead == 'n') ADVANCE(4326); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4255: + case 4297: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4291); + if (lookahead == 'o') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4256: + case 4298: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4270); + if (lookahead == 'o') ADVANCE(4312); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4257: + case 4299: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4283); + if (lookahead == 'o') ADVANCE(4325); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4258: + case 4300: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4250); + if (lookahead == 'o') ADVANCE(4292); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4259: + case 4301: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4282); + if (lookahead == 'o') ADVANCE(4324); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4260: + case 4302: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4191); + if (lookahead == 'p') ADVANCE(4233); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4261: + case 4303: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4268); + if (lookahead == 'p') ADVANCE(4310); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4262: + case 4304: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4241); + if (lookahead == 'p') ADVANCE(4283); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4263: + case 4305: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4209); + if (lookahead == 'p') ADVANCE(4251); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4264: + case 4306: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4291); + if (lookahead == 'r') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4265: + case 4307: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4289); + if (lookahead == 'r') ADVANCE(4331); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4266: + case 4308: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4206); + if (lookahead == 'r') ADVANCE(4248); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4267: + case 4309: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4259); + if (lookahead == 'r') ADVANCE(4301); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4268: + case 4310: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4291); + if (lookahead == 's') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4269: + case 4311: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4275); + if (lookahead == 's') ADVANCE(4317); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4270: + case 4312: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4216); + if (lookahead == 's') ADVANCE(4258); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4271: + case 4313: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4291); + if (lookahead == 't') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4272: + case 4314: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4224); + if (lookahead == 't') ADVANCE(4266); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4273: + case 4315: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4226); + if (lookahead == 't') ADVANCE(4268); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4274: + case 4316: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4229); + if (lookahead == 't') ADVANCE(4271); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4275: + case 4317: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4264); + if (lookahead == 't') ADVANCE(4306); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4276: + case 4318: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4217); + if (lookahead == 't') ADVANCE(4259); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4277: + case 4319: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4210); + if (lookahead == 't') ADVANCE(4252); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4278: + case 4320: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4213); + if (lookahead == 't') ADVANCE(4255); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4279: + case 4321: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4240); + if (lookahead == 'u') ADVANCE(4282); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4280: + case 4322: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4262); + if (lookahead == 'u') ADVANCE(4304); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4281: + case 4323: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4263); + if (lookahead == 'u') ADVANCE(4305); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4282: + case 4324: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4261); + if (lookahead == 'u') ADVANCE(4303); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4283: + case 4325: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4264); + if (lookahead == 'u') ADVANCE(4306); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4284: + case 4326: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4242); + if (lookahead == 'u') ADVANCE(4284); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4285: + case 4327: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4277); + if (lookahead == 'u') ADVANCE(4319); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4286: + case 4328: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4228); + if (lookahead == 'w') ADVANCE(4270); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4287: + case 4329: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4232); + if (lookahead == 'w') ADVANCE(4274); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4288: + case 4330: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'x') ADVANCE(4291); + if (lookahead == 'x') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4289: + case 4331: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'y') ADVANCE(4291); + if (lookahead == 'y') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4290: + case 4332: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'z') ADVANCE(4291); + if (lookahead == 'z') ADVANCE(4333); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4333); END_STATE(); - case 4291: + case 4333: ACCEPT_TOKEN(aux_sym_command_token1); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4291); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); END_STATE(); - case 4292: + case 4334: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4324); + if (lookahead == '>') ADVANCE(4366); END_STATE(); - case 4293: + case 4335: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4324); - if (lookahead == '|') ADVANCE(3612); + if (lookahead == '>') ADVANCE(4366); + if (lookahead == '|') ADVANCE(3652); END_STATE(); - case 4294: + case 4336: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4326); - if (lookahead == '|') ADVANCE(3612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4368); + if (lookahead == '|') ADVANCE(3652); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4295: + case 4337: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4325); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4367); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4296: + case 4338: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4327); + if (lookahead == '>') ADVANCE(4369); END_STATE(); - case 4297: + case 4339: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4327); - if (lookahead == '|') ADVANCE(3613); + if (lookahead == '>') ADVANCE(4369); + if (lookahead == '|') ADVANCE(3653); END_STATE(); - case 4298: + case 4340: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4329); - if (lookahead == '|') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4371); + if (lookahead == '|') ADVANCE(3653); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4299: + case 4341: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4328); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4300: + case 4342: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4330); + if (lookahead == '>') ADVANCE(4372); END_STATE(); - case 4301: + case 4343: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4330); - if (lookahead == '|') ADVANCE(3614); + if (lookahead == '>') ADVANCE(4372); + if (lookahead == '|') ADVANCE(3654); END_STATE(); - case 4302: + case 4344: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4332); - if (lookahead == '|') ADVANCE(3614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4374); + if (lookahead == '|') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4303: + case 4345: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4331); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4373); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4304: + case 4346: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4333); + if (lookahead == '>') ADVANCE(4375); END_STATE(); - case 4305: + case 4347: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4333); - if (lookahead == '|') ADVANCE(3615); + if (lookahead == '>') ADVANCE(4375); + if (lookahead == '|') ADVANCE(3655); END_STATE(); - case 4306: + case 4348: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4335); - if (lookahead == '|') ADVANCE(3615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4377); + if (lookahead == '|') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4307: + case 4349: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4334); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4376); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4308: + case 4350: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4336); + if (lookahead == '>') ADVANCE(4378); END_STATE(); - case 4309: + case 4351: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4336); - if (lookahead == '|') ADVANCE(3616); + if (lookahead == '>') ADVANCE(4378); + if (lookahead == '|') ADVANCE(3656); END_STATE(); - case 4310: + case 4352: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4338); - if (lookahead == '|') ADVANCE(3616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4380); + if (lookahead == '|') ADVANCE(3656); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4311: + case 4353: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4379); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4312: + case 4354: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4339); + if (lookahead == '>') ADVANCE(4381); END_STATE(); - case 4313: + case 4355: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4339); - if (lookahead == '|') ADVANCE(3617); + if (lookahead == '>') ADVANCE(4381); + if (lookahead == '|') ADVANCE(3657); END_STATE(); - case 4314: + case 4356: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4341); - if (lookahead == '|') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4383); + if (lookahead == '|') ADVANCE(3657); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4315: + case 4357: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4340); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4382); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4316: + case 4358: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4342); + if (lookahead == '>') ADVANCE(4384); END_STATE(); - case 4317: + case 4359: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == '|') ADVANCE(3618); + if (lookahead == '>') ADVANCE(4384); + if (lookahead == '|') ADVANCE(3658); END_STATE(); - case 4318: + case 4360: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4344); - if (lookahead == '|') ADVANCE(3618); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4386); + if (lookahead == '|') ADVANCE(3658); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4319: + case 4361: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4343); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4320: + case 4362: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4345); + if (lookahead == '>') ADVANCE(4387); END_STATE(); - case 4321: + case 4363: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4345); - if (lookahead == '|') ADVANCE(3619); + if (lookahead == '>') ADVANCE(4387); + if (lookahead == '|') ADVANCE(3659); END_STATE(); - case 4322: + case 4364: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == '|') ADVANCE(3619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4389); + if (lookahead == '|') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4323: + case 4365: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4346); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4324: + case 4366: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 4325: + case 4367: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4326: + case 4368: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4327: + case 4369: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 4328: + case 4370: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4329: + case 4371: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4330: + case 4372: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 4331: + case 4373: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4332: + case 4374: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4333: + case 4375: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 4334: + case 4376: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4335: + case 4377: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4336: + case 4378: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 4337: + case 4379: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4338: + case 4380: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4339: + case 4381: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 4340: + case 4382: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4341: + case 4383: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4342: + case 4384: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 4343: + case 4385: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4344: + case 4386: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4345: + case 4387: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 4346: + case 4388: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 4347: + case 4389: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 4348: + case 4390: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 4349: + case 4391: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4474); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'r') ADVANCE(4384); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(4516); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'r') ADVANCE(4426); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4350: + case 4392: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4467); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'u') ADVANCE(4389); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(4509); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'u') ADVANCE(4431); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4351: + case 4393: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4475); - if (lookahead == '>') ADVANCE(4293); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(4517); + if (lookahead == '>') ADVANCE(4335); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4352: + case 4394: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4468); - if (lookahead == '>') ADVANCE(4297); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(4510); + if (lookahead == '>') ADVANCE(4339); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4353: + case 4395: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1231); - if (lookahead == '>') ADVANCE(1622); - if (lookahead == 'r') ADVANCE(4385); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(1258); + if (lookahead == '>') ADVANCE(1649); + if (lookahead == 'r') ADVANCE(4427); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4354: + case 4396: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(803); - if (lookahead == '>') ADVANCE(1623); - if (lookahead == 'u') ADVANCE(4390); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(831); + if (lookahead == '>') ADVANCE(1650); + if (lookahead == 'u') ADVANCE(4432); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4355: + case 4397: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(1625); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(1304); + if (lookahead == '>') ADVANCE(1652); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4356: + case 4398: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(861); - if (lookahead == '>') ADVANCE(1627); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '+') ADVANCE(889); + if (lookahead == '>') ADVANCE(1654); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4357: + case 4399: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4409); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '-') ADVANCE(4451); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4358: + case 4400: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4411); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '-') ADVANCE(4453); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4359: + case 4401: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4415); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '-') ADVANCE(4457); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4360: + case 4402: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4417); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '-') ADVANCE(4459); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4361: + case 4403: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(512); - if (lookahead == '_') ADVANCE(4361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '.') ADVANCE(539); + if (lookahead == '_') ADVANCE(4403); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4362: + case 4404: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(1660); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == ':') ADVANCE(1687); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4363: + case 4405: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(4518); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == ':') ADVANCE(4560); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4364: + case 4406: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(4412); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'T') ADVANCE(4454); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4365: + case 4407: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(4413); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'T') ADVANCE(4455); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4366: + case 4408: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (lookahead == 'b') ADVANCE(4074); - if (lookahead == 'o') ADVANCE(4090); - if (lookahead == 'x') ADVANCE(4095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4370); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (lookahead == 'b') ADVANCE(4118); + if (lookahead == 'o') ADVANCE(4134); + if (lookahead == 'x') ADVANCE(4139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4412); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4367: + case 4409: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (lookahead == 'b') ADVANCE(4074); - if (lookahead == 'o') ADVANCE(4090); - if (lookahead == 'x') ADVANCE(4095); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4373); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (lookahead == 'b') ADVANCE(4118); + if (lookahead == 'o') ADVANCE(4134); + if (lookahead == 'x') ADVANCE(4139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4415); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4368: + case 4410: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4369: + case 4411: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4357); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4399); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4370: + case 4412: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4369); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4411); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4371: + case 4413: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4370); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4412); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4372: + case 4414: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4360); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4402); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4373: + case 4415: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4372); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4414); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4374: + case 4416: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4368); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4373); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == '_') ADVANCE(4410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4415); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4375: + case 4417: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(4378); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'a') ADVANCE(4420); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4376: + case 4418: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(3982); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'e') ADVANCE(4025); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4377: + case 4419: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(3990); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'e') ADVANCE(4033); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4378: + case 4420: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4387); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'l') ADVANCE(4429); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4379: + case 4421: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3974); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'l') ADVANCE(4017); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4380: + case 4422: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4379); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'l') ADVANCE(4421); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4381: + case 4423: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(3724); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'n') ADVANCE(3766); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4382: + case 4424: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(4388); - if (lookahead == 'u') ADVANCE(4380); + if (lookahead == 'o') ADVANCE(4430); + if (lookahead == 'u') ADVANCE(4422); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4397); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'a') ADVANCE(4439); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4383: + case 4425: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4391); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'r') ADVANCE(4433); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4384: + case 4426: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4351); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'r') ADVANCE(4393); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4385: + case 4427: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4355); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'r') ADVANCE(4397); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4386: + case 4428: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3816); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 's') ADVANCE(3858); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4387: + case 4429: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(4377); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 's') ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4388: + case 4430: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4404); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 't') ADVANCE(4446); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4389: + case 4431: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4352); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 't') ADVANCE(4394); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4390: + case 4432: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4356); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 't') ADVANCE(4398); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4391: + case 4433: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4376); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (lookahead == 'u') ADVANCE(4418); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4392: + case 4434: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4380); + if (lookahead == 'u') ADVANCE(4422); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4397); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'a') ADVANCE(4439); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4393: + case 4435: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4397); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'a') ADVANCE(4439); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4394: + case 4436: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4396); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'f') ADVANCE(4438); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4395: + case 4437: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4400); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'i') ADVANCE(4442); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4396: + case 4438: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4399); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'i') ADVANCE(4441); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4397: + case 4439: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4419); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'n') ADVANCE(4461); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4398: + case 4440: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4394); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'n') ADVANCE(4436); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4399: + case 4441: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4395); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'n') ADVANCE(4437); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4400: + case 4442: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4401); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 't') ADVANCE(4443); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4401: + case 4443: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4419); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == 'y') ADVANCE(4461); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4402: + case 4444: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(4419); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4402); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3379); + lookahead == '@') ADVANCE(4461); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4444); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); END_STATE(); - case 4403: + case 4445: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4403); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == '_') ADVANCE(4445); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4404: + case 4446: ACCEPT_TOKEN(sym_short_flag_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == ' ') ADVANCE(3894); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4405: + case 4447: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4405); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + lookahead == '_') ADVANCE(4447); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4406: + case 4448: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4358); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4400); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4407: + case 4449: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4364); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4406); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4408: + case 4450: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4363); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4405); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4409: + case 4451: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4406); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4410: + case 4452: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4362); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4404); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4411: + case 4453: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4407); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4449); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4412: + case 4454: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4408); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4450); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4413: + case 4455: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4452); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4414: + case 4456: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4365); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4407); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4415: + case 4457: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4414); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4456); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4416: + case 4458: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4359); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4401); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4417: + case 4459: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4416); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4458); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4418: + case 4460: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4418); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4460); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4419: + case 4461: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4419); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); END_STATE(); - case 4420: + case 4462: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(4134); + if (lookahead == '\'') ADVANCE(4176); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(413); - if (lookahead != 0) ADVANCE(4420); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(441); + if (lookahead != 0) ADVANCE(4462); END_STATE(); - case 4421: + case 4463: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(4136); + if (lookahead == '`') ADVANCE(4178); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(525); - if (lookahead != 0) ADVANCE(4421); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(553); + if (lookahead != 0) ADVANCE(4463); END_STATE(); - case 4422: + case 4464: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54164,6870 +56312,6891 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); - END_STATE(); - case 4423: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(3995); - if (lookahead == '(') ADVANCE(3887); - if (lookahead == '[') ADVANCE(4150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4424: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4474); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'r') ADVANCE(4480); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4425: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4467); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'u') ADVANCE(4488); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4426: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4461); - if (lookahead == '-') ADVANCE(4463); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == '_') ADVANCE(4463); - if (lookahead == 'r') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4427: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4475); - if (lookahead == '>') ADVANCE(4293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4428: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4468); - if (lookahead == '>') ADVANCE(4297); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4429: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4477); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == 'r') ADVANCE(4481); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4430: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4469); - if (lookahead == '>') ADVANCE(4304); - if (lookahead == 'u') ADVANCE(4490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4431: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4478); - if (lookahead == '>') ADVANCE(4292); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4432: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4470); - if (lookahead == '>') ADVANCE(4296); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4433: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(4514); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4434: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4435: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4457); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4436: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4437: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3768); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4438: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4452); - if (lookahead == '_') ADVANCE(4438); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4439: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4456); - if (lookahead == '_') ADVANCE(4439); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4440: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(4504); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4512); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4441: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4516); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4442: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4518); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4443: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4444: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4317); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4445: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4309); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4446: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4313); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4447: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4320); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4448: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4316); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4449: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4308); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4450: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4312); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4451: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4451); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4452: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4452); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4453: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4454: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4455); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4455: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4456: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4456); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4457: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4457); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4458: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4459); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4459); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4459: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4459); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4460: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4460); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4461: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4463); - if (lookahead == 'o') ADVANCE(4443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4462: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4463); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4463); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4463: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4463); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); - END_STATE(); - case 4464: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(4471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); case 4465: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '$') ADVANCE(4038); + if (lookahead == '(') ADVANCE(3931); + if (lookahead == '[') ADVANCE(4192); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4466: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3987); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4516); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'r') ADVANCE(4522); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4467: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4444); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4509); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'u') ADVANCE(4530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4468: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4482); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4503); + if (lookahead == '-') ADVANCE(4505); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == '_') ADVANCE(4505); + if (lookahead == 'r') ADVANCE(4522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4469: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4448); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4517); + if (lookahead == '>') ADVANCE(4335); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4470: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4510); + if (lookahead == '>') ADVANCE(4339); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4471: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4519); + if (lookahead == '>') ADVANCE(4342); + if (lookahead == 'r') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4472: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3971); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4511); + if (lookahead == '>') ADVANCE(4346); + if (lookahead == 'u') ADVANCE(4532); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4473: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4520); + if (lookahead == '>') ADVANCE(4334); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4474: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '+') ADVANCE(4512); + if (lookahead == '>') ADVANCE(4338); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4475: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4494); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '-') ADVANCE(4556); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4476: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4487); - if (lookahead == 'u') ADVANCE(4473); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4500); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4477: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4478: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4479: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '.') ADVANCE(3810); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4480: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4427); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '.') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4481: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4431); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '.') ADVANCE(4498); + if (lookahead == '_') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4482: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '2') ADVANCE(4546); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4554); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4483: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4446); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == ':') ADVANCE(4558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4484: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4450); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == ':') ADVANCE(4560); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4485: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4363); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4486: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(4466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4359); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4487: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4351); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4488: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4428); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4489: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4362); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4490: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4432); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4491: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4449); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4350); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4492: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4473); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4500); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '>') ADVANCE(4354); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4493: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4465); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4493); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4494: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4494); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4495: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4496: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4500); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4497); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4497: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4055); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4497); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4498: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4498); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4499: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4500: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4069); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4501); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4501: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4498); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4501); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4502: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4502); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4503: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4051); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4505); + if (lookahead == 'o') ADVANCE(4485); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4504: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4108); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4505); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4505: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == '_') ADVANCE(4505); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4506: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'a') ADVANCE(4513); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4507: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4433); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'e') ADVANCE(4022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4508: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4442); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'e') ADVANCE(4030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4509: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4113); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'e') ADVANCE(4486); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4510: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'e') ADVANCE(4524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4511: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'e') ADVANCE(4490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4512: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4108); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'e') ADVANCE(4527); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4513: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'l') ADVANCE(4528); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4514: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4509); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'l') ADVANCE(4014); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4515: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4508); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'l') ADVANCE(4514); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4516: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4510); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'o') ADVANCE(4485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4517: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'o') ADVANCE(4536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4518: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'o') ADVANCE(4529); + if (lookahead == 'u') ADVANCE(4515); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4542); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4519: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4519); + if (lookahead == 'o') ADVANCE(4489); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4520: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4629, - '>', 4301, - 'I', 4686, - 'i', 4686, - 'n', 4601, - 'r', 4646, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'o') ADVANCE(4537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4521: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4629); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4686); - if (lookahead == 'r') ADVANCE(4646); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4535); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4522: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4629); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'n') ADVANCE(4601); - if (lookahead == 'r') ADVANCE(4646); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4469); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4523: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4629); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == 'r') ADVANCE(4646); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4524: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4606); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'r') ADVANCE(3829); - if (lookahead == 'u') ADVANCE(4660); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4525); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4525: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4606); - if (lookahead == '>') ADVANCE(4305); - if (lookahead == 'u') ADVANCE(4660); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4488); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4526: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4586, - '-', 4589, - '>', 4301, - 'I', 4686, - '_', 4589, - 'i', 4686, - 'n', 4601, - 'r', 4646, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4527: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4586, - '-', 4589, - '>', 4301, - 'I', 4686, - '_', 4589, - 'i', 4686, - 'r', 4646, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'r') ADVANCE(4526); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4528: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4586); - if (lookahead == '-') ADVANCE(4589); - if (lookahead == '>') ADVANCE(4301); - if (lookahead == '_') ADVANCE(4589); - if (lookahead == 'r') ADVANCE(4646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 's') ADVANCE(4508); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4529: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4630); - if (lookahead == '>') ADVANCE(4293); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(4547); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4530: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4587, - '-', 4589, - '>', 4677, - 'I', 4686, - '_', 4589, - 'i', 4686, - 'n', 4601, - 'r', 4647, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(4470); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4531: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4587, - '-', 4589, - '>', 4677, - 'I', 4686, - '_', 4589, - 'i', 4686, - 'r', 4647, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(4487); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4532: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4587); - if (lookahead == '-') ADVANCE(4589); - if (lookahead == '>') ADVANCE(4677); - if (lookahead == '_') ADVANCE(4589); - if (lookahead == 'r') ADVANCE(4647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(4474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4533: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4607); - if (lookahead == '>') ADVANCE(4297); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 't') ADVANCE(4491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4534: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4634, - '>', 4677, - 'I', 4686, - 'i', 4686, - 'n', 4601, - 'r', 4647, - 'B', 4078, - 'b', 4078, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(4515); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4542); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4535: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4634); - if (lookahead == '>') ADVANCE(4677); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4686); - if (lookahead == 'r') ADVANCE(4647); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(4507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4536: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4634); - if (lookahead == '>') ADVANCE(4677); - if (lookahead == 'n') ADVANCE(4601); - if (lookahead == 'r') ADVANCE(4647); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(4531); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4537: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4634); - if (lookahead == '>') ADVANCE(4677); - if (lookahead == 'r') ADVANCE(4647); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(4533); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4538: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4608); - if (lookahead == '>') ADVANCE(4678); - if (lookahead == 'r') ADVANCE(3829); - if (lookahead == 'u') ADVANCE(4667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4542); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4539: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4608); - if (lookahead == '>') ADVANCE(4678); - if (lookahead == 'u') ADVANCE(4667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4097); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4540: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4639); - if (lookahead == '>') ADVANCE(4680); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4544); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4541: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4609); - if (lookahead == '>') ADVANCE(4682); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4539); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4542: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3676); - if (lookahead == '.') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4553); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4697); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4111); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4543: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4595); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4540); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4544: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4545); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4545: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4093); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4546: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4709); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4150); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4547: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4675); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4548: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4549: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4475); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4550: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4551: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3891); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4155); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4552: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4579); - if (lookahead == '_') ADVANCE(4552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4145); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4553: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4584); - if (lookahead == '_') ADVANCE(4553); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4162); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4554: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(4703); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4712); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4150); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4555: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4549); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4556: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4717); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4557: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3839); - if (lookahead == '~') ADVANCE(3850); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4550); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4558: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3837); - if (lookahead == '>') ADVANCE(3763); - if (lookahead == '~') ADVANCE(3848); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4552); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4559: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3837); - if (lookahead == '~') ADVANCE(3848); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4560: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3763); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4561: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); END_STATE(); case 4562: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4317); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ADVANCE_MAP( + '+', 4674, + '>', 4343, + 'I', 4731, + 'i', 4731, + 'n', 4646, + 'r', 4691, + 'B', 4120, + 'b', 4120, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4563: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4309); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4674); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4731); + if (lookahead == 'r') ADVANCE(4691); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4564: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4313); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4674); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'n') ADVANCE(4646); + if (lookahead == 'r') ADVANCE(4691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4565: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4679); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4674); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == 'r') ADVANCE(4691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4566: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4681); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4651); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'r') ADVANCE(3871); + if (lookahead == 'u') ADVANCE(4705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4567: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4683); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4651); + if (lookahead == '>') ADVANCE(4347); + if (lookahead == 'u') ADVANCE(4705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4568: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4684); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ADVANCE_MAP( + '+', 4631, + '-', 4634, + '>', 4343, + 'I', 4731, + '_', 4634, + 'i', 4731, + 'n', 4646, + 'r', 4691, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4569: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - 'I', 4686, - '_', 4589, - 'i', 4686, - 'n', 4601, - '+', 4589, - '-', 4589, - 'B', 4078, - 'b', 4078, + '+', 4631, + '-', 4634, + '>', 4343, + 'I', 4731, + '_', 4634, + 'i', 4731, + 'r', 4691, + 'B', 4120, + 'b', 4120, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4570: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == '_') ADVANCE(4589); - if (lookahead == 'i') ADVANCE(4686); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4589); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4631); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'n') ADVANCE(4646); + if (lookahead == 'r') ADVANCE(4691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4571: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == '_') ADVANCE(4589); - if (lookahead == 'i') ADVANCE(4596); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4589); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4631); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == '>') ADVANCE(4343); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'r') ADVANCE(4691); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4572: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4686); - if (lookahead == 'n') ADVANCE(4601); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4675); + if (lookahead == '>') ADVANCE(4335); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4573: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4686); - if (lookahead == 'r') ADVANCE(4671); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ADVANCE_MAP( + '+', 4632, + '-', 4634, + '>', 4722, + 'I', 4731, + '_', 4634, + 'i', 4731, + 'n', 4646, + 'r', 4692, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4574: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4686); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ADVANCE_MAP( + '+', 4632, + '-', 4634, + '>', 4722, + 'I', 4731, + '_', 4634, + 'i', 4731, + 'r', 4692, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4575: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4596); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4632); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == '>') ADVANCE(4722); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'n') ADVANCE(4646); + if (lookahead == 'r') ADVANCE(4692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4576: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4624); - if (lookahead == 'o') ADVANCE(4600); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4632); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == '>') ADVANCE(4722); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'r') ADVANCE(4692); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4577: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4686); - if (lookahead == 'i') ADVANCE(4624); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4652); + if (lookahead == '>') ADVANCE(4339); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4578: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ADVANCE_MAP( + '+', 4679, + '>', 4722, + 'I', 4731, + 'i', 4731, + 'n', 4646, + 'r', 4692, + 'B', 4120, + 'b', 4120, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4579: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4679); + if (lookahead == '>') ADVANCE(4722); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4731); + if (lookahead == 'r') ADVANCE(4692); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4580: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4679); + if (lookahead == '>') ADVANCE(4722); + if (lookahead == 'n') ADVANCE(4646); + if (lookahead == 'r') ADVANCE(4692); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4581: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4582); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4679); + if (lookahead == '>') ADVANCE(4722); + if (lookahead == 'r') ADVANCE(4692); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4582: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4582); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4653); + if (lookahead == '>') ADVANCE(4723); + if (lookahead == 'r') ADVANCE(3871); + if (lookahead == 'u') ADVANCE(4712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4583: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4653); + if (lookahead == '>') ADVANCE(4723); + if (lookahead == 'u') ADVANCE(4712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4584: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4584); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4684); + if (lookahead == '>') ADVANCE(4725); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4585: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4585); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '+') ADVANCE(4654); + if (lookahead == '>') ADVANCE(4727); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4586: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4589); - if (lookahead == 'o') ADVANCE(4561); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '-') ADVANCE(3715); + if (lookahead == '.') ADVANCE(4628); + if (lookahead == '_') ADVANCE(4597); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4742); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4587: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4589); - if (lookahead == 'o') ADVANCE(4565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '-') ADVANCE(4640); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4588: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4589); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '-') ADVANCE(4719); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4589: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '-') ADVANCE(4659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4590: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4591); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '-') ADVANCE(4754); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4591: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '-') ADVANCE(4720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4592: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4621); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4593: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4676); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4594: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4650); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4595: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4628); - if (lookahead == 'o') ADVANCE(4642); - if (lookahead == 's') ADVANCE(4613); - if (lookahead == 'x') ADVANCE(4636); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '.') ADVANCE(3935); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4596: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '.') ADVANCE(4623); + if (lookahead == '_') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4597: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '.') ADVANCE(4628); + if (lookahead == '_') ADVANCE(4597); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4598: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '2') ADVANCE(4748); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4757); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4599: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == ':') ADVANCE(4759); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4600: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3863); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == ':') ADVANCE(4762); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4601: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(4657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '=') ADVANCE(3881); + if (lookahead == '~') ADVANCE(3892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4602: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '=') ADVANCE(3879); + if (lookahead == '>') ADVANCE(3805); + if (lookahead == '~') ADVANCE(3890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4603: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3987); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '=') ADVANCE(3879); + if (lookahead == '~') ADVANCE(3890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4604: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4597); - if (lookahead == 't') ADVANCE(4594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(3805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4605: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4597); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4363); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4606: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4562); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4359); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4607: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4648); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4351); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4608: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4566); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4609: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4651); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4724); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4610: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3745); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4726); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4611: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4728); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4612: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3833); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '>') ADVANCE(4729); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4613: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(4619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + ADVANCE_MAP( + 'I', 4731, + '_', 4634, + 'i', 4731, + 'n', 4646, + '+', 4634, + '-', 4634, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4614: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4661); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'i') ADVANCE(4731); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4634); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4615: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4623); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'i') ADVANCE(4641); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4634); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4616: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4662); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4731); + if (lookahead == 'n') ADVANCE(4646); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4617: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4666); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4731); + if (lookahead == 'r') ADVANCE(4716); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4618: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4731); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4619: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3877); - if (lookahead == 'r') ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4641); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4620: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3971); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4669); + if (lookahead == 'o') ADVANCE(4645); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4621: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'I') ADVANCE(4731); + if (lookahead == 'i') ADVANCE(4669); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4622: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4620); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4623: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3831); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4624: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4625: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3718); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4626); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4626: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4598); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4626); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4627: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4601); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4627); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4628: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4599); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4628); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4629: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4630: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4672); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'n') ADVANCE(4646); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4634); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4631: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4600); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'o') ADVANCE(4605); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4632: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4665); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == 'o') ADVANCE(4609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4633: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4665); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4634); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4634); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4634: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4565); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4634); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4635: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4641); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4636); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4636: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4643); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == '_') ADVANCE(4636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4637: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4659); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'u') ADVANCE(4622); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'a') ADVANCE(4666); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4638: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4659); - if (lookahead == 'u') ADVANCE(4622); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'a') ADVANCE(4721); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4639: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4673); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'a') ADVANCE(4695); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4640: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3829); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'a') ADVANCE(4673); + if (lookahead == 'o') ADVANCE(4687); + if (lookahead == 's') ADVANCE(4658); + if (lookahead == 'x') ADVANCE(4681); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4641: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3827); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4642: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'c') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4643: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'd') ADVANCE(3867); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4644: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'd') ADVANCE(3925); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4645: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4671); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'd') ADVANCE(3905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4646: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'd') ADVANCE(4702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4647: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4540); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4648: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4649); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4649: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4642); + if (lookahead == 't') ADVANCE(4639); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4650: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4642); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4651: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4652); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4652: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4568); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4693); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4653: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'u') ADVANCE(4622); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4610); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4654: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'e') ADVANCE(4696); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4655: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3811); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'f') ADVANCE(3787); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4656: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4603); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'h') ADVANCE(3877); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4657: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4545); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'h') ADVANCE(3875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4658: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4547); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'h') ADVANCE(4664); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4659: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4704); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'i') ADVANCE(4668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4660: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4533); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'i') ADVANCE(4706); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4661: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4543); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'i') ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4662: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'i') ADVANCE(4711); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4663: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'k') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4664: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4563); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'l') ADVANCE(3921); + if (lookahead == 'r') ADVANCE(3923); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4665: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4544); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'l') ADVANCE(4014); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4666: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'l') ADVANCE(4701); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4667: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4541); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'l') ADVANCE(4665); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4668: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4567); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'n') ADVANCE(3873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4669: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4670: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4622); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'n') ADVANCE(3760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4671: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4602); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'n') ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4672: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4664); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'n') ADVANCE(4646); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4673: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'n') ADVANCE(4644); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4674: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(4616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4605); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4675: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(4617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4717); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4676: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(4085); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4677: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4710); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4678: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4710); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4679: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4680: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4686); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4681: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3618); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4688); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4682: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4704); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'u') ADVANCE(4667); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4683: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4704); + if (lookahead == 'u') ADVANCE(4667); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4684: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'o') ADVANCE(4718); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4685: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4693); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(3871); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4686: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(3869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4687: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4690); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(3929); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4688: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4067); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(3927); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4689: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4058); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4690: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3107); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4718); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3110); + if (lookahead == 'r') ADVANCE(4716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4691: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4699); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4572); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4692: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4700); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4584); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4693: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4069); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4694); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4694: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4689); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4695: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4691); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4714); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4696: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4688); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4697); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4697: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4687); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'r') ADVANCE(4612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4698: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4692); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'u') ADVANCE(4667); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4699: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4700: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4702); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 's') ADVANCE(3853); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4701: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4051); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 's') ADVANCE(4648); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4702: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4061); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 's') ADVANCE(4588); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4703: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 's') ADVANCE(4591); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4704: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4749); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4705: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4577); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4706: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4546); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4587); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4707: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4556); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4656); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4708: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4639); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4709: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4715); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4607); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4710: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4105); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4589); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4711: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4122); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4657); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4712: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4110); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4585); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4713: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4714: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 't') ADVANCE(4703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4715: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4116); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'u') ADVANCE(4667); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4716: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4555); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'u') ADVANCE(4647); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4717: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'u') ADVANCE(4709); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4718: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4718); + if (lookahead == 'u') ADVANCE(4713); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4719: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(4722); - if (lookahead == '_') ADVANCE(4723); - if (lookahead == '\t' || - lookahead == ' ') SKIP(306); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'w') ADVANCE(4661); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4720: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '.') ADVANCE(4722); - if (lookahead == '_') ADVANCE(4723); - if (lookahead == '\t' || - lookahead == ' ') SKIP(378); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'w') ADVANCE(4662); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4721: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(4724); - if (lookahead == '_') ADVANCE(4721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'y') ADVANCE(4127); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4722: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4722); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3968); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4723: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4724: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4724); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4725: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4726); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4726); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3652); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4726: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4726); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3658); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4727: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4727); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3653); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4728: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4854); - if (lookahead == '>') ADVANCE(4302); - if (lookahead == 'n') ADVANCE(4796); - if (lookahead == 'r') ADVANCE(4870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3656); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4729: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4854); - if (lookahead == '>') ADVANCE(4302); - if (lookahead == 'r') ADVANCE(4870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '|') ADVANCE(3657); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4730: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4805); - if (lookahead == '>') ADVANCE(4306); - if (lookahead == 'r') ADVANCE(3830); - if (lookahead == 'u') ADVANCE(4902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4731: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4805); - if (lookahead == '>') ADVANCE(4306); - if (lookahead == 'u') ADVANCE(4902); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4732: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4857); - if (lookahead == '>') ADVANCE(4294); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4735); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4733: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4808); - if (lookahead == '>') ADVANCE(4298); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4109); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4734: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4862); - if (lookahead == '>') ADVANCE(4927); - if (lookahead == 'n') ADVANCE(4796); - if (lookahead == 'r') ADVANCE(4880); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4100); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4735: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4862); - if (lookahead == '>') ADVANCE(4927); - if (lookahead == 'r') ADVANCE(4880); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3147); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3150); END_STATE(); case 4736: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4812); - if (lookahead == '>') ADVANCE(4928); - if (lookahead == 'r') ADVANCE(3830); - if (lookahead == 'u') ADVANCE(4908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4744); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4737: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4812); - if (lookahead == '>') ADVANCE(4928); - if (lookahead == 'u') ADVANCE(4908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4745); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4738: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4866); - if (lookahead == '>') ADVANCE(4930); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4111); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4739: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4814); - if (lookahead == '>') ADVANCE(4932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4734); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4740: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3679); - if (lookahead == '.') ADVANCE(4772); - if (lookahead == '_') ADVANCE(4748); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4949); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4736); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4741: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4970); - if (lookahead == '_') ADVANCE(4772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4733); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4742: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4790); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4732); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4743: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4924); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4737); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4744: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4746); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4745: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4810); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4747); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4746: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4971); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4093); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4747: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4748: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4772); - if (lookahead == '_') ADVANCE(4748); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4152); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4749: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3771); - if (lookahead == '_') ADVANCE(4779); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4750: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4781); - if (lookahead == '_') ADVANCE(4750); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4781); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4751: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4968); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4752); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4590); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4752: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(4958); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4753: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4960); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4963); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4751); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4754: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4973); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4755: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4147); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4756: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3840); - if (lookahead == '~') ADVANCE(3851); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4164); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4757: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3838); - if (lookahead == '>') ADVANCE(3764); - if (lookahead == '~') ADVANCE(3849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4152); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4758: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3838); - if (lookahead == '~') ADVANCE(3849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4752); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4759: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4322); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4760: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4318); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4158); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4761: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4310); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4762: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4314); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4761); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4763: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3764); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); END_STATE(); case 4764: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4929); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(4767); + if (lookahead == '_') ADVANCE(4768); + if (lookahead == '\t' || + lookahead == ' ') SKIP(332); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4766); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4765: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4931); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '.') ADVANCE(4767); + if (lookahead == '_') ADVANCE(4768); + if (lookahead == '\t' || + lookahead == ' ') SKIP(404); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4766); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4766: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(4769); + if (lookahead == '_') ADVANCE(4766); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4767: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4934); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4767); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4768: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4939); - if (lookahead == 'f') ADVANCE(4957); - if (lookahead == 'n') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4768); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4769: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(4972); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4770: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4772); - if (lookahead == 'b') ADVANCE(4075); - if (lookahead == 'o') ADVANCE(4091); - if (lookahead == 'x') ADVANCE(4096); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4774); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4771); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4771: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4772); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4772: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); END_STATE(); case 4773: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4741); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '+') ADVANCE(4899); + if (lookahead == '>') ADVANCE(4344); + if (lookahead == 'n') ADVANCE(4841); + if (lookahead == 'r') ADVANCE(4915); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4774: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '+') ADVANCE(4899); + if (lookahead == '>') ADVANCE(4344); + if (lookahead == 'r') ADVANCE(4915); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4775: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4772); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4774); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '+') ADVANCE(4850); + if (lookahead == '>') ADVANCE(4348); + if (lookahead == 'r') ADVANCE(3872); + if (lookahead == 'u') ADVANCE(4947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4776: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4776); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '+') ADVANCE(4850); + if (lookahead == '>') ADVANCE(4348); + if (lookahead == 'u') ADVANCE(4947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4777: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4777); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4778); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '+') ADVANCE(4902); + if (lookahead == '>') ADVANCE(4336); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4778: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4778); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4780); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4778); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '+') ADVANCE(4853); + if (lookahead == '>') ADVANCE(4340); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4779: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4779); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '+') ADVANCE(4907); + if (lookahead == '>') ADVANCE(4972); + if (lookahead == 'n') ADVANCE(4841); + if (lookahead == 'r') ADVANCE(4925); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4780: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4781); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4781); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4781); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '+') ADVANCE(4907); + if (lookahead == '>') ADVANCE(4972); + if (lookahead == 'r') ADVANCE(4925); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4781: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4781); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4781); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '+') ADVANCE(4857); + if (lookahead == '>') ADVANCE(4973); + if (lookahead == 'r') ADVANCE(3872); + if (lookahead == 'u') ADVANCE(4953); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4782: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '+') ADVANCE(4857); + if (lookahead == '>') ADVANCE(4973); + if (lookahead == 'u') ADVANCE(4953); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4783: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4898); - if (lookahead == 'o') ADVANCE(4849); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '+') ADVANCE(4911); + if (lookahead == '>') ADVANCE(4975); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4784: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4838); - if (lookahead == 'o') ADVANCE(4875); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '+') ADVANCE(4859); + if (lookahead == '>') ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4785: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4833); - if (lookahead == 'o') ADVANCE(4797); - if (lookahead == 'u') ADVANCE(4897); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '-') ADVANCE(3718); + if (lookahead == '.') ADVANCE(4817); + if (lookahead == '_') ADVANCE(4793); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4994); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4786: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4832); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '-') ADVANCE(5015); + if (lookahead == '_') ADVANCE(4817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4787: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4926); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '-') ADVANCE(4835); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4788: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4889); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '-') ADVANCE(4969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4789: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '-') ADVANCE(4871); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4790: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4853); - if (lookahead == 'o') ADVANCE(4873); - if (lookahead == 's') ADVANCE(4818); - if (lookahead == 'x') ADVANCE(4864); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '-') ADVANCE(4855); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4791: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4821); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '-') ADVANCE(5016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4792: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4804); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '-') ADVANCE(4970); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4793: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '.') ADVANCE(4817); + if (lookahead == '_') ADVANCE(4793); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4794: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '.') ADVANCE(3813); + if (lookahead == '_') ADVANCE(4824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4795: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3882); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '.') ADVANCE(4826); + if (lookahead == '_') ADVANCE(4795); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4796: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '.') ADVANCE(5013); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4797); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4797: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4918); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '2') ADVANCE(5003); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5014); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4798: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4804); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == ':') ADVANCE(5005); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5008); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4799: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3986); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == ':') ADVANCE(5018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4800: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3994); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == ':') ADVANCE(5020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4801: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '=') ADVANCE(3882); + if (lookahead == '~') ADVANCE(3893); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4802: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4815); - if (lookahead == 'o') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '>') ADVANCE(3806); + if (lookahead == '~') ADVANCE(3891); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4803: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4817); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '~') ADVANCE(3891); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4804: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4745); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '>') ADVANCE(4364); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4805: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4360); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4806: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4899); - if (lookahead == 'o') ADVANCE(4856); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '>') ADVANCE(4352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4807: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4786); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '>') ADVANCE(4356); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4808: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4883); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(3806); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4809: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4875); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '>') ADVANCE(4974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4810: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4851); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '>') ADVANCE(4976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4811: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4885); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '>') ADVANCE(4978); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4812: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4765); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '>') ADVANCE(4979); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4813: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4882); + if (lookahead == 'N') ADVANCE(4984); + if (lookahead == 'f') ADVANCE(5002); + if (lookahead == 'n') ADVANCE(4984); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4814: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'T') ADVANCE(5017); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4815: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '_') ADVANCE(4817); + if (lookahead == 'b') ADVANCE(4116); + if (lookahead == 'o') ADVANCE(4132); + if (lookahead == 'x') ADVANCE(4137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4819); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4816: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3750); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '_') ADVANCE(4817); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4817: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4827); - if (lookahead == 't') ADVANCE(4920); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '_') ADVANCE(4817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4818: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4836); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '_') ADVANCE(4817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4786); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4819: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3836); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '_') ADVANCE(4817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4818); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4820: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '_') ADVANCE(4817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4819); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4821: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '_') ADVANCE(4821); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4822: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4829); + if (lookahead == '_') ADVANCE(4822); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4823); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4823: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4798); + if (lookahead == '_') ADVANCE(4823); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4825); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4823); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4824: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4788); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == '_') ADVANCE(4824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4825: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4852); + if (lookahead == '_') ADVANCE(4826); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4826); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4826: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4847); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '_') ADVANCE(4826); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4827: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4895); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'a') ADVANCE(4879); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4828: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4903); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'a') ADVANCE(4943); + if (lookahead == 'o') ADVANCE(4894); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4829: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4844); + if (lookahead == 'a') ADVANCE(4883); + if (lookahead == 'o') ADVANCE(4920); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4830: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4904); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'a') ADVANCE(4878); + if (lookahead == 'o') ADVANCE(4842); + if (lookahead == 'u') ADVANCE(4942); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4831: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4907); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'a') ADVANCE(4877); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4832: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4957); + if (lookahead == 'a') ADVANCE(4971); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4833: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4801); - if (lookahead == 't') ADVANCE(4791); + if (lookahead == 'a') ADVANCE(4934); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4834: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4891); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'a') ADVANCE(4931); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4835: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'a') ADVANCE(4898); + if (lookahead == 'o') ADVANCE(4918); + if (lookahead == 's') ADVANCE(4863); + if (lookahead == 'x') ADVANCE(4909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4836: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3878); - if (lookahead == 'r') ADVANCE(3880); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'c') ADVANCE(4866); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4837: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4894); - if (lookahead == 'r') ADVANCE(4881); - if (lookahead == 'x') ADVANCE(4868); + if (lookahead == 'c') ADVANCE(4849); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4838: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4894); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'd') ADVANCE(3868); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4839: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'd') ADVANCE(3907); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4840: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4824); - if (lookahead == 's') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'd') ADVANCE(3926); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4841: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'd') ADVANCE(4938); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4842: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4839); + if (lookahead == 'd') ADVANCE(4963); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4843: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4787); + if (lookahead == 'd') ADVANCE(4849); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4844: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4801); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'e') ADVANCE(4029); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4845: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4793); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4846: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3726); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4847: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3832); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(4860); + if (lookahead == 'o') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4848: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4957); + if (lookahead == 'e') ADVANCE(4862); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4849: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4892); + if (lookahead == 'e') ADVANCE(4790); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4850: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4796); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(4805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4851: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4922); + if (lookahead == 'e') ADVANCE(4944); + if (lookahead == 'o') ADVANCE(4901); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4852: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4917); + if (lookahead == 'e') ADVANCE(4831); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4853: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4795); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(4928); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4854: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4759); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(4920); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4855: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4919); + if (lookahead == 'e') ADVANCE(4896); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4856: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4867); + if (lookahead == 'e') ADVANCE(4930); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4857: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4914); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(4810); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4858: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4794); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'e') ADVANCE(4927); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4859: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4875); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'e') ADVANCE(4932); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4860: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'f') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4861: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'f') ADVANCE(3792); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4862: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4764); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'g') ADVANCE(4872); + if (lookahead == 't') ADVANCE(4965); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4863: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4878); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'h') ADVANCE(4881); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4864: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'h') ADVANCE(3878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4865: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4900); - if (lookahead == 'u') ADVANCE(4841); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'h') ADVANCE(3876); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4866: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4921); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'h') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4867: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4957); + if (lookahead == 'h') ADVANCE(4874); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4868: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4863); - if (lookahead == 't') ADVANCE(4813); + if (lookahead == 'i') ADVANCE(4843); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4869: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4913); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'i') ADVANCE(4833); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4870: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4732); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'i') ADVANCE(4897); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4871: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3830); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'i') ADVANCE(4892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4872: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3828); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'i') ADVANCE(4940); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4873: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'i') ADVANCE(4948); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4874: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'i') ADVANCE(4889); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4875: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'i') ADVANCE(4949); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4876: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4916); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'i') ADVANCE(4952); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4877: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4807); + if (lookahead == 'k') ADVANCE(5002); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4878: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4899); + if (lookahead == 'k') ADVANCE(4846); + if (lookahead == 't') ADVANCE(4836); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4879: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4792); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'l') ADVANCE(4936); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4880: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'l') ADVANCE(4020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4881: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4859); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'l') ADVANCE(3922); + if (lookahead == 'r') ADVANCE(3924); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4882: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4848); + if (lookahead == 'l') ADVANCE(4939); + if (lookahead == 'r') ADVANCE(4926); + if (lookahead == 'x') ADVANCE(4913); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4883: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'l') ADVANCE(4939); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4884: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4762); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'l') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4885: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4843); + if (lookahead == 'l') ADVANCE(4869); + if (lookahead == 's') ADVANCE(5002); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4886: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4911); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'l') ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4887: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'l') ADVANCE(4884); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4888: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4767); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'l') ADVANCE(4832); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4889: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4957); + if (lookahead == 'l') ADVANCE(4846); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4890: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3818); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'n') ADVANCE(4838); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4891: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'n') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4892: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4897); - if (lookahead == 't') ADVANCE(4825); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'n') ADVANCE(3874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4893: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4743); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'n') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4894: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4801); + if (lookahead == 'n') ADVANCE(4937); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4895: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4910); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'n') ADVANCE(4841); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4896: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'n') ADVANCE(4967); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4897: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4957); + if (lookahead == 'n') ADVANCE(4962); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4898: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4791); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'n') ADVANCE(4840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4899: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4745); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'o') ADVANCE(4804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4900: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4964); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4901: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4789); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4912); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4902: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4733); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4959); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4903: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4742); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4839); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4904: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4819); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4920); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4905: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4761); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4917); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4906: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4951); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4907: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4820); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4809); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4908: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4739); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4923); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4909: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4766); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4919); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4910: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4809); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'o') ADVANCE(4945); + if (lookahead == 'u') ADVANCE(4886); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4911: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4896); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'o') ADVANCE(4966); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4912: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4841); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'p') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4913: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4799); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'p') ADVANCE(4908); + if (lookahead == 't') ADVANCE(4858); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4914: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4905); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4915: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4842); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4947); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'r') ADVANCE(4777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4916: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4801); - if (lookahead == 'y') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'r') ADVANCE(3872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4917: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4801); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'r') ADVANCE(3870); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4918: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4844); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'r') ADVANCE(3930); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4919: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4879); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'r') ADVANCE(3928); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4920: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4882); + if (lookahead == 'r') ADVANCE(5002); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4921: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4961); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4922: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4957); + if (lookahead == 'r') ADVANCE(4852); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4923: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4811); + if (lookahead == 'r') ADVANCE(4944); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4924: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4830); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4837); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4925: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4831); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4783); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4926: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(4957); + if (lookahead == 'r') ADVANCE(4904); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4927: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4893); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4928: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4929); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4929: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4807); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4930: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4888); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4931: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3618); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4956); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4932: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4933); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4933: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'r') ADVANCE(4812); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4934: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 's') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4935: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4752); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 's') ADVANCE(3860); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4936: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 's') ADVANCE(4845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4937: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4947); + if (lookahead == 's') ADVANCE(4942); + if (lookahead == 't') ADVANCE(4870); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4938: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4943); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 's') ADVANCE(4788); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4939: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4944); + if (lookahead == 's') ADVANCE(4846); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4940: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 's') ADVANCE(4955); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4941: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4952); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 's') ADVANCE(4792); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4942: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4953); + if (lookahead == 't') ADVANCE(5002); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4943: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4950); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(4836); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4944: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4951); + if (lookahead == 't') ADVANCE(4790); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4945: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(5004); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4946: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(4834); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4947: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4957); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 't') ADVANCE(4778); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4948: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4939); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 't') ADVANCE(4787); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4949: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4940); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(4864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4950: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(4806); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4951: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4942); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 't') ADVANCE(4789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4952: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4954); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(4865); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4953: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4955); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 't') ADVANCE(4784); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4954: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(4811); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4955: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4957); + if (lookahead == 't') ADVANCE(4854); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4956: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4956); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 't') ADVANCE(4941); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4957: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4957); + if (lookahead == 'u') ADVANCE(4886); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4958: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4753); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4844); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4959: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4950); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4960: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4963); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4887); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4992); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4961: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4961); + if (lookahead == 'u') ADVANCE(4846); + if (lookahead == 'y') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4962: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4846); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4963: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4889); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4964: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4746); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4924); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4965: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4769); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4927); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4966: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'u') ADVANCE(4954); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4967: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'v') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4968: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'v') ADVANCE(4856); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4969: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4753); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'w') ADVANCE(4875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4970: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4964); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'w') ADVANCE(4876); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4971: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4965); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == 'y') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4972: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4966); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '|') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4973: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4967); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '|') ADVANCE(3655); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4974: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4754); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '|') ADVANCE(3659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4975: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4974); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '|') ADVANCE(3652); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4976: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4976); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '|') ADVANCE(3658); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4977: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if (lookahead == '|') ADVANCE(3653); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4978: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(3995); - if (lookahead == '(') ADVANCE(3887); - if (lookahead == '[') ADVANCE(4150); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(3656); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4979: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5025); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == 'r') ADVANCE(5028); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '|') ADVANCE(3657); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4980: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5020); - if (lookahead == '>') ADVANCE(4304); - if (lookahead == 'u') ADVANCE(5032); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4797); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4981: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5014); - if (lookahead == '-') ADVANCE(5016); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == '_') ADVANCE(5016); - if (lookahead == 'r') ADVANCE(5028); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4982: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5026); - if (lookahead == '>') ADVANCE(4292); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4992); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4983: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5021); - if (lookahead == '>') ADVANCE(4296); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4988); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4984: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(5060); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4989); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4985: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4986: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4997); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4987: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(5006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4998); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4988: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5005); - if (lookahead == '_') ADVANCE(4989); + ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + lookahead == 'i') ADVANCE(4995); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4989: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5005); - if (lookahead == '_') ADVANCE(4989); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4996); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4990: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3769); - if (lookahead == '_') ADVANCE(5006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4991: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5009); - if (lookahead == '_') ADVANCE(4992); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4992: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5009); - if (lookahead == '_') ADVANCE(4992); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4993: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(5051); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5059); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4984); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4994: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5065); - if (lookahead == '_') ADVANCE(4994); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4997); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4995: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5065); - if (lookahead == '_') ADVANCE(4996); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4997); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4986); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4996: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5065); - if (lookahead == '_') ADVANCE(4996); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4997); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4987); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4997: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5065); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4997); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4999); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 4998: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5062); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5000); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 4999: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5064); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5000: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4320); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5002); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 5001: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4316); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(5001); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5002: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4308); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); END_STATE(); case 5003: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4312); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4798); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5004: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5004); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5005: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5008); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5006: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5006); END_STATE(); case 5007: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5008); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5008); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(5007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5008: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5008); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5009: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5009); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5010: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4814); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5011: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5012); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4800); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5012: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4796); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5013: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5014: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5016); - if (lookahead == 'o') ADVANCE(5000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4798); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5015: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5016); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5009); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5016: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5010); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5017: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(5023); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5018: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3979); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5012); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5019: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3987); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5020: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(5001); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5019); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5021: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(5029); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5022: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3971); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); case 5023: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(5031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '$') ADVANCE(4038); + if (lookahead == '(') ADVANCE(3931); + if (lookahead == '[') ADVANCE(4192); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5024: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(5022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '+') ADVANCE(5066); + if (lookahead == '>') ADVANCE(4342); + if (lookahead == 'r') ADVANCE(5069); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5025: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(5000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '+') ADVANCE(5061); + if (lookahead == '>') ADVANCE(4346); + if (lookahead == 'u') ADVANCE(5073); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5026: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(5036); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '+') ADVANCE(5055); + if (lookahead == '-') ADVANCE(5057); + if (lookahead == '>') ADVANCE(4342); + if (lookahead == '_') ADVANCE(5057); + if (lookahead == 'r') ADVANCE(5069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5027: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '+') ADVANCE(5067); + if (lookahead == '>') ADVANCE(4334); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5028: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4982); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '+') ADVANCE(5062); + if (lookahead == '>') ADVANCE(4338); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5029: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '-') ADVANCE(5101); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5030: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5003); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5031: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(5019); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5051); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5032: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4983); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(5047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5033: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(5002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(5046); + if (lookahead == '_') ADVANCE(5034); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5034: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(5046); + if (lookahead == '_') ADVANCE(5034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5035: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5018); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(3811); + if (lookahead == '_') ADVANCE(5047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5036: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5033); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(5050); + if (lookahead == '_') ADVANCE(5037); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5037: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '.') ADVANCE(5050); + if (lookahead == '_') ADVANCE(5037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5038: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4056); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '2') ADVANCE(5092); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5100); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5039: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4065); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == ':') ADVANCE(5103); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5040: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == ':') ADVANCE(5105); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5041: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '>') ADVANCE(4362); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5042: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4069); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '>') ADVANCE(4358); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5043: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5038); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '>') ADVANCE(4350); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5044: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5040); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '>') ADVANCE(4354); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5045: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5039); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5046: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5041); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5047: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5049); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5047); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5048: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5050); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5049); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5049: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4051); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5050: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4061); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5051: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4109); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5051); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5052: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4101); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5053); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5053: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5053); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5054: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4999); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5054); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5055: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5053); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5057); + if (lookahead == 'o') ADVANCE(5041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5056: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4114); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5057); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5057: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4104); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == '_') ADVANCE(5057); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5058: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4121); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'a') ADVANCE(5064); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5059: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4109); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'e') ADVANCE(4022); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5060: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5056); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'e') ADVANCE(4030); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5061: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5054); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'e') ADVANCE(5042); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5062: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5057); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'e') ADVANCE(5070); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5063: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'l') ADVANCE(4014); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5064: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5063); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'l') ADVANCE(5072); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5065: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5065); + if (lookahead == 'l') ADVANCE(5063); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5066: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5130); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == 'I') ADVANCE(5147); - if (lookahead == 'i') ADVANCE(5147); - if (lookahead == 'r') ADVANCE(5134); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'o') ADVANCE(5041); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5067: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5130); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == 'r') ADVANCE(5134); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'o') ADVANCE(5077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5068: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5123); - if (lookahead == '>') ADVANCE(4304); - if (lookahead == 'u') ADVANCE(5140); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(5076); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5069: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - ADVANCE_MAP( - '+', 5111, - '-', 5113, - '>', 4300, - 'I', 5147, - '_', 5113, - 'i', 5147, - 'r', 5134, - 'B', 4078, - 'b', 4078, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(5027); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5070: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5111); - if (lookahead == '-') ADVANCE(5113); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == '_') ADVANCE(5113); - if (lookahead == 'r') ADVANCE(5134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(5071); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5071: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5131); - if (lookahead == '>') ADVANCE(4292); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'r') ADVANCE(5044); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5072: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5124); - if (lookahead == '>') ADVANCE(4296); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 's') ADVANCE(5060); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5073: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(5166); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 't') ADVANCE(5028); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5074: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 't') ADVANCE(5043); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5075: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(5065); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5083); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5076: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3891); - if (lookahead == '_') ADVANCE(5110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(5059); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5077: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3891); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(5074); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5078: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5080); - if (lookahead == '_') ADVANCE(5105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5083); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5079: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5080); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4098); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5080: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3673); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4107); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5081: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5104); - if (lookahead == '_') ADVANCE(5082); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + lookahead == 'i') ADVANCE(5088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5082: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5104); - if (lookahead == '_') ADVANCE(5082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5089); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5083: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3890); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4111); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5084: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5109); - if (lookahead == '_') ADVANCE(5085); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5079); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5085: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5109); - if (lookahead == '_') ADVANCE(5085); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5081); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5086: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(5161); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5170); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5087: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5175); - if (lookahead == '_') ADVANCE(5087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4036); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5090); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5082); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5088: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5175); - if (lookahead == '_') ADVANCE(5089); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5090); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5090); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5089: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5175); - if (lookahead == '_') ADVANCE(5089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5090); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5091); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5090: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5175); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5090); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4093); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5091: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5171); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4103); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5092: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5174); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4151); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5093: - 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(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5094: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4316); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5029); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5095: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4308); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5040); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5096: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4312); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5094); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5097: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5147); - if (lookahead == '_') ADVANCE(5113); - if (lookahead == 'i') ADVANCE(5147); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5113); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5098: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5147); - if (lookahead == '_') ADVANCE(5113); - if (lookahead == 'i') ADVANCE(5118); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5113); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4146); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5099: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5147); - if (lookahead == 'i') ADVANCE(5147); - if (lookahead == 'r') ADVANCE(5143); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4163); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5100: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5147); - if (lookahead == 'i') ADVANCE(5147); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4151); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5101: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5147); - if (lookahead == 'i') ADVANCE(5118); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5097); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5102: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5147); - if (lookahead == 'i') ADVANCE(5129); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5095); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5103: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5098); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5104: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5104); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5039); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5105: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5104); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5106: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5107); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); END_STATE(); case 5107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '+') ADVANCE(5163); + if (lookahead == '>') ADVANCE(4342); + if (lookahead == 'I') ADVANCE(5180); + if (lookahead == 'i') ADVANCE(5180); + if (lookahead == 'r') ADVANCE(5167); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '+') ADVANCE(5163); + if (lookahead == '>') ADVANCE(4342); + if (lookahead == 'r') ADVANCE(5167); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '+') ADVANCE(5156); + if (lookahead == '>') ADVANCE(4346); + if (lookahead == 'u') ADVANCE(5173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + ADVANCE_MAP( + '+', 5144, + '-', 5146, + '>', 4342, + 'I', 5180, + '_', 5146, + 'i', 5180, + 'r', 5167, + 'B', 4120, + 'b', 4120, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5113); - if (lookahead == 'o') ADVANCE(5093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '+') ADVANCE(5144); + if (lookahead == '-') ADVANCE(5146); + if (lookahead == '>') ADVANCE(4342); + if (lookahead == '_') ADVANCE(5146); + if (lookahead == 'r') ADVANCE(5167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5113); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '+') ADVANCE(5164); + if (lookahead == '>') ADVANCE(4334); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '+') ADVANCE(5157); + if (lookahead == '>') ADVANCE(4338); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5115); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '-') ADVANCE(5199); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5145); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(3935); + if (lookahead == '_') ADVANCE(5143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(3935); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(5137); + if (lookahead == '_') ADVANCE(5120); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3979); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(5137); + if (lookahead == '_') ADVANCE(5120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3987); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(5142); + if (lookahead == '_') ADVANCE(5122); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5119); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '.') ADVANCE(5142); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5094); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '2') ADVANCE(5194); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5203); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5135); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == ':') ADVANCE(5204); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == ':') ADVANCE(5207); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(3971); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '>') ADVANCE(4362); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5139); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '>') ADVANCE(4358); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5126); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '>') ADVANCE(4350); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '>') ADVANCE(4354); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5093); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'I') ADVANCE(5180); + if (lookahead == '_') ADVANCE(5146); + if (lookahead == 'i') ADVANCE(5180); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5146); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5144); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'I') ADVANCE(5180); + if (lookahead == '_') ADVANCE(5146); + if (lookahead == 'i') ADVANCE(5151); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5146); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'I') ADVANCE(5180); + if (lookahead == 'i') ADVANCE(5180); + if (lookahead == 'r') ADVANCE(5176); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5143); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'I') ADVANCE(5180); + if (lookahead == 'i') ADVANCE(5180); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5071); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'I') ADVANCE(5180); + if (lookahead == 'i') ADVANCE(5151); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5136); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'I') ADVANCE(5180); + if (lookahead == 'i') ADVANCE(5162); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5096); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'u') ADVANCE(5128); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5152); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(5121); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5140); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(5072); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(5095); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5141); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5128); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5152); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5142); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5141); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5146); + if (lookahead == 'o') ADVANCE(5126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5145: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5146); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5146: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5152); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5148); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5148: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4068); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == '_') ADVANCE(5148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4059); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'a') ADVANCE(5160); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5150: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5157); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'a') ADVANCE(5178); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5158); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5152: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4069); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'c') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5153: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5149); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'e') ADVANCE(4022); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5150); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'e') ADVANCE(4030); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5155: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5148); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'e') ADVANCE(5152); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5156: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5151); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'e') ADVANCE(5127); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5157: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'e') ADVANCE(5168); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5160); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'k') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4051); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'l') ADVANCE(4014); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5160: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4061); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'l') ADVANCE(5172); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5161: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4111); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'l') ADVANCE(5159); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5162: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4101); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5163: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5073); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'o') ADVANCE(5126); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5164: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5092); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'o') ADVANCE(5177); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5165: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5163); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'r') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5166: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5172); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'r') ADVANCE(5176); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5167: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5164); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'r') ADVANCE(5112); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5168: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'r') ADVANCE(5169); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5169: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4123); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'r') ADVANCE(5129); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5170: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4111); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'u') ADVANCE(5161); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5171: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5168); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5172: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4117); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 's') ADVANCE(5154); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5173: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5091); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 't') ADVANCE(5113); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5174: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5173); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 't') ADVANCE(5128); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5175: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5175); + if (lookahead == 'u') ADVANCE(5161); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5176: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3773); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(5179); - if (lookahead == ']') ADVANCE(3648); - if (lookahead == '_') ADVANCE(5180); - if (lookahead == '\t' || - lookahead == ' ') SKIP(304); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(5153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5177: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(5179); - if (lookahead == '_') ADVANCE(5180); - if (lookahead == '\t' || - lookahead == ' ') SKIP(306); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'u') ADVANCE(5174); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5178: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(5181); - if (lookahead == '_') ADVANCE(5178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'y') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5179: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5180: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5181: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4110); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5182: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5183); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4101); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5183: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5190); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5184: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5184); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5191); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5185: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5222); - if (lookahead == '>') ADVANCE(4303); - if (lookahead == 'r') ADVANCE(5225); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4111); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5186: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5217); - if (lookahead == '>') ADVANCE(4307); - if (lookahead == 'u') ADVANCE(5229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5182); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5187: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5223); - if (lookahead == '>') ADVANCE(4295); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5183); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5188: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5218); - if (lookahead == '>') ADVANCE(4299); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5181); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5189: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(5256); - if (lookahead == '_') ADVANCE(5208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5208); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5184); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5190: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(5257); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5192); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5191: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5208); - if (lookahead == '_') ADVANCE(5192); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5240); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5208); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5193); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5192: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5208); - if (lookahead == '_') ADVANCE(5192); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5208); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4093); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5193: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3772); - if (lookahead == '_') ADVANCE(5213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5212); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4103); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5194: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5195: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5194); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5196: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5197); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5114); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5197: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(5245); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5255); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5125); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5198: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5246); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5249); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5199: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5259); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5205); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5200: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5261); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5197); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5201: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4323); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5202: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4319); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4165); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5203: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4311); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5204: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5201); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5205: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(5258); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4159); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5206: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5208); - if (lookahead == 'b') ADVANCE(4077); - if (lookahead == 'o') ADVANCE(4093); - if (lookahead == 'x') ADVANCE(4098); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5210); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5124); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5207: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5208); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5208); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5206); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5208: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5208); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); END_STATE(); case 5209: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5189); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3815); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(5212); + if (lookahead == ']') ADVANCE(3687); + if (lookahead == '_') ADVANCE(5213); + if (lookahead == '\t' || + lookahead == ' ') SKIP(330); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5210: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5209); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(5212); + if (lookahead == '_') ADVANCE(5213); + if (lookahead == '\t' || + lookahead == ' ') SKIP(332); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5211: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5210); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(5214); + if (lookahead == '_') ADVANCE(5211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5212: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(5212); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5212); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4010); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5213: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(5213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5212); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5214: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(5219); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(5214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5215: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3985); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(5216); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5216: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(5216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5217: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5202); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); END_STATE(); case 5218: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5226); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '+') ADVANCE(5253); + if (lookahead == '>') ADVANCE(4345); + if (lookahead == 'r') ADVANCE(5256); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5219: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5228); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '+') ADVANCE(5248); + if (lookahead == '>') ADVANCE(4349); + if (lookahead == 'u') ADVANCE(5260); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5220: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(3976); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '+') ADVANCE(5254); + if (lookahead == '>') ADVANCE(4337); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5221: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '+') ADVANCE(5249); + if (lookahead == '>') ADVANCE(4341); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5222: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5201); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '-') ADVANCE(5286); + if (lookahead == '_') ADVANCE(5239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5223: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5233); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '-') ADVANCE(5287); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5224: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '.') ADVANCE(5239); + if (lookahead == '_') ADVANCE(5225); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5225: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5187); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '.') ADVANCE(5239); + if (lookahead == '_') ADVANCE(5225); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5226: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5227); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '.') ADVANCE(3814); + if (lookahead == '_') ADVANCE(5244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5243); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5227: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5204); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '.') ADVANCE(5284); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5228); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5228: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(5216); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '2') ADVANCE(5276); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5285); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5229: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5188); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == ':') ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5279); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5230: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5203); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == ':') ADVANCE(5289); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5231: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5221); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == ':') ADVANCE(5291); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5232: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5215); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4365); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5233: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5230); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4361); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5234: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5197); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5263); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5234); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5235: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '>') ADVANCE(4357); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5236: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5238); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'T') ADVANCE(5288); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5237: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5242); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5239); + if (lookahead == 'b') ADVANCE(4119); + if (lookahead == 'o') ADVANCE(4135); + if (lookahead == 'x') ADVANCE(4140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5238: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5241); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5239); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5239: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5240: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5236); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5222); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5241: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5237); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5240); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5242: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5243: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5243); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5243); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5244: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(5244); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == '_') ADVANCE(5244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5243); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5245: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5198); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'a') ADVANCE(5250); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5246: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5249); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'e') ADVANCE(4028); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5247: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-' || - lookahead == '.' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(5263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5247); + if (lookahead == 'e') ADVANCE(4036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5248: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5248); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'e') ADVANCE(5233); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5249: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'e') ADVANCE(5257); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5250: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5190); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'l') ADVANCE(5259); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5251: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5205); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'l') ADVANCE(4019); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5252: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5200); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'l') ADVANCE(5251); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5253: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'o') ADVANCE(5232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5254: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5234); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'o') ADVANCE(5264); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5255: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5198); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'r') ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5256: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5250); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'r') ADVANCE(5220); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5257: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5251); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'r') ADVANCE(5258); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5258: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5252); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'r') ADVANCE(5235); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5259: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5253); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 's') ADVANCE(5247); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5260: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 't') ADVANCE(5221); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5261: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5260); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 't') ADVANCE(5234); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5262: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5262); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'u') ADVANCE(5252); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5263: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if (lookahead == 'u') ADVANCE(5246); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5264: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5290); - if (lookahead == '>') ADVANCE(4300); - if (lookahead == 'r') ADVANCE(5293); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'u') ADVANCE(5261); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5265: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5285); - if (lookahead == '>') ADVANCE(4304); - if (lookahead == 'u') ADVANCE(5297); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5228); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5265); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5266: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5291); - if (lookahead == '>') ADVANCE(4292); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5267: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5286); - if (lookahead == '>') ADVANCE(4296); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5269); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5268: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(5319); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5273); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5269: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3770); - if (lookahead == '_') ADVANCE(5279); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5272); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5270: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5278); - if (lookahead == '_') ADVANCE(5271); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5310); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5271: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5278); - if (lookahead == '_') ADVANCE(5271); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5267); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5272: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(1660); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5268); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5273: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4320); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5274); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5274: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4316); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5275: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4308); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5276: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4312); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5229); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5277: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5277); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5279); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5278: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5278); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(5278); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5279: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5279); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5280: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5281); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5281); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5281: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5281); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5236); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5282: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(5288); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5231); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5283: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3979); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5227); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5284: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3987); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5265); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5285: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5274); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5229); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5286: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5294); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5280); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5287: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(3971); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5281); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5288: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5296); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5289: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5287); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5283); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5290: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5273); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5230); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5291: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5301); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5290); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5292: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5300); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5292); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5293: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5266); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); case 5294: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5295); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '+') ADVANCE(5322); + if (lookahead == '>') ADVANCE(4342); + if (lookahead == 'r') ADVANCE(5325); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5295: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5276); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '+') ADVANCE(5317); + if (lookahead == '>') ADVANCE(4346); + if (lookahead == 'u') ADVANCE(5329); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5296: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(5284); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '+') ADVANCE(5323); + if (lookahead == '>') ADVANCE(4334); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5297: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5267); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '+') ADVANCE(5318); + if (lookahead == '>') ADVANCE(4338); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5298: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5275); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '-') ADVANCE(5352); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5299: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5289); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5307); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '.') ADVANCE(5300); + if (lookahead == '_') ADVANCE(5309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5300: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5283); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '.') ADVANCE(5334); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5301: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5298); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '.') ADVANCE(3812); + if (lookahead == '_') ADVANCE(5309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5302: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5307); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '.') ADVANCE(5313); + if (lookahead == '_') ADVANCE(5303); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5303: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4066); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '.') ADVANCE(5313); + if (lookahead == '_') ADVANCE(5303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5304: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4057); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == ':') ADVANCE(1687); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5305: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5312); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '>') ADVANCE(4362); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5306: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5313); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '>') ADVANCE(4358); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5307: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4069); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '>') ADVANCE(4350); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5308: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5304); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '>') ADVANCE(4354); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5309: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5305); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '_') ADVANCE(5309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5310: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5303); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '_') ADVANCE(5311); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5311: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5306); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '_') ADVANCE(5311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5312: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5314); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '_') ADVANCE(5312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5313: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5315); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == '_') ADVANCE(5313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5314: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4051); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'a') ADVANCE(5320); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5315: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4061); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'e') ADVANCE(4022); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5316: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5268); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'e') ADVANCE(4030); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5317: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5272); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'e') ADVANCE(5306); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5318: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5316); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'e') ADVANCE(5326); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5319: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5321); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'l') ADVANCE(4014); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5320: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5317); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'l') ADVANCE(5328); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5321: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4115); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'l') ADVANCE(5319); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5322: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); + if (lookahead == 'o') ADVANCE(5305); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5323: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5331); - if (lookahead == '_') ADVANCE(5323); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4035); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'o') ADVANCE(5333); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5324: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3891); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(5332); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5325: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5332); - if (lookahead == '_') ADVANCE(5325); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(5296); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5326: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5348); - if (lookahead == '_') ADVANCE(5338); - if (lookahead == 'i') ADVANCE(5348); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5338); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(5327); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5327: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5348); - if (lookahead == '_') ADVANCE(5338); - if (lookahead == 'i') ADVANCE(5340); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5338); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'r') ADVANCE(5308); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5328: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5348); - if (lookahead == 'i') ADVANCE(5348); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 's') ADVANCE(5316); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5329: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5348); - if (lookahead == 'i') ADVANCE(5340); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(5297); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5330: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5348); - if (lookahead == 'i') ADVANCE(5344); - if (lookahead == 's') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 't') ADVANCE(5307); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5331: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5331); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(5321); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5340); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5332: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5332); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(5315); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5333: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5333); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(5330); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5334: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5334); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3966); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '{') ADVANCE(4193); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5335: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5336); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5340); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5336: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4108); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5337: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5338); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4099); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5338: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5345); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5339: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(5347); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5346); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5340: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4111); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5341: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5337); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5342: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(5341); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5338); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5343: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5336); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5344: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(4085); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5339); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5345: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5347); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5346: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5348); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5347: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(4085); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5348: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4103); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5349: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4062); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5298); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5350: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5349); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5304); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5351: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5351); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5349); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5352: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(5541); - if (lookahead == '$') ADVANCE(3652); - if (lookahead == '(') ADVANCE(3853); - if (lookahead == '.') ADVANCE(5354); - if (lookahead == '_') ADVANCE(5355); - if (lookahead == '\t' || - lookahead == ' ') SKIP(306); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5354); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5353: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(5356); - if (lookahead == '_') ADVANCE(5353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5350); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5354: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3969); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4157); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5355: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5355); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); END_STATE(); case 5356: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5356); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3970); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(5389); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5357: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5358); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(3935); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5358: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(3712); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5359: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5359); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(5358); + if (lookahead == '_') ADVANCE(5374); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5360: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(3996); - if (lookahead == '(') ADVANCE(3887); - if (lookahead == '{') ADVANCE(4151); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5533); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(5358); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5361: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3032); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5361); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(5372); + if (lookahead == '_') ADVANCE(5361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5362: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3005); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5362); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(3934); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5363: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3008); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5363); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(5373); + if (lookahead == '_') ADVANCE(5363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5364: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3060); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5366); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(5390); + if (lookahead == '_') ADVANCE(5378); + if (lookahead == 'i') ADVANCE(5390); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5365: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3060); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5367); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(5390); + if (lookahead == '_') ADVANCE(5378); + if (lookahead == 'i') ADVANCE(5381); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5378); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5366: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3060); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5365); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(5390); + if (lookahead == 'i') ADVANCE(5390); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5367: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3060); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5368); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(5390); + if (lookahead == 'i') ADVANCE(5381); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5368: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3060); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5369); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(5390); + if (lookahead == 'i') ADVANCE(5385); + if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5369: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5369); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5370: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5372); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5371); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5371: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5372: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5371); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5372); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5373: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5374); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5374: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5375); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5374); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5375: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5375); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5376); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5376: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3113); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5376); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5377: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2922); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5377); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5378); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5378); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5378: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2993); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5378); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5378); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5379: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == 'e') ADVANCE(5380); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(5379); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5380: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == 'n') ADVANCE(5381); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'a') ADVANCE(5388); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5381: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2948); - if (lookahead == 'v') ADVANCE(1825); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5382: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2948); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5382); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'c') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5383: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2951); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5383); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'e') ADVANCE(5382); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5384: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3014); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5384); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'k') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5385: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2928); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5385); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5386: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3110); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5388); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'r') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5387: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3110); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5389); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 's') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5388: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3110); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5387); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'y') ADVANCE(4127); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5389: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3110); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5390); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '{') ADVANCE(4193); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5390: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3110); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5391); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4120); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5391: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3110); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5391); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4104); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5392: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3011); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5392); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5391); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5393: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == 'e') ADVANCE(5394); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); END_STATE(); case 5394: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == 'n') ADVANCE(5395); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '#') ADVANCE(5586); + if (lookahead == '$') ADVANCE(3691); + if (lookahead == '(') ADVANCE(3895); + if (lookahead == '.') ADVANCE(5396); + if (lookahead == '_') ADVANCE(5397); + if (lookahead == '\t' || + lookahead == ' ') SKIP(332); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5401); END_STATE(); case 5395: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2966); - if (lookahead == 'v') ADVANCE(3804); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '.') ADVANCE(5398); + if (lookahead == '_') ADVANCE(5395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5396: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5396); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5396); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4012); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5397: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2996); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5397); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5397); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5398: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5398); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5399: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3085); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5399); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5400); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5400); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5400: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3079); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5400); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(5400); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5401: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2925); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); END_STATE(); case 5402: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3023); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5402); + if (lookahead == '$') ADVANCE(4039); + if (lookahead == '(') ADVANCE(3931); + if (lookahead == '{') ADVANCE(4193); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5577); END_STATE(); case 5403: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3017); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + if (lookahead == ',') ADVANCE(3072); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5403); END_STATE(); case 5404: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2954); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + if (lookahead == ',') ADVANCE(3045); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5404); END_STATE(); case 5405: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3002); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + if (lookahead == ',') ADVANCE(3048); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5405); END_STATE(); case 5406: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3082); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5406); + if (lookahead == ',') ADVANCE(3100); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5408); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); case 5407: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3020); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5407); + if (lookahead == ',') ADVANCE(3100); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5409); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); case 5408: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2999); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5408); + if (lookahead == ',') ADVANCE(3100); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5407); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); case 5409: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == 'e') ADVANCE(5410); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5412); + if (lookahead == ',') ADVANCE(3100); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5410); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); case 5410: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == 'n') ADVANCE(5411); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5412); + if (lookahead == ',') ADVANCE(3100); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5411); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); case 5411: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3075); - if (lookahead == 'v') ADVANCE(3625); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5412); + if (lookahead == ',') ADVANCE(3100); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); END_STATE(); case 5412: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3075); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5412); + if (lookahead == ',') ADVANCE(3140); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5414); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); case 5413: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2933); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5413); + if (lookahead == ',') ADVANCE(3140); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5415); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); case 5414: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5414); + if (lookahead == ',') ADVANCE(3140); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5413); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); case 5415: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3029); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5415); + if (lookahead == ',') ADVANCE(3140); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5416); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); case 5416: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == 'e') ADVANCE(5417); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); + if (lookahead == ',') ADVANCE(3140); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5417); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); case 5417: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == 'n') ADVANCE(5418); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); + if (lookahead == ',') ADVANCE(3140); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); END_STATE(); case 5418: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2978); - if (lookahead == 'v') ADVANCE(3792); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); + if (lookahead == ',') ADVANCE(3153); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5418); END_STATE(); case 5419: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + if (lookahead == ',') ADVANCE(2962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); END_STATE(); case 5420: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2981); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + if (lookahead == ',') ADVANCE(3033); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5420); END_STATE(); case 5421: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3026); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5421); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == 'e') ADVANCE(5422); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); case 5422: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2984); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5422); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == 'n') ADVANCE(5423); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); case 5423: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5423); + if (lookahead == ',') ADVANCE(2988); + if (lookahead == 'v') ADVANCE(1869); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); case 5424: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5431); - if (lookahead == '_') ADVANCE(5424); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5431); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(2988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); END_STATE(); case 5425: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5432); - if (lookahead == '_') ADVANCE(5425); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + if (lookahead == ',') ADVANCE(2991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5425); END_STATE(); case 5426: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5427); - if (lookahead == '_') ADVANCE(5434); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5433); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3054); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5426); END_STATE(); case 5427: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5360); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(2968); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5427); END_STATE(); case 5428: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(5525); - if (lookahead == 'f') ADVANCE(3746); - if (lookahead == 'n') ADVANCE(3720); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3150); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5430); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); END_STATE(); case 5429: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5431); - if (lookahead == 'b') ADVANCE(5530); - if (lookahead == 'o') ADVANCE(5531); - if (lookahead == 'x') ADVANCE(5532); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5431); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3150); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5431); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); END_STATE(); case 5430: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5431); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5431); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5431); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3150); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5429); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); END_STATE(); case 5431: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5431); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5431); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3150); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5432); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); END_STATE(); case 5432: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5432); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + if (lookahead == ',') ADVANCE(3150); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5433); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); END_STATE(); case 5433: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5433); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5430); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5433); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3150); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); END_STATE(); case 5434: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5434); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5433); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3051); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5434); END_STATE(); case 5435: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5510); - if (lookahead == 'o') ADVANCE(5483); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == 'e') ADVANCE(5436); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); END_STATE(); case 5436: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5482); - if (lookahead == 'o') ADVANCE(5494); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == 'n') ADVANCE(5437); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); END_STATE(); case 5437: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5474); - if (lookahead == 'o') ADVANCE(5444); - if (lookahead == 'u') ADVANCE(5512); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3006); + if (lookahead == 'v') ADVANCE(3846); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); END_STATE(); case 5438: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5473); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); END_STATE(); case 5439: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5523); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3036); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5439); END_STATE(); case 5440: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5504); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3103); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5440); END_STATE(); case 5441: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5465); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3125); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5441); END_STATE(); case 5442: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5466); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3119); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5442); END_STATE(); case 5443: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5454); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(2965); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5443); END_STATE(); case 5444: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5521); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3063); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5444); END_STATE(); case 5445: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5450); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3057); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5445); END_STATE(); case 5446: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5463); - if (lookahead == 'o') ADVANCE(3741); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(2994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5446); END_STATE(); case 5447: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5464); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3042); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5447); END_STATE(); case 5448: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3639); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3122); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5448); END_STATE(); case 5449: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3752); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3060); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5449); END_STATE(); case 5450: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3800); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3039); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5450); END_STATE(); case 5451: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3732); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == 'e') ADVANCE(5452); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5452: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3736); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == 'n') ADVANCE(5453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5453: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3634); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3115); + if (lookahead == 'v') ADVANCE(3665); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5454: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3789); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3115); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5455: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3710); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(2973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); END_STATE(); case 5456: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5511); - if (lookahead == 'o') ADVANCE(5488); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(2976); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5457: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5438); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3069); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5457); END_STATE(); case 5458: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5503); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == 'e') ADVANCE(5459); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 5459: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5500); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == 'n') ADVANCE(5460); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 5460: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5496); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3018); + if (lookahead == 'v') ADVANCE(3834); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 5461: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5400); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3018); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 5462: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5406); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3021); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5462); END_STATE(); case 5463: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(3621); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3066); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5463); END_STATE(); case 5464: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(5471); - if (lookahead == 't') ADVANCE(5519); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(3024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5464); END_STATE(); case 5465: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3780); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == ',') ADVANCE(2970); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5465); END_STATE(); case 5466: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3757); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '.') ADVANCE(5475); + if (lookahead == '_') ADVANCE(5466); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5467: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(5472); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '.') ADVANCE(5476); + if (lookahead == '_') ADVANCE(5467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5476); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); case 5468: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5445); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '.') ADVANCE(5469); + if (lookahead == '_') ADVANCE(5478); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5477); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5469: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5440); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '.') ADVANCE(5402); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5470: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5486); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '.') ADVANCE(3713); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); case 5471: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5508); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '.') ADVANCE(5470); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); case 5472: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5478); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'N') ADVANCE(5569); + if (lookahead == 'f') ADVANCE(3788); + if (lookahead == 'n') ADVANCE(3762); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5473: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3706); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '_') ADVANCE(5475); + if (lookahead == 'b') ADVANCE(5574); + if (lookahead == 'o') ADVANCE(5575); + if (lookahead == 'x') ADVANCE(5576); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5474: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(5451); - if (lookahead == 't') ADVANCE(5442); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '_') ADVANCE(5475); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5475); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5475: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5469); - if (lookahead == 's') ADVANCE(3812); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '_') ADVANCE(5475); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5476: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5480); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '_') ADVANCE(5476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5476); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); case 5477: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5439); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '_') ADVANCE(5477); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5474); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5477); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5478: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5452); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == '_') ADVANCE(5478); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5477); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5479: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5453); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'a') ADVANCE(5554); + if (lookahead == 'o') ADVANCE(5527); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5480: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5399); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'a') ADVANCE(5526); + if (lookahead == 'o') ADVANCE(5538); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5481: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5507); - if (lookahead == 'r') ADVANCE(5499); - if (lookahead == 'x') ADVANCE(5492); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'a') ADVANCE(5518); + if (lookahead == 'o') ADVANCE(5488); + if (lookahead == 'u') ADVANCE(5556); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5482: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5509); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'a') ADVANCE(5517); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5483: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5506); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'a') ADVANCE(5567); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5484: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3629); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'a') ADVANCE(5548); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5485: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3784); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'c') ADVANCE(5509); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5486: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5520); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'c') ADVANCE(5510); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5487: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5517); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'c') ADVANCE(5498); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5488: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5491); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'd') ADVANCE(5565); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5489: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5495); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'd') ADVANCE(5494); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5490: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5502); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5507); + if (lookahead == 'o') ADVANCE(3783); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5491: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3727); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5508); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5492: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(5490); - if (lookahead == 't') ADVANCE(5459); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3679); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5493: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5518); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3794); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5494: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3714); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3842); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5495: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3661); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3774); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5496: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3795); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3778); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5497: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5457); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3674); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5498: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5443); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3831); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5499: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5489); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(3752); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5500: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5484); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5555); + if (lookahead == 'o') ADVANCE(5532); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5501: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5485); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5482); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5502: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5514); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5547); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5503: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5477); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5544); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5504: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1814); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5540); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5505: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5448); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5442); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5506: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5513); - if (lookahead == 't') ADVANCE(5470); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'e') ADVANCE(5448); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5507: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5449); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'f') ADVANCE(3661); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5508: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5515); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'g') ADVANCE(5515); + if (lookahead == 't') ADVANCE(5563); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5509: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5462); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'h') ADVANCE(3822); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5510: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5441); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'h') ADVANCE(3799); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5511: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1822); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'h') ADVANCE(5516); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5512: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1828); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'i') ADVANCE(5489); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5513: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1833); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'i') ADVANCE(5484); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5514: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1810); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'i') ADVANCE(5530); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5515: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5460); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'i') ADVANCE(5552); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5516: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5476); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5529); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'i') ADVANCE(5522); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5517: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5498); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'k') ADVANCE(3748); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5518: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5461); - if (lookahead == 'y') ADVANCE(3775); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'k') ADVANCE(5495); + if (lookahead == 't') ADVANCE(5486); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5519: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5501); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'l') ADVANCE(5513); + if (lookahead == 's') ADVANCE(3854); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5520: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5455); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'l') ADVANCE(5524); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5521: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5479); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'l') ADVANCE(5483); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5522: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(5458); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'l') ADVANCE(5496); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5523: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3807); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'l') ADVANCE(5497); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5524: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5529); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'l') ADVANCE(5441); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5525: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5370); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'l') ADVANCE(5551); + if (lookahead == 'r') ADVANCE(5543); + if (lookahead == 'x') ADVANCE(5536); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5526: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5386); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + if (lookahead == 'l') ADVANCE(5553); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5527: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5525); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'n') ADVANCE(5550); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5528: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5526); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + if (lookahead == 'n') ADVANCE(3669); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5529: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5376); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (lookahead == 'n') ADVANCE(3826); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); case 5530: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'n') ADVANCE(5564); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5531: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(5561); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5532: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(5535); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5533: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(5539); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5534: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'o') ADVANCE(5546); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5535: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'p') ADVANCE(3769); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5536: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'p') ADVANCE(5534); + if (lookahead == 't') ADVANCE(5503); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5537: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5562); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5538: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(3756); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5539: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(3699); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5540: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(3837); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5541: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5501); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5542: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5487); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5543: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5533); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5544: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5528); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5545: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5529); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5546: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5558); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5547: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'r') ADVANCE(5521); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5548: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(1858); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5549: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5492); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5550: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5557); + if (lookahead == 't') ADVANCE(5514); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5551: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5493); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5552: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5559); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5553: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 's') ADVANCE(5506); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5554: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(5485); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5555: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1866); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5556: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1872); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5557: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1877); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5558: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(1854); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5559: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 't') ADVANCE(5504); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5560: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5520); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5573); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5561: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5542); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5562: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5505); + if (lookahead == 'y') ADVANCE(3817); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5563: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5545); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5564: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5499); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5565: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'u') ADVANCE(5523); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5566: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'v') ADVANCE(5502); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5567: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'y') ADVANCE(3849); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5568: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5573); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5569: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5412); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5570: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5428); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + END_STATE(); + case 5571: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5569); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5572: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5570); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + END_STATE(); + case 5573: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5418); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + END_STATE(); + case 5574: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5530); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + lookahead == '_') ADVANCE(5574); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); - case 5531: + case 5575: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5531); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + lookahead == '_') ADVANCE(5575); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); - case 5532: + case 5576: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5532); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5576); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); - case 5533: + case 5577: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5534); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5533); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); END_STATE(); - case 5534: + case 5578: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '-' || + lookahead == '.' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(5579); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(5578); + END_STATE(); + case 5579: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 5535: + case 5580: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(5551); + if (lookahead == '#') ADVANCE(5596); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5536); + lookahead != '|') ADVANCE(5581); END_STATE(); - case 5536: + case 5581: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61035,20 +63204,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5536); + lookahead != '|') ADVANCE(5581); END_STATE(); - case 5537: + case 5582: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(5549); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5538); + if (lookahead == '#') ADVANCE(5594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5583); END_STATE(); - case 5538: + case 5583: 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(5538); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5583); END_STATE(); - case 5539: + case 5584: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(5548); + if (lookahead == '#') ADVANCE(5593); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -61057,9 +63226,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5540); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5585); END_STATE(); - case 5540: + case 5585: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61069,38 +63238,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5540); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5585); END_STATE(); - case 5541: + case 5586: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 5542: + case 5587: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1806); - if (lookahead == '\r') ADVANCE(1808); - if (lookahead != 0) ADVANCE(1808); + if (lookahead == '\n') ADVANCE(1850); + if (lookahead == '\r') ADVANCE(1852); + if (lookahead != 0) ADVANCE(1852); END_STATE(); - case 5543: + case 5588: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1805); + if (lookahead == '!') ADVANCE(1849); END_STATE(); - case 5544: + case 5589: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5534); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); END_STATE(); - case 5545: + case 5590: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4159); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4201); END_STATE(); - case 5546: + case 5591: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 5547: + case 5592: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); END_STATE(); - case 5548: + case 5593: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61110,13 +63279,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5540); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5585); END_STATE(); - case 5549: + case 5594: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5538); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5583); END_STATE(); - case 5550: + case 5595: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61124,9 +63293,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4422); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); END_STATE(); - case 5551: + case 5596: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -61134,26 +63303,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5536); + lookahead != '|') ADVANCE(5581); END_STATE(); - case 5552: + case 5597: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5554); + lookahead != '\n') ADVANCE(5599); END_STATE(); - case 5553: + case 5598: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(5552); + if (lookahead == '#') ADVANCE(5597); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(5553); + lookahead == ' ') ADVANCE(5598); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(5554); + lookahead != '\n') ADVANCE(5599); END_STATE(); - case 5554: + case 5599: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5554); + lookahead != '\n') ADVANCE(5599); END_STATE(); default: return false; @@ -61682,8181 +63851,8687 @@ 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 = 1701, .external_lex_state = 2}, - [2] = {.lex_state = 1723, .external_lex_state = 2}, - [3] = {.lex_state = 1723, .external_lex_state = 2}, - [4] = {.lex_state = 1723, .external_lex_state = 2}, - [5] = {.lex_state = 1723, .external_lex_state = 2}, - [6] = {.lex_state = 1723, .external_lex_state = 2}, - [7] = {.lex_state = 1723, .external_lex_state = 2}, - [8] = {.lex_state = 1723, .external_lex_state = 2}, - [9] = {.lex_state = 1723, .external_lex_state = 2}, - [10] = {.lex_state = 1723, .external_lex_state = 2}, - [11] = {.lex_state = 1723, .external_lex_state = 2}, - [12] = {.lex_state = 1723, .external_lex_state = 2}, - [13] = {.lex_state = 1723, .external_lex_state = 2}, - [14] = {.lex_state = 1723, .external_lex_state = 2}, - [15] = {.lex_state = 1723, .external_lex_state = 2}, - [16] = {.lex_state = 1723, .external_lex_state = 2}, - [17] = {.lex_state = 1723, .external_lex_state = 2}, - [18] = {.lex_state = 1723, .external_lex_state = 2}, - [19] = {.lex_state = 1723, .external_lex_state = 2}, - [20] = {.lex_state = 1723, .external_lex_state = 2}, - [21] = {.lex_state = 1723, .external_lex_state = 2}, - [22] = {.lex_state = 1723, .external_lex_state = 2}, - [23] = {.lex_state = 1723, .external_lex_state = 2}, - [24] = {.lex_state = 1723, .external_lex_state = 2}, - [25] = {.lex_state = 1723, .external_lex_state = 2}, - [26] = {.lex_state = 1723, .external_lex_state = 2}, - [27] = {.lex_state = 1723, .external_lex_state = 2}, - [28] = {.lex_state = 1723, .external_lex_state = 2}, - [29] = {.lex_state = 1723, .external_lex_state = 2}, - [30] = {.lex_state = 1723, .external_lex_state = 2}, - [31] = {.lex_state = 1723, .external_lex_state = 2}, - [32] = {.lex_state = 1723, .external_lex_state = 2}, - [33] = {.lex_state = 1723, .external_lex_state = 2}, - [34] = {.lex_state = 1723, .external_lex_state = 2}, - [35] = {.lex_state = 1723, .external_lex_state = 2}, - [36] = {.lex_state = 1723, .external_lex_state = 2}, - [37] = {.lex_state = 1719, .external_lex_state = 2}, - [38] = {.lex_state = 1719, .external_lex_state = 2}, - [39] = {.lex_state = 1719, .external_lex_state = 2}, - [40] = {.lex_state = 1719, .external_lex_state = 2}, - [41] = {.lex_state = 1719, .external_lex_state = 2}, - [42] = {.lex_state = 1719, .external_lex_state = 2}, - [43] = {.lex_state = 1719, .external_lex_state = 2}, - [44] = {.lex_state = 1719, .external_lex_state = 2}, - [45] = {.lex_state = 1719, .external_lex_state = 2}, - [46] = {.lex_state = 1719, .external_lex_state = 2}, - [47] = {.lex_state = 1719, .external_lex_state = 2}, - [48] = {.lex_state = 1719, .external_lex_state = 2}, - [49] = {.lex_state = 1719, .external_lex_state = 2}, - [50] = {.lex_state = 1719, .external_lex_state = 2}, - [51] = {.lex_state = 1719, .external_lex_state = 2}, - [52] = {.lex_state = 1719, .external_lex_state = 2}, - [53] = {.lex_state = 1719, .external_lex_state = 2}, - [54] = {.lex_state = 1719, .external_lex_state = 2}, - [55] = {.lex_state = 1719, .external_lex_state = 2}, - [56] = {.lex_state = 1719, .external_lex_state = 2}, - [57] = {.lex_state = 1719, .external_lex_state = 2}, - [58] = {.lex_state = 1719, .external_lex_state = 2}, - [59] = {.lex_state = 1719, .external_lex_state = 2}, - [60] = {.lex_state = 1719, .external_lex_state = 2}, - [61] = {.lex_state = 1719, .external_lex_state = 2}, - [62] = {.lex_state = 1719, .external_lex_state = 2}, - [63] = {.lex_state = 1719, .external_lex_state = 2}, - [64] = {.lex_state = 1719, .external_lex_state = 2}, - [65] = {.lex_state = 1719, .external_lex_state = 2}, - [66] = {.lex_state = 1719, .external_lex_state = 2}, - [67] = {.lex_state = 38, .external_lex_state = 2}, - [68] = {.lex_state = 1719, .external_lex_state = 2}, - [69] = {.lex_state = 38, .external_lex_state = 2}, - [70] = {.lex_state = 38, .external_lex_state = 2}, - [71] = {.lex_state = 38, .external_lex_state = 2}, - [72] = {.lex_state = 38, .external_lex_state = 2}, - [73] = {.lex_state = 38, .external_lex_state = 2}, - [74] = {.lex_state = 38, .external_lex_state = 2}, - [75] = {.lex_state = 1719, .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 = 1719, .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 = 38, .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 = 1719, .external_lex_state = 2}, - [106] = {.lex_state = 1719, .external_lex_state = 2}, - [107] = {.lex_state = 1719, .external_lex_state = 2}, - [108] = {.lex_state = 1719, .external_lex_state = 2}, - [109] = {.lex_state = 38, .external_lex_state = 2}, - [110] = {.lex_state = 38, .external_lex_state = 2}, - [111] = {.lex_state = 1719, .external_lex_state = 2}, - [112] = {.lex_state = 1719, .external_lex_state = 2}, - [113] = {.lex_state = 1719, .external_lex_state = 2}, - [114] = {.lex_state = 1719, .external_lex_state = 2}, - [115] = {.lex_state = 1719, .external_lex_state = 2}, - [116] = {.lex_state = 1719, .external_lex_state = 2}, - [117] = {.lex_state = 1719, .external_lex_state = 2}, - [118] = {.lex_state = 1719, .external_lex_state = 2}, - [119] = {.lex_state = 1719, .external_lex_state = 2}, - [120] = {.lex_state = 1719, .external_lex_state = 2}, - [121] = {.lex_state = 1719, .external_lex_state = 2}, - [122] = {.lex_state = 1719, .external_lex_state = 2}, - [123] = {.lex_state = 1719, .external_lex_state = 2}, - [124] = {.lex_state = 1719, .external_lex_state = 2}, - [125] = {.lex_state = 1719, .external_lex_state = 2}, - [126] = {.lex_state = 1719, .external_lex_state = 2}, - [127] = {.lex_state = 1719, .external_lex_state = 2}, - [128] = {.lex_state = 1719, .external_lex_state = 2}, - [129] = {.lex_state = 1719, .external_lex_state = 2}, - [130] = {.lex_state = 1719, .external_lex_state = 2}, - [131] = {.lex_state = 1719, .external_lex_state = 2}, - [132] = {.lex_state = 1719, .external_lex_state = 2}, - [133] = {.lex_state = 1719, .external_lex_state = 2}, - [134] = {.lex_state = 1719, .external_lex_state = 2}, - [135] = {.lex_state = 1719, .external_lex_state = 2}, - [136] = {.lex_state = 1719, .external_lex_state = 2}, - [137] = {.lex_state = 1719, .external_lex_state = 2}, - [138] = {.lex_state = 1719, .external_lex_state = 2}, - [139] = {.lex_state = 1719, .external_lex_state = 2}, - [140] = {.lex_state = 1719, .external_lex_state = 2}, - [141] = {.lex_state = 1719, .external_lex_state = 2}, - [142] = {.lex_state = 1719, .external_lex_state = 2}, - [143] = {.lex_state = 1719, .external_lex_state = 2}, - [144] = {.lex_state = 1719, .external_lex_state = 2}, - [145] = {.lex_state = 1719, .external_lex_state = 2}, - [146] = {.lex_state = 1719, .external_lex_state = 2}, - [147] = {.lex_state = 1719, .external_lex_state = 2}, - [148] = {.lex_state = 1719, .external_lex_state = 2}, - [149] = {.lex_state = 1719, .external_lex_state = 2}, - [150] = {.lex_state = 1719, .external_lex_state = 2}, - [151] = {.lex_state = 1719, .external_lex_state = 2}, + [1] = {.lex_state = 1749, .external_lex_state = 2}, + [2] = {.lex_state = 1771, .external_lex_state = 2}, + [3] = {.lex_state = 1771, .external_lex_state = 2}, + [4] = {.lex_state = 1771, .external_lex_state = 2}, + [5] = {.lex_state = 1771, .external_lex_state = 2}, + [6] = {.lex_state = 1771, .external_lex_state = 2}, + [7] = {.lex_state = 1771, .external_lex_state = 2}, + [8] = {.lex_state = 1771, .external_lex_state = 2}, + [9] = {.lex_state = 1771, .external_lex_state = 2}, + [10] = {.lex_state = 1771, .external_lex_state = 2}, + [11] = {.lex_state = 1771, .external_lex_state = 2}, + [12] = {.lex_state = 1771, .external_lex_state = 2}, + [13] = {.lex_state = 1771, .external_lex_state = 2}, + [14] = {.lex_state = 1771, .external_lex_state = 2}, + [15] = {.lex_state = 1771, .external_lex_state = 2}, + [16] = {.lex_state = 1771, .external_lex_state = 2}, + [17] = {.lex_state = 1771, .external_lex_state = 2}, + [18] = {.lex_state = 1771, .external_lex_state = 2}, + [19] = {.lex_state = 1771, .external_lex_state = 2}, + [20] = {.lex_state = 1771, .external_lex_state = 2}, + [21] = {.lex_state = 1771, .external_lex_state = 2}, + [22] = {.lex_state = 1771, .external_lex_state = 2}, + [23] = {.lex_state = 1771, .external_lex_state = 2}, + [24] = {.lex_state = 1771, .external_lex_state = 2}, + [25] = {.lex_state = 1771, .external_lex_state = 2}, + [26] = {.lex_state = 1771, .external_lex_state = 2}, + [27] = {.lex_state = 1771, .external_lex_state = 2}, + [28] = {.lex_state = 1771, .external_lex_state = 2}, + [29] = {.lex_state = 1771, .external_lex_state = 2}, + [30] = {.lex_state = 1771, .external_lex_state = 2}, + [31] = {.lex_state = 1771, .external_lex_state = 2}, + [32] = {.lex_state = 1771, .external_lex_state = 2}, + [33] = {.lex_state = 1771, .external_lex_state = 2}, + [34] = {.lex_state = 1771, .external_lex_state = 2}, + [35] = {.lex_state = 1771, .external_lex_state = 2}, + [36] = {.lex_state = 1771, .external_lex_state = 2}, + [37] = {.lex_state = 1767, .external_lex_state = 2}, + [38] = {.lex_state = 1767, .external_lex_state = 2}, + [39] = {.lex_state = 1767, .external_lex_state = 2}, + [40] = {.lex_state = 1767, .external_lex_state = 2}, + [41] = {.lex_state = 1767, .external_lex_state = 2}, + [42] = {.lex_state = 1767, .external_lex_state = 2}, + [43] = {.lex_state = 1767, .external_lex_state = 2}, + [44] = {.lex_state = 1767, .external_lex_state = 2}, + [45] = {.lex_state = 1767, .external_lex_state = 2}, + [46] = {.lex_state = 1767, .external_lex_state = 2}, + [47] = {.lex_state = 1767, .external_lex_state = 2}, + [48] = {.lex_state = 1767, .external_lex_state = 2}, + [49] = {.lex_state = 1767, .external_lex_state = 2}, + [50] = {.lex_state = 1767, .external_lex_state = 2}, + [51] = {.lex_state = 1767, .external_lex_state = 2}, + [52] = {.lex_state = 1767, .external_lex_state = 2}, + [53] = {.lex_state = 1767, .external_lex_state = 2}, + [54] = {.lex_state = 1767, .external_lex_state = 2}, + [55] = {.lex_state = 1767, .external_lex_state = 2}, + [56] = {.lex_state = 1767, .external_lex_state = 2}, + [57] = {.lex_state = 1767, .external_lex_state = 2}, + [58] = {.lex_state = 1767, .external_lex_state = 2}, + [59] = {.lex_state = 1767, .external_lex_state = 2}, + [60] = {.lex_state = 1767, .external_lex_state = 2}, + [61] = {.lex_state = 1767, .external_lex_state = 2}, + [62] = {.lex_state = 1767, .external_lex_state = 2}, + [63] = {.lex_state = 1767, .external_lex_state = 2}, + [64] = {.lex_state = 47, .external_lex_state = 2}, + [65] = {.lex_state = 47, .external_lex_state = 2}, + [66] = {.lex_state = 1767, .external_lex_state = 2}, + [67] = {.lex_state = 47, .external_lex_state = 2}, + [68] = {.lex_state = 47, .external_lex_state = 2}, + [69] = {.lex_state = 47, .external_lex_state = 2}, + [70] = {.lex_state = 1767, .external_lex_state = 2}, + [71] = {.lex_state = 47, .external_lex_state = 2}, + [72] = {.lex_state = 47, .external_lex_state = 2}, + [73] = {.lex_state = 47, .external_lex_state = 2}, + [74] = {.lex_state = 47, .external_lex_state = 2}, + [75] = {.lex_state = 47, .external_lex_state = 2}, + [76] = {.lex_state = 47, .external_lex_state = 2}, + [77] = {.lex_state = 47, .external_lex_state = 2}, + [78] = {.lex_state = 47, .external_lex_state = 2}, + [79] = {.lex_state = 47, .external_lex_state = 2}, + [80] = {.lex_state = 47, .external_lex_state = 2}, + [81] = {.lex_state = 47, .external_lex_state = 2}, + [82] = {.lex_state = 47, .external_lex_state = 2}, + [83] = {.lex_state = 47, .external_lex_state = 2}, + [84] = {.lex_state = 47, .external_lex_state = 2}, + [85] = {.lex_state = 47, .external_lex_state = 2}, + [86] = {.lex_state = 47, .external_lex_state = 2}, + [87] = {.lex_state = 47, .external_lex_state = 2}, + [88] = {.lex_state = 47, .external_lex_state = 2}, + [89] = {.lex_state = 47, .external_lex_state = 2}, + [90] = {.lex_state = 47, .external_lex_state = 2}, + [91] = {.lex_state = 47, .external_lex_state = 2}, + [92] = {.lex_state = 47, .external_lex_state = 2}, + [93] = {.lex_state = 47, .external_lex_state = 2}, + [94] = {.lex_state = 47, .external_lex_state = 2}, + [95] = {.lex_state = 47, .external_lex_state = 2}, + [96] = {.lex_state = 47, .external_lex_state = 2}, + [97] = {.lex_state = 47, .external_lex_state = 2}, + [98] = {.lex_state = 47, .external_lex_state = 2}, + [99] = {.lex_state = 47, .external_lex_state = 2}, + [100] = {.lex_state = 47, .external_lex_state = 2}, + [101] = {.lex_state = 1767, .external_lex_state = 2}, + [102] = {.lex_state = 47, .external_lex_state = 2}, + [103] = {.lex_state = 1767, .external_lex_state = 2}, + [104] = {.lex_state = 1767, .external_lex_state = 2}, + [105] = {.lex_state = 1767, .external_lex_state = 2}, + [106] = {.lex_state = 1767, .external_lex_state = 2}, + [107] = {.lex_state = 1767, .external_lex_state = 2}, + [108] = {.lex_state = 47, .external_lex_state = 2}, + [109] = {.lex_state = 1767, .external_lex_state = 2}, + [110] = {.lex_state = 1767, .external_lex_state = 2}, + [111] = {.lex_state = 1767, .external_lex_state = 2}, + [112] = {.lex_state = 1767, .external_lex_state = 2}, + [113] = {.lex_state = 1767, .external_lex_state = 2}, + [114] = {.lex_state = 1767, .external_lex_state = 2}, + [115] = {.lex_state = 47, .external_lex_state = 2}, + [116] = {.lex_state = 1767, .external_lex_state = 2}, + [117] = {.lex_state = 1767, .external_lex_state = 2}, + [118] = {.lex_state = 1767, .external_lex_state = 2}, + [119] = {.lex_state = 1767, .external_lex_state = 2}, + [120] = {.lex_state = 1767, .external_lex_state = 2}, + [121] = {.lex_state = 1767, .external_lex_state = 2}, + [122] = {.lex_state = 1767, .external_lex_state = 2}, + [123] = {.lex_state = 1767, .external_lex_state = 2}, + [124] = {.lex_state = 1767, .external_lex_state = 2}, + [125] = {.lex_state = 1767, .external_lex_state = 2}, + [126] = {.lex_state = 1767, .external_lex_state = 2}, + [127] = {.lex_state = 1767, .external_lex_state = 2}, + [128] = {.lex_state = 1767, .external_lex_state = 2}, + [129] = {.lex_state = 1767, .external_lex_state = 2}, + [130] = {.lex_state = 1767, .external_lex_state = 2}, + [131] = {.lex_state = 1767, .external_lex_state = 2}, + [132] = {.lex_state = 1767, .external_lex_state = 2}, + [133] = {.lex_state = 1767, .external_lex_state = 2}, + [134] = {.lex_state = 1767, .external_lex_state = 2}, + [135] = {.lex_state = 1767, .external_lex_state = 2}, + [136] = {.lex_state = 1767, .external_lex_state = 2}, + [137] = {.lex_state = 1767, .external_lex_state = 2}, + [138] = {.lex_state = 1767, .external_lex_state = 2}, + [139] = {.lex_state = 1767, .external_lex_state = 2}, + [140] = {.lex_state = 1767, .external_lex_state = 2}, + [141] = {.lex_state = 1767, .external_lex_state = 2}, + [142] = {.lex_state = 1767, .external_lex_state = 2}, + [143] = {.lex_state = 1767, .external_lex_state = 2}, + [144] = {.lex_state = 1767, .external_lex_state = 2}, + [145] = {.lex_state = 1767, .external_lex_state = 2}, + [146] = {.lex_state = 1767, .external_lex_state = 2}, + [147] = {.lex_state = 1767, .external_lex_state = 2}, + [148] = {.lex_state = 1767, .external_lex_state = 2}, + [149] = {.lex_state = 1767, .external_lex_state = 2}, + [150] = {.lex_state = 2, .external_lex_state = 2}, + [151] = {.lex_state = 2, .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}, + [153] = {.lex_state = 1, .external_lex_state = 2}, + [154] = {.lex_state = 1, .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}, + [159] = {.lex_state = 2, .external_lex_state = 2}, + [160] = {.lex_state = 2, .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 = 229, .external_lex_state = 2}, - [167] = {.lex_state = 229, .external_lex_state = 2}, - [168] = {.lex_state = 229, .external_lex_state = 2}, - [169] = {.lex_state = 229, .external_lex_state = 2}, - [170] = {.lex_state = 229, .external_lex_state = 2}, - [171] = {.lex_state = 229, .external_lex_state = 2}, - [172] = {.lex_state = 229, .external_lex_state = 2}, - [173] = {.lex_state = 229, .external_lex_state = 2}, - [174] = {.lex_state = 229, .external_lex_state = 2}, - [175] = {.lex_state = 229, .external_lex_state = 2}, - [176] = {.lex_state = 229, .external_lex_state = 2}, - [177] = {.lex_state = 229, .external_lex_state = 2}, - [178] = {.lex_state = 229, .external_lex_state = 2}, - [179] = {.lex_state = 229, .external_lex_state = 2}, - [180] = {.lex_state = 229, .external_lex_state = 2}, - [181] = {.lex_state = 229, .external_lex_state = 2}, - [182] = {.lex_state = 229, .external_lex_state = 2}, - [183] = {.lex_state = 229, .external_lex_state = 2}, - [184] = {.lex_state = 229, .external_lex_state = 2}, - [185] = {.lex_state = 229, .external_lex_state = 2}, - [186] = {.lex_state = 229, .external_lex_state = 2}, - [187] = {.lex_state = 229, .external_lex_state = 2}, - [188] = {.lex_state = 229, .external_lex_state = 2}, - [189] = {.lex_state = 229, .external_lex_state = 2}, - [190] = {.lex_state = 229, .external_lex_state = 2}, - [191] = {.lex_state = 229, .external_lex_state = 2}, - [192] = {.lex_state = 229, .external_lex_state = 2}, - [193] = {.lex_state = 229, .external_lex_state = 2}, - [194] = {.lex_state = 229, .external_lex_state = 2}, - [195] = {.lex_state = 229, .external_lex_state = 2}, - [196] = {.lex_state = 229, .external_lex_state = 2}, - [197] = {.lex_state = 229, .external_lex_state = 2}, - [198] = {.lex_state = 229, .external_lex_state = 2}, - [199] = {.lex_state = 229, .external_lex_state = 2}, - [200] = {.lex_state = 229, .external_lex_state = 2}, - [201] = {.lex_state = 229, .external_lex_state = 2}, - [202] = {.lex_state = 229, .external_lex_state = 2}, - [203] = {.lex_state = 229, .external_lex_state = 2}, - [204] = {.lex_state = 1723, .external_lex_state = 2}, - [205] = {.lex_state = 1723, .external_lex_state = 2}, - [206] = {.lex_state = 1723, .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 = 38, .external_lex_state = 2}, - [219] = {.lex_state = 38, .external_lex_state = 2}, - [220] = {.lex_state = 37, .external_lex_state = 2}, - [221] = {.lex_state = 37, .external_lex_state = 2}, - [222] = {.lex_state = 38, .external_lex_state = 2}, - [223] = {.lex_state = 38, .external_lex_state = 2}, - [224] = {.lex_state = 37, .external_lex_state = 2}, - [225] = {.lex_state = 41, .external_lex_state = 2}, - [226] = {.lex_state = 41, .external_lex_state = 2}, - [227] = {.lex_state = 41, .external_lex_state = 2}, - [228] = {.lex_state = 41, .external_lex_state = 2}, - [229] = {.lex_state = 41, .external_lex_state = 2}, - [230] = {.lex_state = 41, .external_lex_state = 2}, - [231] = {.lex_state = 41, .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 = 1701, .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 = 1719, .external_lex_state = 2}, - [252] = {.lex_state = 38, .external_lex_state = 2}, - [253] = {.lex_state = 41, .external_lex_state = 2}, - [254] = {.lex_state = 1719, .external_lex_state = 2}, - [255] = {.lex_state = 1719, .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 = 1719, .external_lex_state = 2}, - [280] = {.lex_state = 41, .external_lex_state = 2}, - [281] = {.lex_state = 1719, .external_lex_state = 2}, - [282] = {.lex_state = 1719, .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 = 1719, .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 = 41, .external_lex_state = 2}, - [304] = {.lex_state = 41, .external_lex_state = 2}, - [305] = {.lex_state = 41, .external_lex_state = 2}, - [306] = {.lex_state = 1719, .external_lex_state = 2}, - [307] = {.lex_state = 1719, .external_lex_state = 2}, - [308] = {.lex_state = 1719, .external_lex_state = 2}, - [309] = {.lex_state = 1719, .external_lex_state = 2}, - [310] = {.lex_state = 1719, .external_lex_state = 2}, - [311] = {.lex_state = 1719, .external_lex_state = 2}, - [312] = {.lex_state = 1719, .external_lex_state = 2}, - [313] = {.lex_state = 38, .external_lex_state = 2}, - [314] = {.lex_state = 41, .external_lex_state = 2}, - [315] = {.lex_state = 1719, .external_lex_state = 2}, - [316] = {.lex_state = 1719, .external_lex_state = 2}, - [317] = {.lex_state = 230, .external_lex_state = 2}, - [318] = {.lex_state = 230, .external_lex_state = 2}, - [319] = {.lex_state = 230, .external_lex_state = 2}, - [320] = {.lex_state = 1719, .external_lex_state = 2}, - [321] = {.lex_state = 136, .external_lex_state = 2}, - [322] = {.lex_state = 230, .external_lex_state = 2}, - [323] = {.lex_state = 41, .external_lex_state = 2}, - [324] = {.lex_state = 41, .external_lex_state = 2}, - [325] = {.lex_state = 230, .external_lex_state = 2}, - [326] = {.lex_state = 41, .external_lex_state = 2}, - [327] = {.lex_state = 230, .external_lex_state = 2}, - [328] = {.lex_state = 230, .external_lex_state = 2}, - [329] = {.lex_state = 1719, .external_lex_state = 2}, - [330] = {.lex_state = 41, .external_lex_state = 2}, - [331] = {.lex_state = 1719, .external_lex_state = 2}, - [332] = {.lex_state = 230, .external_lex_state = 2}, - [333] = {.lex_state = 134, .external_lex_state = 2}, - [334] = {.lex_state = 127, .external_lex_state = 2}, - [335] = {.lex_state = 125, .external_lex_state = 2}, - [336] = {.lex_state = 137, .external_lex_state = 2}, - [337] = {.lex_state = 136, .external_lex_state = 2}, - [338] = {.lex_state = 137, .external_lex_state = 2}, - [339] = {.lex_state = 134, .external_lex_state = 2}, - [340] = {.lex_state = 113, .external_lex_state = 2}, - [341] = {.lex_state = 130, .external_lex_state = 2}, - [342] = {.lex_state = 115, .external_lex_state = 2}, - [343] = {.lex_state = 135, .external_lex_state = 2}, - [344] = {.lex_state = 135, .external_lex_state = 2}, - [345] = {.lex_state = 137, .external_lex_state = 2}, - [346] = {.lex_state = 137, .external_lex_state = 2}, - [347] = {.lex_state = 137, .external_lex_state = 2}, - [348] = {.lex_state = 137, .external_lex_state = 2}, - [349] = {.lex_state = 129, .external_lex_state = 2}, - [350] = {.lex_state = 129, .external_lex_state = 2}, - [351] = {.lex_state = 118, .external_lex_state = 2}, - [352] = {.lex_state = 117, .external_lex_state = 2}, - [353] = {.lex_state = 135, .external_lex_state = 2}, - [354] = {.lex_state = 130, .external_lex_state = 2}, - [355] = {.lex_state = 135, .external_lex_state = 2}, - [356] = {.lex_state = 135, .external_lex_state = 2}, - [357] = {.lex_state = 130, .external_lex_state = 2}, - [358] = {.lex_state = 135, .external_lex_state = 2}, - [359] = {.lex_state = 117, .external_lex_state = 2}, - [360] = {.lex_state = 158, .external_lex_state = 2}, - [361] = {.lex_state = 158, .external_lex_state = 2}, - [362] = {.lex_state = 158, .external_lex_state = 2}, - [363] = {.lex_state = 130, .external_lex_state = 2}, - [364] = {.lex_state = 126, .external_lex_state = 2}, - [365] = {.lex_state = 130, .external_lex_state = 2}, - [366] = {.lex_state = 128, .external_lex_state = 2}, - [367] = {.lex_state = 118, .external_lex_state = 2}, - [368] = {.lex_state = 131, .external_lex_state = 2}, - [369] = {.lex_state = 118, .external_lex_state = 2}, - [370] = {.lex_state = 118, .external_lex_state = 2}, - [371] = {.lex_state = 171, .external_lex_state = 2}, - [372] = {.lex_state = 171, .external_lex_state = 2}, - [373] = {.lex_state = 131, .external_lex_state = 2}, - [374] = {.lex_state = 114, .external_lex_state = 2}, - [375] = {.lex_state = 171, .external_lex_state = 2}, - [376] = {.lex_state = 118, .external_lex_state = 2}, - [377] = {.lex_state = 158, .external_lex_state = 2}, + [162] = {.lex_state = 6, .external_lex_state = 2}, + [163] = {.lex_state = 6, .external_lex_state = 2}, + [164] = {.lex_state = 255, .external_lex_state = 2}, + [165] = {.lex_state = 255, .external_lex_state = 2}, + [166] = {.lex_state = 255, .external_lex_state = 2}, + [167] = {.lex_state = 255, .external_lex_state = 2}, + [168] = {.lex_state = 255, .external_lex_state = 2}, + [169] = {.lex_state = 255, .external_lex_state = 2}, + [170] = {.lex_state = 255, .external_lex_state = 2}, + [171] = {.lex_state = 255, .external_lex_state = 2}, + [172] = {.lex_state = 255, .external_lex_state = 2}, + [173] = {.lex_state = 255, .external_lex_state = 2}, + [174] = {.lex_state = 255, .external_lex_state = 2}, + [175] = {.lex_state = 255, .external_lex_state = 2}, + [176] = {.lex_state = 255, .external_lex_state = 2}, + [177] = {.lex_state = 255, .external_lex_state = 2}, + [178] = {.lex_state = 255, .external_lex_state = 2}, + [179] = {.lex_state = 255, .external_lex_state = 2}, + [180] = {.lex_state = 255, .external_lex_state = 2}, + [181] = {.lex_state = 255, .external_lex_state = 2}, + [182] = {.lex_state = 255, .external_lex_state = 2}, + [183] = {.lex_state = 255, .external_lex_state = 2}, + [184] = {.lex_state = 255, .external_lex_state = 2}, + [185] = {.lex_state = 255, .external_lex_state = 2}, + [186] = {.lex_state = 255, .external_lex_state = 2}, + [187] = {.lex_state = 255, .external_lex_state = 2}, + [188] = {.lex_state = 255, .external_lex_state = 2}, + [189] = {.lex_state = 255, .external_lex_state = 2}, + [190] = {.lex_state = 255, .external_lex_state = 2}, + [191] = {.lex_state = 255, .external_lex_state = 2}, + [192] = {.lex_state = 255, .external_lex_state = 2}, + [193] = {.lex_state = 255, .external_lex_state = 2}, + [194] = {.lex_state = 255, .external_lex_state = 2}, + [195] = {.lex_state = 255, .external_lex_state = 2}, + [196] = {.lex_state = 255, .external_lex_state = 2}, + [197] = {.lex_state = 255, .external_lex_state = 2}, + [198] = {.lex_state = 255, .external_lex_state = 2}, + [199] = {.lex_state = 255, .external_lex_state = 2}, + [200] = {.lex_state = 255, .external_lex_state = 2}, + [201] = {.lex_state = 255, .external_lex_state = 2}, + [202] = {.lex_state = 1771, .external_lex_state = 2}, + [203] = {.lex_state = 1771, .external_lex_state = 2}, + [204] = {.lex_state = 1771, .external_lex_state = 2}, + [205] = {.lex_state = 46, .external_lex_state = 2}, + [206] = {.lex_state = 46, .external_lex_state = 2}, + [207] = {.lex_state = 46, .external_lex_state = 2}, + [208] = {.lex_state = 46, .external_lex_state = 2}, + [209] = {.lex_state = 46, .external_lex_state = 2}, + [210] = {.lex_state = 46, .external_lex_state = 2}, + [211] = {.lex_state = 46, .external_lex_state = 2}, + [212] = {.lex_state = 46, .external_lex_state = 2}, + [213] = {.lex_state = 46, .external_lex_state = 2}, + [214] = {.lex_state = 46, .external_lex_state = 2}, + [215] = {.lex_state = 46, .external_lex_state = 2}, + [216] = {.lex_state = 46, .external_lex_state = 2}, + [217] = {.lex_state = 47, .external_lex_state = 2}, + [218] = {.lex_state = 46, .external_lex_state = 2}, + [219] = {.lex_state = 47, .external_lex_state = 2}, + [220] = {.lex_state = 46, .external_lex_state = 2}, + [221] = {.lex_state = 47, .external_lex_state = 2}, + [222] = {.lex_state = 47, .external_lex_state = 2}, + [223] = {.lex_state = 50, .external_lex_state = 2}, + [224] = {.lex_state = 1767, .external_lex_state = 2}, + [225] = {.lex_state = 1767, .external_lex_state = 2}, + [226] = {.lex_state = 1767, .external_lex_state = 2}, + [227] = {.lex_state = 1767, .external_lex_state = 2}, + [228] = {.lex_state = 1767, .external_lex_state = 2}, + [229] = {.lex_state = 50, .external_lex_state = 2}, + [230] = {.lex_state = 1749, .external_lex_state = 2}, + [231] = {.lex_state = 50, .external_lex_state = 2}, + [232] = {.lex_state = 50, .external_lex_state = 2}, + [233] = {.lex_state = 50, .external_lex_state = 2}, + [234] = {.lex_state = 50, .external_lex_state = 2}, + [235] = {.lex_state = 50, .external_lex_state = 2}, + [236] = {.lex_state = 50, .external_lex_state = 2}, + [237] = {.lex_state = 50, .external_lex_state = 2}, + [238] = {.lex_state = 50, .external_lex_state = 2}, + [239] = {.lex_state = 50, .external_lex_state = 2}, + [240] = {.lex_state = 50, .external_lex_state = 2}, + [241] = {.lex_state = 50, .external_lex_state = 2}, + [242] = {.lex_state = 50, .external_lex_state = 2}, + [243] = {.lex_state = 50, .external_lex_state = 2}, + [244] = {.lex_state = 50, .external_lex_state = 2}, + [245] = {.lex_state = 50, .external_lex_state = 2}, + [246] = {.lex_state = 50, .external_lex_state = 2}, + [247] = {.lex_state = 50, .external_lex_state = 2}, + [248] = {.lex_state = 50, .external_lex_state = 2}, + [249] = {.lex_state = 50, .external_lex_state = 2}, + [250] = {.lex_state = 50, .external_lex_state = 2}, + [251] = {.lex_state = 50, .external_lex_state = 2}, + [252] = {.lex_state = 50, .external_lex_state = 2}, + [253] = {.lex_state = 50, .external_lex_state = 2}, + [254] = {.lex_state = 50, .external_lex_state = 2}, + [255] = {.lex_state = 50, .external_lex_state = 2}, + [256] = {.lex_state = 50, .external_lex_state = 2}, + [257] = {.lex_state = 50, .external_lex_state = 2}, + [258] = {.lex_state = 50, .external_lex_state = 2}, + [259] = {.lex_state = 50, .external_lex_state = 2}, + [260] = {.lex_state = 50, .external_lex_state = 2}, + [261] = {.lex_state = 50, .external_lex_state = 2}, + [262] = {.lex_state = 50, .external_lex_state = 2}, + [263] = {.lex_state = 50, .external_lex_state = 2}, + [264] = {.lex_state = 50, .external_lex_state = 2}, + [265] = {.lex_state = 50, .external_lex_state = 2}, + [266] = {.lex_state = 50, .external_lex_state = 2}, + [267] = {.lex_state = 50, .external_lex_state = 2}, + [268] = {.lex_state = 50, .external_lex_state = 2}, + [269] = {.lex_state = 50, .external_lex_state = 2}, + [270] = {.lex_state = 50, .external_lex_state = 2}, + [271] = {.lex_state = 50, .external_lex_state = 2}, + [272] = {.lex_state = 50, .external_lex_state = 2}, + [273] = {.lex_state = 50, .external_lex_state = 2}, + [274] = {.lex_state = 50, .external_lex_state = 2}, + [275] = {.lex_state = 50, .external_lex_state = 2}, + [276] = {.lex_state = 50, .external_lex_state = 2}, + [277] = {.lex_state = 50, .external_lex_state = 2}, + [278] = {.lex_state = 50, .external_lex_state = 2}, + [279] = {.lex_state = 50, .external_lex_state = 2}, + [280] = {.lex_state = 50, .external_lex_state = 2}, + [281] = {.lex_state = 50, .external_lex_state = 2}, + [282] = {.lex_state = 50, .external_lex_state = 2}, + [283] = {.lex_state = 50, .external_lex_state = 2}, + [284] = {.lex_state = 50, .external_lex_state = 2}, + [285] = {.lex_state = 50, .external_lex_state = 2}, + [286] = {.lex_state = 50, .external_lex_state = 2}, + [287] = {.lex_state = 50, .external_lex_state = 2}, + [288] = {.lex_state = 1767, .external_lex_state = 2}, + [289] = {.lex_state = 50, .external_lex_state = 2}, + [290] = {.lex_state = 50, .external_lex_state = 2}, + [291] = {.lex_state = 50, .external_lex_state = 2}, + [292] = {.lex_state = 50, .external_lex_state = 2}, + [293] = {.lex_state = 50, .external_lex_state = 2}, + [294] = {.lex_state = 50, .external_lex_state = 2}, + [295] = {.lex_state = 50, .external_lex_state = 2}, + [296] = {.lex_state = 50, .external_lex_state = 2}, + [297] = {.lex_state = 50, .external_lex_state = 2}, + [298] = {.lex_state = 50, .external_lex_state = 2}, + [299] = {.lex_state = 50, .external_lex_state = 2}, + [300] = {.lex_state = 50, .external_lex_state = 2}, + [301] = {.lex_state = 47, .external_lex_state = 2}, + [302] = {.lex_state = 1767, .external_lex_state = 2}, + [303] = {.lex_state = 1767, .external_lex_state = 2}, + [304] = {.lex_state = 50, .external_lex_state = 2}, + [305] = {.lex_state = 1767, .external_lex_state = 2}, + [306] = {.lex_state = 1767, .external_lex_state = 2}, + [307] = {.lex_state = 1767, .external_lex_state = 2}, + [308] = {.lex_state = 1767, .external_lex_state = 2}, + [309] = {.lex_state = 1767, .external_lex_state = 2}, + [310] = {.lex_state = 47, .external_lex_state = 2}, + [311] = {.lex_state = 1767, .external_lex_state = 2}, + [312] = {.lex_state = 50, .external_lex_state = 2}, + [313] = {.lex_state = 1767, .external_lex_state = 2}, + [314] = {.lex_state = 162, .external_lex_state = 2}, + [315] = {.lex_state = 256, .external_lex_state = 2}, + [316] = {.lex_state = 1767, .external_lex_state = 2}, + [317] = {.lex_state = 256, .external_lex_state = 2}, + [318] = {.lex_state = 1767, .external_lex_state = 2}, + [319] = {.lex_state = 1767, .external_lex_state = 2}, + [320] = {.lex_state = 256, .external_lex_state = 2}, + [321] = {.lex_state = 50, .external_lex_state = 2}, + [322] = {.lex_state = 256, .external_lex_state = 2}, + [323] = {.lex_state = 50, .external_lex_state = 2}, + [324] = {.lex_state = 256, .external_lex_state = 2}, + [325] = {.lex_state = 50, .external_lex_state = 2}, + [326] = {.lex_state = 256, .external_lex_state = 2}, + [327] = {.lex_state = 256, .external_lex_state = 2}, + [328] = {.lex_state = 256, .external_lex_state = 2}, + [329] = {.lex_state = 1767, .external_lex_state = 2}, + [330] = {.lex_state = 50, .external_lex_state = 2}, + [331] = {.lex_state = 160, .external_lex_state = 2}, + [332] = {.lex_state = 162, .external_lex_state = 2}, + [333] = {.lex_state = 163, .external_lex_state = 2}, + [334] = {.lex_state = 163, .external_lex_state = 2}, + [335] = {.lex_state = 153, .external_lex_state = 2}, + [336] = {.lex_state = 151, .external_lex_state = 2}, + [337] = {.lex_state = 163, .external_lex_state = 2}, + [338] = {.lex_state = 156, .external_lex_state = 2}, + [339] = {.lex_state = 139, .external_lex_state = 2}, + [340] = {.lex_state = 141, .external_lex_state = 2}, + [341] = {.lex_state = 155, .external_lex_state = 2}, + [342] = {.lex_state = 155, .external_lex_state = 2}, + [343] = {.lex_state = 161, .external_lex_state = 2}, + [344] = {.lex_state = 161, .external_lex_state = 2}, + [345] = {.lex_state = 160, .external_lex_state = 2}, + [346] = {.lex_state = 163, .external_lex_state = 2}, + [347] = {.lex_state = 163, .external_lex_state = 2}, + [348] = {.lex_state = 163, .external_lex_state = 2}, + [349] = {.lex_state = 161, .external_lex_state = 2}, + [350] = {.lex_state = 143, .external_lex_state = 2}, + [351] = {.lex_state = 143, .external_lex_state = 2}, + [352] = {.lex_state = 184, .external_lex_state = 2}, + [353] = {.lex_state = 156, .external_lex_state = 2}, + [354] = {.lex_state = 184, .external_lex_state = 2}, + [355] = {.lex_state = 156, .external_lex_state = 2}, + [356] = {.lex_state = 156, .external_lex_state = 2}, + [357] = {.lex_state = 156, .external_lex_state = 2}, + [358] = {.lex_state = 154, .external_lex_state = 2}, + [359] = {.lex_state = 184, .external_lex_state = 2}, + [360] = {.lex_state = 152, .external_lex_state = 2}, + [361] = {.lex_state = 161, .external_lex_state = 2}, + [362] = {.lex_state = 161, .external_lex_state = 2}, + [363] = {.lex_state = 161, .external_lex_state = 2}, + [364] = {.lex_state = 144, .external_lex_state = 2}, + [365] = {.lex_state = 197, .external_lex_state = 2}, + [366] = {.lex_state = 197, .external_lex_state = 2}, + [367] = {.lex_state = 144, .external_lex_state = 2}, + [368] = {.lex_state = 157, .external_lex_state = 2}, + [369] = {.lex_state = 157, .external_lex_state = 2}, + [370] = {.lex_state = 144, .external_lex_state = 2}, + [371] = {.lex_state = 140, .external_lex_state = 2}, + [372] = {.lex_state = 184, .external_lex_state = 2}, + [373] = {.lex_state = 197, .external_lex_state = 2}, + [374] = {.lex_state = 144, .external_lex_state = 2}, + [375] = {.lex_state = 184, .external_lex_state = 2}, + [376] = {.lex_state = 144, .external_lex_state = 2}, + [377] = {.lex_state = 142, .external_lex_state = 2}, [378] = {.lex_state = 158, .external_lex_state = 2}, - [379] = {.lex_state = 116, .external_lex_state = 2}, - [380] = {.lex_state = 160, .external_lex_state = 2}, - [381] = {.lex_state = 132, .external_lex_state = 2}, - [382] = {.lex_state = 132, .external_lex_state = 2}, - [383] = {.lex_state = 159, .external_lex_state = 2}, - [384] = {.lex_state = 132, .external_lex_state = 2}, - [385] = {.lex_state = 159, .external_lex_state = 2}, - [386] = {.lex_state = 132, .external_lex_state = 2}, - [387] = {.lex_state = 171, .external_lex_state = 2}, - [388] = {.lex_state = 171, .external_lex_state = 2}, - [389] = {.lex_state = 159, .external_lex_state = 2}, - [390] = {.lex_state = 132, .external_lex_state = 2}, - [391] = {.lex_state = 159, .external_lex_state = 2}, - [392] = {.lex_state = 157, .external_lex_state = 2}, - [393] = {.lex_state = 159, .external_lex_state = 2}, - [394] = {.lex_state = 159, .external_lex_state = 2}, - [395] = {.lex_state = 168, .external_lex_state = 2}, - [396] = {.lex_state = 119, .external_lex_state = 2}, - [397] = {.lex_state = 132, .external_lex_state = 2}, - [398] = {.lex_state = 119, .external_lex_state = 2}, - [399] = {.lex_state = 169, .external_lex_state = 2}, - [400] = {.lex_state = 166, .external_lex_state = 2}, - [401] = {.lex_state = 122, .external_lex_state = 2}, - [402] = {.lex_state = 170, .external_lex_state = 2}, - [403] = {.lex_state = 133, .external_lex_state = 2}, - [404] = {.lex_state = 165, .external_lex_state = 2}, - [405] = {.lex_state = 165, .external_lex_state = 2}, - [406] = {.lex_state = 165, .external_lex_state = 2}, - [407] = {.lex_state = 165, .external_lex_state = 2}, - [408] = {.lex_state = 165, .external_lex_state = 2}, - [409] = {.lex_state = 165, .external_lex_state = 2}, - [410] = {.lex_state = 165, .external_lex_state = 2}, - [411] = {.lex_state = 165, .external_lex_state = 2}, - [412] = {.lex_state = 165, .external_lex_state = 2}, - [413] = {.lex_state = 165, .external_lex_state = 2}, - [414] = {.lex_state = 165, .external_lex_state = 2}, - [415] = {.lex_state = 165, .external_lex_state = 2}, - [416] = {.lex_state = 165, .external_lex_state = 2}, - [417] = {.lex_state = 165, .external_lex_state = 2}, - [418] = {.lex_state = 165, .external_lex_state = 2}, - [419] = {.lex_state = 165, .external_lex_state = 2}, - [420] = {.lex_state = 165, .external_lex_state = 2}, - [421] = {.lex_state = 165, .external_lex_state = 2}, - [422] = {.lex_state = 165, .external_lex_state = 2}, - [423] = {.lex_state = 169, .external_lex_state = 2}, - [424] = {.lex_state = 165, .external_lex_state = 2}, - [425] = {.lex_state = 165, .external_lex_state = 2}, - [426] = {.lex_state = 165, .external_lex_state = 2}, - [427] = {.lex_state = 165, .external_lex_state = 2}, - [428] = {.lex_state = 1724, .external_lex_state = 2}, - [429] = {.lex_state = 157, .external_lex_state = 2}, - [430] = {.lex_state = 157, .external_lex_state = 2}, - [431] = {.lex_state = 166, .external_lex_state = 2}, - [432] = {.lex_state = 165, .external_lex_state = 2}, - [433] = {.lex_state = 165, .external_lex_state = 2}, - [434] = {.lex_state = 165, .external_lex_state = 2}, - [435] = {.lex_state = 165, .external_lex_state = 2}, - [436] = {.lex_state = 181, .external_lex_state = 2}, - [437] = {.lex_state = 169, .external_lex_state = 2}, - [438] = {.lex_state = 169, .external_lex_state = 2}, - [439] = {.lex_state = 120, .external_lex_state = 2}, - [440] = {.lex_state = 158, .external_lex_state = 2}, - [441] = {.lex_state = 158, .external_lex_state = 2}, - [442] = {.lex_state = 158, .external_lex_state = 2}, - [443] = {.lex_state = 120, .external_lex_state = 2}, - [444] = {.lex_state = 120, .external_lex_state = 2}, - [445] = {.lex_state = 120, .external_lex_state = 2}, - [446] = {.lex_state = 120, .external_lex_state = 2}, - [447] = {.lex_state = 120, .external_lex_state = 2}, - [448] = {.lex_state = 169, .external_lex_state = 2}, - [449] = {.lex_state = 169, .external_lex_state = 2}, - [450] = {.lex_state = 165, .external_lex_state = 2}, - [451] = {.lex_state = 179, .external_lex_state = 2}, - [452] = {.lex_state = 178, .external_lex_state = 2}, - [453] = {.lex_state = 178, .external_lex_state = 2}, - [454] = {.lex_state = 178, .external_lex_state = 2}, - [455] = {.lex_state = 178, .external_lex_state = 2}, - [456] = {.lex_state = 167, .external_lex_state = 2}, - [457] = {.lex_state = 178, .external_lex_state = 2}, - [458] = {.lex_state = 178, .external_lex_state = 2}, - [459] = {.lex_state = 178, .external_lex_state = 2}, - [460] = {.lex_state = 167, .external_lex_state = 2}, - [461] = {.lex_state = 167, .external_lex_state = 2}, - [462] = {.lex_state = 167, .external_lex_state = 2}, - [463] = {.lex_state = 123, .external_lex_state = 2}, - [464] = {.lex_state = 167, .external_lex_state = 2}, - [465] = {.lex_state = 178, .external_lex_state = 2}, - [466] = {.lex_state = 167, .external_lex_state = 2}, - [467] = {.lex_state = 179, .external_lex_state = 2}, - [468] = {.lex_state = 167, .external_lex_state = 2}, - [469] = {.lex_state = 167, .external_lex_state = 2}, - [470] = {.lex_state = 167, .external_lex_state = 2}, - [471] = {.lex_state = 178, .external_lex_state = 2}, - [472] = {.lex_state = 178, .external_lex_state = 2}, - [473] = {.lex_state = 156, .external_lex_state = 2}, - [474] = {.lex_state = 156, .external_lex_state = 2}, - [475] = {.lex_state = 178, .external_lex_state = 2}, - [476] = {.lex_state = 167, .external_lex_state = 2}, - [477] = {.lex_state = 156, .external_lex_state = 2}, - [478] = {.lex_state = 156, .external_lex_state = 2}, - [479] = {.lex_state = 156, .external_lex_state = 2}, - [480] = {.lex_state = 156, .external_lex_state = 2}, - [481] = {.lex_state = 178, .external_lex_state = 2}, - [482] = {.lex_state = 178, .external_lex_state = 2}, - [483] = {.lex_state = 178, .external_lex_state = 2}, - [484] = {.lex_state = 1724, .external_lex_state = 2}, - [485] = {.lex_state = 178, .external_lex_state = 2}, - [486] = {.lex_state = 1724, .external_lex_state = 2}, - [487] = {.lex_state = 178, .external_lex_state = 2}, - [488] = {.lex_state = 178, .external_lex_state = 2}, - [489] = {.lex_state = 165, .external_lex_state = 2}, - [490] = {.lex_state = 165, .external_lex_state = 2}, - [491] = {.lex_state = 171, .external_lex_state = 2}, - [492] = {.lex_state = 167, .external_lex_state = 2}, - [493] = {.lex_state = 121, .external_lex_state = 2}, - [494] = {.lex_state = 167, .external_lex_state = 2}, - [495] = {.lex_state = 171, .external_lex_state = 2}, - [496] = {.lex_state = 171, .external_lex_state = 2}, - [497] = {.lex_state = 167, .external_lex_state = 2}, - [498] = {.lex_state = 178, .external_lex_state = 2}, - [499] = {.lex_state = 167, .external_lex_state = 2}, - [500] = {.lex_state = 167, .external_lex_state = 2}, - [501] = {.lex_state = 178, .external_lex_state = 2}, - [502] = {.lex_state = 178, .external_lex_state = 2}, - [503] = {.lex_state = 178, .external_lex_state = 2}, - [504] = {.lex_state = 178, .external_lex_state = 2}, - [505] = {.lex_state = 178, .external_lex_state = 2}, - [506] = {.lex_state = 178, .external_lex_state = 2}, - [507] = {.lex_state = 178, .external_lex_state = 2}, - [508] = {.lex_state = 178, .external_lex_state = 2}, - [509] = {.lex_state = 123, .external_lex_state = 2}, - [510] = {.lex_state = 178, .external_lex_state = 2}, - [511] = {.lex_state = 110, .external_lex_state = 2}, - [512] = {.lex_state = 167, .external_lex_state = 2}, - [513] = {.lex_state = 178, .external_lex_state = 2}, - [514] = {.lex_state = 157, .external_lex_state = 2}, - [515] = {.lex_state = 124, .external_lex_state = 2}, - [516] = {.lex_state = 164, .external_lex_state = 2}, - [517] = {.lex_state = 124, .external_lex_state = 2}, - [518] = {.lex_state = 124, .external_lex_state = 2}, - [519] = {.lex_state = 180, .external_lex_state = 2}, - [520] = {.lex_state = 124, .external_lex_state = 2}, - [521] = {.lex_state = 162, .external_lex_state = 2}, - [522] = {.lex_state = 124, .external_lex_state = 2}, - [523] = {.lex_state = 163, .external_lex_state = 2}, - [524] = {.lex_state = 163, .external_lex_state = 2}, - [525] = {.lex_state = 124, .external_lex_state = 2}, - [526] = {.lex_state = 180, .external_lex_state = 2}, - [527] = {.lex_state = 180, .external_lex_state = 2}, - [528] = {.lex_state = 157, .external_lex_state = 2}, - [529] = {.lex_state = 124, .external_lex_state = 2}, - [530] = {.lex_state = 180, .external_lex_state = 2}, - [531] = {.lex_state = 180, .external_lex_state = 2}, - [532] = {.lex_state = 124, .external_lex_state = 2}, - [533] = {.lex_state = 124, .external_lex_state = 2}, - [534] = {.lex_state = 261, .external_lex_state = 2}, - [535] = {.lex_state = 180, .external_lex_state = 2}, - [536] = {.lex_state = 157, .external_lex_state = 2}, - [537] = {.lex_state = 180, .external_lex_state = 2}, - [538] = {.lex_state = 124, .external_lex_state = 2}, - [539] = {.lex_state = 180, .external_lex_state = 2}, - [540] = {.lex_state = 180, .external_lex_state = 2}, - [541] = {.lex_state = 180, .external_lex_state = 2}, - [542] = {.lex_state = 180, .external_lex_state = 2}, - [543] = {.lex_state = 180, .external_lex_state = 2}, - [544] = {.lex_state = 178, .external_lex_state = 2}, - [545] = {.lex_state = 261, .external_lex_state = 2}, - [546] = {.lex_state = 163, .external_lex_state = 2}, - [547] = {.lex_state = 124, .external_lex_state = 2}, - [548] = {.lex_state = 180, .external_lex_state = 2}, - [549] = {.lex_state = 163, .external_lex_state = 2}, - [550] = {.lex_state = 163, .external_lex_state = 2}, - [551] = {.lex_state = 124, .external_lex_state = 2}, - [552] = {.lex_state = 124, .external_lex_state = 2}, - [553] = {.lex_state = 163, .external_lex_state = 2}, - [554] = {.lex_state = 124, .external_lex_state = 2}, - [555] = {.lex_state = 180, .external_lex_state = 2}, - [556] = {.lex_state = 124, .external_lex_state = 2}, - [557] = {.lex_state = 180, .external_lex_state = 2}, - [558] = {.lex_state = 111, .external_lex_state = 2}, - [559] = {.lex_state = 261, .external_lex_state = 2}, - [560] = {.lex_state = 180, .external_lex_state = 2}, - [561] = {.lex_state = 261, .external_lex_state = 2}, - [562] = {.lex_state = 261, .external_lex_state = 2}, - [563] = {.lex_state = 111, .external_lex_state = 2}, - [564] = {.lex_state = 178, .external_lex_state = 2}, - [565] = {.lex_state = 165, .external_lex_state = 2}, - [566] = {.lex_state = 112, .external_lex_state = 2}, - [567] = {.lex_state = 112, .external_lex_state = 2}, - [568] = {.lex_state = 212, .external_lex_state = 2}, - [569] = {.lex_state = 112, .external_lex_state = 2}, - [570] = {.lex_state = 155, .external_lex_state = 2}, - [571] = {.lex_state = 112, .external_lex_state = 2}, - [572] = {.lex_state = 112, .external_lex_state = 2}, - [573] = {.lex_state = 112, .external_lex_state = 2}, - [574] = {.lex_state = 212, .external_lex_state = 2}, - [575] = {.lex_state = 212, .external_lex_state = 2}, - [576] = {.lex_state = 175, .external_lex_state = 2}, - [577] = {.lex_state = 112, .external_lex_state = 2}, - [578] = {.lex_state = 161, .external_lex_state = 2}, - [579] = {.lex_state = 161, .external_lex_state = 2}, - [580] = {.lex_state = 177, .external_lex_state = 2}, - [581] = {.lex_state = 112, .external_lex_state = 2}, - [582] = {.lex_state = 212, .external_lex_state = 2}, - [583] = {.lex_state = 112, .external_lex_state = 2}, - [584] = {.lex_state = 112, .external_lex_state = 2}, - [585] = {.lex_state = 112, .external_lex_state = 2}, - [586] = {.lex_state = 112, .external_lex_state = 2}, - [587] = {.lex_state = 212, .external_lex_state = 2}, - [588] = {.lex_state = 124, .external_lex_state = 2}, - [589] = {.lex_state = 124, .external_lex_state = 2}, - [590] = {.lex_state = 212, .external_lex_state = 2}, - [591] = {.lex_state = 155, .external_lex_state = 2}, - [592] = {.lex_state = 260, .external_lex_state = 2}, - [593] = {.lex_state = 176, .external_lex_state = 2}, - [594] = {.lex_state = 176, .external_lex_state = 2}, - [595] = {.lex_state = 260, .external_lex_state = 2}, - [596] = {.lex_state = 260, .external_lex_state = 2}, - [597] = {.lex_state = 260, .external_lex_state = 2}, - [598] = {.lex_state = 212, .external_lex_state = 2}, - [599] = {.lex_state = 176, .external_lex_state = 2}, - [600] = {.lex_state = 176, .external_lex_state = 2}, - [601] = {.lex_state = 176, .external_lex_state = 2}, - [602] = {.lex_state = 176, .external_lex_state = 2}, - [603] = {.lex_state = 212, .external_lex_state = 2}, - [604] = {.lex_state = 260, .external_lex_state = 2}, - [605] = {.lex_state = 165, .external_lex_state = 2}, - [606] = {.lex_state = 112, .external_lex_state = 2}, - [607] = {.lex_state = 165, .external_lex_state = 2}, - [608] = {.lex_state = 112, .external_lex_state = 2}, - [609] = {.lex_state = 112, .external_lex_state = 2}, - [610] = {.lex_state = 212, .external_lex_state = 2}, - [611] = {.lex_state = 212, .external_lex_state = 2}, - [612] = {.lex_state = 212, .external_lex_state = 2}, - [613] = {.lex_state = 212, .external_lex_state = 2}, - [614] = {.lex_state = 212, .external_lex_state = 2}, - [615] = {.lex_state = 173, .external_lex_state = 2}, - [616] = {.lex_state = 212, .external_lex_state = 2}, - [617] = {.lex_state = 212, .external_lex_state = 2}, - [618] = {.lex_state = 212, .external_lex_state = 2}, - [619] = {.lex_state = 37, .external_lex_state = 2}, - [620] = {.lex_state = 112, .external_lex_state = 2}, - [621] = {.lex_state = 212, .external_lex_state = 2}, - [622] = {.lex_state = 212, .external_lex_state = 2}, - [623] = {.lex_state = 212, .external_lex_state = 2}, - [624] = {.lex_state = 212, .external_lex_state = 2}, - [625] = {.lex_state = 212, .external_lex_state = 2}, - [626] = {.lex_state = 212, .external_lex_state = 2}, - [627] = {.lex_state = 212, .external_lex_state = 2}, - [628] = {.lex_state = 212, .external_lex_state = 2}, - [629] = {.lex_state = 212, .external_lex_state = 2}, - [630] = {.lex_state = 212, .external_lex_state = 2}, - [631] = {.lex_state = 212, .external_lex_state = 2}, - [632] = {.lex_state = 212, .external_lex_state = 2}, - [633] = {.lex_state = 37, .external_lex_state = 2}, - [634] = {.lex_state = 212, .external_lex_state = 2}, - [635] = {.lex_state = 212, .external_lex_state = 2}, - [636] = {.lex_state = 112, .external_lex_state = 2}, - [637] = {.lex_state = 212, .external_lex_state = 2}, - [638] = {.lex_state = 212, .external_lex_state = 2}, - [639] = {.lex_state = 212, .external_lex_state = 2}, - [640] = {.lex_state = 212, .external_lex_state = 2}, - [641] = {.lex_state = 212, .external_lex_state = 2}, - [642] = {.lex_state = 212, .external_lex_state = 2}, - [643] = {.lex_state = 212, .external_lex_state = 2}, - [644] = {.lex_state = 212, .external_lex_state = 2}, - [645] = {.lex_state = 212, .external_lex_state = 2}, - [646] = {.lex_state = 212, .external_lex_state = 2}, - [647] = {.lex_state = 212, .external_lex_state = 2}, - [648] = {.lex_state = 212, .external_lex_state = 2}, - [649] = {.lex_state = 212, .external_lex_state = 2}, - [650] = {.lex_state = 212, .external_lex_state = 2}, - [651] = {.lex_state = 212, .external_lex_state = 2}, - [652] = {.lex_state = 212, .external_lex_state = 2}, - [653] = {.lex_state = 212, .external_lex_state = 2}, - [654] = {.lex_state = 173, .external_lex_state = 2}, - [655] = {.lex_state = 212, .external_lex_state = 2}, - [656] = {.lex_state = 212, .external_lex_state = 2}, - [657] = {.lex_state = 212, .external_lex_state = 2}, - [658] = {.lex_state = 212, .external_lex_state = 2}, - [659] = {.lex_state = 212, .external_lex_state = 2}, - [660] = {.lex_state = 212, .external_lex_state = 2}, - [661] = {.lex_state = 212, .external_lex_state = 2}, - [662] = {.lex_state = 212, .external_lex_state = 2}, - [663] = {.lex_state = 212, .external_lex_state = 2}, - [664] = {.lex_state = 212, .external_lex_state = 2}, - [665] = {.lex_state = 212, .external_lex_state = 2}, - [666] = {.lex_state = 212, .external_lex_state = 2}, - [667] = {.lex_state = 212, .external_lex_state = 2}, - [668] = {.lex_state = 212, .external_lex_state = 2}, - [669] = {.lex_state = 212, .external_lex_state = 2}, - [670] = {.lex_state = 212, .external_lex_state = 2}, - [671] = {.lex_state = 212, .external_lex_state = 2}, - [672] = {.lex_state = 212, .external_lex_state = 2}, - [673] = {.lex_state = 212, .external_lex_state = 2}, - [674] = {.lex_state = 212, .external_lex_state = 2}, - [675] = {.lex_state = 212, .external_lex_state = 2}, - [676] = {.lex_state = 212, .external_lex_state = 2}, - [677] = {.lex_state = 212, .external_lex_state = 2}, - [678] = {.lex_state = 212, .external_lex_state = 2}, - [679] = {.lex_state = 178, .external_lex_state = 2}, - [680] = {.lex_state = 178, .external_lex_state = 2}, - [681] = {.lex_state = 178, .external_lex_state = 2}, - [682] = {.lex_state = 212, .external_lex_state = 2}, - [683] = {.lex_state = 212, .external_lex_state = 2}, - [684] = {.lex_state = 212, .external_lex_state = 2}, - [685] = {.lex_state = 37, .external_lex_state = 2}, - [686] = {.lex_state = 212, .external_lex_state = 2}, - [687] = {.lex_state = 212, .external_lex_state = 2}, - [688] = {.lex_state = 212, .external_lex_state = 2}, - [689] = {.lex_state = 212, .external_lex_state = 2}, - [690] = {.lex_state = 212, .external_lex_state = 2}, - [691] = {.lex_state = 212, .external_lex_state = 2}, - [692] = {.lex_state = 212, .external_lex_state = 2}, - [693] = {.lex_state = 212, .external_lex_state = 2}, - [694] = {.lex_state = 212, .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 = 1721, .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 = 1721, .external_lex_state = 2}, - [743] = {.lex_state = 1721, .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 = 37, .external_lex_state = 2}, - [772] = {.lex_state = 37, .external_lex_state = 2}, - [773] = {.lex_state = 37, .external_lex_state = 2}, - [774] = {.lex_state = 1721, .external_lex_state = 2}, - [775] = {.lex_state = 1721, .external_lex_state = 2}, - [776] = {.lex_state = 44, .external_lex_state = 2}, - [777] = {.lex_state = 44, .external_lex_state = 2}, - [778] = {.lex_state = 3145}, - [779] = {.lex_state = 1721, .external_lex_state = 2}, - [780] = {.lex_state = 1721, .external_lex_state = 2}, - [781] = {.lex_state = 1721, .external_lex_state = 2}, - [782] = {.lex_state = 3146}, - [783] = {.lex_state = 1721, .external_lex_state = 2}, - [784] = {.lex_state = 1730, .external_lex_state = 2}, - [785] = {.lex_state = 3159}, - [786] = {.lex_state = 3163}, - [787] = {.lex_state = 1730, .external_lex_state = 2}, - [788] = {.lex_state = 3147}, - [789] = {.lex_state = 3147}, - [790] = {.lex_state = 3149}, - [791] = {.lex_state = 3297}, - [792] = {.lex_state = 1730, .external_lex_state = 2}, - [793] = {.lex_state = 1730, .external_lex_state = 2}, - [794] = {.lex_state = 3151}, - [795] = {.lex_state = 1730, .external_lex_state = 2}, - [796] = {.lex_state = 1730, .external_lex_state = 2}, - [797] = {.lex_state = 1730, .external_lex_state = 2}, - [798] = {.lex_state = 1730, .external_lex_state = 2}, - [799] = {.lex_state = 1730, .external_lex_state = 2}, - [800] = {.lex_state = 1730, .external_lex_state = 2}, - [801] = {.lex_state = 3295}, - [802] = {.lex_state = 1730, .external_lex_state = 2}, - [803] = {.lex_state = 3297}, - [804] = {.lex_state = 1730, .external_lex_state = 2}, - [805] = {.lex_state = 3153}, - [806] = {.lex_state = 3148}, - [807] = {.lex_state = 3295}, - [808] = {.lex_state = 3299}, - [809] = {.lex_state = 3299}, - [810] = {.lex_state = 3148}, - [811] = {.lex_state = 3148}, - [812] = {.lex_state = 3148}, - [813] = {.lex_state = 1730, .external_lex_state = 2}, - [814] = {.lex_state = 3165}, - [815] = {.lex_state = 3165}, - [816] = {.lex_state = 1730, .external_lex_state = 2}, - [817] = {.lex_state = 3153}, - [818] = {.lex_state = 1730, .external_lex_state = 2}, - [819] = {.lex_state = 3148}, - [820] = {.lex_state = 3301}, - [821] = {.lex_state = 3155}, - [822] = {.lex_state = 3167}, - [823] = {.lex_state = 3167}, - [824] = {.lex_state = 3155}, - [825] = {.lex_state = 3161}, - [826] = {.lex_state = 3167}, - [827] = {.lex_state = 3301}, - [828] = {.lex_state = 3167}, - [829] = {.lex_state = 3167}, - [830] = {.lex_state = 3301}, - [831] = {.lex_state = 3155}, - [832] = {.lex_state = 3299}, - [833] = {.lex_state = 3155}, - [834] = {.lex_state = 3155}, - [835] = {.lex_state = 3299}, - [836] = {.lex_state = 3301}, - [837] = {.lex_state = 3169}, - [838] = {.lex_state = 3301}, - [839] = {.lex_state = 3301}, - [840] = {.lex_state = 3171}, - [841] = {.lex_state = 3301}, - [842] = {.lex_state = 3301}, - [843] = {.lex_state = 3171}, - [844] = {.lex_state = 3301}, - [845] = {.lex_state = 3301}, - [846] = {.lex_state = 3173}, - [847] = {.lex_state = 44, .external_lex_state = 2}, - [848] = {.lex_state = 44, .external_lex_state = 2}, - [849] = {.lex_state = 3173}, - [850] = {.lex_state = 44, .external_lex_state = 2}, - [851] = {.lex_state = 44, .external_lex_state = 2}, - [852] = {.lex_state = 44, .external_lex_state = 2}, - [853] = {.lex_state = 44, .external_lex_state = 2}, - [854] = {.lex_state = 3173}, - [855] = {.lex_state = 44, .external_lex_state = 2}, - [856] = {.lex_state = 44, .external_lex_state = 2}, - [857] = {.lex_state = 44, .external_lex_state = 2}, - [858] = {.lex_state = 44, .external_lex_state = 2}, - [859] = {.lex_state = 44, .external_lex_state = 2}, - [860] = {.lex_state = 44, .external_lex_state = 2}, - [861] = {.lex_state = 44, .external_lex_state = 2}, - [862] = {.lex_state = 44, .external_lex_state = 2}, - [863] = {.lex_state = 44, .external_lex_state = 2}, - [864] = {.lex_state = 44, .external_lex_state = 2}, - [865] = {.lex_state = 44, .external_lex_state = 2}, - [866] = {.lex_state = 44, .external_lex_state = 2}, - [867] = {.lex_state = 44, .external_lex_state = 2}, - [868] = {.lex_state = 44, .external_lex_state = 2}, - [869] = {.lex_state = 3173}, - [870] = {.lex_state = 44, .external_lex_state = 2}, - [871] = {.lex_state = 3173}, - [872] = {.lex_state = 44, .external_lex_state = 2}, - [873] = {.lex_state = 44, .external_lex_state = 2}, - [874] = {.lex_state = 3303}, - [875] = {.lex_state = 3157}, - [876] = {.lex_state = 3303}, - [877] = {.lex_state = 3157}, - [878] = {.lex_state = 3175}, - [879] = {.lex_state = 3175}, - [880] = {.lex_state = 3175}, - [881] = {.lex_state = 3175}, - [882] = {.lex_state = 44, .external_lex_state = 2}, - [883] = {.lex_state = 44, .external_lex_state = 2}, - [884] = {.lex_state = 44, .external_lex_state = 2}, - [885] = {.lex_state = 44, .external_lex_state = 2}, - [886] = {.lex_state = 3303}, - [887] = {.lex_state = 44, .external_lex_state = 2}, - [888] = {.lex_state = 44, .external_lex_state = 2}, - [889] = {.lex_state = 44, .external_lex_state = 2}, - [890] = {.lex_state = 44, .external_lex_state = 2}, - [891] = {.lex_state = 44, .external_lex_state = 2}, - [892] = {.lex_state = 44, .external_lex_state = 2}, - [893] = {.lex_state = 3303}, - [894] = {.lex_state = 44, .external_lex_state = 2}, - [895] = {.lex_state = 44, .external_lex_state = 2}, - [896] = {.lex_state = 44, .external_lex_state = 2}, - [897] = {.lex_state = 44, .external_lex_state = 2}, - [898] = {.lex_state = 44, .external_lex_state = 2}, - [899] = {.lex_state = 44, .external_lex_state = 2}, - [900] = {.lex_state = 44, .external_lex_state = 2}, - [901] = {.lex_state = 44, .external_lex_state = 2}, - [902] = {.lex_state = 44, .external_lex_state = 2}, - [903] = {.lex_state = 44, .external_lex_state = 2}, - [904] = {.lex_state = 3177}, - [905] = {.lex_state = 3177}, - [906] = {.lex_state = 44, .external_lex_state = 2}, - [907] = {.lex_state = 44, .external_lex_state = 2}, - [908] = {.lex_state = 44, .external_lex_state = 2}, - [909] = {.lex_state = 43, .external_lex_state = 2}, - [910] = {.lex_state = 43, .external_lex_state = 2}, - [911] = {.lex_state = 43, .external_lex_state = 2}, - [912] = {.lex_state = 43, .external_lex_state = 2}, - [913] = {.lex_state = 43, .external_lex_state = 2}, - [914] = {.lex_state = 43, .external_lex_state = 2}, - [915] = {.lex_state = 43, .external_lex_state = 2}, - [916] = {.lex_state = 43, .external_lex_state = 2}, - [917] = {.lex_state = 43, .external_lex_state = 2}, - [918] = {.lex_state = 43, .external_lex_state = 2}, - [919] = {.lex_state = 43, .external_lex_state = 2}, - [920] = {.lex_state = 43, .external_lex_state = 2}, - [921] = {.lex_state = 43, .external_lex_state = 2}, - [922] = {.lex_state = 43, .external_lex_state = 2}, - [923] = {.lex_state = 43, .external_lex_state = 2}, - [924] = {.lex_state = 43, .external_lex_state = 2}, - [925] = {.lex_state = 43, .external_lex_state = 2}, - [926] = {.lex_state = 43, .external_lex_state = 2}, - [927] = {.lex_state = 43, .external_lex_state = 2}, - [928] = {.lex_state = 43, .external_lex_state = 2}, - [929] = {.lex_state = 43, .external_lex_state = 2}, - [930] = {.lex_state = 43, .external_lex_state = 2}, - [931] = {.lex_state = 43, .external_lex_state = 2}, - [932] = {.lex_state = 43, .external_lex_state = 2}, - [933] = {.lex_state = 43, .external_lex_state = 2}, - [934] = {.lex_state = 43, .external_lex_state = 2}, - [935] = {.lex_state = 43, .external_lex_state = 2}, - [936] = {.lex_state = 43, .external_lex_state = 2}, - [937] = {.lex_state = 43, .external_lex_state = 2}, - [938] = {.lex_state = 43, .external_lex_state = 2}, - [939] = {.lex_state = 43, .external_lex_state = 2}, - [940] = {.lex_state = 43, .external_lex_state = 2}, - [941] = {.lex_state = 43, .external_lex_state = 2}, - [942] = {.lex_state = 43, .external_lex_state = 2}, - [943] = {.lex_state = 43, .external_lex_state = 2}, - [944] = {.lex_state = 43, .external_lex_state = 2}, - [945] = {.lex_state = 43, .external_lex_state = 2}, - [946] = {.lex_state = 43, .external_lex_state = 2}, - [947] = {.lex_state = 43, .external_lex_state = 2}, - [948] = {.lex_state = 43, .external_lex_state = 2}, - [949] = {.lex_state = 43, .external_lex_state = 2}, - [950] = {.lex_state = 43, .external_lex_state = 2}, - [951] = {.lex_state = 43, .external_lex_state = 2}, - [952] = {.lex_state = 43, .external_lex_state = 2}, - [953] = {.lex_state = 43, .external_lex_state = 2}, - [954] = {.lex_state = 43, .external_lex_state = 2}, - [955] = {.lex_state = 43, .external_lex_state = 2}, - [956] = {.lex_state = 43, .external_lex_state = 2}, - [957] = {.lex_state = 43, .external_lex_state = 2}, - [958] = {.lex_state = 43, .external_lex_state = 2}, - [959] = {.lex_state = 43, .external_lex_state = 2}, - [960] = {.lex_state = 43, .external_lex_state = 2}, - [961] = {.lex_state = 43, .external_lex_state = 2}, - [962] = {.lex_state = 43, .external_lex_state = 2}, - [963] = {.lex_state = 43, .external_lex_state = 2}, - [964] = {.lex_state = 43, .external_lex_state = 2}, - [965] = {.lex_state = 43, .external_lex_state = 2}, - [966] = {.lex_state = 43, .external_lex_state = 2}, - [967] = {.lex_state = 43, .external_lex_state = 2}, - [968] = {.lex_state = 43, .external_lex_state = 2}, - [969] = {.lex_state = 43, .external_lex_state = 2}, - [970] = {.lex_state = 43, .external_lex_state = 2}, - [971] = {.lex_state = 43, .external_lex_state = 2}, - [972] = {.lex_state = 43, .external_lex_state = 2}, - [973] = {.lex_state = 43, .external_lex_state = 2}, - [974] = {.lex_state = 43, .external_lex_state = 2}, - [975] = {.lex_state = 43, .external_lex_state = 2}, - [976] = {.lex_state = 43, .external_lex_state = 2}, - [977] = {.lex_state = 43, .external_lex_state = 2}, - [978] = {.lex_state = 43, .external_lex_state = 2}, - [979] = {.lex_state = 43, .external_lex_state = 2}, - [980] = {.lex_state = 43, .external_lex_state = 2}, - [981] = {.lex_state = 43, .external_lex_state = 2}, - [982] = {.lex_state = 43, .external_lex_state = 2}, - [983] = {.lex_state = 43, .external_lex_state = 2}, - [984] = {.lex_state = 43, .external_lex_state = 2}, - [985] = {.lex_state = 43, .external_lex_state = 2}, - [986] = {.lex_state = 43, .external_lex_state = 2}, - [987] = {.lex_state = 43, .external_lex_state = 2}, - [988] = {.lex_state = 43, .external_lex_state = 2}, - [989] = {.lex_state = 43, .external_lex_state = 2}, - [990] = {.lex_state = 43, .external_lex_state = 2}, - [991] = {.lex_state = 43, .external_lex_state = 2}, - [992] = {.lex_state = 43, .external_lex_state = 2}, - [993] = {.lex_state = 43, .external_lex_state = 2}, - [994] = {.lex_state = 43, .external_lex_state = 2}, - [995] = {.lex_state = 43, .external_lex_state = 2}, - [996] = {.lex_state = 43, .external_lex_state = 2}, - [997] = {.lex_state = 43, .external_lex_state = 2}, - [998] = {.lex_state = 43, .external_lex_state = 2}, - [999] = {.lex_state = 43, .external_lex_state = 2}, - [1000] = {.lex_state = 43, .external_lex_state = 2}, - [1001] = {.lex_state = 43, .external_lex_state = 2}, - [1002] = {.lex_state = 43, .external_lex_state = 2}, - [1003] = {.lex_state = 43, .external_lex_state = 2}, - [1004] = {.lex_state = 43, .external_lex_state = 2}, - [1005] = {.lex_state = 43, .external_lex_state = 2}, - [1006] = {.lex_state = 43, .external_lex_state = 2}, - [1007] = {.lex_state = 43, .external_lex_state = 2}, - [1008] = {.lex_state = 43, .external_lex_state = 2}, - [1009] = {.lex_state = 43, .external_lex_state = 2}, - [1010] = {.lex_state = 43, .external_lex_state = 2}, - [1011] = {.lex_state = 43, .external_lex_state = 2}, - [1012] = {.lex_state = 43, .external_lex_state = 2}, - [1013] = {.lex_state = 43, .external_lex_state = 2}, - [1014] = {.lex_state = 43, .external_lex_state = 2}, - [1015] = {.lex_state = 43, .external_lex_state = 2}, - [1016] = {.lex_state = 43, .external_lex_state = 2}, - [1017] = {.lex_state = 43, .external_lex_state = 2}, - [1018] = {.lex_state = 43, .external_lex_state = 2}, - [1019] = {.lex_state = 43, .external_lex_state = 2}, - [1020] = {.lex_state = 43, .external_lex_state = 2}, - [1021] = {.lex_state = 43, .external_lex_state = 2}, - [1022] = {.lex_state = 43, .external_lex_state = 2}, - [1023] = {.lex_state = 43, .external_lex_state = 2}, - [1024] = {.lex_state = 43, .external_lex_state = 2}, - [1025] = {.lex_state = 43, .external_lex_state = 2}, - [1026] = {.lex_state = 43, .external_lex_state = 2}, - [1027] = {.lex_state = 43, .external_lex_state = 2}, - [1028] = {.lex_state = 43, .external_lex_state = 2}, - [1029] = {.lex_state = 43, .external_lex_state = 2}, - [1030] = {.lex_state = 43, .external_lex_state = 2}, - [1031] = {.lex_state = 43, .external_lex_state = 2}, - [1032] = {.lex_state = 43, .external_lex_state = 2}, - [1033] = {.lex_state = 43, .external_lex_state = 2}, - [1034] = {.lex_state = 43, .external_lex_state = 2}, - [1035] = {.lex_state = 43, .external_lex_state = 2}, - [1036] = {.lex_state = 43, .external_lex_state = 2}, - [1037] = {.lex_state = 43, .external_lex_state = 2}, - [1038] = {.lex_state = 43, .external_lex_state = 2}, - [1039] = {.lex_state = 43, .external_lex_state = 2}, - [1040] = {.lex_state = 43, .external_lex_state = 2}, - [1041] = {.lex_state = 43, .external_lex_state = 2}, - [1042] = {.lex_state = 43, .external_lex_state = 2}, - [1043] = {.lex_state = 43, .external_lex_state = 2}, - [1044] = {.lex_state = 43, .external_lex_state = 2}, - [1045] = {.lex_state = 43, .external_lex_state = 2}, - [1046] = {.lex_state = 43, .external_lex_state = 2}, - [1047] = {.lex_state = 43, .external_lex_state = 2}, - [1048] = {.lex_state = 43, .external_lex_state = 2}, - [1049] = {.lex_state = 43, .external_lex_state = 2}, - [1050] = {.lex_state = 43, .external_lex_state = 2}, - [1051] = {.lex_state = 43, .external_lex_state = 2}, - [1052] = {.lex_state = 43, .external_lex_state = 2}, - [1053] = {.lex_state = 43, .external_lex_state = 2}, - [1054] = {.lex_state = 43, .external_lex_state = 2}, - [1055] = {.lex_state = 43, .external_lex_state = 2}, - [1056] = {.lex_state = 43, .external_lex_state = 2}, - [1057] = {.lex_state = 43, .external_lex_state = 2}, - [1058] = {.lex_state = 43, .external_lex_state = 2}, - [1059] = {.lex_state = 43, .external_lex_state = 2}, - [1060] = {.lex_state = 43, .external_lex_state = 2}, - [1061] = {.lex_state = 43, .external_lex_state = 2}, - [1062] = {.lex_state = 43, .external_lex_state = 2}, - [1063] = {.lex_state = 43, .external_lex_state = 2}, - [1064] = {.lex_state = 43, .external_lex_state = 2}, - [1065] = {.lex_state = 14, .external_lex_state = 2}, - [1066] = {.lex_state = 42, .external_lex_state = 2}, - [1067] = {.lex_state = 14, .external_lex_state = 2}, - [1068] = {.lex_state = 43, .external_lex_state = 2}, - [1069] = {.lex_state = 43, .external_lex_state = 2}, - [1070] = {.lex_state = 43, .external_lex_state = 2}, - [1071] = {.lex_state = 43, .external_lex_state = 2}, - [1072] = {.lex_state = 43, .external_lex_state = 2}, - [1073] = {.lex_state = 43, .external_lex_state = 2}, - [1074] = {.lex_state = 43, .external_lex_state = 2}, - [1075] = {.lex_state = 43, .external_lex_state = 2}, - [1076] = {.lex_state = 43, .external_lex_state = 2}, - [1077] = {.lex_state = 43, .external_lex_state = 2}, - [1078] = {.lex_state = 43, .external_lex_state = 2}, - [1079] = {.lex_state = 43, .external_lex_state = 2}, - [1080] = {.lex_state = 43, .external_lex_state = 2}, - [1081] = {.lex_state = 43, .external_lex_state = 2}, - [1082] = {.lex_state = 43, .external_lex_state = 2}, - [1083] = {.lex_state = 43, .external_lex_state = 2}, - [1084] = {.lex_state = 43, .external_lex_state = 2}, - [1085] = {.lex_state = 43, .external_lex_state = 2}, - [1086] = {.lex_state = 43, .external_lex_state = 2}, - [1087] = {.lex_state = 43, .external_lex_state = 2}, - [1088] = {.lex_state = 43, .external_lex_state = 2}, - [1089] = {.lex_state = 43, .external_lex_state = 2}, - [1090] = {.lex_state = 43, .external_lex_state = 2}, - [1091] = {.lex_state = 43, .external_lex_state = 2}, - [1092] = {.lex_state = 43, .external_lex_state = 2}, - [1093] = {.lex_state = 43, .external_lex_state = 2}, - [1094] = {.lex_state = 43, .external_lex_state = 2}, - [1095] = {.lex_state = 43, .external_lex_state = 2}, - [1096] = {.lex_state = 43, .external_lex_state = 2}, - [1097] = {.lex_state = 43, .external_lex_state = 2}, - [1098] = {.lex_state = 43, .external_lex_state = 2}, - [1099] = {.lex_state = 43, .external_lex_state = 2}, - [1100] = {.lex_state = 43, .external_lex_state = 2}, - [1101] = {.lex_state = 43, .external_lex_state = 2}, - [1102] = {.lex_state = 43, .external_lex_state = 2}, - [1103] = {.lex_state = 43, .external_lex_state = 2}, - [1104] = {.lex_state = 43, .external_lex_state = 2}, - [1105] = {.lex_state = 43, .external_lex_state = 2}, - [1106] = {.lex_state = 43, .external_lex_state = 2}, - [1107] = {.lex_state = 43, .external_lex_state = 2}, - [1108] = {.lex_state = 43, .external_lex_state = 2}, - [1109] = {.lex_state = 43, .external_lex_state = 2}, - [1110] = {.lex_state = 43, .external_lex_state = 2}, - [1111] = {.lex_state = 43, .external_lex_state = 2}, - [1112] = {.lex_state = 43, .external_lex_state = 2}, - [1113] = {.lex_state = 1722, .external_lex_state = 2}, - [1114] = {.lex_state = 43, .external_lex_state = 2}, - [1115] = {.lex_state = 43, .external_lex_state = 2}, - [1116] = {.lex_state = 43, .external_lex_state = 2}, - [1117] = {.lex_state = 43, .external_lex_state = 2}, - [1118] = {.lex_state = 43, .external_lex_state = 2}, - [1119] = {.lex_state = 43, .external_lex_state = 2}, - [1120] = {.lex_state = 43, .external_lex_state = 2}, - [1121] = {.lex_state = 43, .external_lex_state = 2}, - [1122] = {.lex_state = 43, .external_lex_state = 2}, - [1123] = {.lex_state = 43, .external_lex_state = 2}, - [1124] = {.lex_state = 43, .external_lex_state = 2}, - [1125] = {.lex_state = 43, .external_lex_state = 2}, - [1126] = {.lex_state = 43, .external_lex_state = 2}, - [1127] = {.lex_state = 43, .external_lex_state = 2}, - [1128] = {.lex_state = 43, .external_lex_state = 2}, - [1129] = {.lex_state = 43, .external_lex_state = 2}, - [1130] = {.lex_state = 43, .external_lex_state = 2}, - [1131] = {.lex_state = 43, .external_lex_state = 2}, - [1132] = {.lex_state = 43, .external_lex_state = 2}, - [1133] = {.lex_state = 43, .external_lex_state = 2}, - [1134] = {.lex_state = 43, .external_lex_state = 2}, - [1135] = {.lex_state = 43, .external_lex_state = 2}, - [1136] = {.lex_state = 43, .external_lex_state = 2}, - [1137] = {.lex_state = 43, .external_lex_state = 2}, - [1138] = {.lex_state = 43, .external_lex_state = 2}, - [1139] = {.lex_state = 43, .external_lex_state = 2}, - [1140] = {.lex_state = 43, .external_lex_state = 2}, - [1141] = {.lex_state = 43, .external_lex_state = 2}, - [1142] = {.lex_state = 43, .external_lex_state = 2}, - [1143] = {.lex_state = 43, .external_lex_state = 2}, - [1144] = {.lex_state = 43, .external_lex_state = 2}, - [1145] = {.lex_state = 43, .external_lex_state = 2}, - [1146] = {.lex_state = 43, .external_lex_state = 2}, - [1147] = {.lex_state = 43, .external_lex_state = 2}, - [1148] = {.lex_state = 43, .external_lex_state = 2}, - [1149] = {.lex_state = 43, .external_lex_state = 2}, - [1150] = {.lex_state = 43, .external_lex_state = 2}, - [1151] = {.lex_state = 43, .external_lex_state = 2}, - [1152] = {.lex_state = 43, .external_lex_state = 2}, - [1153] = {.lex_state = 43, .external_lex_state = 2}, - [1154] = {.lex_state = 43, .external_lex_state = 2}, - [1155] = {.lex_state = 43, .external_lex_state = 2}, - [1156] = {.lex_state = 43, .external_lex_state = 2}, - [1157] = {.lex_state = 43, .external_lex_state = 2}, - [1158] = {.lex_state = 43, .external_lex_state = 2}, - [1159] = {.lex_state = 43, .external_lex_state = 2}, - [1160] = {.lex_state = 1722, .external_lex_state = 2}, - [1161] = {.lex_state = 1722, .external_lex_state = 2}, - [1162] = {.lex_state = 40, .external_lex_state = 2}, - [1163] = {.lex_state = 1722, .external_lex_state = 2}, - [1164] = {.lex_state = 43, .external_lex_state = 2}, - [1165] = {.lex_state = 43, .external_lex_state = 2}, - [1166] = {.lex_state = 43, .external_lex_state = 2}, - [1167] = {.lex_state = 43, .external_lex_state = 2}, - [1168] = {.lex_state = 43, .external_lex_state = 2}, - [1169] = {.lex_state = 40, .external_lex_state = 2}, - [1170] = {.lex_state = 43, .external_lex_state = 2}, - [1171] = {.lex_state = 40, .external_lex_state = 2}, - [1172] = {.lex_state = 40, .external_lex_state = 2}, - [1173] = {.lex_state = 41, .external_lex_state = 2}, - [1174] = {.lex_state = 40, .external_lex_state = 2}, - [1175] = {.lex_state = 230, .external_lex_state = 2}, - [1176] = {.lex_state = 230, .external_lex_state = 2}, - [1177] = {.lex_state = 1722, .external_lex_state = 2}, - [1178] = {.lex_state = 36, .external_lex_state = 2}, - [1179] = {.lex_state = 45, .external_lex_state = 2}, - [1180] = {.lex_state = 40, .external_lex_state = 2}, - [1181] = {.lex_state = 45, .external_lex_state = 2}, - [1182] = {.lex_state = 45, .external_lex_state = 2}, - [1183] = {.lex_state = 41, .external_lex_state = 2}, - [1184] = {.lex_state = 45, .external_lex_state = 2}, - [1185] = {.lex_state = 3152}, - [1186] = {.lex_state = 36, .external_lex_state = 2}, - [1187] = {.lex_state = 3298}, - [1188] = {.lex_state = 3150}, - [1189] = {.lex_state = 3160}, - [1190] = {.lex_state = 36, .external_lex_state = 2}, - [1191] = {.lex_state = 36, .external_lex_state = 2}, - [1192] = {.lex_state = 3296}, - [1193] = {.lex_state = 3164}, - [1194] = {.lex_state = 36, .external_lex_state = 2}, - [1195] = {.lex_state = 3154}, - [1196] = {.lex_state = 3154}, - [1197] = {.lex_state = 36, .external_lex_state = 2}, - [1198] = {.lex_state = 3166}, - [1199] = {.lex_state = 3296}, - [1200] = {.lex_state = 36, .external_lex_state = 2}, - [1201] = {.lex_state = 3300}, - [1202] = {.lex_state = 3298}, - [1203] = {.lex_state = 3300}, - [1204] = {.lex_state = 36, .external_lex_state = 2}, - [1205] = {.lex_state = 3166}, - [1206] = {.lex_state = 242, .external_lex_state = 2}, - [1207] = {.lex_state = 3170}, - [1208] = {.lex_state = 3302}, - [1209] = {.lex_state = 3168}, - [1210] = {.lex_state = 3156}, - [1211] = {.lex_state = 3168}, - [1212] = {.lex_state = 242, .external_lex_state = 2}, - [1213] = {.lex_state = 3156}, - [1214] = {.lex_state = 3168}, - [1215] = {.lex_state = 3300}, - [1216] = {.lex_state = 3302}, - [1217] = {.lex_state = 3300}, - [1218] = {.lex_state = 3302}, - [1219] = {.lex_state = 3302}, - [1220] = {.lex_state = 3168}, - [1221] = {.lex_state = 3302}, - [1222] = {.lex_state = 242, .external_lex_state = 2}, - [1223] = {.lex_state = 242, .external_lex_state = 2}, - [1224] = {.lex_state = 3168}, - [1225] = {.lex_state = 3156}, - [1226] = {.lex_state = 3162}, - [1227] = {.lex_state = 242, .external_lex_state = 2}, - [1228] = {.lex_state = 3156}, - [1229] = {.lex_state = 242, .external_lex_state = 2}, - [1230] = {.lex_state = 3156}, - [1231] = {.lex_state = 238, .external_lex_state = 2}, - [1232] = {.lex_state = 36, .external_lex_state = 2}, - [1233] = {.lex_state = 3172}, + [379] = {.lex_state = 158, .external_lex_state = 2}, + [380] = {.lex_state = 185, .external_lex_state = 2}, + [381] = {.lex_state = 158, .external_lex_state = 2}, + [382] = {.lex_state = 158, .external_lex_state = 2}, + [383] = {.lex_state = 145, .external_lex_state = 2}, + [384] = {.lex_state = 185, .external_lex_state = 2}, + [385] = {.lex_state = 194, .external_lex_state = 2}, + [386] = {.lex_state = 185, .external_lex_state = 2}, + [387] = {.lex_state = 185, .external_lex_state = 2}, + [388] = {.lex_state = 185, .external_lex_state = 2}, + [389] = {.lex_state = 158, .external_lex_state = 2}, + [390] = {.lex_state = 158, .external_lex_state = 2}, + [391] = {.lex_state = 197, .external_lex_state = 2}, + [392] = {.lex_state = 185, .external_lex_state = 2}, + [393] = {.lex_state = 183, .external_lex_state = 2}, + [394] = {.lex_state = 186, .external_lex_state = 2}, + [395] = {.lex_state = 145, .external_lex_state = 2}, + [396] = {.lex_state = 197, .external_lex_state = 2}, + [397] = {.lex_state = 191, .external_lex_state = 2}, + [398] = {.lex_state = 146, .external_lex_state = 2}, + [399] = {.lex_state = 146, .external_lex_state = 2}, + [400] = {.lex_state = 207, .external_lex_state = 2}, + [401] = {.lex_state = 191, .external_lex_state = 2}, + [402] = {.lex_state = 191, .external_lex_state = 2}, + [403] = {.lex_state = 191, .external_lex_state = 2}, + [404] = {.lex_state = 191, .external_lex_state = 2}, + [405] = {.lex_state = 191, .external_lex_state = 2}, + [406] = {.lex_state = 191, .external_lex_state = 2}, + [407] = {.lex_state = 191, .external_lex_state = 2}, + [408] = {.lex_state = 148, .external_lex_state = 2}, + [409] = {.lex_state = 192, .external_lex_state = 2}, + [410] = {.lex_state = 191, .external_lex_state = 2}, + [411] = {.lex_state = 192, .external_lex_state = 2}, + [412] = {.lex_state = 191, .external_lex_state = 2}, + [413] = {.lex_state = 196, .external_lex_state = 2}, + [414] = {.lex_state = 191, .external_lex_state = 2}, + [415] = {.lex_state = 159, .external_lex_state = 2}, + [416] = {.lex_state = 191, .external_lex_state = 2}, + [417] = {.lex_state = 191, .external_lex_state = 2}, + [418] = {.lex_state = 191, .external_lex_state = 2}, + [419] = {.lex_state = 191, .external_lex_state = 2}, + [420] = {.lex_state = 183, .external_lex_state = 2}, + [421] = {.lex_state = 191, .external_lex_state = 2}, + [422] = {.lex_state = 191, .external_lex_state = 2}, + [423] = {.lex_state = 191, .external_lex_state = 2}, + [424] = {.lex_state = 191, .external_lex_state = 2}, + [425] = {.lex_state = 191, .external_lex_state = 2}, + [426] = {.lex_state = 191, .external_lex_state = 2}, + [427] = {.lex_state = 195, .external_lex_state = 2}, + [428] = {.lex_state = 195, .external_lex_state = 2}, + [429] = {.lex_state = 184, .external_lex_state = 2}, + [430] = {.lex_state = 184, .external_lex_state = 2}, + [431] = {.lex_state = 184, .external_lex_state = 2}, + [432] = {.lex_state = 195, .external_lex_state = 2}, + [433] = {.lex_state = 195, .external_lex_state = 2}, + [434] = {.lex_state = 195, .external_lex_state = 2}, + [435] = {.lex_state = 195, .external_lex_state = 2}, + [436] = {.lex_state = 146, .external_lex_state = 2}, + [437] = {.lex_state = 1772, .external_lex_state = 2}, + [438] = {.lex_state = 146, .external_lex_state = 2}, + [439] = {.lex_state = 191, .external_lex_state = 2}, + [440] = {.lex_state = 191, .external_lex_state = 2}, + [441] = {.lex_state = 191, .external_lex_state = 2}, + [442] = {.lex_state = 146, .external_lex_state = 2}, + [443] = {.lex_state = 191, .external_lex_state = 2}, + [444] = {.lex_state = 191, .external_lex_state = 2}, + [445] = {.lex_state = 191, .external_lex_state = 2}, + [446] = {.lex_state = 146, .external_lex_state = 2}, + [447] = {.lex_state = 191, .external_lex_state = 2}, + [448] = {.lex_state = 183, .external_lex_state = 2}, + [449] = {.lex_state = 193, .external_lex_state = 2}, + [450] = {.lex_state = 193, .external_lex_state = 2}, + [451] = {.lex_state = 204, .external_lex_state = 2}, + [452] = {.lex_state = 193, .external_lex_state = 2}, + [453] = {.lex_state = 193, .external_lex_state = 2}, + [454] = {.lex_state = 193, .external_lex_state = 2}, + [455] = {.lex_state = 193, .external_lex_state = 2}, + [456] = {.lex_state = 193, .external_lex_state = 2}, + [457] = {.lex_state = 204, .external_lex_state = 2}, + [458] = {.lex_state = 182, .external_lex_state = 2}, + [459] = {.lex_state = 182, .external_lex_state = 2}, + [460] = {.lex_state = 149, .external_lex_state = 2}, + [461] = {.lex_state = 193, .external_lex_state = 2}, + [462] = {.lex_state = 182, .external_lex_state = 2}, + [463] = {.lex_state = 182, .external_lex_state = 2}, + [464] = {.lex_state = 182, .external_lex_state = 2}, + [465] = {.lex_state = 182, .external_lex_state = 2}, + [466] = {.lex_state = 204, .external_lex_state = 2}, + [467] = {.lex_state = 1772, .external_lex_state = 2}, + [468] = {.lex_state = 204, .external_lex_state = 2}, + [469] = {.lex_state = 193, .external_lex_state = 2}, + [470] = {.lex_state = 191, .external_lex_state = 2}, + [471] = {.lex_state = 191, .external_lex_state = 2}, + [472] = {.lex_state = 197, .external_lex_state = 2}, + [473] = {.lex_state = 136, .external_lex_state = 2}, + [474] = {.lex_state = 193, .external_lex_state = 2}, + [475] = {.lex_state = 193, .external_lex_state = 2}, + [476] = {.lex_state = 204, .external_lex_state = 2}, + [477] = {.lex_state = 197, .external_lex_state = 2}, + [478] = {.lex_state = 197, .external_lex_state = 2}, + [479] = {.lex_state = 193, .external_lex_state = 2}, + [480] = {.lex_state = 193, .external_lex_state = 2}, + [481] = {.lex_state = 204, .external_lex_state = 2}, + [482] = {.lex_state = 204, .external_lex_state = 2}, + [483] = {.lex_state = 193, .external_lex_state = 2}, + [484] = {.lex_state = 147, .external_lex_state = 2}, + [485] = {.lex_state = 205, .external_lex_state = 2}, + [486] = {.lex_state = 204, .external_lex_state = 2}, + [487] = {.lex_state = 204, .external_lex_state = 2}, + [488] = {.lex_state = 204, .external_lex_state = 2}, + [489] = {.lex_state = 204, .external_lex_state = 2}, + [490] = {.lex_state = 204, .external_lex_state = 2}, + [491] = {.lex_state = 204, .external_lex_state = 2}, + [492] = {.lex_state = 204, .external_lex_state = 2}, + [493] = {.lex_state = 204, .external_lex_state = 2}, + [494] = {.lex_state = 204, .external_lex_state = 2}, + [495] = {.lex_state = 204, .external_lex_state = 2}, + [496] = {.lex_state = 204, .external_lex_state = 2}, + [497] = {.lex_state = 204, .external_lex_state = 2}, + [498] = {.lex_state = 204, .external_lex_state = 2}, + [499] = {.lex_state = 204, .external_lex_state = 2}, + [500] = {.lex_state = 193, .external_lex_state = 2}, + [501] = {.lex_state = 205, .external_lex_state = 2}, + [502] = {.lex_state = 1772, .external_lex_state = 2}, + [503] = {.lex_state = 204, .external_lex_state = 2}, + [504] = {.lex_state = 204, .external_lex_state = 2}, + [505] = {.lex_state = 149, .external_lex_state = 2}, + [506] = {.lex_state = 193, .external_lex_state = 2}, + [507] = {.lex_state = 204, .external_lex_state = 2}, + [508] = {.lex_state = 204, .external_lex_state = 2}, + [509] = {.lex_state = 204, .external_lex_state = 2}, + [510] = {.lex_state = 204, .external_lex_state = 2}, + [511] = {.lex_state = 204, .external_lex_state = 2}, + [512] = {.lex_state = 206, .external_lex_state = 2}, + [513] = {.lex_state = 188, .external_lex_state = 2}, + [514] = {.lex_state = 206, .external_lex_state = 2}, + [515] = {.lex_state = 183, .external_lex_state = 2}, + [516] = {.lex_state = 206, .external_lex_state = 2}, + [517] = {.lex_state = 137, .external_lex_state = 2}, + [518] = {.lex_state = 150, .external_lex_state = 2}, + [519] = {.lex_state = 206, .external_lex_state = 2}, + [520] = {.lex_state = 183, .external_lex_state = 2}, + [521] = {.lex_state = 204, .external_lex_state = 2}, + [522] = {.lex_state = 189, .external_lex_state = 2}, + [523] = {.lex_state = 189, .external_lex_state = 2}, + [524] = {.lex_state = 206, .external_lex_state = 2}, + [525] = {.lex_state = 206, .external_lex_state = 2}, + [526] = {.lex_state = 204, .external_lex_state = 2}, + [527] = {.lex_state = 287, .external_lex_state = 2}, + [528] = {.lex_state = 206, .external_lex_state = 2}, + [529] = {.lex_state = 183, .external_lex_state = 2}, + [530] = {.lex_state = 137, .external_lex_state = 2}, + [531] = {.lex_state = 150, .external_lex_state = 2}, + [532] = {.lex_state = 206, .external_lex_state = 2}, + [533] = {.lex_state = 150, .external_lex_state = 2}, + [534] = {.lex_state = 150, .external_lex_state = 2}, + [535] = {.lex_state = 150, .external_lex_state = 2}, + [536] = {.lex_state = 287, .external_lex_state = 2}, + [537] = {.lex_state = 287, .external_lex_state = 2}, + [538] = {.lex_state = 189, .external_lex_state = 2}, + [539] = {.lex_state = 150, .external_lex_state = 2}, + [540] = {.lex_state = 206, .external_lex_state = 2}, + [541] = {.lex_state = 206, .external_lex_state = 2}, + [542] = {.lex_state = 189, .external_lex_state = 2}, + [543] = {.lex_state = 206, .external_lex_state = 2}, + [544] = {.lex_state = 189, .external_lex_state = 2}, + [545] = {.lex_state = 206, .external_lex_state = 2}, + [546] = {.lex_state = 206, .external_lex_state = 2}, + [547] = {.lex_state = 150, .external_lex_state = 2}, + [548] = {.lex_state = 150, .external_lex_state = 2}, + [549] = {.lex_state = 287, .external_lex_state = 2}, + [550] = {.lex_state = 150, .external_lex_state = 2}, + [551] = {.lex_state = 206, .external_lex_state = 2}, + [552] = {.lex_state = 189, .external_lex_state = 2}, + [553] = {.lex_state = 206, .external_lex_state = 2}, + [554] = {.lex_state = 150, .external_lex_state = 2}, + [555] = {.lex_state = 287, .external_lex_state = 2}, + [556] = {.lex_state = 206, .external_lex_state = 2}, + [557] = {.lex_state = 150, .external_lex_state = 2}, + [558] = {.lex_state = 150, .external_lex_state = 2}, + [559] = {.lex_state = 150, .external_lex_state = 2}, + [560] = {.lex_state = 150, .external_lex_state = 2}, + [561] = {.lex_state = 150, .external_lex_state = 2}, + [562] = {.lex_state = 190, .external_lex_state = 2}, + [563] = {.lex_state = 150, .external_lex_state = 2}, + [564] = {.lex_state = 238, .external_lex_state = 2}, + [565] = {.lex_state = 138, .external_lex_state = 2}, + [566] = {.lex_state = 138, .external_lex_state = 2}, + [567] = {.lex_state = 138, .external_lex_state = 2}, + [568] = {.lex_state = 138, .external_lex_state = 2}, + [569] = {.lex_state = 201, .external_lex_state = 2}, + [570] = {.lex_state = 138, .external_lex_state = 2}, + [571] = {.lex_state = 187, .external_lex_state = 2}, + [572] = {.lex_state = 187, .external_lex_state = 2}, + [573] = {.lex_state = 138, .external_lex_state = 2}, + [574] = {.lex_state = 138, .external_lex_state = 2}, + [575] = {.lex_state = 203, .external_lex_state = 2}, + [576] = {.lex_state = 138, .external_lex_state = 2}, + [577] = {.lex_state = 138, .external_lex_state = 2}, + [578] = {.lex_state = 238, .external_lex_state = 2}, + [579] = {.lex_state = 238, .external_lex_state = 2}, + [580] = {.lex_state = 181, .external_lex_state = 2}, + [581] = {.lex_state = 181, .external_lex_state = 2}, + [582] = {.lex_state = 238, .external_lex_state = 2}, + [583] = {.lex_state = 150, .external_lex_state = 2}, + [584] = {.lex_state = 202, .external_lex_state = 2}, + [585] = {.lex_state = 202, .external_lex_state = 2}, + [586] = {.lex_state = 286, .external_lex_state = 2}, + [587] = {.lex_state = 286, .external_lex_state = 2}, + [588] = {.lex_state = 286, .external_lex_state = 2}, + [589] = {.lex_state = 202, .external_lex_state = 2}, + [590] = {.lex_state = 202, .external_lex_state = 2}, + [591] = {.lex_state = 238, .external_lex_state = 2}, + [592] = {.lex_state = 202, .external_lex_state = 2}, + [593] = {.lex_state = 202, .external_lex_state = 2}, + [594] = {.lex_state = 286, .external_lex_state = 2}, + [595] = {.lex_state = 191, .external_lex_state = 2}, + [596] = {.lex_state = 238, .external_lex_state = 2}, + [597] = {.lex_state = 238, .external_lex_state = 2}, + [598] = {.lex_state = 138, .external_lex_state = 2}, + [599] = {.lex_state = 191, .external_lex_state = 2}, + [600] = {.lex_state = 191, .external_lex_state = 2}, + [601] = {.lex_state = 138, .external_lex_state = 2}, + [602] = {.lex_state = 138, .external_lex_state = 2}, + [603] = {.lex_state = 138, .external_lex_state = 2}, + [604] = {.lex_state = 138, .external_lex_state = 2}, + [605] = {.lex_state = 138, .external_lex_state = 2}, + [606] = {.lex_state = 238, .external_lex_state = 2}, + [607] = {.lex_state = 286, .external_lex_state = 2}, + [608] = {.lex_state = 238, .external_lex_state = 2}, + [609] = {.lex_state = 199, .external_lex_state = 2}, + [610] = {.lex_state = 199, .external_lex_state = 2}, + [611] = {.lex_state = 238, .external_lex_state = 2}, + [612] = {.lex_state = 238, .external_lex_state = 2}, + [613] = {.lex_state = 238, .external_lex_state = 2}, + [614] = {.lex_state = 238, .external_lex_state = 2}, + [615] = {.lex_state = 238, .external_lex_state = 2}, + [616] = {.lex_state = 238, .external_lex_state = 2}, + [617] = {.lex_state = 238, .external_lex_state = 2}, + [618] = {.lex_state = 238, .external_lex_state = 2}, + [619] = {.lex_state = 238, .external_lex_state = 2}, + [620] = {.lex_state = 238, .external_lex_state = 2}, + [621] = {.lex_state = 238, .external_lex_state = 2}, + [622] = {.lex_state = 238, .external_lex_state = 2}, + [623] = {.lex_state = 238, .external_lex_state = 2}, + [624] = {.lex_state = 238, .external_lex_state = 2}, + [625] = {.lex_state = 238, .external_lex_state = 2}, + [626] = {.lex_state = 238, .external_lex_state = 2}, + [627] = {.lex_state = 238, .external_lex_state = 2}, + [628] = {.lex_state = 238, .external_lex_state = 2}, + [629] = {.lex_state = 238, .external_lex_state = 2}, + [630] = {.lex_state = 238, .external_lex_state = 2}, + [631] = {.lex_state = 238, .external_lex_state = 2}, + [632] = {.lex_state = 238, .external_lex_state = 2}, + [633] = {.lex_state = 238, .external_lex_state = 2}, + [634] = {.lex_state = 238, .external_lex_state = 2}, + [635] = {.lex_state = 238, .external_lex_state = 2}, + [636] = {.lex_state = 238, .external_lex_state = 2}, + [637] = {.lex_state = 238, .external_lex_state = 2}, + [638] = {.lex_state = 238, .external_lex_state = 2}, + [639] = {.lex_state = 238, .external_lex_state = 2}, + [640] = {.lex_state = 238, .external_lex_state = 2}, + [641] = {.lex_state = 238, .external_lex_state = 2}, + [642] = {.lex_state = 238, .external_lex_state = 2}, + [643] = {.lex_state = 238, .external_lex_state = 2}, + [644] = {.lex_state = 238, .external_lex_state = 2}, + [645] = {.lex_state = 238, .external_lex_state = 2}, + [646] = {.lex_state = 238, .external_lex_state = 2}, + [647] = {.lex_state = 238, .external_lex_state = 2}, + [648] = {.lex_state = 238, .external_lex_state = 2}, + [649] = {.lex_state = 238, .external_lex_state = 2}, + [650] = {.lex_state = 46, .external_lex_state = 2}, + [651] = {.lex_state = 238, .external_lex_state = 2}, + [652] = {.lex_state = 238, .external_lex_state = 2}, + [653] = {.lex_state = 238, .external_lex_state = 2}, + [654] = {.lex_state = 238, .external_lex_state = 2}, + [655] = {.lex_state = 238, .external_lex_state = 2}, + [656] = {.lex_state = 238, .external_lex_state = 2}, + [657] = {.lex_state = 238, .external_lex_state = 2}, + [658] = {.lex_state = 238, .external_lex_state = 2}, + [659] = {.lex_state = 204, .external_lex_state = 2}, + [660] = {.lex_state = 238, .external_lex_state = 2}, + [661] = {.lex_state = 238, .external_lex_state = 2}, + [662] = {.lex_state = 204, .external_lex_state = 2}, + [663] = {.lex_state = 204, .external_lex_state = 2}, + [664] = {.lex_state = 238, .external_lex_state = 2}, + [665] = {.lex_state = 238, .external_lex_state = 2}, + [666] = {.lex_state = 238, .external_lex_state = 2}, + [667] = {.lex_state = 46, .external_lex_state = 2}, + [668] = {.lex_state = 238, .external_lex_state = 2}, + [669] = {.lex_state = 238, .external_lex_state = 2}, + [670] = {.lex_state = 238, .external_lex_state = 2}, + [671] = {.lex_state = 238, .external_lex_state = 2}, + [672] = {.lex_state = 238, .external_lex_state = 2}, + [673] = {.lex_state = 238, .external_lex_state = 2}, + [674] = {.lex_state = 238, .external_lex_state = 2}, + [675] = {.lex_state = 238, .external_lex_state = 2}, + [676] = {.lex_state = 238, .external_lex_state = 2}, + [677] = {.lex_state = 238, .external_lex_state = 2}, + [678] = {.lex_state = 238, .external_lex_state = 2}, + [679] = {.lex_state = 238, .external_lex_state = 2}, + [680] = {.lex_state = 238, .external_lex_state = 2}, + [681] = {.lex_state = 238, .external_lex_state = 2}, + [682] = {.lex_state = 46, .external_lex_state = 2}, + [683] = {.lex_state = 138, .external_lex_state = 2}, + [684] = {.lex_state = 238, .external_lex_state = 2}, + [685] = {.lex_state = 238, .external_lex_state = 2}, + [686] = {.lex_state = 238, .external_lex_state = 2}, + [687] = {.lex_state = 238, .external_lex_state = 2}, + [688] = {.lex_state = 138, .external_lex_state = 2}, + [689] = {.lex_state = 238, .external_lex_state = 2}, + [690] = {.lex_state = 238, .external_lex_state = 2}, + [691] = {.lex_state = 238, .external_lex_state = 2}, + [692] = {.lex_state = 238, .external_lex_state = 2}, + [693] = {.lex_state = 46, .external_lex_state = 2}, + [694] = {.lex_state = 46, .external_lex_state = 2}, + [695] = {.lex_state = 46, .external_lex_state = 2}, + [696] = {.lex_state = 46, .external_lex_state = 2}, + [697] = {.lex_state = 46, .external_lex_state = 2}, + [698] = {.lex_state = 46, .external_lex_state = 2}, + [699] = {.lex_state = 46, .external_lex_state = 2}, + [700] = {.lex_state = 46, .external_lex_state = 2}, + [701] = {.lex_state = 46, .external_lex_state = 2}, + [702] = {.lex_state = 46, .external_lex_state = 2}, + [703] = {.lex_state = 46, .external_lex_state = 2}, + [704] = {.lex_state = 46, .external_lex_state = 2}, + [705] = {.lex_state = 46, .external_lex_state = 2}, + [706] = {.lex_state = 46, .external_lex_state = 2}, + [707] = {.lex_state = 46, .external_lex_state = 2}, + [708] = {.lex_state = 46, .external_lex_state = 2}, + [709] = {.lex_state = 46, .external_lex_state = 2}, + [710] = {.lex_state = 46, .external_lex_state = 2}, + [711] = {.lex_state = 46, .external_lex_state = 2}, + [712] = {.lex_state = 46, .external_lex_state = 2}, + [713] = {.lex_state = 46, .external_lex_state = 2}, + [714] = {.lex_state = 46, .external_lex_state = 2}, + [715] = {.lex_state = 46, .external_lex_state = 2}, + [716] = {.lex_state = 46, .external_lex_state = 2}, + [717] = {.lex_state = 1769, .external_lex_state = 2}, + [718] = {.lex_state = 46, .external_lex_state = 2}, + [719] = {.lex_state = 46, .external_lex_state = 2}, + [720] = {.lex_state = 46, .external_lex_state = 2}, + [721] = {.lex_state = 46, .external_lex_state = 2}, + [722] = {.lex_state = 46, .external_lex_state = 2}, + [723] = {.lex_state = 46, .external_lex_state = 2}, + [724] = {.lex_state = 46, .external_lex_state = 2}, + [725] = {.lex_state = 46, .external_lex_state = 2}, + [726] = {.lex_state = 46, .external_lex_state = 2}, + [727] = {.lex_state = 46, .external_lex_state = 2}, + [728] = {.lex_state = 46, .external_lex_state = 2}, + [729] = {.lex_state = 1769, .external_lex_state = 2}, + [730] = {.lex_state = 46, .external_lex_state = 2}, + [731] = {.lex_state = 46, .external_lex_state = 2}, + [732] = {.lex_state = 46, .external_lex_state = 2}, + [733] = {.lex_state = 46, .external_lex_state = 2}, + [734] = {.lex_state = 46, .external_lex_state = 2}, + [735] = {.lex_state = 46, .external_lex_state = 2}, + [736] = {.lex_state = 46, .external_lex_state = 2}, + [737] = {.lex_state = 46, .external_lex_state = 2}, + [738] = {.lex_state = 46, .external_lex_state = 2}, + [739] = {.lex_state = 46, .external_lex_state = 2}, + [740] = {.lex_state = 46, .external_lex_state = 2}, + [741] = {.lex_state = 46, .external_lex_state = 2}, + [742] = {.lex_state = 46, .external_lex_state = 2}, + [743] = {.lex_state = 1769, .external_lex_state = 2}, + [744] = {.lex_state = 46, .external_lex_state = 2}, + [745] = {.lex_state = 46, .external_lex_state = 2}, + [746] = {.lex_state = 46, .external_lex_state = 2}, + [747] = {.lex_state = 46, .external_lex_state = 2}, + [748] = {.lex_state = 46, .external_lex_state = 2}, + [749] = {.lex_state = 46, .external_lex_state = 2}, + [750] = {.lex_state = 46, .external_lex_state = 2}, + [751] = {.lex_state = 46, .external_lex_state = 2}, + [752] = {.lex_state = 46, .external_lex_state = 2}, + [753] = {.lex_state = 46, .external_lex_state = 2}, + [754] = {.lex_state = 46, .external_lex_state = 2}, + [755] = {.lex_state = 46, .external_lex_state = 2}, + [756] = {.lex_state = 46, .external_lex_state = 2}, + [757] = {.lex_state = 46, .external_lex_state = 2}, + [758] = {.lex_state = 46, .external_lex_state = 2}, + [759] = {.lex_state = 46, .external_lex_state = 2}, + [760] = {.lex_state = 46, .external_lex_state = 2}, + [761] = {.lex_state = 46, .external_lex_state = 2}, + [762] = {.lex_state = 46, .external_lex_state = 2}, + [763] = {.lex_state = 46, .external_lex_state = 2}, + [764] = {.lex_state = 46, .external_lex_state = 2}, + [765] = {.lex_state = 46, .external_lex_state = 2}, + [766] = {.lex_state = 46, .external_lex_state = 2}, + [767] = {.lex_state = 46, .external_lex_state = 2}, + [768] = {.lex_state = 46, .external_lex_state = 2}, + [769] = {.lex_state = 46, .external_lex_state = 2}, + [770] = {.lex_state = 46, .external_lex_state = 2}, + [771] = {.lex_state = 46, .external_lex_state = 2}, + [772] = {.lex_state = 1769, .external_lex_state = 2}, + [773] = {.lex_state = 55, .external_lex_state = 2}, + [774] = {.lex_state = 1769, .external_lex_state = 2}, + [775] = {.lex_state = 55, .external_lex_state = 2}, + [776] = {.lex_state = 1769, .external_lex_state = 2}, + [777] = {.lex_state = 1769, .external_lex_state = 2}, + [778] = {.lex_state = 3185}, + [779] = {.lex_state = 3186}, + [780] = {.lex_state = 1769, .external_lex_state = 2}, + [781] = {.lex_state = 1769, .external_lex_state = 2}, + [782] = {.lex_state = 1778, .external_lex_state = 2}, + [783] = {.lex_state = 3191}, + [784] = {.lex_state = 1778, .external_lex_state = 2}, + [785] = {.lex_state = 1778, .external_lex_state = 2}, + [786] = {.lex_state = 1778, .external_lex_state = 2}, + [787] = {.lex_state = 1778, .external_lex_state = 2}, + [788] = {.lex_state = 3199}, + [789] = {.lex_state = 3187}, + [790] = {.lex_state = 1778, .external_lex_state = 2}, + [791] = {.lex_state = 3203}, + [792] = {.lex_state = 3337}, + [793] = {.lex_state = 1778, .external_lex_state = 2}, + [794] = {.lex_state = 3187}, + [795] = {.lex_state = 3335}, + [796] = {.lex_state = 1778, .external_lex_state = 2}, + [797] = {.lex_state = 1778, .external_lex_state = 2}, + [798] = {.lex_state = 1778, .external_lex_state = 2}, + [799] = {.lex_state = 3189}, + [800] = {.lex_state = 1778, .external_lex_state = 2}, + [801] = {.lex_state = 3205}, + [802] = {.lex_state = 3188}, + [803] = {.lex_state = 3188}, + [804] = {.lex_state = 1778, .external_lex_state = 2}, + [805] = {.lex_state = 1778, .external_lex_state = 2}, + [806] = {.lex_state = 3205}, + [807] = {.lex_state = 3193}, + [808] = {.lex_state = 3335}, + [809] = {.lex_state = 3339}, + [810] = {.lex_state = 1778, .external_lex_state = 2}, + [811] = {.lex_state = 1778, .external_lex_state = 2}, + [812] = {.lex_state = 3188}, + [813] = {.lex_state = 3188}, + [814] = {.lex_state = 3339}, + [815] = {.lex_state = 3193}, + [816] = {.lex_state = 3188}, + [817] = {.lex_state = 3337}, + [818] = {.lex_state = 3201}, + [819] = {.lex_state = 3207}, + [820] = {.lex_state = 3339}, + [821] = {.lex_state = 3341}, + [822] = {.lex_state = 3341}, + [823] = {.lex_state = 3195}, + [824] = {.lex_state = 3341}, + [825] = {.lex_state = 3195}, + [826] = {.lex_state = 3209}, + [827] = {.lex_state = 3339}, + [828] = {.lex_state = 3195}, + [829] = {.lex_state = 3207}, + [830] = {.lex_state = 3341}, + [831] = {.lex_state = 3207}, + [832] = {.lex_state = 3207}, + [833] = {.lex_state = 3341}, + [834] = {.lex_state = 3195}, + [835] = {.lex_state = 3207}, + [836] = {.lex_state = 3195}, + [837] = {.lex_state = 3341}, + [838] = {.lex_state = 3341}, + [839] = {.lex_state = 3341}, + [840] = {.lex_state = 3211}, + [841] = {.lex_state = 3211}, + [842] = {.lex_state = 3341}, + [843] = {.lex_state = 3341}, + [844] = {.lex_state = 55, .external_lex_state = 2}, + [845] = {.lex_state = 55, .external_lex_state = 2}, + [846] = {.lex_state = 55, .external_lex_state = 2}, + [847] = {.lex_state = 55, .external_lex_state = 2}, + [848] = {.lex_state = 3213}, + [849] = {.lex_state = 55, .external_lex_state = 2}, + [850] = {.lex_state = 55, .external_lex_state = 2}, + [851] = {.lex_state = 55, .external_lex_state = 2}, + [852] = {.lex_state = 55, .external_lex_state = 2}, + [853] = {.lex_state = 55, .external_lex_state = 2}, + [854] = {.lex_state = 55, .external_lex_state = 2}, + [855] = {.lex_state = 55, .external_lex_state = 2}, + [856] = {.lex_state = 55, .external_lex_state = 2}, + [857] = {.lex_state = 3213}, + [858] = {.lex_state = 55, .external_lex_state = 2}, + [859] = {.lex_state = 55, .external_lex_state = 2}, + [860] = {.lex_state = 55, .external_lex_state = 2}, + [861] = {.lex_state = 3213}, + [862] = {.lex_state = 55, .external_lex_state = 2}, + [863] = {.lex_state = 55, .external_lex_state = 2}, + [864] = {.lex_state = 55, .external_lex_state = 2}, + [865] = {.lex_state = 55, .external_lex_state = 2}, + [866] = {.lex_state = 55, .external_lex_state = 2}, + [867] = {.lex_state = 3213}, + [868] = {.lex_state = 55, .external_lex_state = 2}, + [869] = {.lex_state = 3213}, + [870] = {.lex_state = 55, .external_lex_state = 2}, + [871] = {.lex_state = 55, .external_lex_state = 2}, + [872] = {.lex_state = 3215}, + [873] = {.lex_state = 3197}, + [874] = {.lex_state = 3197}, + [875] = {.lex_state = 3215}, + [876] = {.lex_state = 3215}, + [877] = {.lex_state = 3343}, + [878] = {.lex_state = 3343}, + [879] = {.lex_state = 3215}, + [880] = {.lex_state = 55, .external_lex_state = 2}, + [881] = {.lex_state = 55, .external_lex_state = 2}, + [882] = {.lex_state = 55, .external_lex_state = 2}, + [883] = {.lex_state = 55, .external_lex_state = 2}, + [884] = {.lex_state = 3343}, + [885] = {.lex_state = 3343}, + [886] = {.lex_state = 55, .external_lex_state = 2}, + [887] = {.lex_state = 55, .external_lex_state = 2}, + [888] = {.lex_state = 55, .external_lex_state = 2}, + [889] = {.lex_state = 55, .external_lex_state = 2}, + [890] = {.lex_state = 55, .external_lex_state = 2}, + [891] = {.lex_state = 55, .external_lex_state = 2}, + [892] = {.lex_state = 55, .external_lex_state = 2}, + [893] = {.lex_state = 55, .external_lex_state = 2}, + [894] = {.lex_state = 55, .external_lex_state = 2}, + [895] = {.lex_state = 55, .external_lex_state = 2}, + [896] = {.lex_state = 55, .external_lex_state = 2}, + [897] = {.lex_state = 55, .external_lex_state = 2}, + [898] = {.lex_state = 55, .external_lex_state = 2}, + [899] = {.lex_state = 55, .external_lex_state = 2}, + [900] = {.lex_state = 55, .external_lex_state = 2}, + [901] = {.lex_state = 55, .external_lex_state = 2}, + [902] = {.lex_state = 3217}, + [903] = {.lex_state = 3217}, + [904] = {.lex_state = 54, .external_lex_state = 2}, + [905] = {.lex_state = 54, .external_lex_state = 2}, + [906] = {.lex_state = 54, .external_lex_state = 2}, + [907] = {.lex_state = 54, .external_lex_state = 2}, + [908] = {.lex_state = 54, .external_lex_state = 2}, + [909] = {.lex_state = 54, .external_lex_state = 2}, + [910] = {.lex_state = 54, .external_lex_state = 2}, + [911] = {.lex_state = 54, .external_lex_state = 2}, + [912] = {.lex_state = 54, .external_lex_state = 2}, + [913] = {.lex_state = 54, .external_lex_state = 2}, + [914] = {.lex_state = 54, .external_lex_state = 2}, + [915] = {.lex_state = 54, .external_lex_state = 2}, + [916] = {.lex_state = 54, .external_lex_state = 2}, + [917] = {.lex_state = 54, .external_lex_state = 2}, + [918] = {.lex_state = 54, .external_lex_state = 2}, + [919] = {.lex_state = 54, .external_lex_state = 2}, + [920] = {.lex_state = 54, .external_lex_state = 2}, + [921] = {.lex_state = 54, .external_lex_state = 2}, + [922] = {.lex_state = 54, .external_lex_state = 2}, + [923] = {.lex_state = 54, .external_lex_state = 2}, + [924] = {.lex_state = 54, .external_lex_state = 2}, + [925] = {.lex_state = 54, .external_lex_state = 2}, + [926] = {.lex_state = 54, .external_lex_state = 2}, + [927] = {.lex_state = 54, .external_lex_state = 2}, + [928] = {.lex_state = 54, .external_lex_state = 2}, + [929] = {.lex_state = 54, .external_lex_state = 2}, + [930] = {.lex_state = 54, .external_lex_state = 2}, + [931] = {.lex_state = 54, .external_lex_state = 2}, + [932] = {.lex_state = 54, .external_lex_state = 2}, + [933] = {.lex_state = 54, .external_lex_state = 2}, + [934] = {.lex_state = 54, .external_lex_state = 2}, + [935] = {.lex_state = 54, .external_lex_state = 2}, + [936] = {.lex_state = 54, .external_lex_state = 2}, + [937] = {.lex_state = 54, .external_lex_state = 2}, + [938] = {.lex_state = 54, .external_lex_state = 2}, + [939] = {.lex_state = 54, .external_lex_state = 2}, + [940] = {.lex_state = 54, .external_lex_state = 2}, + [941] = {.lex_state = 54, .external_lex_state = 2}, + [942] = {.lex_state = 54, .external_lex_state = 2}, + [943] = {.lex_state = 54, .external_lex_state = 2}, + [944] = {.lex_state = 54, .external_lex_state = 2}, + [945] = {.lex_state = 54, .external_lex_state = 2}, + [946] = {.lex_state = 54, .external_lex_state = 2}, + [947] = {.lex_state = 54, .external_lex_state = 2}, + [948] = {.lex_state = 54, .external_lex_state = 2}, + [949] = {.lex_state = 54, .external_lex_state = 2}, + [950] = {.lex_state = 54, .external_lex_state = 2}, + [951] = {.lex_state = 54, .external_lex_state = 2}, + [952] = {.lex_state = 54, .external_lex_state = 2}, + [953] = {.lex_state = 54, .external_lex_state = 2}, + [954] = {.lex_state = 54, .external_lex_state = 2}, + [955] = {.lex_state = 54, .external_lex_state = 2}, + [956] = {.lex_state = 54, .external_lex_state = 2}, + [957] = {.lex_state = 54, .external_lex_state = 2}, + [958] = {.lex_state = 54, .external_lex_state = 2}, + [959] = {.lex_state = 54, .external_lex_state = 2}, + [960] = {.lex_state = 54, .external_lex_state = 2}, + [961] = {.lex_state = 54, .external_lex_state = 2}, + [962] = {.lex_state = 54, .external_lex_state = 2}, + [963] = {.lex_state = 54, .external_lex_state = 2}, + [964] = {.lex_state = 54, .external_lex_state = 2}, + [965] = {.lex_state = 54, .external_lex_state = 2}, + [966] = {.lex_state = 54, .external_lex_state = 2}, + [967] = {.lex_state = 54, .external_lex_state = 2}, + [968] = {.lex_state = 54, .external_lex_state = 2}, + [969] = {.lex_state = 54, .external_lex_state = 2}, + [970] = {.lex_state = 54, .external_lex_state = 2}, + [971] = {.lex_state = 54, .external_lex_state = 2}, + [972] = {.lex_state = 54, .external_lex_state = 2}, + [973] = {.lex_state = 54, .external_lex_state = 2}, + [974] = {.lex_state = 54, .external_lex_state = 2}, + [975] = {.lex_state = 54, .external_lex_state = 2}, + [976] = {.lex_state = 54, .external_lex_state = 2}, + [977] = {.lex_state = 54, .external_lex_state = 2}, + [978] = {.lex_state = 54, .external_lex_state = 2}, + [979] = {.lex_state = 54, .external_lex_state = 2}, + [980] = {.lex_state = 54, .external_lex_state = 2}, + [981] = {.lex_state = 54, .external_lex_state = 2}, + [982] = {.lex_state = 54, .external_lex_state = 2}, + [983] = {.lex_state = 54, .external_lex_state = 2}, + [984] = {.lex_state = 54, .external_lex_state = 2}, + [985] = {.lex_state = 54, .external_lex_state = 2}, + [986] = {.lex_state = 54, .external_lex_state = 2}, + [987] = {.lex_state = 54, .external_lex_state = 2}, + [988] = {.lex_state = 54, .external_lex_state = 2}, + [989] = {.lex_state = 55, .external_lex_state = 2}, + [990] = {.lex_state = 54, .external_lex_state = 2}, + [991] = {.lex_state = 54, .external_lex_state = 2}, + [992] = {.lex_state = 54, .external_lex_state = 2}, + [993] = {.lex_state = 54, .external_lex_state = 2}, + [994] = {.lex_state = 54, .external_lex_state = 2}, + [995] = {.lex_state = 54, .external_lex_state = 2}, + [996] = {.lex_state = 54, .external_lex_state = 2}, + [997] = {.lex_state = 54, .external_lex_state = 2}, + [998] = {.lex_state = 54, .external_lex_state = 2}, + [999] = {.lex_state = 54, .external_lex_state = 2}, + [1000] = {.lex_state = 54, .external_lex_state = 2}, + [1001] = {.lex_state = 54, .external_lex_state = 2}, + [1002] = {.lex_state = 54, .external_lex_state = 2}, + [1003] = {.lex_state = 54, .external_lex_state = 2}, + [1004] = {.lex_state = 54, .external_lex_state = 2}, + [1005] = {.lex_state = 54, .external_lex_state = 2}, + [1006] = {.lex_state = 54, .external_lex_state = 2}, + [1007] = {.lex_state = 54, .external_lex_state = 2}, + [1008] = {.lex_state = 54, .external_lex_state = 2}, + [1009] = {.lex_state = 54, .external_lex_state = 2}, + [1010] = {.lex_state = 54, .external_lex_state = 2}, + [1011] = {.lex_state = 54, .external_lex_state = 2}, + [1012] = {.lex_state = 54, .external_lex_state = 2}, + [1013] = {.lex_state = 54, .external_lex_state = 2}, + [1014] = {.lex_state = 54, .external_lex_state = 2}, + [1015] = {.lex_state = 54, .external_lex_state = 2}, + [1016] = {.lex_state = 54, .external_lex_state = 2}, + [1017] = {.lex_state = 54, .external_lex_state = 2}, + [1018] = {.lex_state = 54, .external_lex_state = 2}, + [1019] = {.lex_state = 54, .external_lex_state = 2}, + [1020] = {.lex_state = 54, .external_lex_state = 2}, + [1021] = {.lex_state = 54, .external_lex_state = 2}, + [1022] = {.lex_state = 54, .external_lex_state = 2}, + [1023] = {.lex_state = 54, .external_lex_state = 2}, + [1024] = {.lex_state = 54, .external_lex_state = 2}, + [1025] = {.lex_state = 54, .external_lex_state = 2}, + [1026] = {.lex_state = 54, .external_lex_state = 2}, + [1027] = {.lex_state = 54, .external_lex_state = 2}, + [1028] = {.lex_state = 54, .external_lex_state = 2}, + [1029] = {.lex_state = 54, .external_lex_state = 2}, + [1030] = {.lex_state = 54, .external_lex_state = 2}, + [1031] = {.lex_state = 54, .external_lex_state = 2}, + [1032] = {.lex_state = 54, .external_lex_state = 2}, + [1033] = {.lex_state = 54, .external_lex_state = 2}, + [1034] = {.lex_state = 54, .external_lex_state = 2}, + [1035] = {.lex_state = 54, .external_lex_state = 2}, + [1036] = {.lex_state = 54, .external_lex_state = 2}, + [1037] = {.lex_state = 54, .external_lex_state = 2}, + [1038] = {.lex_state = 54, .external_lex_state = 2}, + [1039] = {.lex_state = 54, .external_lex_state = 2}, + [1040] = {.lex_state = 54, .external_lex_state = 2}, + [1041] = {.lex_state = 55, .external_lex_state = 2}, + [1042] = {.lex_state = 55, .external_lex_state = 2}, + [1043] = {.lex_state = 54, .external_lex_state = 2}, + [1044] = {.lex_state = 54, .external_lex_state = 2}, + [1045] = {.lex_state = 54, .external_lex_state = 2}, + [1046] = {.lex_state = 54, .external_lex_state = 2}, + [1047] = {.lex_state = 54, .external_lex_state = 2}, + [1048] = {.lex_state = 54, .external_lex_state = 2}, + [1049] = {.lex_state = 54, .external_lex_state = 2}, + [1050] = {.lex_state = 54, .external_lex_state = 2}, + [1051] = {.lex_state = 54, .external_lex_state = 2}, + [1052] = {.lex_state = 54, .external_lex_state = 2}, + [1053] = {.lex_state = 54, .external_lex_state = 2}, + [1054] = {.lex_state = 54, .external_lex_state = 2}, + [1055] = {.lex_state = 54, .external_lex_state = 2}, + [1056] = {.lex_state = 54, .external_lex_state = 2}, + [1057] = {.lex_state = 54, .external_lex_state = 2}, + [1058] = {.lex_state = 54, .external_lex_state = 2}, + [1059] = {.lex_state = 54, .external_lex_state = 2}, + [1060] = {.lex_state = 54, .external_lex_state = 2}, + [1061] = {.lex_state = 54, .external_lex_state = 2}, + [1062] = {.lex_state = 54, .external_lex_state = 2}, + [1063] = {.lex_state = 54, .external_lex_state = 2}, + [1064] = {.lex_state = 54, .external_lex_state = 2}, + [1065] = {.lex_state = 54, .external_lex_state = 2}, + [1066] = {.lex_state = 54, .external_lex_state = 2}, + [1067] = {.lex_state = 54, .external_lex_state = 2}, + [1068] = {.lex_state = 54, .external_lex_state = 2}, + [1069] = {.lex_state = 54, .external_lex_state = 2}, + [1070] = {.lex_state = 54, .external_lex_state = 2}, + [1071] = {.lex_state = 54, .external_lex_state = 2}, + [1072] = {.lex_state = 54, .external_lex_state = 2}, + [1073] = {.lex_state = 54, .external_lex_state = 2}, + [1074] = {.lex_state = 54, .external_lex_state = 2}, + [1075] = {.lex_state = 54, .external_lex_state = 2}, + [1076] = {.lex_state = 53, .external_lex_state = 2}, + [1077] = {.lex_state = 54, .external_lex_state = 2}, + [1078] = {.lex_state = 54, .external_lex_state = 2}, + [1079] = {.lex_state = 54, .external_lex_state = 2}, + [1080] = {.lex_state = 54, .external_lex_state = 2}, + [1081] = {.lex_state = 54, .external_lex_state = 2}, + [1082] = {.lex_state = 54, .external_lex_state = 2}, + [1083] = {.lex_state = 54, .external_lex_state = 2}, + [1084] = {.lex_state = 54, .external_lex_state = 2}, + [1085] = {.lex_state = 54, .external_lex_state = 2}, + [1086] = {.lex_state = 54, .external_lex_state = 2}, + [1087] = {.lex_state = 54, .external_lex_state = 2}, + [1088] = {.lex_state = 54, .external_lex_state = 2}, + [1089] = {.lex_state = 54, .external_lex_state = 2}, + [1090] = {.lex_state = 54, .external_lex_state = 2}, + [1091] = {.lex_state = 54, .external_lex_state = 2}, + [1092] = {.lex_state = 54, .external_lex_state = 2}, + [1093] = {.lex_state = 54, .external_lex_state = 2}, + [1094] = {.lex_state = 54, .external_lex_state = 2}, + [1095] = {.lex_state = 54, .external_lex_state = 2}, + [1096] = {.lex_state = 54, .external_lex_state = 2}, + [1097] = {.lex_state = 54, .external_lex_state = 2}, + [1098] = {.lex_state = 54, .external_lex_state = 2}, + [1099] = {.lex_state = 54, .external_lex_state = 2}, + [1100] = {.lex_state = 54, .external_lex_state = 2}, + [1101] = {.lex_state = 54, .external_lex_state = 2}, + [1102] = {.lex_state = 54, .external_lex_state = 2}, + [1103] = {.lex_state = 54, .external_lex_state = 2}, + [1104] = {.lex_state = 54, .external_lex_state = 2}, + [1105] = {.lex_state = 54, .external_lex_state = 2}, + [1106] = {.lex_state = 54, .external_lex_state = 2}, + [1107] = {.lex_state = 54, .external_lex_state = 2}, + [1108] = {.lex_state = 54, .external_lex_state = 2}, + [1109] = {.lex_state = 54, .external_lex_state = 2}, + [1110] = {.lex_state = 54, .external_lex_state = 2}, + [1111] = {.lex_state = 54, .external_lex_state = 2}, + [1112] = {.lex_state = 54, .external_lex_state = 2}, + [1113] = {.lex_state = 54, .external_lex_state = 2}, + [1114] = {.lex_state = 54, .external_lex_state = 2}, + [1115] = {.lex_state = 54, .external_lex_state = 2}, + [1116] = {.lex_state = 54, .external_lex_state = 2}, + [1117] = {.lex_state = 54, .external_lex_state = 2}, + [1118] = {.lex_state = 54, .external_lex_state = 2}, + [1119] = {.lex_state = 54, .external_lex_state = 2}, + [1120] = {.lex_state = 54, .external_lex_state = 2}, + [1121] = {.lex_state = 54, .external_lex_state = 2}, + [1122] = {.lex_state = 54, .external_lex_state = 2}, + [1123] = {.lex_state = 54, .external_lex_state = 2}, + [1124] = {.lex_state = 54, .external_lex_state = 2}, + [1125] = {.lex_state = 54, .external_lex_state = 2}, + [1126] = {.lex_state = 54, .external_lex_state = 2}, + [1127] = {.lex_state = 54, .external_lex_state = 2}, + [1128] = {.lex_state = 54, .external_lex_state = 2}, + [1129] = {.lex_state = 54, .external_lex_state = 2}, + [1130] = {.lex_state = 54, .external_lex_state = 2}, + [1131] = {.lex_state = 54, .external_lex_state = 2}, + [1132] = {.lex_state = 54, .external_lex_state = 2}, + [1133] = {.lex_state = 54, .external_lex_state = 2}, + [1134] = {.lex_state = 54, .external_lex_state = 2}, + [1135] = {.lex_state = 54, .external_lex_state = 2}, + [1136] = {.lex_state = 54, .external_lex_state = 2}, + [1137] = {.lex_state = 54, .external_lex_state = 2}, + [1138] = {.lex_state = 54, .external_lex_state = 2}, + [1139] = {.lex_state = 14, .external_lex_state = 2}, + [1140] = {.lex_state = 54, .external_lex_state = 2}, + [1141] = {.lex_state = 54, .external_lex_state = 2}, + [1142] = {.lex_state = 54, .external_lex_state = 2}, + [1143] = {.lex_state = 54, .external_lex_state = 2}, + [1144] = {.lex_state = 54, .external_lex_state = 2}, + [1145] = {.lex_state = 54, .external_lex_state = 2}, + [1146] = {.lex_state = 54, .external_lex_state = 2}, + [1147] = {.lex_state = 14, .external_lex_state = 2}, + [1148] = {.lex_state = 54, .external_lex_state = 2}, + [1149] = {.lex_state = 54, .external_lex_state = 2}, + [1150] = {.lex_state = 54, .external_lex_state = 2}, + [1151] = {.lex_state = 54, .external_lex_state = 2}, + [1152] = {.lex_state = 54, .external_lex_state = 2}, + [1153] = {.lex_state = 54, .external_lex_state = 2}, + [1154] = {.lex_state = 54, .external_lex_state = 2}, + [1155] = {.lex_state = 54, .external_lex_state = 2}, + [1156] = {.lex_state = 54, .external_lex_state = 2}, + [1157] = {.lex_state = 1770, .external_lex_state = 2}, + [1158] = {.lex_state = 1770, .external_lex_state = 2}, + [1159] = {.lex_state = 1770, .external_lex_state = 2}, + [1160] = {.lex_state = 54, .external_lex_state = 2}, + [1161] = {.lex_state = 54, .external_lex_state = 2}, + [1162] = {.lex_state = 54, .external_lex_state = 2}, + [1163] = {.lex_state = 54, .external_lex_state = 2}, + [1164] = {.lex_state = 54, .external_lex_state = 2}, + [1165] = {.lex_state = 49, .external_lex_state = 2}, + [1166] = {.lex_state = 54, .external_lex_state = 2}, + [1167] = {.lex_state = 1770, .external_lex_state = 2}, + [1168] = {.lex_state = 49, .external_lex_state = 2}, + [1169] = {.lex_state = 49, .external_lex_state = 2}, + [1170] = {.lex_state = 50, .external_lex_state = 2}, + [1171] = {.lex_state = 49, .external_lex_state = 2}, + [1172] = {.lex_state = 256, .external_lex_state = 2}, + [1173] = {.lex_state = 49, .external_lex_state = 2}, + [1174] = {.lex_state = 256, .external_lex_state = 2}, + [1175] = {.lex_state = 1770, .external_lex_state = 2}, + [1176] = {.lex_state = 3190}, + [1177] = {.lex_state = 3200}, + [1178] = {.lex_state = 3204}, + [1179] = {.lex_state = 56, .external_lex_state = 2}, + [1180] = {.lex_state = 3336}, + [1181] = {.lex_state = 3338}, + [1182] = {.lex_state = 50, .external_lex_state = 2}, + [1183] = {.lex_state = 49, .external_lex_state = 2}, + [1184] = {.lex_state = 44, .external_lex_state = 2}, + [1185] = {.lex_state = 3192}, + [1186] = {.lex_state = 56, .external_lex_state = 2}, + [1187] = {.lex_state = 56, .external_lex_state = 2}, + [1188] = {.lex_state = 44, .external_lex_state = 2}, + [1189] = {.lex_state = 44, .external_lex_state = 2}, + [1190] = {.lex_state = 44, .external_lex_state = 2}, + [1191] = {.lex_state = 56, .external_lex_state = 2}, + [1192] = {.lex_state = 3340}, + [1193] = {.lex_state = 44, .external_lex_state = 2}, + [1194] = {.lex_state = 44, .external_lex_state = 2}, + [1195] = {.lex_state = 3206}, + [1196] = {.lex_state = 3206}, + [1197] = {.lex_state = 3194}, + [1198] = {.lex_state = 3336}, + [1199] = {.lex_state = 44, .external_lex_state = 2}, + [1200] = {.lex_state = 44, .external_lex_state = 2}, + [1201] = {.lex_state = 3194}, + [1202] = {.lex_state = 3340}, + [1203] = {.lex_state = 3338}, + [1204] = {.lex_state = 56, .external_lex_state = 2}, + [1205] = {.lex_state = 56, .external_lex_state = 2}, + [1206] = {.lex_state = 3208}, + [1207] = {.lex_state = 3208}, + [1208] = {.lex_state = 3342}, + [1209] = {.lex_state = 3342}, + [1210] = {.lex_state = 3202}, + [1211] = {.lex_state = 3342}, + [1212] = {.lex_state = 3342}, + [1213] = {.lex_state = 56, .external_lex_state = 2}, + [1214] = {.lex_state = 56, .external_lex_state = 2}, + [1215] = {.lex_state = 3342}, + [1216] = {.lex_state = 3210}, + [1217] = {.lex_state = 3196}, + [1218] = {.lex_state = 3208}, + [1219] = {.lex_state = 56, .external_lex_state = 2}, + [1220] = {.lex_state = 3340}, + [1221] = {.lex_state = 3340}, + [1222] = {.lex_state = 3208}, + [1223] = {.lex_state = 3196}, + [1224] = {.lex_state = 3196}, + [1225] = {.lex_state = 3208}, + [1226] = {.lex_state = 3196}, + [1227] = {.lex_state = 3196}, + [1228] = {.lex_state = 56, .external_lex_state = 2}, + [1229] = {.lex_state = 3342}, + [1230] = {.lex_state = 3342}, + [1231] = {.lex_state = 262, .external_lex_state = 2}, + [1232] = {.lex_state = 44, .external_lex_state = 2}, + [1233] = {.lex_state = 44, .external_lex_state = 2}, [1234] = {.lex_state = 45, .external_lex_state = 2}, - [1235] = {.lex_state = 3172}, - [1236] = {.lex_state = 3302}, - [1237] = {.lex_state = 3302}, - [1238] = {.lex_state = 3302}, - [1239] = {.lex_state = 3302}, - [1240] = {.lex_state = 36, .external_lex_state = 2}, - [1241] = {.lex_state = 238, .external_lex_state = 2}, - [1242] = {.lex_state = 45, .external_lex_state = 2}, - [1243] = {.lex_state = 36, .external_lex_state = 2}, - [1244] = {.lex_state = 36, .external_lex_state = 2}, - [1245] = {.lex_state = 36, .external_lex_state = 2}, - [1246] = {.lex_state = 36, .external_lex_state = 2}, - [1247] = {.lex_state = 36, .external_lex_state = 2}, - [1248] = {.lex_state = 36, .external_lex_state = 2}, - [1249] = {.lex_state = 3302}, - [1250] = {.lex_state = 36, .external_lex_state = 2}, - [1251] = {.lex_state = 42, .external_lex_state = 2}, - [1252] = {.lex_state = 1704, .external_lex_state = 2}, - [1253] = {.lex_state = 3174}, - [1254] = {.lex_state = 3174}, - [1255] = {.lex_state = 3174}, - [1256] = {.lex_state = 3174}, - [1257] = {.lex_state = 3174}, - [1258] = {.lex_state = 42, .external_lex_state = 2}, - [1259] = {.lex_state = 1703, .external_lex_state = 2}, - [1260] = {.lex_state = 1714, .external_lex_state = 2}, - [1261] = {.lex_state = 1704, .external_lex_state = 2}, - [1262] = {.lex_state = 1718, .external_lex_state = 2}, - [1263] = {.lex_state = 1705, .external_lex_state = 2}, - [1264] = {.lex_state = 1703, .external_lex_state = 2}, - [1265] = {.lex_state = 42, .external_lex_state = 2}, - [1266] = {.lex_state = 1707, .external_lex_state = 2}, - [1267] = {.lex_state = 42, .external_lex_state = 2}, - [1268] = {.lex_state = 42, .external_lex_state = 2}, - [1269] = {.lex_state = 42, .external_lex_state = 2}, - [1270] = {.lex_state = 42, .external_lex_state = 2}, - [1271] = {.lex_state = 1707, .external_lex_state = 2}, - [1272] = {.lex_state = 42, .external_lex_state = 2}, - [1273] = {.lex_state = 42, .external_lex_state = 2}, - [1274] = {.lex_state = 1708, .external_lex_state = 2}, - [1275] = {.lex_state = 10}, - [1276] = {.lex_state = 1742, .external_lex_state = 2}, - [1277] = {.lex_state = 1717, .external_lex_state = 2}, - [1278] = {.lex_state = 42, .external_lex_state = 2}, - [1279] = {.lex_state = 1717, .external_lex_state = 2}, - [1280] = {.lex_state = 1717, .external_lex_state = 2}, - [1281] = {.lex_state = 42, .external_lex_state = 2}, - [1282] = {.lex_state = 42, .external_lex_state = 2}, - [1283] = {.lex_state = 42, .external_lex_state = 2}, - [1284] = {.lex_state = 42, .external_lex_state = 2}, - [1285] = {.lex_state = 1717, .external_lex_state = 2}, - [1286] = {.lex_state = 1689}, - [1287] = {.lex_state = 42, .external_lex_state = 2}, - [1288] = {.lex_state = 42, .external_lex_state = 2}, - [1289] = {.lex_state = 42, .external_lex_state = 2}, - [1290] = {.lex_state = 42, .external_lex_state = 2}, - [1291] = {.lex_state = 1718, .external_lex_state = 2}, - [1292] = {.lex_state = 45, .external_lex_state = 2}, - [1293] = {.lex_state = 42, .external_lex_state = 2}, - [1294] = {.lex_state = 42, .external_lex_state = 2}, - [1295] = {.lex_state = 42, .external_lex_state = 2}, - [1296] = {.lex_state = 42, .external_lex_state = 2}, - [1297] = {.lex_state = 42, .external_lex_state = 2}, - [1298] = {.lex_state = 42, .external_lex_state = 2}, - [1299] = {.lex_state = 42, .external_lex_state = 2}, - [1300] = {.lex_state = 42, .external_lex_state = 2}, - [1301] = {.lex_state = 42, .external_lex_state = 2}, - [1302] = {.lex_state = 42, .external_lex_state = 2}, - [1303] = {.lex_state = 1703, .external_lex_state = 2}, - [1304] = {.lex_state = 42, .external_lex_state = 2}, - [1305] = {.lex_state = 45, .external_lex_state = 2}, - [1306] = {.lex_state = 42, .external_lex_state = 2}, - [1307] = {.lex_state = 42, .external_lex_state = 2}, - [1308] = {.lex_state = 42, .external_lex_state = 2}, - [1309] = {.lex_state = 42, .external_lex_state = 2}, - [1310] = {.lex_state = 42, .external_lex_state = 2}, - [1311] = {.lex_state = 42, .external_lex_state = 2}, - [1312] = {.lex_state = 42, .external_lex_state = 2}, - [1313] = {.lex_state = 42, .external_lex_state = 2}, - [1314] = {.lex_state = 42, .external_lex_state = 2}, - [1315] = {.lex_state = 42, .external_lex_state = 2}, - [1316] = {.lex_state = 42, .external_lex_state = 2}, - [1317] = {.lex_state = 42, .external_lex_state = 2}, - [1318] = {.lex_state = 42, .external_lex_state = 2}, - [1319] = {.lex_state = 1714, .external_lex_state = 2}, - [1320] = {.lex_state = 42, .external_lex_state = 2}, - [1321] = {.lex_state = 42, .external_lex_state = 2}, - [1322] = {.lex_state = 42, .external_lex_state = 2}, - [1323] = {.lex_state = 42, .external_lex_state = 2}, - [1324] = {.lex_state = 42, .external_lex_state = 2}, - [1325] = {.lex_state = 42, .external_lex_state = 2}, - [1326] = {.lex_state = 42, .external_lex_state = 2}, - [1327] = {.lex_state = 42, .external_lex_state = 2}, - [1328] = {.lex_state = 42, .external_lex_state = 2}, - [1329] = {.lex_state = 42, .external_lex_state = 2}, - [1330] = {.lex_state = 42, .external_lex_state = 2}, - [1331] = {.lex_state = 42, .external_lex_state = 2}, - [1332] = {.lex_state = 42, .external_lex_state = 2}, - [1333] = {.lex_state = 42, .external_lex_state = 2}, - [1334] = {.lex_state = 42, .external_lex_state = 2}, - [1335] = {.lex_state = 42, .external_lex_state = 2}, - [1336] = {.lex_state = 42, .external_lex_state = 2}, - [1337] = {.lex_state = 1703, .external_lex_state = 2}, - [1338] = {.lex_state = 1746, .external_lex_state = 2}, - [1339] = {.lex_state = 1705, .external_lex_state = 2}, - [1340] = {.lex_state = 42, .external_lex_state = 2}, - [1341] = {.lex_state = 1717, .external_lex_state = 2}, - [1342] = {.lex_state = 1715, .external_lex_state = 2}, - [1343] = {.lex_state = 10}, - [1344] = {.lex_state = 1706, .external_lex_state = 2}, - [1345] = {.lex_state = 1689}, - [1346] = {.lex_state = 1743, .external_lex_state = 2}, - [1347] = {.lex_state = 1708, .external_lex_state = 2}, - [1348] = {.lex_state = 45, .external_lex_state = 2}, - [1349] = {.lex_state = 1708, .external_lex_state = 2}, - [1350] = {.lex_state = 1708, .external_lex_state = 2}, - [1351] = {.lex_state = 3176}, - [1352] = {.lex_state = 3176}, - [1353] = {.lex_state = 1743, .external_lex_state = 2}, - [1354] = {.lex_state = 1689}, - [1355] = {.lex_state = 1689}, - [1356] = {.lex_state = 1737, .external_lex_state = 2}, - [1357] = {.lex_state = 1708, .external_lex_state = 2}, - [1358] = {.lex_state = 1717, .external_lex_state = 2}, - [1359] = {.lex_state = 1737, .external_lex_state = 2}, - [1360] = {.lex_state = 1689}, - [1361] = {.lex_state = 1737, .external_lex_state = 2}, - [1362] = {.lex_state = 1689}, - [1363] = {.lex_state = 3304}, - [1364] = {.lex_state = 1707, .external_lex_state = 2}, - [1365] = {.lex_state = 1717, .external_lex_state = 2}, - [1366] = {.lex_state = 3304}, - [1367] = {.lex_state = 3158}, - [1368] = {.lex_state = 1708, .external_lex_state = 2}, - [1369] = {.lex_state = 10}, - [1370] = {.lex_state = 3158}, - [1371] = {.lex_state = 1746, .external_lex_state = 2}, - [1372] = {.lex_state = 1742, .external_lex_state = 2}, - [1373] = {.lex_state = 1689}, - [1374] = {.lex_state = 1707, .external_lex_state = 2}, - [1375] = {.lex_state = 1717, .external_lex_state = 2}, - [1376] = {.lex_state = 1689}, - [1377] = {.lex_state = 1744, .external_lex_state = 2}, - [1378] = {.lex_state = 1708, .external_lex_state = 2}, - [1379] = {.lex_state = 1689}, - [1380] = {.lex_state = 1737, .external_lex_state = 2}, - [1381] = {.lex_state = 1737, .external_lex_state = 2}, - [1382] = {.lex_state = 1744, .external_lex_state = 2}, - [1383] = {.lex_state = 10}, - [1384] = {.lex_state = 10}, - [1385] = {.lex_state = 1737, .external_lex_state = 2}, - [1386] = {.lex_state = 1709, .external_lex_state = 2}, - [1387] = {.lex_state = 1709, .external_lex_state = 2}, - [1388] = {.lex_state = 10}, + [1235] = {.lex_state = 44, .external_lex_state = 2}, + [1236] = {.lex_state = 44, .external_lex_state = 2}, + [1237] = {.lex_state = 44, .external_lex_state = 2}, + [1238] = {.lex_state = 3342}, + [1239] = {.lex_state = 3212}, + [1240] = {.lex_state = 3342}, + [1241] = {.lex_state = 3342}, + [1242] = {.lex_state = 44, .external_lex_state = 2}, + [1243] = {.lex_state = 262, .external_lex_state = 2}, + [1244] = {.lex_state = 44, .external_lex_state = 2}, + [1245] = {.lex_state = 44, .external_lex_state = 2}, + [1246] = {.lex_state = 44, .external_lex_state = 2}, + [1247] = {.lex_state = 45, .external_lex_state = 2}, + [1248] = {.lex_state = 3212}, + [1249] = {.lex_state = 3214}, + [1250] = {.lex_state = 53, .external_lex_state = 2}, + [1251] = {.lex_state = 3214}, + [1252] = {.lex_state = 1752, .external_lex_state = 2}, + [1253] = {.lex_state = 3214}, + [1254] = {.lex_state = 3214}, + [1255] = {.lex_state = 53, .external_lex_state = 2}, + [1256] = {.lex_state = 3214}, + [1257] = {.lex_state = 1762, .external_lex_state = 2}, + [1258] = {.lex_state = 1753, .external_lex_state = 2}, + [1259] = {.lex_state = 1752, .external_lex_state = 2}, + [1260] = {.lex_state = 1751, .external_lex_state = 2}, + [1261] = {.lex_state = 1751, .external_lex_state = 2}, + [1262] = {.lex_state = 1766, .external_lex_state = 2}, + [1263] = {.lex_state = 53, .external_lex_state = 2}, + [1264] = {.lex_state = 45, .external_lex_state = 2}, + [1265] = {.lex_state = 1794, .external_lex_state = 2}, + [1266] = {.lex_state = 1790, .external_lex_state = 2}, + [1267] = {.lex_state = 1756, .external_lex_state = 2}, + [1268] = {.lex_state = 10}, + [1269] = {.lex_state = 53, .external_lex_state = 2}, + [1270] = {.lex_state = 1765, .external_lex_state = 2}, + [1271] = {.lex_state = 53, .external_lex_state = 2}, + [1272] = {.lex_state = 1765, .external_lex_state = 2}, + [1273] = {.lex_state = 1765, .external_lex_state = 2}, + [1274] = {.lex_state = 1765, .external_lex_state = 2}, + [1275] = {.lex_state = 53, .external_lex_state = 2}, + [1276] = {.lex_state = 53, .external_lex_state = 2}, + [1277] = {.lex_state = 1762, .external_lex_state = 2}, + [1278] = {.lex_state = 45, .external_lex_state = 2}, + [1279] = {.lex_state = 1753, .external_lex_state = 2}, + [1280] = {.lex_state = 53, .external_lex_state = 2}, + [1281] = {.lex_state = 1751, .external_lex_state = 2}, + [1282] = {.lex_state = 53, .external_lex_state = 2}, + [1283] = {.lex_state = 53, .external_lex_state = 2}, + [1284] = {.lex_state = 53, .external_lex_state = 2}, + [1285] = {.lex_state = 53, .external_lex_state = 2}, + [1286] = {.lex_state = 53, .external_lex_state = 2}, + [1287] = {.lex_state = 53, .external_lex_state = 2}, + [1288] = {.lex_state = 1738}, + [1289] = {.lex_state = 1766, .external_lex_state = 2}, + [1290] = {.lex_state = 53, .external_lex_state = 2}, + [1291] = {.lex_state = 53, .external_lex_state = 2}, + [1292] = {.lex_state = 53, .external_lex_state = 2}, + [1293] = {.lex_state = 53, .external_lex_state = 2}, + [1294] = {.lex_state = 53, .external_lex_state = 2}, + [1295] = {.lex_state = 53, .external_lex_state = 2}, + [1296] = {.lex_state = 53, .external_lex_state = 2}, + [1297] = {.lex_state = 53, .external_lex_state = 2}, + [1298] = {.lex_state = 53, .external_lex_state = 2}, + [1299] = {.lex_state = 53, .external_lex_state = 2}, + [1300] = {.lex_state = 53, .external_lex_state = 2}, + [1301] = {.lex_state = 53, .external_lex_state = 2}, + [1302] = {.lex_state = 53, .external_lex_state = 2}, + [1303] = {.lex_state = 53, .external_lex_state = 2}, + [1304] = {.lex_state = 53, .external_lex_state = 2}, + [1305] = {.lex_state = 53, .external_lex_state = 2}, + [1306] = {.lex_state = 53, .external_lex_state = 2}, + [1307] = {.lex_state = 53, .external_lex_state = 2}, + [1308] = {.lex_state = 53, .external_lex_state = 2}, + [1309] = {.lex_state = 53, .external_lex_state = 2}, + [1310] = {.lex_state = 53, .external_lex_state = 2}, + [1311] = {.lex_state = 53, .external_lex_state = 2}, + [1312] = {.lex_state = 53, .external_lex_state = 2}, + [1313] = {.lex_state = 53, .external_lex_state = 2}, + [1314] = {.lex_state = 1755, .external_lex_state = 2}, + [1315] = {.lex_state = 53, .external_lex_state = 2}, + [1316] = {.lex_state = 53, .external_lex_state = 2}, + [1317] = {.lex_state = 53, .external_lex_state = 2}, + [1318] = {.lex_state = 53, .external_lex_state = 2}, + [1319] = {.lex_state = 53, .external_lex_state = 2}, + [1320] = {.lex_state = 53, .external_lex_state = 2}, + [1321] = {.lex_state = 53, .external_lex_state = 2}, + [1322] = {.lex_state = 53, .external_lex_state = 2}, + [1323] = {.lex_state = 53, .external_lex_state = 2}, + [1324] = {.lex_state = 53, .external_lex_state = 2}, + [1325] = {.lex_state = 53, .external_lex_state = 2}, + [1326] = {.lex_state = 53, .external_lex_state = 2}, + [1327] = {.lex_state = 53, .external_lex_state = 2}, + [1328] = {.lex_state = 1751, .external_lex_state = 2}, + [1329] = {.lex_state = 53, .external_lex_state = 2}, + [1330] = {.lex_state = 53, .external_lex_state = 2}, + [1331] = {.lex_state = 53, .external_lex_state = 2}, + [1332] = {.lex_state = 53, .external_lex_state = 2}, + [1333] = {.lex_state = 53, .external_lex_state = 2}, + [1334] = {.lex_state = 53, .external_lex_state = 2}, + [1335] = {.lex_state = 1755, .external_lex_state = 2}, + [1336] = {.lex_state = 53, .external_lex_state = 2}, + [1337] = {.lex_state = 53, .external_lex_state = 2}, + [1338] = {.lex_state = 53, .external_lex_state = 2}, + [1339] = {.lex_state = 1785, .external_lex_state = 2}, + [1340] = {.lex_state = 1790, .external_lex_state = 2}, + [1341] = {.lex_state = 1791, .external_lex_state = 2}, + [1342] = {.lex_state = 1763, .external_lex_state = 2}, + [1343] = {.lex_state = 45, .external_lex_state = 2}, + [1344] = {.lex_state = 1791, .external_lex_state = 2}, + [1345] = {.lex_state = 1755, .external_lex_state = 2}, + [1346] = {.lex_state = 1738}, + [1347] = {.lex_state = 1755, .external_lex_state = 2}, + [1348] = {.lex_state = 1785, .external_lex_state = 2}, + [1349] = {.lex_state = 1738}, + [1350] = {.lex_state = 1756, .external_lex_state = 2}, + [1351] = {.lex_state = 3198}, + [1352] = {.lex_state = 3198}, + [1353] = {.lex_state = 1765, .external_lex_state = 2}, + [1354] = {.lex_state = 10}, + [1355] = {.lex_state = 10}, + [1356] = {.lex_state = 3216}, + [1357] = {.lex_state = 3216}, + [1358] = {.lex_state = 3344}, + [1359] = {.lex_state = 3344}, + [1360] = {.lex_state = 1765, .external_lex_state = 2}, + [1361] = {.lex_state = 1756, .external_lex_state = 2}, + [1362] = {.lex_state = 1756, .external_lex_state = 2}, + [1363] = {.lex_state = 1785, .external_lex_state = 2}, + [1364] = {.lex_state = 1756, .external_lex_state = 2}, + [1365] = {.lex_state = 1756, .external_lex_state = 2}, + [1366] = {.lex_state = 1754, .external_lex_state = 2}, + [1367] = {.lex_state = 1738}, + [1368] = {.lex_state = 1765, .external_lex_state = 2}, + [1369] = {.lex_state = 1794, .external_lex_state = 2}, + [1370] = {.lex_state = 1765, .external_lex_state = 2}, + [1371] = {.lex_state = 10}, + [1372] = {.lex_state = 1703}, + [1373] = {.lex_state = 1738}, + [1374] = {.lex_state = 1785, .external_lex_state = 2}, + [1375] = {.lex_state = 1756, .external_lex_state = 2}, + [1376] = {.lex_state = 1738}, + [1377] = {.lex_state = 1754, .external_lex_state = 2}, + [1378] = {.lex_state = 1792, .external_lex_state = 2}, + [1379] = {.lex_state = 1738}, + [1380] = {.lex_state = 1792, .external_lex_state = 2}, + [1381] = {.lex_state = 10}, + [1382] = {.lex_state = 10}, + [1383] = {.lex_state = 1792, .external_lex_state = 2}, + [1384] = {.lex_state = 53, .external_lex_state = 2}, + [1385] = {.lex_state = 1756, .external_lex_state = 2}, + [1386] = {.lex_state = 10}, + [1387] = {.lex_state = 1792, .external_lex_state = 2}, + [1388] = {.lex_state = 1785, .external_lex_state = 2}, [1389] = {.lex_state = 10}, - [1390] = {.lex_state = 10}, - [1391] = {.lex_state = 10}, - [1392] = {.lex_state = 1737, .external_lex_state = 2}, - [1393] = {.lex_state = 1737, .external_lex_state = 2}, - [1394] = {.lex_state = 1706, .external_lex_state = 2}, - [1395] = {.lex_state = 1743, .external_lex_state = 2}, - [1396] = {.lex_state = 1743, .external_lex_state = 2}, - [1397] = {.lex_state = 1689}, - [1398] = {.lex_state = 42, .external_lex_state = 2}, - [1399] = {.lex_state = 3304}, - [1400] = {.lex_state = 1744, .external_lex_state = 2}, - [1401] = {.lex_state = 3304}, - [1402] = {.lex_state = 1744, .external_lex_state = 2}, - [1403] = {.lex_state = 1744, .external_lex_state = 2}, - [1404] = {.lex_state = 1708, .external_lex_state = 2}, - [1405] = {.lex_state = 1715, .external_lex_state = 2}, - [1406] = {.lex_state = 1708, .external_lex_state = 2}, - [1407] = {.lex_state = 1689}, - [1408] = {.lex_state = 1708, .external_lex_state = 2}, - [1409] = {.lex_state = 1689}, - [1410] = {.lex_state = 1744, .external_lex_state = 2}, - [1411] = {.lex_state = 1737, .external_lex_state = 2}, - [1412] = {.lex_state = 1710, .external_lex_state = 2}, - [1413] = {.lex_state = 1689}, - [1414] = {.lex_state = 1710, .external_lex_state = 2}, - [1415] = {.lex_state = 1689}, - [1416] = {.lex_state = 1710, .external_lex_state = 2}, - [1417] = {.lex_state = 1710, .external_lex_state = 2}, - [1418] = {.lex_state = 1689}, - [1419] = {.lex_state = 1689}, - [1420] = {.lex_state = 1709, .external_lex_state = 2}, - [1421] = {.lex_state = 1735, .external_lex_state = 2}, - [1422] = {.lex_state = 1735, .external_lex_state = 2}, - [1423] = {.lex_state = 1689}, - [1424] = {.lex_state = 10}, - [1425] = {.lex_state = 1744, .external_lex_state = 2}, - [1426] = {.lex_state = 1737, .external_lex_state = 2}, - [1427] = {.lex_state = 1744, .external_lex_state = 2}, - [1428] = {.lex_state = 1676}, - [1429] = {.lex_state = 1744, .external_lex_state = 2}, - [1430] = {.lex_state = 1744, .external_lex_state = 2}, - [1431] = {.lex_state = 1709, .external_lex_state = 2}, - [1432] = {.lex_state = 1734, .external_lex_state = 2}, - [1433] = {.lex_state = 1735, .external_lex_state = 2}, - [1434] = {.lex_state = 1735, .external_lex_state = 2}, - [1435] = {.lex_state = 1735, .external_lex_state = 2}, - [1436] = {.lex_state = 1735, .external_lex_state = 2}, - [1437] = {.lex_state = 1736, .external_lex_state = 2}, - [1438] = {.lex_state = 3178}, - [1439] = {.lex_state = 3178}, - [1440] = {.lex_state = 10}, - [1441] = {.lex_state = 10}, - [1442] = {.lex_state = 1678}, - [1443] = {.lex_state = 1689}, - [1444] = {.lex_state = 1710, .external_lex_state = 2}, - [1445] = {.lex_state = 1689}, - [1446] = {.lex_state = 1689}, - [1447] = {.lex_state = 1710, .external_lex_state = 2}, - [1448] = {.lex_state = 1689}, - [1449] = {.lex_state = 1740, .external_lex_state = 2}, - [1450] = {.lex_state = 1732, .external_lex_state = 2}, - [1451] = {.lex_state = 1711, .external_lex_state = 2}, - [1452] = {.lex_state = 1732, .external_lex_state = 2}, - [1453] = {.lex_state = 1689}, - [1454] = {.lex_state = 1710, .external_lex_state = 2}, - [1455] = {.lex_state = 1737, .external_lex_state = 2}, - [1456] = {.lex_state = 1737, .external_lex_state = 2}, - [1457] = {.lex_state = 1680}, - [1458] = {.lex_state = 10}, - [1459] = {.lex_state = 1689}, - [1460] = {.lex_state = 1710, .external_lex_state = 2}, - [1461] = {.lex_state = 1710, .external_lex_state = 2}, - [1462] = {.lex_state = 1735, .external_lex_state = 2}, - [1463] = {.lex_state = 1740, .external_lex_state = 2}, - [1464] = {.lex_state = 1716, .external_lex_state = 2}, - [1465] = {.lex_state = 1735, .external_lex_state = 2}, - [1466] = {.lex_state = 1689}, - [1467] = {.lex_state = 1740, .external_lex_state = 2}, - [1468] = {.lex_state = 1689}, - [1469] = {.lex_state = 1735, .external_lex_state = 2}, - [1470] = {.lex_state = 1740, .external_lex_state = 2}, - [1471] = {.lex_state = 1740, .external_lex_state = 2}, - [1472] = {.lex_state = 1740, .external_lex_state = 2}, - [1473] = {.lex_state = 1735, .external_lex_state = 2}, - [1474] = {.lex_state = 1740, .external_lex_state = 2}, - [1475] = {.lex_state = 1740, .external_lex_state = 2}, - [1476] = {.lex_state = 1740, .external_lex_state = 2}, - [1477] = {.lex_state = 1740, .external_lex_state = 2}, - [1478] = {.lex_state = 1740, .external_lex_state = 2}, - [1479] = {.lex_state = 1740, .external_lex_state = 2}, - [1480] = {.lex_state = 1740, .external_lex_state = 2}, - [1481] = {.lex_state = 1740, .external_lex_state = 2}, - [1482] = {.lex_state = 1740, .external_lex_state = 2}, - [1483] = {.lex_state = 10}, - [1484] = {.lex_state = 1740, .external_lex_state = 2}, - [1485] = {.lex_state = 1740, .external_lex_state = 2}, - [1486] = {.lex_state = 1740, .external_lex_state = 2}, - [1487] = {.lex_state = 1740, .external_lex_state = 2}, - [1488] = {.lex_state = 1740, .external_lex_state = 2}, - [1489] = {.lex_state = 1737, .external_lex_state = 2}, - [1490] = {.lex_state = 1734, .external_lex_state = 2}, - [1491] = {.lex_state = 1735, .external_lex_state = 2}, - [1492] = {.lex_state = 1740, .external_lex_state = 2}, - [1493] = {.lex_state = 1710, .external_lex_state = 2}, - [1494] = {.lex_state = 1736, .external_lex_state = 2}, - [1495] = {.lex_state = 1735, .external_lex_state = 2}, - [1496] = {.lex_state = 1740, .external_lex_state = 2}, - [1497] = {.lex_state = 1689}, - [1498] = {.lex_state = 1680}, - [1499] = {.lex_state = 1710, .external_lex_state = 2}, - [1500] = {.lex_state = 1710, .external_lex_state = 2}, - [1501] = {.lex_state = 1740, .external_lex_state = 2}, - [1502] = {.lex_state = 1682}, - [1503] = {.lex_state = 1740, .external_lex_state = 2}, - [1504] = {.lex_state = 1740, .external_lex_state = 2}, - [1505] = {.lex_state = 1740, .external_lex_state = 2}, - [1506] = {.lex_state = 1740, .external_lex_state = 2}, - [1507] = {.lex_state = 1716, .external_lex_state = 2}, - [1508] = {.lex_state = 1740, .external_lex_state = 2}, - [1509] = {.lex_state = 1689}, - [1510] = {.lex_state = 1740, .external_lex_state = 2}, - [1511] = {.lex_state = 1740, .external_lex_state = 2}, - [1512] = {.lex_state = 1682}, - [1513] = {.lex_state = 1740, .external_lex_state = 2}, - [1514] = {.lex_state = 1733, .external_lex_state = 2}, - [1515] = {.lex_state = 7}, - [1516] = {.lex_state = 1740, .external_lex_state = 2}, - [1517] = {.lex_state = 1733, .external_lex_state = 2}, - [1518] = {.lex_state = 1733, .external_lex_state = 2}, - [1519] = {.lex_state = 1733, .external_lex_state = 2}, - [1520] = {.lex_state = 1682}, - [1521] = {.lex_state = 7}, - [1522] = {.lex_state = 7}, - [1523] = {.lex_state = 1676}, - [1524] = {.lex_state = 1733, .external_lex_state = 2}, - [1525] = {.lex_state = 1732, .external_lex_state = 2}, - [1526] = {.lex_state = 1733, .external_lex_state = 2}, - [1527] = {.lex_state = 1733, .external_lex_state = 2}, - [1528] = {.lex_state = 1733, .external_lex_state = 2}, - [1529] = {.lex_state = 1733, .external_lex_state = 2}, - [1530] = {.lex_state = 1740, .external_lex_state = 2}, - [1531] = {.lex_state = 1740, .external_lex_state = 2}, - [1532] = {.lex_state = 1733, .external_lex_state = 2}, - [1533] = {.lex_state = 1678}, - [1534] = {.lex_state = 1740, .external_lex_state = 2}, - [1535] = {.lex_state = 1711, .external_lex_state = 2}, - [1536] = {.lex_state = 1733, .external_lex_state = 2}, - [1537] = {.lex_state = 1740, .external_lex_state = 2}, - [1538] = {.lex_state = 1689}, - [1539] = {.lex_state = 7}, - [1540] = {.lex_state = 1676}, - [1541] = {.lex_state = 1737, .external_lex_state = 2}, - [1542] = {.lex_state = 1740, .external_lex_state = 2}, - [1543] = {.lex_state = 1740, .external_lex_state = 2}, - [1544] = {.lex_state = 1733, .external_lex_state = 2}, - [1545] = {.lex_state = 1688}, - [1546] = {.lex_state = 1688}, - [1547] = {.lex_state = 1737, .external_lex_state = 2}, - [1548] = {.lex_state = 1737, .external_lex_state = 2}, - [1549] = {.lex_state = 1740, .external_lex_state = 2}, - [1550] = {.lex_state = 1740, .external_lex_state = 2}, - [1551] = {.lex_state = 1682}, - [1552] = {.lex_state = 1740, .external_lex_state = 2}, - [1553] = {.lex_state = 1740, .external_lex_state = 2}, - [1554] = {.lex_state = 1740, .external_lex_state = 2}, - [1555] = {.lex_state = 1732, .external_lex_state = 2}, - [1556] = {.lex_state = 1740, .external_lex_state = 2}, - [1557] = {.lex_state = 1712, .external_lex_state = 2}, - [1558] = {.lex_state = 1740, .external_lex_state = 2}, - [1559] = {.lex_state = 1740, .external_lex_state = 2}, - [1560] = {.lex_state = 1676}, - [1561] = {.lex_state = 1740, .external_lex_state = 2}, - [1562] = {.lex_state = 1689}, - [1563] = {.lex_state = 1676}, - [1564] = {.lex_state = 1712, .external_lex_state = 2}, - [1565] = {.lex_state = 1733, .external_lex_state = 2}, - [1566] = {.lex_state = 1689}, - [1567] = {.lex_state = 1733, .external_lex_state = 2}, - [1568] = {.lex_state = 1733, .external_lex_state = 2}, - [1569] = {.lex_state = 1740, .external_lex_state = 2}, - [1570] = {.lex_state = 1682}, - [1571] = {.lex_state = 1733, .external_lex_state = 2}, - [1572] = {.lex_state = 1690}, - [1573] = {.lex_state = 1690}, - [1574] = {.lex_state = 1690}, - [1575] = {.lex_state = 1690}, - [1576] = {.lex_state = 1733, .external_lex_state = 2}, - [1577] = {.lex_state = 1738, .external_lex_state = 2}, - [1578] = {.lex_state = 1682}, - [1579] = {.lex_state = 1739, .external_lex_state = 2}, - [1580] = {.lex_state = 1733, .external_lex_state = 2}, - [1581] = {.lex_state = 1733, .external_lex_state = 2}, - [1582] = {.lex_state = 1733, .external_lex_state = 2}, - [1583] = {.lex_state = 1733, .external_lex_state = 2}, - [1584] = {.lex_state = 1741, .external_lex_state = 2}, - [1585] = {.lex_state = 1713, .external_lex_state = 2}, - [1586] = {.lex_state = 1738, .external_lex_state = 2}, - [1587] = {.lex_state = 1733, .external_lex_state = 2}, - [1588] = {.lex_state = 1738, .external_lex_state = 2}, - [1589] = {.lex_state = 1752, .external_lex_state = 2}, - [1590] = {.lex_state = 1688}, - [1591] = {.lex_state = 1676}, - [1592] = {.lex_state = 1680}, - [1593] = {.lex_state = 1740, .external_lex_state = 2}, - [1594] = {.lex_state = 1733, .external_lex_state = 2}, - [1595] = {.lex_state = 1690}, - [1596] = {.lex_state = 1702, .external_lex_state = 2}, - [1597] = {.lex_state = 1690}, - [1598] = {.lex_state = 1690}, - [1599] = {.lex_state = 1676}, - [1600] = {.lex_state = 1713, .external_lex_state = 2}, - [1601] = {.lex_state = 1688}, - [1602] = {.lex_state = 1688}, - [1603] = {.lex_state = 1752, .external_lex_state = 2}, - [1604] = {.lex_state = 1690}, - [1605] = {.lex_state = 1733, .external_lex_state = 2}, - [1606] = {.lex_state = 1690}, - [1607] = {.lex_state = 7}, - [1608] = {.lex_state = 1712, .external_lex_state = 2}, - [1609] = {.lex_state = 1752, .external_lex_state = 2}, - [1610] = {.lex_state = 1738, .external_lex_state = 2}, - [1611] = {.lex_state = 1738, .external_lex_state = 2}, - [1612] = {.lex_state = 1713, .external_lex_state = 2}, - [1613] = {.lex_state = 1690}, - [1614] = {.lex_state = 1740, .external_lex_state = 2}, - [1615] = {.lex_state = 1690}, - [1616] = {.lex_state = 1731, .external_lex_state = 2}, - [1617] = {.lex_state = 1713, .external_lex_state = 2}, - [1618] = {.lex_state = 1689}, - [1619] = {.lex_state = 1690}, - [1620] = {.lex_state = 1752, .external_lex_state = 2}, - [1621] = {.lex_state = 1733, .external_lex_state = 2}, - [1622] = {.lex_state = 1690}, - [1623] = {.lex_state = 1713, .external_lex_state = 2}, - [1624] = {.lex_state = 1690}, - [1625] = {.lex_state = 1733, .external_lex_state = 2}, - [1626] = {.lex_state = 1725, .external_lex_state = 2}, - [1627] = {.lex_state = 1690}, - [1628] = {.lex_state = 1690}, - [1629] = {.lex_state = 1713, .external_lex_state = 2}, - [1630] = {.lex_state = 1733, .external_lex_state = 2}, - [1631] = {.lex_state = 1733, .external_lex_state = 2}, - [1632] = {.lex_state = 1733, .external_lex_state = 2}, - [1633] = {.lex_state = 1689}, - [1634] = {.lex_state = 1690}, - [1635] = {.lex_state = 1713, .external_lex_state = 2}, - [1636] = {.lex_state = 1713, .external_lex_state = 2}, - [1637] = {.lex_state = 7}, - [1638] = {.lex_state = 1690}, - [1639] = {.lex_state = 1702, .external_lex_state = 2}, - [1640] = {.lex_state = 1738, .external_lex_state = 2}, - [1641] = {.lex_state = 1752, .external_lex_state = 2}, - [1642] = {.lex_state = 1680}, - [1643] = {.lex_state = 1712, .external_lex_state = 2}, - [1644] = {.lex_state = 1702, .external_lex_state = 2}, - [1645] = {.lex_state = 1713, .external_lex_state = 2}, - [1646] = {.lex_state = 1690}, - [1647] = {.lex_state = 1733, .external_lex_state = 2}, - [1648] = {.lex_state = 1702, .external_lex_state = 2}, - [1649] = {.lex_state = 1702, .external_lex_state = 2}, - [1650] = {.lex_state = 1733, .external_lex_state = 2}, - [1651] = {.lex_state = 1733, .external_lex_state = 2}, - [1652] = {.lex_state = 1740, .external_lex_state = 2}, - [1653] = {.lex_state = 1690}, - [1654] = {.lex_state = 1702, .external_lex_state = 2}, - [1655] = {.lex_state = 1725, .external_lex_state = 2}, - [1656] = {.lex_state = 1741, .external_lex_state = 2}, - [1657] = {.lex_state = 1738, .external_lex_state = 2}, - [1658] = {.lex_state = 1739, .external_lex_state = 2}, - [1659] = {.lex_state = 1738, .external_lex_state = 2}, - [1660] = {.lex_state = 1738, .external_lex_state = 2}, - [1661] = {.lex_state = 1738, .external_lex_state = 2}, - [1662] = {.lex_state = 1690}, - [1663] = {.lex_state = 1740, .external_lex_state = 2}, - [1664] = {.lex_state = 1688}, - [1665] = {.lex_state = 1740, .external_lex_state = 2}, - [1666] = {.lex_state = 1745, .external_lex_state = 2}, - [1667] = {.lex_state = 1753, .external_lex_state = 2}, - [1668] = {.lex_state = 1726, .external_lex_state = 2}, - [1669] = {.lex_state = 1753, .external_lex_state = 2}, - [1670] = {.lex_state = 1753, .external_lex_state = 2}, - [1671] = {.lex_state = 1753, .external_lex_state = 2}, - [1672] = {.lex_state = 1728, .external_lex_state = 2}, - [1673] = {.lex_state = 1728, .external_lex_state = 2}, - [1674] = {.lex_state = 1702, .external_lex_state = 2}, - [1675] = {.lex_state = 1753, .external_lex_state = 2}, - [1676] = {.lex_state = 1702, .external_lex_state = 2}, - [1677] = {.lex_state = 1702, .external_lex_state = 2}, - [1678] = {.lex_state = 1682}, - [1679] = {.lex_state = 1713, .external_lex_state = 2}, - [1680] = {.lex_state = 1682}, - [1681] = {.lex_state = 1690}, - [1682] = {.lex_state = 1688}, - [1683] = {.lex_state = 1713, .external_lex_state = 2}, - [1684] = {.lex_state = 1682}, - [1685] = {.lex_state = 1688}, - [1686] = {.lex_state = 1688}, - [1687] = {.lex_state = 1688}, - [1688] = {.lex_state = 1688}, - [1689] = {.lex_state = 1702, .external_lex_state = 2}, - [1690] = {.lex_state = 1702, .external_lex_state = 2}, - [1691] = {.lex_state = 1713, .external_lex_state = 2}, - [1692] = {.lex_state = 1752, .external_lex_state = 2}, - [1693] = {.lex_state = 1713, .external_lex_state = 2}, - [1694] = {.lex_state = 1702, .external_lex_state = 2}, - [1695] = {.lex_state = 1676}, - [1696] = {.lex_state = 1726, .external_lex_state = 2}, - [1697] = {.lex_state = 1702, .external_lex_state = 2}, - [1698] = {.lex_state = 1729, .external_lex_state = 2}, - [1699] = {.lex_state = 1690}, - [1700] = {.lex_state = 1690}, - [1701] = {.lex_state = 1690}, - [1702] = {.lex_state = 1688}, - [1703] = {.lex_state = 1752, .external_lex_state = 2}, - [1704] = {.lex_state = 1751, .external_lex_state = 2}, - [1705] = {.lex_state = 1751, .external_lex_state = 2}, - [1706] = {.lex_state = 1745, .external_lex_state = 2}, - [1707] = {.lex_state = 1676}, - [1708] = {.lex_state = 1738, .external_lex_state = 2}, - [1709] = {.lex_state = 1738, .external_lex_state = 2}, - [1710] = {.lex_state = 1751, .external_lex_state = 2}, - [1711] = {.lex_state = 1713, .external_lex_state = 2}, - [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 7}, - [1714] = {.lex_state = 1690}, - [1715] = {.lex_state = 1752, .external_lex_state = 2}, - [1716] = {.lex_state = 1713, .external_lex_state = 2}, - [1717] = {.lex_state = 1713, .external_lex_state = 2}, - [1718] = {.lex_state = 1676}, - [1719] = {.lex_state = 1731, .external_lex_state = 2}, - [1720] = {.lex_state = 1702, .external_lex_state = 2}, - [1721] = {.lex_state = 1713, .external_lex_state = 2}, - [1722] = {.lex_state = 1713, .external_lex_state = 2}, - [1723] = {.lex_state = 1690}, - [1724] = {.lex_state = 1752, .external_lex_state = 2}, - [1725] = {.lex_state = 1752, .external_lex_state = 2}, - [1726] = {.lex_state = 1682}, - [1727] = {.lex_state = 1751, .external_lex_state = 2}, - [1728] = {.lex_state = 1730, .external_lex_state = 2}, - [1729] = {.lex_state = 1730, .external_lex_state = 2}, - [1730] = {.lex_state = 1730, .external_lex_state = 2}, - [1731] = {.lex_state = 1753, .external_lex_state = 2}, - [1732] = {.lex_state = 1730, .external_lex_state = 2}, - [1733] = {.lex_state = 1730, .external_lex_state = 2}, - [1734] = {.lex_state = 1730, .external_lex_state = 2}, - [1735] = {.lex_state = 1730, .external_lex_state = 2}, - [1736] = {.lex_state = 1730, .external_lex_state = 2}, - [1737] = {.lex_state = 1730, .external_lex_state = 2}, - [1738] = {.lex_state = 1753, .external_lex_state = 2}, - [1739] = {.lex_state = 1730, .external_lex_state = 2}, - [1740] = {.lex_state = 1730, .external_lex_state = 2}, - [1741] = {.lex_state = 1730, .external_lex_state = 2}, - [1742] = {.lex_state = 1730, .external_lex_state = 2}, - [1743] = {.lex_state = 1690}, - [1744] = {.lex_state = 1690}, - [1745] = {.lex_state = 233, .external_lex_state = 2}, - [1746] = {.lex_state = 233, .external_lex_state = 2}, - [1747] = {.lex_state = 1730, .external_lex_state = 2}, - [1748] = {.lex_state = 1730, .external_lex_state = 2}, - [1749] = {.lex_state = 1730, .external_lex_state = 2}, - [1750] = {.lex_state = 1753, .external_lex_state = 2}, - [1751] = {.lex_state = 1730, .external_lex_state = 2}, - [1752] = {.lex_state = 1730, .external_lex_state = 2}, - [1753] = {.lex_state = 1730, .external_lex_state = 2}, - [1754] = {.lex_state = 1730, .external_lex_state = 2}, - [1755] = {.lex_state = 1730, .external_lex_state = 2}, - [1756] = {.lex_state = 1745, .external_lex_state = 2}, - [1757] = {.lex_state = 1730, .external_lex_state = 2}, - [1758] = {.lex_state = 1730, .external_lex_state = 2}, - [1759] = {.lex_state = 1730, .external_lex_state = 2}, - [1760] = {.lex_state = 1730, .external_lex_state = 2}, - [1761] = {.lex_state = 1730, .external_lex_state = 2}, - [1762] = {.lex_state = 1730, .external_lex_state = 2}, - [1763] = {.lex_state = 1730, .external_lex_state = 2}, - [1764] = {.lex_state = 1728, .external_lex_state = 2}, - [1765] = {.lex_state = 1751, .external_lex_state = 2}, - [1766] = {.lex_state = 1730, .external_lex_state = 2}, - [1767] = {.lex_state = 1730, .external_lex_state = 2}, - [1768] = {.lex_state = 1730, .external_lex_state = 2}, - [1769] = {.lex_state = 1730, .external_lex_state = 2}, - [1770] = {.lex_state = 1730, .external_lex_state = 2}, - [1771] = {.lex_state = 1730, .external_lex_state = 2}, - [1772] = {.lex_state = 1730, .external_lex_state = 2}, - [1773] = {.lex_state = 1730, .external_lex_state = 2}, - [1774] = {.lex_state = 1730, .external_lex_state = 2}, - [1775] = {.lex_state = 1730, .external_lex_state = 2}, - [1776] = {.lex_state = 1730, .external_lex_state = 2}, - [1777] = {.lex_state = 1729, .external_lex_state = 2}, - [1778] = {.lex_state = 1730, .external_lex_state = 2}, - [1779] = {.lex_state = 1690}, - [1780] = {.lex_state = 231, .external_lex_state = 2}, - [1781] = {.lex_state = 1730, .external_lex_state = 2}, - [1782] = {.lex_state = 1730, .external_lex_state = 2}, - [1783] = {.lex_state = 1730, .external_lex_state = 2}, - [1784] = {.lex_state = 1745, .external_lex_state = 2}, - [1785] = {.lex_state = 1702, .external_lex_state = 2}, - [1786] = {.lex_state = 1730, .external_lex_state = 2}, - [1787] = {.lex_state = 1730, .external_lex_state = 2}, - [1788] = {.lex_state = 1730, .external_lex_state = 2}, - [1789] = {.lex_state = 1730, .external_lex_state = 2}, - [1790] = {.lex_state = 1730, .external_lex_state = 2}, - [1791] = {.lex_state = 1730, .external_lex_state = 2}, - [1792] = {.lex_state = 1730, .external_lex_state = 2}, - [1793] = {.lex_state = 1730, .external_lex_state = 2}, - [1794] = {.lex_state = 1730, .external_lex_state = 2}, - [1795] = {.lex_state = 1740, .external_lex_state = 2}, - [1796] = {.lex_state = 1690}, - [1797] = {.lex_state = 1730, .external_lex_state = 2}, - [1798] = {.lex_state = 1726, .external_lex_state = 2}, - [1799] = {.lex_state = 1730, .external_lex_state = 2}, - [1800] = {.lex_state = 1730, .external_lex_state = 2}, - [1801] = {.lex_state = 1702, .external_lex_state = 2}, - [1802] = {.lex_state = 1730, .external_lex_state = 2}, - [1803] = {.lex_state = 1730, .external_lex_state = 2}, - [1804] = {.lex_state = 1730, .external_lex_state = 2}, - [1805] = {.lex_state = 1730, .external_lex_state = 2}, - [1806] = {.lex_state = 1730, .external_lex_state = 2}, - [1807] = {.lex_state = 1676}, - [1808] = {.lex_state = 1740, .external_lex_state = 2}, - [1809] = {.lex_state = 1740, .external_lex_state = 2}, - [1810] = {.lex_state = 231, .external_lex_state = 2}, - [1811] = {.lex_state = 1730, .external_lex_state = 2}, - [1812] = {.lex_state = 1730, .external_lex_state = 2}, - [1813] = {.lex_state = 1726, .external_lex_state = 2}, - [1814] = {.lex_state = 1690}, - [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 7}, - [1817] = {.lex_state = 1730, .external_lex_state = 2}, - [1818] = {.lex_state = 1730, .external_lex_state = 2}, - [1819] = {.lex_state = 1730, .external_lex_state = 2}, - [1820] = {.lex_state = 1688}, - [1821] = {.lex_state = 1730, .external_lex_state = 2}, - [1822] = {.lex_state = 233, .external_lex_state = 2}, - [1823] = {.lex_state = 233, .external_lex_state = 2}, - [1824] = {.lex_state = 233, .external_lex_state = 2}, - [1825] = {.lex_state = 233, .external_lex_state = 2}, - [1826] = {.lex_state = 1730, .external_lex_state = 2}, - [1827] = {.lex_state = 233, .external_lex_state = 2}, - [1828] = {.lex_state = 233, .external_lex_state = 2}, - [1829] = {.lex_state = 1728, .external_lex_state = 2}, - [1830] = {.lex_state = 1730, .external_lex_state = 2}, - [1831] = {.lex_state = 1730, .external_lex_state = 2}, - [1832] = {.lex_state = 1676}, - [1833] = {.lex_state = 1730, .external_lex_state = 2}, - [1834] = {.lex_state = 233, .external_lex_state = 2}, - [1835] = {.lex_state = 1730, .external_lex_state = 2}, - [1836] = {.lex_state = 1730, .external_lex_state = 2}, - [1837] = {.lex_state = 1730, .external_lex_state = 2}, - [1838] = {.lex_state = 1730, .external_lex_state = 2}, - [1839] = {.lex_state = 231, .external_lex_state = 2}, - [1840] = {.lex_state = 1730, .external_lex_state = 2}, - [1841] = {.lex_state = 233, .external_lex_state = 2}, - [1842] = {.lex_state = 233, .external_lex_state = 2}, - [1843] = {.lex_state = 233, .external_lex_state = 2}, - [1844] = {.lex_state = 1751, .external_lex_state = 2}, - [1845] = {.lex_state = 1730, .external_lex_state = 2}, - [1846] = {.lex_state = 1730, .external_lex_state = 2}, - [1847] = {.lex_state = 1753, .external_lex_state = 2}, - [1848] = {.lex_state = 1730, .external_lex_state = 2}, - [1849] = {.lex_state = 1690}, - [1850] = {.lex_state = 1690}, - [1851] = {.lex_state = 1753, .external_lex_state = 2}, - [1852] = {.lex_state = 1730, .external_lex_state = 2}, - [1853] = {.lex_state = 1730, .external_lex_state = 2}, - [1854] = {.lex_state = 1690}, - [1855] = {.lex_state = 1688}, - [1856] = {.lex_state = 1730, .external_lex_state = 2}, - [1857] = {.lex_state = 1730, .external_lex_state = 2}, - [1858] = {.lex_state = 1730, .external_lex_state = 2}, - [1859] = {.lex_state = 1730, .external_lex_state = 2}, - [1860] = {.lex_state = 1730, .external_lex_state = 2}, - [1861] = {.lex_state = 1730, .external_lex_state = 2}, - [1862] = {.lex_state = 1730, .external_lex_state = 2}, - [1863] = {.lex_state = 1730, .external_lex_state = 2}, - [1864] = {.lex_state = 1730, .external_lex_state = 2}, - [1865] = {.lex_state = 1730, .external_lex_state = 2}, - [1866] = {.lex_state = 1730, .external_lex_state = 2}, - [1867] = {.lex_state = 1730, .external_lex_state = 2}, - [1868] = {.lex_state = 1730, .external_lex_state = 2}, - [1869] = {.lex_state = 1730, .external_lex_state = 2}, - [1870] = {.lex_state = 1730, .external_lex_state = 2}, - [1871] = {.lex_state = 1730, .external_lex_state = 2}, - [1872] = {.lex_state = 1730, .external_lex_state = 2}, - [1873] = {.lex_state = 1730, .external_lex_state = 2}, - [1874] = {.lex_state = 1690}, - [1875] = {.lex_state = 1690}, - [1876] = {.lex_state = 1730, .external_lex_state = 2}, - [1877] = {.lex_state = 1730, .external_lex_state = 2}, - [1878] = {.lex_state = 1730, .external_lex_state = 2}, - [1879] = {.lex_state = 1730, .external_lex_state = 2}, - [1880] = {.lex_state = 1730, .external_lex_state = 2}, - [1881] = {.lex_state = 1730, .external_lex_state = 2}, - [1882] = {.lex_state = 1730, .external_lex_state = 2}, - [1883] = {.lex_state = 1730, .external_lex_state = 2}, - [1884] = {.lex_state = 1688}, - [1885] = {.lex_state = 1730, .external_lex_state = 2}, - [1886] = {.lex_state = 1730, .external_lex_state = 2}, - [1887] = {.lex_state = 1730, .external_lex_state = 2}, - [1888] = {.lex_state = 1730, .external_lex_state = 2}, - [1889] = {.lex_state = 1730, .external_lex_state = 2}, - [1890] = {.lex_state = 1730, .external_lex_state = 2}, - [1891] = {.lex_state = 1730, .external_lex_state = 2}, - [1892] = {.lex_state = 1730, .external_lex_state = 2}, - [1893] = {.lex_state = 1730, .external_lex_state = 2}, - [1894] = {.lex_state = 1730, .external_lex_state = 2}, - [1895] = {.lex_state = 1730, .external_lex_state = 2}, - [1896] = {.lex_state = 1730, .external_lex_state = 2}, - [1897] = {.lex_state = 1730, .external_lex_state = 2}, - [1898] = {.lex_state = 1730, .external_lex_state = 2}, - [1899] = {.lex_state = 1730, .external_lex_state = 2}, - [1900] = {.lex_state = 1730, .external_lex_state = 2}, - [1901] = {.lex_state = 1730, .external_lex_state = 2}, - [1902] = {.lex_state = 1730, .external_lex_state = 2}, - [1903] = {.lex_state = 1730, .external_lex_state = 2}, - [1904] = {.lex_state = 1730, .external_lex_state = 2}, - [1905] = {.lex_state = 1730, .external_lex_state = 2}, - [1906] = {.lex_state = 1730, .external_lex_state = 2}, - [1907] = {.lex_state = 1730, .external_lex_state = 2}, - [1908] = {.lex_state = 1730, .external_lex_state = 2}, - [1909] = {.lex_state = 1688}, - [1910] = {.lex_state = 1730, .external_lex_state = 2}, - [1911] = {.lex_state = 1730, .external_lex_state = 2}, - [1912] = {.lex_state = 1730, .external_lex_state = 2}, - [1913] = {.lex_state = 43, .external_lex_state = 2}, - [1914] = {.lex_state = 1730, .external_lex_state = 2}, - [1915] = {.lex_state = 1730, .external_lex_state = 2}, - [1916] = {.lex_state = 1730, .external_lex_state = 2}, - [1917] = {.lex_state = 1688}, - [1918] = {.lex_state = 1688}, - [1919] = {.lex_state = 1730, .external_lex_state = 2}, - [1920] = {.lex_state = 1688}, - [1921] = {.lex_state = 1690}, - [1922] = {.lex_state = 1730, .external_lex_state = 2}, - [1923] = {.lex_state = 1730, .external_lex_state = 2}, - [1924] = {.lex_state = 1730, .external_lex_state = 2}, - [1925] = {.lex_state = 1688}, - [1926] = {.lex_state = 1730, .external_lex_state = 2}, - [1927] = {.lex_state = 1730, .external_lex_state = 2}, - [1928] = {.lex_state = 7}, - [1929] = {.lex_state = 1730, .external_lex_state = 2}, - [1930] = {.lex_state = 1730, .external_lex_state = 2}, - [1931] = {.lex_state = 1688}, - [1932] = {.lex_state = 7}, - [1933] = {.lex_state = 7}, - [1934] = {.lex_state = 1688}, - [1935] = {.lex_state = 1688}, - [1936] = {.lex_state = 1688}, - [1937] = {.lex_state = 1688}, - [1938] = {.lex_state = 1688}, - [1939] = {.lex_state = 1688}, - [1940] = {.lex_state = 1688}, - [1941] = {.lex_state = 1688}, - [1942] = {.lex_state = 43, .external_lex_state = 2}, - [1943] = {.lex_state = 1688}, - [1944] = {.lex_state = 1688}, - [1945] = {.lex_state = 1730, .external_lex_state = 2}, - [1946] = {.lex_state = 1730, .external_lex_state = 2}, - [1947] = {.lex_state = 1688}, - [1948] = {.lex_state = 1688}, - [1949] = {.lex_state = 1688}, - [1950] = {.lex_state = 1730, .external_lex_state = 2}, - [1951] = {.lex_state = 1730, .external_lex_state = 2}, - [1952] = {.lex_state = 1688}, - [1953] = {.lex_state = 1730, .external_lex_state = 2}, - [1954] = {.lex_state = 1688}, - [1955] = {.lex_state = 1730, .external_lex_state = 2}, - [1956] = {.lex_state = 1730, .external_lex_state = 2}, - [1957] = {.lex_state = 1730, .external_lex_state = 2}, - [1958] = {.lex_state = 43, .external_lex_state = 2}, - [1959] = {.lex_state = 1730, .external_lex_state = 2}, - [1960] = {.lex_state = 1730, .external_lex_state = 2}, - [1961] = {.lex_state = 1730, .external_lex_state = 2}, - [1962] = {.lex_state = 1730, .external_lex_state = 2}, - [1963] = {.lex_state = 1730, .external_lex_state = 2}, - [1964] = {.lex_state = 1730, .external_lex_state = 2}, - [1965] = {.lex_state = 1730, .external_lex_state = 2}, - [1966] = {.lex_state = 1730, .external_lex_state = 2}, - [1967] = {.lex_state = 1730, .external_lex_state = 2}, - [1968] = {.lex_state = 1730, .external_lex_state = 2}, - [1969] = {.lex_state = 1730, .external_lex_state = 2}, - [1970] = {.lex_state = 1688}, - [1971] = {.lex_state = 1688}, - [1972] = {.lex_state = 1690}, - [1973] = {.lex_state = 1730, .external_lex_state = 2}, - [1974] = {.lex_state = 43, .external_lex_state = 2}, - [1975] = {.lex_state = 43, .external_lex_state = 2}, - [1976] = {.lex_state = 43, .external_lex_state = 2}, - [1977] = {.lex_state = 1688}, - [1978] = {.lex_state = 1676}, - [1979] = {.lex_state = 1688}, - [1980] = {.lex_state = 1676}, - [1981] = {.lex_state = 1690}, - [1982] = {.lex_state = 1676}, - [1983] = {.lex_state = 1676}, - [1984] = {.lex_state = 1676}, - [1985] = {.lex_state = 1676}, - [1986] = {.lex_state = 1688}, - [1987] = {.lex_state = 1676}, - [1988] = {.lex_state = 1676}, - [1989] = {.lex_state = 1676}, - [1990] = {.lex_state = 1676}, - [1991] = {.lex_state = 1690}, - [1992] = {.lex_state = 1676}, - [1993] = {.lex_state = 1690}, - [1994] = {.lex_state = 1688}, - [1995] = {.lex_state = 1676}, - [1996] = {.lex_state = 1688}, - [1997] = {.lex_state = 1690}, - [1998] = {.lex_state = 1676}, - [1999] = {.lex_state = 1676}, - [2000] = {.lex_state = 1676}, - [2001] = {.lex_state = 1676}, - [2002] = {.lex_state = 1676}, - [2003] = {.lex_state = 7}, - [2004] = {.lex_state = 1688}, - [2005] = {.lex_state = 1676}, - [2006] = {.lex_state = 1676}, - [2007] = {.lex_state = 1688}, - [2008] = {.lex_state = 1688}, - [2009] = {.lex_state = 1688}, - [2010] = {.lex_state = 1676}, - [2011] = {.lex_state = 1676}, - [2012] = {.lex_state = 1676}, - [2013] = {.lex_state = 1676}, - [2014] = {.lex_state = 7}, - [2015] = {.lex_state = 1676}, - [2016] = {.lex_state = 1676}, - [2017] = {.lex_state = 1688}, - [2018] = {.lex_state = 1688}, - [2019] = {.lex_state = 1690}, - [2020] = {.lex_state = 1676}, - [2021] = {.lex_state = 1676}, - [2022] = {.lex_state = 1690}, - [2023] = {.lex_state = 1690}, - [2024] = {.lex_state = 1690}, - [2025] = {.lex_state = 1676}, - [2026] = {.lex_state = 1688}, - [2027] = {.lex_state = 1688}, - [2028] = {.lex_state = 1690}, - [2029] = {.lex_state = 1690}, - [2030] = {.lex_state = 1676}, - [2031] = {.lex_state = 14, .external_lex_state = 2}, - [2032] = {.lex_state = 14, .external_lex_state = 2}, - [2033] = {.lex_state = 1676}, - [2034] = {.lex_state = 7}, - [2035] = {.lex_state = 7}, - [2036] = {.lex_state = 1676}, - [2037] = {.lex_state = 1688}, - [2038] = {.lex_state = 1676}, - [2039] = {.lex_state = 1690}, - [2040] = {.lex_state = 1690}, - [2041] = {.lex_state = 1676}, - [2042] = {.lex_state = 1690}, - [2043] = {.lex_state = 1690}, - [2044] = {.lex_state = 1690}, - [2045] = {.lex_state = 1676}, - [2046] = {.lex_state = 1688}, - [2047] = {.lex_state = 1690}, - [2048] = {.lex_state = 1690}, - [2049] = {.lex_state = 1690}, - [2050] = {.lex_state = 1690}, - [2051] = {.lex_state = 1690}, - [2052] = {.lex_state = 1690}, - [2053] = {.lex_state = 1688}, - [2054] = {.lex_state = 1676}, - [2055] = {.lex_state = 1688}, - [2056] = {.lex_state = 1676}, - [2057] = {.lex_state = 1676}, - [2058] = {.lex_state = 1676}, - [2059] = {.lex_state = 1676}, - [2060] = {.lex_state = 1690}, - [2061] = {.lex_state = 1688}, - [2062] = {.lex_state = 1676}, - [2063] = {.lex_state = 1688}, - [2064] = {.lex_state = 1690}, - [2065] = {.lex_state = 1676}, - [2066] = {.lex_state = 1676}, - [2067] = {.lex_state = 14, .external_lex_state = 2}, - [2068] = {.lex_state = 1676}, - [2069] = {.lex_state = 1688}, - [2070] = {.lex_state = 1676}, - [2071] = {.lex_state = 1688}, - [2072] = {.lex_state = 1676}, - [2073] = {.lex_state = 1676}, - [2074] = {.lex_state = 1676}, - [2075] = {.lex_state = 1676}, - [2076] = {.lex_state = 1690}, - [2077] = {.lex_state = 1676}, - [2078] = {.lex_state = 1676}, - [2079] = {.lex_state = 1676}, - [2080] = {.lex_state = 1676}, - [2081] = {.lex_state = 14, .external_lex_state = 2}, - [2082] = {.lex_state = 1676}, - [2083] = {.lex_state = 1688}, - [2084] = {.lex_state = 1676}, - [2085] = {.lex_state = 1690}, - [2086] = {.lex_state = 1690}, - [2087] = {.lex_state = 1676}, - [2088] = {.lex_state = 1676}, - [2089] = {.lex_state = 1676}, - [2090] = {.lex_state = 1690}, - [2091] = {.lex_state = 43, .external_lex_state = 2}, - [2092] = {.lex_state = 1686}, - [2093] = {.lex_state = 1686}, - [2094] = {.lex_state = 1688}, - [2095] = {.lex_state = 1686}, - [2096] = {.lex_state = 1686}, - [2097] = {.lex_state = 1688}, - [2098] = {.lex_state = 43, .external_lex_state = 2}, - [2099] = {.lex_state = 43, .external_lex_state = 2}, - [2100] = {.lex_state = 43, .external_lex_state = 2}, - [2101] = {.lex_state = 43, .external_lex_state = 2}, - [2102] = {.lex_state = 1688}, - [2103] = {.lex_state = 1688}, - [2104] = {.lex_state = 1688}, - [2105] = {.lex_state = 1676}, - [2106] = {.lex_state = 1686}, - [2107] = {.lex_state = 1690}, - [2108] = {.lex_state = 1676}, - [2109] = {.lex_state = 1690}, - [2110] = {.lex_state = 1688}, - [2111] = {.lex_state = 1690}, - [2112] = {.lex_state = 1690}, - [2113] = {.lex_state = 1688}, - [2114] = {.lex_state = 1676}, - [2115] = {.lex_state = 1688}, - [2116] = {.lex_state = 1688}, - [2117] = {.lex_state = 1688}, - [2118] = {.lex_state = 1688}, - [2119] = {.lex_state = 1688}, - [2120] = {.lex_state = 1688}, - [2121] = {.lex_state = 1676}, - [2122] = {.lex_state = 1688}, - [2123] = {.lex_state = 43, .external_lex_state = 2}, - [2124] = {.lex_state = 43, .external_lex_state = 2}, - [2125] = {.lex_state = 43, .external_lex_state = 2}, - [2126] = {.lex_state = 1688}, - [2127] = {.lex_state = 1688}, - [2128] = {.lex_state = 43, .external_lex_state = 2}, - [2129] = {.lex_state = 43, .external_lex_state = 2}, - [2130] = {.lex_state = 43, .external_lex_state = 2}, - [2131] = {.lex_state = 1690}, - [2132] = {.lex_state = 1688}, - [2133] = {.lex_state = 1688}, - [2134] = {.lex_state = 1688}, - [2135] = {.lex_state = 1690}, - [2136] = {.lex_state = 1688}, - [2137] = {.lex_state = 1688}, - [2138] = {.lex_state = 1688}, - [2139] = {.lex_state = 1688}, - [2140] = {.lex_state = 1688}, - [2141] = {.lex_state = 1688}, - [2142] = {.lex_state = 1688}, - [2143] = {.lex_state = 1688}, - [2144] = {.lex_state = 1688}, - [2145] = {.lex_state = 1688}, - [2146] = {.lex_state = 43, .external_lex_state = 2}, - [2147] = {.lex_state = 43, .external_lex_state = 2}, - [2148] = {.lex_state = 1688}, - [2149] = {.lex_state = 1688}, - [2150] = {.lex_state = 1688}, - [2151] = {.lex_state = 43, .external_lex_state = 2}, - [2152] = {.lex_state = 43, .external_lex_state = 2}, - [2153] = {.lex_state = 1676}, - [2154] = {.lex_state = 43, .external_lex_state = 2}, - [2155] = {.lex_state = 43, .external_lex_state = 2}, - [2156] = {.lex_state = 43, .external_lex_state = 2}, - [2157] = {.lex_state = 43, .external_lex_state = 2}, - [2158] = {.lex_state = 43, .external_lex_state = 2}, - [2159] = {.lex_state = 43, .external_lex_state = 2}, - [2160] = {.lex_state = 43, .external_lex_state = 2}, - [2161] = {.lex_state = 43, .external_lex_state = 2}, - [2162] = {.lex_state = 43, .external_lex_state = 2}, - [2163] = {.lex_state = 43, .external_lex_state = 2}, - [2164] = {.lex_state = 43, .external_lex_state = 2}, - [2165] = {.lex_state = 1688}, - [2166] = {.lex_state = 43, .external_lex_state = 2}, - [2167] = {.lex_state = 43, .external_lex_state = 2}, - [2168] = {.lex_state = 43, .external_lex_state = 2}, - [2169] = {.lex_state = 43, .external_lex_state = 2}, - [2170] = {.lex_state = 43, .external_lex_state = 2}, - [2171] = {.lex_state = 1688}, - [2172] = {.lex_state = 1676}, - [2173] = {.lex_state = 43, .external_lex_state = 2}, - [2174] = {.lex_state = 1688}, - [2175] = {.lex_state = 1688}, - [2176] = {.lex_state = 1690}, - [2177] = {.lex_state = 1676}, - [2178] = {.lex_state = 1676}, - [2179] = {.lex_state = 1676}, - [2180] = {.lex_state = 231, .external_lex_state = 2}, - [2181] = {.lex_state = 1676}, - [2182] = {.lex_state = 1676}, - [2183] = {.lex_state = 1676}, - [2184] = {.lex_state = 1676}, - [2185] = {.lex_state = 1676}, - [2186] = {.lex_state = 1676}, - [2187] = {.lex_state = 1676}, - [2188] = {.lex_state = 1676}, - [2189] = {.lex_state = 1676}, - [2190] = {.lex_state = 1676}, - [2191] = {.lex_state = 1676}, - [2192] = {.lex_state = 1676}, - [2193] = {.lex_state = 1676}, - [2194] = {.lex_state = 1676}, - [2195] = {.lex_state = 1676}, - [2196] = {.lex_state = 1676}, - [2197] = {.lex_state = 1686}, - [2198] = {.lex_state = 1676}, - [2199] = {.lex_state = 1676}, - [2200] = {.lex_state = 1676}, - [2201] = {.lex_state = 47, .external_lex_state = 2}, - [2202] = {.lex_state = 1684}, - [2203] = {.lex_state = 1676}, - [2204] = {.lex_state = 1676}, - [2205] = {.lex_state = 1676}, - [2206] = {.lex_state = 1676}, - [2207] = {.lex_state = 1676}, - [2208] = {.lex_state = 1676}, - [2209] = {.lex_state = 1676}, - [2210] = {.lex_state = 1676}, - [2211] = {.lex_state = 1676}, - [2212] = {.lex_state = 1676}, - [2213] = {.lex_state = 1676}, - [2214] = {.lex_state = 1676}, - [2215] = {.lex_state = 1676}, - [2216] = {.lex_state = 1676}, - [2217] = {.lex_state = 1676}, - [2218] = {.lex_state = 1676}, - [2219] = {.lex_state = 1676}, - [2220] = {.lex_state = 1676}, - [2221] = {.lex_state = 1676}, - [2222] = {.lex_state = 1676}, - [2223] = {.lex_state = 1676}, - [2224] = {.lex_state = 1676}, - [2225] = {.lex_state = 1676}, - [2226] = {.lex_state = 1676}, - [2227] = {.lex_state = 1686}, - [2228] = {.lex_state = 1686}, - [2229] = {.lex_state = 1676}, - [2230] = {.lex_state = 1676}, - [2231] = {.lex_state = 1676}, - [2232] = {.lex_state = 1676}, - [2233] = {.lex_state = 1676}, - [2234] = {.lex_state = 1676}, - [2235] = {.lex_state = 1676}, - [2236] = {.lex_state = 1676}, - [2237] = {.lex_state = 1676}, - [2238] = {.lex_state = 1676}, - [2239] = {.lex_state = 1676}, - [2240] = {.lex_state = 1676}, - [2241] = {.lex_state = 1676}, - [2242] = {.lex_state = 1676}, - [2243] = {.lex_state = 1676}, - [2244] = {.lex_state = 1676}, - [2245] = {.lex_state = 1676}, - [2246] = {.lex_state = 1676}, - [2247] = {.lex_state = 1676}, - [2248] = {.lex_state = 1676}, - [2249] = {.lex_state = 1676}, - [2250] = {.lex_state = 1676}, - [2251] = {.lex_state = 1676}, - [2252] = {.lex_state = 1676}, - [2253] = {.lex_state = 1676}, - [2254] = {.lex_state = 1676}, - [2255] = {.lex_state = 1676}, - [2256] = {.lex_state = 1676}, - [2257] = {.lex_state = 1676}, - [2258] = {.lex_state = 1686}, - [2259] = {.lex_state = 1676}, - [2260] = {.lex_state = 1676}, - [2261] = {.lex_state = 1676}, - [2262] = {.lex_state = 1676}, - [2263] = {.lex_state = 1676}, - [2264] = {.lex_state = 1676}, - [2265] = {.lex_state = 1676}, - [2266] = {.lex_state = 1676}, - [2267] = {.lex_state = 1676}, - [2268] = {.lex_state = 1676}, - [2269] = {.lex_state = 1749, .external_lex_state = 2}, - [2270] = {.lex_state = 1676}, - [2271] = {.lex_state = 1676}, - [2272] = {.lex_state = 1676}, - [2273] = {.lex_state = 1676}, - [2274] = {.lex_state = 1676}, - [2275] = {.lex_state = 1676}, - [2276] = {.lex_state = 1676}, - [2277] = {.lex_state = 1676}, - [2278] = {.lex_state = 1676}, - [2279] = {.lex_state = 1676}, - [2280] = {.lex_state = 1676}, - [2281] = {.lex_state = 231, .external_lex_state = 2}, - [2282] = {.lex_state = 1676}, - [2283] = {.lex_state = 1676}, - [2284] = {.lex_state = 1676}, - [2285] = {.lex_state = 1676}, - [2286] = {.lex_state = 1676}, - [2287] = {.lex_state = 1749, .external_lex_state = 2}, - [2288] = {.lex_state = 1676}, - [2289] = {.lex_state = 1676}, - [2290] = {.lex_state = 1676}, - [2291] = {.lex_state = 1676}, - [2292] = {.lex_state = 1676}, - [2293] = {.lex_state = 1676}, - [2294] = {.lex_state = 1676}, - [2295] = {.lex_state = 1676}, - [2296] = {.lex_state = 1676}, - [2297] = {.lex_state = 1676}, - [2298] = {.lex_state = 1749, .external_lex_state = 2}, - [2299] = {.lex_state = 1676}, - [2300] = {.lex_state = 47, .external_lex_state = 2}, - [2301] = {.lex_state = 1676}, - [2302] = {.lex_state = 1676}, - [2303] = {.lex_state = 1690}, - [2304] = {.lex_state = 1690}, - [2305] = {.lex_state = 1676}, - [2306] = {.lex_state = 1676}, - [2307] = {.lex_state = 1676}, - [2308] = {.lex_state = 1676}, - [2309] = {.lex_state = 1676}, - [2310] = {.lex_state = 1676}, - [2311] = {.lex_state = 1676}, - [2312] = {.lex_state = 109, .external_lex_state = 2}, - [2313] = {.lex_state = 1676}, - [2314] = {.lex_state = 1676}, - [2315] = {.lex_state = 1676}, - [2316] = {.lex_state = 1676}, - [2317] = {.lex_state = 1676}, - [2318] = {.lex_state = 1676}, - [2319] = {.lex_state = 1676}, - [2320] = {.lex_state = 1676}, - [2321] = {.lex_state = 1676}, - [2322] = {.lex_state = 1676}, - [2323] = {.lex_state = 1686}, - [2324] = {.lex_state = 1676}, - [2325] = {.lex_state = 1676}, - [2326] = {.lex_state = 1676}, - [2327] = {.lex_state = 1676}, - [2328] = {.lex_state = 1676}, - [2329] = {.lex_state = 108, .external_lex_state = 2}, - [2330] = {.lex_state = 1676}, - [2331] = {.lex_state = 1676}, - [2332] = {.lex_state = 1676}, - [2333] = {.lex_state = 1676}, - [2334] = {.lex_state = 1676}, - [2335] = {.lex_state = 1676}, - [2336] = {.lex_state = 1676}, - [2337] = {.lex_state = 1676}, - [2338] = {.lex_state = 1676}, - [2339] = {.lex_state = 1676}, - [2340] = {.lex_state = 1676}, - [2341] = {.lex_state = 1676}, - [2342] = {.lex_state = 1676}, - [2343] = {.lex_state = 1676}, - [2344] = {.lex_state = 1676}, - [2345] = {.lex_state = 1676}, - [2346] = {.lex_state = 1676}, - [2347] = {.lex_state = 1676}, - [2348] = {.lex_state = 1676}, - [2349] = {.lex_state = 1676}, - [2350] = {.lex_state = 107, .external_lex_state = 2}, - [2351] = {.lex_state = 1676}, - [2352] = {.lex_state = 1676}, - [2353] = {.lex_state = 1676}, - [2354] = {.lex_state = 1676}, - [2355] = {.lex_state = 1676}, - [2356] = {.lex_state = 1676}, - [2357] = {.lex_state = 1676}, - [2358] = {.lex_state = 1676}, - [2359] = {.lex_state = 1676}, - [2360] = {.lex_state = 1676}, - [2361] = {.lex_state = 1676}, - [2362] = {.lex_state = 1676}, - [2363] = {.lex_state = 1676}, - [2364] = {.lex_state = 1676}, - [2365] = {.lex_state = 1676}, - [2366] = {.lex_state = 231, .external_lex_state = 2}, - [2367] = {.lex_state = 1749, .external_lex_state = 2}, - [2368] = {.lex_state = 1676}, - [2369] = {.lex_state = 1676}, - [2370] = {.lex_state = 7}, - [2371] = {.lex_state = 1676}, - [2372] = {.lex_state = 1676}, - [2373] = {.lex_state = 257, .external_lex_state = 2}, - [2374] = {.lex_state = 1676}, - [2375] = {.lex_state = 153, .external_lex_state = 2}, - [2376] = {.lex_state = 1676}, - [2377] = {.lex_state = 1676}, - [2378] = {.lex_state = 1676}, - [2379] = {.lex_state = 1676}, - [2380] = {.lex_state = 1676}, - [2381] = {.lex_state = 1676}, - [2382] = {.lex_state = 1676}, - [2383] = {.lex_state = 7}, - [2384] = {.lex_state = 1676}, - [2385] = {.lex_state = 1676}, - [2386] = {.lex_state = 1676}, - [2387] = {.lex_state = 1676}, - [2388] = {.lex_state = 1676}, - [2389] = {.lex_state = 1676}, - [2390] = {.lex_state = 1676}, - [2391] = {.lex_state = 1676}, - [2392] = {.lex_state = 1676}, - [2393] = {.lex_state = 1676}, - [2394] = {.lex_state = 1676}, - [2395] = {.lex_state = 1676}, - [2396] = {.lex_state = 1676}, - [2397] = {.lex_state = 1676}, - [2398] = {.lex_state = 231, .external_lex_state = 2}, - [2399] = {.lex_state = 1676}, - [2400] = {.lex_state = 1676}, - [2401] = {.lex_state = 255, .external_lex_state = 2}, - [2402] = {.lex_state = 1676}, - [2403] = {.lex_state = 1676}, - [2404] = {.lex_state = 1676}, - [2405] = {.lex_state = 1676}, - [2406] = {.lex_state = 1676}, - [2407] = {.lex_state = 1676}, - [2408] = {.lex_state = 1676}, - [2409] = {.lex_state = 1676}, - [2410] = {.lex_state = 1676}, - [2411] = {.lex_state = 1676}, - [2412] = {.lex_state = 1676}, - [2413] = {.lex_state = 1749, .external_lex_state = 2}, - [2414] = {.lex_state = 1676}, - [2415] = {.lex_state = 1676}, - [2416] = {.lex_state = 1676}, - [2417] = {.lex_state = 1676}, - [2418] = {.lex_state = 1676}, - [2419] = {.lex_state = 1676}, - [2420] = {.lex_state = 1676}, - [2421] = {.lex_state = 1676}, - [2422] = {.lex_state = 1749, .external_lex_state = 2}, - [2423] = {.lex_state = 1676}, - [2424] = {.lex_state = 1676}, - [2425] = {.lex_state = 1676}, - [2426] = {.lex_state = 1676}, - [2427] = {.lex_state = 1676}, - [2428] = {.lex_state = 1749, .external_lex_state = 2}, - [2429] = {.lex_state = 1676}, - [2430] = {.lex_state = 1676}, - [2431] = {.lex_state = 1676}, - [2432] = {.lex_state = 1676}, - [2433] = {.lex_state = 1676}, - [2434] = {.lex_state = 1676}, - [2435] = {.lex_state = 1676}, - [2436] = {.lex_state = 1676}, - [2437] = {.lex_state = 7}, - [2438] = {.lex_state = 1676}, - [2439] = {.lex_state = 47, .external_lex_state = 2}, - [2440] = {.lex_state = 1676}, - [2441] = {.lex_state = 231, .external_lex_state = 2}, - [2442] = {.lex_state = 1676}, - [2443] = {.lex_state = 1676}, - [2444] = {.lex_state = 231, .external_lex_state = 2}, - [2445] = {.lex_state = 1676}, - [2446] = {.lex_state = 1676}, - [2447] = {.lex_state = 47, .external_lex_state = 2}, - [2448] = {.lex_state = 1676}, - [2449] = {.lex_state = 1676}, - [2450] = {.lex_state = 1676}, - [2451] = {.lex_state = 147, .external_lex_state = 2}, - [2452] = {.lex_state = 108, .external_lex_state = 2}, - [2453] = {.lex_state = 138, .external_lex_state = 2}, - [2454] = {.lex_state = 1676}, - [2455] = {.lex_state = 231, .external_lex_state = 2}, - [2456] = {.lex_state = 7}, - [2457] = {.lex_state = 231, .external_lex_state = 2}, - [2458] = {.lex_state = 231, .external_lex_state = 2}, - [2459] = {.lex_state = 231, .external_lex_state = 2}, - [2460] = {.lex_state = 1684}, - [2461] = {.lex_state = 1676}, - [2462] = {.lex_state = 1749, .external_lex_state = 2}, - [2463] = {.lex_state = 1749, .external_lex_state = 2}, - [2464] = {.lex_state = 1748, .external_lex_state = 2}, - [2465] = {.lex_state = 1676}, - [2466] = {.lex_state = 1676}, - [2467] = {.lex_state = 1748, .external_lex_state = 2}, - [2468] = {.lex_state = 1676}, - [2469] = {.lex_state = 1676}, - [2470] = {.lex_state = 1676}, - [2471] = {.lex_state = 1676}, - [2472] = {.lex_state = 1676}, - [2473] = {.lex_state = 1676}, - [2474] = {.lex_state = 1676}, - [2475] = {.lex_state = 152, .external_lex_state = 2}, - [2476] = {.lex_state = 1676}, - [2477] = {.lex_state = 152, .external_lex_state = 2}, - [2478] = {.lex_state = 1676}, - [2479] = {.lex_state = 1676}, - [2480] = {.lex_state = 152, .external_lex_state = 2}, - [2481] = {.lex_state = 1676}, - [2482] = {.lex_state = 1676}, - [2483] = {.lex_state = 1676}, - [2484] = {.lex_state = 1676}, - [2485] = {.lex_state = 1676}, - [2486] = {.lex_state = 1676}, - [2487] = {.lex_state = 1676}, - [2488] = {.lex_state = 1676}, - [2489] = {.lex_state = 141, .external_lex_state = 2}, - [2490] = {.lex_state = 1676}, - [2491] = {.lex_state = 1676}, - [2492] = {.lex_state = 1676}, - [2493] = {.lex_state = 1676}, - [2494] = {.lex_state = 1676}, - [2495] = {.lex_state = 254, .external_lex_state = 2}, - [2496] = {.lex_state = 1676}, - [2497] = {.lex_state = 1676}, - [2498] = {.lex_state = 1676}, - [2499] = {.lex_state = 1676}, - [2500] = {.lex_state = 1676}, - [2501] = {.lex_state = 1676}, - [2502] = {.lex_state = 1676}, - [2503] = {.lex_state = 1676}, - [2504] = {.lex_state = 106, .external_lex_state = 2}, - [2505] = {.lex_state = 1748, .external_lex_state = 2}, - [2506] = {.lex_state = 1748, .external_lex_state = 2}, - [2507] = {.lex_state = 1676}, - [2508] = {.lex_state = 1676}, - [2509] = {.lex_state = 1676}, - [2510] = {.lex_state = 1676}, - [2511] = {.lex_state = 1676}, - [2512] = {.lex_state = 1676}, - [2513] = {.lex_state = 1676}, - [2514] = {.lex_state = 1676}, - [2515] = {.lex_state = 1676}, - [2516] = {.lex_state = 1676}, - [2517] = {.lex_state = 1676}, - [2518] = {.lex_state = 1676}, - [2519] = {.lex_state = 1676}, - [2520] = {.lex_state = 151, .external_lex_state = 2}, - [2521] = {.lex_state = 1676}, - [2522] = {.lex_state = 1676}, - [2523] = {.lex_state = 1749, .external_lex_state = 2}, - [2524] = {.lex_state = 1676}, - [2525] = {.lex_state = 1676}, - [2526] = {.lex_state = 1676}, - [2527] = {.lex_state = 1676}, - [2528] = {.lex_state = 1676}, - [2529] = {.lex_state = 1676}, - [2530] = {.lex_state = 1676}, - [2531] = {.lex_state = 1676}, - [2532] = {.lex_state = 1676}, - [2533] = {.lex_state = 1676}, - [2534] = {.lex_state = 1676}, - [2535] = {.lex_state = 254, .external_lex_state = 2}, - [2536] = {.lex_state = 1676}, - [2537] = {.lex_state = 152, .external_lex_state = 2}, - [2538] = {.lex_state = 1676}, - [2539] = {.lex_state = 1676}, - [2540] = {.lex_state = 140, .external_lex_state = 2}, - [2541] = {.lex_state = 1676}, - [2542] = {.lex_state = 1748, .external_lex_state = 2}, - [2543] = {.lex_state = 1676}, - [2544] = {.lex_state = 140, .external_lex_state = 2}, - [2545] = {.lex_state = 1676}, - [2546] = {.lex_state = 1676}, - [2547] = {.lex_state = 1676}, - [2548] = {.lex_state = 1676}, - [2549] = {.lex_state = 106, .external_lex_state = 2}, - [2550] = {.lex_state = 1676}, - [2551] = {.lex_state = 1748, .external_lex_state = 2}, - [2552] = {.lex_state = 1676}, - [2553] = {.lex_state = 1676}, - [2554] = {.lex_state = 231, .external_lex_state = 2}, - [2555] = {.lex_state = 231, .external_lex_state = 2}, - [2556] = {.lex_state = 1748, .external_lex_state = 2}, - [2557] = {.lex_state = 1749, .external_lex_state = 2}, - [2558] = {.lex_state = 139, .external_lex_state = 2}, - [2559] = {.lex_state = 1749, .external_lex_state = 2}, - [2560] = {.lex_state = 1749, .external_lex_state = 2}, - [2561] = {.lex_state = 150, .external_lex_state = 2}, - [2562] = {.lex_state = 231, .external_lex_state = 2}, - [2563] = {.lex_state = 231, .external_lex_state = 2}, - [2564] = {.lex_state = 150, .external_lex_state = 2}, - [2565] = {.lex_state = 231, .external_lex_state = 2}, - [2566] = {.lex_state = 150, .external_lex_state = 2}, - [2567] = {.lex_state = 231, .external_lex_state = 2}, - [2568] = {.lex_state = 231, .external_lex_state = 2}, - [2569] = {.lex_state = 150, .external_lex_state = 2}, - [2570] = {.lex_state = 231, .external_lex_state = 2}, - [2571] = {.lex_state = 256, .external_lex_state = 2}, - [2572] = {.lex_state = 231, .external_lex_state = 2}, - [2573] = {.lex_state = 256, .external_lex_state = 2}, - [2574] = {.lex_state = 1748, .external_lex_state = 2}, - [2575] = {.lex_state = 256, .external_lex_state = 2}, - [2576] = {.lex_state = 231, .external_lex_state = 2}, - [2577] = {.lex_state = 1748, .external_lex_state = 2}, - [2578] = {.lex_state = 222, .external_lex_state = 2}, - [2579] = {.lex_state = 256, .external_lex_state = 2}, - [2580] = {.lex_state = 256, .external_lex_state = 2}, - [2581] = {.lex_state = 231, .external_lex_state = 2}, - [2582] = {.lex_state = 207, .external_lex_state = 2}, - [2583] = {.lex_state = 141, .external_lex_state = 2}, - [2584] = {.lex_state = 213, .external_lex_state = 2}, - [2585] = {.lex_state = 141, .external_lex_state = 2}, - [2586] = {.lex_state = 141, .external_lex_state = 2}, - [2587] = {.lex_state = 207, .external_lex_state = 2}, - [2588] = {.lex_state = 1748, .external_lex_state = 2}, - [2589] = {.lex_state = 207, .external_lex_state = 2}, - [2590] = {.lex_state = 231, .external_lex_state = 2}, - [2591] = {.lex_state = 141, .external_lex_state = 2}, - [2592] = {.lex_state = 1748, .external_lex_state = 2}, - [2593] = {.lex_state = 1748, .external_lex_state = 2}, - [2594] = {.lex_state = 148, .external_lex_state = 2}, - [2595] = {.lex_state = 231, .external_lex_state = 2}, - [2596] = {.lex_state = 231, .external_lex_state = 2}, - [2597] = {.lex_state = 231, .external_lex_state = 2}, - [2598] = {.lex_state = 1751, .external_lex_state = 2}, - [2599] = {.lex_state = 142, .external_lex_state = 2}, - [2600] = {.lex_state = 231, .external_lex_state = 2}, - [2601] = {.lex_state = 194, .external_lex_state = 2}, - [2602] = {.lex_state = 231, .external_lex_state = 2}, - [2603] = {.lex_state = 231, .external_lex_state = 2}, - [2604] = {.lex_state = 231, .external_lex_state = 2}, - [2605] = {.lex_state = 1751, .external_lex_state = 2}, - [2606] = {.lex_state = 142, .external_lex_state = 2}, - [2607] = {.lex_state = 231, .external_lex_state = 2}, - [2608] = {.lex_state = 231, .external_lex_state = 2}, - [2609] = {.lex_state = 207, .external_lex_state = 2}, - [2610] = {.lex_state = 231, .external_lex_state = 2}, - [2611] = {.lex_state = 1751, .external_lex_state = 2}, - [2612] = {.lex_state = 1751, .external_lex_state = 2}, - [2613] = {.lex_state = 1751, .external_lex_state = 2}, - [2614] = {.lex_state = 231, .external_lex_state = 2}, - [2615] = {.lex_state = 1751, .external_lex_state = 2}, - [2616] = {.lex_state = 1751, .external_lex_state = 2}, - [2617] = {.lex_state = 1751, .external_lex_state = 2}, - [2618] = {.lex_state = 1751, .external_lex_state = 2}, - [2619] = {.lex_state = 231, .external_lex_state = 2}, - [2620] = {.lex_state = 207, .external_lex_state = 2}, - [2621] = {.lex_state = 1751, .external_lex_state = 2}, - [2622] = {.lex_state = 231, .external_lex_state = 2}, - [2623] = {.lex_state = 231, .external_lex_state = 2}, - [2624] = {.lex_state = 231, .external_lex_state = 2}, - [2625] = {.lex_state = 1751, .external_lex_state = 2}, - [2626] = {.lex_state = 1751, .external_lex_state = 2}, - [2627] = {.lex_state = 231, .external_lex_state = 2}, - [2628] = {.lex_state = 215, .external_lex_state = 2}, - [2629] = {.lex_state = 231, .external_lex_state = 2}, - [2630] = {.lex_state = 1749, .external_lex_state = 2}, - [2631] = {.lex_state = 1749, .external_lex_state = 2}, - [2632] = {.lex_state = 231, .external_lex_state = 2}, - [2633] = {.lex_state = 1749, .external_lex_state = 2}, - [2634] = {.lex_state = 231, .external_lex_state = 2}, - [2635] = {.lex_state = 231, .external_lex_state = 2}, - [2636] = {.lex_state = 1751, .external_lex_state = 2}, - [2637] = {.lex_state = 231, .external_lex_state = 2}, - [2638] = {.lex_state = 231, .external_lex_state = 2}, - [2639] = {.lex_state = 231, .external_lex_state = 2}, - [2640] = {.lex_state = 231, .external_lex_state = 2}, - [2641] = {.lex_state = 1751, .external_lex_state = 2}, - [2642] = {.lex_state = 1751, .external_lex_state = 2}, - [2643] = {.lex_state = 1751, .external_lex_state = 2}, - [2644] = {.lex_state = 1751, .external_lex_state = 2}, - [2645] = {.lex_state = 231, .external_lex_state = 2}, - [2646] = {.lex_state = 231, .external_lex_state = 2}, - [2647] = {.lex_state = 1751, .external_lex_state = 2}, - [2648] = {.lex_state = 1751, .external_lex_state = 2}, - [2649] = {.lex_state = 231, .external_lex_state = 2}, - [2650] = {.lex_state = 1751, .external_lex_state = 2}, - [2651] = {.lex_state = 231, .external_lex_state = 2}, - [2652] = {.lex_state = 1751, .external_lex_state = 2}, - [2653] = {.lex_state = 1751, .external_lex_state = 2}, - [2654] = {.lex_state = 215, .external_lex_state = 2}, - [2655] = {.lex_state = 231, .external_lex_state = 2}, - [2656] = {.lex_state = 231, .external_lex_state = 2}, - [2657] = {.lex_state = 231, .external_lex_state = 2}, - [2658] = {.lex_state = 231, .external_lex_state = 2}, - [2659] = {.lex_state = 231, .external_lex_state = 2}, - [2660] = {.lex_state = 194, .external_lex_state = 2}, - [2661] = {.lex_state = 231, .external_lex_state = 2}, - [2662] = {.lex_state = 231, .external_lex_state = 2}, - [2663] = {.lex_state = 231, .external_lex_state = 2}, - [2664] = {.lex_state = 231, .external_lex_state = 2}, - [2665] = {.lex_state = 194, .external_lex_state = 2}, - [2666] = {.lex_state = 231, .external_lex_state = 2}, - [2667] = {.lex_state = 143, .external_lex_state = 2}, - [2668] = {.lex_state = 250, .external_lex_state = 2}, - [2669] = {.lex_state = 1751, .external_lex_state = 2}, - [2670] = {.lex_state = 239, .external_lex_state = 2}, - [2671] = {.lex_state = 216, .external_lex_state = 2}, - [2672] = {.lex_state = 250, .external_lex_state = 2}, - [2673] = {.lex_state = 250, .external_lex_state = 2}, - [2674] = {.lex_state = 241, .external_lex_state = 2}, - [2675] = {.lex_state = 241, .external_lex_state = 2}, - [2676] = {.lex_state = 239, .external_lex_state = 2}, - [2677] = {.lex_state = 194, .external_lex_state = 2}, - [2678] = {.lex_state = 214, .external_lex_state = 2}, - [2679] = {.lex_state = 250, .external_lex_state = 2}, - [2680] = {.lex_state = 216, .external_lex_state = 2}, - [2681] = {.lex_state = 250, .external_lex_state = 2}, - [2682] = {.lex_state = 194, .external_lex_state = 2}, - [2683] = {.lex_state = 223, .external_lex_state = 2}, - [2684] = {.lex_state = 143, .external_lex_state = 2}, - [2685] = {.lex_state = 241, .external_lex_state = 2}, - [2686] = {.lex_state = 1730, .external_lex_state = 2}, - [2687] = {.lex_state = 1730, .external_lex_state = 2}, - [2688] = {.lex_state = 250, .external_lex_state = 2}, - [2689] = {.lex_state = 250, .external_lex_state = 2}, - [2690] = {.lex_state = 1751, .external_lex_state = 2}, - [2691] = {.lex_state = 250, .external_lex_state = 2}, - [2692] = {.lex_state = 250, .external_lex_state = 2}, - [2693] = {.lex_state = 250, .external_lex_state = 2}, - [2694] = {.lex_state = 1751, .external_lex_state = 2}, - [2695] = {.lex_state = 143, .external_lex_state = 2}, - [2696] = {.lex_state = 250, .external_lex_state = 2}, - [2697] = {.lex_state = 143, .external_lex_state = 2}, - [2698] = {.lex_state = 143, .external_lex_state = 2}, - [2699] = {.lex_state = 205, .external_lex_state = 2}, - [2700] = {.lex_state = 250, .external_lex_state = 2}, - [2701] = {.lex_state = 250, .external_lex_state = 2}, - [2702] = {.lex_state = 205, .external_lex_state = 2}, - [2703] = {.lex_state = 1751, .external_lex_state = 2}, - [2704] = {.lex_state = 1751, .external_lex_state = 2}, - [2705] = {.lex_state = 1751, .external_lex_state = 2}, - [2706] = {.lex_state = 205, .external_lex_state = 2}, - [2707] = {.lex_state = 250, .external_lex_state = 2}, - [2708] = {.lex_state = 250, .external_lex_state = 2}, - [2709] = {.lex_state = 205, .external_lex_state = 2}, - [2710] = {.lex_state = 250, .external_lex_state = 2}, - [2711] = {.lex_state = 250, .external_lex_state = 2}, - [2712] = {.lex_state = 1751, .external_lex_state = 2}, - [2713] = {.lex_state = 1751, .external_lex_state = 2}, - [2714] = {.lex_state = 250, .external_lex_state = 2}, - [2715] = {.lex_state = 250, .external_lex_state = 2}, - [2716] = {.lex_state = 143, .external_lex_state = 2}, - [2717] = {.lex_state = 1751, .external_lex_state = 2}, - [2718] = {.lex_state = 250, .external_lex_state = 2}, - [2719] = {.lex_state = 205, .external_lex_state = 2}, - [2720] = {.lex_state = 216, .external_lex_state = 2}, - [2721] = {.lex_state = 1751, .external_lex_state = 2}, - [2722] = {.lex_state = 1751, .external_lex_state = 2}, - [2723] = {.lex_state = 205, .external_lex_state = 2}, - [2724] = {.lex_state = 1751, .external_lex_state = 2}, - [2725] = {.lex_state = 241, .external_lex_state = 2}, - [2726] = {.lex_state = 239, .external_lex_state = 2}, - [2727] = {.lex_state = 241, .external_lex_state = 2}, - [2728] = {.lex_state = 208, .external_lex_state = 2}, - [2729] = {.lex_state = 1751, .external_lex_state = 2}, - [2730] = {.lex_state = 206, .external_lex_state = 2}, - [2731] = {.lex_state = 216, .external_lex_state = 2}, - [2732] = {.lex_state = 250, .external_lex_state = 2}, - [2733] = {.lex_state = 44, .external_lex_state = 2}, - [2734] = {.lex_state = 1751, .external_lex_state = 2}, - [2735] = {.lex_state = 250, .external_lex_state = 2}, - [2736] = {.lex_state = 1751, .external_lex_state = 2}, - [2737] = {.lex_state = 250, .external_lex_state = 2}, - [2738] = {.lex_state = 1751, .external_lex_state = 2}, - [2739] = {.lex_state = 1751, .external_lex_state = 2}, - [2740] = {.lex_state = 1751, .external_lex_state = 2}, - [2741] = {.lex_state = 1751, .external_lex_state = 2}, - [2742] = {.lex_state = 216, .external_lex_state = 2}, - [2743] = {.lex_state = 1751, .external_lex_state = 2}, - [2744] = {.lex_state = 1751, .external_lex_state = 2}, - [2745] = {.lex_state = 1751, .external_lex_state = 2}, - [2746] = {.lex_state = 204, .external_lex_state = 2}, - [2747] = {.lex_state = 239, .external_lex_state = 2}, - [2748] = {.lex_state = 241, .external_lex_state = 2}, - [2749] = {.lex_state = 240, .external_lex_state = 2}, - [2750] = {.lex_state = 211, .external_lex_state = 2}, - [2751] = {.lex_state = 240, .external_lex_state = 2}, - [2752] = {.lex_state = 144, .external_lex_state = 2}, - [2753] = {.lex_state = 217, .external_lex_state = 2}, - [2754] = {.lex_state = 195, .external_lex_state = 2}, - [2755] = {.lex_state = 211, .external_lex_state = 2}, - [2756] = {.lex_state = 192, .external_lex_state = 2}, - [2757] = {.lex_state = 211, .external_lex_state = 2}, - [2758] = {.lex_state = 211, .external_lex_state = 2}, - [2759] = {.lex_state = 240, .external_lex_state = 2}, - [2760] = {.lex_state = 192, .external_lex_state = 2}, - [2761] = {.lex_state = 211, .external_lex_state = 2}, - [2762] = {.lex_state = 207, .external_lex_state = 2}, - [2763] = {.lex_state = 211, .external_lex_state = 2}, - [2764] = {.lex_state = 217, .external_lex_state = 2}, - [2765] = {.lex_state = 192, .external_lex_state = 2}, - [2766] = {.lex_state = 207, .external_lex_state = 2}, - [2767] = {.lex_state = 211, .external_lex_state = 2}, - [2768] = {.lex_state = 211, .external_lex_state = 2}, - [2769] = {.lex_state = 211, .external_lex_state = 2}, - [2770] = {.lex_state = 193, .external_lex_state = 2}, - [2771] = {.lex_state = 241, .external_lex_state = 2}, - [2772] = {.lex_state = 211, .external_lex_state = 2}, - [2773] = {.lex_state = 211, .external_lex_state = 2}, - [2774] = {.lex_state = 211, .external_lex_state = 2}, - [2775] = {.lex_state = 240, .external_lex_state = 2}, - [2776] = {.lex_state = 202, .external_lex_state = 2}, - [2777] = {.lex_state = 192, .external_lex_state = 2}, - [2778] = {.lex_state = 191, .external_lex_state = 2}, - [2779] = {.lex_state = 211, .external_lex_state = 2}, - [2780] = {.lex_state = 192, .external_lex_state = 2}, - [2781] = {.lex_state = 240, .external_lex_state = 2}, - [2782] = {.lex_state = 211, .external_lex_state = 2}, - [2783] = {.lex_state = 211, .external_lex_state = 2}, - [2784] = {.lex_state = 211, .external_lex_state = 2}, - [2785] = {.lex_state = 211, .external_lex_state = 2}, - [2786] = {.lex_state = 192, .external_lex_state = 2}, - [2787] = {.lex_state = 149, .external_lex_state = 2}, - [2788] = {.lex_state = 211, .external_lex_state = 2}, - [2789] = {.lex_state = 207, .external_lex_state = 2}, - [2790] = {.lex_state = 250, .external_lex_state = 2}, - [2791] = {.lex_state = 202, .external_lex_state = 2}, - [2792] = {.lex_state = 250, .external_lex_state = 2}, - [2793] = {.lex_state = 240, .external_lex_state = 2}, - [2794] = {.lex_state = 211, .external_lex_state = 2}, - [2795] = {.lex_state = 211, .external_lex_state = 2}, - [2796] = {.lex_state = 44, .external_lex_state = 2}, - [2797] = {.lex_state = 195, .external_lex_state = 2}, - [2798] = {.lex_state = 195, .external_lex_state = 2}, - [2799] = {.lex_state = 195, .external_lex_state = 2}, - [2800] = {.lex_state = 195, .external_lex_state = 2}, - [2801] = {.lex_state = 195, .external_lex_state = 2}, - [2802] = {.lex_state = 195, .external_lex_state = 2}, - [2803] = {.lex_state = 195, .external_lex_state = 2}, - [2804] = {.lex_state = 195, .external_lex_state = 2}, - [2805] = {.lex_state = 195, .external_lex_state = 2}, - [2806] = {.lex_state = 195, .external_lex_state = 2}, - [2807] = {.lex_state = 195, .external_lex_state = 2}, - [2808] = {.lex_state = 195, .external_lex_state = 2}, - [2809] = {.lex_state = 195, .external_lex_state = 2}, - [2810] = {.lex_state = 195, .external_lex_state = 2}, - [2811] = {.lex_state = 195, .external_lex_state = 2}, - [2812] = {.lex_state = 195, .external_lex_state = 2}, - [2813] = {.lex_state = 218, .external_lex_state = 2}, - [2814] = {.lex_state = 231, .external_lex_state = 2}, - [2815] = {.lex_state = 248, .external_lex_state = 2}, - [2816] = {.lex_state = 218, .external_lex_state = 2}, - [2817] = {.lex_state = 203, .external_lex_state = 2}, - [2818] = {.lex_state = 42, .external_lex_state = 2}, - [2819] = {.lex_state = 203, .external_lex_state = 2}, - [2820] = {.lex_state = 203, .external_lex_state = 2}, - [2821] = {.lex_state = 203, .external_lex_state = 2}, - [2822] = {.lex_state = 248, .external_lex_state = 2}, - [2823] = {.lex_state = 203, .external_lex_state = 2}, - [2824] = {.lex_state = 203, .external_lex_state = 2}, - [2825] = {.lex_state = 251, .external_lex_state = 2}, - [2826] = {.lex_state = 43, .external_lex_state = 2}, - [2827] = {.lex_state = 203, .external_lex_state = 2}, + [1390] = {.lex_state = 1792, .external_lex_state = 2}, + [1391] = {.lex_state = 1791, .external_lex_state = 2}, + [1392] = {.lex_state = 1763, .external_lex_state = 2}, + [1393] = {.lex_state = 1738}, + [1394] = {.lex_state = 1756, .external_lex_state = 2}, + [1395] = {.lex_state = 1738}, + [1396] = {.lex_state = 1738}, + [1397] = {.lex_state = 3344}, + [1398] = {.lex_state = 1757, .external_lex_state = 2}, + [1399] = {.lex_state = 1785, .external_lex_state = 2}, + [1400] = {.lex_state = 1703}, + [1401] = {.lex_state = 1785, .external_lex_state = 2}, + [1402] = {.lex_state = 1757, .external_lex_state = 2}, + [1403] = {.lex_state = 1738}, + [1404] = {.lex_state = 1703}, + [1405] = {.lex_state = 1738}, + [1406] = {.lex_state = 3344}, + [1407] = {.lex_state = 1756, .external_lex_state = 2}, + [1408] = {.lex_state = 1791, .external_lex_state = 2}, + [1409] = {.lex_state = 1785, .external_lex_state = 2}, + [1410] = {.lex_state = 10}, + [1411] = {.lex_state = 1703}, + [1412] = {.lex_state = 1783, .external_lex_state = 2}, + [1413] = {.lex_state = 1738}, + [1414] = {.lex_state = 1705}, + [1415] = {.lex_state = 1792, .external_lex_state = 2}, + [1416] = {.lex_state = 1738}, + [1417] = {.lex_state = 1738}, + [1418] = {.lex_state = 1738}, + [1419] = {.lex_state = 1783, .external_lex_state = 2}, + [1420] = {.lex_state = 1783, .external_lex_state = 2}, + [1421] = {.lex_state = 1738}, + [1422] = {.lex_state = 1782, .external_lex_state = 2}, + [1423] = {.lex_state = 1738}, + [1424] = {.lex_state = 1738}, + [1425] = {.lex_state = 10}, + [1426] = {.lex_state = 1783, .external_lex_state = 2}, + [1427] = {.lex_state = 10}, + [1428] = {.lex_state = 10}, + [1429] = {.lex_state = 1738}, + [1430] = {.lex_state = 1738}, + [1431] = {.lex_state = 1792, .external_lex_state = 2}, + [1432] = {.lex_state = 1705}, + [1433] = {.lex_state = 1757, .external_lex_state = 2}, + [1434] = {.lex_state = 1785, .external_lex_state = 2}, + [1435] = {.lex_state = 1785, .external_lex_state = 2}, + [1436] = {.lex_state = 1792, .external_lex_state = 2}, + [1437] = {.lex_state = 1757, .external_lex_state = 2}, + [1438] = {.lex_state = 1703}, + [1439] = {.lex_state = 1784, .external_lex_state = 2}, + [1440] = {.lex_state = 1703}, + [1441] = {.lex_state = 1703}, + [1442] = {.lex_state = 1703}, + [1443] = {.lex_state = 3218}, + [1444] = {.lex_state = 3218}, + [1445] = {.lex_state = 1758, .external_lex_state = 2}, + [1446] = {.lex_state = 1703}, + [1447] = {.lex_state = 1758, .external_lex_state = 2}, + [1448] = {.lex_state = 1707}, + [1449] = {.lex_state = 1792, .external_lex_state = 2}, + [1450] = {.lex_state = 1758, .external_lex_state = 2}, + [1451] = {.lex_state = 1758, .external_lex_state = 2}, + [1452] = {.lex_state = 1783, .external_lex_state = 2}, + [1453] = {.lex_state = 1783, .external_lex_state = 2}, + [1454] = {.lex_state = 1711}, + [1455] = {.lex_state = 1758, .external_lex_state = 2}, + [1456] = {.lex_state = 1758, .external_lex_state = 2}, + [1457] = {.lex_state = 1792, .external_lex_state = 2}, + [1458] = {.lex_state = 1703}, + [1459] = {.lex_state = 1785, .external_lex_state = 2}, + [1460] = {.lex_state = 1758, .external_lex_state = 2}, + [1461] = {.lex_state = 1788, .external_lex_state = 2}, + [1462] = {.lex_state = 1764, .external_lex_state = 2}, + [1463] = {.lex_state = 1780, .external_lex_state = 2}, + [1464] = {.lex_state = 1782, .external_lex_state = 2}, + [1465] = {.lex_state = 1783, .external_lex_state = 2}, + [1466] = {.lex_state = 1783, .external_lex_state = 2}, + [1467] = {.lex_state = 1788, .external_lex_state = 2}, + [1468] = {.lex_state = 1758, .external_lex_state = 2}, + [1469] = {.lex_state = 1788, .external_lex_state = 2}, + [1470] = {.lex_state = 1788, .external_lex_state = 2}, + [1471] = {.lex_state = 1758, .external_lex_state = 2}, + [1472] = {.lex_state = 1758, .external_lex_state = 2}, + [1473] = {.lex_state = 1788, .external_lex_state = 2}, + [1474] = {.lex_state = 1788, .external_lex_state = 2}, + [1475] = {.lex_state = 10}, + [1476] = {.lex_state = 1788, .external_lex_state = 2}, + [1477] = {.lex_state = 1788, .external_lex_state = 2}, + [1478] = {.lex_state = 1738}, + [1479] = {.lex_state = 1788, .external_lex_state = 2}, + [1480] = {.lex_state = 1788, .external_lex_state = 2}, + [1481] = {.lex_state = 10}, + [1482] = {.lex_state = 1738}, + [1483] = {.lex_state = 1783, .external_lex_state = 2}, + [1484] = {.lex_state = 1784, .external_lex_state = 2}, + [1485] = {.lex_state = 1780, .external_lex_state = 2}, + [1486] = {.lex_state = 1738}, + [1487] = {.lex_state = 1788, .external_lex_state = 2}, + [1488] = {.lex_state = 1758, .external_lex_state = 2}, + [1489] = {.lex_state = 1788, .external_lex_state = 2}, + [1490] = {.lex_state = 1713}, + [1491] = {.lex_state = 1703}, + [1492] = {.lex_state = 1783, .external_lex_state = 2}, + [1493] = {.lex_state = 1783, .external_lex_state = 2}, + [1494] = {.lex_state = 1713}, + [1495] = {.lex_state = 1738}, + [1496] = {.lex_state = 1783, .external_lex_state = 2}, + [1497] = {.lex_state = 1788, .external_lex_state = 2}, + [1498] = {.lex_state = 1788, .external_lex_state = 2}, + [1499] = {.lex_state = 1785, .external_lex_state = 2}, + [1500] = {.lex_state = 1703}, + [1501] = {.lex_state = 1788, .external_lex_state = 2}, + [1502] = {.lex_state = 1788, .external_lex_state = 2}, + [1503] = {.lex_state = 1788, .external_lex_state = 2}, + [1504] = {.lex_state = 1758, .external_lex_state = 2}, + [1505] = {.lex_state = 1705}, + [1506] = {.lex_state = 1788, .external_lex_state = 2}, + [1507] = {.lex_state = 1785, .external_lex_state = 2}, + [1508] = {.lex_state = 1738}, + [1509] = {.lex_state = 1788, .external_lex_state = 2}, + [1510] = {.lex_state = 1705}, + [1511] = {.lex_state = 1759, .external_lex_state = 2}, + [1512] = {.lex_state = 1788, .external_lex_state = 2}, + [1513] = {.lex_state = 1788, .external_lex_state = 2}, + [1514] = {.lex_state = 1788, .external_lex_state = 2}, + [1515] = {.lex_state = 1788, .external_lex_state = 2}, + [1516] = {.lex_state = 1703}, + [1517] = {.lex_state = 1715}, + [1518] = {.lex_state = 1788, .external_lex_state = 2}, + [1519] = {.lex_state = 1703}, + [1520] = {.lex_state = 1703}, + [1521] = {.lex_state = 1788, .external_lex_state = 2}, + [1522] = {.lex_state = 1703}, + [1523] = {.lex_state = 1703}, + [1524] = {.lex_state = 1738}, + [1525] = {.lex_state = 1788, .external_lex_state = 2}, + [1526] = {.lex_state = 1788, .external_lex_state = 2}, + [1527] = {.lex_state = 1709}, + [1528] = {.lex_state = 1781, .external_lex_state = 2}, + [1529] = {.lex_state = 1788, .external_lex_state = 2}, + [1530] = {.lex_state = 1781, .external_lex_state = 2}, + [1531] = {.lex_state = 1788, .external_lex_state = 2}, + [1532] = {.lex_state = 1780, .external_lex_state = 2}, + [1533] = {.lex_state = 1785, .external_lex_state = 2}, + [1534] = {.lex_state = 1781, .external_lex_state = 2}, + [1535] = {.lex_state = 1781, .external_lex_state = 2}, + [1536] = {.lex_state = 1788, .external_lex_state = 2}, + [1537] = {.lex_state = 1788, .external_lex_state = 2}, + [1538] = {.lex_state = 1738}, + [1539] = {.lex_state = 1788, .external_lex_state = 2}, + [1540] = {.lex_state = 1781, .external_lex_state = 2}, + [1541] = {.lex_state = 1780, .external_lex_state = 2}, + [1542] = {.lex_state = 1785, .external_lex_state = 2}, + [1543] = {.lex_state = 1788, .external_lex_state = 2}, + [1544] = {.lex_state = 1788, .external_lex_state = 2}, + [1545] = {.lex_state = 1707}, + [1546] = {.lex_state = 1785, .external_lex_state = 2}, + [1547] = {.lex_state = 1788, .external_lex_state = 2}, + [1548] = {.lex_state = 1781, .external_lex_state = 2}, + [1549] = {.lex_state = 1788, .external_lex_state = 2}, + [1550] = {.lex_state = 1717}, + [1551] = {.lex_state = 1788, .external_lex_state = 2}, + [1552] = {.lex_state = 1711}, + [1553] = {.lex_state = 1788, .external_lex_state = 2}, + [1554] = {.lex_state = 1788, .external_lex_state = 2}, + [1555] = {.lex_state = 1759, .external_lex_state = 2}, + [1556] = {.lex_state = 7}, + [1557] = {.lex_state = 1781, .external_lex_state = 2}, + [1558] = {.lex_state = 1781, .external_lex_state = 2}, + [1559] = {.lex_state = 1781, .external_lex_state = 2}, + [1560] = {.lex_state = 1715}, + [1561] = {.lex_state = 1788, .external_lex_state = 2}, + [1562] = {.lex_state = 1788, .external_lex_state = 2}, + [1563] = {.lex_state = 1788, .external_lex_state = 2}, + [1564] = {.lex_state = 1788, .external_lex_state = 2}, + [1565] = {.lex_state = 1781, .external_lex_state = 2}, + [1566] = {.lex_state = 1788, .external_lex_state = 2}, + [1567] = {.lex_state = 1788, .external_lex_state = 2}, + [1568] = {.lex_state = 1781, .external_lex_state = 2}, + [1569] = {.lex_state = 1715}, + [1570] = {.lex_state = 1781, .external_lex_state = 2}, + [1571] = {.lex_state = 7}, + [1572] = {.lex_state = 1781, .external_lex_state = 2}, + [1573] = {.lex_state = 1764, .external_lex_state = 2}, + [1574] = {.lex_state = 1703}, + [1575] = {.lex_state = 1788, .external_lex_state = 2}, + [1576] = {.lex_state = 1781, .external_lex_state = 2}, + [1577] = {.lex_state = 1788, .external_lex_state = 2}, + [1578] = {.lex_state = 1715}, + [1579] = {.lex_state = 1707}, + [1580] = {.lex_state = 1738}, + [1581] = {.lex_state = 1707}, + [1582] = {.lex_state = 1715}, + [1583] = {.lex_state = 1736}, + [1584] = {.lex_state = 7}, + [1585] = {.lex_state = 1736}, + [1586] = {.lex_state = 1707}, + [1587] = {.lex_state = 1738}, + [1588] = {.lex_state = 1760, .external_lex_state = 2}, + [1589] = {.lex_state = 7}, + [1590] = {.lex_state = 1760, .external_lex_state = 2}, + [1591] = {.lex_state = 1788, .external_lex_state = 2}, + [1592] = {.lex_state = 1781, .external_lex_state = 2}, + [1593] = {.lex_state = 1739}, + [1594] = {.lex_state = 1781, .external_lex_state = 2}, + [1595] = {.lex_state = 1750, .external_lex_state = 2}, + [1596] = {.lex_state = 1713}, + [1597] = {.lex_state = 1739}, + [1598] = {.lex_state = 1800, .external_lex_state = 2}, + [1599] = {.lex_state = 1739}, + [1600] = {.lex_state = 7}, + [1601] = {.lex_state = 1750, .external_lex_state = 2}, + [1602] = {.lex_state = 1761, .external_lex_state = 2}, + [1603] = {.lex_state = 1781, .external_lex_state = 2}, + [1604] = {.lex_state = 1800, .external_lex_state = 2}, + [1605] = {.lex_state = 1781, .external_lex_state = 2}, + [1606] = {.lex_state = 1761, .external_lex_state = 2}, + [1607] = {.lex_state = 1800, .external_lex_state = 2}, + [1608] = {.lex_state = 1761, .external_lex_state = 2}, + [1609] = {.lex_state = 1781, .external_lex_state = 2}, + [1610] = {.lex_state = 1781, .external_lex_state = 2}, + [1611] = {.lex_state = 1739}, + [1612] = {.lex_state = 1786, .external_lex_state = 2}, + [1613] = {.lex_state = 1786, .external_lex_state = 2}, + [1614] = {.lex_state = 1739}, + [1615] = {.lex_state = 1781, .external_lex_state = 2}, + [1616] = {.lex_state = 1761, .external_lex_state = 2}, + [1617] = {.lex_state = 1750, .external_lex_state = 2}, + [1618] = {.lex_state = 1773, .external_lex_state = 2}, + [1619] = {.lex_state = 1739}, + [1620] = {.lex_state = 1739}, + [1621] = {.lex_state = 1788, .external_lex_state = 2}, + [1622] = {.lex_state = 1787, .external_lex_state = 2}, + [1623] = {.lex_state = 1760, .external_lex_state = 2}, + [1624] = {.lex_state = 1788, .external_lex_state = 2}, + [1625] = {.lex_state = 1750, .external_lex_state = 2}, + [1626] = {.lex_state = 1761, .external_lex_state = 2}, + [1627] = {.lex_state = 1739}, + [1628] = {.lex_state = 1739}, + [1629] = {.lex_state = 1789, .external_lex_state = 2}, + [1630] = {.lex_state = 1739}, + [1631] = {.lex_state = 1738}, + [1632] = {.lex_state = 1739}, + [1633] = {.lex_state = 1739}, + [1634] = {.lex_state = 1800, .external_lex_state = 2}, + [1635] = {.lex_state = 1719}, + [1636] = {.lex_state = 1739}, + [1637] = {.lex_state = 1719}, + [1638] = {.lex_state = 1781, .external_lex_state = 2}, + [1639] = {.lex_state = 1781, .external_lex_state = 2}, + [1640] = {.lex_state = 1800, .external_lex_state = 2}, + [1641] = {.lex_state = 1713}, + [1642] = {.lex_state = 1738}, + [1643] = {.lex_state = 1736}, + [1644] = {.lex_state = 1707}, + [1645] = {.lex_state = 1715}, + [1646] = {.lex_state = 1739}, + [1647] = {.lex_state = 1736}, + [1648] = {.lex_state = 1739}, + [1649] = {.lex_state = 7}, + [1650] = {.lex_state = 1781, .external_lex_state = 2}, + [1651] = {.lex_state = 1750, .external_lex_state = 2}, + [1652] = {.lex_state = 1739}, + [1653] = {.lex_state = 1781, .external_lex_state = 2}, + [1654] = {.lex_state = 1781, .external_lex_state = 2}, + [1655] = {.lex_state = 1786, .external_lex_state = 2}, + [1656] = {.lex_state = 1761, .external_lex_state = 2}, + [1657] = {.lex_state = 1760, .external_lex_state = 2}, + [1658] = {.lex_state = 1786, .external_lex_state = 2}, + [1659] = {.lex_state = 1786, .external_lex_state = 2}, + [1660] = {.lex_state = 1739}, + [1661] = {.lex_state = 1761, .external_lex_state = 2}, + [1662] = {.lex_state = 1786, .external_lex_state = 2}, + [1663] = {.lex_state = 1739}, + [1664] = {.lex_state = 1761, .external_lex_state = 2}, + [1665] = {.lex_state = 1761, .external_lex_state = 2}, + [1666] = {.lex_state = 1781, .external_lex_state = 2}, + [1667] = {.lex_state = 1739}, + [1668] = {.lex_state = 1781, .external_lex_state = 2}, + [1669] = {.lex_state = 1707}, + [1670] = {.lex_state = 1781, .external_lex_state = 2}, + [1671] = {.lex_state = 1781, .external_lex_state = 2}, + [1672] = {.lex_state = 1781, .external_lex_state = 2}, + [1673] = {.lex_state = 1736}, + [1674] = {.lex_state = 1781, .external_lex_state = 2}, + [1675] = {.lex_state = 1779, .external_lex_state = 2}, + [1676] = {.lex_state = 1788, .external_lex_state = 2}, + [1677] = {.lex_state = 1750, .external_lex_state = 2}, + [1678] = {.lex_state = 1786, .external_lex_state = 2}, + [1679] = {.lex_state = 1786, .external_lex_state = 2}, + [1680] = {.lex_state = 1786, .external_lex_state = 2}, + [1681] = {.lex_state = 1717}, + [1682] = {.lex_state = 1786, .external_lex_state = 2}, + [1683] = {.lex_state = 1761, .external_lex_state = 2}, + [1684] = {.lex_state = 1779, .external_lex_state = 2}, + [1685] = {.lex_state = 1788, .external_lex_state = 2}, + [1686] = {.lex_state = 1788, .external_lex_state = 2}, + [1687] = {.lex_state = 1761, .external_lex_state = 2}, + [1688] = {.lex_state = 1773, .external_lex_state = 2}, + [1689] = {.lex_state = 1789, .external_lex_state = 2}, + [1690] = {.lex_state = 1721}, + [1691] = {.lex_state = 1750, .external_lex_state = 2}, + [1692] = {.lex_state = 1793, .external_lex_state = 2}, + [1693] = {.lex_state = 1787, .external_lex_state = 2}, + [1694] = {.lex_state = 1736}, + [1695] = {.lex_state = 1721}, + [1696] = {.lex_state = 1739}, + [1697] = {.lex_state = 1801, .external_lex_state = 2}, + [1698] = {.lex_state = 1800, .external_lex_state = 2}, + [1699] = {.lex_state = 1721}, + [1700] = {.lex_state = 1800, .external_lex_state = 2}, + [1701] = {.lex_state = 1721}, + [1702] = {.lex_state = 1801, .external_lex_state = 2}, + [1703] = {.lex_state = 1801, .external_lex_state = 2}, + [1704] = {.lex_state = 1801, .external_lex_state = 2}, + [1705] = {.lex_state = 1774, .external_lex_state = 2}, + [1706] = {.lex_state = 1801, .external_lex_state = 2}, + [1707] = {.lex_state = 1750, .external_lex_state = 2}, + [1708] = {.lex_state = 1750, .external_lex_state = 2}, + [1709] = {.lex_state = 1800, .external_lex_state = 2}, + [1710] = {.lex_state = 1715}, + [1711] = {.lex_state = 1800, .external_lex_state = 2}, + [1712] = {.lex_state = 1739}, + [1713] = {.lex_state = 1761, .external_lex_state = 2}, + [1714] = {.lex_state = 1715}, + [1715] = {.lex_state = 1739}, + [1716] = {.lex_state = 1761, .external_lex_state = 2}, + [1717] = {.lex_state = 1715}, + [1718] = {.lex_state = 1750, .external_lex_state = 2}, + [1719] = {.lex_state = 1776, .external_lex_state = 2}, + [1720] = {.lex_state = 1761, .external_lex_state = 2}, + [1721] = {.lex_state = 1776, .external_lex_state = 2}, + [1722] = {.lex_state = 1715}, + [1723] = {.lex_state = 1761, .external_lex_state = 2}, + [1724] = {.lex_state = 1736}, + [1725] = {.lex_state = 1736}, + [1726] = {.lex_state = 1736}, + [1727] = {.lex_state = 1750, .external_lex_state = 2}, + [1728] = {.lex_state = 1707}, + [1729] = {.lex_state = 1736}, + [1730] = {.lex_state = 1750, .external_lex_state = 2}, + [1731] = {.lex_state = 1774, .external_lex_state = 2}, + [1732] = {.lex_state = 1750, .external_lex_state = 2}, + [1733] = {.lex_state = 1739}, + [1734] = {.lex_state = 1777, .external_lex_state = 2}, + [1735] = {.lex_state = 1750, .external_lex_state = 2}, + [1736] = {.lex_state = 1739}, + [1737] = {.lex_state = 1739}, + [1738] = {.lex_state = 1736}, + [1739] = {.lex_state = 1739}, + [1740] = {.lex_state = 1736}, + [1741] = {.lex_state = 1739}, + [1742] = {.lex_state = 1736}, + [1743] = {.lex_state = 1707}, + [1744] = {.lex_state = 1736}, + [1745] = {.lex_state = 1793, .external_lex_state = 2}, + [1746] = {.lex_state = 1786, .external_lex_state = 2}, + [1747] = {.lex_state = 1786, .external_lex_state = 2}, + [1748] = {.lex_state = 1797, .external_lex_state = 2}, + [1749] = {.lex_state = 1709}, + [1750] = {.lex_state = 7}, + [1751] = {.lex_state = 1797, .external_lex_state = 2}, + [1752] = {.lex_state = 7}, + [1753] = {.lex_state = 1797, .external_lex_state = 2}, + [1754] = {.lex_state = 1800, .external_lex_state = 2}, + [1755] = {.lex_state = 1761, .external_lex_state = 2}, + [1756] = {.lex_state = 1707}, + [1757] = {.lex_state = 1761, .external_lex_state = 2}, + [1758] = {.lex_state = 1761, .external_lex_state = 2}, + [1759] = {.lex_state = 1778, .external_lex_state = 2}, + [1760] = {.lex_state = 1778, .external_lex_state = 2}, + [1761] = {.lex_state = 1778, .external_lex_state = 2}, + [1762] = {.lex_state = 1721}, + [1763] = {.lex_state = 1739}, + [1764] = {.lex_state = 1778, .external_lex_state = 2}, + [1765] = {.lex_state = 1778, .external_lex_state = 2}, + [1766] = {.lex_state = 1778, .external_lex_state = 2}, + [1767] = {.lex_state = 1778, .external_lex_state = 2}, + [1768] = {.lex_state = 257, .external_lex_state = 2}, + [1769] = {.lex_state = 257, .external_lex_state = 2}, + [1770] = {.lex_state = 1797, .external_lex_state = 2}, + [1771] = {.lex_state = 1778, .external_lex_state = 2}, + [1772] = {.lex_state = 1778, .external_lex_state = 2}, + [1773] = {.lex_state = 1774, .external_lex_state = 2}, + [1774] = {.lex_state = 1801, .external_lex_state = 2}, + [1775] = {.lex_state = 1778, .external_lex_state = 2}, + [1776] = {.lex_state = 1778, .external_lex_state = 2}, + [1777] = {.lex_state = 1778, .external_lex_state = 2}, + [1778] = {.lex_state = 1778, .external_lex_state = 2}, + [1779] = {.lex_state = 1778, .external_lex_state = 2}, + [1780] = {.lex_state = 1778, .external_lex_state = 2}, + [1781] = {.lex_state = 1778, .external_lex_state = 2}, + [1782] = {.lex_state = 1778, .external_lex_state = 2}, + [1783] = {.lex_state = 1776, .external_lex_state = 2}, + [1784] = {.lex_state = 1778, .external_lex_state = 2}, + [1785] = {.lex_state = 1778, .external_lex_state = 2}, + [1786] = {.lex_state = 1778, .external_lex_state = 2}, + [1787] = {.lex_state = 1778, .external_lex_state = 2}, + [1788] = {.lex_state = 1778, .external_lex_state = 2}, + [1789] = {.lex_state = 1778, .external_lex_state = 2}, + [1790] = {.lex_state = 1778, .external_lex_state = 2}, + [1791] = {.lex_state = 1778, .external_lex_state = 2}, + [1792] = {.lex_state = 1778, .external_lex_state = 2}, + [1793] = {.lex_state = 1778, .external_lex_state = 2}, + [1794] = {.lex_state = 1778, .external_lex_state = 2}, + [1795] = {.lex_state = 1778, .external_lex_state = 2}, + [1796] = {.lex_state = 1778, .external_lex_state = 2}, + [1797] = {.lex_state = 1778, .external_lex_state = 2}, + [1798] = {.lex_state = 1777, .external_lex_state = 2}, + [1799] = {.lex_state = 1776, .external_lex_state = 2}, + [1800] = {.lex_state = 1736}, + [1801] = {.lex_state = 1778, .external_lex_state = 2}, + [1802] = {.lex_state = 1801, .external_lex_state = 2}, + [1803] = {.lex_state = 1778, .external_lex_state = 2}, + [1804] = {.lex_state = 1778, .external_lex_state = 2}, + [1805] = {.lex_state = 1739}, + [1806] = {.lex_state = 1801, .external_lex_state = 2}, + [1807] = {.lex_state = 1801, .external_lex_state = 2}, + [1808] = {.lex_state = 1778, .external_lex_state = 2}, + [1809] = {.lex_state = 1778, .external_lex_state = 2}, + [1810] = {.lex_state = 1778, .external_lex_state = 2}, + [1811] = {.lex_state = 1778, .external_lex_state = 2}, + [1812] = {.lex_state = 1778, .external_lex_state = 2}, + [1813] = {.lex_state = 1778, .external_lex_state = 2}, + [1814] = {.lex_state = 1778, .external_lex_state = 2}, + [1815] = {.lex_state = 1778, .external_lex_state = 2}, + [1816] = {.lex_state = 1778, .external_lex_state = 2}, + [1817] = {.lex_state = 1778, .external_lex_state = 2}, + [1818] = {.lex_state = 1739}, + [1819] = {.lex_state = 1739}, + [1820] = {.lex_state = 1778, .external_lex_state = 2}, + [1821] = {.lex_state = 1793, .external_lex_state = 2}, + [1822] = {.lex_state = 1778, .external_lex_state = 2}, + [1823] = {.lex_state = 1778, .external_lex_state = 2}, + [1824] = {.lex_state = 1778, .external_lex_state = 2}, + [1825] = {.lex_state = 1778, .external_lex_state = 2}, + [1826] = {.lex_state = 1778, .external_lex_state = 2}, + [1827] = {.lex_state = 1778, .external_lex_state = 2}, + [1828] = {.lex_state = 1778, .external_lex_state = 2}, + [1829] = {.lex_state = 1778, .external_lex_state = 2}, + [1830] = {.lex_state = 1778, .external_lex_state = 2}, + [1831] = {.lex_state = 1721}, + [1832] = {.lex_state = 1778, .external_lex_state = 2}, + [1833] = {.lex_state = 1778, .external_lex_state = 2}, + [1834] = {.lex_state = 1778, .external_lex_state = 2}, + [1835] = {.lex_state = 1778, .external_lex_state = 2}, + [1836] = {.lex_state = 1778, .external_lex_state = 2}, + [1837] = {.lex_state = 1778, .external_lex_state = 2}, + [1838] = {.lex_state = 1778, .external_lex_state = 2}, + [1839] = {.lex_state = 1778, .external_lex_state = 2}, + [1840] = {.lex_state = 1778, .external_lex_state = 2}, + [1841] = {.lex_state = 1778, .external_lex_state = 2}, + [1842] = {.lex_state = 1778, .external_lex_state = 2}, + [1843] = {.lex_state = 1788, .external_lex_state = 2}, + [1844] = {.lex_state = 1797, .external_lex_state = 2}, + [1845] = {.lex_state = 51, .external_lex_state = 2}, + [1846] = {.lex_state = 1778, .external_lex_state = 2}, + [1847] = {.lex_state = 1778, .external_lex_state = 2}, + [1848] = {.lex_state = 51, .external_lex_state = 2}, + [1849] = {.lex_state = 1801, .external_lex_state = 2}, + [1850] = {.lex_state = 1778, .external_lex_state = 2}, + [1851] = {.lex_state = 1788, .external_lex_state = 2}, + [1852] = {.lex_state = 1788, .external_lex_state = 2}, + [1853] = {.lex_state = 1719}, + [1854] = {.lex_state = 1778, .external_lex_state = 2}, + [1855] = {.lex_state = 1793, .external_lex_state = 2}, + [1856] = {.lex_state = 51, .external_lex_state = 2}, + [1857] = {.lex_state = 1778, .external_lex_state = 2}, + [1858] = {.lex_state = 7}, + [1859] = {.lex_state = 7}, + [1860] = {.lex_state = 1739}, + [1861] = {.lex_state = 1778, .external_lex_state = 2}, + [1862] = {.lex_state = 1778, .external_lex_state = 2}, + [1863] = {.lex_state = 1778, .external_lex_state = 2}, + [1864] = {.lex_state = 1778, .external_lex_state = 2}, + [1865] = {.lex_state = 1707}, + [1866] = {.lex_state = 1778, .external_lex_state = 2}, + [1867] = {.lex_state = 1778, .external_lex_state = 2}, + [1868] = {.lex_state = 1739}, + [1869] = {.lex_state = 1778, .external_lex_state = 2}, + [1870] = {.lex_state = 1778, .external_lex_state = 2}, + [1871] = {.lex_state = 1750, .external_lex_state = 2}, + [1872] = {.lex_state = 257, .external_lex_state = 2}, + [1873] = {.lex_state = 257, .external_lex_state = 2}, + [1874] = {.lex_state = 257, .external_lex_state = 2}, + [1875] = {.lex_state = 257, .external_lex_state = 2}, + [1876] = {.lex_state = 257, .external_lex_state = 2}, + [1877] = {.lex_state = 257, .external_lex_state = 2}, + [1878] = {.lex_state = 1719}, + [1879] = {.lex_state = 1707}, + [1880] = {.lex_state = 1739}, + [1881] = {.lex_state = 1778, .external_lex_state = 2}, + [1882] = {.lex_state = 257, .external_lex_state = 2}, + [1883] = {.lex_state = 1739}, + [1884] = {.lex_state = 1774, .external_lex_state = 2}, + [1885] = {.lex_state = 1750, .external_lex_state = 2}, + [1886] = {.lex_state = 257, .external_lex_state = 2}, + [1887] = {.lex_state = 257, .external_lex_state = 2}, + [1888] = {.lex_state = 257, .external_lex_state = 2}, + [1889] = {.lex_state = 1797, .external_lex_state = 2}, + [1890] = {.lex_state = 1778, .external_lex_state = 2}, + [1891] = {.lex_state = 1736}, + [1892] = {.lex_state = 1778, .external_lex_state = 2}, + [1893] = {.lex_state = 1778, .external_lex_state = 2}, + [1894] = {.lex_state = 1778, .external_lex_state = 2}, + [1895] = {.lex_state = 1736}, + [1896] = {.lex_state = 1778, .external_lex_state = 2}, + [1897] = {.lex_state = 1778, .external_lex_state = 2}, + [1898] = {.lex_state = 1739}, + [1899] = {.lex_state = 1778, .external_lex_state = 2}, + [1900] = {.lex_state = 1721}, + [1901] = {.lex_state = 1778, .external_lex_state = 2}, + [1902] = {.lex_state = 1778, .external_lex_state = 2}, + [1903] = {.lex_state = 1778, .external_lex_state = 2}, + [1904] = {.lex_state = 1778, .external_lex_state = 2}, + [1905] = {.lex_state = 1778, .external_lex_state = 2}, + [1906] = {.lex_state = 1778, .external_lex_state = 2}, + [1907] = {.lex_state = 1778, .external_lex_state = 2}, + [1908] = {.lex_state = 1778, .external_lex_state = 2}, + [1909] = {.lex_state = 1721}, + [1910] = {.lex_state = 1778, .external_lex_state = 2}, + [1911] = {.lex_state = 1778, .external_lex_state = 2}, + [1912] = {.lex_state = 1778, .external_lex_state = 2}, + [1913] = {.lex_state = 1736}, + [1914] = {.lex_state = 1707}, + [1915] = {.lex_state = 1707}, + [1916] = {.lex_state = 1736}, + [1917] = {.lex_state = 1778, .external_lex_state = 2}, + [1918] = {.lex_state = 1778, .external_lex_state = 2}, + [1919] = {.lex_state = 1778, .external_lex_state = 2}, + [1920] = {.lex_state = 1778, .external_lex_state = 2}, + [1921] = {.lex_state = 1778, .external_lex_state = 2}, + [1922] = {.lex_state = 1778, .external_lex_state = 2}, + [1923] = {.lex_state = 1778, .external_lex_state = 2}, + [1924] = {.lex_state = 1739}, + [1925] = {.lex_state = 1778, .external_lex_state = 2}, + [1926] = {.lex_state = 1721}, + [1927] = {.lex_state = 54, .external_lex_state = 2}, + [1928] = {.lex_state = 1778, .external_lex_state = 2}, + [1929] = {.lex_state = 1721}, + [1930] = {.lex_state = 1778, .external_lex_state = 2}, + [1931] = {.lex_state = 1778, .external_lex_state = 2}, + [1932] = {.lex_state = 1778, .external_lex_state = 2}, + [1933] = {.lex_state = 1778, .external_lex_state = 2}, + [1934] = {.lex_state = 1778, .external_lex_state = 2}, + [1935] = {.lex_state = 1778, .external_lex_state = 2}, + [1936] = {.lex_state = 1778, .external_lex_state = 2}, + [1937] = {.lex_state = 1778, .external_lex_state = 2}, + [1938] = {.lex_state = 1778, .external_lex_state = 2}, + [1939] = {.lex_state = 1778, .external_lex_state = 2}, + [1940] = {.lex_state = 1778, .external_lex_state = 2}, + [1941] = {.lex_state = 1778, .external_lex_state = 2}, + [1942] = {.lex_state = 1739}, + [1943] = {.lex_state = 1739}, + [1944] = {.lex_state = 1778, .external_lex_state = 2}, + [1945] = {.lex_state = 1736}, + [1946] = {.lex_state = 1778, .external_lex_state = 2}, + [1947] = {.lex_state = 1778, .external_lex_state = 2}, + [1948] = {.lex_state = 1778, .external_lex_state = 2}, + [1949] = {.lex_state = 1778, .external_lex_state = 2}, + [1950] = {.lex_state = 1778, .external_lex_state = 2}, + [1951] = {.lex_state = 1736}, + [1952] = {.lex_state = 1778, .external_lex_state = 2}, + [1953] = {.lex_state = 1778, .external_lex_state = 2}, + [1954] = {.lex_state = 1778, .external_lex_state = 2}, + [1955] = {.lex_state = 1778, .external_lex_state = 2}, + [1956] = {.lex_state = 1778, .external_lex_state = 2}, + [1957] = {.lex_state = 1778, .external_lex_state = 2}, + [1958] = {.lex_state = 1778, .external_lex_state = 2}, + [1959] = {.lex_state = 1778, .external_lex_state = 2}, + [1960] = {.lex_state = 54, .external_lex_state = 2}, + [1961] = {.lex_state = 1778, .external_lex_state = 2}, + [1962] = {.lex_state = 1778, .external_lex_state = 2}, + [1963] = {.lex_state = 1778, .external_lex_state = 2}, + [1964] = {.lex_state = 1778, .external_lex_state = 2}, + [1965] = {.lex_state = 1778, .external_lex_state = 2}, + [1966] = {.lex_state = 1778, .external_lex_state = 2}, + [1967] = {.lex_state = 54, .external_lex_state = 2}, + [1968] = {.lex_state = 1736}, + [1969] = {.lex_state = 1721}, + [1970] = {.lex_state = 1778, .external_lex_state = 2}, + [1971] = {.lex_state = 7}, + [1972] = {.lex_state = 1778, .external_lex_state = 2}, + [1973] = {.lex_state = 1707}, + [1974] = {.lex_state = 1778, .external_lex_state = 2}, + [1975] = {.lex_state = 1778, .external_lex_state = 2}, + [1976] = {.lex_state = 1778, .external_lex_state = 2}, + [1977] = {.lex_state = 1736}, + [1978] = {.lex_state = 1778, .external_lex_state = 2}, + [1979] = {.lex_state = 1778, .external_lex_state = 2}, + [1980] = {.lex_state = 7}, + [1981] = {.lex_state = 7}, + [1982] = {.lex_state = 1778, .external_lex_state = 2}, + [1983] = {.lex_state = 1778, .external_lex_state = 2}, + [1984] = {.lex_state = 1778, .external_lex_state = 2}, + [1985] = {.lex_state = 1736}, + [1986] = {.lex_state = 1778, .external_lex_state = 2}, + [1987] = {.lex_state = 1778, .external_lex_state = 2}, + [1988] = {.lex_state = 1736}, + [1989] = {.lex_state = 1736}, + [1990] = {.lex_state = 1778, .external_lex_state = 2}, + [1991] = {.lex_state = 1778, .external_lex_state = 2}, + [1992] = {.lex_state = 1736}, + [1993] = {.lex_state = 1778, .external_lex_state = 2}, + [1994] = {.lex_state = 1778, .external_lex_state = 2}, + [1995] = {.lex_state = 1725}, + [1996] = {.lex_state = 1778, .external_lex_state = 2}, + [1997] = {.lex_state = 1778, .external_lex_state = 2}, + [1998] = {.lex_state = 1723}, + [1999] = {.lex_state = 1736}, + [2000] = {.lex_state = 1736}, + [2001] = {.lex_state = 1778, .external_lex_state = 2}, + [2002] = {.lex_state = 1736}, + [2003] = {.lex_state = 1736}, + [2004] = {.lex_state = 1736}, + [2005] = {.lex_state = 1721}, + [2006] = {.lex_state = 1707}, + [2007] = {.lex_state = 1778, .external_lex_state = 2}, + [2008] = {.lex_state = 1736}, + [2009] = {.lex_state = 1736}, + [2010] = {.lex_state = 1736}, + [2011] = {.lex_state = 1736}, + [2012] = {.lex_state = 1736}, + [2013] = {.lex_state = 1736}, + [2014] = {.lex_state = 1736}, + [2015] = {.lex_state = 1707}, + [2016] = {.lex_state = 1736}, + [2017] = {.lex_state = 1736}, + [2018] = {.lex_state = 1778, .external_lex_state = 2}, + [2019] = {.lex_state = 1707}, + [2020] = {.lex_state = 1778, .external_lex_state = 2}, + [2021] = {.lex_state = 1778, .external_lex_state = 2}, + [2022] = {.lex_state = 1778, .external_lex_state = 2}, + [2023] = {.lex_state = 1778, .external_lex_state = 2}, + [2024] = {.lex_state = 1778, .external_lex_state = 2}, + [2025] = {.lex_state = 54, .external_lex_state = 2}, + [2026] = {.lex_state = 54, .external_lex_state = 2}, + [2027] = {.lex_state = 1707}, + [2028] = {.lex_state = 54, .external_lex_state = 2}, + [2029] = {.lex_state = 1707}, + [2030] = {.lex_state = 1707}, + [2031] = {.lex_state = 1707}, + [2032] = {.lex_state = 1739}, + [2033] = {.lex_state = 1736}, + [2034] = {.lex_state = 1739}, + [2035] = {.lex_state = 1736}, + [2036] = {.lex_state = 14, .external_lex_state = 2}, + [2037] = {.lex_state = 1739}, + [2038] = {.lex_state = 1707}, + [2039] = {.lex_state = 14, .external_lex_state = 2}, + [2040] = {.lex_state = 1707}, + [2041] = {.lex_state = 1707}, + [2042] = {.lex_state = 1739}, + [2043] = {.lex_state = 1707}, + [2044] = {.lex_state = 1739}, + [2045] = {.lex_state = 1707}, + [2046] = {.lex_state = 1707}, + [2047] = {.lex_state = 1707}, + [2048] = {.lex_state = 1736}, + [2049] = {.lex_state = 1707}, + [2050] = {.lex_state = 1707}, + [2051] = {.lex_state = 1736}, + [2052] = {.lex_state = 1739}, + [2053] = {.lex_state = 1707}, + [2054] = {.lex_state = 1707}, + [2055] = {.lex_state = 1707}, + [2056] = {.lex_state = 1707}, + [2057] = {.lex_state = 1707}, + [2058] = {.lex_state = 1736}, + [2059] = {.lex_state = 1739}, + [2060] = {.lex_state = 1736}, + [2061] = {.lex_state = 1739}, + [2062] = {.lex_state = 1736}, + [2063] = {.lex_state = 1707}, + [2064] = {.lex_state = 1739}, + [2065] = {.lex_state = 1736}, + [2066] = {.lex_state = 1707}, + [2067] = {.lex_state = 1736}, + [2068] = {.lex_state = 1707}, + [2069] = {.lex_state = 1739}, + [2070] = {.lex_state = 1707}, + [2071] = {.lex_state = 1736}, + [2072] = {.lex_state = 1707}, + [2073] = {.lex_state = 1707}, + [2074] = {.lex_state = 1707}, + [2075] = {.lex_state = 1739}, + [2076] = {.lex_state = 1707}, + [2077] = {.lex_state = 1707}, + [2078] = {.lex_state = 1707}, + [2079] = {.lex_state = 1727}, + [2080] = {.lex_state = 1736}, + [2081] = {.lex_state = 1736}, + [2082] = {.lex_state = 1707}, + [2083] = {.lex_state = 1707}, + [2084] = {.lex_state = 1736}, + [2085] = {.lex_state = 1736}, + [2086] = {.lex_state = 1736}, + [2087] = {.lex_state = 1725}, + [2088] = {.lex_state = 1707}, + [2089] = {.lex_state = 1707}, + [2090] = {.lex_state = 1736}, + [2091] = {.lex_state = 1736}, + [2092] = {.lex_state = 1736}, + [2093] = {.lex_state = 1736}, + [2094] = {.lex_state = 1707}, + [2095] = {.lex_state = 1739}, + [2096] = {.lex_state = 1736}, + [2097] = {.lex_state = 1736}, + [2098] = {.lex_state = 1707}, + [2099] = {.lex_state = 1707}, + [2100] = {.lex_state = 1707}, + [2101] = {.lex_state = 1707}, + [2102] = {.lex_state = 1736}, + [2103] = {.lex_state = 1727}, + [2104] = {.lex_state = 7}, + [2105] = {.lex_state = 1707}, + [2106] = {.lex_state = 1739}, + [2107] = {.lex_state = 1739}, + [2108] = {.lex_state = 1707}, + [2109] = {.lex_state = 14, .external_lex_state = 2}, + [2110] = {.lex_state = 14, .external_lex_state = 2}, + [2111] = {.lex_state = 1739}, + [2112] = {.lex_state = 7}, + [2113] = {.lex_state = 1736}, + [2114] = {.lex_state = 1739}, + [2115] = {.lex_state = 1739}, + [2116] = {.lex_state = 1707}, + [2117] = {.lex_state = 1736}, + [2118] = {.lex_state = 1707}, + [2119] = {.lex_state = 1707}, + [2120] = {.lex_state = 1739}, + [2121] = {.lex_state = 1707}, + [2122] = {.lex_state = 1739}, + [2123] = {.lex_state = 1736}, + [2124] = {.lex_state = 1739}, + [2125] = {.lex_state = 1736}, + [2126] = {.lex_state = 1736}, + [2127] = {.lex_state = 1707}, + [2128] = {.lex_state = 1707}, + [2129] = {.lex_state = 1739}, + [2130] = {.lex_state = 1707}, + [2131] = {.lex_state = 1739}, + [2132] = {.lex_state = 1707}, + [2133] = {.lex_state = 1736}, + [2134] = {.lex_state = 1739}, + [2135] = {.lex_state = 1739}, + [2136] = {.lex_state = 1707}, + [2137] = {.lex_state = 1707}, + [2138] = {.lex_state = 1736}, + [2139] = {.lex_state = 1736}, + [2140] = {.lex_state = 1736}, + [2141] = {.lex_state = 1736}, + [2142] = {.lex_state = 1723}, + [2143] = {.lex_state = 1707}, + [2144] = {.lex_state = 1736}, + [2145] = {.lex_state = 1739}, + [2146] = {.lex_state = 1707}, + [2147] = {.lex_state = 1707}, + [2148] = {.lex_state = 1739}, + [2149] = {.lex_state = 1707}, + [2150] = {.lex_state = 1736}, + [2151] = {.lex_state = 1707}, + [2152] = {.lex_state = 1707}, + [2153] = {.lex_state = 1707}, + [2154] = {.lex_state = 1739}, + [2155] = {.lex_state = 1707}, + [2156] = {.lex_state = 7}, + [2157] = {.lex_state = 1707}, + [2158] = {.lex_state = 1736}, + [2159] = {.lex_state = 1707}, + [2160] = {.lex_state = 7}, + [2161] = {.lex_state = 1707}, + [2162] = {.lex_state = 1739}, + [2163] = {.lex_state = 1736}, + [2164] = {.lex_state = 1736}, + [2165] = {.lex_state = 54, .external_lex_state = 2}, + [2166] = {.lex_state = 54, .external_lex_state = 2}, + [2167] = {.lex_state = 54, .external_lex_state = 2}, + [2168] = {.lex_state = 54, .external_lex_state = 2}, + [2169] = {.lex_state = 54, .external_lex_state = 2}, + [2170] = {.lex_state = 1736}, + [2171] = {.lex_state = 1707}, + [2172] = {.lex_state = 1736}, + [2173] = {.lex_state = 1736}, + [2174] = {.lex_state = 1736}, + [2175] = {.lex_state = 1729}, + [2176] = {.lex_state = 1707}, + [2177] = {.lex_state = 1729}, + [2178] = {.lex_state = 1731}, + [2179] = {.lex_state = 1707}, + [2180] = {.lex_state = 1736}, + [2181] = {.lex_state = 1729}, + [2182] = {.lex_state = 1707}, + [2183] = {.lex_state = 1729}, + [2184] = {.lex_state = 1707}, + [2185] = {.lex_state = 1707}, + [2186] = {.lex_state = 1736}, + [2187] = {.lex_state = 1736}, + [2188] = {.lex_state = 1707}, + [2189] = {.lex_state = 1736}, + [2190] = {.lex_state = 1739}, + [2191] = {.lex_state = 1707}, + [2192] = {.lex_state = 1736}, + [2193] = {.lex_state = 1739}, + [2194] = {.lex_state = 54, .external_lex_state = 2}, + [2195] = {.lex_state = 1727}, + [2196] = {.lex_state = 54, .external_lex_state = 2}, + [2197] = {.lex_state = 54, .external_lex_state = 2}, + [2198] = {.lex_state = 54, .external_lex_state = 2}, + [2199] = {.lex_state = 54, .external_lex_state = 2}, + [2200] = {.lex_state = 54, .external_lex_state = 2}, + [2201] = {.lex_state = 1727}, + [2202] = {.lex_state = 1736}, + [2203] = {.lex_state = 1736}, + [2204] = {.lex_state = 54, .external_lex_state = 2}, + [2205] = {.lex_state = 1707}, + [2206] = {.lex_state = 1731}, + [2207] = {.lex_state = 1731}, + [2208] = {.lex_state = 1739}, + [2209] = {.lex_state = 1736}, + [2210] = {.lex_state = 1739}, + [2211] = {.lex_state = 1739}, + [2212] = {.lex_state = 1736}, + [2213] = {.lex_state = 1736}, + [2214] = {.lex_state = 1707}, + [2215] = {.lex_state = 1736}, + [2216] = {.lex_state = 1731}, + [2217] = {.lex_state = 1731}, + [2218] = {.lex_state = 1707}, + [2219] = {.lex_state = 1707}, + [2220] = {.lex_state = 1729}, + [2221] = {.lex_state = 1736}, + [2222] = {.lex_state = 1736}, + [2223] = {.lex_state = 1736}, + [2224] = {.lex_state = 1729}, + [2225] = {.lex_state = 1736}, + [2226] = {.lex_state = 1729}, + [2227] = {.lex_state = 1729}, + [2228] = {.lex_state = 1736}, + [2229] = {.lex_state = 1736}, + [2230] = {.lex_state = 54, .external_lex_state = 2}, + [2231] = {.lex_state = 54, .external_lex_state = 2}, + [2232] = {.lex_state = 1736}, + [2233] = {.lex_state = 1736}, + [2234] = {.lex_state = 1736}, + [2235] = {.lex_state = 1739}, + [2236] = {.lex_state = 1736}, + [2237] = {.lex_state = 54, .external_lex_state = 2}, + [2238] = {.lex_state = 54, .external_lex_state = 2}, + [2239] = {.lex_state = 1729}, + [2240] = {.lex_state = 54, .external_lex_state = 2}, + [2241] = {.lex_state = 54, .external_lex_state = 2}, + [2242] = {.lex_state = 54, .external_lex_state = 2}, + [2243] = {.lex_state = 54, .external_lex_state = 2}, + [2244] = {.lex_state = 54, .external_lex_state = 2}, + [2245] = {.lex_state = 54, .external_lex_state = 2}, + [2246] = {.lex_state = 54, .external_lex_state = 2}, + [2247] = {.lex_state = 54, .external_lex_state = 2}, + [2248] = {.lex_state = 54, .external_lex_state = 2}, + [2249] = {.lex_state = 54, .external_lex_state = 2}, + [2250] = {.lex_state = 1736}, + [2251] = {.lex_state = 54, .external_lex_state = 2}, + [2252] = {.lex_state = 1736}, + [2253] = {.lex_state = 1736}, + [2254] = {.lex_state = 1736}, + [2255] = {.lex_state = 54, .external_lex_state = 2}, + [2256] = {.lex_state = 1736}, + [2257] = {.lex_state = 1736}, + [2258] = {.lex_state = 54, .external_lex_state = 2}, + [2259] = {.lex_state = 1736}, + [2260] = {.lex_state = 1736}, + [2261] = {.lex_state = 1736}, + [2262] = {.lex_state = 1736}, + [2263] = {.lex_state = 1736}, + [2264] = {.lex_state = 1736}, + [2265] = {.lex_state = 1736}, + [2266] = {.lex_state = 1736}, + [2267] = {.lex_state = 1707}, + [2268] = {.lex_state = 1707}, + [2269] = {.lex_state = 54, .external_lex_state = 2}, + [2270] = {.lex_state = 54, .external_lex_state = 2}, + [2271] = {.lex_state = 54, .external_lex_state = 2}, + [2272] = {.lex_state = 1736}, + [2273] = {.lex_state = 1707}, + [2274] = {.lex_state = 1729}, + [2275] = {.lex_state = 1729}, + [2276] = {.lex_state = 1739}, + [2277] = {.lex_state = 1707}, + [2278] = {.lex_state = 1707}, + [2279] = {.lex_state = 1729}, + [2280] = {.lex_state = 1729}, + [2281] = {.lex_state = 1707}, + [2282] = {.lex_state = 1729}, + [2283] = {.lex_state = 1739}, + [2284] = {.lex_state = 1707}, + [2285] = {.lex_state = 1707}, + [2286] = {.lex_state = 1707}, + [2287] = {.lex_state = 1729}, + [2288] = {.lex_state = 1707}, + [2289] = {.lex_state = 1799, .external_lex_state = 2}, + [2290] = {.lex_state = 1707}, + [2291] = {.lex_state = 1707}, + [2292] = {.lex_state = 51, .external_lex_state = 2}, + [2293] = {.lex_state = 1739}, + [2294] = {.lex_state = 1707}, + [2295] = {.lex_state = 1707}, + [2296] = {.lex_state = 1707}, + [2297] = {.lex_state = 1707}, + [2298] = {.lex_state = 1707}, + [2299] = {.lex_state = 1707}, + [2300] = {.lex_state = 1707}, + [2301] = {.lex_state = 1707}, + [2302] = {.lex_state = 1707}, + [2303] = {.lex_state = 1707}, + [2304] = {.lex_state = 1707}, + [2305] = {.lex_state = 1707}, + [2306] = {.lex_state = 1707}, + [2307] = {.lex_state = 1707}, + [2308] = {.lex_state = 1707}, + [2309] = {.lex_state = 1799, .external_lex_state = 2}, + [2310] = {.lex_state = 1739}, + [2311] = {.lex_state = 1707}, + [2312] = {.lex_state = 1707}, + [2313] = {.lex_state = 1707}, + [2314] = {.lex_state = 1731}, + [2315] = {.lex_state = 1707}, + [2316] = {.lex_state = 1707}, + [2317] = {.lex_state = 1707}, + [2318] = {.lex_state = 1707}, + [2319] = {.lex_state = 1707}, + [2320] = {.lex_state = 1707}, + [2321] = {.lex_state = 1707}, + [2322] = {.lex_state = 1707}, + [2323] = {.lex_state = 1707}, + [2324] = {.lex_state = 1707}, + [2325] = {.lex_state = 1707}, + [2326] = {.lex_state = 1707}, + [2327] = {.lex_state = 1707}, + [2328] = {.lex_state = 1707}, + [2329] = {.lex_state = 1707}, + [2330] = {.lex_state = 1799, .external_lex_state = 2}, + [2331] = {.lex_state = 1707}, + [2332] = {.lex_state = 1707}, + [2333] = {.lex_state = 1707}, + [2334] = {.lex_state = 1707}, + [2335] = {.lex_state = 1707}, + [2336] = {.lex_state = 1707}, + [2337] = {.lex_state = 1707}, + [2338] = {.lex_state = 1707}, + [2339] = {.lex_state = 1707}, + [2340] = {.lex_state = 1707}, + [2341] = {.lex_state = 1707}, + [2342] = {.lex_state = 1707}, + [2343] = {.lex_state = 1707}, + [2344] = {.lex_state = 1707}, + [2345] = {.lex_state = 1707}, + [2346] = {.lex_state = 1707}, + [2347] = {.lex_state = 1707}, + [2348] = {.lex_state = 1707}, + [2349] = {.lex_state = 1707}, + [2350] = {.lex_state = 1707}, + [2351] = {.lex_state = 1707}, + [2352] = {.lex_state = 1707}, + [2353] = {.lex_state = 1707}, + [2354] = {.lex_state = 1729}, + [2355] = {.lex_state = 1707}, + [2356] = {.lex_state = 1707}, + [2357] = {.lex_state = 1707}, + [2358] = {.lex_state = 1707}, + [2359] = {.lex_state = 1707}, + [2360] = {.lex_state = 272, .external_lex_state = 2}, + [2361] = {.lex_state = 1707}, + [2362] = {.lex_state = 1731}, + [2363] = {.lex_state = 1707}, + [2364] = {.lex_state = 1707}, + [2365] = {.lex_state = 1707}, + [2366] = {.lex_state = 1707}, + [2367] = {.lex_state = 1707}, + [2368] = {.lex_state = 1707}, + [2369] = {.lex_state = 1707}, + [2370] = {.lex_state = 1707}, + [2371] = {.lex_state = 1731}, + [2372] = {.lex_state = 1707}, + [2373] = {.lex_state = 1707}, + [2374] = {.lex_state = 1707}, + [2375] = {.lex_state = 1707}, + [2376] = {.lex_state = 1707}, + [2377] = {.lex_state = 1707}, + [2378] = {.lex_state = 1707}, + [2379] = {.lex_state = 1707}, + [2380] = {.lex_state = 1707}, + [2381] = {.lex_state = 1707}, + [2382] = {.lex_state = 1729}, + [2383] = {.lex_state = 1707}, + [2384] = {.lex_state = 1729}, + [2385] = {.lex_state = 1707}, + [2386] = {.lex_state = 1707}, + [2387] = {.lex_state = 1707}, + [2388] = {.lex_state = 1707}, + [2389] = {.lex_state = 1707}, + [2390] = {.lex_state = 1707}, + [2391] = {.lex_state = 1707}, + [2392] = {.lex_state = 1707}, + [2393] = {.lex_state = 1707}, + [2394] = {.lex_state = 1707}, + [2395] = {.lex_state = 1707}, + [2396] = {.lex_state = 135, .external_lex_state = 2}, + [2397] = {.lex_state = 1707}, + [2398] = {.lex_state = 1707}, + [2399] = {.lex_state = 1707}, + [2400] = {.lex_state = 272, .external_lex_state = 2}, + [2401] = {.lex_state = 1707}, + [2402] = {.lex_state = 1707}, + [2403] = {.lex_state = 1707}, + [2404] = {.lex_state = 51, .external_lex_state = 2}, + [2405] = {.lex_state = 1707}, + [2406] = {.lex_state = 1707}, + [2407] = {.lex_state = 1707}, + [2408] = {.lex_state = 1707}, + [2409] = {.lex_state = 1707}, + [2410] = {.lex_state = 1707}, + [2411] = {.lex_state = 1729}, + [2412] = {.lex_state = 1707}, + [2413] = {.lex_state = 1707}, + [2414] = {.lex_state = 1707}, + [2415] = {.lex_state = 1707}, + [2416] = {.lex_state = 1707}, + [2417] = {.lex_state = 1707}, + [2418] = {.lex_state = 1707}, + [2419] = {.lex_state = 1707}, + [2420] = {.lex_state = 1707}, + [2421] = {.lex_state = 1707}, + [2422] = {.lex_state = 1707}, + [2423] = {.lex_state = 1707}, + [2424] = {.lex_state = 1731}, + [2425] = {.lex_state = 1731}, + [2426] = {.lex_state = 1707}, + [2427] = {.lex_state = 1707}, + [2428] = {.lex_state = 1707}, + [2429] = {.lex_state = 1707}, + [2430] = {.lex_state = 1707}, + [2431] = {.lex_state = 7}, + [2432] = {.lex_state = 1707}, + [2433] = {.lex_state = 1707}, + [2434] = {.lex_state = 1707}, + [2435] = {.lex_state = 51, .external_lex_state = 2}, + [2436] = {.lex_state = 1707}, + [2437] = {.lex_state = 1707}, + [2438] = {.lex_state = 1707}, + [2439] = {.lex_state = 1707}, + [2440] = {.lex_state = 1707}, + [2441] = {.lex_state = 1707}, + [2442] = {.lex_state = 1707}, + [2443] = {.lex_state = 51, .external_lex_state = 2}, + [2444] = {.lex_state = 1799, .external_lex_state = 2}, + [2445] = {.lex_state = 1707}, + [2446] = {.lex_state = 1707}, + [2447] = {.lex_state = 7}, + [2448] = {.lex_state = 1707}, + [2449] = {.lex_state = 133, .external_lex_state = 2}, + [2450] = {.lex_state = 1707}, + [2451] = {.lex_state = 1707}, + [2452] = {.lex_state = 1707}, + [2453] = {.lex_state = 1707}, + [2454] = {.lex_state = 1707}, + [2455] = {.lex_state = 282, .external_lex_state = 2}, + [2456] = {.lex_state = 1707}, + [2457] = {.lex_state = 1707}, + [2458] = {.lex_state = 1707}, + [2459] = {.lex_state = 1707}, + [2460] = {.lex_state = 1707}, + [2461] = {.lex_state = 1707}, + [2462] = {.lex_state = 1707}, + [2463] = {.lex_state = 1707}, + [2464] = {.lex_state = 1707}, + [2465] = {.lex_state = 1707}, + [2466] = {.lex_state = 1707}, + [2467] = {.lex_state = 1707}, + [2468] = {.lex_state = 1707}, + [2469] = {.lex_state = 1707}, + [2470] = {.lex_state = 1707}, + [2471] = {.lex_state = 1707}, + [2472] = {.lex_state = 1707}, + [2473] = {.lex_state = 1799, .external_lex_state = 2}, + [2474] = {.lex_state = 7}, + [2475] = {.lex_state = 1707}, + [2476] = {.lex_state = 1707}, + [2477] = {.lex_state = 1707}, + [2478] = {.lex_state = 1707}, + [2479] = {.lex_state = 1799, .external_lex_state = 2}, + [2480] = {.lex_state = 1707}, + [2481] = {.lex_state = 1729}, + [2482] = {.lex_state = 1707}, + [2483] = {.lex_state = 1707}, + [2484] = {.lex_state = 1707}, + [2485] = {.lex_state = 1707}, + [2486] = {.lex_state = 1707}, + [2487] = {.lex_state = 1707}, + [2488] = {.lex_state = 1707}, + [2489] = {.lex_state = 1707}, + [2490] = {.lex_state = 1707}, + [2491] = {.lex_state = 1707}, + [2492] = {.lex_state = 1707}, + [2493] = {.lex_state = 1707}, + [2494] = {.lex_state = 1707}, + [2495] = {.lex_state = 1707}, + [2496] = {.lex_state = 1707}, + [2497] = {.lex_state = 1707}, + [2498] = {.lex_state = 1707}, + [2499] = {.lex_state = 1707}, + [2500] = {.lex_state = 1707}, + [2501] = {.lex_state = 1707}, + [2502] = {.lex_state = 1707}, + [2503] = {.lex_state = 1707}, + [2504] = {.lex_state = 1707}, + [2505] = {.lex_state = 1707}, + [2506] = {.lex_state = 1707}, + [2507] = {.lex_state = 1707}, + [2508] = {.lex_state = 1799, .external_lex_state = 2}, + [2509] = {.lex_state = 1707}, + [2510] = {.lex_state = 1707}, + [2511] = {.lex_state = 1707}, + [2512] = {.lex_state = 1707}, + [2513] = {.lex_state = 1707}, + [2514] = {.lex_state = 1707}, + [2515] = {.lex_state = 1707}, + [2516] = {.lex_state = 1707}, + [2517] = {.lex_state = 1707}, + [2518] = {.lex_state = 1707}, + [2519] = {.lex_state = 1707}, + [2520] = {.lex_state = 134, .external_lex_state = 2}, + [2521] = {.lex_state = 1707}, + [2522] = {.lex_state = 1707}, + [2523] = {.lex_state = 1707}, + [2524] = {.lex_state = 1707}, + [2525] = {.lex_state = 1707}, + [2526] = {.lex_state = 7}, + [2527] = {.lex_state = 1707}, + [2528] = {.lex_state = 1707}, + [2529] = {.lex_state = 1707}, + [2530] = {.lex_state = 51, .external_lex_state = 2}, + [2531] = {.lex_state = 1707}, + [2532] = {.lex_state = 1707}, + [2533] = {.lex_state = 51, .external_lex_state = 2}, + [2534] = {.lex_state = 1707}, + [2535] = {.lex_state = 1707}, + [2536] = {.lex_state = 1707}, + [2537] = {.lex_state = 1707}, + [2538] = {.lex_state = 1707}, + [2539] = {.lex_state = 1707}, + [2540] = {.lex_state = 1707}, + [2541] = {.lex_state = 280, .external_lex_state = 2}, + [2542] = {.lex_state = 1707}, + [2543] = {.lex_state = 1799, .external_lex_state = 2}, + [2544] = {.lex_state = 1707}, + [2545] = {.lex_state = 1707}, + [2546] = {.lex_state = 173, .external_lex_state = 2}, + [2547] = {.lex_state = 51, .external_lex_state = 2}, + [2548] = {.lex_state = 1707}, + [2549] = {.lex_state = 1707}, + [2550] = {.lex_state = 1707}, + [2551] = {.lex_state = 164, .external_lex_state = 2}, + [2552] = {.lex_state = 1707}, + [2553] = {.lex_state = 1707}, + [2554] = {.lex_state = 179, .external_lex_state = 2}, + [2555] = {.lex_state = 51, .external_lex_state = 2}, + [2556] = {.lex_state = 1707}, + [2557] = {.lex_state = 51, .external_lex_state = 2}, + [2558] = {.lex_state = 51, .external_lex_state = 2}, + [2559] = {.lex_state = 51, .external_lex_state = 2}, + [2560] = {.lex_state = 1707}, + [2561] = {.lex_state = 1707}, + [2562] = {.lex_state = 1707}, + [2563] = {.lex_state = 1707}, + [2564] = {.lex_state = 1707}, + [2565] = {.lex_state = 134, .external_lex_state = 2}, + [2566] = {.lex_state = 1707}, + [2567] = {.lex_state = 1707}, + [2568] = {.lex_state = 51, .external_lex_state = 2}, + [2569] = {.lex_state = 1707}, + [2570] = {.lex_state = 1707}, + [2571] = {.lex_state = 1707}, + [2572] = {.lex_state = 1707}, + [2573] = {.lex_state = 1707}, + [2574] = {.lex_state = 178, .external_lex_state = 2}, + [2575] = {.lex_state = 1707}, + [2576] = {.lex_state = 1707}, + [2577] = {.lex_state = 1707}, + [2578] = {.lex_state = 178, .external_lex_state = 2}, + [2579] = {.lex_state = 132, .external_lex_state = 2}, + [2580] = {.lex_state = 1707}, + [2581] = {.lex_state = 1707}, + [2582] = {.lex_state = 1707}, + [2583] = {.lex_state = 279, .external_lex_state = 2}, + [2584] = {.lex_state = 1707}, + [2585] = {.lex_state = 1707}, + [2586] = {.lex_state = 1707}, + [2587] = {.lex_state = 1707}, + [2588] = {.lex_state = 1707}, + [2589] = {.lex_state = 1707}, + [2590] = {.lex_state = 1707}, + [2591] = {.lex_state = 1707}, + [2592] = {.lex_state = 1707}, + [2593] = {.lex_state = 1707}, + [2594] = {.lex_state = 1707}, + [2595] = {.lex_state = 1707}, + [2596] = {.lex_state = 167, .external_lex_state = 2}, + [2597] = {.lex_state = 1707}, + [2598] = {.lex_state = 1707}, + [2599] = {.lex_state = 1707}, + [2600] = {.lex_state = 1707}, + [2601] = {.lex_state = 178, .external_lex_state = 2}, + [2602] = {.lex_state = 1799, .external_lex_state = 2}, + [2603] = {.lex_state = 1707}, + [2604] = {.lex_state = 1707}, + [2605] = {.lex_state = 1707}, + [2606] = {.lex_state = 1798, .external_lex_state = 2}, + [2607] = {.lex_state = 1707}, + [2608] = {.lex_state = 1707}, + [2609] = {.lex_state = 1707}, + [2610] = {.lex_state = 1707}, + [2611] = {.lex_state = 1707}, + [2612] = {.lex_state = 279, .external_lex_state = 2}, + [2613] = {.lex_state = 1707}, + [2614] = {.lex_state = 1707}, + [2615] = {.lex_state = 1798, .external_lex_state = 2}, + [2616] = {.lex_state = 1707}, + [2617] = {.lex_state = 1707}, + [2618] = {.lex_state = 1707}, + [2619] = {.lex_state = 1707}, + [2620] = {.lex_state = 1707}, + [2621] = {.lex_state = 1707}, + [2622] = {.lex_state = 1798, .external_lex_state = 2}, + [2623] = {.lex_state = 1707}, + [2624] = {.lex_state = 1707}, + [2625] = {.lex_state = 1707}, + [2626] = {.lex_state = 1798, .external_lex_state = 2}, + [2627] = {.lex_state = 1798, .external_lex_state = 2}, + [2628] = {.lex_state = 1707}, + [2629] = {.lex_state = 1707}, + [2630] = {.lex_state = 1707}, + [2631] = {.lex_state = 1707}, + [2632] = {.lex_state = 1707}, + [2633] = {.lex_state = 1707}, + [2634] = {.lex_state = 1707}, + [2635] = {.lex_state = 1707}, + [2636] = {.lex_state = 1707}, + [2637] = {.lex_state = 1707}, + [2638] = {.lex_state = 1707}, + [2639] = {.lex_state = 1707}, + [2640] = {.lex_state = 1707}, + [2641] = {.lex_state = 1707}, + [2642] = {.lex_state = 1707}, + [2643] = {.lex_state = 1707}, + [2644] = {.lex_state = 166, .external_lex_state = 2}, + [2645] = {.lex_state = 1798, .external_lex_state = 2}, + [2646] = {.lex_state = 132, .external_lex_state = 2}, + [2647] = {.lex_state = 1707}, + [2648] = {.lex_state = 1707}, + [2649] = {.lex_state = 1707}, + [2650] = {.lex_state = 1707}, + [2651] = {.lex_state = 1707}, + [2652] = {.lex_state = 1799, .external_lex_state = 2}, + [2653] = {.lex_state = 178, .external_lex_state = 2}, + [2654] = {.lex_state = 1707}, + [2655] = {.lex_state = 1707}, + [2656] = {.lex_state = 1707}, + [2657] = {.lex_state = 1707}, + [2658] = {.lex_state = 1707}, + [2659] = {.lex_state = 166, .external_lex_state = 2}, + [2660] = {.lex_state = 1707}, + [2661] = {.lex_state = 1707}, + [2662] = {.lex_state = 1707}, + [2663] = {.lex_state = 1707}, + [2664] = {.lex_state = 1707}, + [2665] = {.lex_state = 1707}, + [2666] = {.lex_state = 1707}, + [2667] = {.lex_state = 1707}, + [2668] = {.lex_state = 1707}, + [2669] = {.lex_state = 1707}, + [2670] = {.lex_state = 1707}, + [2671] = {.lex_state = 1707}, + [2672] = {.lex_state = 1707}, + [2673] = {.lex_state = 1707}, + [2674] = {.lex_state = 1707}, + [2675] = {.lex_state = 1707}, + [2676] = {.lex_state = 177, .external_lex_state = 2}, + [2677] = {.lex_state = 1707}, + [2678] = {.lex_state = 1707}, + [2679] = {.lex_state = 1707}, + [2680] = {.lex_state = 1707}, + [2681] = {.lex_state = 1799, .external_lex_state = 2}, + [2682] = {.lex_state = 165, .external_lex_state = 2}, + [2683] = {.lex_state = 1799, .external_lex_state = 2}, + [2684] = {.lex_state = 1798, .external_lex_state = 2}, + [2685] = {.lex_state = 233, .external_lex_state = 2}, + [2686] = {.lex_state = 272, .external_lex_state = 2}, + [2687] = {.lex_state = 51, .external_lex_state = 2}, + [2688] = {.lex_state = 272, .external_lex_state = 2}, + [2689] = {.lex_state = 272, .external_lex_state = 2}, + [2690] = {.lex_state = 239, .external_lex_state = 2}, + [2691] = {.lex_state = 1798, .external_lex_state = 2}, + [2692] = {.lex_state = 1798, .external_lex_state = 2}, + [2693] = {.lex_state = 272, .external_lex_state = 2}, + [2694] = {.lex_state = 176, .external_lex_state = 2}, + [2695] = {.lex_state = 281, .external_lex_state = 2}, + [2696] = {.lex_state = 51, .external_lex_state = 2}, + [2697] = {.lex_state = 1798, .external_lex_state = 2}, + [2698] = {.lex_state = 272, .external_lex_state = 2}, + [2699] = {.lex_state = 167, .external_lex_state = 2}, + [2700] = {.lex_state = 281, .external_lex_state = 2}, + [2701] = {.lex_state = 233, .external_lex_state = 2}, + [2702] = {.lex_state = 248, .external_lex_state = 2}, + [2703] = {.lex_state = 281, .external_lex_state = 2}, + [2704] = {.lex_state = 281, .external_lex_state = 2}, + [2705] = {.lex_state = 51, .external_lex_state = 2}, + [2706] = {.lex_state = 176, .external_lex_state = 2}, + [2707] = {.lex_state = 1799, .external_lex_state = 2}, + [2708] = {.lex_state = 174, .external_lex_state = 2}, + [2709] = {.lex_state = 167, .external_lex_state = 2}, + [2710] = {.lex_state = 1798, .external_lex_state = 2}, + [2711] = {.lex_state = 176, .external_lex_state = 2}, + [2712] = {.lex_state = 167, .external_lex_state = 2}, + [2713] = {.lex_state = 176, .external_lex_state = 2}, + [2714] = {.lex_state = 272, .external_lex_state = 2}, + [2715] = {.lex_state = 51, .external_lex_state = 2}, + [2716] = {.lex_state = 233, .external_lex_state = 2}, + [2717] = {.lex_state = 272, .external_lex_state = 2}, + [2718] = {.lex_state = 281, .external_lex_state = 2}, + [2719] = {.lex_state = 272, .external_lex_state = 2}, + [2720] = {.lex_state = 51, .external_lex_state = 2}, + [2721] = {.lex_state = 167, .external_lex_state = 2}, + [2722] = {.lex_state = 1798, .external_lex_state = 2}, + [2723] = {.lex_state = 51, .external_lex_state = 2}, + [2724] = {.lex_state = 51, .external_lex_state = 2}, + [2725] = {.lex_state = 51, .external_lex_state = 2}, + [2726] = {.lex_state = 51, .external_lex_state = 2}, + [2727] = {.lex_state = 1797, .external_lex_state = 2}, + [2728] = {.lex_state = 1797, .external_lex_state = 2}, + [2729] = {.lex_state = 1797, .external_lex_state = 2}, + [2730] = {.lex_state = 1797, .external_lex_state = 2}, + [2731] = {.lex_state = 51, .external_lex_state = 2}, + [2732] = {.lex_state = 51, .external_lex_state = 2}, + [2733] = {.lex_state = 51, .external_lex_state = 2}, + [2734] = {.lex_state = 51, .external_lex_state = 2}, + [2735] = {.lex_state = 51, .external_lex_state = 2}, + [2736] = {.lex_state = 1797, .external_lex_state = 2}, + [2737] = {.lex_state = 1797, .external_lex_state = 2}, + [2738] = {.lex_state = 1797, .external_lex_state = 2}, + [2739] = {.lex_state = 1797, .external_lex_state = 2}, + [2740] = {.lex_state = 1799, .external_lex_state = 2}, + [2741] = {.lex_state = 1797, .external_lex_state = 2}, + [2742] = {.lex_state = 1797, .external_lex_state = 2}, + [2743] = {.lex_state = 1799, .external_lex_state = 2}, + [2744] = {.lex_state = 1799, .external_lex_state = 2}, + [2745] = {.lex_state = 1797, .external_lex_state = 2}, + [2746] = {.lex_state = 1797, .external_lex_state = 2}, + [2747] = {.lex_state = 1797, .external_lex_state = 2}, + [2748] = {.lex_state = 1797, .external_lex_state = 2}, + [2749] = {.lex_state = 1797, .external_lex_state = 2}, + [2750] = {.lex_state = 1797, .external_lex_state = 2}, + [2751] = {.lex_state = 1797, .external_lex_state = 2}, + [2752] = {.lex_state = 51, .external_lex_state = 2}, + [2753] = {.lex_state = 51, .external_lex_state = 2}, + [2754] = {.lex_state = 1797, .external_lex_state = 2}, + [2755] = {.lex_state = 1797, .external_lex_state = 2}, + [2756] = {.lex_state = 1797, .external_lex_state = 2}, + [2757] = {.lex_state = 1797, .external_lex_state = 2}, + [2758] = {.lex_state = 51, .external_lex_state = 2}, + [2759] = {.lex_state = 220, .external_lex_state = 2}, + [2760] = {.lex_state = 220, .external_lex_state = 2}, + [2761] = {.lex_state = 51, .external_lex_state = 2}, + [2762] = {.lex_state = 220, .external_lex_state = 2}, + [2763] = {.lex_state = 51, .external_lex_state = 2}, + [2764] = {.lex_state = 241, .external_lex_state = 2}, + [2765] = {.lex_state = 241, .external_lex_state = 2}, + [2766] = {.lex_state = 233, .external_lex_state = 2}, + [2767] = {.lex_state = 233, .external_lex_state = 2}, + [2768] = {.lex_state = 51, .external_lex_state = 2}, + [2769] = {.lex_state = 168, .external_lex_state = 2}, + [2770] = {.lex_state = 168, .external_lex_state = 2}, + [2771] = {.lex_state = 51, .external_lex_state = 2}, + [2772] = {.lex_state = 51, .external_lex_state = 2}, + [2773] = {.lex_state = 51, .external_lex_state = 2}, + [2774] = {.lex_state = 51, .external_lex_state = 2}, + [2775] = {.lex_state = 51, .external_lex_state = 2}, + [2776] = {.lex_state = 51, .external_lex_state = 2}, + [2777] = {.lex_state = 51, .external_lex_state = 2}, + [2778] = {.lex_state = 51, .external_lex_state = 2}, + [2779] = {.lex_state = 51, .external_lex_state = 2}, + [2780] = {.lex_state = 51, .external_lex_state = 2}, + [2781] = {.lex_state = 51, .external_lex_state = 2}, + [2782] = {.lex_state = 51, .external_lex_state = 2}, + [2783] = {.lex_state = 51, .external_lex_state = 2}, + [2784] = {.lex_state = 51, .external_lex_state = 2}, + [2785] = {.lex_state = 51, .external_lex_state = 2}, + [2786] = {.lex_state = 51, .external_lex_state = 2}, + [2787] = {.lex_state = 51, .external_lex_state = 2}, + [2788] = {.lex_state = 51, .external_lex_state = 2}, + [2789] = {.lex_state = 51, .external_lex_state = 2}, + [2790] = {.lex_state = 51, .external_lex_state = 2}, + [2791] = {.lex_state = 51, .external_lex_state = 2}, + [2792] = {.lex_state = 51, .external_lex_state = 2}, + [2793] = {.lex_state = 1797, .external_lex_state = 2}, + [2794] = {.lex_state = 1797, .external_lex_state = 2}, + [2795] = {.lex_state = 1797, .external_lex_state = 2}, + [2796] = {.lex_state = 1797, .external_lex_state = 2}, + [2797] = {.lex_state = 169, .external_lex_state = 2}, + [2798] = {.lex_state = 169, .external_lex_state = 2}, + [2799] = {.lex_state = 277, .external_lex_state = 2}, + [2800] = {.lex_state = 1797, .external_lex_state = 2}, + [2801] = {.lex_state = 277, .external_lex_state = 2}, + [2802] = {.lex_state = 265, .external_lex_state = 2}, + [2803] = {.lex_state = 265, .external_lex_state = 2}, + [2804] = {.lex_state = 265, .external_lex_state = 2}, + [2805] = {.lex_state = 265, .external_lex_state = 2}, + [2806] = {.lex_state = 277, .external_lex_state = 2}, + [2807] = {.lex_state = 220, .external_lex_state = 2}, + [2808] = {.lex_state = 220, .external_lex_state = 2}, + [2809] = {.lex_state = 1797, .external_lex_state = 2}, + [2810] = {.lex_state = 242, .external_lex_state = 2}, + [2811] = {.lex_state = 1797, .external_lex_state = 2}, + [2812] = {.lex_state = 242, .external_lex_state = 2}, + [2813] = {.lex_state = 277, .external_lex_state = 2}, + [2814] = {.lex_state = 242, .external_lex_state = 2}, + [2815] = {.lex_state = 242, .external_lex_state = 2}, + [2816] = {.lex_state = 1797, .external_lex_state = 2}, + [2817] = {.lex_state = 231, .external_lex_state = 2}, + [2818] = {.lex_state = 231, .external_lex_state = 2}, + [2819] = {.lex_state = 1797, .external_lex_state = 2}, + [2820] = {.lex_state = 231, .external_lex_state = 2}, + [2821] = {.lex_state = 231, .external_lex_state = 2}, + [2822] = {.lex_state = 231, .external_lex_state = 2}, + [2823] = {.lex_state = 240, .external_lex_state = 2}, + [2824] = {.lex_state = 231, .external_lex_state = 2}, + [2825] = {.lex_state = 1797, .external_lex_state = 2}, + [2826] = {.lex_state = 1797, .external_lex_state = 2}, + [2827] = {.lex_state = 277, .external_lex_state = 2}, [2828] = {.lex_state = 249, .external_lex_state = 2}, - [2829] = {.lex_state = 249, .external_lex_state = 2}, - [2830] = {.lex_state = 218, .external_lex_state = 2}, - [2831] = {.lex_state = 194, .external_lex_state = 2}, - [2832] = {.lex_state = 218, .external_lex_state = 2}, - [2833] = {.lex_state = 218, .external_lex_state = 2}, - [2834] = {.lex_state = 194, .external_lex_state = 2}, - [2835] = {.lex_state = 194, .external_lex_state = 2}, - [2836] = {.lex_state = 218, .external_lex_state = 2}, - [2837] = {.lex_state = 249, .external_lex_state = 2}, - [2838] = {.lex_state = 195, .external_lex_state = 2}, - [2839] = {.lex_state = 249, .external_lex_state = 2}, - [2840] = {.lex_state = 249, .external_lex_state = 2}, - [2841] = {.lex_state = 249, .external_lex_state = 2}, - [2842] = {.lex_state = 145, .external_lex_state = 2}, - [2843] = {.lex_state = 145, .external_lex_state = 2}, - [2844] = {.lex_state = 189, .external_lex_state = 2}, - [2845] = {.lex_state = 211, .external_lex_state = 2}, - [2846] = {.lex_state = 211, .external_lex_state = 2}, - [2847] = {.lex_state = 189, .external_lex_state = 2}, - [2848] = {.lex_state = 203, .external_lex_state = 2}, - [2849] = {.lex_state = 203, .external_lex_state = 2}, - [2850] = {.lex_state = 203, .external_lex_state = 2}, - [2851] = {.lex_state = 203, .external_lex_state = 2}, - [2852] = {.lex_state = 248, .external_lex_state = 2}, - [2853] = {.lex_state = 248, .external_lex_state = 2}, - [2854] = {.lex_state = 195, .external_lex_state = 2}, - [2855] = {.lex_state = 248, .external_lex_state = 2}, - [2856] = {.lex_state = 248, .external_lex_state = 2}, - [2857] = {.lex_state = 248, .external_lex_state = 2}, - [2858] = {.lex_state = 248, .external_lex_state = 2}, - [2859] = {.lex_state = 203, .external_lex_state = 2}, - [2860] = {.lex_state = 203, .external_lex_state = 2}, - [2861] = {.lex_state = 203, .external_lex_state = 2}, - [2862] = {.lex_state = 195, .external_lex_state = 2}, - [2863] = {.lex_state = 195, .external_lex_state = 2}, - [2864] = {.lex_state = 248, .external_lex_state = 2}, - [2865] = {.lex_state = 203, .external_lex_state = 2}, - [2866] = {.lex_state = 44, .external_lex_state = 2}, - [2867] = {.lex_state = 195, .external_lex_state = 2}, - [2868] = {.lex_state = 195, .external_lex_state = 2}, - [2869] = {.lex_state = 146, .external_lex_state = 2}, - [2870] = {.lex_state = 250, .external_lex_state = 2}, - [2871] = {.lex_state = 146, .external_lex_state = 2}, - [2872] = {.lex_state = 146, .external_lex_state = 2}, - [2873] = {.lex_state = 190, .external_lex_state = 2}, - [2874] = {.lex_state = 248, .external_lex_state = 2}, - [2875] = {.lex_state = 43, .external_lex_state = 2}, - [2876] = {.lex_state = 190, .external_lex_state = 2}, - [2877] = {.lex_state = 209, .external_lex_state = 2}, - [2878] = {.lex_state = 209, .external_lex_state = 2}, - [2879] = {.lex_state = 42, .external_lex_state = 2}, - [2880] = {.lex_state = 190, .external_lex_state = 2}, - [2881] = {.lex_state = 190, .external_lex_state = 2}, - [2882] = {.lex_state = 190, .external_lex_state = 2}, - [2883] = {.lex_state = 263, .external_lex_state = 2}, - [2884] = {.lex_state = 263, .external_lex_state = 2}, - [2885] = {.lex_state = 209, .external_lex_state = 2}, - [2886] = {.lex_state = 190, .external_lex_state = 2}, - [2887] = {.lex_state = 209, .external_lex_state = 2}, - [2888] = {.lex_state = 209, .external_lex_state = 2}, - [2889] = {.lex_state = 190, .external_lex_state = 2}, - [2890] = {.lex_state = 209, .external_lex_state = 2}, - [2891] = {.lex_state = 47, .external_lex_state = 2}, - [2892] = {.lex_state = 195, .external_lex_state = 2}, - [2893] = {.lex_state = 201, .external_lex_state = 2}, - [2894] = {.lex_state = 219, .external_lex_state = 2}, - [2895] = {.lex_state = 248, .external_lex_state = 2}, - [2896] = {.lex_state = 250, .external_lex_state = 2}, - [2897] = {.lex_state = 210, .external_lex_state = 2}, - [2898] = {.lex_state = 1677}, - [2899] = {.lex_state = 1679}, - [2900] = {.lex_state = 263, .external_lex_state = 2}, - [2901] = {.lex_state = 264, .external_lex_state = 2}, + [2829] = {.lex_state = 169, .external_lex_state = 2}, + [2830] = {.lex_state = 277, .external_lex_state = 2}, + [2831] = {.lex_state = 169, .external_lex_state = 2}, + [2832] = {.lex_state = 242, .external_lex_state = 2}, + [2833] = {.lex_state = 169, .external_lex_state = 2}, + [2834] = {.lex_state = 169, .external_lex_state = 2}, + [2835] = {.lex_state = 277, .external_lex_state = 2}, + [2836] = {.lex_state = 277, .external_lex_state = 2}, + [2837] = {.lex_state = 1797, .external_lex_state = 2}, + [2838] = {.lex_state = 263, .external_lex_state = 2}, + [2839] = {.lex_state = 1797, .external_lex_state = 2}, + [2840] = {.lex_state = 277, .external_lex_state = 2}, + [2841] = {.lex_state = 1797, .external_lex_state = 2}, + [2842] = {.lex_state = 277, .external_lex_state = 2}, + [2843] = {.lex_state = 277, .external_lex_state = 2}, + [2844] = {.lex_state = 232, .external_lex_state = 2}, + [2845] = {.lex_state = 277, .external_lex_state = 2}, + [2846] = {.lex_state = 277, .external_lex_state = 2}, + [2847] = {.lex_state = 1797, .external_lex_state = 2}, + [2848] = {.lex_state = 277, .external_lex_state = 2}, + [2849] = {.lex_state = 1797, .external_lex_state = 2}, + [2850] = {.lex_state = 1797, .external_lex_state = 2}, + [2851] = {.lex_state = 1797, .external_lex_state = 2}, + [2852] = {.lex_state = 277, .external_lex_state = 2}, + [2853] = {.lex_state = 55, .external_lex_state = 2}, + [2854] = {.lex_state = 1797, .external_lex_state = 2}, + [2855] = {.lex_state = 277, .external_lex_state = 2}, + [2856] = {.lex_state = 277, .external_lex_state = 2}, + [2857] = {.lex_state = 277, .external_lex_state = 2}, + [2858] = {.lex_state = 277, .external_lex_state = 2}, + [2859] = {.lex_state = 234, .external_lex_state = 2}, + [2860] = {.lex_state = 277, .external_lex_state = 2}, + [2861] = {.lex_state = 277, .external_lex_state = 2}, + [2862] = {.lex_state = 1797, .external_lex_state = 2}, + [2863] = {.lex_state = 1797, .external_lex_state = 2}, + [2864] = {.lex_state = 277, .external_lex_state = 2}, + [2865] = {.lex_state = 263, .external_lex_state = 2}, + [2866] = {.lex_state = 263, .external_lex_state = 2}, + [2867] = {.lex_state = 265, .external_lex_state = 2}, + [2868] = {.lex_state = 1778, .external_lex_state = 2}, + [2869] = {.lex_state = 277, .external_lex_state = 2}, + [2870] = {.lex_state = 1778, .external_lex_state = 2}, + [2871] = {.lex_state = 1797, .external_lex_state = 2}, + [2872] = {.lex_state = 263, .external_lex_state = 2}, + [2873] = {.lex_state = 1797, .external_lex_state = 2}, + [2874] = {.lex_state = 230, .external_lex_state = 2}, + [2875] = {.lex_state = 219, .external_lex_state = 2}, + [2876] = {.lex_state = 1704}, + [2877] = {.lex_state = 221, .external_lex_state = 2}, + [2878] = {.lex_state = 237, .external_lex_state = 2}, + [2879] = {.lex_state = 237, .external_lex_state = 2}, + [2880] = {.lex_state = 237, .external_lex_state = 2}, + [2881] = {.lex_state = 237, .external_lex_state = 2}, + [2882] = {.lex_state = 237, .external_lex_state = 2}, + [2883] = {.lex_state = 237, .external_lex_state = 2}, + [2884] = {.lex_state = 237, .external_lex_state = 2}, + [2885] = {.lex_state = 237, .external_lex_state = 2}, + [2886] = {.lex_state = 237, .external_lex_state = 2}, + [2887] = {.lex_state = 237, .external_lex_state = 2}, + [2888] = {.lex_state = 237, .external_lex_state = 2}, + [2889] = {.lex_state = 237, .external_lex_state = 2}, + [2890] = {.lex_state = 237, .external_lex_state = 2}, + [2891] = {.lex_state = 237, .external_lex_state = 2}, + [2892] = {.lex_state = 237, .external_lex_state = 2}, + [2893] = {.lex_state = 237, .external_lex_state = 2}, + [2894] = {.lex_state = 237, .external_lex_state = 2}, + [2895] = {.lex_state = 237, .external_lex_state = 2}, + [2896] = {.lex_state = 237, .external_lex_state = 2}, + [2897] = {.lex_state = 277, .external_lex_state = 2}, + [2898] = {.lex_state = 277, .external_lex_state = 2}, + [2899] = {.lex_state = 265, .external_lex_state = 2}, + [2900] = {.lex_state = 218, .external_lex_state = 2}, + [2901] = {.lex_state = 218, .external_lex_state = 2}, [2902] = {.lex_state = 264, .external_lex_state = 2}, - [2903] = {.lex_state = 190, .external_lex_state = 2}, - [2904] = {.lex_state = 250, .external_lex_state = 2}, - [2905] = {.lex_state = 190, .external_lex_state = 2}, - [2906] = {.lex_state = 190, .external_lex_state = 2}, - [2907] = {.lex_state = 190, .external_lex_state = 2}, - [2908] = {.lex_state = 190, .external_lex_state = 2}, - [2909] = {.lex_state = 190, .external_lex_state = 2}, - [2910] = {.lex_state = 190, .external_lex_state = 2}, - [2911] = {.lex_state = 231, .external_lex_state = 2}, - [2912] = {.lex_state = 146, .external_lex_state = 2}, - [2913] = {.lex_state = 105, .external_lex_state = 2}, - [2914] = {.lex_state = 190, .external_lex_state = 2}, - [2915] = {.lex_state = 264, .external_lex_state = 2}, - [2916] = {.lex_state = 146, .external_lex_state = 2}, - [2917] = {.lex_state = 146, .external_lex_state = 2}, - [2918] = {.lex_state = 264, .external_lex_state = 2}, - [2919] = {.lex_state = 146, .external_lex_state = 2}, - [2920] = {.lex_state = 146, .external_lex_state = 2}, - [2921] = {.lex_state = 231, .external_lex_state = 2}, - [2922] = {.lex_state = 263, .external_lex_state = 2}, - [2923] = {.lex_state = 263, .external_lex_state = 2}, - [2924] = {.lex_state = 47, .external_lex_state = 2}, - [2925] = {.lex_state = 224, .external_lex_state = 2}, - [2926] = {.lex_state = 146, .external_lex_state = 2}, - [2927] = {.lex_state = 264, .external_lex_state = 2}, - [2928] = {.lex_state = 231, .external_lex_state = 2}, - [2929] = {.lex_state = 199, .external_lex_state = 2}, - [2930] = {.lex_state = 1683}, - [2931] = {.lex_state = 182, .external_lex_state = 2}, - [2932] = {.lex_state = 220, .external_lex_state = 2}, - [2933] = {.lex_state = 196, .external_lex_state = 2}, - [2934] = {.lex_state = 196, .external_lex_state = 2}, - [2935] = {.lex_state = 220, .external_lex_state = 2}, - [2936] = {.lex_state = 231, .external_lex_state = 2}, - [2937] = {.lex_state = 182, .external_lex_state = 2}, - [2938] = {.lex_state = 231, .external_lex_state = 2}, - [2939] = {.lex_state = 196, .external_lex_state = 2}, - [2940] = {.lex_state = 182, .external_lex_state = 2}, - [2941] = {.lex_state = 196, .external_lex_state = 2}, - [2942] = {.lex_state = 196, .external_lex_state = 2}, - [2943] = {.lex_state = 196, .external_lex_state = 2}, - [2944] = {.lex_state = 211, .external_lex_state = 2}, - [2945] = {.lex_state = 211, .external_lex_state = 2}, - [2946] = {.lex_state = 211, .external_lex_state = 2}, - [2947] = {.lex_state = 231, .external_lex_state = 2}, - [2948] = {.lex_state = 231, .external_lex_state = 2}, - [2949] = {.lex_state = 188, .external_lex_state = 2}, - [2950] = {.lex_state = 231, .external_lex_state = 2}, - [2951] = {.lex_state = 231, .external_lex_state = 2}, - [2952] = {.lex_state = 182, .external_lex_state = 2}, - [2953] = {.lex_state = 231, .external_lex_state = 2}, - [2954] = {.lex_state = 182, .external_lex_state = 2}, - [2955] = {.lex_state = 231, .external_lex_state = 2}, - [2956] = {.lex_state = 198, .external_lex_state = 2}, - [2957] = {.lex_state = 198, .external_lex_state = 2}, - [2958] = {.lex_state = 231, .external_lex_state = 2}, - [2959] = {.lex_state = 231, .external_lex_state = 2}, - [2960] = {.lex_state = 231, .external_lex_state = 2}, - [2961] = {.lex_state = 231, .external_lex_state = 2}, - [2962] = {.lex_state = 231, .external_lex_state = 2}, - [2963] = {.lex_state = 231, .external_lex_state = 2}, - [2964] = {.lex_state = 231, .external_lex_state = 2}, - [2965] = {.lex_state = 231, .external_lex_state = 2}, - [2966] = {.lex_state = 231, .external_lex_state = 2}, - [2967] = {.lex_state = 197, .external_lex_state = 2}, - [2968] = {.lex_state = 231, .external_lex_state = 2}, - [2969] = {.lex_state = 231, .external_lex_state = 2}, - [2970] = {.lex_state = 45, .external_lex_state = 2}, - [2971] = {.lex_state = 231, .external_lex_state = 2}, - [2972] = {.lex_state = 231, .external_lex_state = 2}, - [2973] = {.lex_state = 231, .external_lex_state = 2}, - [2974] = {.lex_state = 231, .external_lex_state = 2}, - [2975] = {.lex_state = 231, .external_lex_state = 2}, - [2976] = {.lex_state = 231, .external_lex_state = 2}, - [2977] = {.lex_state = 231, .external_lex_state = 2}, - [2978] = {.lex_state = 231, .external_lex_state = 2}, - [2979] = {.lex_state = 231, .external_lex_state = 2}, - [2980] = {.lex_state = 231, .external_lex_state = 2}, - [2981] = {.lex_state = 231, .external_lex_state = 2}, - [2982] = {.lex_state = 1681}, - [2983] = {.lex_state = 231, .external_lex_state = 2}, - [2984] = {.lex_state = 1681}, - [2985] = {.lex_state = 1677}, - [2986] = {.lex_state = 231, .external_lex_state = 2}, - [2987] = {.lex_state = 1679}, - [2988] = {.lex_state = 231, .external_lex_state = 2}, - [2989] = {.lex_state = 231, .external_lex_state = 2}, - [2990] = {.lex_state = 225, .external_lex_state = 2}, - [2991] = {.lex_state = 105, .external_lex_state = 2}, - [2992] = {.lex_state = 47, .external_lex_state = 2}, - [2993] = {.lex_state = 182, .external_lex_state = 2}, - [2994] = {.lex_state = 182, .external_lex_state = 2}, - [2995] = {.lex_state = 105, .external_lex_state = 2}, - [2996] = {.lex_state = 182, .external_lex_state = 2}, - [2997] = {.lex_state = 182, .external_lex_state = 2}, - [2998] = {.lex_state = 182, .external_lex_state = 2}, - [2999] = {.lex_state = 182, .external_lex_state = 2}, - [3000] = {.lex_state = 231, .external_lex_state = 2}, - [3001] = {.lex_state = 231, .external_lex_state = 2}, - [3002] = {.lex_state = 231, .external_lex_state = 2}, - [3003] = {.lex_state = 231, .external_lex_state = 2}, - [3004] = {.lex_state = 182, .external_lex_state = 2}, - [3005] = {.lex_state = 231, .external_lex_state = 2}, - [3006] = {.lex_state = 231, .external_lex_state = 2}, - [3007] = {.lex_state = 231, .external_lex_state = 2}, - [3008] = {.lex_state = 182, .external_lex_state = 2}, - [3009] = {.lex_state = 231, .external_lex_state = 2}, - [3010] = {.lex_state = 231, .external_lex_state = 2}, - [3011] = {.lex_state = 231, .external_lex_state = 2}, - [3012] = {.lex_state = 231, .external_lex_state = 2}, - [3013] = {.lex_state = 231, .external_lex_state = 2}, - [3014] = {.lex_state = 231, .external_lex_state = 2}, - [3015] = {.lex_state = 231, .external_lex_state = 2}, - [3016] = {.lex_state = 231, .external_lex_state = 2}, - [3017] = {.lex_state = 265, .external_lex_state = 2}, - [3018] = {.lex_state = 200, .external_lex_state = 2}, - [3019] = {.lex_state = 200, .external_lex_state = 2}, - [3020] = {.lex_state = 200, .external_lex_state = 2}, - [3021] = {.lex_state = 200, .external_lex_state = 2}, - [3022] = {.lex_state = 200, .external_lex_state = 2}, - [3023] = {.lex_state = 200, .external_lex_state = 2}, - [3024] = {.lex_state = 200, .external_lex_state = 2}, - [3025] = {.lex_state = 200, .external_lex_state = 2}, - [3026] = {.lex_state = 200, .external_lex_state = 2}, - [3027] = {.lex_state = 200, .external_lex_state = 2}, - [3028] = {.lex_state = 265, .external_lex_state = 2}, - [3029] = {.lex_state = 265, .external_lex_state = 2}, - [3030] = {.lex_state = 200, .external_lex_state = 2}, - [3031] = {.lex_state = 200, .external_lex_state = 2}, - [3032] = {.lex_state = 265, .external_lex_state = 2}, - [3033] = {.lex_state = 200, .external_lex_state = 2}, - [3034] = {.lex_state = 200, .external_lex_state = 2}, - [3035] = {.lex_state = 200, .external_lex_state = 2}, - [3036] = {.lex_state = 200, .external_lex_state = 2}, - [3037] = {.lex_state = 1683}, - [3038] = {.lex_state = 200, .external_lex_state = 2}, - [3039] = {.lex_state = 200, .external_lex_state = 2}, - [3040] = {.lex_state = 1683}, - [3041] = {.lex_state = 200, .external_lex_state = 2}, - [3042] = {.lex_state = 1683}, - [3043] = {.lex_state = 1683}, - [3044] = {.lex_state = 200, .external_lex_state = 2}, - [3045] = {.lex_state = 1681}, - [3046] = {.lex_state = 200, .external_lex_state = 2}, - [3047] = {.lex_state = 200, .external_lex_state = 2}, - [3048] = {.lex_state = 1681}, - [3049] = {.lex_state = 221, .external_lex_state = 2}, - [3050] = {.lex_state = 45, .external_lex_state = 2}, - [3051] = {.lex_state = 200, .external_lex_state = 2}, - [3052] = {.lex_state = 200, .external_lex_state = 2}, - [3053] = {.lex_state = 221, .external_lex_state = 2}, - [3054] = {.lex_state = 200, .external_lex_state = 2}, - [3055] = {.lex_state = 185, .external_lex_state = 2}, - [3056] = {.lex_state = 221, .external_lex_state = 2}, - [3057] = {.lex_state = 200, .external_lex_state = 2}, - [3058] = {.lex_state = 221, .external_lex_state = 2}, - [3059] = {.lex_state = 185, .external_lex_state = 2}, - [3060] = {.lex_state = 195, .external_lex_state = 2}, - [3061] = {.lex_state = 221, .external_lex_state = 2}, - [3062] = {.lex_state = 265, .external_lex_state = 2}, - [3063] = {.lex_state = 221, .external_lex_state = 2}, - [3064] = {.lex_state = 195, .external_lex_state = 2}, - [3065] = {.lex_state = 200, .external_lex_state = 2}, - [3066] = {.lex_state = 221, .external_lex_state = 2}, - [3067] = {.lex_state = 200, .external_lex_state = 2}, - [3068] = {.lex_state = 221, .external_lex_state = 2}, - [3069] = {.lex_state = 200, .external_lex_state = 2}, - [3070] = {.lex_state = 200, .external_lex_state = 2}, - [3071] = {.lex_state = 200, .external_lex_state = 2}, - [3072] = {.lex_state = 182, .external_lex_state = 2}, - [3073] = {.lex_state = 182, .external_lex_state = 2}, - [3074] = {.lex_state = 200, .external_lex_state = 2}, - [3075] = {.lex_state = 200, .external_lex_state = 2}, - [3076] = {.lex_state = 200, .external_lex_state = 2}, - [3077] = {.lex_state = 200, .external_lex_state = 2}, - [3078] = {.lex_state = 200, .external_lex_state = 2}, - [3079] = {.lex_state = 200, .external_lex_state = 2}, - [3080] = {.lex_state = 200, .external_lex_state = 2}, - [3081] = {.lex_state = 200, .external_lex_state = 2}, - [3082] = {.lex_state = 200, .external_lex_state = 2}, - [3083] = {.lex_state = 200, .external_lex_state = 2}, - [3084] = {.lex_state = 200, .external_lex_state = 2}, - [3085] = {.lex_state = 200, .external_lex_state = 2}, - [3086] = {.lex_state = 200, .external_lex_state = 2}, - [3087] = {.lex_state = 200, .external_lex_state = 2}, - [3088] = {.lex_state = 200, .external_lex_state = 2}, - [3089] = {.lex_state = 200, .external_lex_state = 2}, - [3090] = {.lex_state = 200, .external_lex_state = 2}, - [3091] = {.lex_state = 200, .external_lex_state = 2}, - [3092] = {.lex_state = 200, .external_lex_state = 2}, - [3093] = {.lex_state = 221, .external_lex_state = 2}, - [3094] = {.lex_state = 36, .external_lex_state = 2}, - [3095] = {.lex_state = 186, .external_lex_state = 2}, - [3096] = {.lex_state = 200, .external_lex_state = 2}, - [3097] = {.lex_state = 200, .external_lex_state = 2}, - [3098] = {.lex_state = 221, .external_lex_state = 2}, - [3099] = {.lex_state = 195, .external_lex_state = 2}, - [3100] = {.lex_state = 1683}, - [3101] = {.lex_state = 45, .external_lex_state = 2}, - [3102] = {.lex_state = 45, .external_lex_state = 2}, - [3103] = {.lex_state = 45, .external_lex_state = 2}, - [3104] = {.lex_state = 45, .external_lex_state = 2}, - [3105] = {.lex_state = 45, .external_lex_state = 2}, - [3106] = {.lex_state = 45, .external_lex_state = 2}, - [3107] = {.lex_state = 45, .external_lex_state = 2}, - [3108] = {.lex_state = 45, .external_lex_state = 2}, - [3109] = {.lex_state = 45, .external_lex_state = 2}, - [3110] = {.lex_state = 45, .external_lex_state = 2}, - [3111] = {.lex_state = 45, .external_lex_state = 2}, - [3112] = {.lex_state = 45, .external_lex_state = 2}, - [3113] = {.lex_state = 45, .external_lex_state = 2}, - [3114] = {.lex_state = 45, .external_lex_state = 2}, - [3115] = {.lex_state = 45, .external_lex_state = 2}, - [3116] = {.lex_state = 45, .external_lex_state = 2}, - [3117] = {.lex_state = 45, .external_lex_state = 2}, - [3118] = {.lex_state = 45, .external_lex_state = 2}, - [3119] = {.lex_state = 45, .external_lex_state = 2}, - [3120] = {.lex_state = 45, .external_lex_state = 2}, - [3121] = {.lex_state = 45, .external_lex_state = 2}, - [3122] = {.lex_state = 45, .external_lex_state = 2}, - [3123] = {.lex_state = 45, .external_lex_state = 2}, - [3124] = {.lex_state = 45, .external_lex_state = 2}, - [3125] = {.lex_state = 45, .external_lex_state = 2}, - [3126] = {.lex_state = 45, .external_lex_state = 2}, - [3127] = {.lex_state = 45, .external_lex_state = 2}, - [3128] = {.lex_state = 45, .external_lex_state = 2}, - [3129] = {.lex_state = 45, .external_lex_state = 2}, - [3130] = {.lex_state = 45, .external_lex_state = 2}, - [3131] = {.lex_state = 45, .external_lex_state = 2}, - [3132] = {.lex_state = 45, .external_lex_state = 2}, - [3133] = {.lex_state = 45, .external_lex_state = 2}, - [3134] = {.lex_state = 45, .external_lex_state = 2}, - [3135] = {.lex_state = 45, .external_lex_state = 2}, - [3136] = {.lex_state = 45, .external_lex_state = 2}, - [3137] = {.lex_state = 45, .external_lex_state = 2}, - [3138] = {.lex_state = 45, .external_lex_state = 2}, - [3139] = {.lex_state = 45, .external_lex_state = 2}, - [3140] = {.lex_state = 45, .external_lex_state = 2}, - [3141] = {.lex_state = 45, .external_lex_state = 2}, - [3142] = {.lex_state = 45, .external_lex_state = 2}, - [3143] = {.lex_state = 45, .external_lex_state = 2}, - [3144] = {.lex_state = 45, .external_lex_state = 2}, - [3145] = {.lex_state = 45, .external_lex_state = 2}, - [3146] = {.lex_state = 45, .external_lex_state = 2}, - [3147] = {.lex_state = 45, .external_lex_state = 2}, - [3148] = {.lex_state = 45, .external_lex_state = 2}, - [3149] = {.lex_state = 1683}, - [3150] = {.lex_state = 45, .external_lex_state = 2}, - [3151] = {.lex_state = 45, .external_lex_state = 2}, - [3152] = {.lex_state = 45, .external_lex_state = 2}, - [3153] = {.lex_state = 45, .external_lex_state = 2}, - [3154] = {.lex_state = 45, .external_lex_state = 2}, - [3155] = {.lex_state = 45, .external_lex_state = 2}, - [3156] = {.lex_state = 45, .external_lex_state = 2}, - [3157] = {.lex_state = 45, .external_lex_state = 2}, - [3158] = {.lex_state = 1683}, - [3159] = {.lex_state = 45, .external_lex_state = 2}, - [3160] = {.lex_state = 45, .external_lex_state = 2}, - [3161] = {.lex_state = 1683}, - [3162] = {.lex_state = 1683}, - [3163] = {.lex_state = 36, .external_lex_state = 2}, - [3164] = {.lex_state = 45, .external_lex_state = 2}, - [3165] = {.lex_state = 45, .external_lex_state = 2}, - [3166] = {.lex_state = 45, .external_lex_state = 2}, - [3167] = {.lex_state = 45, .external_lex_state = 2}, - [3168] = {.lex_state = 45, .external_lex_state = 2}, - [3169] = {.lex_state = 1676}, - [3170] = {.lex_state = 45, .external_lex_state = 2}, - [3171] = {.lex_state = 71}, - [3172] = {.lex_state = 71}, - [3173] = {.lex_state = 71}, - [3174] = {.lex_state = 1690}, - [3175] = {.lex_state = 1676}, - [3176] = {.lex_state = 71}, - [3177] = {.lex_state = 71}, - [3178] = {.lex_state = 71}, - [3179] = {.lex_state = 71}, - [3180] = {.lex_state = 71}, - [3181] = {.lex_state = 71}, - [3182] = {.lex_state = 71}, - [3183] = {.lex_state = 71}, - [3184] = {.lex_state = 71}, - [3185] = {.lex_state = 71}, - [3186] = {.lex_state = 71}, - [3187] = {.lex_state = 71}, - [3188] = {.lex_state = 71}, - [3189] = {.lex_state = 1690}, - [3190] = {.lex_state = 1760}, - [3191] = {.lex_state = 1688}, - [3192] = {.lex_state = 1687}, - [3193] = {.lex_state = 1687}, - [3194] = {.lex_state = 1687}, - [3195] = {.lex_state = 1687}, - [3196] = {.lex_state = 71}, - [3197] = {.lex_state = 1688}, - [3198] = {.lex_state = 1687}, - [3199] = {.lex_state = 1687}, - [3200] = {.lex_state = 1685}, - [3201] = {.lex_state = 24}, - [3202] = {.lex_state = 24}, - [3203] = {.lex_state = 1687}, - [3204] = {.lex_state = 1687}, - [3205] = {.lex_state = 1687}, - [3206] = {.lex_state = 71}, - [3207] = {.lex_state = 1687}, - [3208] = {.lex_state = 1754}, - [3209] = {.lex_state = 1676}, - [3210] = {.lex_state = 1676}, - [3211] = {.lex_state = 1676}, - [3212] = {.lex_state = 1676}, - [3213] = {.lex_state = 1676}, - [3214] = {.lex_state = 1676}, - [3215] = {.lex_state = 1676}, - [3216] = {.lex_state = 1676}, - [3217] = {.lex_state = 1676}, - [3218] = {.lex_state = 1676}, - [3219] = {.lex_state = 1676}, - [3220] = {.lex_state = 1676}, - [3221] = {.lex_state = 1676}, - [3222] = {.lex_state = 1676}, - [3223] = {.lex_state = 1676}, - [3224] = {.lex_state = 1676}, - [3225] = {.lex_state = 1676}, - [3226] = {.lex_state = 1676}, - [3227] = {.lex_state = 1676}, - [3228] = {.lex_state = 1676}, - [3229] = {.lex_state = 1676}, - [3230] = {.lex_state = 1676}, - [3231] = {.lex_state = 1676}, - [3232] = {.lex_state = 1676}, - [3233] = {.lex_state = 1676}, - [3234] = {.lex_state = 1676}, - [3235] = {.lex_state = 1676}, - [3236] = {.lex_state = 1676}, - [3237] = {.lex_state = 1676}, - [3238] = {.lex_state = 1676}, - [3239] = {.lex_state = 1676}, - [3240] = {.lex_state = 1676}, - [3241] = {.lex_state = 1676}, - [3242] = {.lex_state = 1676}, - [3243] = {.lex_state = 1676}, - [3244] = {.lex_state = 1676}, - [3245] = {.lex_state = 1676}, - [3246] = {.lex_state = 1676}, - [3247] = {.lex_state = 1676}, - [3248] = {.lex_state = 1676}, - [3249] = {.lex_state = 1676}, - [3250] = {.lex_state = 1676}, - [3251] = {.lex_state = 1676}, - [3252] = {.lex_state = 1676}, - [3253] = {.lex_state = 1676}, - [3254] = {.lex_state = 1676}, - [3255] = {.lex_state = 1676}, - [3256] = {.lex_state = 1676}, - [3257] = {.lex_state = 1685}, - [3258] = {.lex_state = 1676}, - [3259] = {.lex_state = 1676}, - [3260] = {.lex_state = 1676}, - [3261] = {.lex_state = 1676}, - [3262] = {.lex_state = 1676}, - [3263] = {.lex_state = 1676}, - [3264] = {.lex_state = 1676}, - [3265] = {.lex_state = 1676}, - [3266] = {.lex_state = 1676}, - [3267] = {.lex_state = 1676}, - [3268] = {.lex_state = 1676}, - [3269] = {.lex_state = 1676}, - [3270] = {.lex_state = 1676}, - [3271] = {.lex_state = 71}, - [3272] = {.lex_state = 1676}, - [3273] = {.lex_state = 1676}, - [3274] = {.lex_state = 71}, - [3275] = {.lex_state = 1676}, - [3276] = {.lex_state = 1676}, - [3277] = {.lex_state = 1676}, - [3278] = {.lex_state = 24}, - [3279] = {.lex_state = 1676}, - [3280] = {.lex_state = 1676}, - [3281] = {.lex_state = 1676}, - [3282] = {.lex_state = 1676}, - [3283] = {.lex_state = 1676}, - [3284] = {.lex_state = 1676}, - [3285] = {.lex_state = 1754}, - [3286] = {.lex_state = 1754}, - [3287] = {.lex_state = 1676}, - [3288] = {.lex_state = 71}, - [3289] = {.lex_state = 71}, - [3290] = {.lex_state = 1676}, - [3291] = {.lex_state = 1754}, - [3292] = {.lex_state = 71}, - [3293] = {.lex_state = 71}, - [3294] = {.lex_state = 1676}, - [3295] = {.lex_state = 1676}, - [3296] = {.lex_state = 1676}, - [3297] = {.lex_state = 1676}, - [3298] = {.lex_state = 71}, - [3299] = {.lex_state = 71}, - [3300] = {.lex_state = 1676}, - [3301] = {.lex_state = 1676}, - [3302] = {.lex_state = 1676}, - [3303] = {.lex_state = 1676}, - [3304] = {.lex_state = 1676}, - [3305] = {.lex_state = 1676}, - [3306] = {.lex_state = 1676}, - [3307] = {.lex_state = 1676}, - [3308] = {.lex_state = 1676}, - [3309] = {.lex_state = 1676}, - [3310] = {.lex_state = 1676}, - [3311] = {.lex_state = 1676}, - [3312] = {.lex_state = 1676}, - [3313] = {.lex_state = 1676}, - [3314] = {.lex_state = 71}, - [3315] = {.lex_state = 71}, - [3316] = {.lex_state = 1676}, - [3317] = {.lex_state = 1676}, - [3318] = {.lex_state = 71}, - [3319] = {.lex_state = 1676}, - [3320] = {.lex_state = 1676}, - [3321] = {.lex_state = 1676}, - [3322] = {.lex_state = 1676}, - [3323] = {.lex_state = 1676}, - [3324] = {.lex_state = 1676}, - [3325] = {.lex_state = 1676}, - [3326] = {.lex_state = 1676}, - [3327] = {.lex_state = 1676}, - [3328] = {.lex_state = 1754}, - [3329] = {.lex_state = 24}, - [3330] = {.lex_state = 1676}, - [3331] = {.lex_state = 1676}, - [3332] = {.lex_state = 1676}, - [3333] = {.lex_state = 1754}, - [3334] = {.lex_state = 1676}, - [3335] = {.lex_state = 1676}, - [3336] = {.lex_state = 1676}, - [3337] = {.lex_state = 71}, - [3338] = {.lex_state = 71}, - [3339] = {.lex_state = 24}, - [3340] = {.lex_state = 247, .external_lex_state = 2}, - [3341] = {.lex_state = 243, .external_lex_state = 2}, - [3342] = {.lex_state = 24}, - [3343] = {.lex_state = 71}, - [3344] = {.lex_state = 71}, - [3345] = {.lex_state = 24}, - [3346] = {.lex_state = 1754}, - [3347] = {.lex_state = 1754}, - [3348] = {.lex_state = 1754}, - [3349] = {.lex_state = 71}, - [3350] = {.lex_state = 1676}, - [3351] = {.lex_state = 1676}, - [3352] = {.lex_state = 24}, - [3353] = {.lex_state = 24}, - [3354] = {.lex_state = 24}, - [3355] = {.lex_state = 24}, - [3356] = {.lex_state = 24}, - [3357] = {.lex_state = 71}, - [3358] = {.lex_state = 1754}, - [3359] = {.lex_state = 71}, - [3360] = {.lex_state = 1676}, - [3361] = {.lex_state = 24}, - [3362] = {.lex_state = 71}, - [3363] = {.lex_state = 1676}, - [3364] = {.lex_state = 1676}, - [3365] = {.lex_state = 1676}, - [3366] = {.lex_state = 1676}, - [3367] = {.lex_state = 1676}, - [3368] = {.lex_state = 1676}, - [3369] = {.lex_state = 1676}, - [3370] = {.lex_state = 1676}, - [3371] = {.lex_state = 1676}, - [3372] = {.lex_state = 1676}, - [3373] = {.lex_state = 1676}, - [3374] = {.lex_state = 1676}, - [3375] = {.lex_state = 71}, - [3376] = {.lex_state = 24}, - [3377] = {.lex_state = 71}, - [3378] = {.lex_state = 1689}, - [3379] = {.lex_state = 71}, - [3380] = {.lex_state = 1754}, - [3381] = {.lex_state = 94}, - [3382] = {.lex_state = 244, .external_lex_state = 2}, - [3383] = {.lex_state = 239}, - [3384] = {.lex_state = 93}, - [3385] = {.lex_state = 7}, - [3386] = {.lex_state = 1696}, - [3387] = {.lex_state = 244, .external_lex_state = 2}, - [3388] = {.lex_state = 18}, - [3389] = {.lex_state = 7}, - [3390] = {.lex_state = 7}, - [3391] = {.lex_state = 19}, - [3392] = {.lex_state = 1689}, - [3393] = {.lex_state = 1689}, - [3394] = {.lex_state = 239}, - [3395] = {.lex_state = 71}, - [3396] = {.lex_state = 95}, - [3397] = {.lex_state = 245, .external_lex_state = 2}, - [3398] = {.lex_state = 95}, - [3399] = {.lex_state = 71}, - [3400] = {.lex_state = 71}, - [3401] = {.lex_state = 240}, - [3402] = {.lex_state = 391}, - [3403] = {.lex_state = 1754}, - [3404] = {.lex_state = 245, .external_lex_state = 2}, - [3405] = {.lex_state = 21}, - [3406] = {.lex_state = 1754}, - [3407] = {.lex_state = 71}, - [3408] = {.lex_state = 1754}, - [3409] = {.lex_state = 245, .external_lex_state = 2}, - [3410] = {.lex_state = 96}, - [3411] = {.lex_state = 20}, - [3412] = {.lex_state = 240}, - [3413] = {.lex_state = 1689}, - [3414] = {.lex_state = 7}, - [3415] = {.lex_state = 7}, - [3416] = {.lex_state = 245, .external_lex_state = 2}, - [3417] = {.lex_state = 20}, - [3418] = {.lex_state = 89}, - [3419] = {.lex_state = 90}, - [3420] = {.lex_state = 245, .external_lex_state = 2}, - [3421] = {.lex_state = 1689}, - [3422] = {.lex_state = 1689}, - [3423] = {.lex_state = 96}, - [3424] = {.lex_state = 21}, - [3425] = {.lex_state = 21}, - [3426] = {.lex_state = 21}, - [3427] = {.lex_state = 91}, - [3428] = {.lex_state = 96}, - [3429] = {.lex_state = 91}, - [3430] = {.lex_state = 391}, - [3431] = {.lex_state = 96}, - [3432] = {.lex_state = 24}, - [3433] = {.lex_state = 24}, - [3434] = {.lex_state = 24}, - [3435] = {.lex_state = 24}, - [3436] = {.lex_state = 1690}, - [3437] = {.lex_state = 24}, - [3438] = {.lex_state = 24}, - [3439] = {.lex_state = 391}, - [3440] = {.lex_state = 24}, - [3441] = {.lex_state = 24}, - [3442] = {.lex_state = 391}, - [3443] = {.lex_state = 1754}, - [3444] = {.lex_state = 24}, - [3445] = {.lex_state = 96}, - [3446] = {.lex_state = 391}, - [3447] = {.lex_state = 391}, - [3448] = {.lex_state = 24}, - [3449] = {.lex_state = 24}, - [3450] = {.lex_state = 24}, - [3451] = {.lex_state = 92}, - [3452] = {.lex_state = 24}, - [3453] = {.lex_state = 24}, - [3454] = {.lex_state = 24}, - [3455] = {.lex_state = 24}, - [3456] = {.lex_state = 21}, - [3457] = {.lex_state = 1754}, - [3458] = {.lex_state = 24}, - [3459] = {.lex_state = 24}, - [3460] = {.lex_state = 92}, - [3461] = {.lex_state = 1690}, - [3462] = {.lex_state = 92}, - [3463] = {.lex_state = 71}, - [3464] = {.lex_state = 14, .external_lex_state = 2}, - [3465] = {.lex_state = 24}, - [3466] = {.lex_state = 92}, - [3467] = {.lex_state = 14, .external_lex_state = 2}, - [3468] = {.lex_state = 14, .external_lex_state = 2}, - [3469] = {.lex_state = 14, .external_lex_state = 2}, - [3470] = {.lex_state = 24}, - [3471] = {.lex_state = 24}, - [3472] = {.lex_state = 92}, - [3473] = {.lex_state = 14, .external_lex_state = 2}, - [3474] = {.lex_state = 14, .external_lex_state = 2}, - [3475] = {.lex_state = 14, .external_lex_state = 2}, - [3476] = {.lex_state = 24}, - [3477] = {.lex_state = 14, .external_lex_state = 2}, - [3478] = {.lex_state = 14, .external_lex_state = 2}, - [3479] = {.lex_state = 391}, - [3480] = {.lex_state = 14, .external_lex_state = 2}, - [3481] = {.lex_state = 14, .external_lex_state = 2}, - [3482] = {.lex_state = 24}, - [3483] = {.lex_state = 1689}, - [3484] = {.lex_state = 1689}, - [3485] = {.lex_state = 14, .external_lex_state = 2}, - [3486] = {.lex_state = 14, .external_lex_state = 2}, - [3487] = {.lex_state = 14, .external_lex_state = 2}, - [3488] = {.lex_state = 14, .external_lex_state = 2}, - [3489] = {.lex_state = 14, .external_lex_state = 2}, - [3490] = {.lex_state = 14, .external_lex_state = 2}, - [3491] = {.lex_state = 14, .external_lex_state = 2}, - [3492] = {.lex_state = 14, .external_lex_state = 2}, - [3493] = {.lex_state = 14, .external_lex_state = 2}, - [3494] = {.lex_state = 14, .external_lex_state = 2}, - [3495] = {.lex_state = 14, .external_lex_state = 2}, - [3496] = {.lex_state = 14, .external_lex_state = 2}, - [3497] = {.lex_state = 1689}, - [3498] = {.lex_state = 24}, - [3499] = {.lex_state = 24}, - [3500] = {.lex_state = 24}, - [3501] = {.lex_state = 24}, - [3502] = {.lex_state = 24}, - [3503] = {.lex_state = 24}, - [3504] = {.lex_state = 101}, - [3505] = {.lex_state = 24}, - [3506] = {.lex_state = 24}, - [3507] = {.lex_state = 101}, - [3508] = {.lex_state = 24}, - [3509] = {.lex_state = 24}, - [3510] = {.lex_state = 24}, - [3511] = {.lex_state = 24}, - [3512] = {.lex_state = 24}, - [3513] = {.lex_state = 24}, - [3514] = {.lex_state = 24}, - [3515] = {.lex_state = 24}, - [3516] = {.lex_state = 1689}, - [3517] = {.lex_state = 14, .external_lex_state = 2}, - [3518] = {.lex_state = 24}, - [3519] = {.lex_state = 24}, - [3520] = {.lex_state = 24}, - [3521] = {.lex_state = 24}, - [3522] = {.lex_state = 1689}, - [3523] = {.lex_state = 228, .external_lex_state = 2}, - [3524] = {.lex_state = 24}, - [3525] = {.lex_state = 1689}, - [3526] = {.lex_state = 24}, - [3527] = {.lex_state = 24}, - [3528] = {.lex_state = 24}, - [3529] = {.lex_state = 14, .external_lex_state = 2}, - [3530] = {.lex_state = 24}, - [3531] = {.lex_state = 24}, - [3532] = {.lex_state = 24}, - [3533] = {.lex_state = 24}, - [3534] = {.lex_state = 24}, - [3535] = {.lex_state = 1689}, - [3536] = {.lex_state = 24}, - [3537] = {.lex_state = 24}, - [3538] = {.lex_state = 1689}, - [3539] = {.lex_state = 24}, - [3540] = {.lex_state = 24}, - [3541] = {.lex_state = 24}, - [3542] = {.lex_state = 24}, - [3543] = {.lex_state = 24}, - [3544] = {.lex_state = 24}, - [3545] = {.lex_state = 71}, - [3546] = {.lex_state = 24}, - [3547] = {.lex_state = 24}, - [3548] = {.lex_state = 24}, - [3549] = {.lex_state = 1676}, - [3550] = {.lex_state = 24}, - [3551] = {.lex_state = 14, .external_lex_state = 2}, - [3552] = {.lex_state = 1696}, - [3553] = {.lex_state = 3181}, - [3554] = {.lex_state = 24}, - [3555] = {.lex_state = 3179}, - [3556] = {.lex_state = 1689}, - [3557] = {.lex_state = 1689}, - [3558] = {.lex_state = 1689}, - [3559] = {.lex_state = 1696}, - [3560] = {.lex_state = 1696}, - [3561] = {.lex_state = 24}, - [3562] = {.lex_state = 1696}, - [3563] = {.lex_state = 1696}, - [3564] = {.lex_state = 1696}, - [3565] = {.lex_state = 101}, - [3566] = {.lex_state = 1696}, - [3567] = {.lex_state = 14, .external_lex_state = 2}, - [3568] = {.lex_state = 1689}, - [3569] = {.lex_state = 1696}, - [3570] = {.lex_state = 1696}, - [3571] = {.lex_state = 1696}, - [3572] = {.lex_state = 1676}, - [3573] = {.lex_state = 14, .external_lex_state = 2}, - [3574] = {.lex_state = 1689}, - [3575] = {.lex_state = 1696}, - [3576] = {.lex_state = 1696}, - [3577] = {.lex_state = 1696}, - [3578] = {.lex_state = 1696}, - [3579] = {.lex_state = 14, .external_lex_state = 2}, - [3580] = {.lex_state = 1696}, - [3581] = {.lex_state = 1696}, - [3582] = {.lex_state = 1696}, - [3583] = {.lex_state = 1696}, - [3584] = {.lex_state = 1696}, - [3585] = {.lex_state = 24}, - [3586] = {.lex_state = 1696}, - [3587] = {.lex_state = 7}, - [3588] = {.lex_state = 101}, - [3589] = {.lex_state = 14, .external_lex_state = 2}, - [3590] = {.lex_state = 14, .external_lex_state = 2}, - [3591] = {.lex_state = 101}, - [3592] = {.lex_state = 1696}, - [3593] = {.lex_state = 101}, - [3594] = {.lex_state = 1696}, - [3595] = {.lex_state = 237, .external_lex_state = 2}, - [3596] = {.lex_state = 1696}, - [3597] = {.lex_state = 1689}, - [3598] = {.lex_state = 1689}, - [3599] = {.lex_state = 1689}, - [3600] = {.lex_state = 1689}, - [3601] = {.lex_state = 1696}, - [3602] = {.lex_state = 1696}, - [3603] = {.lex_state = 1689}, - [3604] = {.lex_state = 101}, - [3605] = {.lex_state = 101}, - [3606] = {.lex_state = 262, .external_lex_state = 2}, - [3607] = {.lex_state = 1676}, - [3608] = {.lex_state = 24}, - [3609] = {.lex_state = 14, .external_lex_state = 2}, - [3610] = {.lex_state = 24}, - [3611] = {.lex_state = 235, .external_lex_state = 2}, - [3612] = {.lex_state = 24}, - [3613] = {.lex_state = 24}, - [3614] = {.lex_state = 1676}, - [3615] = {.lex_state = 14, .external_lex_state = 2}, - [3616] = {.lex_state = 262, .external_lex_state = 2}, - [3617] = {.lex_state = 262, .external_lex_state = 2}, - [3618] = {.lex_state = 14, .external_lex_state = 2}, - [3619] = {.lex_state = 262, .external_lex_state = 2}, - [3620] = {.lex_state = 3184}, - [3621] = {.lex_state = 14, .external_lex_state = 2}, - [3622] = {.lex_state = 24}, - [3623] = {.lex_state = 101}, - [3624] = {.lex_state = 101}, - [3625] = {.lex_state = 24}, + [2903] = {.lex_state = 218, .external_lex_state = 2}, + [2904] = {.lex_state = 218, .external_lex_state = 2}, + [2905] = {.lex_state = 218, .external_lex_state = 2}, + [2906] = {.lex_state = 237, .external_lex_state = 2}, + [2907] = {.lex_state = 233, .external_lex_state = 2}, + [2908] = {.lex_state = 233, .external_lex_state = 2}, + [2909] = {.lex_state = 233, .external_lex_state = 2}, + [2910] = {.lex_state = 243, .external_lex_state = 2}, + [2911] = {.lex_state = 243, .external_lex_state = 2}, + [2912] = {.lex_state = 170, .external_lex_state = 2}, + [2913] = {.lex_state = 217, .external_lex_state = 2}, + [2914] = {.lex_state = 228, .external_lex_state = 2}, + [2915] = {.lex_state = 228, .external_lex_state = 2}, + [2916] = {.lex_state = 264, .external_lex_state = 2}, + [2917] = {.lex_state = 175, .external_lex_state = 2}, + [2918] = {.lex_state = 55, .external_lex_state = 2}, + [2919] = {.lex_state = 264, .external_lex_state = 2}, + [2920] = {.lex_state = 265, .external_lex_state = 2}, + [2921] = {.lex_state = 264, .external_lex_state = 2}, + [2922] = {.lex_state = 264, .external_lex_state = 2}, + [2923] = {.lex_state = 264, .external_lex_state = 2}, + [2924] = {.lex_state = 218, .external_lex_state = 2}, + [2925] = {.lex_state = 229, .external_lex_state = 2}, + [2926] = {.lex_state = 221, .external_lex_state = 2}, + [2927] = {.lex_state = 221, .external_lex_state = 2}, + [2928] = {.lex_state = 221, .external_lex_state = 2}, + [2929] = {.lex_state = 221, .external_lex_state = 2}, + [2930] = {.lex_state = 221, .external_lex_state = 2}, + [2931] = {.lex_state = 221, .external_lex_state = 2}, + [2932] = {.lex_state = 221, .external_lex_state = 2}, + [2933] = {.lex_state = 221, .external_lex_state = 2}, + [2934] = {.lex_state = 221, .external_lex_state = 2}, + [2935] = {.lex_state = 221, .external_lex_state = 2}, + [2936] = {.lex_state = 221, .external_lex_state = 2}, + [2937] = {.lex_state = 221, .external_lex_state = 2}, + [2938] = {.lex_state = 221, .external_lex_state = 2}, + [2939] = {.lex_state = 229, .external_lex_state = 2}, + [2940] = {.lex_state = 229, .external_lex_state = 2}, + [2941] = {.lex_state = 221, .external_lex_state = 2}, + [2942] = {.lex_state = 229, .external_lex_state = 2}, + [2943] = {.lex_state = 276, .external_lex_state = 2}, + [2944] = {.lex_state = 276, .external_lex_state = 2}, + [2945] = {.lex_state = 221, .external_lex_state = 2}, + [2946] = {.lex_state = 220, .external_lex_state = 2}, + [2947] = {.lex_state = 221, .external_lex_state = 2}, + [2948] = {.lex_state = 221, .external_lex_state = 2}, + [2949] = {.lex_state = 220, .external_lex_state = 2}, + [2950] = {.lex_state = 220, .external_lex_state = 2}, + [2951] = {.lex_state = 276, .external_lex_state = 2}, + [2952] = {.lex_state = 276, .external_lex_state = 2}, + [2953] = {.lex_state = 276, .external_lex_state = 2}, + [2954] = {.lex_state = 276, .external_lex_state = 2}, + [2955] = {.lex_state = 221, .external_lex_state = 2}, + [2956] = {.lex_state = 229, .external_lex_state = 2}, + [2957] = {.lex_state = 1704}, + [2958] = {.lex_state = 1706}, + [2959] = {.lex_state = 1706}, + [2960] = {.lex_state = 54, .external_lex_state = 2}, + [2961] = {.lex_state = 237, .external_lex_state = 2}, + [2962] = {.lex_state = 237, .external_lex_state = 2}, + [2963] = {.lex_state = 244, .external_lex_state = 2}, + [2964] = {.lex_state = 229, .external_lex_state = 2}, + [2965] = {.lex_state = 221, .external_lex_state = 2}, + [2966] = {.lex_state = 229, .external_lex_state = 2}, + [2967] = {.lex_state = 244, .external_lex_state = 2}, + [2968] = {.lex_state = 244, .external_lex_state = 2}, + [2969] = {.lex_state = 271, .external_lex_state = 2}, + [2970] = {.lex_state = 171, .external_lex_state = 2}, + [2971] = {.lex_state = 171, .external_lex_state = 2}, + [2972] = {.lex_state = 215, .external_lex_state = 2}, + [2973] = {.lex_state = 53, .external_lex_state = 2}, + [2974] = {.lex_state = 215, .external_lex_state = 2}, + [2975] = {.lex_state = 244, .external_lex_state = 2}, + [2976] = {.lex_state = 229, .external_lex_state = 2}, + [2977] = {.lex_state = 229, .external_lex_state = 2}, + [2978] = {.lex_state = 51, .external_lex_state = 2}, + [2979] = {.lex_state = 229, .external_lex_state = 2}, + [2980] = {.lex_state = 229, .external_lex_state = 2}, + [2981] = {.lex_state = 229, .external_lex_state = 2}, + [2982] = {.lex_state = 229, .external_lex_state = 2}, + [2983] = {.lex_state = 271, .external_lex_state = 2}, + [2984] = {.lex_state = 273, .external_lex_state = 2}, + [2985] = {.lex_state = 229, .external_lex_state = 2}, + [2986] = {.lex_state = 271, .external_lex_state = 2}, + [2987] = {.lex_state = 229, .external_lex_state = 2}, + [2988] = {.lex_state = 271, .external_lex_state = 2}, + [2989] = {.lex_state = 244, .external_lex_state = 2}, + [2990] = {.lex_state = 271, .external_lex_state = 2}, + [2991] = {.lex_state = 271, .external_lex_state = 2}, + [2992] = {.lex_state = 271, .external_lex_state = 2}, + [2993] = {.lex_state = 221, .external_lex_state = 2}, + [2994] = {.lex_state = 221, .external_lex_state = 2}, + [2995] = {.lex_state = 271, .external_lex_state = 2}, + [2996] = {.lex_state = 271, .external_lex_state = 2}, + [2997] = {.lex_state = 55, .external_lex_state = 2}, + [2998] = {.lex_state = 244, .external_lex_state = 2}, + [2999] = {.lex_state = 235, .external_lex_state = 2}, + [3000] = {.lex_state = 289, .external_lex_state = 2}, + [3001] = {.lex_state = 250, .external_lex_state = 2}, + [3002] = {.lex_state = 172, .external_lex_state = 2}, + [3003] = {.lex_state = 290, .external_lex_state = 2}, + [3004] = {.lex_state = 131, .external_lex_state = 2}, + [3005] = {.lex_state = 172, .external_lex_state = 2}, + [3006] = {.lex_state = 277, .external_lex_state = 2}, + [3007] = {.lex_state = 172, .external_lex_state = 2}, + [3008] = {.lex_state = 172, .external_lex_state = 2}, + [3009] = {.lex_state = 216, .external_lex_state = 2}, + [3010] = {.lex_state = 172, .external_lex_state = 2}, + [3011] = {.lex_state = 172, .external_lex_state = 2}, + [3012] = {.lex_state = 216, .external_lex_state = 2}, + [3013] = {.lex_state = 216, .external_lex_state = 2}, + [3014] = {.lex_state = 216, .external_lex_state = 2}, + [3015] = {.lex_state = 216, .external_lex_state = 2}, + [3016] = {.lex_state = 216, .external_lex_state = 2}, + [3017] = {.lex_state = 271, .external_lex_state = 2}, + [3018] = {.lex_state = 172, .external_lex_state = 2}, + [3019] = {.lex_state = 53, .external_lex_state = 2}, + [3020] = {.lex_state = 221, .external_lex_state = 2}, + [3021] = {.lex_state = 1706}, + [3022] = {.lex_state = 216, .external_lex_state = 2}, + [3023] = {.lex_state = 290, .external_lex_state = 2}, + [3024] = {.lex_state = 221, .external_lex_state = 2}, + [3025] = {.lex_state = 1708}, + [3026] = {.lex_state = 1712}, + [3027] = {.lex_state = 289, .external_lex_state = 2}, + [3028] = {.lex_state = 289, .external_lex_state = 2}, + [3029] = {.lex_state = 1706}, + [3030] = {.lex_state = 235, .external_lex_state = 2}, + [3031] = {.lex_state = 289, .external_lex_state = 2}, + [3032] = {.lex_state = 216, .external_lex_state = 2}, + [3033] = {.lex_state = 235, .external_lex_state = 2}, + [3034] = {.lex_state = 271, .external_lex_state = 2}, + [3035] = {.lex_state = 236, .external_lex_state = 2}, + [3036] = {.lex_state = 54, .external_lex_state = 2}, + [3037] = {.lex_state = 51, .external_lex_state = 2}, + [3038] = {.lex_state = 172, .external_lex_state = 2}, + [3039] = {.lex_state = 290, .external_lex_state = 2}, + [3040] = {.lex_state = 172, .external_lex_state = 2}, + [3041] = {.lex_state = 277, .external_lex_state = 2}, + [3042] = {.lex_state = 216, .external_lex_state = 2}, + [3043] = {.lex_state = 289, .external_lex_state = 2}, + [3044] = {.lex_state = 51, .external_lex_state = 2}, + [3045] = {.lex_state = 290, .external_lex_state = 2}, + [3046] = {.lex_state = 290, .external_lex_state = 2}, + [3047] = {.lex_state = 277, .external_lex_state = 2}, + [3048] = {.lex_state = 245, .external_lex_state = 2}, + [3049] = {.lex_state = 216, .external_lex_state = 2}, + [3050] = {.lex_state = 216, .external_lex_state = 2}, + [3051] = {.lex_state = 51, .external_lex_state = 2}, + [3052] = {.lex_state = 235, .external_lex_state = 2}, + [3053] = {.lex_state = 278, .external_lex_state = 2}, + [3054] = {.lex_state = 235, .external_lex_state = 2}, + [3055] = {.lex_state = 235, .external_lex_state = 2}, + [3056] = {.lex_state = 216, .external_lex_state = 2}, + [3057] = {.lex_state = 216, .external_lex_state = 2}, + [3058] = {.lex_state = 216, .external_lex_state = 2}, + [3059] = {.lex_state = 216, .external_lex_state = 2}, + [3060] = {.lex_state = 227, .external_lex_state = 2}, + [3061] = {.lex_state = 51, .external_lex_state = 2}, + [3062] = {.lex_state = 51, .external_lex_state = 2}, + [3063] = {.lex_state = 51, .external_lex_state = 2}, + [3064] = {.lex_state = 51, .external_lex_state = 2}, + [3065] = {.lex_state = 51, .external_lex_state = 2}, + [3066] = {.lex_state = 51, .external_lex_state = 2}, + [3067] = {.lex_state = 51, .external_lex_state = 2}, + [3068] = {.lex_state = 222, .external_lex_state = 2}, + [3069] = {.lex_state = 222, .external_lex_state = 2}, + [3070] = {.lex_state = 225, .external_lex_state = 2}, + [3071] = {.lex_state = 51, .external_lex_state = 2}, + [3072] = {.lex_state = 51, .external_lex_state = 2}, + [3073] = {.lex_state = 51, .external_lex_state = 2}, + [3074] = {.lex_state = 51, .external_lex_state = 2}, + [3075] = {.lex_state = 51, .external_lex_state = 2}, + [3076] = {.lex_state = 51, .external_lex_state = 2}, + [3077] = {.lex_state = 222, .external_lex_state = 2}, + [3078] = {.lex_state = 222, .external_lex_state = 2}, + [3079] = {.lex_state = 222, .external_lex_state = 2}, + [3080] = {.lex_state = 222, .external_lex_state = 2}, + [3081] = {.lex_state = 208, .external_lex_state = 2}, + [3082] = {.lex_state = 51, .external_lex_state = 2}, + [3083] = {.lex_state = 208, .external_lex_state = 2}, + [3084] = {.lex_state = 237, .external_lex_state = 2}, + [3085] = {.lex_state = 237, .external_lex_state = 2}, + [3086] = {.lex_state = 237, .external_lex_state = 2}, + [3087] = {.lex_state = 51, .external_lex_state = 2}, + [3088] = {.lex_state = 208, .external_lex_state = 2}, + [3089] = {.lex_state = 51, .external_lex_state = 2}, + [3090] = {.lex_state = 51, .external_lex_state = 2}, + [3091] = {.lex_state = 246, .external_lex_state = 2}, + [3092] = {.lex_state = 246, .external_lex_state = 2}, + [3093] = {.lex_state = 51, .external_lex_state = 2}, + [3094] = {.lex_state = 51, .external_lex_state = 2}, + [3095] = {.lex_state = 51, .external_lex_state = 2}, + [3096] = {.lex_state = 51, .external_lex_state = 2}, + [3097] = {.lex_state = 208, .external_lex_state = 2}, + [3098] = {.lex_state = 51, .external_lex_state = 2}, + [3099] = {.lex_state = 51, .external_lex_state = 2}, + [3100] = {.lex_state = 131, .external_lex_state = 2}, + [3101] = {.lex_state = 51, .external_lex_state = 2}, + [3102] = {.lex_state = 214, .external_lex_state = 2}, + [3103] = {.lex_state = 1716}, + [3104] = {.lex_state = 208, .external_lex_state = 2}, + [3105] = {.lex_state = 1714}, + [3106] = {.lex_state = 224, .external_lex_state = 2}, + [3107] = {.lex_state = 51, .external_lex_state = 2}, + [3108] = {.lex_state = 1714}, + [3109] = {.lex_state = 51, .external_lex_state = 2}, + [3110] = {.lex_state = 1708}, + [3111] = {.lex_state = 1712}, + [3112] = {.lex_state = 51, .external_lex_state = 2}, + [3113] = {.lex_state = 56, .external_lex_state = 2}, + [3114] = {.lex_state = 51, .external_lex_state = 2}, + [3115] = {.lex_state = 51, .external_lex_state = 2}, + [3116] = {.lex_state = 51, .external_lex_state = 2}, + [3117] = {.lex_state = 223, .external_lex_state = 2}, + [3118] = {.lex_state = 51, .external_lex_state = 2}, + [3119] = {.lex_state = 51, .external_lex_state = 2}, + [3120] = {.lex_state = 51, .external_lex_state = 2}, + [3121] = {.lex_state = 51, .external_lex_state = 2}, + [3122] = {.lex_state = 51, .external_lex_state = 2}, + [3123] = {.lex_state = 51, .external_lex_state = 2}, + [3124] = {.lex_state = 51, .external_lex_state = 2}, + [3125] = {.lex_state = 208, .external_lex_state = 2}, + [3126] = {.lex_state = 208, .external_lex_state = 2}, + [3127] = {.lex_state = 208, .external_lex_state = 2}, + [3128] = {.lex_state = 208, .external_lex_state = 2}, + [3129] = {.lex_state = 51, .external_lex_state = 2}, + [3130] = {.lex_state = 208, .external_lex_state = 2}, + [3131] = {.lex_state = 208, .external_lex_state = 2}, + [3132] = {.lex_state = 51, .external_lex_state = 2}, + [3133] = {.lex_state = 208, .external_lex_state = 2}, + [3134] = {.lex_state = 208, .external_lex_state = 2}, + [3135] = {.lex_state = 51, .external_lex_state = 2}, + [3136] = {.lex_state = 51, .external_lex_state = 2}, + [3137] = {.lex_state = 51, .external_lex_state = 2}, + [3138] = {.lex_state = 51, .external_lex_state = 2}, + [3139] = {.lex_state = 51, .external_lex_state = 2}, + [3140] = {.lex_state = 51, .external_lex_state = 2}, + [3141] = {.lex_state = 51, .external_lex_state = 2}, + [3142] = {.lex_state = 51, .external_lex_state = 2}, + [3143] = {.lex_state = 51, .external_lex_state = 2}, + [3144] = {.lex_state = 51, .external_lex_state = 2}, + [3145] = {.lex_state = 51, .external_lex_state = 2}, + [3146] = {.lex_state = 51, .external_lex_state = 2}, + [3147] = {.lex_state = 251, .external_lex_state = 2}, + [3148] = {.lex_state = 131, .external_lex_state = 2}, + [3149] = {.lex_state = 224, .external_lex_state = 2}, + [3150] = {.lex_state = 226, .external_lex_state = 2}, + [3151] = {.lex_state = 226, .external_lex_state = 2}, + [3152] = {.lex_state = 226, .external_lex_state = 2}, + [3153] = {.lex_state = 221, .external_lex_state = 2}, + [3154] = {.lex_state = 56, .external_lex_state = 2}, + [3155] = {.lex_state = 291, .external_lex_state = 2}, + [3156] = {.lex_state = 226, .external_lex_state = 2}, + [3157] = {.lex_state = 226, .external_lex_state = 2}, + [3158] = {.lex_state = 226, .external_lex_state = 2}, + [3159] = {.lex_state = 291, .external_lex_state = 2}, + [3160] = {.lex_state = 226, .external_lex_state = 2}, + [3161] = {.lex_state = 226, .external_lex_state = 2}, + [3162] = {.lex_state = 226, .external_lex_state = 2}, + [3163] = {.lex_state = 226, .external_lex_state = 2}, + [3164] = {.lex_state = 226, .external_lex_state = 2}, + [3165] = {.lex_state = 211, .external_lex_state = 2}, + [3166] = {.lex_state = 226, .external_lex_state = 2}, + [3167] = {.lex_state = 247, .external_lex_state = 2}, + [3168] = {.lex_state = 211, .external_lex_state = 2}, + [3169] = {.lex_state = 226, .external_lex_state = 2}, + [3170] = {.lex_state = 226, .external_lex_state = 2}, + [3171] = {.lex_state = 212, .external_lex_state = 2}, + [3172] = {.lex_state = 1716}, + [3173] = {.lex_state = 226, .external_lex_state = 2}, + [3174] = {.lex_state = 226, .external_lex_state = 2}, + [3175] = {.lex_state = 221, .external_lex_state = 2}, + [3176] = {.lex_state = 1716}, + [3177] = {.lex_state = 226, .external_lex_state = 2}, + [3178] = {.lex_state = 226, .external_lex_state = 2}, + [3179] = {.lex_state = 208, .external_lex_state = 2}, + [3180] = {.lex_state = 1716}, + [3181] = {.lex_state = 221, .external_lex_state = 2}, + [3182] = {.lex_state = 226, .external_lex_state = 2}, + [3183] = {.lex_state = 1716}, + [3184] = {.lex_state = 226, .external_lex_state = 2}, + [3185] = {.lex_state = 226, .external_lex_state = 2}, + [3186] = {.lex_state = 1714}, + [3187] = {.lex_state = 226, .external_lex_state = 2}, + [3188] = {.lex_state = 226, .external_lex_state = 2}, + [3189] = {.lex_state = 1714}, + [3190] = {.lex_state = 226, .external_lex_state = 2}, + [3191] = {.lex_state = 226, .external_lex_state = 2}, + [3192] = {.lex_state = 226, .external_lex_state = 2}, + [3193] = {.lex_state = 226, .external_lex_state = 2}, + [3194] = {.lex_state = 226, .external_lex_state = 2}, + [3195] = {.lex_state = 226, .external_lex_state = 2}, + [3196] = {.lex_state = 44, .external_lex_state = 2}, + [3197] = {.lex_state = 226, .external_lex_state = 2}, + [3198] = {.lex_state = 226, .external_lex_state = 2}, + [3199] = {.lex_state = 226, .external_lex_state = 2}, + [3200] = {.lex_state = 226, .external_lex_state = 2}, + [3201] = {.lex_state = 247, .external_lex_state = 2}, + [3202] = {.lex_state = 226, .external_lex_state = 2}, + [3203] = {.lex_state = 226, .external_lex_state = 2}, + [3204] = {.lex_state = 226, .external_lex_state = 2}, + [3205] = {.lex_state = 208, .external_lex_state = 2}, + [3206] = {.lex_state = 226, .external_lex_state = 2}, + [3207] = {.lex_state = 226, .external_lex_state = 2}, + [3208] = {.lex_state = 226, .external_lex_state = 2}, + [3209] = {.lex_state = 226, .external_lex_state = 2}, + [3210] = {.lex_state = 247, .external_lex_state = 2}, + [3211] = {.lex_state = 291, .external_lex_state = 2}, + [3212] = {.lex_state = 226, .external_lex_state = 2}, + [3213] = {.lex_state = 247, .external_lex_state = 2}, + [3214] = {.lex_state = 226, .external_lex_state = 2}, + [3215] = {.lex_state = 247, .external_lex_state = 2}, + [3216] = {.lex_state = 291, .external_lex_state = 2}, + [3217] = {.lex_state = 226, .external_lex_state = 2}, + [3218] = {.lex_state = 226, .external_lex_state = 2}, + [3219] = {.lex_state = 247, .external_lex_state = 2}, + [3220] = {.lex_state = 247, .external_lex_state = 2}, + [3221] = {.lex_state = 247, .external_lex_state = 2}, + [3222] = {.lex_state = 1716}, + [3223] = {.lex_state = 226, .external_lex_state = 2}, + [3224] = {.lex_state = 1710}, + [3225] = {.lex_state = 226, .external_lex_state = 2}, + [3226] = {.lex_state = 226, .external_lex_state = 2}, + [3227] = {.lex_state = 226, .external_lex_state = 2}, + [3228] = {.lex_state = 226, .external_lex_state = 2}, + [3229] = {.lex_state = 226, .external_lex_state = 2}, + [3230] = {.lex_state = 247, .external_lex_state = 2}, + [3231] = {.lex_state = 247, .external_lex_state = 2}, + [3232] = {.lex_state = 1718}, + [3233] = {.lex_state = 226, .external_lex_state = 2}, + [3234] = {.lex_state = 291, .external_lex_state = 2}, + [3235] = {.lex_state = 226, .external_lex_state = 2}, + [3236] = {.lex_state = 45, .external_lex_state = 2}, + [3237] = {.lex_state = 45, .external_lex_state = 2}, + [3238] = {.lex_state = 45, .external_lex_state = 2}, + [3239] = {.lex_state = 45, .external_lex_state = 2}, + [3240] = {.lex_state = 45, .external_lex_state = 2}, + [3241] = {.lex_state = 45, .external_lex_state = 2}, + [3242] = {.lex_state = 45, .external_lex_state = 2}, + [3243] = {.lex_state = 45, .external_lex_state = 2}, + [3244] = {.lex_state = 45, .external_lex_state = 2}, + [3245] = {.lex_state = 45, .external_lex_state = 2}, + [3246] = {.lex_state = 45, .external_lex_state = 2}, + [3247] = {.lex_state = 45, .external_lex_state = 2}, + [3248] = {.lex_state = 44, .external_lex_state = 2}, + [3249] = {.lex_state = 45, .external_lex_state = 2}, + [3250] = {.lex_state = 45, .external_lex_state = 2}, + [3251] = {.lex_state = 45, .external_lex_state = 2}, + [3252] = {.lex_state = 45, .external_lex_state = 2}, + [3253] = {.lex_state = 45, .external_lex_state = 2}, + [3254] = {.lex_state = 45, .external_lex_state = 2}, + [3255] = {.lex_state = 45, .external_lex_state = 2}, + [3256] = {.lex_state = 45, .external_lex_state = 2}, + [3257] = {.lex_state = 45, .external_lex_state = 2}, + [3258] = {.lex_state = 45, .external_lex_state = 2}, + [3259] = {.lex_state = 45, .external_lex_state = 2}, + [3260] = {.lex_state = 45, .external_lex_state = 2}, + [3261] = {.lex_state = 45, .external_lex_state = 2}, + [3262] = {.lex_state = 1720}, + [3263] = {.lex_state = 45, .external_lex_state = 2}, + [3264] = {.lex_state = 45, .external_lex_state = 2}, + [3265] = {.lex_state = 45, .external_lex_state = 2}, + [3266] = {.lex_state = 45, .external_lex_state = 2}, + [3267] = {.lex_state = 45, .external_lex_state = 2}, + [3268] = {.lex_state = 45, .external_lex_state = 2}, + [3269] = {.lex_state = 45, .external_lex_state = 2}, + [3270] = {.lex_state = 45, .external_lex_state = 2}, + [3271] = {.lex_state = 45, .external_lex_state = 2}, + [3272] = {.lex_state = 45, .external_lex_state = 2}, + [3273] = {.lex_state = 45, .external_lex_state = 2}, + [3274] = {.lex_state = 45, .external_lex_state = 2}, + [3275] = {.lex_state = 1710}, + [3276] = {.lex_state = 1720}, + [3277] = {.lex_state = 45, .external_lex_state = 2}, + [3278] = {.lex_state = 45, .external_lex_state = 2}, + [3279] = {.lex_state = 45, .external_lex_state = 2}, + [3280] = {.lex_state = 45, .external_lex_state = 2}, + [3281] = {.lex_state = 1716}, + [3282] = {.lex_state = 1718}, + [3283] = {.lex_state = 45, .external_lex_state = 2}, + [3284] = {.lex_state = 45, .external_lex_state = 2}, + [3285] = {.lex_state = 45, .external_lex_state = 2}, + [3286] = {.lex_state = 45, .external_lex_state = 2}, + [3287] = {.lex_state = 45, .external_lex_state = 2}, + [3288] = {.lex_state = 45, .external_lex_state = 2}, + [3289] = {.lex_state = 45, .external_lex_state = 2}, + [3290] = {.lex_state = 45, .external_lex_state = 2}, + [3291] = {.lex_state = 45, .external_lex_state = 2}, + [3292] = {.lex_state = 45, .external_lex_state = 2}, + [3293] = {.lex_state = 1716}, + [3294] = {.lex_state = 45, .external_lex_state = 2}, + [3295] = {.lex_state = 45, .external_lex_state = 2}, + [3296] = {.lex_state = 45, .external_lex_state = 2}, + [3297] = {.lex_state = 45, .external_lex_state = 2}, + [3298] = {.lex_state = 1716}, + [3299] = {.lex_state = 45, .external_lex_state = 2}, + [3300] = {.lex_state = 1716}, + [3301] = {.lex_state = 45, .external_lex_state = 2}, + [3302] = {.lex_state = 45, .external_lex_state = 2}, + [3303] = {.lex_state = 45, .external_lex_state = 2}, + [3304] = {.lex_state = 45, .external_lex_state = 2}, + [3305] = {.lex_state = 45, .external_lex_state = 2}, + [3306] = {.lex_state = 45, .external_lex_state = 2}, + [3307] = {.lex_state = 1707}, + [3308] = {.lex_state = 45, .external_lex_state = 2}, + [3309] = {.lex_state = 1720}, + [3310] = {.lex_state = 1720}, + [3311] = {.lex_state = 1722}, + [3312] = {.lex_state = 1722}, + [3313] = {.lex_state = 1722}, + [3314] = {.lex_state = 1722}, + [3315] = {.lex_state = 1722}, + [3316] = {.lex_state = 1722}, + [3317] = {.lex_state = 45, .external_lex_state = 2}, + [3318] = {.lex_state = 1722}, + [3319] = {.lex_state = 80}, + [3320] = {.lex_state = 1726}, + [3321] = {.lex_state = 80}, + [3322] = {.lex_state = 80}, + [3323] = {.lex_state = 1724}, + [3324] = {.lex_state = 1722}, + [3325] = {.lex_state = 80}, + [3326] = {.lex_state = 1707}, + [3327] = {.lex_state = 80}, + [3328] = {.lex_state = 1722}, + [3329] = {.lex_state = 80}, + [3330] = {.lex_state = 80}, + [3331] = {.lex_state = 80}, + [3332] = {.lex_state = 80}, + [3333] = {.lex_state = 80}, + [3334] = {.lex_state = 80}, + [3335] = {.lex_state = 80}, + [3336] = {.lex_state = 80}, + [3337] = {.lex_state = 80}, + [3338] = {.lex_state = 1722}, + [3339] = {.lex_state = 1739}, + [3340] = {.lex_state = 1722}, + [3341] = {.lex_state = 80}, + [3342] = {.lex_state = 1722}, + [3343] = {.lex_state = 80}, + [3344] = {.lex_state = 1728}, + [3345] = {.lex_state = 1724}, + [3346] = {.lex_state = 1728}, + [3347] = {.lex_state = 1739}, + [3348] = {.lex_state = 1726}, + [3349] = {.lex_state = 1730}, + [3350] = {.lex_state = 1730}, + [3351] = {.lex_state = 1730}, + [3352] = {.lex_state = 1730}, + [3353] = {.lex_state = 1736}, + [3354] = {.lex_state = 1730}, + [3355] = {.lex_state = 1732}, + [3356] = {.lex_state = 1730}, + [3357] = {.lex_state = 1732}, + [3358] = {.lex_state = 1730}, + [3359] = {.lex_state = 1730}, + [3360] = {.lex_state = 1736}, + [3361] = {.lex_state = 1732}, + [3362] = {.lex_state = 1732}, + [3363] = {.lex_state = 1730}, + [3364] = {.lex_state = 1732}, + [3365] = {.lex_state = 1728}, + [3366] = {.lex_state = 1728}, + [3367] = {.lex_state = 80}, + [3368] = {.lex_state = 1732}, + [3369] = {.lex_state = 1730}, + [3370] = {.lex_state = 80}, + [3371] = {.lex_state = 1732}, + [3372] = {.lex_state = 1730}, + [3373] = {.lex_state = 1732}, + [3374] = {.lex_state = 1730}, + [3375] = {.lex_state = 1730}, + [3376] = {.lex_state = 1730}, + [3377] = {.lex_state = 1732}, + [3378] = {.lex_state = 1730}, + [3379] = {.lex_state = 1732}, + [3380] = {.lex_state = 1730}, + [3381] = {.lex_state = 1730}, + [3382] = {.lex_state = 1730}, + [3383] = {.lex_state = 1730}, + [3384] = {.lex_state = 1707}, + [3385] = {.lex_state = 97}, + [3386] = {.lex_state = 1707}, + [3387] = {.lex_state = 80}, + [3388] = {.lex_state = 80}, + [3389] = {.lex_state = 80}, + [3390] = {.lex_state = 1730}, + [3391] = {.lex_state = 1707}, + [3392] = {.lex_state = 1707}, + [3393] = {.lex_state = 1707}, + [3394] = {.lex_state = 1707}, + [3395] = {.lex_state = 1707}, + [3396] = {.lex_state = 1707}, + [3397] = {.lex_state = 1707}, + [3398] = {.lex_state = 1707}, + [3399] = {.lex_state = 1707}, + [3400] = {.lex_state = 1707}, + [3401] = {.lex_state = 1707}, + [3402] = {.lex_state = 1707}, + [3403] = {.lex_state = 80}, + [3404] = {.lex_state = 1707}, + [3405] = {.lex_state = 1707}, + [3406] = {.lex_state = 1707}, + [3407] = {.lex_state = 1707}, + [3408] = {.lex_state = 80}, + [3409] = {.lex_state = 1707}, + [3410] = {.lex_state = 1707}, + [3411] = {.lex_state = 1707}, + [3412] = {.lex_state = 1707}, + [3413] = {.lex_state = 1707}, + [3414] = {.lex_state = 1707}, + [3415] = {.lex_state = 1707}, + [3416] = {.lex_state = 1707}, + [3417] = {.lex_state = 1707}, + [3418] = {.lex_state = 1707}, + [3419] = {.lex_state = 1707}, + [3420] = {.lex_state = 1707}, + [3421] = {.lex_state = 1707}, + [3422] = {.lex_state = 1707}, + [3423] = {.lex_state = 1707}, + [3424] = {.lex_state = 1707}, + [3425] = {.lex_state = 1707}, + [3426] = {.lex_state = 1707}, + [3427] = {.lex_state = 1707}, + [3428] = {.lex_state = 1707}, + [3429] = {.lex_state = 1707}, + [3430] = {.lex_state = 1707}, + [3431] = {.lex_state = 1707}, + [3432] = {.lex_state = 1707}, + [3433] = {.lex_state = 1707}, + [3434] = {.lex_state = 1707}, + [3435] = {.lex_state = 1707}, + [3436] = {.lex_state = 1707}, + [3437] = {.lex_state = 1707}, + [3438] = {.lex_state = 1707}, + [3439] = {.lex_state = 1707}, + [3440] = {.lex_state = 1707}, + [3441] = {.lex_state = 1707}, + [3442] = {.lex_state = 1707}, + [3443] = {.lex_state = 1707}, + [3444] = {.lex_state = 1707}, + [3445] = {.lex_state = 1707}, + [3446] = {.lex_state = 1707}, + [3447] = {.lex_state = 1707}, + [3448] = {.lex_state = 80}, + [3449] = {.lex_state = 1707}, + [3450] = {.lex_state = 1707}, + [3451] = {.lex_state = 1707}, + [3452] = {.lex_state = 1707}, + [3453] = {.lex_state = 1707}, + [3454] = {.lex_state = 1707}, + [3455] = {.lex_state = 1707}, + [3456] = {.lex_state = 1707}, + [3457] = {.lex_state = 1707}, + [3458] = {.lex_state = 1707}, + [3459] = {.lex_state = 1707}, + [3460] = {.lex_state = 1707}, + [3461] = {.lex_state = 1707}, + [3462] = {.lex_state = 1707}, + [3463] = {.lex_state = 1707}, + [3464] = {.lex_state = 1707}, + [3465] = {.lex_state = 1707}, + [3466] = {.lex_state = 1707}, + [3467] = {.lex_state = 1707}, + [3468] = {.lex_state = 1707}, + [3469] = {.lex_state = 1707}, + [3470] = {.lex_state = 1707}, + [3471] = {.lex_state = 1707}, + [3472] = {.lex_state = 1707}, + [3473] = {.lex_state = 1707}, + [3474] = {.lex_state = 1707}, + [3475] = {.lex_state = 1707}, + [3476] = {.lex_state = 1707}, + [3477] = {.lex_state = 1707}, + [3478] = {.lex_state = 1707}, + [3479] = {.lex_state = 1707}, + [3480] = {.lex_state = 1707}, + [3481] = {.lex_state = 1707}, + [3482] = {.lex_state = 1707}, + [3483] = {.lex_state = 1707}, + [3484] = {.lex_state = 1707}, + [3485] = {.lex_state = 1707}, + [3486] = {.lex_state = 1707}, + [3487] = {.lex_state = 1707}, + [3488] = {.lex_state = 1707}, + [3489] = {.lex_state = 1707}, + [3490] = {.lex_state = 1707}, + [3491] = {.lex_state = 1707}, + [3492] = {.lex_state = 1707}, + [3493] = {.lex_state = 1707}, + [3494] = {.lex_state = 1707}, + [3495] = {.lex_state = 1707}, + [3496] = {.lex_state = 1707}, + [3497] = {.lex_state = 1707}, + [3498] = {.lex_state = 1707}, + [3499] = {.lex_state = 1707}, + [3500] = {.lex_state = 80}, + [3501] = {.lex_state = 80}, + [3502] = {.lex_state = 80}, + [3503] = {.lex_state = 80}, + [3504] = {.lex_state = 18}, + [3505] = {.lex_state = 1707}, + [3506] = {.lex_state = 266, .external_lex_state = 2}, + [3507] = {.lex_state = 19}, + [3508] = {.lex_state = 1737}, + [3509] = {.lex_state = 98}, + [3510] = {.lex_state = 80}, + [3511] = {.lex_state = 80}, + [3512] = {.lex_state = 1737}, + [3513] = {.lex_state = 80}, + [3514] = {.lex_state = 80}, + [3515] = {.lex_state = 80}, + [3516] = {.lex_state = 80}, + [3517] = {.lex_state = 19}, + [3518] = {.lex_state = 97}, + [3519] = {.lex_state = 98}, + [3520] = {.lex_state = 18}, + [3521] = {.lex_state = 1707}, + [3522] = {.lex_state = 1707}, + [3523] = {.lex_state = 80}, + [3524] = {.lex_state = 80}, + [3525] = {.lex_state = 1707}, + [3526] = {.lex_state = 1707}, + [3527] = {.lex_state = 80}, + [3528] = {.lex_state = 1707}, + [3529] = {.lex_state = 1707}, + [3530] = {.lex_state = 1707}, + [3531] = {.lex_state = 1707}, + [3532] = {.lex_state = 1707}, + [3533] = {.lex_state = 1707}, + [3534] = {.lex_state = 1707}, + [3535] = {.lex_state = 1707}, + [3536] = {.lex_state = 80}, + [3537] = {.lex_state = 1737}, + [3538] = {.lex_state = 270, .external_lex_state = 2}, + [3539] = {.lex_state = 1707}, + [3540] = {.lex_state = 95}, + [3541] = {.lex_state = 1707}, + [3542] = {.lex_state = 1707}, + [3543] = {.lex_state = 97}, + [3544] = {.lex_state = 80}, + [3545] = {.lex_state = 1737}, + [3546] = {.lex_state = 22}, + [3547] = {.lex_state = 95}, + [3548] = {.lex_state = 97}, + [3549] = {.lex_state = 97}, + [3550] = {.lex_state = 96}, + [3551] = {.lex_state = 97}, + [3552] = {.lex_state = 267, .external_lex_state = 2}, + [3553] = {.lex_state = 95}, + [3554] = {.lex_state = 97}, + [3555] = {.lex_state = 263}, + [3556] = {.lex_state = 7}, + [3557] = {.lex_state = 263}, + [3558] = {.lex_state = 267, .external_lex_state = 2}, + [3559] = {.lex_state = 7}, + [3560] = {.lex_state = 7}, + [3561] = {.lex_state = 111}, + [3562] = {.lex_state = 97}, + [3563] = {.lex_state = 96}, + [3564] = {.lex_state = 97}, + [3565] = {.lex_state = 1703}, + [3566] = {.lex_state = 1703}, + [3567] = {.lex_state = 113}, + [3568] = {.lex_state = 20}, + [3569] = {.lex_state = 80}, + [3570] = {.lex_state = 23}, + [3571] = {.lex_state = 23}, + [3572] = {.lex_state = 99}, + [3573] = {.lex_state = 101}, + [3574] = {.lex_state = 268, .external_lex_state = 2}, + [3575] = {.lex_state = 80}, + [3576] = {.lex_state = 268, .external_lex_state = 2}, + [3577] = {.lex_state = 80}, + [3578] = {.lex_state = 80}, + [3579] = {.lex_state = 268, .external_lex_state = 2}, + [3580] = {.lex_state = 80}, + [3581] = {.lex_state = 268, .external_lex_state = 2}, + [3582] = {.lex_state = 114}, + [3583] = {.lex_state = 115}, + [3584] = {.lex_state = 264}, + [3585] = {.lex_state = 268, .external_lex_state = 2}, + [3586] = {.lex_state = 114}, + [3587] = {.lex_state = 264}, + [3588] = {.lex_state = 80}, + [3589] = {.lex_state = 80}, + [3590] = {.lex_state = 80}, + [3591] = {.lex_state = 370}, + [3592] = {.lex_state = 95}, + [3593] = {.lex_state = 80}, + [3594] = {.lex_state = 95}, + [3595] = {.lex_state = 95}, + [3596] = {.lex_state = 80}, + [3597] = {.lex_state = 24}, + [3598] = {.lex_state = 80}, + [3599] = {.lex_state = 95}, + [3600] = {.lex_state = 80}, + [3601] = {.lex_state = 80}, + [3602] = {.lex_state = 80}, + [3603] = {.lex_state = 80}, + [3604] = {.lex_state = 80}, + [3605] = {.lex_state = 80}, + [3606] = {.lex_state = 95}, + [3607] = {.lex_state = 7}, + [3608] = {.lex_state = 7}, + [3609] = {.lex_state = 80}, + [3610] = {.lex_state = 80}, + [3611] = {.lex_state = 80}, + [3612] = {.lex_state = 80}, + [3613] = {.lex_state = 80}, + [3614] = {.lex_state = 80}, + [3615] = {.lex_state = 80}, + [3616] = {.lex_state = 80}, + [3617] = {.lex_state = 80}, + [3618] = {.lex_state = 80}, + [3619] = {.lex_state = 80}, + [3620] = {.lex_state = 95}, + [3621] = {.lex_state = 370}, + [3622] = {.lex_state = 21}, + [3623] = {.lex_state = 24}, + [3624] = {.lex_state = 116}, + [3625] = {.lex_state = 370}, [3626] = {.lex_state = 24}, - [3627] = {.lex_state = 24}, - [3628] = {.lex_state = 14, .external_lex_state = 2}, - [3629] = {.lex_state = 262, .external_lex_state = 2}, - [3630] = {.lex_state = 101}, - [3631] = {.lex_state = 24}, - [3632] = {.lex_state = 24}, - [3633] = {.lex_state = 24}, - [3634] = {.lex_state = 246, .external_lex_state = 2}, - [3635] = {.lex_state = 3182}, - [3636] = {.lex_state = 3180}, - [3637] = {.lex_state = 1690}, - [3638] = {.lex_state = 3182}, - [3639] = {.lex_state = 43, .external_lex_state = 2}, - [3640] = {.lex_state = 24}, - [3641] = {.lex_state = 64}, - [3642] = {.lex_state = 24}, - [3643] = {.lex_state = 24}, - [3644] = {.lex_state = 43, .external_lex_state = 2}, - [3645] = {.lex_state = 24}, - [3646] = {.lex_state = 24}, - [3647] = {.lex_state = 3183}, - [3648] = {.lex_state = 43, .external_lex_state = 2}, - [3649] = {.lex_state = 24}, - [3650] = {.lex_state = 24}, - [3651] = {.lex_state = 43, .external_lex_state = 2}, - [3652] = {.lex_state = 43, .external_lex_state = 2}, - [3653] = {.lex_state = 43, .external_lex_state = 2}, - [3654] = {.lex_state = 3183}, - [3655] = {.lex_state = 43, .external_lex_state = 2}, - [3656] = {.lex_state = 43, .external_lex_state = 2}, - [3657] = {.lex_state = 43, .external_lex_state = 2}, - [3658] = {.lex_state = 43, .external_lex_state = 2}, - [3659] = {.lex_state = 43, .external_lex_state = 2}, - [3660] = {.lex_state = 43, .external_lex_state = 2}, - [3661] = {.lex_state = 3185}, - [3662] = {.lex_state = 43, .external_lex_state = 2}, - [3663] = {.lex_state = 43, .external_lex_state = 2}, - [3664] = {.lex_state = 43, .external_lex_state = 2}, - [3665] = {.lex_state = 43, .external_lex_state = 2}, - [3666] = {.lex_state = 43, .external_lex_state = 2}, - [3667] = {.lex_state = 43, .external_lex_state = 2}, - [3668] = {.lex_state = 43, .external_lex_state = 2}, - [3669] = {.lex_state = 43, .external_lex_state = 2}, - [3670] = {.lex_state = 43, .external_lex_state = 2}, - [3671] = {.lex_state = 43, .external_lex_state = 2}, - [3672] = {.lex_state = 43, .external_lex_state = 2}, - [3673] = {.lex_state = 43, .external_lex_state = 2}, - [3674] = {.lex_state = 1676}, - [3675] = {.lex_state = 43, .external_lex_state = 2}, - [3676] = {.lex_state = 43, .external_lex_state = 2}, - [3677] = {.lex_state = 43, .external_lex_state = 2}, - [3678] = {.lex_state = 43, .external_lex_state = 2}, - [3679] = {.lex_state = 23}, - [3680] = {.lex_state = 43, .external_lex_state = 2}, - [3681] = {.lex_state = 3183}, - [3682] = {.lex_state = 43, .external_lex_state = 2}, - [3683] = {.lex_state = 43, .external_lex_state = 2}, - [3684] = {.lex_state = 43, .external_lex_state = 2}, - [3685] = {.lex_state = 3183}, - [3686] = {.lex_state = 24}, - [3687] = {.lex_state = 43, .external_lex_state = 2}, - [3688] = {.lex_state = 43, .external_lex_state = 2}, - [3689] = {.lex_state = 43, .external_lex_state = 2}, - [3690] = {.lex_state = 43, .external_lex_state = 2}, - [3691] = {.lex_state = 3185}, - [3692] = {.lex_state = 43, .external_lex_state = 2}, - [3693] = {.lex_state = 24}, - [3694] = {.lex_state = 43, .external_lex_state = 2}, - [3695] = {.lex_state = 24}, - [3696] = {.lex_state = 100}, - [3697] = {.lex_state = 1676}, - [3698] = {.lex_state = 100}, - [3699] = {.lex_state = 100}, - [3700] = {.lex_state = 43, .external_lex_state = 2}, - [3701] = {.lex_state = 43, .external_lex_state = 2}, - [3702] = {.lex_state = 23}, - [3703] = {.lex_state = 23}, - [3704] = {.lex_state = 24}, - [3705] = {.lex_state = 23}, - [3706] = {.lex_state = 23}, - [3707] = {.lex_state = 43, .external_lex_state = 2}, - [3708] = {.lex_state = 43, .external_lex_state = 2}, - [3709] = {.lex_state = 24}, - [3710] = {.lex_state = 24}, - [3711] = {.lex_state = 3183}, - [3712] = {.lex_state = 24}, - [3713] = {.lex_state = 24}, - [3714] = {.lex_state = 1689}, - [3715] = {.lex_state = 100}, - [3716] = {.lex_state = 43, .external_lex_state = 2}, - [3717] = {.lex_state = 7}, - [3718] = {.lex_state = 7}, - [3719] = {.lex_state = 1689}, - [3720] = {.lex_state = 64}, - [3721] = {.lex_state = 24}, - [3722] = {.lex_state = 43, .external_lex_state = 2}, - [3723] = {.lex_state = 24}, - [3724] = {.lex_state = 43, .external_lex_state = 2}, - [3725] = {.lex_state = 43, .external_lex_state = 2}, - [3726] = {.lex_state = 43, .external_lex_state = 2}, - [3727] = {.lex_state = 43, .external_lex_state = 2}, - [3728] = {.lex_state = 43, .external_lex_state = 2}, - [3729] = {.lex_state = 100}, - [3730] = {.lex_state = 1676}, - [3731] = {.lex_state = 1676}, - [3732] = {.lex_state = 1676}, - [3733] = {.lex_state = 1689}, - [3734] = {.lex_state = 99}, - [3735] = {.lex_state = 1676}, - [3736] = {.lex_state = 3186}, - [3737] = {.lex_state = 1676}, - [3738] = {.lex_state = 1722}, - [3739] = {.lex_state = 99}, - [3740] = {.lex_state = 99}, - [3741] = {.lex_state = 1676}, - [3742] = {.lex_state = 1676}, - [3743] = {.lex_state = 1676}, - [3744] = {.lex_state = 1676}, - [3745] = {.lex_state = 22}, - [3746] = {.lex_state = 1676}, - [3747] = {.lex_state = 1722}, - [3748] = {.lex_state = 3186}, - [3749] = {.lex_state = 1676}, - [3750] = {.lex_state = 1676}, - [3751] = {.lex_state = 1722}, - [3752] = {.lex_state = 1676}, - [3753] = {.lex_state = 1676}, - [3754] = {.lex_state = 1722}, - [3755] = {.lex_state = 1722}, - [3756] = {.lex_state = 1722}, - [3757] = {.lex_state = 1722}, - [3758] = {.lex_state = 1722}, - [3759] = {.lex_state = 1722}, - [3760] = {.lex_state = 1676}, - [3761] = {.lex_state = 1676}, - [3762] = {.lex_state = 1676}, - [3763] = {.lex_state = 1676}, - [3764] = {.lex_state = 1676}, - [3765] = {.lex_state = 1676}, - [3766] = {.lex_state = 99}, - [3767] = {.lex_state = 1676}, - [3768] = {.lex_state = 1676}, - [3769] = {.lex_state = 98}, - [3770] = {.lex_state = 1676}, - [3771] = {.lex_state = 1676}, - [3772] = {.lex_state = 1676}, - [3773] = {.lex_state = 1676}, - [3774] = {.lex_state = 1676}, - [3775] = {.lex_state = 1722}, - [3776] = {.lex_state = 1676}, - [3777] = {.lex_state = 1676}, - [3778] = {.lex_state = 1676}, - [3779] = {.lex_state = 1676}, - [3780] = {.lex_state = 1676}, - [3781] = {.lex_state = 1676}, - [3782] = {.lex_state = 1676}, - [3783] = {.lex_state = 1676}, - [3784] = {.lex_state = 1676}, - [3785] = {.lex_state = 1722}, - [3786] = {.lex_state = 1722}, - [3787] = {.lex_state = 1676}, - [3788] = {.lex_state = 1676}, - [3789] = {.lex_state = 1689}, - [3790] = {.lex_state = 1676}, - [3791] = {.lex_state = 1676}, - [3792] = {.lex_state = 3186}, - [3793] = {.lex_state = 1676}, - [3794] = {.lex_state = 1676}, - [3795] = {.lex_state = 3186}, - [3796] = {.lex_state = 1676}, - [3797] = {.lex_state = 1676}, - [3798] = {.lex_state = 1676}, - [3799] = {.lex_state = 1676}, - [3800] = {.lex_state = 3186}, - [3801] = {.lex_state = 1722}, - [3802] = {.lex_state = 1676}, - [3803] = {.lex_state = 1676}, - [3804] = {.lex_state = 3186}, - [3805] = {.lex_state = 1676}, - [3806] = {.lex_state = 1676}, - [3807] = {.lex_state = 1676}, - [3808] = {.lex_state = 3186}, - [3809] = {.lex_state = 3186}, - [3810] = {.lex_state = 1676}, - [3811] = {.lex_state = 1676}, - [3812] = {.lex_state = 3186}, - [3813] = {.lex_state = 1676}, - [3814] = {.lex_state = 1676}, - [3815] = {.lex_state = 1676}, - [3816] = {.lex_state = 1676}, - [3817] = {.lex_state = 1676}, - [3818] = {.lex_state = 1722}, - [3819] = {.lex_state = 1676}, - [3820] = {.lex_state = 3186}, - [3821] = {.lex_state = 1722}, - [3822] = {.lex_state = 99}, - [3823] = {.lex_state = 1676}, - [3824] = {.lex_state = 1676}, - [3825] = {.lex_state = 1676}, - [3826] = {.lex_state = 1676}, - [3827] = {.lex_state = 1676}, - [3828] = {.lex_state = 1676}, - [3829] = {.lex_state = 1676}, - [3830] = {.lex_state = 1676}, - [3831] = {.lex_state = 1676}, - [3832] = {.lex_state = 1676}, - [3833] = {.lex_state = 1676}, - [3834] = {.lex_state = 1676}, - [3835] = {.lex_state = 3186}, - [3836] = {.lex_state = 1676}, - [3837] = {.lex_state = 1676}, - [3838] = {.lex_state = 1676}, - [3839] = {.lex_state = 1676}, - [3840] = {.lex_state = 1676}, - [3841] = {.lex_state = 1676}, - [3842] = {.lex_state = 1676}, - [3843] = {.lex_state = 1676}, - [3844] = {.lex_state = 1676}, - [3845] = {.lex_state = 1676}, - [3846] = {.lex_state = 1676}, - [3847] = {.lex_state = 1676}, - [3848] = {.lex_state = 1676}, - [3849] = {.lex_state = 1676}, - [3850] = {.lex_state = 1676}, - [3851] = {.lex_state = 1676}, - [3852] = {.lex_state = 1676}, - [3853] = {.lex_state = 1676}, - [3854] = {.lex_state = 1676}, - [3855] = {.lex_state = 1676}, - [3856] = {.lex_state = 1676}, - [3857] = {.lex_state = 1676}, - [3858] = {.lex_state = 1676}, - [3859] = {.lex_state = 1676}, - [3860] = {.lex_state = 1676}, - [3861] = {.lex_state = 3186}, - [3862] = {.lex_state = 64}, - [3863] = {.lex_state = 24}, - [3864] = {.lex_state = 1730}, - [3865] = {.lex_state = 1676}, - [3866] = {.lex_state = 64}, - [3867] = {.lex_state = 1676}, - [3868] = {.lex_state = 24}, - [3869] = {.lex_state = 24}, - [3870] = {.lex_state = 24}, - [3871] = {.lex_state = 24}, - [3872] = {.lex_state = 24}, - [3873] = {.lex_state = 24}, - [3874] = {.lex_state = 24}, - [3875] = {.lex_state = 24}, - [3876] = {.lex_state = 24}, - [3877] = {.lex_state = 24}, - [3878] = {.lex_state = 64}, - [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 = 24}, - [3886] = {.lex_state = 64}, - [3887] = {.lex_state = 97}, - [3888] = {.lex_state = 1730}, - [3889] = {.lex_state = 64}, - [3890] = {.lex_state = 24}, - [3891] = {.lex_state = 1676}, - [3892] = {.lex_state = 64}, - [3893] = {.lex_state = 24}, - [3894] = {.lex_state = 64}, - [3895] = {.lex_state = 64}, - [3896] = {.lex_state = 64}, - [3897] = {.lex_state = 64}, - [3898] = {.lex_state = 64}, - [3899] = {.lex_state = 1676}, - [3900] = {.lex_state = 64}, - [3901] = {.lex_state = 64}, - [3902] = {.lex_state = 24}, - [3903] = {.lex_state = 24}, - [3904] = {.lex_state = 24}, - [3905] = {.lex_state = 24}, - [3906] = {.lex_state = 64}, - [3907] = {.lex_state = 24}, - [3908] = {.lex_state = 64}, - [3909] = {.lex_state = 24}, - [3910] = {.lex_state = 64}, - [3911] = {.lex_state = 24}, - [3912] = {.lex_state = 1676}, - [3913] = {.lex_state = 24}, - [3914] = {.lex_state = 64}, - [3915] = {.lex_state = 1676}, - [3916] = {.lex_state = 64}, - [3917] = {.lex_state = 24}, - [3918] = {.lex_state = 24}, - [3919] = {.lex_state = 24}, - [3920] = {.lex_state = 24}, - [3921] = {.lex_state = 24}, - [3922] = {.lex_state = 64}, - [3923] = {.lex_state = 64}, - [3924] = {.lex_state = 64}, - [3925] = {.lex_state = 64}, - [3926] = {.lex_state = 64}, - [3927] = {.lex_state = 24}, - [3928] = {.lex_state = 64}, - [3929] = {.lex_state = 24}, - [3930] = {.lex_state = 24}, - [3931] = {.lex_state = 64}, - [3932] = {.lex_state = 3187}, - [3933] = {.lex_state = 1676}, - [3934] = {.lex_state = 3187}, - [3935] = {.lex_state = 1730}, - [3936] = {.lex_state = 3187}, - [3937] = {.lex_state = 1730}, - [3938] = {.lex_state = 1676}, + [3627] = {.lex_state = 1737}, + [3628] = {.lex_state = 24}, + [3629] = {.lex_state = 24}, + [3630] = {.lex_state = 103}, + [3631] = {.lex_state = 102}, + [3632] = {.lex_state = 1737}, + [3633] = {.lex_state = 25}, + [3634] = {.lex_state = 370}, + [3635] = {.lex_state = 115}, + [3636] = {.lex_state = 24}, + [3637] = {.lex_state = 112}, + [3638] = {.lex_state = 115}, + [3639] = {.lex_state = 370}, + [3640] = {.lex_state = 102}, + [3641] = {.lex_state = 115}, + [3642] = {.lex_state = 115}, + [3643] = {.lex_state = 370}, + [3644] = {.lex_state = 1737}, + [3645] = {.lex_state = 14, .external_lex_state = 2}, + [3646] = {.lex_state = 14, .external_lex_state = 2}, + [3647] = {.lex_state = 1737}, + [3648] = {.lex_state = 14, .external_lex_state = 2}, + [3649] = {.lex_state = 14, .external_lex_state = 2}, + [3650] = {.lex_state = 14, .external_lex_state = 2}, + [3651] = {.lex_state = 14, .external_lex_state = 2}, + [3652] = {.lex_state = 1737}, + [3653] = {.lex_state = 14, .external_lex_state = 2}, + [3654] = {.lex_state = 1737}, + [3655] = {.lex_state = 14, .external_lex_state = 2}, + [3656] = {.lex_state = 103}, + [3657] = {.lex_state = 117}, + [3658] = {.lex_state = 26}, + [3659] = {.lex_state = 26}, + [3660] = {.lex_state = 14, .external_lex_state = 2}, + [3661] = {.lex_state = 14, .external_lex_state = 2}, + [3662] = {.lex_state = 80}, + [3663] = {.lex_state = 103}, + [3664] = {.lex_state = 14, .external_lex_state = 2}, + [3665] = {.lex_state = 14, .external_lex_state = 2}, + [3666] = {.lex_state = 14, .external_lex_state = 2}, + [3667] = {.lex_state = 14, .external_lex_state = 2}, + [3668] = {.lex_state = 103}, + [3669] = {.lex_state = 100}, + [3670] = {.lex_state = 104}, + [3671] = {.lex_state = 14, .external_lex_state = 2}, + [3672] = {.lex_state = 14, .external_lex_state = 2}, + [3673] = {.lex_state = 14, .external_lex_state = 2}, + [3674] = {.lex_state = 117}, + [3675] = {.lex_state = 14, .external_lex_state = 2}, + [3676] = {.lex_state = 103}, + [3677] = {.lex_state = 14, .external_lex_state = 2}, + [3678] = {.lex_state = 1737}, + [3679] = {.lex_state = 1737}, + [3680] = {.lex_state = 14, .external_lex_state = 2}, + [3681] = {.lex_state = 14, .external_lex_state = 2}, + [3682] = {.lex_state = 14, .external_lex_state = 2}, + [3683] = {.lex_state = 14, .external_lex_state = 2}, + [3684] = {.lex_state = 370}, + [3685] = {.lex_state = 1737}, + [3686] = {.lex_state = 1737}, + [3687] = {.lex_state = 1737}, + [3688] = {.lex_state = 1737}, + [3689] = {.lex_state = 1737}, + [3690] = {.lex_state = 80}, + [3691] = {.lex_state = 1737}, + [3692] = {.lex_state = 1737}, + [3693] = {.lex_state = 1737}, + [3694] = {.lex_state = 14, .external_lex_state = 2}, + [3695] = {.lex_state = 1737}, + [3696] = {.lex_state = 1737}, + [3697] = {.lex_state = 1737}, + [3698] = {.lex_state = 1737}, + [3699] = {.lex_state = 254, .external_lex_state = 2}, + [3700] = {.lex_state = 1737}, + [3701] = {.lex_state = 1737}, + [3702] = {.lex_state = 1737}, + [3703] = {.lex_state = 1737}, + [3704] = {.lex_state = 118}, + [3705] = {.lex_state = 27}, + [3706] = {.lex_state = 125}, + [3707] = {.lex_state = 125}, + [3708] = {.lex_state = 1737}, + [3709] = {.lex_state = 27}, + [3710] = {.lex_state = 1737}, + [3711] = {.lex_state = 118}, + [3712] = {.lex_state = 1737}, + [3713] = {.lex_state = 1737}, + [3714] = {.lex_state = 1737}, + [3715] = {.lex_state = 27}, + [3716] = {.lex_state = 1737}, + [3717] = {.lex_state = 1737}, + [3718] = {.lex_state = 27}, + [3719] = {.lex_state = 1737}, + [3720] = {.lex_state = 14, .external_lex_state = 2}, + [3721] = {.lex_state = 118}, + [3722] = {.lex_state = 118}, + [3723] = {.lex_state = 1737}, + [3724] = {.lex_state = 1737}, + [3725] = {.lex_state = 1737}, + [3726] = {.lex_state = 1737}, + [3727] = {.lex_state = 118}, + [3728] = {.lex_state = 1737}, + [3729] = {.lex_state = 1737}, + [3730] = {.lex_state = 1737}, + [3731] = {.lex_state = 118}, + [3732] = {.lex_state = 1737}, + [3733] = {.lex_state = 27}, + [3734] = {.lex_state = 105}, + [3735] = {.lex_state = 1737}, + [3736] = {.lex_state = 1737}, + [3737] = {.lex_state = 1737}, + [3738] = {.lex_state = 1737}, + [3739] = {.lex_state = 27}, + [3740] = {.lex_state = 1737}, + [3741] = {.lex_state = 1737}, + [3742] = {.lex_state = 105}, + [3743] = {.lex_state = 1737}, + [3744] = {.lex_state = 1737}, + [3745] = {.lex_state = 1737}, + [3746] = {.lex_state = 14, .external_lex_state = 2}, + [3747] = {.lex_state = 1737}, + [3748] = {.lex_state = 3219}, + [3749] = {.lex_state = 14, .external_lex_state = 2}, + [3750] = {.lex_state = 3221}, + [3751] = {.lex_state = 125}, + [3752] = {.lex_state = 125}, + [3753] = {.lex_state = 125}, + [3754] = {.lex_state = 120}, + [3755] = {.lex_state = 125}, + [3756] = {.lex_state = 125}, + [3757] = {.lex_state = 125}, + [3758] = {.lex_state = 1707}, + [3759] = {.lex_state = 119}, + [3760] = {.lex_state = 125}, + [3761] = {.lex_state = 125}, + [3762] = {.lex_state = 106}, + [3763] = {.lex_state = 106}, + [3764] = {.lex_state = 106}, + [3765] = {.lex_state = 106}, + [3766] = {.lex_state = 125}, + [3767] = {.lex_state = 125}, + [3768] = {.lex_state = 125}, + [3769] = {.lex_state = 125}, + [3770] = {.lex_state = 125}, + [3771] = {.lex_state = 125}, + [3772] = {.lex_state = 125}, + [3773] = {.lex_state = 125}, + [3774] = {.lex_state = 125}, + [3775] = {.lex_state = 125}, + [3776] = {.lex_state = 125}, + [3777] = {.lex_state = 125}, + [3778] = {.lex_state = 125}, + [3779] = {.lex_state = 125}, + [3780] = {.lex_state = 125}, + [3781] = {.lex_state = 125}, + [3782] = {.lex_state = 125}, + [3783] = {.lex_state = 125}, + [3784] = {.lex_state = 125}, + [3785] = {.lex_state = 125}, + [3786] = {.lex_state = 261, .external_lex_state = 2}, + [3787] = {.lex_state = 125}, + [3788] = {.lex_state = 125}, + [3789] = {.lex_state = 29}, + [3790] = {.lex_state = 106}, + [3791] = {.lex_state = 106}, + [3792] = {.lex_state = 14, .external_lex_state = 2}, + [3793] = {.lex_state = 28}, + [3794] = {.lex_state = 14, .external_lex_state = 2}, + [3795] = {.lex_state = 14, .external_lex_state = 2}, + [3796] = {.lex_state = 14, .external_lex_state = 2}, + [3797] = {.lex_state = 7}, + [3798] = {.lex_state = 1737}, + [3799] = {.lex_state = 1737}, + [3800] = {.lex_state = 125}, + [3801] = {.lex_state = 1737}, + [3802] = {.lex_state = 259, .external_lex_state = 2}, + [3803] = {.lex_state = 108}, + [3804] = {.lex_state = 107}, + [3805] = {.lex_state = 121}, + [3806] = {.lex_state = 1737}, + [3807] = {.lex_state = 14, .external_lex_state = 2}, + [3808] = {.lex_state = 121}, + [3809] = {.lex_state = 1737}, + [3810] = {.lex_state = 30}, + [3811] = {.lex_state = 14, .external_lex_state = 2}, + [3812] = {.lex_state = 3222}, + [3813] = {.lex_state = 1737}, + [3814] = {.lex_state = 30}, + [3815] = {.lex_state = 1737}, + [3816] = {.lex_state = 288, .external_lex_state = 2}, + [3817] = {.lex_state = 125}, + [3818] = {.lex_state = 1737}, + [3819] = {.lex_state = 3224}, + [3820] = {.lex_state = 1737}, + [3821] = {.lex_state = 269, .external_lex_state = 2}, + [3822] = {.lex_state = 1737}, + [3823] = {.lex_state = 3220}, + [3824] = {.lex_state = 1737}, + [3825] = {.lex_state = 125}, + [3826] = {.lex_state = 14, .external_lex_state = 2}, + [3827] = {.lex_state = 14, .external_lex_state = 2}, + [3828] = {.lex_state = 288, .external_lex_state = 2}, + [3829] = {.lex_state = 3222}, + [3830] = {.lex_state = 14, .external_lex_state = 2}, + [3831] = {.lex_state = 125}, + [3832] = {.lex_state = 1737}, + [3833] = {.lex_state = 1737}, + [3834] = {.lex_state = 288, .external_lex_state = 2}, + [3835] = {.lex_state = 1737}, + [3836] = {.lex_state = 1737}, + [3837] = {.lex_state = 288, .external_lex_state = 2}, + [3838] = {.lex_state = 288, .external_lex_state = 2}, + [3839] = {.lex_state = 1737}, + [3840] = {.lex_state = 1737}, + [3841] = {.lex_state = 1737}, + [3842] = {.lex_state = 54, .external_lex_state = 2}, + [3843] = {.lex_state = 54, .external_lex_state = 2}, + [3844] = {.lex_state = 1737}, + [3845] = {.lex_state = 1737}, + [3846] = {.lex_state = 3223}, + [3847] = {.lex_state = 124}, + [3848] = {.lex_state = 54, .external_lex_state = 2}, + [3849] = {.lex_state = 3223}, + [3850] = {.lex_state = 54, .external_lex_state = 2}, + [3851] = {.lex_state = 54, .external_lex_state = 2}, + [3852] = {.lex_state = 54, .external_lex_state = 2}, + [3853] = {.lex_state = 54, .external_lex_state = 2}, + [3854] = {.lex_state = 54, .external_lex_state = 2}, + [3855] = {.lex_state = 1737}, + [3856] = {.lex_state = 31}, + [3857] = {.lex_state = 54, .external_lex_state = 2}, + [3858] = {.lex_state = 31}, + [3859] = {.lex_state = 1737}, + [3860] = {.lex_state = 3223}, + [3861] = {.lex_state = 109}, + [3862] = {.lex_state = 54, .external_lex_state = 2}, + [3863] = {.lex_state = 109}, + [3864] = {.lex_state = 1737}, + [3865] = {.lex_state = 54, .external_lex_state = 2}, + [3866] = {.lex_state = 54, .external_lex_state = 2}, + [3867] = {.lex_state = 54, .external_lex_state = 2}, + [3868] = {.lex_state = 54, .external_lex_state = 2}, + [3869] = {.lex_state = 73}, + [3870] = {.lex_state = 3225}, + [3871] = {.lex_state = 3223}, + [3872] = {.lex_state = 54, .external_lex_state = 2}, + [3873] = {.lex_state = 1707}, + [3874] = {.lex_state = 1737}, + [3875] = {.lex_state = 1737}, + [3876] = {.lex_state = 54, .external_lex_state = 2}, + [3877] = {.lex_state = 3223}, + [3878] = {.lex_state = 122}, + [3879] = {.lex_state = 54, .external_lex_state = 2}, + [3880] = {.lex_state = 1737}, + [3881] = {.lex_state = 54, .external_lex_state = 2}, + [3882] = {.lex_state = 54, .external_lex_state = 2}, + [3883] = {.lex_state = 122}, + [3884] = {.lex_state = 54, .external_lex_state = 2}, + [3885] = {.lex_state = 54, .external_lex_state = 2}, + [3886] = {.lex_state = 54, .external_lex_state = 2}, + [3887] = {.lex_state = 122}, + [3888] = {.lex_state = 54, .external_lex_state = 2}, + [3889] = {.lex_state = 54, .external_lex_state = 2}, + [3890] = {.lex_state = 122}, + [3891] = {.lex_state = 54, .external_lex_state = 2}, + [3892] = {.lex_state = 122}, + [3893] = {.lex_state = 54, .external_lex_state = 2}, + [3894] = {.lex_state = 54, .external_lex_state = 2}, + [3895] = {.lex_state = 54, .external_lex_state = 2}, + [3896] = {.lex_state = 54, .external_lex_state = 2}, + [3897] = {.lex_state = 32}, + [3898] = {.lex_state = 32}, + [3899] = {.lex_state = 54, .external_lex_state = 2}, + [3900] = {.lex_state = 1737}, + [3901] = {.lex_state = 31}, + [3902] = {.lex_state = 54, .external_lex_state = 2}, + [3903] = {.lex_state = 1737}, + [3904] = {.lex_state = 32}, + [3905] = {.lex_state = 32}, + [3906] = {.lex_state = 54, .external_lex_state = 2}, + [3907] = {.lex_state = 54, .external_lex_state = 2}, + [3908] = {.lex_state = 31}, + [3909] = {.lex_state = 54, .external_lex_state = 2}, + [3910] = {.lex_state = 31}, + [3911] = {.lex_state = 54, .external_lex_state = 2}, + [3912] = {.lex_state = 31}, + [3913] = {.lex_state = 1737}, + [3914] = {.lex_state = 54, .external_lex_state = 2}, + [3915] = {.lex_state = 3225}, + [3916] = {.lex_state = 1707}, + [3917] = {.lex_state = 1737}, + [3918] = {.lex_state = 1737}, + [3919] = {.lex_state = 54, .external_lex_state = 2}, + [3920] = {.lex_state = 32}, + [3921] = {.lex_state = 54, .external_lex_state = 2}, + [3922] = {.lex_state = 125}, + [3923] = {.lex_state = 54, .external_lex_state = 2}, + [3924] = {.lex_state = 54, .external_lex_state = 2}, + [3925] = {.lex_state = 54, .external_lex_state = 2}, + [3926] = {.lex_state = 31}, + [3927] = {.lex_state = 54, .external_lex_state = 2}, + [3928] = {.lex_state = 54, .external_lex_state = 2}, + [3929] = {.lex_state = 31}, + [3930] = {.lex_state = 124}, + [3931] = {.lex_state = 54, .external_lex_state = 2}, + [3932] = {.lex_state = 1737}, + [3933] = {.lex_state = 124}, + [3934] = {.lex_state = 54, .external_lex_state = 2}, + [3935] = {.lex_state = 122}, + [3936] = {.lex_state = 7}, + [3937] = {.lex_state = 7}, + [3938] = {.lex_state = 7}, [3939] = {.lex_state = 7}, - [3940] = {.lex_state = 1676}, - [3941] = {.lex_state = 7}, - [3942] = {.lex_state = 1676}, - [3943] = {.lex_state = 7}, - [3944] = {.lex_state = 7}, - [3945] = {.lex_state = 1730}, - [3946] = {.lex_state = 1676}, - [3947] = {.lex_state = 3187}, + [3940] = {.lex_state = 7}, + [3941] = {.lex_state = 1737}, + [3942] = {.lex_state = 1707}, + [3943] = {.lex_state = 31}, + [3944] = {.lex_state = 124}, + [3945] = {.lex_state = 122}, + [3946] = {.lex_state = 73}, + [3947] = {.lex_state = 7}, [3948] = {.lex_state = 7}, - [3949] = {.lex_state = 1676}, - [3950] = {.lex_state = 1730}, - [3951] = {.lex_state = 3187}, - [3952] = {.lex_state = 1676}, - [3953] = {.lex_state = 1676}, - [3954] = {.lex_state = 1730}, - [3955] = {.lex_state = 3187}, - [3956] = {.lex_state = 1676}, - [3957] = {.lex_state = 7}, - [3958] = {.lex_state = 1676}, - [3959] = {.lex_state = 1676}, - [3960] = {.lex_state = 3187}, - [3961] = {.lex_state = 7}, - [3962] = {.lex_state = 7}, - [3963] = {.lex_state = 3187}, - [3964] = {.lex_state = 7}, - [3965] = {.lex_state = 7}, - [3966] = {.lex_state = 7}, - [3967] = {.lex_state = 7}, - [3968] = {.lex_state = 3187}, - [3969] = {.lex_state = 1676}, - [3970] = {.lex_state = 1730}, - [3971] = {.lex_state = 64}, - [3972] = {.lex_state = 1676}, - [3973] = {.lex_state = 64}, - [3974] = {.lex_state = 64}, - [3975] = {.lex_state = 64}, - [3976] = {.lex_state = 1676}, - [3977] = {.lex_state = 1730}, - [3978] = {.lex_state = 64}, - [3979] = {.lex_state = 1730}, - [3980] = {.lex_state = 1676}, - [3981] = {.lex_state = 1676}, - [3982] = {.lex_state = 1676}, - [3983] = {.lex_state = 64}, - [3984] = {.lex_state = 1730}, - [3985] = {.lex_state = 1689}, - [3986] = {.lex_state = 64}, - [3987] = {.lex_state = 64}, - [3988] = {.lex_state = 1730}, - [3989] = {.lex_state = 64}, - [3990] = {.lex_state = 1676}, - [3991] = {.lex_state = 1730}, - [3992] = {.lex_state = 64}, - [3993] = {.lex_state = 64}, - [3994] = {.lex_state = 1676}, - [3995] = {.lex_state = 64}, - [3996] = {.lex_state = 1689}, - [3997] = {.lex_state = 1758}, - [3998] = {.lex_state = 1758}, - [3999] = {.lex_state = 1755}, - [4000] = {.lex_state = 1755}, - [4001] = {.lex_state = 1755}, - [4002] = {.lex_state = 1768}, - [4003] = {.lex_state = 1755}, - [4004] = {.lex_state = 1757}, - [4005] = {.lex_state = 1764}, - [4006] = {.lex_state = 1770}, - [4007] = {.lex_state = 1768}, - [4008] = {.lex_state = 1757}, - [4009] = {.lex_state = 1770}, - [4010] = {.lex_state = 1757}, - [4011] = {.lex_state = 1756}, - [4012] = {.lex_state = 1772}, - [4013] = {.lex_state = 1756}, - [4014] = {.lex_state = 1764}, - [4015] = {.lex_state = 1689}, - [4016] = {.lex_state = 1765}, - [4017] = {.lex_state = 1689}, - [4018] = {.lex_state = 1772}, - [4019] = {.lex_state = 1772}, - [4020] = {.lex_state = 1757}, - [4021] = {.lex_state = 1774}, - [4022] = {.lex_state = 1770}, - [4023] = {.lex_state = 1772}, - [4024] = {.lex_state = 1769}, - [4025] = {.lex_state = 1757}, - [4026] = {.lex_state = 1770}, - [4027] = {.lex_state = 1756}, - [4028] = {.lex_state = 1766}, - [4029] = {.lex_state = 1772}, - [4030] = {.lex_state = 1756}, - [4031] = {.lex_state = 1757}, - [4032] = {.lex_state = 1772}, - [4033] = {.lex_state = 1757}, - [4034] = {.lex_state = 1757}, - [4035] = {.lex_state = 1776}, - [4036] = {.lex_state = 1689}, - [4037] = {.lex_state = 1766}, - [4038] = {.lex_state = 1772}, - [4039] = {.lex_state = 1771}, - [4040] = {.lex_state = 1772}, - [4041] = {.lex_state = 1757}, - [4042] = {.lex_state = 64}, - [4043] = {.lex_state = 1689}, - [4044] = {.lex_state = 1757}, - [4045] = {.lex_state = 1772}, - [4046] = {.lex_state = 1773}, - [4047] = {.lex_state = 1757}, - [4048] = {.lex_state = 49}, - [4049] = {.lex_state = 1772}, - [4050] = {.lex_state = 1771}, - [4051] = {.lex_state = 1765}, - [4052] = {.lex_state = 1774}, - [4053] = {.lex_state = 1776}, - [4054] = {.lex_state = 1757}, - [4055] = {.lex_state = 1769}, - [4056] = {.lex_state = 1778}, - [4057] = {.lex_state = 1773}, - [4058] = {.lex_state = 1776}, - [4059] = {.lex_state = 1773}, - [4060] = {.lex_state = 48}, - [4061] = {.lex_state = 1778}, - [4062] = {.lex_state = 1771}, - [4063] = {.lex_state = 1778}, - [4064] = {.lex_state = 1776}, - [4065] = {.lex_state = 1773}, - [4066] = {.lex_state = 1765}, - [4067] = {.lex_state = 1778}, - [4068] = {.lex_state = 64}, - [4069] = {.lex_state = 49}, - [4070] = {.lex_state = 1775}, - [4071] = {.lex_state = 48}, - [4072] = {.lex_state = 50}, - [4073] = {.lex_state = 1778}, - [4074] = {.lex_state = 1765}, - [4075] = {.lex_state = 1767}, - [4076] = {.lex_state = 1771}, - [4077] = {.lex_state = 1778}, - [4078] = {.lex_state = 52}, - [4079] = {.lex_state = 1773}, - [4080] = {.lex_state = 1773}, - [4081] = {.lex_state = 1765}, - [4082] = {.lex_state = 1773}, - [4083] = {.lex_state = 1765}, - [4084] = {.lex_state = 1778}, - [4085] = {.lex_state = 1780}, - [4086] = {.lex_state = 1782}, - [4087] = {.lex_state = 49}, - [4088] = {.lex_state = 1777}, - [4089] = {.lex_state = 1773}, - [4090] = {.lex_state = 1765}, - [4091] = {.lex_state = 1765}, - [4092] = {.lex_state = 1778}, - [4093] = {.lex_state = 1773}, - [4094] = {.lex_state = 49}, - [4095] = {.lex_state = 49}, - [4096] = {.lex_state = 1773}, - [4097] = {.lex_state = 1778}, - [4098] = {.lex_state = 49}, - [4099] = {.lex_state = 1778}, - [4100] = {.lex_state = 1773}, - [4101] = {.lex_state = 1767}, - [4102] = {.lex_state = 1778}, - [4103] = {.lex_state = 1778}, - [4104] = {.lex_state = 1775}, - [4105] = {.lex_state = 53}, - [4106] = {.lex_state = 1765}, - [4107] = {.lex_state = 1777}, - [4108] = {.lex_state = 1765}, - [4109] = {.lex_state = 54}, - [4110] = {.lex_state = 53}, - [4111] = {.lex_state = 1779}, - [4112] = {.lex_state = 33}, - [4113] = {.lex_state = 1780}, - [4114] = {.lex_state = 1779}, - [4115] = {.lex_state = 33}, - [4116] = {.lex_state = 56}, - [4117] = {.lex_state = 1779}, - [4118] = {.lex_state = 54}, - [4119] = {.lex_state = 54}, - [4120] = {.lex_state = 54}, - [4121] = {.lex_state = 54}, - [4122] = {.lex_state = 1777}, - [4123] = {.lex_state = 51}, - [4124] = {.lex_state = 33}, - [4125] = {.lex_state = 33}, - [4126] = {.lex_state = 1765}, - [4127] = {.lex_state = 1784}, - [4128] = {.lex_state = 1777}, - [4129] = {.lex_state = 1689}, - [4130] = {.lex_state = 1765}, - [4131] = {.lex_state = 1689}, - [4132] = {.lex_state = 1689}, - [4133] = {.lex_state = 1782}, - [4134] = {.lex_state = 1761}, - [4135] = {.lex_state = 1761}, - [4136] = {.lex_state = 1779}, - [4137] = {.lex_state = 1761}, - [4138] = {.lex_state = 1761}, - [4139] = {.lex_state = 1761}, - [4140] = {.lex_state = 1761}, - [4141] = {.lex_state = 1779}, - [4142] = {.lex_state = 1784}, - [4143] = {.lex_state = 1779}, - [4144] = {.lex_state = 1773}, - [4145] = {.lex_state = 1781}, - [4146] = {.lex_state = 1781}, - [4147] = {.lex_state = 33}, - [4148] = {.lex_state = 1781}, - [4149] = {.lex_state = 1781}, - [4150] = {.lex_state = 1781}, - [4151] = {.lex_state = 1781}, - [4152] = {.lex_state = 1781}, - [4153] = {.lex_state = 1781}, - [4154] = {.lex_state = 1781}, - [4155] = {.lex_state = 1781}, - [4156] = {.lex_state = 1781}, - [4157] = {.lex_state = 1781}, - [4158] = {.lex_state = 1781}, - [4159] = {.lex_state = 1781}, - [4160] = {.lex_state = 1781}, - [4161] = {.lex_state = 1781}, - [4162] = {.lex_state = 1689}, - [4163] = {.lex_state = 1781}, - [4164] = {.lex_state = 1779}, - [4165] = {.lex_state = 1781}, - [4166] = {.lex_state = 1801}, - [4167] = {.lex_state = 57}, - [4168] = {.lex_state = 33}, - [4169] = {.lex_state = 1801}, - [4170] = {.lex_state = 1801}, - [4171] = {.lex_state = 1779}, - [4172] = {.lex_state = 1689}, - [4173] = {.lex_state = 1781}, - [4174] = {.lex_state = 1786}, - [4175] = {.lex_state = 57}, - [4176] = {.lex_state = 33}, - [4177] = {.lex_state = 1781}, - [4178] = {.lex_state = 1786}, - [4179] = {.lex_state = 1779}, - [4180] = {.lex_state = 1801}, - [4181] = {.lex_state = 1781}, - [4182] = {.lex_state = 1779}, - [4183] = {.lex_state = 33}, - [4184] = {.lex_state = 1761}, - [4185] = {.lex_state = 1786}, - [4186] = {.lex_state = 33}, - [4187] = {.lex_state = 1779}, - [4188] = {.lex_state = 1801}, - [4189] = {.lex_state = 1689}, - [4190] = {.lex_state = 33}, - [4191] = {.lex_state = 1689}, - [4192] = {.lex_state = 1781}, - [4193] = {.lex_state = 1784}, - [4194] = {.lex_state = 1689}, - [4195] = {.lex_state = 1765}, - [4196] = {.lex_state = 1689}, - [4197] = {.lex_state = 33}, - [4198] = {.lex_state = 1781}, - [4199] = {.lex_state = 1786}, - [4200] = {.lex_state = 1786}, - [4201] = {.lex_state = 1784}, - [4202] = {.lex_state = 1765}, - [4203] = {.lex_state = 1765}, - [4204] = {.lex_state = 1761}, - [4205] = {.lex_state = 1761}, - [4206] = {.lex_state = 1761}, - [4207] = {.lex_state = 1781}, - [4208] = {.lex_state = 1761}, - [4209] = {.lex_state = 1781}, - [4210] = {.lex_state = 33}, - [4211] = {.lex_state = 33}, - [4212] = {.lex_state = 1786}, - [4213] = {.lex_state = 1781}, - [4214] = {.lex_state = 1781}, - [4215] = {.lex_state = 1781}, - [4216] = {.lex_state = 1783}, - [4217] = {.lex_state = 1786}, - [4218] = {.lex_state = 1781}, - [4219] = {.lex_state = 1786}, - [4220] = {.lex_state = 1786}, - [4221] = {.lex_state = 1781}, - [4222] = {.lex_state = 1781}, - [4223] = {.lex_state = 1779}, - [4224] = {.lex_state = 1761}, - [4225] = {.lex_state = 1781}, - [4226] = {.lex_state = 1801}, - [4227] = {.lex_state = 1781}, - [4228] = {.lex_state = 33}, - [4229] = {.lex_state = 33}, - [4230] = {.lex_state = 1786}, - [4231] = {.lex_state = 33}, - [4232] = {.lex_state = 1765}, - [4233] = {.lex_state = 1765}, - [4234] = {.lex_state = 267, .external_lex_state = 2}, - [4235] = {.lex_state = 1781}, - [4236] = {.lex_state = 1781}, - [4237] = {.lex_state = 33}, - [4238] = {.lex_state = 267, .external_lex_state = 2}, - [4239] = {.lex_state = 1689}, - [4240] = {.lex_state = 33}, - [4241] = {.lex_state = 1785}, - [4242] = {.lex_state = 33}, - [4243] = {.lex_state = 1801}, - [4244] = {.lex_state = 1786}, - [4245] = {.lex_state = 1689}, - [4246] = {.lex_state = 1781}, - [4247] = {.lex_state = 55}, - [4248] = {.lex_state = 1690}, - [4249] = {.lex_state = 1765}, - [4250] = {.lex_state = 1765}, - [4251] = {.lex_state = 1765}, - [4252] = {.lex_state = 1765}, - [4253] = {.lex_state = 1801}, - [4254] = {.lex_state = 1785}, - [4255] = {.lex_state = 1781}, - [4256] = {.lex_state = 1765}, - [4257] = {.lex_state = 1781}, - [4258] = {.lex_state = 1765}, - [4259] = {.lex_state = 55}, - [4260] = {.lex_state = 1781}, - [4261] = {.lex_state = 55}, - [4262] = {.lex_state = 1765}, - [4263] = {.lex_state = 1781}, - [4264] = {.lex_state = 267, .external_lex_state = 2}, - [4265] = {.lex_state = 1781}, - [4266] = {.lex_state = 55}, - [4267] = {.lex_state = 33}, - [4268] = {.lex_state = 1781}, - [4269] = {.lex_state = 1781}, - [4270] = {.lex_state = 1765}, - [4271] = {.lex_state = 1765}, - [4272] = {.lex_state = 33}, - [4273] = {.lex_state = 1765}, - [4274] = {.lex_state = 1781}, - [4275] = {.lex_state = 1781}, - [4276] = {.lex_state = 1781}, - [4277] = {.lex_state = 1781}, - [4278] = {.lex_state = 1781}, - [4279] = {.lex_state = 1781}, - [4280] = {.lex_state = 1781}, - [4281] = {.lex_state = 1781}, - [4282] = {.lex_state = 1781}, - [4283] = {.lex_state = 1690}, - [4284] = {.lex_state = 1781}, - [4285] = {.lex_state = 1781}, - [4286] = {.lex_state = 1781}, - [4287] = {.lex_state = 55}, - [4288] = {.lex_state = 1781}, - [4289] = {.lex_state = 1781}, - [4290] = {.lex_state = 1786}, - [4291] = {.lex_state = 1781}, - [4292] = {.lex_state = 1689}, - [4293] = {.lex_state = 1783}, - [4294] = {.lex_state = 1781}, - [4295] = {.lex_state = 1786}, - [4296] = {.lex_state = 1781}, - [4297] = {.lex_state = 1765}, - [4298] = {.lex_state = 1781}, - [4299] = {.lex_state = 1786}, - [4300] = {.lex_state = 1786}, - [4301] = {.lex_state = 1786}, - [4302] = {.lex_state = 1781}, - [4303] = {.lex_state = 1781}, - [4304] = {.lex_state = 1765}, - [4305] = {.lex_state = 1786}, - [4306] = {.lex_state = 1801}, - [4307] = {.lex_state = 1786}, - [4308] = {.lex_state = 1781}, - [4309] = {.lex_state = 267, .external_lex_state = 2}, - [4310] = {.lex_state = 1786}, - [4311] = {.lex_state = 1801}, - [4312] = {.lex_state = 33}, - [4313] = {.lex_state = 33}, - [4314] = {.lex_state = 33}, - [4315] = {.lex_state = 55}, - [4316] = {.lex_state = 1765}, - [4317] = {.lex_state = 70}, - [4318] = {.lex_state = 1722}, - [4319] = {.lex_state = 1787}, - [4320] = {.lex_state = 1722}, - [4321] = {.lex_state = 1722}, - [4322] = {.lex_state = 1690}, - [4323] = {.lex_state = 1722}, - [4324] = {.lex_state = 1722}, - [4325] = {.lex_state = 1722}, - [4326] = {.lex_state = 1722}, - [4327] = {.lex_state = 1722}, - [4328] = {.lex_state = 1722}, - [4329] = {.lex_state = 1722}, - [4330] = {.lex_state = 1722}, - [4331] = {.lex_state = 1722}, - [4332] = {.lex_state = 1722}, - [4333] = {.lex_state = 1722}, - [4334] = {.lex_state = 1722}, - [4335] = {.lex_state = 1722}, - [4336] = {.lex_state = 1722}, - [4337] = {.lex_state = 1690}, - [4338] = {.lex_state = 1798}, - [4339] = {.lex_state = 1722}, - [4340] = {.lex_state = 1722}, - [4341] = {.lex_state = 1765}, - [4342] = {.lex_state = 1722}, - [4343] = {.lex_state = 61}, - [4344] = {.lex_state = 70}, - [4345] = {.lex_state = 1722}, - [4346] = {.lex_state = 1798}, - [4347] = {.lex_state = 70}, - [4348] = {.lex_state = 1722}, - [4349] = {.lex_state = 1722}, - [4350] = {.lex_state = 1722}, - [4351] = {.lex_state = 70}, - [4352] = {.lex_state = 1787}, - [4353] = {.lex_state = 33}, - [4354] = {.lex_state = 62}, - [4355] = {.lex_state = 1722}, - [4356] = {.lex_state = 1765}, - [4357] = {.lex_state = 33}, - [4358] = {.lex_state = 1722}, - [4359] = {.lex_state = 1722}, - [4360] = {.lex_state = 70}, - [4361] = {.lex_state = 33}, - [4362] = {.lex_state = 1722}, - [4363] = {.lex_state = 70}, - [4364] = {.lex_state = 1765}, - [4365] = {.lex_state = 1722}, - [4366] = {.lex_state = 1765}, - [4367] = {.lex_state = 1786}, - [4368] = {.lex_state = 1722}, - [4369] = {.lex_state = 1722}, - [4370] = {.lex_state = 70}, - [4371] = {.lex_state = 70}, - [4372] = {.lex_state = 1798}, - [4373] = {.lex_state = 1722}, - [4374] = {.lex_state = 1722}, - [4375] = {.lex_state = 1722}, - [4376] = {.lex_state = 1722}, - [4377] = {.lex_state = 70}, - [4378] = {.lex_state = 1722}, - [4379] = {.lex_state = 1787}, - [4380] = {.lex_state = 1722}, - [4381] = {.lex_state = 1722}, - [4382] = {.lex_state = 70}, - [4383] = {.lex_state = 1722}, - [4384] = {.lex_state = 1798}, - [4385] = {.lex_state = 1798}, - [4386] = {.lex_state = 62}, - [4387] = {.lex_state = 70}, - [4388] = {.lex_state = 1722}, - [4389] = {.lex_state = 1787}, - [4390] = {.lex_state = 1722}, - [4391] = {.lex_state = 1722}, - [4392] = {.lex_state = 70}, - [4393] = {.lex_state = 1722}, - [4394] = {.lex_state = 1722}, - [4395] = {.lex_state = 1722}, - [4396] = {.lex_state = 1722}, - [4397] = {.lex_state = 1781}, - [4398] = {.lex_state = 70}, - [4399] = {.lex_state = 1722}, - [4400] = {.lex_state = 1722}, - [4401] = {.lex_state = 70}, - [4402] = {.lex_state = 1722}, - [4403] = {.lex_state = 70}, - [4404] = {.lex_state = 70}, - [4405] = {.lex_state = 1722}, - [4406] = {.lex_state = 1722}, - [4407] = {.lex_state = 1765}, - [4408] = {.lex_state = 1722}, - [4409] = {.lex_state = 1722}, - [4410] = {.lex_state = 1722}, - [4411] = {.lex_state = 1722}, - [4412] = {.lex_state = 1722}, - [4413] = {.lex_state = 1722}, - [4414] = {.lex_state = 1722}, - [4415] = {.lex_state = 1722}, - [4416] = {.lex_state = 1722}, - [4417] = {.lex_state = 1722}, - [4418] = {.lex_state = 1765}, - [4419] = {.lex_state = 1722}, - [4420] = {.lex_state = 1722}, - [4421] = {.lex_state = 1787}, - [4422] = {.lex_state = 1781}, - [4423] = {.lex_state = 1722}, - [4424] = {.lex_state = 1722}, - [4425] = {.lex_state = 1722}, - [4426] = {.lex_state = 1799}, - [4427] = {.lex_state = 1722}, - [4428] = {.lex_state = 1722}, - [4429] = {.lex_state = 1722}, - [4430] = {.lex_state = 1722}, - [4431] = {.lex_state = 1722}, - [4432] = {.lex_state = 1722}, - [4433] = {.lex_state = 1785}, - [4434] = {.lex_state = 1722}, - [4435] = {.lex_state = 1722}, - [4436] = {.lex_state = 1722}, - [4437] = {.lex_state = 1722}, - [4438] = {.lex_state = 1722}, - [4439] = {.lex_state = 1722}, - [4440] = {.lex_state = 1722}, - [4441] = {.lex_state = 1722}, - [4442] = {.lex_state = 1722}, - [4443] = {.lex_state = 1722}, - [4444] = {.lex_state = 58}, - [4445] = {.lex_state = 1722}, - [4446] = {.lex_state = 1765}, - [4447] = {.lex_state = 1722}, - [4448] = {.lex_state = 1722}, - [4449] = {.lex_state = 1722}, - [4450] = {.lex_state = 1802}, - [4451] = {.lex_state = 1802}, - [4452] = {.lex_state = 1765}, - [4453] = {.lex_state = 1722}, - [4454] = {.lex_state = 1722}, - [4455] = {.lex_state = 1722}, - [4456] = {.lex_state = 1785}, - [4457] = {.lex_state = 1722}, - [4458] = {.lex_state = 70}, - [4459] = {.lex_state = 1722}, - [4460] = {.lex_state = 1757}, - [4461] = {.lex_state = 1787}, - [4462] = {.lex_state = 70}, - [4463] = {.lex_state = 1757}, - [4464] = {.lex_state = 1802}, - [4465] = {.lex_state = 1802}, - [4466] = {.lex_state = 1802}, - [4467] = {.lex_state = 62}, - [4468] = {.lex_state = 1722}, - [4469] = {.lex_state = 1722}, - [4470] = {.lex_state = 1765}, - [4471] = {.lex_state = 1722}, - [4472] = {.lex_state = 1757}, - [4473] = {.lex_state = 1722}, - [4474] = {.lex_state = 1722}, - [4475] = {.lex_state = 1798}, - [4476] = {.lex_state = 1722}, - [4477] = {.lex_state = 1722}, - [4478] = {.lex_state = 1722}, - [4479] = {.lex_state = 1690}, - [4480] = {.lex_state = 70}, - [4481] = {.lex_state = 1722}, - [4482] = {.lex_state = 70}, - [4483] = {.lex_state = 1722}, - [4484] = {.lex_state = 70}, - [4485] = {.lex_state = 1761}, - [4486] = {.lex_state = 1722}, - [4487] = {.lex_state = 1722}, - [4488] = {.lex_state = 1722}, - [4489] = {.lex_state = 1722}, - [4490] = {.lex_state = 1722}, - [4491] = {.lex_state = 1722}, - [4492] = {.lex_state = 70}, - [4493] = {.lex_state = 1722}, - [4494] = {.lex_state = 1722}, - [4495] = {.lex_state = 1690}, - [4496] = {.lex_state = 70}, - [4497] = {.lex_state = 1722}, - [4498] = {.lex_state = 1722}, - [4499] = {.lex_state = 1722}, - [4500] = {.lex_state = 1765}, - [4501] = {.lex_state = 1722}, - [4502] = {.lex_state = 1722}, - [4503] = {.lex_state = 1722}, - [4504] = {.lex_state = 1722}, - [4505] = {.lex_state = 1757}, - [4506] = {.lex_state = 1722}, - [4507] = {.lex_state = 1787}, - [4508] = {.lex_state = 1722}, - [4509] = {.lex_state = 1757}, - [4510] = {.lex_state = 1722}, - [4511] = {.lex_state = 1787}, - [4512] = {.lex_state = 1787}, - [4513] = {.lex_state = 1722}, - [4514] = {.lex_state = 62}, - [4515] = {.lex_state = 1722}, - [4516] = {.lex_state = 1722}, - [4517] = {.lex_state = 1722}, - [4518] = {.lex_state = 1722}, - [4519] = {.lex_state = 33}, - [4520] = {.lex_state = 1781}, - [4521] = {.lex_state = 1722}, - [4522] = {.lex_state = 33}, - [4523] = {.lex_state = 1757}, - [4524] = {.lex_state = 33}, - [4525] = {.lex_state = 1722}, - [4526] = {.lex_state = 1787}, - [4527] = {.lex_state = 1722}, - [4528] = {.lex_state = 33}, - [4529] = {.lex_state = 1798}, - [4530] = {.lex_state = 1722}, - [4531] = {.lex_state = 1722}, - [4532] = {.lex_state = 33}, - [4533] = {.lex_state = 1722}, - [4534] = {.lex_state = 33}, - [4535] = {.lex_state = 15}, - [4536] = {.lex_state = 33}, - [4537] = {.lex_state = 1757}, - [4538] = {.lex_state = 1757}, - [4539] = {.lex_state = 59}, - [4540] = {.lex_state = 33}, - [4541] = {.lex_state = 1690}, - [4542] = {.lex_state = 1802}, - [4543] = {.lex_state = 1802}, - [4544] = {.lex_state = 33}, - [4545] = {.lex_state = 1722}, - [4546] = {.lex_state = 1798}, - [4547] = {.lex_state = 33}, - [4548] = {.lex_state = 1724}, - [4549] = {.lex_state = 1722}, - [4550] = {.lex_state = 1724}, - [4551] = {.lex_state = 1690}, - [4552] = {.lex_state = 33}, - [4553] = {.lex_state = 1761}, - [4554] = {.lex_state = 1761}, - [4555] = {.lex_state = 33}, - [4556] = {.lex_state = 1788}, - [4557] = {.lex_state = 33}, - [4558] = {.lex_state = 59}, - [4559] = {.lex_state = 1721}, - [4560] = {.lex_state = 1787}, - [4561] = {.lex_state = 1781}, - [4562] = {.lex_state = 1757}, - [4563] = {.lex_state = 33}, - [4564] = {.lex_state = 1787}, - [4565] = {.lex_state = 1781}, - [4566] = {.lex_state = 33}, - [4567] = {.lex_state = 1787}, - [4568] = {.lex_state = 1722}, - [4569] = {.lex_state = 1787}, - [4570] = {.lex_state = 1721}, - [4571] = {.lex_state = 1722}, - [4572] = {.lex_state = 33}, - [4573] = {.lex_state = 1798}, - [4574] = {.lex_state = 1722}, - [4575] = {.lex_state = 33}, - [4576] = {.lex_state = 33}, - [4577] = {.lex_state = 1789}, - [4578] = {.lex_state = 33}, - [4579] = {.lex_state = 1722}, - [4580] = {.lex_state = 1781}, - [4581] = {.lex_state = 1802}, - [4582] = {.lex_state = 33}, - [4583] = {.lex_state = 1722}, - [4584] = {.lex_state = 1781}, - [4585] = {.lex_state = 15}, - [4586] = {.lex_state = 1787}, - [4587] = {.lex_state = 1722}, - [4588] = {.lex_state = 1722}, - [4589] = {.lex_state = 1802}, - [4590] = {.lex_state = 1757}, - [4591] = {.lex_state = 1798}, - [4592] = {.lex_state = 70}, - [4593] = {.lex_state = 33}, - [4594] = {.lex_state = 33}, - [4595] = {.lex_state = 1724}, - [4596] = {.lex_state = 1722}, - [4597] = {.lex_state = 1761}, - [4598] = {.lex_state = 1787}, - [4599] = {.lex_state = 1787}, - [4600] = {.lex_state = 70}, - [4601] = {.lex_state = 1722}, - [4602] = {.lex_state = 33}, - [4603] = {.lex_state = 1722}, - [4604] = {.lex_state = 1787}, - [4605] = {.lex_state = 33}, - [4606] = {.lex_state = 1798}, - [4607] = {.lex_state = 1798}, - [4608] = {.lex_state = 1722}, - [4609] = {.lex_state = 1799}, - [4610] = {.lex_state = 1757}, - [4611] = {.lex_state = 1722}, - [4612] = {.lex_state = 1757}, - [4613] = {.lex_state = 1722}, - [4614] = {.lex_state = 1802}, - [4615] = {.lex_state = 1722}, - [4616] = {.lex_state = 1724}, - [4617] = {.lex_state = 33}, - [4618] = {.lex_state = 1722}, - [4619] = {.lex_state = 1757}, - [4620] = {.lex_state = 1690}, - [4621] = {.lex_state = 1787}, - [4622] = {.lex_state = 1722}, - [4623] = {.lex_state = 1724}, - [4624] = {.lex_state = 1724}, - [4625] = {.lex_state = 1690}, - [4626] = {.lex_state = 1757}, - [4627] = {.lex_state = 1724}, - [4628] = {.lex_state = 15}, - [4629] = {.lex_state = 33}, - [4630] = {.lex_state = 33}, - [4631] = {.lex_state = 1722}, - [4632] = {.lex_state = 60}, - [4633] = {.lex_state = 60}, - [4634] = {.lex_state = 1724}, - [4635] = {.lex_state = 1724}, - [4636] = {.lex_state = 1690}, - [4637] = {.lex_state = 1724}, - [4638] = {.lex_state = 1724}, - [4639] = {.lex_state = 60}, - [4640] = {.lex_state = 1724}, - [4641] = {.lex_state = 1724}, - [4642] = {.lex_state = 1724}, - [4643] = {.lex_state = 1724}, - [4644] = {.lex_state = 1724}, - [4645] = {.lex_state = 60}, - [4646] = {.lex_state = 1724}, - [4647] = {.lex_state = 1724}, - [4648] = {.lex_state = 1724}, - [4649] = {.lex_state = 1724}, - [4650] = {.lex_state = 1724}, - [4651] = {.lex_state = 1724}, - [4652] = {.lex_state = 1724}, - [4653] = {.lex_state = 1724}, - [4654] = {.lex_state = 1781}, - [4655] = {.lex_state = 1724}, - [4656] = {.lex_state = 1724}, - [4657] = {.lex_state = 55}, - [4658] = {.lex_state = 1724}, - [4659] = {.lex_state = 1724}, - [4660] = {.lex_state = 1724}, - [4661] = {.lex_state = 1724}, - [4662] = {.lex_state = 1724}, - [4663] = {.lex_state = 1724}, - [4664] = {.lex_state = 60}, - [4665] = {.lex_state = 1724}, - [4666] = {.lex_state = 1724}, - [4667] = {.lex_state = 1722}, - [4668] = {.lex_state = 1788}, - [4669] = {.lex_state = 86}, - [4670] = {.lex_state = 1789}, - [4671] = {.lex_state = 1722}, - [4672] = {.lex_state = 1724}, - [4673] = {.lex_state = 60}, - [4674] = {.lex_state = 1724}, - [4675] = {.lex_state = 1790}, - [4676] = {.lex_state = 1724}, - [4677] = {.lex_state = 33}, - [4678] = {.lex_state = 33}, - [4679] = {.lex_state = 1690}, - [4680] = {.lex_state = 1724}, - [4681] = {.lex_state = 86}, - [4682] = {.lex_state = 1761}, - [4683] = {.lex_state = 1724}, - [4684] = {.lex_state = 55}, - [4685] = {.lex_state = 1724}, - [4686] = {.lex_state = 60}, - [4687] = {.lex_state = 1790}, - [4688] = {.lex_state = 86}, - [4689] = {.lex_state = 1724}, - [4690] = {.lex_state = 1724}, - [4691] = {.lex_state = 1722}, - [4692] = {.lex_state = 1722}, - [4693] = {.lex_state = 1724}, - [4694] = {.lex_state = 1724}, - [4695] = {.lex_state = 33}, - [4696] = {.lex_state = 1722}, - [4697] = {.lex_state = 60}, - [4698] = {.lex_state = 55}, - [4699] = {.lex_state = 55}, - [4700] = {.lex_state = 1724}, - [4701] = {.lex_state = 55}, - [4702] = {.lex_state = 1724}, - [4703] = {.lex_state = 1724}, - [4704] = {.lex_state = 1722}, - [4705] = {.lex_state = 55}, - [4706] = {.lex_state = 1722}, - [4707] = {.lex_state = 1761}, - [4708] = {.lex_state = 1724}, - [4709] = {.lex_state = 1757}, - [4710] = {.lex_state = 1724}, - [4711] = {.lex_state = 273}, - [4712] = {.lex_state = 70}, - [4713] = {.lex_state = 61}, - [4714] = {.lex_state = 1724}, - [4715] = {.lex_state = 1724}, - [4716] = {.lex_state = 1724}, - [4717] = {.lex_state = 70}, - [4718] = {.lex_state = 70}, - [4719] = {.lex_state = 86}, - [4720] = {.lex_state = 1724}, - [4721] = {.lex_state = 70}, - [4722] = {.lex_state = 1724}, - [4723] = {.lex_state = 1781}, - [4724] = {.lex_state = 1724}, - [4725] = {.lex_state = 15}, - [4726] = {.lex_state = 1781}, - [4727] = {.lex_state = 70}, - [4728] = {.lex_state = 1721}, - [4729] = {.lex_state = 1690}, - [4730] = {.lex_state = 70}, - [4731] = {.lex_state = 1724}, - [4732] = {.lex_state = 1724}, - [4733] = {.lex_state = 33}, - [4734] = {.lex_state = 1724}, - [4735] = {.lex_state = 1722}, - [4736] = {.lex_state = 1722}, - [4737] = {.lex_state = 1724}, - [4738] = {.lex_state = 1724}, - [4739] = {.lex_state = 1724}, - [4740] = {.lex_state = 1724}, - [4741] = {.lex_state = 15}, - [4742] = {.lex_state = 1721}, - [4743] = {.lex_state = 1724}, - [4744] = {.lex_state = 1724}, - [4745] = {.lex_state = 1724}, - [4746] = {.lex_state = 1724}, - [4747] = {.lex_state = 1724}, - [4748] = {.lex_state = 1757}, - [4749] = {.lex_state = 1724}, - [4750] = {.lex_state = 1724}, - [4751] = {.lex_state = 1724}, - [4752] = {.lex_state = 60}, - [4753] = {.lex_state = 1722}, - [4754] = {.lex_state = 1724}, - [4755] = {.lex_state = 1724}, - [4756] = {.lex_state = 1721}, - [4757] = {.lex_state = 1722}, - [4758] = {.lex_state = 1724}, - [4759] = {.lex_state = 1724}, - [4760] = {.lex_state = 1722}, - [4761] = {.lex_state = 1721}, - [4762] = {.lex_state = 55}, - [4763] = {.lex_state = 1722}, - [4764] = {.lex_state = 1724}, - [4765] = {.lex_state = 1724}, - [4766] = {.lex_state = 1722}, - [4767] = {.lex_state = 1724}, - [4768] = {.lex_state = 1724}, - [4769] = {.lex_state = 1787}, - [4770] = {.lex_state = 1722}, - [4771] = {.lex_state = 1722}, - [4772] = {.lex_state = 1722}, - [4773] = {.lex_state = 1724}, - [4774] = {.lex_state = 1724}, - [4775] = {.lex_state = 1722}, - [4776] = {.lex_state = 1724}, - [4777] = {.lex_state = 1724}, - [4778] = {.lex_state = 1724}, - [4779] = {.lex_state = 1722}, - [4780] = {.lex_state = 15}, - [4781] = {.lex_state = 1724}, - [4782] = {.lex_state = 1724}, - [4783] = {.lex_state = 1724}, - [4784] = {.lex_state = 15}, - [4785] = {.lex_state = 1724}, - [4786] = {.lex_state = 1724}, - [4787] = {.lex_state = 86}, - [4788] = {.lex_state = 55}, - [4789] = {.lex_state = 1724}, - [4790] = {.lex_state = 1722}, - [4791] = {.lex_state = 1724}, - [4792] = {.lex_state = 1724}, - [4793] = {.lex_state = 1724}, - [4794] = {.lex_state = 1724}, - [4795] = {.lex_state = 1724}, - [4796] = {.lex_state = 1724}, - [4797] = {.lex_state = 60}, - [4798] = {.lex_state = 33}, - [4799] = {.lex_state = 1724}, - [4800] = {.lex_state = 33}, - [4801] = {.lex_state = 1724}, - [4802] = {.lex_state = 1724}, - [4803] = {.lex_state = 1724}, - [4804] = {.lex_state = 1724}, - [4805] = {.lex_state = 33}, - [4806] = {.lex_state = 1724}, - [4807] = {.lex_state = 33}, - [4808] = {.lex_state = 1721}, - [4809] = {.lex_state = 1721}, - [4810] = {.lex_state = 1724}, - [4811] = {.lex_state = 1722}, - [4812] = {.lex_state = 1721}, - [4813] = {.lex_state = 1724}, - [4814] = {.lex_state = 277}, - [4815] = {.lex_state = 33}, - [4816] = {.lex_state = 33}, - [4817] = {.lex_state = 269}, - [4818] = {.lex_state = 1724}, - [4819] = {.lex_state = 1791}, - [4820] = {.lex_state = 1724}, - [4821] = {.lex_state = 33}, - [4822] = {.lex_state = 33}, - [4823] = {.lex_state = 1790}, - [4824] = {.lex_state = 1721}, - [4825] = {.lex_state = 269}, - [4826] = {.lex_state = 1724}, - [4827] = {.lex_state = 1721}, - [4828] = {.lex_state = 33}, - [4829] = {.lex_state = 33}, - [4830] = {.lex_state = 33}, - [4831] = {.lex_state = 1724}, - [4832] = {.lex_state = 1724}, - [4833] = {.lex_state = 70}, - [4834] = {.lex_state = 33}, - [4835] = {.lex_state = 33}, - [4836] = {.lex_state = 1724}, - [4837] = {.lex_state = 33}, - [4838] = {.lex_state = 1721}, - [4839] = {.lex_state = 1724}, - [4840] = {.lex_state = 2}, - [4841] = {.lex_state = 2}, - [4842] = {.lex_state = 1724}, - [4843] = {.lex_state = 1724}, - [4844] = {.lex_state = 33}, - [4845] = {.lex_state = 1724}, - [4846] = {.lex_state = 33}, - [4847] = {.lex_state = 1724}, - [4848] = {.lex_state = 33}, - [4849] = {.lex_state = 1724}, - [4850] = {.lex_state = 33}, - [4851] = {.lex_state = 33}, - [4852] = {.lex_state = 1724}, - [4853] = {.lex_state = 33}, - [4854] = {.lex_state = 1721}, - [4855] = {.lex_state = 1724}, - [4856] = {.lex_state = 33}, - [4857] = {.lex_state = 1724}, - [4858] = {.lex_state = 1724}, - [4859] = {.lex_state = 1790}, - [4860] = {.lex_state = 33}, - [4861] = {.lex_state = 1724}, - [4862] = {.lex_state = 1721}, - [4863] = {.lex_state = 1721}, - [4864] = {.lex_state = 277}, - [4865] = {.lex_state = 278}, - [4866] = {.lex_state = 1722}, - [4867] = {.lex_state = 1724}, - [4868] = {.lex_state = 1724}, - [4869] = {.lex_state = 70}, - [4870] = {.lex_state = 1721}, - [4871] = {.lex_state = 1721}, - [4872] = {.lex_state = 33}, - [4873] = {.lex_state = 33}, - [4874] = {.lex_state = 1721}, - [4875] = {.lex_state = 1721}, - [4876] = {.lex_state = 70}, - [4877] = {.lex_state = 33}, - [4878] = {.lex_state = 1724}, - [4879] = {.lex_state = 1724}, - [4880] = {.lex_state = 33}, - [4881] = {.lex_state = 1724}, - [4882] = {.lex_state = 1724}, - [4883] = {.lex_state = 33}, - [4884] = {.lex_state = 1761}, - [4885] = {.lex_state = 33}, - [4886] = {.lex_state = 33}, - [4887] = {.lex_state = 1791}, - [4888] = {.lex_state = 1754}, - [4889] = {.lex_state = 1722}, - [4890] = {.lex_state = 1761}, - [4891] = {.lex_state = 1754}, - [4892] = {.lex_state = 1724}, - [4893] = {.lex_state = 33}, - [4894] = {.lex_state = 1724}, - [4895] = {.lex_state = 1724}, - [4896] = {.lex_state = 33}, - [4897] = {.lex_state = 1721}, - [4898] = {.lex_state = 1724}, - [4899] = {.lex_state = 1724}, - [4900] = {.lex_state = 1724}, - [4901] = {.lex_state = 33}, - [4902] = {.lex_state = 1724}, - [4903] = {.lex_state = 1724}, - [4904] = {.lex_state = 1721}, - [4905] = {.lex_state = 1724}, - [4906] = {.lex_state = 1721}, - [4907] = {.lex_state = 2}, - [4908] = {.lex_state = 1724}, - [4909] = {.lex_state = 33}, - [4910] = {.lex_state = 1721}, - [4911] = {.lex_state = 1724}, - [4912] = {.lex_state = 1724}, - [4913] = {.lex_state = 1724}, - [4914] = {.lex_state = 1722}, - [4915] = {.lex_state = 1722}, - [4916] = {.lex_state = 1722}, - [4917] = {.lex_state = 1722}, - [4918] = {.lex_state = 1722}, - [4919] = {.lex_state = 1722}, - [4920] = {.lex_state = 1722}, - [4921] = {.lex_state = 1722}, - [4922] = {.lex_state = 1722}, - [4923] = {.lex_state = 1722}, - [4924] = {.lex_state = 1722}, - [4925] = {.lex_state = 1722}, - [4926] = {.lex_state = 1724}, - [4927] = {.lex_state = 1754}, - [4928] = {.lex_state = 33}, - [4929] = {.lex_state = 33}, - [4930] = {.lex_state = 33}, - [4931] = {.lex_state = 1724}, - [4932] = {.lex_state = 33}, - [4933] = {.lex_state = 1724}, - [4934] = {.lex_state = 33}, - [4935] = {.lex_state = 1724}, - [4936] = {.lex_state = 33}, - [4937] = {.lex_state = 33}, - [4938] = {.lex_state = 55}, - [4939] = {.lex_state = 1724}, - [4940] = {.lex_state = 1791}, - [4941] = {.lex_state = 33}, - [4942] = {.lex_state = 33}, - [4943] = {.lex_state = 1721}, - [4944] = {.lex_state = 1724}, - [4945] = {.lex_state = 66}, - [4946] = {.lex_state = 1724}, - [4947] = {.lex_state = 33}, - [4948] = {.lex_state = 1724}, - [4949] = {.lex_state = 1724}, - [4950] = {.lex_state = 2}, - [4951] = {.lex_state = 1724}, - [4952] = {.lex_state = 1722}, - [4953] = {.lex_state = 1724}, - [4954] = {.lex_state = 33}, - [4955] = {.lex_state = 1724}, - [4956] = {.lex_state = 1721}, - [4957] = {.lex_state = 1791}, - [4958] = {.lex_state = 1724}, - [4959] = {.lex_state = 33}, - [4960] = {.lex_state = 1724}, - [4961] = {.lex_state = 1721}, - [4962] = {.lex_state = 1724}, - [4963] = {.lex_state = 1724}, - [4964] = {.lex_state = 1791}, - [4965] = {.lex_state = 33}, - [4966] = {.lex_state = 1724}, - [4967] = {.lex_state = 1724}, - [4968] = {.lex_state = 33}, - [4969] = {.lex_state = 1724}, - [4970] = {.lex_state = 1724}, - [4971] = {.lex_state = 1721}, - [4972] = {.lex_state = 1724}, - [4973] = {.lex_state = 33}, - [4974] = {.lex_state = 1724}, - [4975] = {.lex_state = 1724}, - [4976] = {.lex_state = 1721}, - [4977] = {.lex_state = 1721}, - [4978] = {.lex_state = 1724}, - [4979] = {.lex_state = 1721}, - [4980] = {.lex_state = 1724}, - [4981] = {.lex_state = 1724}, - [4982] = {.lex_state = 1721}, - [4983] = {.lex_state = 1724}, - [4984] = {.lex_state = 1724}, - [4985] = {.lex_state = 1724}, - [4986] = {.lex_state = 1721}, - [4987] = {.lex_state = 1721}, - [4988] = {.lex_state = 1724}, - [4989] = {.lex_state = 1724}, - [4990] = {.lex_state = 274}, - [4991] = {.lex_state = 1724}, - [4992] = {.lex_state = 33}, - [4993] = {.lex_state = 1724}, - [4994] = {.lex_state = 33}, - [4995] = {.lex_state = 1724}, - [4996] = {.lex_state = 33}, - [4997] = {.lex_state = 1724}, - [4998] = {.lex_state = 1721}, - [4999] = {.lex_state = 33}, - [5000] = {.lex_state = 33}, - [5001] = {.lex_state = 33}, - [5002] = {.lex_state = 1724}, - [5003] = {.lex_state = 33}, - [5004] = {.lex_state = 55}, - [5005] = {.lex_state = 1721}, - [5006] = {.lex_state = 33}, - [5007] = {.lex_state = 1754}, - [5008] = {.lex_state = 101}, - [5009] = {.lex_state = 33}, - [5010] = {.lex_state = 33}, - [5011] = {.lex_state = 280}, - [5012] = {.lex_state = 285}, - [5013] = {.lex_state = 1721}, - [5014] = {.lex_state = 1721}, - [5015] = {.lex_state = 1721}, - [5016] = {.lex_state = 1721}, - [5017] = {.lex_state = 1721}, - [5018] = {.lex_state = 277}, - [5019] = {.lex_state = 277}, - [5020] = {.lex_state = 277}, - [5021] = {.lex_state = 1721}, - [5022] = {.lex_state = 275}, - [5023] = {.lex_state = 1721}, - [5024] = {.lex_state = 1721}, - [5025] = {.lex_state = 33}, - [5026] = {.lex_state = 1721}, - [5027] = {.lex_state = 33}, - [5028] = {.lex_state = 33}, - [5029] = {.lex_state = 33}, - [5030] = {.lex_state = 33}, - [5031] = {.lex_state = 33}, - [5032] = {.lex_state = 33}, - [5033] = {.lex_state = 33}, - [5034] = {.lex_state = 33}, - [5035] = {.lex_state = 33}, - [5036] = {.lex_state = 33}, - [5037] = {.lex_state = 33}, - [5038] = {.lex_state = 33}, - [5039] = {.lex_state = 33}, - [5040] = {.lex_state = 33}, - [5041] = {.lex_state = 33}, - [5042] = {.lex_state = 33}, - [5043] = {.lex_state = 33}, - [5044] = {.lex_state = 33}, - [5045] = {.lex_state = 33}, - [5046] = {.lex_state = 33}, - [5047] = {.lex_state = 33}, - [5048] = {.lex_state = 1721}, - [5049] = {.lex_state = 1721}, - [5050] = {.lex_state = 33}, - [5051] = {.lex_state = 1791}, - [5052] = {.lex_state = 1791}, - [5053] = {.lex_state = 1791}, - [5054] = {.lex_state = 1791}, - [5055] = {.lex_state = 1721}, - [5056] = {.lex_state = 10}, - [5057] = {.lex_state = 10}, - [5058] = {.lex_state = 1721}, - [5059] = {.lex_state = 10}, - [5060] = {.lex_state = 1721}, - [5061] = {.lex_state = 5176}, - [5062] = {.lex_state = 10}, - [5063] = {.lex_state = 1721}, - [5064] = {.lex_state = 5176}, - [5065] = {.lex_state = 1721}, - [5066] = {.lex_state = 1721}, - [5067] = {.lex_state = 33}, - [5068] = {.lex_state = 33}, - [5069] = {.lex_state = 10}, - [5070] = {.lex_state = 33}, - [5071] = {.lex_state = 10}, - [5072] = {.lex_state = 33}, - [5073] = {.lex_state = 1721}, - [5074] = {.lex_state = 1721}, - [5075] = {.lex_state = 1721}, - [5076] = {.lex_state = 1721}, - [5077] = {.lex_state = 1721}, - [5078] = {.lex_state = 1721}, - [5079] = {.lex_state = 1721}, - [5080] = {.lex_state = 1721}, - [5081] = {.lex_state = 310}, - [5082] = {.lex_state = 272}, - [5083] = {.lex_state = 323}, - [5084] = {.lex_state = 1721}, - [5085] = {.lex_state = 1721}, - [5086] = {.lex_state = 277}, - [5087] = {.lex_state = 1721}, - [5088] = {.lex_state = 5176}, - [5089] = {.lex_state = 270}, - [5090] = {.lex_state = 5176}, - [5091] = {.lex_state = 1721}, - [5092] = {.lex_state = 1721}, - [5093] = {.lex_state = 1721}, - [5094] = {.lex_state = 1721}, - [5095] = {.lex_state = 1721}, - [5096] = {.lex_state = 33}, - [5097] = {.lex_state = 270}, - [5098] = {.lex_state = 1721}, - [5099] = {.lex_state = 1721}, - [5100] = {.lex_state = 1721}, - [5101] = {.lex_state = 1721}, - [5102] = {.lex_state = 1721}, - [5103] = {.lex_state = 1721}, - [5104] = {.lex_state = 1721}, - [5105] = {.lex_state = 1721}, - [5106] = {.lex_state = 1721}, - [5107] = {.lex_state = 1721}, - [5108] = {.lex_state = 1721}, - [5109] = {.lex_state = 1721}, - [5110] = {.lex_state = 1721}, - [5111] = {.lex_state = 1721}, - [5112] = {.lex_state = 1791}, - [5113] = {.lex_state = 1721}, - [5114] = {.lex_state = 1721}, - [5115] = {.lex_state = 276}, - [5116] = {.lex_state = 1721}, - [5117] = {.lex_state = 1721}, - [5118] = {.lex_state = 1721}, - [5119] = {.lex_state = 1721}, - [5120] = {.lex_state = 1721}, - [5121] = {.lex_state = 1721}, - [5122] = {.lex_state = 1721}, - [5123] = {.lex_state = 1721}, - [5124] = {.lex_state = 1721}, - [5125] = {.lex_state = 1721}, - [5126] = {.lex_state = 1721}, - [5127] = {.lex_state = 1721}, - [5128] = {.lex_state = 1721}, - [5129] = {.lex_state = 1721}, - [5130] = {.lex_state = 1721}, - [5131] = {.lex_state = 1721}, - [5132] = {.lex_state = 1721}, - [5133] = {.lex_state = 1721}, - [5134] = {.lex_state = 1721}, - [5135] = {.lex_state = 1721}, - [5136] = {.lex_state = 1721}, - [5137] = {.lex_state = 276}, - [5138] = {.lex_state = 33}, - [5139] = {.lex_state = 33}, - [5140] = {.lex_state = 33}, - [5141] = {.lex_state = 277}, - [5142] = {.lex_state = 272}, - [5143] = {.lex_state = 101}, - [5144] = {.lex_state = 1722}, - [5145] = {.lex_state = 1722}, - [5146] = {.lex_state = 1722}, - [5147] = {.lex_state = 1722}, - [5148] = {.lex_state = 1721}, - [5149] = {.lex_state = 1721}, - [5150] = {.lex_state = 1722}, - [5151] = {.lex_state = 1722}, - [5152] = {.lex_state = 1722}, - [5153] = {.lex_state = 1722}, - [5154] = {.lex_state = 5176}, - [5155] = {.lex_state = 1722}, - [5156] = {.lex_state = 1722}, - [5157] = {.lex_state = 1722}, - [5158] = {.lex_state = 1722}, - [5159] = {.lex_state = 1754}, - [5160] = {.lex_state = 1754}, - [5161] = {.lex_state = 1754}, - [5162] = {.lex_state = 1754}, - [5163] = {.lex_state = 1754}, - [5164] = {.lex_state = 279}, - [5165] = {.lex_state = 281}, - [5166] = {.lex_state = 1721}, - [5167] = {.lex_state = 1754}, - [5168] = {.lex_state = 1754}, - [5169] = {.lex_state = 1754}, - [5170] = {.lex_state = 1754}, - [5171] = {.lex_state = 1721}, - [5172] = {.lex_state = 1722}, - [5173] = {.lex_state = 33}, - [5174] = {.lex_state = 33}, - [5175] = {.lex_state = 1721}, - [5176] = {.lex_state = 1754}, - [5177] = {.lex_state = 1754}, - [5178] = {.lex_state = 1721}, - [5179] = {.lex_state = 342}, - [5180] = {.lex_state = 1696}, - [5181] = {.lex_state = 1696}, - [5182] = {.lex_state = 1696}, - [5183] = {.lex_state = 1696}, - [5184] = {.lex_state = 1696}, - [5185] = {.lex_state = 1696}, - [5186] = {.lex_state = 1696}, - [5187] = {.lex_state = 1696}, - [5188] = {.lex_state = 1696}, - [5189] = {.lex_state = 71}, - [5190] = {.lex_state = 1696}, - [5191] = {.lex_state = 1696}, - [5192] = {.lex_state = 1696}, - [5193] = {.lex_state = 1696}, - [5194] = {.lex_state = 1696}, - [5195] = {.lex_state = 1696}, - [5196] = {.lex_state = 7}, - [5197] = {.lex_state = 1696}, - [5198] = {.lex_state = 71}, - [5199] = {.lex_state = 1696}, - [5200] = {.lex_state = 33}, - [5201] = {.lex_state = 1696}, - [5202] = {.lex_state = 1696}, - [5203] = {.lex_state = 1696}, - [5204] = {.lex_state = 1696}, - [5205] = {.lex_state = 1696}, - [5206] = {.lex_state = 1754}, - [5207] = {.lex_state = 7}, - [5208] = {.lex_state = 277}, - [5209] = {.lex_state = 33}, - [5210] = {.lex_state = 1754}, - [5211] = {.lex_state = 7}, - [5212] = {.lex_state = 1754}, - [5213] = {.lex_state = 324}, - [5214] = {.lex_state = 340}, - [5215] = {.lex_state = 1696}, - [5216] = {.lex_state = 271}, - [5217] = {.lex_state = 33}, - [5218] = {.lex_state = 62}, - [5219] = {.lex_state = 33}, - [5220] = {.lex_state = 7}, - [5221] = {.lex_state = 1754}, - [5222] = {.lex_state = 282}, - [5223] = {.lex_state = 1754}, - [5224] = {.lex_state = 1754}, - [5225] = {.lex_state = 1754}, - [5226] = {.lex_state = 1722}, - [5227] = {.lex_state = 277}, - [5228] = {.lex_state = 71}, - [5229] = {.lex_state = 286}, - [5230] = {.lex_state = 324}, - [5231] = {.lex_state = 282}, - [5232] = {.lex_state = 271}, - [5233] = {.lex_state = 7}, - [5234] = {.lex_state = 1721}, - [5235] = {.lex_state = 348}, - [5236] = {.lex_state = 286}, - [5237] = {.lex_state = 71}, - [5238] = {.lex_state = 71}, - [5239] = {.lex_state = 355}, - [5240] = {.lex_state = 33}, - [5241] = {.lex_state = 33}, - [5242] = {.lex_state = 33}, - [5243] = {.lex_state = 62}, - [5244] = {.lex_state = 1754}, - [5245] = {.lex_state = 1754}, - [5246] = {.lex_state = 311}, - [5247] = {.lex_state = 317}, - [5248] = {.lex_state = 4719}, - [5249] = {.lex_state = 318}, - [5250] = {.lex_state = 284}, - [5251] = {.lex_state = 33}, - [5252] = {.lex_state = 284}, - [5253] = {.lex_state = 287}, - [5254] = {.lex_state = 349}, - [5255] = {.lex_state = 283}, - [5256] = {.lex_state = 1760}, - [5257] = {.lex_state = 356}, - [5258] = {.lex_state = 33, .external_lex_state = 2}, - [5259] = {.lex_state = 5177}, - [5260] = {.lex_state = 4719}, - [5261] = {.lex_state = 4719}, - [5262] = {.lex_state = 33, .external_lex_state = 2}, - [5263] = {.lex_state = 5177}, - [5264] = {.lex_state = 4719}, - [5265] = {.lex_state = 4719}, - [5266] = {.lex_state = 5177}, - [5267] = {.lex_state = 1696}, - [5268] = {.lex_state = 312}, - [5269] = {.lex_state = 1696}, - [5270] = {.lex_state = 5352}, - [5271] = {.lex_state = 5352}, - [5272] = {.lex_state = 33, .external_lex_state = 2}, - [5273] = {.lex_state = 284}, - [5274] = {.lex_state = 1760}, - [5275] = {.lex_state = 4719}, - [5276] = {.lex_state = 4719}, - [5277] = {.lex_state = 5352}, - [5278] = {.lex_state = 33, .external_lex_state = 2}, - [5279] = {.lex_state = 5352}, - [5280] = {.lex_state = 319}, - [5281] = {.lex_state = 4719}, - [5282] = {.lex_state = 4719}, - [5283] = {.lex_state = 33, .external_lex_state = 2}, - [5284] = {.lex_state = 1760}, - [5285] = {.lex_state = 1696}, - [5286] = {.lex_state = 62}, - [5287] = {.lex_state = 62}, - [5288] = {.lex_state = 1760}, - [5289] = {.lex_state = 325}, - [5290] = {.lex_state = 325}, - [5291] = {.lex_state = 310}, - [5292] = {.lex_state = 343}, - [5293] = {.lex_state = 5352}, - [5294] = {.lex_state = 1696}, - [5295] = {.lex_state = 5352}, - [5296] = {.lex_state = 1696}, - [5297] = {.lex_state = 1696}, - [5298] = {.lex_state = 1696}, - [5299] = {.lex_state = 1696}, - [5300] = {.lex_state = 1696}, - [5301] = {.lex_state = 1696}, - [5302] = {.lex_state = 1696}, - [5303] = {.lex_state = 1696}, - [5304] = {.lex_state = 318}, - [5305] = {.lex_state = 1696}, - [5306] = {.lex_state = 1696}, - [5307] = {.lex_state = 1696}, - [5308] = {.lex_state = 1696}, - [5309] = {.lex_state = 1696}, - [5310] = {.lex_state = 1696}, - [5311] = {.lex_state = 1696}, - [5312] = {.lex_state = 1696}, - [5313] = {.lex_state = 4719}, - [5314] = {.lex_state = 4719}, - [5315] = {.lex_state = 33, .external_lex_state = 2}, - [5316] = {.lex_state = 33, .external_lex_state = 2}, - [5317] = {.lex_state = 33, .external_lex_state = 2}, - [5318] = {.lex_state = 284}, - [5319] = {.lex_state = 310}, - [5320] = {.lex_state = 4719}, - [5321] = {.lex_state = 4719}, - [5322] = {.lex_state = 4719}, - [5323] = {.lex_state = 4719}, - [5324] = {.lex_state = 325}, - [5325] = {.lex_state = 343}, - [5326] = {.lex_state = 298}, - [5327] = {.lex_state = 300}, - [5328] = {.lex_state = 287}, - [5329] = {.lex_state = 77}, - [5330] = {.lex_state = 1696}, - [5331] = {.lex_state = 4719}, - [5332] = {.lex_state = 4719}, - [5333] = {.lex_state = 33, .external_lex_state = 2}, - [5334] = {.lex_state = 326}, - [5335] = {.lex_state = 325}, - [5336] = {.lex_state = 284}, - [5337] = {.lex_state = 1696}, - [5338] = {.lex_state = 5177}, - [5339] = {.lex_state = 5177}, - [5340] = {.lex_state = 1696}, - [5341] = {.lex_state = 78}, - [5342] = {.lex_state = 325}, - [5343] = {.lex_state = 33}, - [5344] = {.lex_state = 5177}, - [5345] = {.lex_state = 283}, - [5346] = {.lex_state = 1760}, - [5347] = {.lex_state = 283}, - [5348] = {.lex_state = 1754}, - [5349] = {.lex_state = 1696}, - [5350] = {.lex_state = 1754}, - [5351] = {.lex_state = 4719}, - [5352] = {.lex_state = 283}, - [5353] = {.lex_state = 5177}, - [5354] = {.lex_state = 283}, - [5355] = {.lex_state = 310}, - [5356] = {.lex_state = 357}, - [5357] = {.lex_state = 1760}, - [5358] = {.lex_state = 357}, - [5359] = {.lex_state = 1696}, - [5360] = {.lex_state = 1754}, - [5361] = {.lex_state = 1696}, - [5362] = {.lex_state = 358}, - [5363] = {.lex_state = 1754}, - [5364] = {.lex_state = 1754}, - [5365] = {.lex_state = 310}, - [5366] = {.lex_state = 1754}, - [5367] = {.lex_state = 1754}, - [5368] = {.lex_state = 1754}, - [5369] = {.lex_state = 354}, - [5370] = {.lex_state = 341}, - [5371] = {.lex_state = 1754}, - [5372] = {.lex_state = 310}, - [5373] = {.lex_state = 1754}, - [5374] = {.lex_state = 1754}, - [5375] = {.lex_state = 62}, - [5376] = {.lex_state = 1690}, - [5377] = {.lex_state = 33}, - [5378] = {.lex_state = 1754}, - [5379] = {.lex_state = 1754}, - [5380] = {.lex_state = 327}, - [5381] = {.lex_state = 1754}, - [5382] = {.lex_state = 359}, - [5383] = {.lex_state = 1754}, - [5384] = {.lex_state = 1754}, - [5385] = {.lex_state = 1754}, - [5386] = {.lex_state = 1754}, - [5387] = {.lex_state = 1754}, - [5388] = {.lex_state = 1754}, - [5389] = {.lex_state = 33}, - [5390] = {.lex_state = 33}, - [5391] = {.lex_state = 1754}, - [5392] = {.lex_state = 1754}, - [5393] = {.lex_state = 1754}, - [5394] = {.lex_state = 1754}, - [5395] = {.lex_state = 1754}, - [5396] = {.lex_state = 341}, - [5397] = {.lex_state = 1754}, - [5398] = {.lex_state = 1754}, - [5399] = {.lex_state = 1754}, - [5400] = {.lex_state = 1754}, - [5401] = {.lex_state = 1760}, - [5402] = {.lex_state = 1754}, - [5403] = {.lex_state = 1754}, - [5404] = {.lex_state = 62}, - [5405] = {.lex_state = 320}, - [5406] = {.lex_state = 341}, - [5407] = {.lex_state = 73}, - [5408] = {.lex_state = 33}, - [5409] = {.lex_state = 301}, - [5410] = {.lex_state = 62}, - [5411] = {.lex_state = 287}, - [5412] = {.lex_state = 341}, - [5413] = {.lex_state = 368}, - [5414] = {.lex_state = 1760}, - [5415] = {.lex_state = 301}, - [5416] = {.lex_state = 1754}, - [5417] = {.lex_state = 62}, - [5418] = {.lex_state = 1797}, - [5419] = {.lex_state = 341}, - [5420] = {.lex_state = 79}, - [5421] = {.lex_state = 1754}, - [5422] = {.lex_state = 1696}, - [5423] = {.lex_state = 350}, - [5424] = {.lex_state = 1690}, - [5425] = {.lex_state = 1754}, - [5426] = {.lex_state = 1696}, - [5427] = {.lex_state = 1760}, - [5428] = {.lex_state = 1754}, - [5429] = {.lex_state = 361}, - [5430] = {.lex_state = 62}, - [5431] = {.lex_state = 62}, - [5432] = {.lex_state = 1792}, - [5433] = {.lex_state = 353}, - [5434] = {.lex_state = 62}, - [5435] = {.lex_state = 33}, - [5436] = {.lex_state = 62}, - [5437] = {.lex_state = 62}, - [5438] = {.lex_state = 1754}, - [5439] = {.lex_state = 79}, - [5440] = {.lex_state = 327}, - [5441] = {.lex_state = 1754}, - [5442] = {.lex_state = 62}, - [5443] = {.lex_state = 74}, - [5444] = {.lex_state = 1754}, - [5445] = {.lex_state = 367}, - [5446] = {.lex_state = 1754}, - [5447] = {.lex_state = 1754}, - [5448] = {.lex_state = 1754}, - [5449] = {.lex_state = 1754}, - [5450] = {.lex_state = 1690}, - [5451] = {.lex_state = 62}, - [5452] = {.lex_state = 1760}, - [5453] = {.lex_state = 62}, - [5454] = {.lex_state = 1760}, - [5455] = {.lex_state = 1754}, - [5456] = {.lex_state = 1696}, - [5457] = {.lex_state = 33, .external_lex_state = 2}, - [5458] = {.lex_state = 319}, - [5459] = {.lex_state = 62}, - [5460] = {.lex_state = 1754}, - [5461] = {.lex_state = 33, .external_lex_state = 2}, - [5462] = {.lex_state = 33, .external_lex_state = 2}, - [5463] = {.lex_state = 1696}, - [5464] = {.lex_state = 1754}, - [5465] = {.lex_state = 1754}, - [5466] = {.lex_state = 1754}, - [5467] = {.lex_state = 1754}, - [5468] = {.lex_state = 33, .external_lex_state = 2}, - [5469] = {.lex_state = 62}, - [5470] = {.lex_state = 1754}, - [5471] = {.lex_state = 1754}, - [5472] = {.lex_state = 1754}, - [5473] = {.lex_state = 358}, - [5474] = {.lex_state = 359}, - [5475] = {.lex_state = 1696}, - [5476] = {.lex_state = 1696}, - [5477] = {.lex_state = 319}, - [5478] = {.lex_state = 62}, - [5479] = {.lex_state = 313}, - [5480] = {.lex_state = 62}, - [5481] = {.lex_state = 359}, - [5482] = {.lex_state = 62}, - [5483] = {.lex_state = 62}, - [5484] = {.lex_state = 62}, - [5485] = {.lex_state = 1696}, - [5486] = {.lex_state = 359}, - [5487] = {.lex_state = 62}, - [5488] = {.lex_state = 359}, - [5489] = {.lex_state = 62}, - [5490] = {.lex_state = 62}, - [5491] = {.lex_state = 1754}, - [5492] = {.lex_state = 1760}, - [5493] = {.lex_state = 62}, - [5494] = {.lex_state = 319}, - [5495] = {.lex_state = 62}, - [5496] = {.lex_state = 62}, - [5497] = {.lex_state = 319}, - [5498] = {.lex_state = 287}, - [5499] = {.lex_state = 1760}, - [5500] = {.lex_state = 33, .external_lex_state = 2}, - [5501] = {.lex_state = 1803}, - [5502] = {.lex_state = 1803}, - [5503] = {.lex_state = 1803}, - [5504] = {.lex_state = 259, .external_lex_state = 2}, - [5505] = {.lex_state = 10}, - [5506] = {.lex_state = 1690}, - [5507] = {.lex_state = 1690}, - [5508] = {.lex_state = 80}, - [5509] = {.lex_state = 33, .external_lex_state = 2}, - [5510] = {.lex_state = 369}, - [5511] = {.lex_state = 1696}, - [5512] = {.lex_state = 370}, - [5513] = {.lex_state = 1690}, - [5514] = {.lex_state = 1803}, - [5515] = {.lex_state = 80}, - [5516] = {.lex_state = 1797}, - [5517] = {.lex_state = 33, .external_lex_state = 2}, - [5518] = {.lex_state = 1760}, - [5519] = {.lex_state = 1760}, - [5520] = {.lex_state = 1696}, - [5521] = {.lex_state = 80}, - [5522] = {.lex_state = 1696}, + [3949] = {.lex_state = 7}, + [3950] = {.lex_state = 7}, + [3951] = {.lex_state = 122}, + [3952] = {.lex_state = 122}, + [3953] = {.lex_state = 54, .external_lex_state = 2}, + [3954] = {.lex_state = 54, .external_lex_state = 2}, + [3955] = {.lex_state = 54, .external_lex_state = 2}, + [3956] = {.lex_state = 54, .external_lex_state = 2}, + [3957] = {.lex_state = 124}, + [3958] = {.lex_state = 1707}, + [3959] = {.lex_state = 1707}, + [3960] = {.lex_state = 1707}, + [3961] = {.lex_state = 1707}, + [3962] = {.lex_state = 1707}, + [3963] = {.lex_state = 1707}, + [3964] = {.lex_state = 1707}, + [3965] = {.lex_state = 1707}, + [3966] = {.lex_state = 1707}, + [3967] = {.lex_state = 1707}, + [3968] = {.lex_state = 1707}, + [3969] = {.lex_state = 1707}, + [3970] = {.lex_state = 1707}, + [3971] = {.lex_state = 1707}, + [3972] = {.lex_state = 1707}, + [3973] = {.lex_state = 1707}, + [3974] = {.lex_state = 1707}, + [3975] = {.lex_state = 123}, + [3976] = {.lex_state = 110}, + [3977] = {.lex_state = 1739}, + [3978] = {.lex_state = 1707}, + [3979] = {.lex_state = 1707}, + [3980] = {.lex_state = 1707}, + [3981] = {.lex_state = 1707}, + [3982] = {.lex_state = 1707}, + [3983] = {.lex_state = 1707}, + [3984] = {.lex_state = 1707}, + [3985] = {.lex_state = 1707}, + [3986] = {.lex_state = 1707}, + [3987] = {.lex_state = 1707}, + [3988] = {.lex_state = 1707}, + [3989] = {.lex_state = 1707}, + [3990] = {.lex_state = 110}, + [3991] = {.lex_state = 1707}, + [3992] = {.lex_state = 1707}, + [3993] = {.lex_state = 1707}, + [3994] = {.lex_state = 1707}, + [3995] = {.lex_state = 110}, + [3996] = {.lex_state = 3226}, + [3997] = {.lex_state = 1707}, + [3998] = {.lex_state = 3226}, + [3999] = {.lex_state = 1707}, + [4000] = {.lex_state = 1707}, + [4001] = {.lex_state = 1707}, + [4002] = {.lex_state = 3226}, + [4003] = {.lex_state = 110}, + [4004] = {.lex_state = 1707}, + [4005] = {.lex_state = 1707}, + [4006] = {.lex_state = 1707}, + [4007] = {.lex_state = 1707}, + [4008] = {.lex_state = 3226}, + [4009] = {.lex_state = 31}, + [4010] = {.lex_state = 1707}, + [4011] = {.lex_state = 1707}, + [4012] = {.lex_state = 1707}, + [4013] = {.lex_state = 1707}, + [4014] = {.lex_state = 1707}, + [4015] = {.lex_state = 1707}, + [4016] = {.lex_state = 1707}, + [4017] = {.lex_state = 1707}, + [4018] = {.lex_state = 1707}, + [4019] = {.lex_state = 1707}, + [4020] = {.lex_state = 123}, + [4021] = {.lex_state = 1707}, + [4022] = {.lex_state = 1707}, + [4023] = {.lex_state = 1707}, + [4024] = {.lex_state = 1707}, + [4025] = {.lex_state = 1707}, + [4026] = {.lex_state = 3226}, + [4027] = {.lex_state = 110}, + [4028] = {.lex_state = 1707}, + [4029] = {.lex_state = 110}, + [4030] = {.lex_state = 1707}, + [4031] = {.lex_state = 110}, + [4032] = {.lex_state = 1707}, + [4033] = {.lex_state = 110}, + [4034] = {.lex_state = 110}, + [4035] = {.lex_state = 1707}, + [4036] = {.lex_state = 1707}, + [4037] = {.lex_state = 3226}, + [4038] = {.lex_state = 1707}, + [4039] = {.lex_state = 1707}, + [4040] = {.lex_state = 1707}, + [4041] = {.lex_state = 1707}, + [4042] = {.lex_state = 1707}, + [4043] = {.lex_state = 1707}, + [4044] = {.lex_state = 3226}, + [4045] = {.lex_state = 3226}, + [4046] = {.lex_state = 3226}, + [4047] = {.lex_state = 3226}, + [4048] = {.lex_state = 1707}, + [4049] = {.lex_state = 1707}, + [4050] = {.lex_state = 1707}, + [4051] = {.lex_state = 1707}, + [4052] = {.lex_state = 122}, + [4053] = {.lex_state = 1707}, + [4054] = {.lex_state = 1707}, + [4055] = {.lex_state = 1707}, + [4056] = {.lex_state = 1707}, + [4057] = {.lex_state = 123}, + [4058] = {.lex_state = 1707}, + [4059] = {.lex_state = 1707}, + [4060] = {.lex_state = 3226}, + [4061] = {.lex_state = 123}, + [4062] = {.lex_state = 123}, + [4063] = {.lex_state = 1707}, + [4064] = {.lex_state = 1707}, + [4065] = {.lex_state = 1707}, + [4066] = {.lex_state = 1707}, + [4067] = {.lex_state = 1707}, + [4068] = {.lex_state = 1707}, + [4069] = {.lex_state = 1707}, + [4070] = {.lex_state = 1707}, + [4071] = {.lex_state = 1707}, + [4072] = {.lex_state = 1707}, + [4073] = {.lex_state = 1707}, + [4074] = {.lex_state = 1707}, + [4075] = {.lex_state = 1707}, + [4076] = {.lex_state = 1707}, + [4077] = {.lex_state = 1707}, + [4078] = {.lex_state = 1707}, + [4079] = {.lex_state = 1707}, + [4080] = {.lex_state = 1707}, + [4081] = {.lex_state = 1707}, + [4082] = {.lex_state = 1737}, + [4083] = {.lex_state = 1737}, + [4084] = {.lex_state = 1737}, + [4085] = {.lex_state = 1737}, + [4086] = {.lex_state = 1737}, + [4087] = {.lex_state = 1778}, + [4088] = {.lex_state = 1707}, + [4089] = {.lex_state = 73}, + [4090] = {.lex_state = 1737}, + [4091] = {.lex_state = 1737}, + [4092] = {.lex_state = 1737}, + [4093] = {.lex_state = 1737}, + [4094] = {.lex_state = 1737}, + [4095] = {.lex_state = 1737}, + [4096] = {.lex_state = 1737}, + [4097] = {.lex_state = 1737}, + [4098] = {.lex_state = 1707}, + [4099] = {.lex_state = 73}, + [4100] = {.lex_state = 1737}, + [4101] = {.lex_state = 1737}, + [4102] = {.lex_state = 1737}, + [4103] = {.lex_state = 1737}, + [4104] = {.lex_state = 1737}, + [4105] = {.lex_state = 73}, + [4106] = {.lex_state = 73}, + [4107] = {.lex_state = 1737}, + [4108] = {.lex_state = 1737}, + [4109] = {.lex_state = 1737}, + [4110] = {.lex_state = 73}, + [4111] = {.lex_state = 1778}, + [4112] = {.lex_state = 73}, + [4113] = {.lex_state = 1737}, + [4114] = {.lex_state = 73}, + [4115] = {.lex_state = 73}, + [4116] = {.lex_state = 1737}, + [4117] = {.lex_state = 1737}, + [4118] = {.lex_state = 1737}, + [4119] = {.lex_state = 1737}, + [4120] = {.lex_state = 73}, + [4121] = {.lex_state = 1737}, + [4122] = {.lex_state = 73}, + [4123] = {.lex_state = 1737}, + [4124] = {.lex_state = 73}, + [4125] = {.lex_state = 1737}, + [4126] = {.lex_state = 1737}, + [4127] = {.lex_state = 1737}, + [4128] = {.lex_state = 1737}, + [4129] = {.lex_state = 1737}, + [4130] = {.lex_state = 1737}, + [4131] = {.lex_state = 1737}, + [4132] = {.lex_state = 73}, + [4133] = {.lex_state = 73}, + [4134] = {.lex_state = 1737}, + [4135] = {.lex_state = 1737}, + [4136] = {.lex_state = 1737}, + [4137] = {.lex_state = 1737}, + [4138] = {.lex_state = 1737}, + [4139] = {.lex_state = 1737}, + [4140] = {.lex_state = 1737}, + [4141] = {.lex_state = 73}, + [4142] = {.lex_state = 73}, + [4143] = {.lex_state = 73}, + [4144] = {.lex_state = 110}, + [4145] = {.lex_state = 1737}, + [4146] = {.lex_state = 1737}, + [4147] = {.lex_state = 1737}, + [4148] = {.lex_state = 73}, + [4149] = {.lex_state = 73}, + [4150] = {.lex_state = 1737}, + [4151] = {.lex_state = 73}, + [4152] = {.lex_state = 73}, + [4153] = {.lex_state = 73}, + [4154] = {.lex_state = 73}, + [4155] = {.lex_state = 73}, + [4156] = {.lex_state = 1737}, + [4157] = {.lex_state = 73}, + [4158] = {.lex_state = 1707}, + [4159] = {.lex_state = 1707}, + [4160] = {.lex_state = 1737}, + [4161] = {.lex_state = 1737}, + [4162] = {.lex_state = 1737}, + [4163] = {.lex_state = 1737}, + [4164] = {.lex_state = 1707}, + [4165] = {.lex_state = 1707}, + [4166] = {.lex_state = 1737}, + [4167] = {.lex_state = 1737}, + [4168] = {.lex_state = 1737}, + [4169] = {.lex_state = 73}, + [4170] = {.lex_state = 1737}, + [4171] = {.lex_state = 73}, + [4172] = {.lex_state = 7}, + [4173] = {.lex_state = 1707}, + [4174] = {.lex_state = 1778}, + [4175] = {.lex_state = 1707}, + [4176] = {.lex_state = 1707}, + [4177] = {.lex_state = 1778}, + [4178] = {.lex_state = 1707}, + [4179] = {.lex_state = 1707}, + [4180] = {.lex_state = 1707}, + [4181] = {.lex_state = 1707}, + [4182] = {.lex_state = 1707}, + [4183] = {.lex_state = 3227}, + [4184] = {.lex_state = 7}, + [4185] = {.lex_state = 7}, + [4186] = {.lex_state = 7}, + [4187] = {.lex_state = 7}, + [4188] = {.lex_state = 7}, + [4189] = {.lex_state = 7}, + [4190] = {.lex_state = 7}, + [4191] = {.lex_state = 1707}, + [4192] = {.lex_state = 7}, + [4193] = {.lex_state = 7}, + [4194] = {.lex_state = 7}, + [4195] = {.lex_state = 3227}, + [4196] = {.lex_state = 3227}, + [4197] = {.lex_state = 3227}, + [4198] = {.lex_state = 3227}, + [4199] = {.lex_state = 1707}, + [4200] = {.lex_state = 3227}, + [4201] = {.lex_state = 1707}, + [4202] = {.lex_state = 3227}, + [4203] = {.lex_state = 3227}, + [4204] = {.lex_state = 1707}, + [4205] = {.lex_state = 1778}, + [4206] = {.lex_state = 1778}, + [4207] = {.lex_state = 7}, + [4208] = {.lex_state = 73}, + [4209] = {.lex_state = 1707}, + [4210] = {.lex_state = 73}, + [4211] = {.lex_state = 1707}, + [4212] = {.lex_state = 1707}, + [4213] = {.lex_state = 1707}, + [4214] = {.lex_state = 73}, + [4215] = {.lex_state = 73}, + [4216] = {.lex_state = 1707}, + [4217] = {.lex_state = 73}, + [4218] = {.lex_state = 1707}, + [4219] = {.lex_state = 73}, + [4220] = {.lex_state = 73}, + [4221] = {.lex_state = 73}, + [4222] = {.lex_state = 1707}, + [4223] = {.lex_state = 73}, + [4224] = {.lex_state = 73}, + [4225] = {.lex_state = 1738}, + [4226] = {.lex_state = 73}, + [4227] = {.lex_state = 73}, + [4228] = {.lex_state = 1738}, + [4229] = {.lex_state = 1803}, + [4230] = {.lex_state = 81}, + [4231] = {.lex_state = 1804}, + [4232] = {.lex_state = 1803}, + [4233] = {.lex_state = 1703}, + [4234] = {.lex_state = 1804}, + [4235] = {.lex_state = 1703}, + [4236] = {.lex_state = 1802}, + [4237] = {.lex_state = 1703}, + [4238] = {.lex_state = 1703}, + [4239] = {.lex_state = 1703}, + [4240] = {.lex_state = 1703}, + [4241] = {.lex_state = 1814}, + [4242] = {.lex_state = 1804}, + [4243] = {.lex_state = 1810}, + [4244] = {.lex_state = 1804}, + [4245] = {.lex_state = 1703}, + [4246] = {.lex_state = 1814}, + [4247] = {.lex_state = 1816}, + [4248] = {.lex_state = 1802}, + [4249] = {.lex_state = 1802}, + [4250] = {.lex_state = 1816}, + [4251] = {.lex_state = 1818}, + [4252] = {.lex_state = 1703}, + [4253] = {.lex_state = 1703}, + [4254] = {.lex_state = 1703}, + [4255] = {.lex_state = 1805}, + [4256] = {.lex_state = 1810}, + [4257] = {.lex_state = 1805}, + [4258] = {.lex_state = 1818}, + [4259] = {.lex_state = 1820}, + [4260] = {.lex_state = 1815}, + [4261] = {.lex_state = 1802}, + [4262] = {.lex_state = 1802}, + [4263] = {.lex_state = 1802}, + [4264] = {.lex_state = 1805}, + [4265] = {.lex_state = 1818}, + [4266] = {.lex_state = 1802}, + [4267] = {.lex_state = 1805}, + [4268] = {.lex_state = 1818}, + [4269] = {.lex_state = 1811}, + [4270] = {.lex_state = 1802}, + [4271] = {.lex_state = 1738}, + [4272] = {.lex_state = 1818}, + [4273] = {.lex_state = 1816}, + [4274] = {.lex_state = 1818}, + [4275] = {.lex_state = 1738}, + [4276] = {.lex_state = 1738}, + [4277] = {.lex_state = 1812}, + [4278] = {.lex_state = 1816}, + [4279] = {.lex_state = 1818}, + [4280] = {.lex_state = 1815}, + [4281] = {.lex_state = 1822}, + [4282] = {.lex_state = 1738}, + [4283] = {.lex_state = 1819}, + [4284] = {.lex_state = 1738}, + [4285] = {.lex_state = 1802}, + [4286] = {.lex_state = 1817}, + [4287] = {.lex_state = 1812}, + [4288] = {.lex_state = 1802}, + [4289] = {.lex_state = 1811}, + [4290] = {.lex_state = 1802}, + [4291] = {.lex_state = 1820}, + [4292] = {.lex_state = 1802}, + [4293] = {.lex_state = 1818}, + [4294] = {.lex_state = 1818}, + [4295] = {.lex_state = 1822}, + [4296] = {.lex_state = 73}, + [4297] = {.lex_state = 1738}, + [4298] = {.lex_state = 1738}, + [4299] = {.lex_state = 1738}, + [4300] = {.lex_state = 1817}, + [4301] = {.lex_state = 1818}, + [4302] = {.lex_state = 58}, + [4303] = {.lex_state = 1824}, + [4304] = {.lex_state = 1819}, + [4305] = {.lex_state = 1821}, + [4306] = {.lex_state = 1811}, + [4307] = {.lex_state = 1819}, + [4308] = {.lex_state = 1817}, + [4309] = {.lex_state = 1739}, + [4310] = {.lex_state = 1813}, + [4311] = {.lex_state = 1824}, + [4312] = {.lex_state = 59}, + [4313] = {.lex_state = 1819}, + [4314] = {.lex_state = 1811}, + [4315] = {.lex_state = 1819}, + [4316] = {.lex_state = 1824}, + [4317] = {.lex_state = 1824}, + [4318] = {.lex_state = 61}, + [4319] = {.lex_state = 57}, + [4320] = {.lex_state = 73}, + [4321] = {.lex_state = 57}, + [4322] = {.lex_state = 1811}, + [4323] = {.lex_state = 1824}, + [4324] = {.lex_state = 1738}, + [4325] = {.lex_state = 1738}, + [4326] = {.lex_state = 1819}, + [4327] = {.lex_state = 1822}, + [4328] = {.lex_state = 1824}, + [4329] = {.lex_state = 1817}, + [4330] = {.lex_state = 1822}, + [4331] = {.lex_state = 58}, + [4332] = {.lex_state = 58}, + [4333] = {.lex_state = 1811}, + [4334] = {.lex_state = 58}, + [4335] = {.lex_state = 1819}, + [4336] = {.lex_state = 1811}, + [4337] = {.lex_state = 1826}, + [4338] = {.lex_state = 58}, + [4339] = {.lex_state = 1823}, + [4340] = {.lex_state = 1813}, + [4341] = {.lex_state = 1824}, + [4342] = {.lex_state = 1819}, + [4343] = {.lex_state = 1824}, + [4344] = {.lex_state = 1824}, + [4345] = {.lex_state = 62}, + [4346] = {.lex_state = 1823}, + [4347] = {.lex_state = 1811}, + [4348] = {.lex_state = 1811}, + [4349] = {.lex_state = 1819}, + [4350] = {.lex_state = 1819}, + [4351] = {.lex_state = 58}, + [4352] = {.lex_state = 1828}, + [4353] = {.lex_state = 1824}, + [4354] = {.lex_state = 1811}, + [4355] = {.lex_state = 1819}, + [4356] = {.lex_state = 1824}, + [4357] = {.lex_state = 63}, + [4358] = {.lex_state = 62}, + [4359] = {.lex_state = 1821}, + [4360] = {.lex_state = 1824}, + [4361] = {.lex_state = 1739}, + [4362] = {.lex_state = 1738}, + [4363] = {.lex_state = 1825}, + [4364] = {.lex_state = 63}, + [4365] = {.lex_state = 1830}, + [4366] = {.lex_state = 1738}, + [4367] = {.lex_state = 1806}, + [4368] = {.lex_state = 1806}, + [4369] = {.lex_state = 1806}, + [4370] = {.lex_state = 1825}, + [4371] = {.lex_state = 1806}, + [4372] = {.lex_state = 1823}, + [4373] = {.lex_state = 63}, + [4374] = {.lex_state = 41}, + [4375] = {.lex_state = 1738}, + [4376] = {.lex_state = 1828}, + [4377] = {.lex_state = 60}, + [4378] = {.lex_state = 1825}, + [4379] = {.lex_state = 65}, + [4380] = {.lex_state = 41}, + [4381] = {.lex_state = 1738}, + [4382] = {.lex_state = 63}, + [4383] = {.lex_state = 41}, + [4384] = {.lex_state = 41}, + [4385] = {.lex_state = 1811}, + [4386] = {.lex_state = 1811}, + [4387] = {.lex_state = 1830}, + [4388] = {.lex_state = 1819}, + [4389] = {.lex_state = 1738}, + [4390] = {.lex_state = 1825}, + [4391] = {.lex_state = 1738}, + [4392] = {.lex_state = 1738}, + [4393] = {.lex_state = 1738}, + [4394] = {.lex_state = 1826}, + [4395] = {.lex_state = 1806}, + [4396] = {.lex_state = 63}, + [4397] = {.lex_state = 1825}, + [4398] = {.lex_state = 1823}, + [4399] = {.lex_state = 1825}, + [4400] = {.lex_state = 1806}, + [4401] = {.lex_state = 1738}, + [4402] = {.lex_state = 41}, + [4403] = {.lex_state = 1832}, + [4404] = {.lex_state = 41}, + [4405] = {.lex_state = 41}, + [4406] = {.lex_state = 1827}, + [4407] = {.lex_state = 1827}, + [4408] = {.lex_state = 1827}, + [4409] = {.lex_state = 1832}, + [4410] = {.lex_state = 1827}, + [4411] = {.lex_state = 1827}, + [4412] = {.lex_state = 1827}, + [4413] = {.lex_state = 41}, + [4414] = {.lex_state = 1832}, + [4415] = {.lex_state = 1738}, + [4416] = {.lex_state = 41}, + [4417] = {.lex_state = 1825}, + [4418] = {.lex_state = 1827}, + [4419] = {.lex_state = 1827}, + [4420] = {.lex_state = 1806}, + [4421] = {.lex_state = 1806}, + [4422] = {.lex_state = 1845}, + [4423] = {.lex_state = 1827}, + [4424] = {.lex_state = 1738}, + [4425] = {.lex_state = 1827}, + [4426] = {.lex_state = 1825}, + [4427] = {.lex_state = 1827}, + [4428] = {.lex_state = 1827}, + [4429] = {.lex_state = 1827}, + [4430] = {.lex_state = 1829}, + [4431] = {.lex_state = 1827}, + [4432] = {.lex_state = 1827}, + [4433] = {.lex_state = 41}, + [4434] = {.lex_state = 1832}, + [4435] = {.lex_state = 1827}, + [4436] = {.lex_state = 1827}, + [4437] = {.lex_state = 41}, + [4438] = {.lex_state = 1827}, + [4439] = {.lex_state = 1806}, + [4440] = {.lex_state = 1738}, + [4441] = {.lex_state = 1827}, + [4442] = {.lex_state = 1827}, + [4443] = {.lex_state = 1806}, + [4444] = {.lex_state = 1827}, + [4445] = {.lex_state = 1738}, + [4446] = {.lex_state = 1825}, + [4447] = {.lex_state = 1806}, + [4448] = {.lex_state = 1811}, + [4449] = {.lex_state = 1832}, + [4450] = {.lex_state = 1827}, + [4451] = {.lex_state = 41}, + [4452] = {.lex_state = 1830}, + [4453] = {.lex_state = 1845}, + [4454] = {.lex_state = 1827}, + [4455] = {.lex_state = 1806}, + [4456] = {.lex_state = 1811}, + [4457] = {.lex_state = 1811}, + [4458] = {.lex_state = 1827}, + [4459] = {.lex_state = 1832}, + [4460] = {.lex_state = 1830}, + [4461] = {.lex_state = 1825}, + [4462] = {.lex_state = 66}, + [4463] = {.lex_state = 1827}, + [4464] = {.lex_state = 1738}, + [4465] = {.lex_state = 1738}, + [4466] = {.lex_state = 1825}, + [4467] = {.lex_state = 1827}, + [4468] = {.lex_state = 1832}, + [4469] = {.lex_state = 1827}, + [4470] = {.lex_state = 1738}, + [4471] = {.lex_state = 1845}, + [4472] = {.lex_state = 1738}, + [4473] = {.lex_state = 41}, + [4474] = {.lex_state = 1832}, + [4475] = {.lex_state = 1738}, + [4476] = {.lex_state = 1832}, + [4477] = {.lex_state = 1738}, + [4478] = {.lex_state = 1827}, + [4479] = {.lex_state = 1827}, + [4480] = {.lex_state = 1827}, + [4481] = {.lex_state = 1845}, + [4482] = {.lex_state = 1845}, + [4483] = {.lex_state = 66}, + [4484] = {.lex_state = 1825}, + [4485] = {.lex_state = 1827}, + [4486] = {.lex_state = 41}, + [4487] = {.lex_state = 1815}, + [4488] = {.lex_state = 1827}, + [4489] = {.lex_state = 41}, + [4490] = {.lex_state = 1832}, + [4491] = {.lex_state = 41}, + [4492] = {.lex_state = 1827}, + [4493] = {.lex_state = 1738}, + [4494] = {.lex_state = 1827}, + [4495] = {.lex_state = 1827}, + [4496] = {.lex_state = 1827}, + [4497] = {.lex_state = 41}, + [4498] = {.lex_state = 41}, + [4499] = {.lex_state = 1827}, + [4500] = {.lex_state = 1832}, + [4501] = {.lex_state = 1738}, + [4502] = {.lex_state = 1845}, + [4503] = {.lex_state = 1832}, + [4504] = {.lex_state = 1827}, + [4505] = {.lex_state = 1827}, + [4506] = {.lex_state = 1832}, + [4507] = {.lex_state = 1739}, + [4508] = {.lex_state = 293, .external_lex_state = 2}, + [4509] = {.lex_state = 1827}, + [4510] = {.lex_state = 1845}, + [4511] = {.lex_state = 1832}, + [4512] = {.lex_state = 1827}, + [4513] = {.lex_state = 1827}, + [4514] = {.lex_state = 1832}, + [4515] = {.lex_state = 1832}, + [4516] = {.lex_state = 1815}, + [4517] = {.lex_state = 1827}, + [4518] = {.lex_state = 41}, + [4519] = {.lex_state = 1827}, + [4520] = {.lex_state = 1815}, + [4521] = {.lex_state = 64}, + [4522] = {.lex_state = 1827}, + [4523] = {.lex_state = 1832}, + [4524] = {.lex_state = 41}, + [4525] = {.lex_state = 41}, + [4526] = {.lex_state = 64}, + [4527] = {.lex_state = 1815}, + [4528] = {.lex_state = 1815}, + [4529] = {.lex_state = 1827}, + [4530] = {.lex_state = 41}, + [4531] = {.lex_state = 1827}, + [4532] = {.lex_state = 1815}, + [4533] = {.lex_state = 1827}, + [4534] = {.lex_state = 1815}, + [4535] = {.lex_state = 1827}, + [4536] = {.lex_state = 1827}, + [4537] = {.lex_state = 1815}, + [4538] = {.lex_state = 293, .external_lex_state = 2}, + [4539] = {.lex_state = 1827}, + [4540] = {.lex_state = 41}, + [4541] = {.lex_state = 1831}, + [4542] = {.lex_state = 1827}, + [4543] = {.lex_state = 41}, + [4544] = {.lex_state = 1827}, + [4545] = {.lex_state = 1827}, + [4546] = {.lex_state = 64}, + [4547] = {.lex_state = 1829}, + [4548] = {.lex_state = 1845}, + [4549] = {.lex_state = 1827}, + [4550] = {.lex_state = 1832}, + [4551] = {.lex_state = 1845}, + [4552] = {.lex_state = 1827}, + [4553] = {.lex_state = 1827}, + [4554] = {.lex_state = 1827}, + [4555] = {.lex_state = 1815}, + [4556] = {.lex_state = 1811}, + [4557] = {.lex_state = 1827}, + [4558] = {.lex_state = 293, .external_lex_state = 2}, + [4559] = {.lex_state = 1827}, + [4560] = {.lex_state = 1738}, + [4561] = {.lex_state = 1815}, + [4562] = {.lex_state = 1827}, + [4563] = {.lex_state = 293, .external_lex_state = 2}, + [4564] = {.lex_state = 1832}, + [4565] = {.lex_state = 1827}, + [4566] = {.lex_state = 64}, + [4567] = {.lex_state = 1811}, + [4568] = {.lex_state = 1831}, + [4569] = {.lex_state = 1811}, + [4570] = {.lex_state = 1815}, + [4571] = {.lex_state = 64}, + [4572] = {.lex_state = 64}, + [4573] = {.lex_state = 1739}, + [4574] = {.lex_state = 1845}, + [4575] = {.lex_state = 1827}, + [4576] = {.lex_state = 1827}, + [4577] = {.lex_state = 1770}, + [4578] = {.lex_state = 75}, + [4579] = {.lex_state = 41}, + [4580] = {.lex_state = 41}, + [4581] = {.lex_state = 41}, + [4582] = {.lex_state = 1846}, + [4583] = {.lex_state = 1846}, + [4584] = {.lex_state = 1770}, + [4585] = {.lex_state = 1770}, + [4586] = {.lex_state = 1770}, + [4587] = {.lex_state = 1770}, + [4588] = {.lex_state = 1846}, + [4589] = {.lex_state = 1846}, + [4590] = {.lex_state = 1770}, + [4591] = {.lex_state = 1770}, + [4592] = {.lex_state = 41}, + [4593] = {.lex_state = 75}, + [4594] = {.lex_state = 1770}, + [4595] = {.lex_state = 1770}, + [4596] = {.lex_state = 1770}, + [4597] = {.lex_state = 1770}, + [4598] = {.lex_state = 75}, + [4599] = {.lex_state = 1770}, + [4600] = {.lex_state = 1770}, + [4601] = {.lex_state = 1770}, + [4602] = {.lex_state = 1770}, + [4603] = {.lex_state = 75}, + [4604] = {.lex_state = 75}, + [4605] = {.lex_state = 75}, + [4606] = {.lex_state = 67}, + [4607] = {.lex_state = 75}, + [4608] = {.lex_state = 71}, + [4609] = {.lex_state = 75}, + [4610] = {.lex_state = 75}, + [4611] = {.lex_state = 1770}, + [4612] = {.lex_state = 75}, + [4613] = {.lex_state = 1802}, + [4614] = {.lex_state = 75}, + [4615] = {.lex_state = 75}, + [4616] = {.lex_state = 1802}, + [4617] = {.lex_state = 1770}, + [4618] = {.lex_state = 1770}, + [4619] = {.lex_state = 1770}, + [4620] = {.lex_state = 75}, + [4621] = {.lex_state = 75}, + [4622] = {.lex_state = 75}, + [4623] = {.lex_state = 75}, + [4624] = {.lex_state = 75}, + [4625] = {.lex_state = 1802}, + [4626] = {.lex_state = 1802}, + [4627] = {.lex_state = 1827}, + [4628] = {.lex_state = 75}, + [4629] = {.lex_state = 75}, + [4630] = {.lex_state = 1770}, + [4631] = {.lex_state = 75}, + [4632] = {.lex_state = 1770}, + [4633] = {.lex_state = 75}, + [4634] = {.lex_state = 1833}, + [4635] = {.lex_state = 1815}, + [4636] = {.lex_state = 1770}, + [4637] = {.lex_state = 1770}, + [4638] = {.lex_state = 1770}, + [4639] = {.lex_state = 70}, + [4640] = {.lex_state = 1833}, + [4641] = {.lex_state = 71}, + [4642] = {.lex_state = 1739}, + [4643] = {.lex_state = 1833}, + [4644] = {.lex_state = 1833}, + [4645] = {.lex_state = 1815}, + [4646] = {.lex_state = 1833}, + [4647] = {.lex_state = 1815}, + [4648] = {.lex_state = 1815}, + [4649] = {.lex_state = 1815}, + [4650] = {.lex_state = 1815}, + [4651] = {.lex_state = 71}, + [4652] = {.lex_state = 1833}, + [4653] = {.lex_state = 1833}, + [4654] = {.lex_state = 1846}, + [4655] = {.lex_state = 1842}, + [4656] = {.lex_state = 1806}, + [4657] = {.lex_state = 1843}, + [4658] = {.lex_state = 1832}, + [4659] = {.lex_state = 1739}, + [4660] = {.lex_state = 1827}, + [4661] = {.lex_state = 1842}, + [4662] = {.lex_state = 71}, + [4663] = {.lex_state = 1842}, + [4664] = {.lex_state = 1833}, + [4665] = {.lex_state = 1739}, + [4666] = {.lex_state = 1802}, + [4667] = {.lex_state = 1827}, + [4668] = {.lex_state = 1770}, + [4669] = {.lex_state = 1770}, + [4670] = {.lex_state = 1770}, + [4671] = {.lex_state = 1770}, + [4672] = {.lex_state = 1770}, + [4673] = {.lex_state = 1770}, + [4674] = {.lex_state = 1770}, + [4675] = {.lex_state = 1770}, + [4676] = {.lex_state = 1770}, + [4677] = {.lex_state = 1770}, + [4678] = {.lex_state = 1770}, + [4679] = {.lex_state = 1770}, + [4680] = {.lex_state = 1770}, + [4681] = {.lex_state = 1770}, + [4682] = {.lex_state = 1770}, + [4683] = {.lex_state = 1770}, + [4684] = {.lex_state = 1770}, + [4685] = {.lex_state = 1770}, + [4686] = {.lex_state = 1770}, + [4687] = {.lex_state = 1770}, + [4688] = {.lex_state = 1770}, + [4689] = {.lex_state = 1770}, + [4690] = {.lex_state = 1770}, + [4691] = {.lex_state = 1770}, + [4692] = {.lex_state = 1842}, + [4693] = {.lex_state = 1770}, + [4694] = {.lex_state = 1770}, + [4695] = {.lex_state = 1770}, + [4696] = {.lex_state = 1770}, + [4697] = {.lex_state = 1770}, + [4698] = {.lex_state = 1770}, + [4699] = {.lex_state = 1770}, + [4700] = {.lex_state = 1770}, + [4701] = {.lex_state = 1770}, + [4702] = {.lex_state = 1833}, + [4703] = {.lex_state = 1770}, + [4704] = {.lex_state = 1770}, + [4705] = {.lex_state = 1842}, + [4706] = {.lex_state = 1842}, + [4707] = {.lex_state = 1815}, + [4708] = {.lex_state = 1770}, + [4709] = {.lex_state = 1770}, + [4710] = {.lex_state = 1770}, + [4711] = {.lex_state = 1770}, + [4712] = {.lex_state = 1770}, + [4713] = {.lex_state = 1815}, + [4714] = {.lex_state = 1770}, + [4715] = {.lex_state = 1770}, + [4716] = {.lex_state = 1770}, + [4717] = {.lex_state = 1770}, + [4718] = {.lex_state = 1770}, + [4719] = {.lex_state = 1770}, + [4720] = {.lex_state = 1770}, + [4721] = {.lex_state = 1770}, + [4722] = {.lex_state = 1831}, + [4723] = {.lex_state = 1770}, + [4724] = {.lex_state = 1770}, + [4725] = {.lex_state = 1770}, + [4726] = {.lex_state = 1770}, + [4727] = {.lex_state = 1770}, + [4728] = {.lex_state = 1770}, + [4729] = {.lex_state = 1770}, + [4730] = {.lex_state = 1770}, + [4731] = {.lex_state = 1770}, + [4732] = {.lex_state = 1770}, + [4733] = {.lex_state = 1770}, + [4734] = {.lex_state = 1770}, + [4735] = {.lex_state = 1770}, + [4736] = {.lex_state = 1770}, + [4737] = {.lex_state = 1770}, + [4738] = {.lex_state = 1770}, + [4739] = {.lex_state = 1770}, + [4740] = {.lex_state = 1770}, + [4741] = {.lex_state = 1770}, + [4742] = {.lex_state = 1770}, + [4743] = {.lex_state = 1770}, + [4744] = {.lex_state = 1770}, + [4745] = {.lex_state = 1770}, + [4746] = {.lex_state = 1770}, + [4747] = {.lex_state = 1770}, + [4748] = {.lex_state = 1770}, + [4749] = {.lex_state = 1770}, + [4750] = {.lex_state = 1770}, + [4751] = {.lex_state = 1770}, + [4752] = {.lex_state = 1770}, + [4753] = {.lex_state = 1770}, + [4754] = {.lex_state = 1770}, + [4755] = {.lex_state = 1770}, + [4756] = {.lex_state = 1770}, + [4757] = {.lex_state = 1770}, + [4758] = {.lex_state = 1770}, + [4759] = {.lex_state = 1815}, + [4760] = {.lex_state = 1770}, + [4761] = {.lex_state = 1770}, + [4762] = {.lex_state = 1770}, + [4763] = {.lex_state = 1770}, + [4764] = {.lex_state = 1770}, + [4765] = {.lex_state = 1770}, + [4766] = {.lex_state = 1770}, + [4767] = {.lex_state = 1770}, + [4768] = {.lex_state = 1770}, + [4769] = {.lex_state = 1770}, + [4770] = {.lex_state = 1770}, + [4771] = {.lex_state = 1770}, + [4772] = {.lex_state = 1815}, + [4773] = {.lex_state = 1831}, + [4774] = {.lex_state = 1770}, + [4775] = {.lex_state = 1770}, + [4776] = {.lex_state = 1770}, + [4777] = {.lex_state = 1770}, + [4778] = {.lex_state = 1815}, + [4779] = {.lex_state = 1739}, + [4780] = {.lex_state = 75}, + [4781] = {.lex_state = 75}, + [4782] = {.lex_state = 1770}, + [4783] = {.lex_state = 41}, + [4784] = {.lex_state = 1827}, + [4785] = {.lex_state = 1827}, + [4786] = {.lex_state = 41}, + [4787] = {.lex_state = 1833}, + [4788] = {.lex_state = 1770}, + [4789] = {.lex_state = 1833}, + [4790] = {.lex_state = 1842}, + [4791] = {.lex_state = 1770}, + [4792] = {.lex_state = 1739}, + [4793] = {.lex_state = 1739}, + [4794] = {.lex_state = 41}, + [4795] = {.lex_state = 41}, + [4796] = {.lex_state = 1770}, + [4797] = {.lex_state = 1770}, + [4798] = {.lex_state = 41}, + [4799] = {.lex_state = 41}, + [4800] = {.lex_state = 41}, + [4801] = {.lex_state = 1842}, + [4802] = {.lex_state = 41}, + [4803] = {.lex_state = 41}, + [4804] = {.lex_state = 1833}, + [4805] = {.lex_state = 1806}, + [4806] = {.lex_state = 1770}, + [4807] = {.lex_state = 41}, + [4808] = {.lex_state = 1770}, + [4809] = {.lex_state = 1770}, + [4810] = {.lex_state = 1827}, + [4811] = {.lex_state = 1770}, + [4812] = {.lex_state = 15}, + [4813] = {.lex_state = 1772}, + [4814] = {.lex_state = 1843}, + [4815] = {.lex_state = 1772}, + [4816] = {.lex_state = 1842}, + [4817] = {.lex_state = 1842}, + [4818] = {.lex_state = 1770}, + [4819] = {.lex_state = 1739}, + [4820] = {.lex_state = 1842}, + [4821] = {.lex_state = 1770}, + [4822] = {.lex_state = 1770}, + [4823] = {.lex_state = 1834}, + [4824] = {.lex_state = 1835}, + [4825] = {.lex_state = 1770}, + [4826] = {.lex_state = 1770}, + [4827] = {.lex_state = 1833}, + [4828] = {.lex_state = 75}, + [4829] = {.lex_state = 1770}, + [4830] = {.lex_state = 1770}, + [4831] = {.lex_state = 41}, + [4832] = {.lex_state = 1842}, + [4833] = {.lex_state = 41}, + [4834] = {.lex_state = 75}, + [4835] = {.lex_state = 1833}, + [4836] = {.lex_state = 1770}, + [4837] = {.lex_state = 1770}, + [4838] = {.lex_state = 1802}, + [4839] = {.lex_state = 1770}, + [4840] = {.lex_state = 68}, + [4841] = {.lex_state = 41}, + [4842] = {.lex_state = 1770}, + [4843] = {.lex_state = 41}, + [4844] = {.lex_state = 1802}, + [4845] = {.lex_state = 1846}, + [4846] = {.lex_state = 1772}, + [4847] = {.lex_state = 1833}, + [4848] = {.lex_state = 1846}, + [4849] = {.lex_state = 1833}, + [4850] = {.lex_state = 1769}, + [4851] = {.lex_state = 1772}, + [4852] = {.lex_state = 1802}, + [4853] = {.lex_state = 1802}, + [4854] = {.lex_state = 41}, + [4855] = {.lex_state = 41}, + [4856] = {.lex_state = 41}, + [4857] = {.lex_state = 41}, + [4858] = {.lex_state = 1833}, + [4859] = {.lex_state = 1770}, + [4860] = {.lex_state = 1772}, + [4861] = {.lex_state = 1846}, + [4862] = {.lex_state = 1846}, + [4863] = {.lex_state = 1770}, + [4864] = {.lex_state = 41}, + [4865] = {.lex_state = 1802}, + [4866] = {.lex_state = 1802}, + [4867] = {.lex_state = 1833}, + [4868] = {.lex_state = 1769}, + [4869] = {.lex_state = 41}, + [4870] = {.lex_state = 41}, + [4871] = {.lex_state = 41}, + [4872] = {.lex_state = 1833}, + [4873] = {.lex_state = 15}, + [4874] = {.lex_state = 1827}, + [4875] = {.lex_state = 1802}, + [4876] = {.lex_state = 41}, + [4877] = {.lex_state = 1806}, + [4878] = {.lex_state = 1806}, + [4879] = {.lex_state = 1770}, + [4880] = {.lex_state = 1846}, + [4881] = {.lex_state = 41}, + [4882] = {.lex_state = 1770}, + [4883] = {.lex_state = 1802}, + [4884] = {.lex_state = 68}, + [4885] = {.lex_state = 1772}, + [4886] = {.lex_state = 1772}, + [4887] = {.lex_state = 1772}, + [4888] = {.lex_state = 15}, + [4889] = {.lex_state = 1772}, + [4890] = {.lex_state = 1772}, + [4891] = {.lex_state = 1772}, + [4892] = {.lex_state = 1772}, + [4893] = {.lex_state = 1772}, + [4894] = {.lex_state = 1770}, + [4895] = {.lex_state = 1772}, + [4896] = {.lex_state = 1772}, + [4897] = {.lex_state = 1772}, + [4898] = {.lex_state = 1770}, + [4899] = {.lex_state = 1772}, + [4900] = {.lex_state = 1770}, + [4901] = {.lex_state = 1772}, + [4902] = {.lex_state = 1772}, + [4903] = {.lex_state = 1739}, + [4904] = {.lex_state = 1770}, + [4905] = {.lex_state = 1770}, + [4906] = {.lex_state = 1770}, + [4907] = {.lex_state = 1772}, + [4908] = {.lex_state = 1772}, + [4909] = {.lex_state = 1770}, + [4910] = {.lex_state = 1834}, + [4911] = {.lex_state = 1770}, + [4912] = {.lex_state = 1772}, + [4913] = {.lex_state = 1770}, + [4914] = {.lex_state = 1802}, + [4915] = {.lex_state = 15}, + [4916] = {.lex_state = 1772}, + [4917] = {.lex_state = 1770}, + [4918] = {.lex_state = 1772}, + [4919] = {.lex_state = 64}, + [4920] = {.lex_state = 1772}, + [4921] = {.lex_state = 15}, + [4922] = {.lex_state = 1772}, + [4923] = {.lex_state = 1770}, + [4924] = {.lex_state = 64}, + [4925] = {.lex_state = 1806}, + [4926] = {.lex_state = 1802}, + [4927] = {.lex_state = 1772}, + [4928] = {.lex_state = 1770}, + [4929] = {.lex_state = 69}, + [4930] = {.lex_state = 1835}, + [4931] = {.lex_state = 69}, + [4932] = {.lex_state = 70}, + [4933] = {.lex_state = 69}, + [4934] = {.lex_state = 69}, + [4935] = {.lex_state = 1772}, + [4936] = {.lex_state = 1772}, + [4937] = {.lex_state = 1772}, + [4938] = {.lex_state = 69}, + [4939] = {.lex_state = 69}, + [4940] = {.lex_state = 1772}, + [4941] = {.lex_state = 1772}, + [4942] = {.lex_state = 1772}, + [4943] = {.lex_state = 1739}, + [4944] = {.lex_state = 1806}, + [4945] = {.lex_state = 1836}, + [4946] = {.lex_state = 1772}, + [4947] = {.lex_state = 1772}, + [4948] = {.lex_state = 295}, + [4949] = {.lex_state = 1772}, + [4950] = {.lex_state = 1772}, + [4951] = {.lex_state = 1769}, + [4952] = {.lex_state = 69}, + [4953] = {.lex_state = 1772}, + [4954] = {.lex_state = 1836}, + [4955] = {.lex_state = 1772}, + [4956] = {.lex_state = 1772}, + [4957] = {.lex_state = 64}, + [4958] = {.lex_state = 75}, + [4959] = {.lex_state = 15}, + [4960] = {.lex_state = 1770}, + [4961] = {.lex_state = 91}, + [4962] = {.lex_state = 15}, + [4963] = {.lex_state = 1802}, + [4964] = {.lex_state = 1827}, + [4965] = {.lex_state = 1772}, + [4966] = {.lex_state = 1739}, + [4967] = {.lex_state = 1772}, + [4968] = {.lex_state = 75}, + [4969] = {.lex_state = 75}, + [4970] = {.lex_state = 1772}, + [4971] = {.lex_state = 75}, + [4972] = {.lex_state = 69}, + [4973] = {.lex_state = 1770}, + [4974] = {.lex_state = 1772}, + [4975] = {.lex_state = 1772}, + [4976] = {.lex_state = 1772}, + [4977] = {.lex_state = 41}, + [4978] = {.lex_state = 1772}, + [4979] = {.lex_state = 1772}, + [4980] = {.lex_state = 1772}, + [4981] = {.lex_state = 1772}, + [4982] = {.lex_state = 1772}, + [4983] = {.lex_state = 1772}, + [4984] = {.lex_state = 1772}, + [4985] = {.lex_state = 69}, + [4986] = {.lex_state = 1770}, + [4987] = {.lex_state = 1769}, + [4988] = {.lex_state = 1772}, + [4989] = {.lex_state = 1772}, + [4990] = {.lex_state = 1772}, + [4991] = {.lex_state = 91}, + [4992] = {.lex_state = 1772}, + [4993] = {.lex_state = 41}, + [4994] = {.lex_state = 41}, + [4995] = {.lex_state = 1772}, + [4996] = {.lex_state = 1772}, + [4997] = {.lex_state = 91}, + [4998] = {.lex_state = 91}, + [4999] = {.lex_state = 1770}, + [5000] = {.lex_state = 1772}, + [5001] = {.lex_state = 1827}, + [5002] = {.lex_state = 1827}, + [5003] = {.lex_state = 1772}, + [5004] = {.lex_state = 1739}, + [5005] = {.lex_state = 1770}, + [5006] = {.lex_state = 1772}, + [5007] = {.lex_state = 1772}, + [5008] = {.lex_state = 1772}, + [5009] = {.lex_state = 1772}, + [5010] = {.lex_state = 75}, + [5011] = {.lex_state = 1772}, + [5012] = {.lex_state = 1772}, + [5013] = {.lex_state = 1772}, + [5014] = {.lex_state = 1772}, + [5015] = {.lex_state = 1772}, + [5016] = {.lex_state = 75}, + [5017] = {.lex_state = 91}, + [5018] = {.lex_state = 64}, + [5019] = {.lex_state = 64}, + [5020] = {.lex_state = 64}, + [5021] = {.lex_state = 64}, + [5022] = {.lex_state = 1772}, + [5023] = {.lex_state = 1772}, + [5024] = {.lex_state = 1772}, + [5025] = {.lex_state = 1772}, + [5026] = {.lex_state = 1772}, + [5027] = {.lex_state = 1770}, + [5028] = {.lex_state = 1772}, + [5029] = {.lex_state = 41}, + [5030] = {.lex_state = 1772}, + [5031] = {.lex_state = 1772}, + [5032] = {.lex_state = 41}, + [5033] = {.lex_state = 1772}, + [5034] = {.lex_state = 1772}, + [5035] = {.lex_state = 1772}, + [5036] = {.lex_state = 64}, + [5037] = {.lex_state = 1770}, + [5038] = {.lex_state = 1772}, + [5039] = {.lex_state = 1772}, + [5040] = {.lex_state = 1772}, + [5041] = {.lex_state = 1770}, + [5042] = {.lex_state = 1772}, + [5043] = {.lex_state = 1772}, + [5044] = {.lex_state = 1772}, + [5045] = {.lex_state = 1769}, + [5046] = {.lex_state = 1833}, + [5047] = {.lex_state = 1772}, + [5048] = {.lex_state = 1772}, + [5049] = {.lex_state = 1772}, + [5050] = {.lex_state = 1772}, + [5051] = {.lex_state = 1772}, + [5052] = {.lex_state = 1770}, + [5053] = {.lex_state = 1772}, + [5054] = {.lex_state = 1772}, + [5055] = {.lex_state = 1769}, + [5056] = {.lex_state = 41}, + [5057] = {.lex_state = 1772}, + [5058] = {.lex_state = 1772}, + [5059] = {.lex_state = 1769}, + [5060] = {.lex_state = 1769}, + [5061] = {.lex_state = 1772}, + [5062] = {.lex_state = 1772}, + [5063] = {.lex_state = 75}, + [5064] = {.lex_state = 1772}, + [5065] = {.lex_state = 41}, + [5066] = {.lex_state = 1772}, + [5067] = {.lex_state = 75}, + [5068] = {.lex_state = 1772}, + [5069] = {.lex_state = 1769}, + [5070] = {.lex_state = 1837}, + [5071] = {.lex_state = 1769}, + [5072] = {.lex_state = 1772}, + [5073] = {.lex_state = 41}, + [5074] = {.lex_state = 41}, + [5075] = {.lex_state = 1769}, + [5076] = {.lex_state = 1772}, + [5077] = {.lex_state = 41}, + [5078] = {.lex_state = 1772}, + [5079] = {.lex_state = 1772}, + [5080] = {.lex_state = 1772}, + [5081] = {.lex_state = 41}, + [5082] = {.lex_state = 1769}, + [5083] = {.lex_state = 41}, + [5084] = {.lex_state = 296}, + [5085] = {.lex_state = 41}, + [5086] = {.lex_state = 1769}, + [5087] = {.lex_state = 1769}, + [5088] = {.lex_state = 41}, + [5089] = {.lex_state = 1769}, + [5090] = {.lex_state = 41}, + [5091] = {.lex_state = 1772}, + [5092] = {.lex_state = 1772}, + [5093] = {.lex_state = 1772}, + [5094] = {.lex_state = 1772}, + [5095] = {.lex_state = 1772}, + [5096] = {.lex_state = 1772}, + [5097] = {.lex_state = 1772}, + [5098] = {.lex_state = 1772}, + [5099] = {.lex_state = 1772}, + [5100] = {.lex_state = 1772}, + [5101] = {.lex_state = 1772}, + [5102] = {.lex_state = 1770}, + [5103] = {.lex_state = 1772}, + [5104] = {.lex_state = 76}, + [5105] = {.lex_state = 1772}, + [5106] = {.lex_state = 1772}, + [5107] = {.lex_state = 41}, + [5108] = {.lex_state = 41}, + [5109] = {.lex_state = 1772}, + [5110] = {.lex_state = 301}, + [5111] = {.lex_state = 1772}, + [5112] = {.lex_state = 41}, + [5113] = {.lex_state = 1772}, + [5114] = {.lex_state = 1772}, + [5115] = {.lex_state = 41}, + [5116] = {.lex_state = 1772}, + [5117] = {.lex_state = 1772}, + [5118] = {.lex_state = 41}, + [5119] = {.lex_state = 1772}, + [5120] = {.lex_state = 1772}, + [5121] = {.lex_state = 41}, + [5122] = {.lex_state = 1769}, + [5123] = {.lex_state = 41}, + [5124] = {.lex_state = 1772}, + [5125] = {.lex_state = 1772}, + [5126] = {.lex_state = 1772}, + [5127] = {.lex_state = 1772}, + [5128] = {.lex_state = 41}, + [5129] = {.lex_state = 1772}, + [5130] = {.lex_state = 1772}, + [5131] = {.lex_state = 1772}, + [5132] = {.lex_state = 41}, + [5133] = {.lex_state = 1769}, + [5134] = {.lex_state = 295}, + [5135] = {.lex_state = 1772}, + [5136] = {.lex_state = 1772}, + [5137] = {.lex_state = 1772}, + [5138] = {.lex_state = 41}, + [5139] = {.lex_state = 41}, + [5140] = {.lex_state = 41}, + [5141] = {.lex_state = 1772}, + [5142] = {.lex_state = 1769}, + [5143] = {.lex_state = 41}, + [5144] = {.lex_state = 41}, + [5145] = {.lex_state = 41}, + [5146] = {.lex_state = 1769}, + [5147] = {.lex_state = 69}, + [5148] = {.lex_state = 41}, + [5149] = {.lex_state = 64}, + [5150] = {.lex_state = 41}, + [5151] = {.lex_state = 41}, + [5152] = {.lex_state = 41}, + [5153] = {.lex_state = 41}, + [5154] = {.lex_state = 1772}, + [5155] = {.lex_state = 41}, + [5156] = {.lex_state = 41}, + [5157] = {.lex_state = 1769}, + [5158] = {.lex_state = 1772}, + [5159] = {.lex_state = 41}, + [5160] = {.lex_state = 41}, + [5161] = {.lex_state = 41}, + [5162] = {.lex_state = 41}, + [5163] = {.lex_state = 41}, + [5164] = {.lex_state = 1772}, + [5165] = {.lex_state = 41}, + [5166] = {.lex_state = 1772}, + [5167] = {.lex_state = 1769}, + [5168] = {.lex_state = 41}, + [5169] = {.lex_state = 41}, + [5170] = {.lex_state = 41}, + [5171] = {.lex_state = 41}, + [5172] = {.lex_state = 41}, + [5173] = {.lex_state = 1772}, + [5174] = {.lex_state = 41}, + [5175] = {.lex_state = 1772}, + [5176] = {.lex_state = 1772}, + [5177] = {.lex_state = 41}, + [5178] = {.lex_state = 1769}, + [5179] = {.lex_state = 1772}, + [5180] = {.lex_state = 1806}, + [5181] = {.lex_state = 41}, + [5182] = {.lex_state = 1772}, + [5183] = {.lex_state = 1772}, + [5184] = {.lex_state = 301}, + [5185] = {.lex_state = 41}, + [5186] = {.lex_state = 1836}, + [5187] = {.lex_state = 41}, + [5188] = {.lex_state = 1772}, + [5189] = {.lex_state = 41}, + [5190] = {.lex_state = 41}, + [5191] = {.lex_state = 41}, + [5192] = {.lex_state = 1772}, + [5193] = {.lex_state = 41}, + [5194] = {.lex_state = 41}, + [5195] = {.lex_state = 41}, + [5196] = {.lex_state = 1772}, + [5197] = {.lex_state = 41}, + [5198] = {.lex_state = 303}, + [5199] = {.lex_state = 41}, + [5200] = {.lex_state = 41}, + [5201] = {.lex_state = 1769}, + [5202] = {.lex_state = 41}, + [5203] = {.lex_state = 41}, + [5204] = {.lex_state = 41}, + [5205] = {.lex_state = 41}, + [5206] = {.lex_state = 41}, + [5207] = {.lex_state = 1772}, + [5208] = {.lex_state = 41}, + [5209] = {.lex_state = 1772}, + [5210] = {.lex_state = 1772}, + [5211] = {.lex_state = 41}, + [5212] = {.lex_state = 41}, + [5213] = {.lex_state = 41}, + [5214] = {.lex_state = 41}, + [5215] = {.lex_state = 41}, + [5216] = {.lex_state = 1836}, + [5217] = {.lex_state = 41}, + [5218] = {.lex_state = 41}, + [5219] = {.lex_state = 41}, + [5220] = {.lex_state = 41}, + [5221] = {.lex_state = 41}, + [5222] = {.lex_state = 41}, + [5223] = {.lex_state = 1769}, + [5224] = {.lex_state = 1769}, + [5225] = {.lex_state = 1772}, + [5226] = {.lex_state = 1769}, + [5227] = {.lex_state = 298}, + [5228] = {.lex_state = 1769}, + [5229] = {.lex_state = 64}, + [5230] = {.lex_state = 41}, + [5231] = {.lex_state = 41}, + [5232] = {.lex_state = 41}, + [5233] = {.lex_state = 1772}, + [5234] = {.lex_state = 41}, + [5235] = {.lex_state = 41}, + [5236] = {.lex_state = 41}, + [5237] = {.lex_state = 1772}, + [5238] = {.lex_state = 1769}, + [5239] = {.lex_state = 1772}, + [5240] = {.lex_state = 1770}, + [5241] = {.lex_state = 41}, + [5242] = {.lex_state = 1769}, + [5243] = {.lex_state = 1769}, + [5244] = {.lex_state = 1837}, + [5245] = {.lex_state = 41}, + [5246] = {.lex_state = 1769}, + [5247] = {.lex_state = 1769}, + [5248] = {.lex_state = 1772}, + [5249] = {.lex_state = 298}, + [5250] = {.lex_state = 41}, + [5251] = {.lex_state = 1772}, + [5252] = {.lex_state = 41}, + [5253] = {.lex_state = 1772}, + [5254] = {.lex_state = 2}, + [5255] = {.lex_state = 2}, + [5256] = {.lex_state = 41}, + [5257] = {.lex_state = 1769}, + [5258] = {.lex_state = 1769}, + [5259] = {.lex_state = 1837}, + [5260] = {.lex_state = 1772}, + [5261] = {.lex_state = 1772}, + [5262] = {.lex_state = 1772}, + [5263] = {.lex_state = 1772}, + [5264] = {.lex_state = 1772}, + [5265] = {.lex_state = 1772}, + [5266] = {.lex_state = 1772}, + [5267] = {.lex_state = 1770}, + [5268] = {.lex_state = 1772}, + [5269] = {.lex_state = 41}, + [5270] = {.lex_state = 41}, + [5271] = {.lex_state = 41}, + [5272] = {.lex_state = 41}, + [5273] = {.lex_state = 1772}, + [5274] = {.lex_state = 41}, + [5275] = {.lex_state = 2}, + [5276] = {.lex_state = 2}, + [5277] = {.lex_state = 41}, + [5278] = {.lex_state = 1837}, + [5279] = {.lex_state = 1772}, + [5280] = {.lex_state = 41}, + [5281] = {.lex_state = 1770}, + [5282] = {.lex_state = 1770}, + [5283] = {.lex_state = 1770}, + [5284] = {.lex_state = 1770}, + [5285] = {.lex_state = 1770}, + [5286] = {.lex_state = 1770}, + [5287] = {.lex_state = 1770}, + [5288] = {.lex_state = 1770}, + [5289] = {.lex_state = 41}, + [5290] = {.lex_state = 1770}, + [5291] = {.lex_state = 1770}, + [5292] = {.lex_state = 1770}, + [5293] = {.lex_state = 41}, + [5294] = {.lex_state = 1770}, + [5295] = {.lex_state = 41}, + [5296] = {.lex_state = 1772}, + [5297] = {.lex_state = 41}, + [5298] = {.lex_state = 41}, + [5299] = {.lex_state = 41}, + [5300] = {.lex_state = 41}, + [5301] = {.lex_state = 41}, + [5302] = {.lex_state = 41}, + [5303] = {.lex_state = 1772}, + [5304] = {.lex_state = 1806}, + [5305] = {.lex_state = 41}, + [5306] = {.lex_state = 1772}, + [5307] = {.lex_state = 1770}, + [5308] = {.lex_state = 1837}, + [5309] = {.lex_state = 41}, + [5310] = {.lex_state = 41}, + [5311] = {.lex_state = 1769}, + [5312] = {.lex_state = 75}, + [5313] = {.lex_state = 1769}, + [5314] = {.lex_state = 5209}, + [5315] = {.lex_state = 1769}, + [5316] = {.lex_state = 41}, + [5317] = {.lex_state = 1769}, + [5318] = {.lex_state = 342}, + [5319] = {.lex_state = 1769}, + [5320] = {.lex_state = 1769}, + [5321] = {.lex_state = 1769}, + [5322] = {.lex_state = 41}, + [5323] = {.lex_state = 302}, + [5324] = {.lex_state = 304}, + [5325] = {.lex_state = 41, .external_lex_state = 2}, + [5326] = {.lex_state = 1769}, + [5327] = {.lex_state = 1769}, + [5328] = {.lex_state = 1769}, + [5329] = {.lex_state = 41}, + [5330] = {.lex_state = 299}, + [5331] = {.lex_state = 1769}, + [5332] = {.lex_state = 297}, + [5333] = {.lex_state = 1769}, + [5334] = {.lex_state = 301}, + [5335] = {.lex_state = 1769}, + [5336] = {.lex_state = 1769}, + [5337] = {.lex_state = 1769}, + [5338] = {.lex_state = 1769}, + [5339] = {.lex_state = 1837}, + [5340] = {.lex_state = 1769}, + [5341] = {.lex_state = 1769}, + [5342] = {.lex_state = 1769}, + [5343] = {.lex_state = 41}, + [5344] = {.lex_state = 1769}, + [5345] = {.lex_state = 1769}, + [5346] = {.lex_state = 1769}, + [5347] = {.lex_state = 305}, + [5348] = {.lex_state = 1769}, + [5349] = {.lex_state = 1769}, + [5350] = {.lex_state = 41}, + [5351] = {.lex_state = 1769}, + [5352] = {.lex_state = 1769}, + [5353] = {.lex_state = 307}, + [5354] = {.lex_state = 5209}, + [5355] = {.lex_state = 1769}, + [5356] = {.lex_state = 10}, + [5357] = {.lex_state = 41}, + [5358] = {.lex_state = 1769}, + [5359] = {.lex_state = 41}, + [5360] = {.lex_state = 41}, + [5361] = {.lex_state = 1769}, + [5362] = {.lex_state = 304}, + [5363] = {.lex_state = 5209}, + [5364] = {.lex_state = 41}, + [5365] = {.lex_state = 1837}, + [5366] = {.lex_state = 1769}, + [5367] = {.lex_state = 1769}, + [5368] = {.lex_state = 1837}, + [5369] = {.lex_state = 41}, + [5370] = {.lex_state = 301}, + [5371] = {.lex_state = 301}, + [5372] = {.lex_state = 301}, + [5373] = {.lex_state = 1769}, + [5374] = {.lex_state = 1769}, + [5375] = {.lex_state = 41}, + [5376] = {.lex_state = 41}, + [5377] = {.lex_state = 10}, + [5378] = {.lex_state = 1769}, + [5379] = {.lex_state = 1837}, + [5380] = {.lex_state = 1769}, + [5381] = {.lex_state = 1769}, + [5382] = {.lex_state = 41}, + [5383] = {.lex_state = 41}, + [5384] = {.lex_state = 41}, + [5385] = {.lex_state = 1769}, + [5386] = {.lex_state = 41}, + [5387] = {.lex_state = 10}, + [5388] = {.lex_state = 1769}, + [5389] = {.lex_state = 295}, + [5390] = {.lex_state = 1769}, + [5391] = {.lex_state = 5209}, + [5392] = {.lex_state = 306}, + [5393] = {.lex_state = 295}, + [5394] = {.lex_state = 311}, + [5395] = {.lex_state = 295}, + [5396] = {.lex_state = 295}, + [5397] = {.lex_state = 1769}, + [5398] = {.lex_state = 1837}, + [5399] = {.lex_state = 1769}, + [5400] = {.lex_state = 1769}, + [5401] = {.lex_state = 1769}, + [5402] = {.lex_state = 41}, + [5403] = {.lex_state = 41}, + [5404] = {.lex_state = 1769}, + [5405] = {.lex_state = 1769}, + [5406] = {.lex_state = 125}, + [5407] = {.lex_state = 302}, + [5408] = {.lex_state = 41}, + [5409] = {.lex_state = 41}, + [5410] = {.lex_state = 41}, + [5411] = {.lex_state = 41}, + [5412] = {.lex_state = 1770}, + [5413] = {.lex_state = 41}, + [5414] = {.lex_state = 41}, + [5415] = {.lex_state = 41}, + [5416] = {.lex_state = 1770}, + [5417] = {.lex_state = 1770}, + [5418] = {.lex_state = 1770}, + [5419] = {.lex_state = 1770}, + [5420] = {.lex_state = 1770}, + [5421] = {.lex_state = 1770}, + [5422] = {.lex_state = 1770}, + [5423] = {.lex_state = 10}, + [5424] = {.lex_state = 1770}, + [5425] = {.lex_state = 1770}, + [5426] = {.lex_state = 1770}, + [5427] = {.lex_state = 1769}, + [5428] = {.lex_state = 1770}, + [5429] = {.lex_state = 1769}, + [5430] = {.lex_state = 1769}, + [5431] = {.lex_state = 1769}, + [5432] = {.lex_state = 41}, + [5433] = {.lex_state = 1769}, + [5434] = {.lex_state = 41}, + [5435] = {.lex_state = 1769}, + [5436] = {.lex_state = 41}, + [5437] = {.lex_state = 1769}, + [5438] = {.lex_state = 1769}, + [5439] = {.lex_state = 1769}, + [5440] = {.lex_state = 5209}, + [5441] = {.lex_state = 1769}, + [5442] = {.lex_state = 41}, + [5443] = {.lex_state = 1769}, + [5444] = {.lex_state = 301}, + [5445] = {.lex_state = 1769}, + [5446] = {.lex_state = 125}, + [5447] = {.lex_state = 1769}, + [5448] = {.lex_state = 41}, + [5449] = {.lex_state = 1769}, + [5450] = {.lex_state = 299}, + [5451] = {.lex_state = 1769}, + [5452] = {.lex_state = 10}, + [5453] = {.lex_state = 1770}, + [5454] = {.lex_state = 41}, + [5455] = {.lex_state = 1769}, + [5456] = {.lex_state = 1769}, + [5457] = {.lex_state = 1769}, + [5458] = {.lex_state = 1769}, + [5459] = {.lex_state = 1769}, + [5460] = {.lex_state = 1769}, + [5461] = {.lex_state = 1769}, + [5462] = {.lex_state = 1769}, + [5463] = {.lex_state = 1769}, + [5464] = {.lex_state = 1769}, + [5465] = {.lex_state = 41, .external_lex_state = 2}, + [5466] = {.lex_state = 1769}, + [5467] = {.lex_state = 1769}, + [5468] = {.lex_state = 1769}, + [5469] = {.lex_state = 41, .external_lex_state = 2}, + [5470] = {.lex_state = 336}, + [5471] = {.lex_state = 41}, + [5472] = {.lex_state = 41}, + [5473] = {.lex_state = 41}, + [5474] = {.lex_state = 1769}, + [5475] = {.lex_state = 1769}, + [5476] = {.lex_state = 1769}, + [5477] = {.lex_state = 1769}, + [5478] = {.lex_state = 10}, + [5479] = {.lex_state = 41}, + [5480] = {.lex_state = 1770}, + [5481] = {.lex_state = 1807}, + [5482] = {.lex_state = 362}, + [5483] = {.lex_state = 1807}, + [5484] = {.lex_state = 1807}, + [5485] = {.lex_state = 371}, + [5486] = {.lex_state = 312}, + [5487] = {.lex_state = 71}, + [5488] = {.lex_state = 1807}, + [5489] = {.lex_state = 1807}, + [5490] = {.lex_state = 1807}, + [5491] = {.lex_state = 1807}, + [5492] = {.lex_state = 1769}, + [5493] = {.lex_state = 1807}, + [5494] = {.lex_state = 1807}, + [5495] = {.lex_state = 1807}, + [5496] = {.lex_state = 1807}, + [5497] = {.lex_state = 1807}, + [5498] = {.lex_state = 7}, + [5499] = {.lex_state = 1807}, + [5500] = {.lex_state = 1807}, + [5501] = {.lex_state = 1807}, + [5502] = {.lex_state = 1807}, + [5503] = {.lex_state = 1807}, + [5504] = {.lex_state = 1807}, + [5505] = {.lex_state = 364}, + [5506] = {.lex_state = 300}, + [5507] = {.lex_state = 41}, + [5508] = {.lex_state = 312}, + [5509] = {.lex_state = 379}, + [5510] = {.lex_state = 301}, + [5511] = {.lex_state = 1807}, + [5512] = {.lex_state = 308}, + [5513] = {.lex_state = 1807}, + [5514] = {.lex_state = 41, .external_lex_state = 2}, + [5515] = {.lex_state = 41}, + [5516] = {.lex_state = 1807}, + [5517] = {.lex_state = 80}, + [5518] = {.lex_state = 80}, + [5519] = {.lex_state = 7}, + [5520] = {.lex_state = 41}, + [5521] = {.lex_state = 7}, + [5522] = {.lex_state = 80}, [5523] = {.lex_state = 80}, - [5524] = {.lex_state = 80}, - [5525] = {.lex_state = 1690}, - [5526] = {.lex_state = 1760}, - [5527] = {.lex_state = 33}, - [5528] = {.lex_state = 1696}, - [5529] = {.lex_state = 1696}, - [5530] = {.lex_state = 369}, - [5531] = {.lex_state = 363}, - [5532] = {.lex_state = 1803}, - [5533] = {.lex_state = 1760}, - [5534] = {.lex_state = 1760}, - [5535] = {.lex_state = 1696}, - [5536] = {.lex_state = 363}, - [5537] = {.lex_state = 33, .external_lex_state = 2}, - [5538] = {.lex_state = 33, .external_lex_state = 2}, - [5539] = {.lex_state = 259, .external_lex_state = 2}, - [5540] = {.lex_state = 33, .external_lex_state = 2}, - [5541] = {.lex_state = 33, .external_lex_state = 2}, - [5542] = {.lex_state = 33, .external_lex_state = 2}, - [5543] = {.lex_state = 362}, - [5544] = {.lex_state = 33, .external_lex_state = 2}, - [5545] = {.lex_state = 259, .external_lex_state = 2}, - [5546] = {.lex_state = 259, .external_lex_state = 2}, - [5547] = {.lex_state = 1792}, - [5548] = {.lex_state = 259, .external_lex_state = 2}, - [5549] = {.lex_state = 1760}, - [5550] = {.lex_state = 352}, - [5551] = {.lex_state = 259, .external_lex_state = 2}, - [5552] = {.lex_state = 75}, - [5553] = {.lex_state = 259, .external_lex_state = 2}, - [5554] = {.lex_state = 33}, - [5555] = {.lex_state = 33, .external_lex_state = 2}, - [5556] = {.lex_state = 259, .external_lex_state = 2}, - [5557] = {.lex_state = 360}, - [5558] = {.lex_state = 328}, - [5559] = {.lex_state = 259, .external_lex_state = 2}, - [5560] = {.lex_state = 259, .external_lex_state = 2}, - [5561] = {.lex_state = 62}, - [5562] = {.lex_state = 351}, - [5563] = {.lex_state = 352}, - [5564] = {.lex_state = 259, .external_lex_state = 2}, - [5565] = {.lex_state = 259, .external_lex_state = 2}, - [5566] = {.lex_state = 360}, - [5567] = {.lex_state = 259, .external_lex_state = 2}, - [5568] = {.lex_state = 321}, - [5569] = {.lex_state = 259, .external_lex_state = 2}, - [5570] = {.lex_state = 259, .external_lex_state = 2}, - [5571] = {.lex_state = 259, .external_lex_state = 2}, - [5572] = {.lex_state = 259, .external_lex_state = 2}, - [5573] = {.lex_state = 259, .external_lex_state = 2}, - [5574] = {.lex_state = 259, .external_lex_state = 2}, - [5575] = {.lex_state = 259, .external_lex_state = 2}, - [5576] = {.lex_state = 259, .external_lex_state = 2}, - [5577] = {.lex_state = 259, .external_lex_state = 2}, - [5578] = {.lex_state = 259, .external_lex_state = 2}, - [5579] = {.lex_state = 259, .external_lex_state = 2}, - [5580] = {.lex_state = 259, .external_lex_state = 2}, - [5581] = {.lex_state = 259, .external_lex_state = 2}, - [5582] = {.lex_state = 259, .external_lex_state = 2}, - [5583] = {.lex_state = 259, .external_lex_state = 2}, - [5584] = {.lex_state = 259, .external_lex_state = 2}, - [5585] = {.lex_state = 259, .external_lex_state = 2}, - [5586] = {.lex_state = 259, .external_lex_state = 2}, - [5587] = {.lex_state = 259, .external_lex_state = 2}, - [5588] = {.lex_state = 259, .external_lex_state = 2}, - [5589] = {.lex_state = 259, .external_lex_state = 2}, - [5590] = {.lex_state = 259, .external_lex_state = 2}, - [5591] = {.lex_state = 259, .external_lex_state = 2}, - [5592] = {.lex_state = 259, .external_lex_state = 2}, - [5593] = {.lex_state = 259, .external_lex_state = 2}, - [5594] = {.lex_state = 259, .external_lex_state = 2}, - [5595] = {.lex_state = 259, .external_lex_state = 2}, - [5596] = {.lex_state = 259, .external_lex_state = 2}, - [5597] = {.lex_state = 299}, - [5598] = {.lex_state = 352}, - [5599] = {.lex_state = 259, .external_lex_state = 2}, - [5600] = {.lex_state = 299}, - [5601] = {.lex_state = 299}, - [5602] = {.lex_state = 299}, - [5603] = {.lex_state = 360}, - [5604] = {.lex_state = 360}, - [5605] = {.lex_state = 328}, - [5606] = {.lex_state = 299}, - [5607] = {.lex_state = 352}, - [5608] = {.lex_state = 1793}, - [5609] = {.lex_state = 1793}, - [5610] = {.lex_state = 370}, - [5611] = {.lex_state = 1760}, - [5612] = {.lex_state = 352}, - [5613] = {.lex_state = 352}, - [5614] = {.lex_state = 1794}, - [5615] = {.lex_state = 1760}, - [5616] = {.lex_state = 328}, - [5617] = {.lex_state = 75}, - [5618] = {.lex_state = 360}, - [5619] = {.lex_state = 33, .external_lex_state = 2}, - [5620] = {.lex_state = 328}, - [5621] = {.lex_state = 259, .external_lex_state = 2}, - [5622] = {.lex_state = 33, .external_lex_state = 2}, - [5623] = {.lex_state = 33, .external_lex_state = 2}, - [5624] = {.lex_state = 33, .external_lex_state = 2}, - [5625] = {.lex_state = 1696}, - [5626] = {.lex_state = 259, .external_lex_state = 2}, - [5627] = {.lex_state = 1696}, - [5628] = {.lex_state = 1696}, - [5629] = {.lex_state = 33}, - [5630] = {.lex_state = 321}, - [5631] = {.lex_state = 377}, - [5632] = {.lex_state = 314}, - [5633] = {.lex_state = 314}, - [5634] = {.lex_state = 322}, - [5635] = {.lex_state = 364}, - [5636] = {.lex_state = 1761}, - [5637] = {.lex_state = 371}, - [5638] = {.lex_state = 33, .external_lex_state = 2}, - [5639] = {.lex_state = 322}, - [5640] = {.lex_state = 371}, - [5641] = {.lex_state = 1760}, - [5642] = {.lex_state = 372}, - [5643] = {.lex_state = 364}, - [5644] = {.lex_state = 33, .external_lex_state = 2}, - [5645] = {.lex_state = 33, .external_lex_state = 2}, - [5646] = {.lex_state = 364}, - [5647] = {.lex_state = 314}, - [5648] = {.lex_state = 314}, - [5649] = {.lex_state = 365}, - [5650] = {.lex_state = 33}, - [5651] = {.lex_state = 314}, - [5652] = {.lex_state = 314}, - [5653] = {.lex_state = 33, .external_lex_state = 2}, - [5654] = {.lex_state = 314}, - [5655] = {.lex_state = 314}, - [5656] = {.lex_state = 371}, - [5657] = {.lex_state = 322}, - [5658] = {.lex_state = 33, .external_lex_state = 2}, - [5659] = {.lex_state = 377}, - [5660] = {.lex_state = 339}, - [5661] = {.lex_state = 33, .external_lex_state = 2}, - [5662] = {.lex_state = 314}, - [5663] = {.lex_state = 365}, - [5664] = {.lex_state = 371}, - [5665] = {.lex_state = 1803}, - [5666] = {.lex_state = 1793}, - [5667] = {.lex_state = 314}, - [5668] = {.lex_state = 33, .external_lex_state = 2}, - [5669] = {.lex_state = 33, .external_lex_state = 2}, - [5670] = {.lex_state = 14}, - [5671] = {.lex_state = 1794}, - [5672] = {.lex_state = 71}, - [5673] = {.lex_state = 314}, - [5674] = {.lex_state = 339}, - [5675] = {.lex_state = 33, .external_lex_state = 2}, - [5676] = {.lex_state = 314}, - [5677] = {.lex_state = 314}, - [5678] = {.lex_state = 1696}, - [5679] = {.lex_state = 76}, - [5680] = {.lex_state = 1690}, - [5681] = {.lex_state = 314}, - [5682] = {.lex_state = 322}, - [5683] = {.lex_state = 372}, - [5684] = {.lex_state = 372}, - [5685] = {.lex_state = 314}, - [5686] = {.lex_state = 364}, - [5687] = {.lex_state = 328}, - [5688] = {.lex_state = 314}, - [5689] = {.lex_state = 76}, - [5690] = {.lex_state = 314}, - [5691] = {.lex_state = 372}, - [5692] = {.lex_state = 310}, - [5693] = {.lex_state = 314}, - [5694] = {.lex_state = 314}, - [5695] = {.lex_state = 1690}, - [5696] = {.lex_state = 314}, - [5697] = {.lex_state = 314}, - [5698] = {.lex_state = 364}, - [5699] = {.lex_state = 328}, - [5700] = {.lex_state = 372}, - [5701] = {.lex_state = 76}, - [5702] = {.lex_state = 76}, - [5703] = {.lex_state = 1760}, - [5704] = {.lex_state = 14}, - [5705] = {.lex_state = 1696}, - [5706] = {.lex_state = 1761}, - [5707] = {.lex_state = 1803}, - [5708] = {.lex_state = 314}, - [5709] = {.lex_state = 364}, - [5710] = {.lex_state = 314}, - [5711] = {.lex_state = 310}, - [5712] = {.lex_state = 322}, - [5713] = {.lex_state = 322}, - [5714] = {.lex_state = 310}, - [5715] = {.lex_state = 372}, - [5716] = {.lex_state = 371}, - [5717] = {.lex_state = 314}, - [5718] = {.lex_state = 1696}, - [5719] = {.lex_state = 1793}, - [5720] = {.lex_state = 1803}, - [5721] = {.lex_state = 1803}, - [5722] = {.lex_state = 33, .external_lex_state = 2}, - [5723] = {.lex_state = 310}, - [5724] = {.lex_state = 1696}, - [5725] = {.lex_state = 1803}, - [5726] = {.lex_state = 314}, - [5727] = {.lex_state = 314}, - [5728] = {.lex_state = 1760}, - [5729] = {.lex_state = 4720}, - [5730] = {.lex_state = 4720}, - [5731] = {.lex_state = 268}, - [5732] = {.lex_state = 403}, - [5733] = {.lex_state = 1723}, - [5734] = {.lex_state = 1760}, + [5524] = {.lex_state = 337}, + [5525] = {.lex_state = 41}, + [5526] = {.lex_state = 71}, + [5527] = {.lex_state = 7}, + [5528] = {.lex_state = 301}, + [5529] = {.lex_state = 348}, + [5530] = {.lex_state = 41}, + [5531] = {.lex_state = 41, .external_lex_state = 2}, + [5532] = {.lex_state = 7}, + [5533] = {.lex_state = 41, .external_lex_state = 2}, + [5534] = {.lex_state = 41}, + [5535] = {.lex_state = 300}, + [5536] = {.lex_state = 343}, + [5537] = {.lex_state = 343}, + [5538] = {.lex_state = 1807}, + [5539] = {.lex_state = 41}, + [5540] = {.lex_state = 1703}, + [5541] = {.lex_state = 80}, + [5542] = {.lex_state = 308}, + [5543] = {.lex_state = 1807}, + [5544] = {.lex_state = 4764}, + [5545] = {.lex_state = 4764}, + [5546] = {.lex_state = 1703}, + [5547] = {.lex_state = 370}, + [5548] = {.lex_state = 4764}, + [5549] = {.lex_state = 365}, + [5550] = {.lex_state = 4764}, + [5551] = {.lex_state = 309}, + [5552] = {.lex_state = 4764}, + [5553] = {.lex_state = 41}, + [5554] = {.lex_state = 4764}, + [5555] = {.lex_state = 309}, + [5556] = {.lex_state = 5394}, + [5557] = {.lex_state = 380}, + [5558] = {.lex_state = 84}, + [5559] = {.lex_state = 4764}, + [5560] = {.lex_state = 4764}, + [5561] = {.lex_state = 344}, + [5562] = {.lex_state = 4764}, + [5563] = {.lex_state = 381}, + [5564] = {.lex_state = 4764}, + [5565] = {.lex_state = 4764}, + [5566] = {.lex_state = 1807}, + [5567] = {.lex_state = 365}, + [5568] = {.lex_state = 1807}, + [5569] = {.lex_state = 1807}, + [5570] = {.lex_state = 1807}, + [5571] = {.lex_state = 1807}, + [5572] = {.lex_state = 4764}, + [5573] = {.lex_state = 4764}, + [5574] = {.lex_state = 41}, + [5575] = {.lex_state = 1807}, + [5576] = {.lex_state = 5210}, + [5577] = {.lex_state = 1703}, + [5578] = {.lex_state = 1807}, + [5579] = {.lex_state = 1807}, + [5580] = {.lex_state = 1737}, + [5581] = {.lex_state = 4764}, + [5582] = {.lex_state = 4764}, + [5583] = {.lex_state = 4764}, + [5584] = {.lex_state = 4764}, + [5585] = {.lex_state = 1703}, + [5586] = {.lex_state = 5394}, + [5587] = {.lex_state = 4764}, + [5588] = {.lex_state = 1807}, + [5589] = {.lex_state = 349}, + [5590] = {.lex_state = 5210}, + [5591] = {.lex_state = 4764}, + [5592] = {.lex_state = 1807}, + [5593] = {.lex_state = 370}, + [5594] = {.lex_state = 1807}, + [5595] = {.lex_state = 309}, + [5596] = {.lex_state = 1807}, + [5597] = {.lex_state = 4764}, + [5598] = {.lex_state = 4764}, + [5599] = {.lex_state = 4764}, + [5600] = {.lex_state = 5210}, + [5601] = {.lex_state = 71}, + [5602] = {.lex_state = 1807}, + [5603] = {.lex_state = 381}, + [5604] = {.lex_state = 1737}, + [5605] = {.lex_state = 4764}, + [5606] = {.lex_state = 370}, + [5607] = {.lex_state = 1807}, + [5608] = {.lex_state = 313}, + [5609] = {.lex_state = 344}, + [5610] = {.lex_state = 4764}, + [5611] = {.lex_state = 5210}, + [5612] = {.lex_state = 324}, + [5613] = {.lex_state = 344}, + [5614] = {.lex_state = 1807}, + [5615] = {.lex_state = 4764}, + [5616] = {.lex_state = 349}, + [5617] = {.lex_state = 338}, + [5618] = {.lex_state = 85}, + [5619] = {.lex_state = 1807}, + [5620] = {.lex_state = 309}, + [5621] = {.lex_state = 372}, + [5622] = {.lex_state = 326}, + [5623] = {.lex_state = 310}, + [5624] = {.lex_state = 5394}, + [5625] = {.lex_state = 4764}, + [5626] = {.lex_state = 1737}, + [5627] = {.lex_state = 1737}, + [5628] = {.lex_state = 5394}, + [5629] = {.lex_state = 1807}, + [5630] = {.lex_state = 5210}, + [5631] = {.lex_state = 1807}, + [5632] = {.lex_state = 370}, + [5633] = {.lex_state = 5394}, + [5634] = {.lex_state = 4764}, + [5635] = {.lex_state = 4764}, + [5636] = {.lex_state = 310}, + [5637] = {.lex_state = 1807}, + [5638] = {.lex_state = 5394}, + [5639] = {.lex_state = 5394}, + [5640] = {.lex_state = 5394}, + [5641] = {.lex_state = 1807}, + [5642] = {.lex_state = 310}, + [5643] = {.lex_state = 310}, + [5644] = {.lex_state = 1807}, + [5645] = {.lex_state = 71}, + [5646] = {.lex_state = 1807}, + [5647] = {.lex_state = 344}, + [5648] = {.lex_state = 1737}, + [5649] = {.lex_state = 1807}, + [5650] = {.lex_state = 4764}, + [5651] = {.lex_state = 4764}, + [5652] = {.lex_state = 4764}, + [5653] = {.lex_state = 350}, + [5654] = {.lex_state = 4764}, + [5655] = {.lex_state = 344}, + [5656] = {.lex_state = 1807}, + [5657] = {.lex_state = 370}, + [5658] = {.lex_state = 4764}, + [5659] = {.lex_state = 309}, + [5660] = {.lex_state = 370}, + [5661] = {.lex_state = 1807}, + [5662] = {.lex_state = 370}, + [5663] = {.lex_state = 1703}, + [5664] = {.lex_state = 310}, + [5665] = {.lex_state = 313}, + [5666] = {.lex_state = 345}, + [5667] = {.lex_state = 382}, + [5668] = {.lex_state = 1807}, + [5669] = {.lex_state = 1807}, + [5670] = {.lex_state = 41, .external_lex_state = 2}, + [5671] = {.lex_state = 41, .external_lex_state = 2}, + [5672] = {.lex_state = 1703}, + [5673] = {.lex_state = 1703}, + [5674] = {.lex_state = 382}, + [5675] = {.lex_state = 1737}, + [5676] = {.lex_state = 1703}, + [5677] = {.lex_state = 1807}, + [5678] = {.lex_state = 1807}, + [5679] = {.lex_state = 1703}, + [5680] = {.lex_state = 71}, + [5681] = {.lex_state = 71}, + [5682] = {.lex_state = 383}, + [5683] = {.lex_state = 1739}, + [5684] = {.lex_state = 1737}, + [5685] = {.lex_state = 41}, + [5686] = {.lex_state = 1807}, + [5687] = {.lex_state = 1807}, + [5688] = {.lex_state = 1807}, + [5689] = {.lex_state = 1807}, + [5690] = {.lex_state = 1737}, + [5691] = {.lex_state = 1737}, + [5692] = {.lex_state = 313}, + [5693] = {.lex_state = 1703}, + [5694] = {.lex_state = 81}, + [5695] = {.lex_state = 81}, + [5696] = {.lex_state = 1703}, + [5697] = {.lex_state = 41}, + [5698] = {.lex_state = 1703}, + [5699] = {.lex_state = 41}, + [5700] = {.lex_state = 1737}, + [5701] = {.lex_state = 1703}, + [5702] = {.lex_state = 1703}, + [5703] = {.lex_state = 41, .external_lex_state = 2}, + [5704] = {.lex_state = 1703}, + [5705] = {.lex_state = 370}, + [5706] = {.lex_state = 346}, + [5707] = {.lex_state = 1703}, + [5708] = {.lex_state = 327}, + [5709] = {.lex_state = 41}, + [5710] = {.lex_state = 327}, + [5711] = {.lex_state = 363}, + [5712] = {.lex_state = 370}, + [5713] = {.lex_state = 41}, + [5714] = {.lex_state = 385}, + [5715] = {.lex_state = 1841}, + [5716] = {.lex_state = 1703}, + [5717] = {.lex_state = 383}, + [5718] = {.lex_state = 1703}, + [5719] = {.lex_state = 1703}, + [5720] = {.lex_state = 383}, + [5721] = {.lex_state = 71}, + [5722] = {.lex_state = 71}, + [5723] = {.lex_state = 71}, + [5724] = {.lex_state = 71}, + [5725] = {.lex_state = 71}, + [5726] = {.lex_state = 71}, + [5727] = {.lex_state = 71}, + [5728] = {.lex_state = 71}, + [5729] = {.lex_state = 71}, + [5730] = {.lex_state = 71}, + [5731] = {.lex_state = 71}, + [5732] = {.lex_state = 71}, + [5733] = {.lex_state = 71}, + [5734] = {.lex_state = 71}, [5735] = {.lex_state = 71}, - [5736] = {.lex_state = 1723}, - [5737] = {.lex_state = 1760}, - [5738] = {.lex_state = 1723}, - [5739] = {.lex_state = 403}, - [5740] = {.lex_state = 1760}, - [5741] = {.lex_state = 33, .external_lex_state = 2}, - [5742] = {.lex_state = 1760}, - [5743] = {.lex_state = 268}, - [5744] = {.lex_state = 310}, - [5745] = {.lex_state = 4720}, - [5746] = {.lex_state = 4720}, - [5747] = {.lex_state = 268}, - [5748] = {.lex_state = 314}, - [5749] = {.lex_state = 1723}, - [5750] = {.lex_state = 1760}, - [5751] = {.lex_state = 1723}, - [5752] = {.lex_state = 1723}, - [5753] = {.lex_state = 71}, - [5754] = {.lex_state = 1760}, - [5755] = {.lex_state = 1723}, - [5756] = {.lex_state = 268}, - [5757] = {.lex_state = 329}, - [5758] = {.lex_state = 4720}, - [5759] = {.lex_state = 4720}, - [5760] = {.lex_state = 268}, - [5761] = {.lex_state = 1760}, - [5762] = {.lex_state = 268}, - [5763] = {.lex_state = 1723}, - [5764] = {.lex_state = 1760}, - [5765] = {.lex_state = 1723}, - [5766] = {.lex_state = 1760}, - [5767] = {.lex_state = 1760}, - [5768] = {.lex_state = 71}, - [5769] = {.lex_state = 1760}, - [5770] = {.lex_state = 268}, - [5771] = {.lex_state = 4720}, - [5772] = {.lex_state = 4720}, - [5773] = {.lex_state = 268}, - [5774] = {.lex_state = 1760}, - [5775] = {.lex_state = 1723}, - [5776] = {.lex_state = 314}, - [5777] = {.lex_state = 1760}, - [5778] = {.lex_state = 1723}, - [5779] = {.lex_state = 1723}, - [5780] = {.lex_state = 310}, - [5781] = {.lex_state = 268}, - [5782] = {.lex_state = 268}, - [5783] = {.lex_state = 4720}, - [5784] = {.lex_state = 4720}, - [5785] = {.lex_state = 268}, - [5786] = {.lex_state = 1760}, - [5787] = {.lex_state = 1723}, - [5788] = {.lex_state = 33, .external_lex_state = 2}, - [5789] = {.lex_state = 1760}, - [5790] = {.lex_state = 1723}, - [5791] = {.lex_state = 314}, - [5792] = {.lex_state = 1760}, - [5793] = {.lex_state = 1760}, - [5794] = {.lex_state = 268}, - [5795] = {.lex_state = 4720}, - [5796] = {.lex_state = 4720}, - [5797] = {.lex_state = 71}, - [5798] = {.lex_state = 268}, - [5799] = {.lex_state = 1760}, - [5800] = {.lex_state = 1723}, - [5801] = {.lex_state = 14}, - [5802] = {.lex_state = 1760}, - [5803] = {.lex_state = 1723}, - [5804] = {.lex_state = 4720}, - [5805] = {.lex_state = 71}, - [5806] = {.lex_state = 1723}, - [5807] = {.lex_state = 268}, - [5808] = {.lex_state = 4720}, - [5809] = {.lex_state = 4720}, - [5810] = {.lex_state = 268}, - [5811] = {.lex_state = 1723}, - [5812] = {.lex_state = 4720}, - [5813] = {.lex_state = 4720}, - [5814] = {.lex_state = 1723}, - [5815] = {.lex_state = 1760}, - [5816] = {.lex_state = 310}, - [5817] = {.lex_state = 1723}, - [5818] = {.lex_state = 4720}, - [5819] = {.lex_state = 1760}, - [5820] = {.lex_state = 268}, - [5821] = {.lex_state = 4720}, - [5822] = {.lex_state = 4720}, - [5823] = {.lex_state = 268}, - [5824] = {.lex_state = 1760}, - [5825] = {.lex_state = 1723}, - [5826] = {.lex_state = 1723}, - [5827] = {.lex_state = 1723}, - [5828] = {.lex_state = 1723}, - [5829] = {.lex_state = 268}, - [5830] = {.lex_state = 372}, - [5831] = {.lex_state = 268}, - [5832] = {.lex_state = 71}, - [5833] = {.lex_state = 1723}, - [5834] = {.lex_state = 1723}, - [5835] = {.lex_state = 403}, - [5836] = {.lex_state = 339}, - [5837] = {.lex_state = 268}, - [5838] = {.lex_state = 33}, - [5839] = {.lex_state = 268}, - [5840] = {.lex_state = 1723}, - [5841] = {.lex_state = 1723}, - [5842] = {.lex_state = 33, .external_lex_state = 2}, - [5843] = {.lex_state = 33, .external_lex_state = 2}, - [5844] = {.lex_state = 268}, - [5845] = {.lex_state = 1723}, - [5846] = {.lex_state = 268}, - [5847] = {.lex_state = 1723}, - [5848] = {.lex_state = 1723}, - [5849] = {.lex_state = 71}, - [5850] = {.lex_state = 1723}, - [5851] = {.lex_state = 1723}, - [5852] = {.lex_state = 1723}, - [5853] = {.lex_state = 1723}, - [5854] = {.lex_state = 1723}, - [5855] = {.lex_state = 1723}, - [5856] = {.lex_state = 71}, - [5857] = {.lex_state = 1723}, - [5858] = {.lex_state = 1723}, - [5859] = {.lex_state = 1723}, - [5860] = {.lex_state = 1760}, - [5861] = {.lex_state = 1723}, - [5862] = {.lex_state = 4720}, - [5863] = {.lex_state = 4720}, - [5864] = {.lex_state = 376}, - [5865] = {.lex_state = 1723}, - [5866] = {.lex_state = 33}, - [5867] = {.lex_state = 1760}, - [5868] = {.lex_state = 268}, - [5869] = {.lex_state = 1760}, - [5870] = {.lex_state = 1723}, - [5871] = {.lex_state = 1760}, - [5872] = {.lex_state = 71}, - [5873] = {.lex_state = 1760}, - [5874] = {.lex_state = 1723}, - [5875] = {.lex_state = 1760}, - [5876] = {.lex_state = 7}, - [5877] = {.lex_state = 4720}, - [5878] = {.lex_state = 7}, - [5879] = {.lex_state = 4720}, - [5880] = {.lex_state = 268}, - [5881] = {.lex_state = 310}, - [5882] = {.lex_state = 1723}, - [5883] = {.lex_state = 287}, - [5884] = {.lex_state = 366}, - [5885] = {.lex_state = 14}, - [5886] = {.lex_state = 1760}, - [5887] = {.lex_state = 1760}, - [5888] = {.lex_state = 1760}, - [5889] = {.lex_state = 33}, - [5890] = {.lex_state = 287}, - [5891] = {.lex_state = 287}, - [5892] = {.lex_state = 1760}, - [5893] = {.lex_state = 1760}, - [5894] = {.lex_state = 4720}, - [5895] = {.lex_state = 1760}, - [5896] = {.lex_state = 71}, - [5897] = {.lex_state = 1760}, - [5898] = {.lex_state = 71}, - [5899] = {.lex_state = 71}, - [5900] = {.lex_state = 1760}, - [5901] = {.lex_state = 71}, - [5902] = {.lex_state = 1723}, - [5903] = {.lex_state = 71}, - [5904] = {.lex_state = 333}, - [5905] = {.lex_state = 71}, - [5906] = {.lex_state = 4720}, - [5907] = {.lex_state = 403}, - [5908] = {.lex_state = 1760}, - [5909] = {.lex_state = 71}, - [5910] = {.lex_state = 71}, - [5911] = {.lex_state = 71}, - [5912] = {.lex_state = 71}, - [5913] = {.lex_state = 310}, - [5914] = {.lex_state = 1760}, - [5915] = {.lex_state = 71}, - [5916] = {.lex_state = 314}, - [5917] = {.lex_state = 366}, - [5918] = {.lex_state = 268}, - [5919] = {.lex_state = 314}, - [5920] = {.lex_state = 346}, - [5921] = {.lex_state = 403}, - [5922] = {.lex_state = 310}, - [5923] = {.lex_state = 346}, - [5924] = {.lex_state = 314}, - [5925] = {.lex_state = 71}, - [5926] = {.lex_state = 1723}, - [5927] = {.lex_state = 71}, - [5928] = {.lex_state = 71}, - [5929] = {.lex_state = 71}, - [5930] = {.lex_state = 290}, - [5931] = {.lex_state = 1723}, - [5932] = {.lex_state = 268}, - [5933] = {.lex_state = 4720}, - [5934] = {.lex_state = 1723}, - [5935] = {.lex_state = 1760}, - [5936] = {.lex_state = 71}, - [5937] = {.lex_state = 71}, - [5938] = {.lex_state = 71}, - [5939] = {.lex_state = 71}, - [5940] = {.lex_state = 4720}, - [5941] = {.lex_state = 372}, - [5942] = {.lex_state = 310}, - [5943] = {.lex_state = 71}, - [5944] = {.lex_state = 71}, - [5945] = {.lex_state = 71}, - [5946] = {.lex_state = 71}, - [5947] = {.lex_state = 268}, - [5948] = {.lex_state = 33}, - [5949] = {.lex_state = 1723}, - [5950] = {.lex_state = 14}, - [5951] = {.lex_state = 1723}, - [5952] = {.lex_state = 366}, - [5953] = {.lex_state = 1723}, - [5954] = {.lex_state = 1723}, - [5955] = {.lex_state = 289}, - [5956] = {.lex_state = 373}, - [5957] = {.lex_state = 366}, - [5958] = {.lex_state = 1723}, - [5959] = {.lex_state = 71}, - [5960] = {.lex_state = 1761}, - [5961] = {.lex_state = 310}, - [5962] = {.lex_state = 310}, - [5963] = {.lex_state = 33, .external_lex_state = 2}, - [5964] = {.lex_state = 71}, - [5965] = {.lex_state = 71}, - [5966] = {.lex_state = 71}, - [5967] = {.lex_state = 71}, - [5968] = {.lex_state = 1760}, - [5969] = {.lex_state = 1760}, - [5970] = {.lex_state = 372}, - [5971] = {.lex_state = 268}, - [5972] = {.lex_state = 1760}, - [5973] = {.lex_state = 297}, - [5974] = {.lex_state = 1760}, - [5975] = {.lex_state = 1723}, - [5976] = {.lex_state = 4720}, - [5977] = {.lex_state = 376}, - [5978] = {.lex_state = 1723}, - [5979] = {.lex_state = 310}, - [5980] = {.lex_state = 376}, - [5981] = {.lex_state = 385}, - [5982] = {.lex_state = 1760}, - [5983] = {.lex_state = 33, .external_lex_state = 2}, - [5984] = {.lex_state = 268}, - [5985] = {.lex_state = 1760}, - [5986] = {.lex_state = 1723}, - [5987] = {.lex_state = 4720}, - [5988] = {.lex_state = 287}, - [5989] = {.lex_state = 287}, - [5990] = {.lex_state = 4720}, - [5991] = {.lex_state = 1723}, - [5992] = {.lex_state = 376}, - [5993] = {.lex_state = 296}, - [5994] = {.lex_state = 287}, - [5995] = {.lex_state = 268}, - [5996] = {.lex_state = 287}, - [5997] = {.lex_state = 314}, - [5998] = {.lex_state = 33}, - [5999] = {.lex_state = 314}, - [6000] = {.lex_state = 1723}, - [6001] = {.lex_state = 4720}, - [6002] = {.lex_state = 268}, - [6003] = {.lex_state = 1760}, - [6004] = {.lex_state = 1760}, - [6005] = {.lex_state = 1760}, - [6006] = {.lex_state = 7}, - [6007] = {.lex_state = 366}, - [6008] = {.lex_state = 1760}, - [6009] = {.lex_state = 1760}, - [6010] = {.lex_state = 1760}, - [6011] = {.lex_state = 366}, - [6012] = {.lex_state = 14}, - [6013] = {.lex_state = 1723}, - [6014] = {.lex_state = 1760}, - [6015] = {.lex_state = 7}, - [6016] = {.lex_state = 7}, - [6017] = {.lex_state = 7}, - [6018] = {.lex_state = 14}, - [6019] = {.lex_state = 1760}, - [6020] = {.lex_state = 372}, - [6021] = {.lex_state = 1723}, - [6022] = {.lex_state = 316}, - [6023] = {.lex_state = 339}, - [6024] = {.lex_state = 1760}, - [6025] = {.lex_state = 268}, - [6026] = {.lex_state = 1760}, - [6027] = {.lex_state = 14}, - [6028] = {.lex_state = 71}, - [6029] = {.lex_state = 287}, - [6030] = {.lex_state = 33}, - [6031] = {.lex_state = 1723}, - [6032] = {.lex_state = 33}, - [6033] = {.lex_state = 33}, - [6034] = {.lex_state = 33}, - [6035] = {.lex_state = 1690}, - [6036] = {.lex_state = 33}, - [6037] = {.lex_state = 346}, - [6038] = {.lex_state = 33}, - [6039] = {.lex_state = 375}, - [6040] = {.lex_state = 375}, - [6041] = {.lex_state = 1690}, - [6042] = {.lex_state = 1723}, - [6043] = {.lex_state = 33}, - [6044] = {.lex_state = 101}, - [6045] = {.lex_state = 1724}, - [6046] = {.lex_state = 33}, - [6047] = {.lex_state = 386}, - [6048] = {.lex_state = 101}, - [6049] = {.lex_state = 1689}, - [6050] = {.lex_state = 346}, - [6051] = {.lex_state = 1690}, - [6052] = {.lex_state = 1690}, - [6053] = {.lex_state = 33}, - [6054] = {.lex_state = 33}, - [6055] = {.lex_state = 1690}, - [6056] = {.lex_state = 1690}, - [6057] = {.lex_state = 1690}, - [6058] = {.lex_state = 1690}, - [6059] = {.lex_state = 1689}, - [6060] = {.lex_state = 1689}, - [6061] = {.lex_state = 1689}, - [6062] = {.lex_state = 1689}, - [6063] = {.lex_state = 1723}, - [6064] = {.lex_state = 101}, - [6065] = {.lex_state = 310}, - [6066] = {.lex_state = 33}, - [6067] = {.lex_state = 101}, - [6068] = {.lex_state = 1690}, - [6069] = {.lex_state = 101}, - [6070] = {.lex_state = 1690}, - [6071] = {.lex_state = 1690}, - [6072] = {.lex_state = 33}, - [6073] = {.lex_state = 1690}, - [6074] = {.lex_state = 1690}, - [6075] = {.lex_state = 1690}, - [6076] = {.lex_state = 412}, - [6077] = {.lex_state = 1723}, - [6078] = {.lex_state = 1690}, - [6079] = {.lex_state = 1690}, - [6080] = {.lex_state = 1690}, - [6081] = {.lex_state = 412}, - [6082] = {.lex_state = 33}, - [6083] = {.lex_state = 1690}, - [6084] = {.lex_state = 1723}, - [6085] = {.lex_state = 292}, - [6086] = {.lex_state = 1690}, - [6087] = {.lex_state = 314}, - [6088] = {.lex_state = 1723}, - [6089] = {.lex_state = 1723}, - [6090] = {.lex_state = 76}, - [6091] = {.lex_state = 310}, - [6092] = {.lex_state = 294}, - [6093] = {.lex_state = 330}, - [6094] = {.lex_state = 310}, - [6095] = {.lex_state = 346}, - [6096] = {.lex_state = 33}, - [6097] = {.lex_state = 374}, - [6098] = {.lex_state = 330}, - [6099] = {.lex_state = 1760}, - [6100] = {.lex_state = 1723}, - [6101] = {.lex_state = 1723}, - [6102] = {.lex_state = 1723}, - [6103] = {.lex_state = 332}, - [6104] = {.lex_state = 375}, - [6105] = {.lex_state = 375}, - [6106] = {.lex_state = 375}, - [6107] = {.lex_state = 1723}, - [6108] = {.lex_state = 375}, - [6109] = {.lex_state = 346}, - [6110] = {.lex_state = 346}, - [6111] = {.lex_state = 412}, - [6112] = {.lex_state = 1723}, - [6113] = {.lex_state = 1723}, - [6114] = {.lex_state = 339}, - [6115] = {.lex_state = 412}, - [6116] = {.lex_state = 310}, - [6117] = {.lex_state = 387}, - [6118] = {.lex_state = 339}, - [6119] = {.lex_state = 339}, - [6120] = {.lex_state = 76}, - [6121] = {.lex_state = 339}, - [6122] = {.lex_state = 412}, - [6123] = {.lex_state = 310}, - [6124] = {.lex_state = 412}, - [6125] = {.lex_state = 310}, - [6126] = {.lex_state = 387}, - [6127] = {.lex_state = 310}, - [6128] = {.lex_state = 412}, - [6129] = {.lex_state = 412}, - [6130] = {.lex_state = 412}, - [6131] = {.lex_state = 1754}, - [6132] = {.lex_state = 412}, - [6133] = {.lex_state = 412}, - [6134] = {.lex_state = 412}, - [6135] = {.lex_state = 33}, - [6136] = {.lex_state = 33}, - [6137] = {.lex_state = 33}, - [6138] = {.lex_state = 412}, - [6139] = {.lex_state = 412}, - [6140] = {.lex_state = 412}, - [6141] = {.lex_state = 1722}, - [6142] = {.lex_state = 412}, - [6143] = {.lex_state = 412}, - [6144] = {.lex_state = 33}, - [6145] = {.lex_state = 346}, - [6146] = {.lex_state = 1689}, - [6147] = {.lex_state = 412}, - [6148] = {.lex_state = 1723}, - [6149] = {.lex_state = 346}, - [6150] = {.lex_state = 412}, - [6151] = {.lex_state = 346}, - [6152] = {.lex_state = 412}, - [6153] = {.lex_state = 412}, - [6154] = {.lex_state = 412}, - [6155] = {.lex_state = 339}, - [6156] = {.lex_state = 412}, - [6157] = {.lex_state = 1724}, - [6158] = {.lex_state = 76}, - [6159] = {.lex_state = 412}, - [6160] = {.lex_state = 412}, - [6161] = {.lex_state = 412}, - [6162] = {.lex_state = 1723}, - [6163] = {.lex_state = 33}, - [6164] = {.lex_state = 412}, - [6165] = {.lex_state = 412}, - [6166] = {.lex_state = 412}, - [6167] = {.lex_state = 412}, - [6168] = {.lex_state = 33}, - [6169] = {.lex_state = 33}, - [6170] = {.lex_state = 339}, - [6171] = {.lex_state = 336}, - [6172] = {.lex_state = 33}, - [6173] = {.lex_state = 346}, - [6174] = {.lex_state = 412}, - [6175] = {.lex_state = 412}, - [6176] = {.lex_state = 1723}, - [6177] = {.lex_state = 287}, - [6178] = {.lex_state = 336}, - [6179] = {.lex_state = 1723}, - [6180] = {.lex_state = 1723}, - [6181] = {.lex_state = 33}, - [6182] = {.lex_state = 287}, - [6183] = {.lex_state = 297}, - [6184] = {.lex_state = 1723}, - [6185] = {.lex_state = 33}, - [6186] = {.lex_state = 33}, - [6187] = {.lex_state = 33}, - [6188] = {.lex_state = 33}, - [6189] = {.lex_state = 287}, - [6190] = {.lex_state = 1723}, - [6191] = {.lex_state = 1723}, - [6192] = {.lex_state = 1724}, - [6193] = {.lex_state = 290}, - [6194] = {.lex_state = 287}, - [6195] = {.lex_state = 33}, - [6196] = {.lex_state = 33}, - [6197] = {.lex_state = 33}, - [6198] = {.lex_state = 33}, - [6199] = {.lex_state = 1723}, - [6200] = {.lex_state = 1723}, - [6201] = {.lex_state = 1723}, - [6202] = {.lex_state = 1723}, - [6203] = {.lex_state = 1723}, - [6204] = {.lex_state = 1723}, - [6205] = {.lex_state = 1723}, - [6206] = {.lex_state = 1723}, - [6207] = {.lex_state = 1723}, - [6208] = {.lex_state = 1723}, - [6209] = {.lex_state = 1723}, - [6210] = {.lex_state = 1723}, - [6211] = {.lex_state = 1723}, - [6212] = {.lex_state = 1723}, - [6213] = {.lex_state = 1690}, - [6214] = {.lex_state = 1723}, - [6215] = {.lex_state = 1723}, - [6216] = {.lex_state = 1723}, - [6217] = {.lex_state = 1723}, - [6218] = {.lex_state = 1723}, - [6219] = {.lex_state = 1723}, - [6220] = {.lex_state = 1723}, - [6221] = {.lex_state = 1723}, - [6222] = {.lex_state = 1723}, - [6223] = {.lex_state = 1723}, - [6224] = {.lex_state = 1723}, - [6225] = {.lex_state = 1723}, - [6226] = {.lex_state = 1723}, - [6227] = {.lex_state = 1723}, - [6228] = {.lex_state = 1723}, - [6229] = {.lex_state = 1723}, - [6230] = {.lex_state = 1723}, - [6231] = {.lex_state = 1723}, - [6232] = {.lex_state = 1723}, - [6233] = {.lex_state = 412}, - [6234] = {.lex_state = 33}, - [6235] = {.lex_state = 33}, - [6236] = {.lex_state = 33}, - [6237] = {.lex_state = 1760}, - [6238] = {.lex_state = 33}, - [6239] = {.lex_state = 1760}, - [6240] = {.lex_state = 1760}, - [6241] = {.lex_state = 1754}, - [6242] = {.lex_state = 315}, - [6243] = {.lex_state = 76}, - [6244] = {.lex_state = 1723}, - [6245] = {.lex_state = 266}, - [6246] = {.lex_state = 1723}, - [6247] = {.lex_state = 1723}, - [6248] = {.lex_state = 337}, - [6249] = {.lex_state = 393}, - [6250] = {.lex_state = 401}, - [6251] = {.lex_state = 266}, - [6252] = {.lex_state = 268}, - [6253] = {.lex_state = 346}, - [6254] = {.lex_state = 1723}, - [6255] = {.lex_state = 1723}, - [6256] = {.lex_state = 1723}, - [6257] = {.lex_state = 1723}, - [6258] = {.lex_state = 410}, - [6259] = {.lex_state = 33}, - [6260] = {.lex_state = 76}, - [6261] = {.lex_state = 136}, - [6262] = {.lex_state = 266}, - [6263] = {.lex_state = 136}, - [6264] = {.lex_state = 1723}, - [6265] = {.lex_state = 136}, - [6266] = {.lex_state = 136}, - [6267] = {.lex_state = 136}, - [6268] = {.lex_state = 136}, - [6269] = {.lex_state = 136}, - [6270] = {.lex_state = 136}, - [6271] = {.lex_state = 136}, - [6272] = {.lex_state = 136}, - [6273] = {.lex_state = 136}, - [6274] = {.lex_state = 1723}, - [6275] = {.lex_state = 1723}, - [6276] = {.lex_state = 388}, - [6277] = {.lex_state = 1723}, - [6278] = {.lex_state = 1723}, - [6279] = {.lex_state = 339}, - [6280] = {.lex_state = 1723}, - [6281] = {.lex_state = 1723}, - [6282] = {.lex_state = 290}, - [6283] = {.lex_state = 339}, - [6284] = {.lex_state = 1723}, - [6285] = {.lex_state = 1723}, - [6286] = {.lex_state = 1723}, - [6287] = {.lex_state = 388}, - [6288] = {.lex_state = 393}, - [6289] = {.lex_state = 1723}, - [6290] = {.lex_state = 266}, - [6291] = {.lex_state = 1723}, - [6292] = {.lex_state = 1723}, - [6293] = {.lex_state = 1723}, - [6294] = {.lex_state = 266}, - [6295] = {.lex_state = 1723}, - [6296] = {.lex_state = 1723}, - [6297] = {.lex_state = 1723}, - [6298] = {.lex_state = 1723}, - [6299] = {.lex_state = 1723}, - [6300] = {.lex_state = 1723}, - [6301] = {.lex_state = 1723}, - [6302] = {.lex_state = 136}, - [6303] = {.lex_state = 136}, - [6304] = {.lex_state = 136}, - [6305] = {.lex_state = 136}, - [6306] = {.lex_state = 136}, - [6307] = {.lex_state = 136}, - [6308] = {.lex_state = 136}, - [6309] = {.lex_state = 136}, - [6310] = {.lex_state = 1723}, - [6311] = {.lex_state = 1723}, - [6312] = {.lex_state = 388}, - [6313] = {.lex_state = 393}, - [6314] = {.lex_state = 266}, - [6315] = {.lex_state = 1723}, - [6316] = {.lex_state = 1723}, - [6317] = {.lex_state = 388}, - [6318] = {.lex_state = 1723}, - [6319] = {.lex_state = 1723}, - [6320] = {.lex_state = 266}, - [6321] = {.lex_state = 1723}, - [6322] = {.lex_state = 1723}, - [6323] = {.lex_state = 136}, - [6324] = {.lex_state = 388}, - [6325] = {.lex_state = 136}, - [6326] = {.lex_state = 136}, - [6327] = {.lex_state = 136}, - [6328] = {.lex_state = 136}, - [6329] = {.lex_state = 136}, - [6330] = {.lex_state = 136}, - [6331] = {.lex_state = 136}, - [6332] = {.lex_state = 136}, - [6333] = {.lex_state = 388}, - [6334] = {.lex_state = 393}, - [6335] = {.lex_state = 266}, - [6336] = {.lex_state = 1723}, - [6337] = {.lex_state = 136}, - [6338] = {.lex_state = 1723}, - [6339] = {.lex_state = 136}, - [6340] = {.lex_state = 1723}, - [6341] = {.lex_state = 266}, - [6342] = {.lex_state = 1723}, - [6343] = {.lex_state = 388}, - [6344] = {.lex_state = 1723}, - [6345] = {.lex_state = 1723}, - [6346] = {.lex_state = 1723}, - [6347] = {.lex_state = 136}, - [6348] = {.lex_state = 136}, - [6349] = {.lex_state = 136}, - [6350] = {.lex_state = 136}, - [6351] = {.lex_state = 136}, - [6352] = {.lex_state = 136}, - [6353] = {.lex_state = 136}, - [6354] = {.lex_state = 136}, - [6355] = {.lex_state = 1723}, - [6356] = {.lex_state = 1723}, - [6357] = {.lex_state = 393}, - [6358] = {.lex_state = 1723}, - [6359] = {.lex_state = 266}, - [6360] = {.lex_state = 1723}, - [6361] = {.lex_state = 1723}, - [6362] = {.lex_state = 1723}, - [6363] = {.lex_state = 1723}, - [6364] = {.lex_state = 266}, - [6365] = {.lex_state = 410}, - [6366] = {.lex_state = 1723}, - [6367] = {.lex_state = 1723}, - [6368] = {.lex_state = 76}, - [6369] = {.lex_state = 1723}, - [6370] = {.lex_state = 1723}, - [6371] = {.lex_state = 136}, - [6372] = {.lex_state = 136}, - [6373] = {.lex_state = 136}, - [6374] = {.lex_state = 136}, - [6375] = {.lex_state = 136}, - [6376] = {.lex_state = 136}, - [6377] = {.lex_state = 136}, - [6378] = {.lex_state = 136}, - [6379] = {.lex_state = 266}, - [6380] = {.lex_state = 331}, - [6381] = {.lex_state = 393}, - [6382] = {.lex_state = 266}, - [6383] = {.lex_state = 136}, - [6384] = {.lex_state = 393}, - [6385] = {.lex_state = 266}, - [6386] = {.lex_state = 136}, - [6387] = {.lex_state = 1723}, - [6388] = {.lex_state = 407}, - [6389] = {.lex_state = 136}, - [6390] = {.lex_state = 136}, - [6391] = {.lex_state = 136}, - [6392] = {.lex_state = 136}, - [6393] = {.lex_state = 136}, - [6394] = {.lex_state = 136}, - [6395] = {.lex_state = 136}, - [6396] = {.lex_state = 136}, - [6397] = {.lex_state = 136}, - [6398] = {.lex_state = 331}, - [6399] = {.lex_state = 393}, - [6400] = {.lex_state = 346}, - [6401] = {.lex_state = 266}, - [6402] = {.lex_state = 401}, - [6403] = {.lex_state = 1723}, - [6404] = {.lex_state = 331}, - [6405] = {.lex_state = 266}, - [6406] = {.lex_state = 136}, - [6407] = {.lex_state = 266}, - [6408] = {.lex_state = 1723}, - [6409] = {.lex_state = 1723}, - [6410] = {.lex_state = 1723}, - [6411] = {.lex_state = 136}, - [6412] = {.lex_state = 136}, - [6413] = {.lex_state = 136}, - [6414] = {.lex_state = 136}, - [6415] = {.lex_state = 136}, - [6416] = {.lex_state = 136}, - [6417] = {.lex_state = 136}, - [6418] = {.lex_state = 136}, - [6419] = {.lex_state = 1723}, - [6420] = {.lex_state = 393}, - [6421] = {.lex_state = 266}, - [6422] = {.lex_state = 1723}, - [6423] = {.lex_state = 1723}, - [6424] = {.lex_state = 393}, - [6425] = {.lex_state = 1723}, - [6426] = {.lex_state = 266}, - [6427] = {.lex_state = 1723}, - [6428] = {.lex_state = 388}, - [6429] = {.lex_state = 136}, - [6430] = {.lex_state = 136}, - [6431] = {.lex_state = 136}, - [6432] = {.lex_state = 136}, - [6433] = {.lex_state = 136}, - [6434] = {.lex_state = 136}, - [6435] = {.lex_state = 136}, - [6436] = {.lex_state = 136}, - [6437] = {.lex_state = 136}, - [6438] = {.lex_state = 1723}, - [6439] = {.lex_state = 393}, - [6440] = {.lex_state = 266}, - [6441] = {.lex_state = 1723}, - [6442] = {.lex_state = 266}, - [6443] = {.lex_state = 266}, - [6444] = {.lex_state = 334}, - [6445] = {.lex_state = 136}, - [6446] = {.lex_state = 136}, - [6447] = {.lex_state = 136}, - [6448] = {.lex_state = 136}, - [6449] = {.lex_state = 136}, - [6450] = {.lex_state = 136}, - [6451] = {.lex_state = 136}, - [6452] = {.lex_state = 136}, - [6453] = {.lex_state = 406}, - [6454] = {.lex_state = 393}, - [6455] = {.lex_state = 266}, - [6456] = {.lex_state = 136}, - [6457] = {.lex_state = 1723}, - [6458] = {.lex_state = 266}, - [6459] = {.lex_state = 1723}, - [6460] = {.lex_state = 1723}, - [6461] = {.lex_state = 1723}, - [6462] = {.lex_state = 410}, - [6463] = {.lex_state = 1723}, - [6464] = {.lex_state = 136}, - [6465] = {.lex_state = 136}, - [6466] = {.lex_state = 136}, - [6467] = {.lex_state = 136}, - [6468] = {.lex_state = 136}, - [6469] = {.lex_state = 136}, - [6470] = {.lex_state = 136}, - [6471] = {.lex_state = 136}, - [6472] = {.lex_state = 410}, - [6473] = {.lex_state = 393}, - [6474] = {.lex_state = 1723}, - [6475] = {.lex_state = 1723}, - [6476] = {.lex_state = 1723}, - [6477] = {.lex_state = 266}, - [6478] = {.lex_state = 1723}, - [6479] = {.lex_state = 266}, - [6480] = {.lex_state = 389}, - [6481] = {.lex_state = 1723}, - [6482] = {.lex_state = 1723}, - [6483] = {.lex_state = 136}, - [6484] = {.lex_state = 136}, - [6485] = {.lex_state = 136}, - [6486] = {.lex_state = 136}, - [6487] = {.lex_state = 136}, - [6488] = {.lex_state = 136}, - [6489] = {.lex_state = 136}, - [6490] = {.lex_state = 136}, - [6491] = {.lex_state = 346}, - [6492] = {.lex_state = 393}, - [6493] = {.lex_state = 1723}, - [6494] = {.lex_state = 266}, - [6495] = {.lex_state = 393}, - [6496] = {.lex_state = 266}, - [6497] = {.lex_state = 1723}, - [6498] = {.lex_state = 1723}, - [6499] = {.lex_state = 136}, - [6500] = {.lex_state = 136}, - [6501] = {.lex_state = 136}, - [6502] = {.lex_state = 136}, - [6503] = {.lex_state = 136}, - [6504] = {.lex_state = 136}, - [6505] = {.lex_state = 136}, - [6506] = {.lex_state = 136}, - [6507] = {.lex_state = 1723}, - [6508] = {.lex_state = 393}, - [6509] = {.lex_state = 1723}, - [6510] = {.lex_state = 266}, - [6511] = {.lex_state = 136}, - [6512] = {.lex_state = 266}, - [6513] = {.lex_state = 266}, - [6514] = {.lex_state = 136}, - [6515] = {.lex_state = 136}, - [6516] = {.lex_state = 136}, - [6517] = {.lex_state = 136}, - [6518] = {.lex_state = 136}, - [6519] = {.lex_state = 136}, - [6520] = {.lex_state = 136}, - [6521] = {.lex_state = 136}, - [6522] = {.lex_state = 1723}, - [6523] = {.lex_state = 393}, - [6524] = {.lex_state = 1723}, - [6525] = {.lex_state = 266}, - [6526] = {.lex_state = 266}, - [6527] = {.lex_state = 1723}, - [6528] = {.lex_state = 136}, - [6529] = {.lex_state = 136}, - [6530] = {.lex_state = 136}, - [6531] = {.lex_state = 136}, - [6532] = {.lex_state = 136}, - [6533] = {.lex_state = 136}, - [6534] = {.lex_state = 136}, - [6535] = {.lex_state = 136}, - [6536] = {.lex_state = 136}, - [6537] = {.lex_state = 393}, - [6538] = {.lex_state = 266}, - [6539] = {.lex_state = 266}, - [6540] = {.lex_state = 136}, - [6541] = {.lex_state = 136}, - [6542] = {.lex_state = 136}, - [6543] = {.lex_state = 136}, - [6544] = {.lex_state = 136}, - [6545] = {.lex_state = 136}, - [6546] = {.lex_state = 136}, - [6547] = {.lex_state = 136}, - [6548] = {.lex_state = 136}, - [6549] = {.lex_state = 393}, - [6550] = {.lex_state = 266}, - [6551] = {.lex_state = 266}, - [6552] = {.lex_state = 136}, - [6553] = {.lex_state = 136}, - [6554] = {.lex_state = 136}, - [6555] = {.lex_state = 136}, - [6556] = {.lex_state = 136}, - [6557] = {.lex_state = 136}, - [6558] = {.lex_state = 136}, - [6559] = {.lex_state = 136}, - [6560] = {.lex_state = 393}, - [6561] = {.lex_state = 266}, - [6562] = {.lex_state = 266}, - [6563] = {.lex_state = 393}, - [6564] = {.lex_state = 266}, - [6565] = {.lex_state = 1723}, - [6566] = {.lex_state = 266}, - [6567] = {.lex_state = 393}, - [6568] = {.lex_state = 266}, - [6569] = {.lex_state = 266}, - [6570] = {.lex_state = 393}, - [6571] = {.lex_state = 266}, - [6572] = {.lex_state = 266}, - [6573] = {.lex_state = 393}, - [6574] = {.lex_state = 266}, - [6575] = {.lex_state = 266}, - [6576] = {.lex_state = 393}, - [6577] = {.lex_state = 266}, - [6578] = {.lex_state = 266}, - [6579] = {.lex_state = 393}, - [6580] = {.lex_state = 266}, - [6581] = {.lex_state = 266}, - [6582] = {.lex_state = 1723}, - [6583] = {.lex_state = 393}, - [6584] = {.lex_state = 266}, - [6585] = {.lex_state = 266}, - [6586] = {.lex_state = 136}, - [6587] = {.lex_state = 393}, - [6588] = {.lex_state = 266}, - [6589] = {.lex_state = 266}, - [6590] = {.lex_state = 393}, - [6591] = {.lex_state = 266}, - [6592] = {.lex_state = 266}, - [6593] = {.lex_state = 393}, - [6594] = {.lex_state = 266}, - [6595] = {.lex_state = 266}, - [6596] = {.lex_state = 393}, - [6597] = {.lex_state = 266}, - [6598] = {.lex_state = 266}, - [6599] = {.lex_state = 136}, - [6600] = {.lex_state = 393}, - [6601] = {.lex_state = 266}, - [6602] = {.lex_state = 266}, - [6603] = {.lex_state = 1723}, - [6604] = {.lex_state = 393}, - [6605] = {.lex_state = 266}, - [6606] = {.lex_state = 266}, - [6607] = {.lex_state = 1723}, - [6608] = {.lex_state = 393}, - [6609] = {.lex_state = 266}, - [6610] = {.lex_state = 266}, - [6611] = {.lex_state = 393}, - [6612] = {.lex_state = 266}, - [6613] = {.lex_state = 266}, - [6614] = {.lex_state = 393}, - [6615] = {.lex_state = 266}, - [6616] = {.lex_state = 266}, - [6617] = {.lex_state = 393}, - [6618] = {.lex_state = 266}, - [6619] = {.lex_state = 266}, - [6620] = {.lex_state = 393}, - [6621] = {.lex_state = 266}, - [6622] = {.lex_state = 266}, - [6623] = {.lex_state = 393}, - [6624] = {.lex_state = 266}, - [6625] = {.lex_state = 266}, - [6626] = {.lex_state = 393}, - [6627] = {.lex_state = 266}, - [6628] = {.lex_state = 266}, - [6629] = {.lex_state = 393}, - [6630] = {.lex_state = 266}, - [6631] = {.lex_state = 266}, - [6632] = {.lex_state = 393}, - [6633] = {.lex_state = 266}, - [6634] = {.lex_state = 266}, - [6635] = {.lex_state = 393}, - [6636] = {.lex_state = 266}, - [6637] = {.lex_state = 266}, - [6638] = {.lex_state = 393}, - [6639] = {.lex_state = 266}, - [6640] = {.lex_state = 266}, - [6641] = {.lex_state = 393}, - [6642] = {.lex_state = 266}, - [6643] = {.lex_state = 266}, - [6644] = {.lex_state = 393}, - [6645] = {.lex_state = 266}, - [6646] = {.lex_state = 266}, - [6647] = {.lex_state = 393}, - [6648] = {.lex_state = 266}, - [6649] = {.lex_state = 266}, - [6650] = {.lex_state = 266}, - [6651] = {.lex_state = 266}, - [6652] = {.lex_state = 266}, - [6653] = {.lex_state = 266}, - [6654] = {.lex_state = 266}, - [6655] = {.lex_state = 266}, - [6656] = {.lex_state = 1723}, - [6657] = {.lex_state = 393}, - [6658] = {.lex_state = 1723}, - [6659] = {.lex_state = 1723}, - [6660] = {.lex_state = 136}, - [6661] = {.lex_state = 1723}, - [6662] = {.lex_state = 1723}, - [6663] = {.lex_state = 1723}, - [6664] = {.lex_state = 10}, - [6665] = {.lex_state = 266}, - [6666] = {.lex_state = 337}, - [6667] = {.lex_state = 1723}, - [6668] = {.lex_state = 1723}, - [6669] = {.lex_state = 1723}, - [6670] = {.lex_state = 1723}, - [6671] = {.lex_state = 1723}, - [6672] = {.lex_state = 82}, - [6673] = {.lex_state = 337}, - [6674] = {.lex_state = 1723}, - [6675] = {.lex_state = 1723}, - [6676] = {.lex_state = 1723}, - [6677] = {.lex_state = 1723}, - [6678] = {.lex_state = 1723}, - [6679] = {.lex_state = 401}, - [6680] = {.lex_state = 268}, - [6681] = {.lex_state = 1723}, - [6682] = {.lex_state = 401}, - [6683] = {.lex_state = 337}, - [6684] = {.lex_state = 1723}, - [6685] = {.lex_state = 337}, - [6686] = {.lex_state = 1690}, - [6687] = {.lex_state = 1723}, - [6688] = {.lex_state = 334}, - [6689] = {.lex_state = 1723}, - [6690] = {.lex_state = 344}, - [6691] = {.lex_state = 1723}, - [6692] = {.lex_state = 1723}, - [6693] = {.lex_state = 1723}, - [6694] = {.lex_state = 314}, - [6695] = {.lex_state = 388}, - [6696] = {.lex_state = 331}, - [6697] = {.lex_state = 1723}, - [6698] = {.lex_state = 268}, - [6699] = {.lex_state = 1723}, - [6700] = {.lex_state = 314}, - [6701] = {.lex_state = 1723}, - [6702] = {.lex_state = 136}, - [6703] = {.lex_state = 136}, - [6704] = {.lex_state = 1723}, - [6705] = {.lex_state = 1723}, - [6706] = {.lex_state = 1723}, - [6707] = {.lex_state = 1723}, - [6708] = {.lex_state = 1723}, - [6709] = {.lex_state = 1723}, - [6710] = {.lex_state = 393}, - [6711] = {.lex_state = 393}, - [6712] = {.lex_state = 1723}, - [6713] = {.lex_state = 1723}, - [6714] = {.lex_state = 1723}, - [6715] = {.lex_state = 1723}, - [6716] = {.lex_state = 407}, - [6717] = {.lex_state = 401}, - [6718] = {.lex_state = 1723}, - [6719] = {.lex_state = 1723}, - [6720] = {.lex_state = 1723}, - [6721] = {.lex_state = 1723}, - [6722] = {.lex_state = 337}, - [6723] = {.lex_state = 1723}, - [6724] = {.lex_state = 331}, - [6725] = {.lex_state = 1723}, - [6726] = {.lex_state = 1723}, - [6727] = {.lex_state = 388}, - [6728] = {.lex_state = 136}, - [6729] = {.lex_state = 331}, - [6730] = {.lex_state = 1723}, - [6731] = {.lex_state = 1723}, - [6732] = {.lex_state = 10}, - [6733] = {.lex_state = 1723}, - [6734] = {.lex_state = 1723}, - [6735] = {.lex_state = 1723}, - [6736] = {.lex_state = 1723}, - [6737] = {.lex_state = 136}, - [6738] = {.lex_state = 136}, - [6739] = {.lex_state = 1723}, - [6740] = {.lex_state = 287}, - [6741] = {.lex_state = 136}, - [6742] = {.lex_state = 136}, - [6743] = {.lex_state = 287}, - [6744] = {.lex_state = 1723}, - [6745] = {.lex_state = 1723}, - [6746] = {.lex_state = 1723}, - [6747] = {.lex_state = 1723}, - [6748] = {.lex_state = 407}, - [6749] = {.lex_state = 410}, - [6750] = {.lex_state = 136}, - [6751] = {.lex_state = 331}, - [6752] = {.lex_state = 1723}, - [6753] = {.lex_state = 406}, - [6754] = {.lex_state = 1723}, - [6755] = {.lex_state = 1723}, - [6756] = {.lex_state = 337}, - [6757] = {.lex_state = 1723}, - [6758] = {.lex_state = 337}, - [6759] = {.lex_state = 1723}, - [6760] = {.lex_state = 136}, - [6761] = {.lex_state = 136}, - [6762] = {.lex_state = 136}, - [6763] = {.lex_state = 307}, - [6764] = {.lex_state = 1723}, - [6765] = {.lex_state = 266}, - [6766] = {.lex_state = 331}, - [6767] = {.lex_state = 406}, - [6768] = {.lex_state = 1723}, - [6769] = {.lex_state = 1723}, - [6770] = {.lex_state = 406}, - [6771] = {.lex_state = 136}, - [6772] = {.lex_state = 1723}, - [6773] = {.lex_state = 136}, - [6774] = {.lex_state = 1723}, - [6775] = {.lex_state = 1723}, - [6776] = {.lex_state = 389}, - [6777] = {.lex_state = 406}, - [6778] = {.lex_state = 1723}, - [6779] = {.lex_state = 136}, - [6780] = {.lex_state = 337}, - [6781] = {.lex_state = 127}, - [6782] = {.lex_state = 136}, - [6783] = {.lex_state = 44}, - [6784] = {.lex_state = 407}, - [6785] = {.lex_state = 407}, - [6786] = {.lex_state = 1723}, - [6787] = {.lex_state = 1723}, - [6788] = {.lex_state = 1723}, - [6789] = {.lex_state = 1723}, - [6790] = {.lex_state = 1723}, - [6791] = {.lex_state = 1723}, - [6792] = {.lex_state = 331}, - [6793] = {.lex_state = 1723}, - [6794] = {.lex_state = 1723}, - [6795] = {.lex_state = 1723}, - [6796] = {.lex_state = 1723}, - [6797] = {.lex_state = 1723}, - [6798] = {.lex_state = 1723}, - [6799] = {.lex_state = 136}, - [6800] = {.lex_state = 314}, - [6801] = {.lex_state = 1723}, - [6802] = {.lex_state = 1723}, - [6803] = {.lex_state = 1723}, - [6804] = {.lex_state = 1723}, - [6805] = {.lex_state = 1723}, - [6806] = {.lex_state = 1723}, - [6807] = {.lex_state = 1723}, - [6808] = {.lex_state = 7}, - [6809] = {.lex_state = 7}, - [6810] = {.lex_state = 1723}, - [6811] = {.lex_state = 1723}, - [6812] = {.lex_state = 1723}, - [6813] = {.lex_state = 136}, - [6814] = {.lex_state = 339}, - [6815] = {.lex_state = 1723}, - [6816] = {.lex_state = 81}, - [6817] = {.lex_state = 33}, - [6818] = {.lex_state = 1723}, - [6819] = {.lex_state = 136}, - [6820] = {.lex_state = 1723}, - [6821] = {.lex_state = 136}, - [6822] = {.lex_state = 136}, - [6823] = {.lex_state = 136}, - [6824] = {.lex_state = 136}, - [6825] = {.lex_state = 390}, - [6826] = {.lex_state = 136}, - [6827] = {.lex_state = 136}, - [6828] = {.lex_state = 1723}, - [6829] = {.lex_state = 136}, - [6830] = {.lex_state = 136}, - [6831] = {.lex_state = 1723}, - [6832] = {.lex_state = 1723}, - [6833] = {.lex_state = 1723}, - [6834] = {.lex_state = 1723}, - [6835] = {.lex_state = 14}, - [6836] = {.lex_state = 1723}, - [6837] = {.lex_state = 1723}, - [6838] = {.lex_state = 136}, - [6839] = {.lex_state = 408}, - [6840] = {.lex_state = 337}, - [6841] = {.lex_state = 136}, - [6842] = {.lex_state = 338}, - [6843] = {.lex_state = 408}, - [6844] = {.lex_state = 136}, - [6845] = {.lex_state = 1719}, - [6846] = {.lex_state = 136}, - [6847] = {.lex_state = 405}, - [6848] = {.lex_state = 338}, - [6849] = {.lex_state = 136}, - [6850] = {.lex_state = 136}, - [6851] = {.lex_state = 136}, - [6852] = {.lex_state = 136}, - [6853] = {.lex_state = 136}, - [6854] = {.lex_state = 136}, - [6855] = {.lex_state = 136}, - [6856] = {.lex_state = 136}, - [6857] = {.lex_state = 402}, - [6858] = {.lex_state = 136}, - [6859] = {.lex_state = 136}, - [6860] = {.lex_state = 136}, - [6861] = {.lex_state = 1723}, - [6862] = {.lex_state = 1723}, - [6863] = {.lex_state = 136}, - [6864] = {.lex_state = 1723}, - [6865] = {.lex_state = 1723}, - [6866] = {.lex_state = 338}, - [6867] = {.lex_state = 1723}, - [6868] = {.lex_state = 1723}, - [6869] = {.lex_state = 136}, - [6870] = {.lex_state = 405}, - [6871] = {.lex_state = 338}, - [6872] = {.lex_state = 338}, - [6873] = {.lex_state = 136}, - [6874] = {.lex_state = 1723}, - [6875] = {.lex_state = 136}, - [6876] = {.lex_state = 136}, - [6877] = {.lex_state = 136}, - [6878] = {.lex_state = 136}, - [6879] = {.lex_state = 136}, - [6880] = {.lex_state = 1723}, - [6881] = {.lex_state = 136}, - [6882] = {.lex_state = 136}, - [6883] = {.lex_state = 136}, - [6884] = {.lex_state = 136}, - [6885] = {.lex_state = 1722}, - [6886] = {.lex_state = 1723}, - [6887] = {.lex_state = 136}, - [6888] = {.lex_state = 136}, - [6889] = {.lex_state = 266}, - [6890] = {.lex_state = 408}, - [6891] = {.lex_state = 136}, - [6892] = {.lex_state = 338}, - [6893] = {.lex_state = 411}, - [6894] = {.lex_state = 1723}, - [6895] = {.lex_state = 136}, - [6896] = {.lex_state = 338}, - [6897] = {.lex_state = 1722}, - [6898] = {.lex_state = 136}, - [6899] = {.lex_state = 136}, - [6900] = {.lex_state = 136}, - [6901] = {.lex_state = 136}, - [6902] = {.lex_state = 136}, - [6903] = {.lex_state = 136}, - [6904] = {.lex_state = 136}, - [6905] = {.lex_state = 338}, - [6906] = {.lex_state = 136}, - [6907] = {.lex_state = 136}, - [6908] = {.lex_state = 1723}, - [6909] = {.lex_state = 1723}, - [6910] = {.lex_state = 1723}, - [6911] = {.lex_state = 1723}, - [6912] = {.lex_state = 136}, - [6913] = {.lex_state = 1722}, - [6914] = {.lex_state = 136}, - [6915] = {.lex_state = 338}, - [6916] = {.lex_state = 1723}, - [6917] = {.lex_state = 136}, - [6918] = {.lex_state = 1722}, - [6919] = {.lex_state = 338}, - [6920] = {.lex_state = 1723}, - [6921] = {.lex_state = 136}, - [6922] = {.lex_state = 1723}, - [6923] = {.lex_state = 85}, - [6924] = {.lex_state = 136}, - [6925] = {.lex_state = 136}, - [6926] = {.lex_state = 136}, - [6927] = {.lex_state = 390}, - [6928] = {.lex_state = 136}, - [6929] = {.lex_state = 1723}, - [6930] = {.lex_state = 136}, - [6931] = {.lex_state = 136}, - [6932] = {.lex_state = 136}, - [6933] = {.lex_state = 136}, - [6934] = {.lex_state = 1723}, - [6935] = {.lex_state = 136}, - [6936] = {.lex_state = 390}, - [6937] = {.lex_state = 1724}, - [6938] = {.lex_state = 1722}, - [6939] = {.lex_state = 338}, - [6940] = {.lex_state = 405}, - [6941] = {.lex_state = 335}, - [6942] = {.lex_state = 1722}, - [6943] = {.lex_state = 338}, - [6944] = {.lex_state = 1722}, - [6945] = {.lex_state = 136}, - [6946] = {.lex_state = 136}, - [6947] = {.lex_state = 136}, - [6948] = {.lex_state = 136}, - [6949] = {.lex_state = 136}, - [6950] = {.lex_state = 136}, - [6951] = {.lex_state = 338}, - [6952] = {.lex_state = 136}, - [6953] = {.lex_state = 136}, - [6954] = {.lex_state = 1723}, - [6955] = {.lex_state = 1722}, - [6956] = {.lex_state = 136}, - [6957] = {.lex_state = 136}, - [6958] = {.lex_state = 1723}, - [6959] = {.lex_state = 1723}, - [6960] = {.lex_state = 136}, - [6961] = {.lex_state = 1723}, - [6962] = {.lex_state = 338}, - [6963] = {.lex_state = 1723}, - [6964] = {.lex_state = 1723}, - [6965] = {.lex_state = 1723}, - [6966] = {.lex_state = 338}, - [6967] = {.lex_state = 136}, - [6968] = {.lex_state = 1722}, - [6969] = {.lex_state = 1723}, - [6970] = {.lex_state = 136}, - [6971] = {.lex_state = 136}, - [6972] = {.lex_state = 136}, - [6973] = {.lex_state = 136}, - [6974] = {.lex_state = 85}, - [6975] = {.lex_state = 383}, - [6976] = {.lex_state = 136}, - [6977] = {.lex_state = 136}, - [6978] = {.lex_state = 1723}, - [6979] = {.lex_state = 136}, - [6980] = {.lex_state = 1723}, - [6981] = {.lex_state = 1723}, - [6982] = {.lex_state = 1723}, - [6983] = {.lex_state = 408}, - [6984] = {.lex_state = 1723}, - [6985] = {.lex_state = 136}, - [6986] = {.lex_state = 136}, - [6987] = {.lex_state = 338}, - [6988] = {.lex_state = 1723}, - [6989] = {.lex_state = 1723}, - [6990] = {.lex_state = 411}, - [6991] = {.lex_state = 382}, - [6992] = {.lex_state = 338}, - [6993] = {.lex_state = 335}, - [6994] = {.lex_state = 136}, - [6995] = {.lex_state = 1723}, - [6996] = {.lex_state = 136}, - [6997] = {.lex_state = 136}, - [6998] = {.lex_state = 136}, - [6999] = {.lex_state = 1723}, - [7000] = {.lex_state = 136}, - [7001] = {.lex_state = 136}, - [7002] = {.lex_state = 136}, - [7003] = {.lex_state = 136}, - [7004] = {.lex_state = 1723}, - [7005] = {.lex_state = 1723}, - [7006] = {.lex_state = 136}, - [7007] = {.lex_state = 1723}, - [7008] = {.lex_state = 1723}, - [7009] = {.lex_state = 1723}, - [7010] = {.lex_state = 1723}, - [7011] = {.lex_state = 338}, - [7012] = {.lex_state = 1723}, - [7013] = {.lex_state = 1723}, - [7014] = {.lex_state = 1723}, - [7015] = {.lex_state = 338}, - [7016] = {.lex_state = 136}, - [7017] = {.lex_state = 1723}, - [7018] = {.lex_state = 136}, - [7019] = {.lex_state = 136}, - [7020] = {.lex_state = 136}, - [7021] = {.lex_state = 1723}, - [7022] = {.lex_state = 136}, - [7023] = {.lex_state = 402}, - [7024] = {.lex_state = 136}, - [7025] = {.lex_state = 136}, - [7026] = {.lex_state = 1723}, - [7027] = {.lex_state = 136}, - [7028] = {.lex_state = 1723}, - [7029] = {.lex_state = 1722}, - [7030] = {.lex_state = 136}, - [7031] = {.lex_state = 136}, - [7032] = {.lex_state = 136}, - [7033] = {.lex_state = 136}, - [7034] = {.lex_state = 136}, - [7035] = {.lex_state = 338}, - [7036] = {.lex_state = 1723}, - [7037] = {.lex_state = 338}, - [7038] = {.lex_state = 338}, - [7039] = {.lex_state = 136}, - [7040] = {.lex_state = 1723}, - [7041] = {.lex_state = 136}, - [7042] = {.lex_state = 136}, - [7043] = {.lex_state = 136}, - [7044] = {.lex_state = 136}, - [7045] = {.lex_state = 208}, - [7046] = {.lex_state = 1723}, - [7047] = {.lex_state = 136}, - [7048] = {.lex_state = 136}, - [7049] = {.lex_state = 1723}, - [7050] = {.lex_state = 136}, - [7051] = {.lex_state = 338}, - [7052] = {.lex_state = 136}, - [7053] = {.lex_state = 338}, - [7054] = {.lex_state = 136}, - [7055] = {.lex_state = 136}, - [7056] = {.lex_state = 136}, - [7057] = {.lex_state = 136}, - [7058] = {.lex_state = 136}, - [7059] = {.lex_state = 136}, - [7060] = {.lex_state = 1723}, - [7061] = {.lex_state = 136}, - [7062] = {.lex_state = 136}, - [7063] = {.lex_state = 1701}, - [7064] = {.lex_state = 40}, - [7065] = {.lex_state = 136}, - [7066] = {.lex_state = 136}, - [7067] = {.lex_state = 1723}, - [7068] = {.lex_state = 1723}, - [7069] = {.lex_state = 1723}, - [7070] = {.lex_state = 1723}, - [7071] = {.lex_state = 1723}, - [7072] = {.lex_state = 338}, - [7073] = {.lex_state = 1723}, - [7074] = {.lex_state = 338}, - [7075] = {.lex_state = 136}, - [7076] = {.lex_state = 1723}, - [7077] = {.lex_state = 1723}, - [7078] = {.lex_state = 136}, - [7079] = {.lex_state = 136}, - [7080] = {.lex_state = 136}, - [7081] = {.lex_state = 136}, - [7082] = {.lex_state = 136}, - [7083] = {.lex_state = 136}, - [7084] = {.lex_state = 136}, - [7085] = {.lex_state = 1723}, - [7086] = {.lex_state = 136}, - [7087] = {.lex_state = 136}, - [7088] = {.lex_state = 287}, - [7089] = {.lex_state = 136}, - [7090] = {.lex_state = 412}, - [7091] = {.lex_state = 136}, - [7092] = {.lex_state = 136}, - [7093] = {.lex_state = 136}, - [7094] = {.lex_state = 136}, - [7095] = {.lex_state = 136}, - [7096] = {.lex_state = 136}, - [7097] = {.lex_state = 136}, - [7098] = {.lex_state = 14}, - [7099] = {.lex_state = 136}, - [7100] = {.lex_state = 136}, - [7101] = {.lex_state = 136}, - [7102] = {.lex_state = 1723}, - [7103] = {.lex_state = 136}, - [7104] = {.lex_state = 136}, - [7105] = {.lex_state = 1723}, - [7106] = {.lex_state = 136}, - [7107] = {.lex_state = 136}, - [7108] = {.lex_state = 136}, - [7109] = {.lex_state = 136}, - [7110] = {.lex_state = 136}, - [7111] = {.lex_state = 136}, - [7112] = {.lex_state = 136}, - [7113] = {.lex_state = 136}, - [7114] = {.lex_state = 136}, - [7115] = {.lex_state = 390}, - [7116] = {.lex_state = 1723}, - [7117] = {.lex_state = 136}, - [7118] = {.lex_state = 136}, - [7119] = {.lex_state = 136}, - [7120] = {.lex_state = 136}, - [7121] = {.lex_state = 136}, - [7122] = {.lex_state = 1723}, - [7123] = {.lex_state = 136}, - [7124] = {.lex_state = 1723}, - [7125] = {.lex_state = 136}, - [7126] = {.lex_state = 136}, - [7127] = {.lex_state = 1723}, - [7128] = {.lex_state = 136}, - [7129] = {.lex_state = 1723}, - [7130] = {.lex_state = 1723}, - [7131] = {.lex_state = 1723}, - [7132] = {.lex_state = 1723}, - [7133] = {.lex_state = 338}, - [7134] = {.lex_state = 1723}, - [7135] = {.lex_state = 1723}, - [7136] = {.lex_state = 1723}, - [7137] = {.lex_state = 1723}, - [7138] = {.lex_state = 136}, - [7139] = {.lex_state = 136}, - [7140] = {.lex_state = 1723}, - [7141] = {.lex_state = 1723}, - [7142] = {.lex_state = 136}, - [7143] = {.lex_state = 1723}, - [7144] = {.lex_state = 1723}, - [7145] = {.lex_state = 338}, - [7146] = {.lex_state = 1723}, - [7147] = {.lex_state = 136}, - [7148] = {.lex_state = 136}, - [7149] = {.lex_state = 136}, - [7150] = {.lex_state = 1723}, - [7151] = {.lex_state = 335}, - [7152] = {.lex_state = 14}, - [7153] = {.lex_state = 405}, - [7154] = {.lex_state = 233}, - [7155] = {.lex_state = 85}, - [7156] = {.lex_state = 1723}, - [7157] = {.lex_state = 136}, - [7158] = {.lex_state = 1723}, - [7159] = {.lex_state = 335}, - [7160] = {.lex_state = 136}, - [7161] = {.lex_state = 390}, - [7162] = {.lex_state = 233}, - [7163] = {.lex_state = 390}, - [7164] = {.lex_state = 136}, - [7165] = {.lex_state = 1723}, - [7166] = {.lex_state = 136}, - [7167] = {.lex_state = 136}, - [7168] = {.lex_state = 136}, - [7169] = {.lex_state = 1723}, - [7170] = {.lex_state = 136}, - [7171] = {.lex_state = 136}, - [7172] = {.lex_state = 1723}, - [7173] = {.lex_state = 136}, - [7174] = {.lex_state = 1723}, - [7175] = {.lex_state = 1723}, - [7176] = {.lex_state = 136}, - [7177] = {.lex_state = 136}, - [7178] = {.lex_state = 1723}, - [7179] = {.lex_state = 1723}, - [7180] = {.lex_state = 136}, - [7181] = {.lex_state = 1723}, - [7182] = {.lex_state = 136}, - [7183] = {.lex_state = 136}, - [7184] = {.lex_state = 136}, - [7185] = {.lex_state = 1723}, - [7186] = {.lex_state = 136}, - [7187] = {.lex_state = 136}, - [7188] = {.lex_state = 136}, - [7189] = {.lex_state = 1723}, - [7190] = {.lex_state = 1723}, - [7191] = {.lex_state = 1723}, - [7192] = {.lex_state = 136}, - [7193] = {.lex_state = 1723}, - [7194] = {.lex_state = 1723}, - [7195] = {.lex_state = 1723}, - [7196] = {.lex_state = 233}, - [7197] = {.lex_state = 390}, - [7198] = {.lex_state = 308}, - [7199] = {.lex_state = 404}, - [7200] = {.lex_state = 405}, - [7201] = {.lex_state = 331}, - [7202] = {.lex_state = 208}, - [7203] = {.lex_state = 1723}, - [7204] = {.lex_state = 136}, - [7205] = {.lex_state = 404}, - [7206] = {.lex_state = 208}, - [7207] = {.lex_state = 412}, - [7208] = {.lex_state = 2}, - [7209] = {.lex_state = 2}, - [7210] = {.lex_state = 390}, - [7211] = {.lex_state = 338}, - [7212] = {.lex_state = 2}, - [7213] = {.lex_state = 1723}, - [7214] = {.lex_state = 136}, - [7215] = {.lex_state = 208}, - [7216] = {.lex_state = 136}, - [7217] = {.lex_state = 136}, - [7218] = {.lex_state = 136}, - [7219] = {.lex_state = 1723}, - [7220] = {.lex_state = 208}, - [7221] = {.lex_state = 136}, - [7222] = {.lex_state = 85}, - [7223] = {.lex_state = 1723}, - [7224] = {.lex_state = 136}, - [7225] = {.lex_state = 390}, - [7226] = {.lex_state = 1723}, - [7227] = {.lex_state = 136}, - [7228] = {.lex_state = 338}, - [7229] = {.lex_state = 1723}, - [7230] = {.lex_state = 1723}, - [7231] = {.lex_state = 158}, - [7232] = {.lex_state = 1723}, - [7233] = {.lex_state = 1723}, - [7234] = {.lex_state = 1723}, - [7235] = {.lex_state = 158}, - [7236] = {.lex_state = 136}, - [7237] = {.lex_state = 136}, - [7238] = {.lex_state = 1722}, - [7239] = {.lex_state = 1723}, - [7240] = {.lex_state = 136}, - [7241] = {.lex_state = 136}, - [7242] = {.lex_state = 85}, - [7243] = {.lex_state = 136}, - [7244] = {.lex_state = 136}, - [7245] = {.lex_state = 1723}, - [7246] = {.lex_state = 1723}, - [7247] = {.lex_state = 136}, - [7248] = {.lex_state = 1723}, - [7249] = {.lex_state = 1723}, - [7250] = {.lex_state = 136}, - [7251] = {.lex_state = 405}, - [7252] = {.lex_state = 1723}, - [7253] = {.lex_state = 136}, - [7254] = {.lex_state = 136}, - [7255] = {.lex_state = 1723}, - [7256] = {.lex_state = 1723}, - [7257] = {.lex_state = 287}, - [7258] = {.lex_state = 338}, - [7259] = {.lex_state = 136}, - [7260] = {.lex_state = 136}, - [7261] = {.lex_state = 1723}, - [7262] = {.lex_state = 136}, - [7263] = {.lex_state = 1723}, - [7264] = {.lex_state = 338}, - [7265] = {.lex_state = 208}, - [7266] = {.lex_state = 412}, - [7267] = {.lex_state = 1723}, - [7268] = {.lex_state = 208}, - [7269] = {.lex_state = 136}, - [7270] = {.lex_state = 136}, - [7271] = {.lex_state = 136}, - [7272] = {.lex_state = 1723}, - [7273] = {.lex_state = 84}, - [7274] = {.lex_state = 1723}, - [7275] = {.lex_state = 1723}, - [7276] = {.lex_state = 208}, - [7277] = {.lex_state = 1723}, - [7278] = {.lex_state = 1722}, - [7279] = {.lex_state = 1723}, - [7280] = {.lex_state = 136}, - [7281] = {.lex_state = 14}, - [7282] = {.lex_state = 1723}, - [7283] = {.lex_state = 1701}, - [7284] = {.lex_state = 136}, - [7285] = {.lex_state = 1723}, - [7286] = {.lex_state = 136}, - [7287] = {.lex_state = 136}, - [7288] = {.lex_state = 136}, - [7289] = {.lex_state = 136}, - [7290] = {.lex_state = 136}, - [7291] = {.lex_state = 136}, - [7292] = {.lex_state = 1723}, - [7293] = {.lex_state = 85}, - [7294] = {.lex_state = 136}, - [7295] = {.lex_state = 1719}, - [7296] = {.lex_state = 136}, - [7297] = {.lex_state = 1723}, - [7298] = {.lex_state = 208}, - [7299] = {.lex_state = 1723}, - [7300] = {.lex_state = 136}, - [7301] = {.lex_state = 208}, - [7302] = {.lex_state = 1723}, - [7303] = {.lex_state = 1723}, - [7304] = {.lex_state = 1723}, - [7305] = {.lex_state = 1723}, - [7306] = {.lex_state = 1723}, - [7307] = {.lex_state = 1723}, - [7308] = {.lex_state = 1723}, - [7309] = {.lex_state = 390}, - [7310] = {.lex_state = 208}, - [7311] = {.lex_state = 136}, - [7312] = {.lex_state = 208}, - [7313] = {.lex_state = 136}, - [7314] = {.lex_state = 1723}, - [7315] = {.lex_state = 1723}, - [7316] = {.lex_state = 1723}, - [7317] = {.lex_state = 1723}, - [7318] = {.lex_state = 1723}, - [7319] = {.lex_state = 208}, - [7320] = {.lex_state = 208}, - [7321] = {.lex_state = 289}, - [7322] = {.lex_state = 136}, - [7323] = {.lex_state = 1723}, - [7324] = {.lex_state = 1723}, - [7325] = {.lex_state = 1723}, - [7326] = {.lex_state = 1723}, - [7327] = {.lex_state = 1723}, - [7328] = {.lex_state = 208}, - [7329] = {.lex_state = 1723}, - [7330] = {.lex_state = 136}, - [7331] = {.lex_state = 208}, - [7332] = {.lex_state = 2}, - [7333] = {.lex_state = 1723}, - [7334] = {.lex_state = 1723}, - [7335] = {.lex_state = 1723}, - [7336] = {.lex_state = 1723}, - [7337] = {.lex_state = 208}, - [7338] = {.lex_state = 1723}, - [7339] = {.lex_state = 136}, - [7340] = {.lex_state = 208}, - [7341] = {.lex_state = 1723}, - [7342] = {.lex_state = 1723}, - [7343] = {.lex_state = 1723}, - [7344] = {.lex_state = 1723}, - [7345] = {.lex_state = 208}, - [7346] = {.lex_state = 1723}, - [7347] = {.lex_state = 208}, - [7348] = {.lex_state = 402}, - [7349] = {.lex_state = 1722}, - [7350] = {.lex_state = 1723}, - [7351] = {.lex_state = 1723}, - [7352] = {.lex_state = 1723}, - [7353] = {.lex_state = 1723}, - [7354] = {.lex_state = 208}, - [7355] = {.lex_state = 208}, - [7356] = {.lex_state = 1723}, - [7357] = {.lex_state = 1723}, - [7358] = {.lex_state = 404}, - [7359] = {.lex_state = 1723}, - [7360] = {.lex_state = 1723}, - [7361] = {.lex_state = 208}, - [7362] = {.lex_state = 136}, - [7363] = {.lex_state = 208}, - [7364] = {.lex_state = 1723}, - [7365] = {.lex_state = 1723}, - [7366] = {.lex_state = 1723}, - [7367] = {.lex_state = 1723}, - [7368] = {.lex_state = 208}, - [7369] = {.lex_state = 136}, - [7370] = {.lex_state = 208}, - [7371] = {.lex_state = 1722}, - [7372] = {.lex_state = 1723}, - [7373] = {.lex_state = 1723}, - [7374] = {.lex_state = 1723}, - [7375] = {.lex_state = 1723}, - [7376] = {.lex_state = 1723}, - [7377] = {.lex_state = 208}, - [7378] = {.lex_state = 208}, - [7379] = {.lex_state = 1723}, - [7380] = {.lex_state = 1723}, - [7381] = {.lex_state = 1723}, - [7382] = {.lex_state = 1723}, - [7383] = {.lex_state = 1723}, - [7384] = {.lex_state = 208}, - [7385] = {.lex_state = 1723}, - [7386] = {.lex_state = 208}, - [7387] = {.lex_state = 408}, - [7388] = {.lex_state = 1723}, - [7389] = {.lex_state = 1723}, - [7390] = {.lex_state = 1723}, - [7391] = {.lex_state = 1723}, - [7392] = {.lex_state = 208}, - [7393] = {.lex_state = 208}, - [7394] = {.lex_state = 1723}, - [7395] = {.lex_state = 1723}, - [7396] = {.lex_state = 136}, - [7397] = {.lex_state = 1723}, - [7398] = {.lex_state = 1723}, - [7399] = {.lex_state = 208}, - [7400] = {.lex_state = 208}, - [7401] = {.lex_state = 136}, - [7402] = {.lex_state = 1723}, - [7403] = {.lex_state = 1723}, - [7404] = {.lex_state = 1723}, - [7405] = {.lex_state = 1723}, - [7406] = {.lex_state = 208}, - [7407] = {.lex_state = 208}, - [7408] = {.lex_state = 1723}, - [7409] = {.lex_state = 1723}, - [7410] = {.lex_state = 1723}, - [7411] = {.lex_state = 1723}, - [7412] = {.lex_state = 208}, - [7413] = {.lex_state = 208}, - [7414] = {.lex_state = 136}, - [7415] = {.lex_state = 1723}, - [7416] = {.lex_state = 1723}, - [7417] = {.lex_state = 1723}, - [7418] = {.lex_state = 1723}, - [7419] = {.lex_state = 208}, - [7420] = {.lex_state = 208}, - [7421] = {.lex_state = 1723}, - [7422] = {.lex_state = 1723}, - [7423] = {.lex_state = 1723}, - [7424] = {.lex_state = 1723}, - [7425] = {.lex_state = 136}, - [7426] = {.lex_state = 2}, - [7427] = {.lex_state = 1723}, - [7428] = {.lex_state = 411}, - [7429] = {.lex_state = 338}, - [7430] = {.lex_state = 1723}, - [7431] = {.lex_state = 1723}, - [7432] = {.lex_state = 136}, - [7433] = {.lex_state = 136}, - [7434] = {.lex_state = 136}, - [7435] = {.lex_state = 136}, - [7436] = {.lex_state = 136}, - [7437] = {.lex_state = 136}, - [7438] = {.lex_state = 384}, - [7439] = {.lex_state = 405}, - [7440] = {.lex_state = 338}, - [7441] = {.lex_state = 1723}, - [7442] = {.lex_state = 1723}, - [7443] = {.lex_state = 1723}, - [7444] = {.lex_state = 1723}, - [7445] = {.lex_state = 136}, - [7446] = {.lex_state = 85}, - [7447] = {.lex_state = 40}, - [7448] = {.lex_state = 136}, - [7449] = {.lex_state = 136}, - [7450] = {.lex_state = 404}, - [7451] = {.lex_state = 404}, - [7452] = {.lex_state = 1723}, - [7453] = {.lex_state = 2}, - [7454] = {.lex_state = 1723}, - [7455] = {.lex_state = 233}, - [7456] = {.lex_state = 14}, - [7457] = {.lex_state = 5535}, - [7458] = {.lex_state = 5535}, - [7459] = {.lex_state = 1723}, - [7460] = {.lex_state = 1723}, - [7461] = {.lex_state = 136}, - [7462] = {.lex_state = 1723}, - [7463] = {.lex_state = 1723}, - [7464] = {.lex_state = 136}, - [7465] = {.lex_state = 5535}, - [7466] = {.lex_state = 5535}, - [7467] = {.lex_state = 1723}, - [7468] = {.lex_state = 1724}, - [7469] = {.lex_state = 1723}, - [7470] = {.lex_state = 1723}, - [7471] = {.lex_state = 136}, - [7472] = {.lex_state = 136}, - [7473] = {.lex_state = 136}, - [7474] = {.lex_state = 5537}, - [7475] = {.lex_state = 5539}, - [7476] = {.lex_state = 136}, - [7477] = {.lex_state = 5539}, - [7478] = {.lex_state = 5537}, - [7479] = {.lex_state = 1723}, - [7480] = {.lex_state = 1723}, - [7481] = {.lex_state = 1723}, - [7482] = {.lex_state = 5539}, - [7483] = {.lex_state = 5539}, - [7484] = {.lex_state = 5539}, - [7485] = {.lex_state = 1723}, - [7486] = {.lex_state = 1723}, - [7487] = {.lex_state = 1723}, - [7488] = {.lex_state = 136}, - [7489] = {.lex_state = 1723}, - [7490] = {.lex_state = 5535}, - [7491] = {.lex_state = 136}, - [7492] = {.lex_state = 5535}, - [7493] = {.lex_state = 1723}, - [7494] = {.lex_state = 1723}, - [7495] = {.lex_state = 1723}, - [7496] = {.lex_state = 1723}, - [7497] = {.lex_state = 405}, - [7498] = {.lex_state = 1723}, - [7499] = {.lex_state = 1723}, - [7500] = {.lex_state = 1723}, - [7501] = {.lex_state = 1723}, - [7502] = {.lex_state = 1723}, - [7503] = {.lex_state = 136}, - [7504] = {.lex_state = 1723}, - [7505] = {.lex_state = 136}, - [7506] = {.lex_state = 136}, - [7507] = {.lex_state = 136}, - [7508] = {.lex_state = 136}, - [7509] = {.lex_state = 5539}, - [7510] = {.lex_state = 136}, - [7511] = {.lex_state = 5539}, - [7512] = {.lex_state = 1723}, - [7513] = {.lex_state = 5535}, - [7514] = {.lex_state = 1723}, - [7515] = {.lex_state = 335}, - [7516] = {.lex_state = 335}, - [7517] = {.lex_state = 38}, - [7518] = {.lex_state = 1723}, - [7519] = {.lex_state = 5537}, - [7520] = {.lex_state = 1723}, - [7521] = {.lex_state = 1723}, - [7522] = {.lex_state = 5537}, - [7523] = {.lex_state = 136}, - [7524] = {.lex_state = 5535}, - [7525] = {.lex_state = 33}, - [7526] = {.lex_state = 136}, - [7527] = {.lex_state = 1723}, - [7528] = {.lex_state = 134}, - [7529] = {.lex_state = 409}, - [7530] = {.lex_state = 5535}, - [7531] = {.lex_state = 392}, - [7532] = {.lex_state = 1723}, - [7533] = {.lex_state = 14}, - [7534] = {.lex_state = 136}, - [7535] = {.lex_state = 5537}, - [7536] = {.lex_state = 405}, - [7537] = {.lex_state = 405}, - [7538] = {.lex_state = 134}, - [7539] = {.lex_state = 1723}, - [7540] = {.lex_state = 1723}, - [7541] = {.lex_state = 136}, - [7542] = {.lex_state = 1676}, - [7543] = {.lex_state = 405}, - [7544] = {.lex_state = 5535}, - [7545] = {.lex_state = 1723}, - [7546] = {.lex_state = 1723}, - [7547] = {.lex_state = 409}, - [7548] = {.lex_state = 134}, - [7549] = {.lex_state = 1793}, - [7550] = {.lex_state = 136}, - [7551] = {.lex_state = 1723}, - [7552] = {.lex_state = 1723}, - [7553] = {.lex_state = 136}, - [7554] = {.lex_state = 5535}, - [7555] = {.lex_state = 1723}, - [7556] = {.lex_state = 335}, - [7557] = {.lex_state = 1723}, - [7558] = {.lex_state = 136}, - [7559] = {.lex_state = 1723}, - [7560] = {.lex_state = 1723}, - [7561] = {.lex_state = 1723}, - [7562] = {.lex_state = 409}, - [7563] = {.lex_state = 409}, - [7564] = {.lex_state = 1723}, - [7565] = {.lex_state = 136}, - [7566] = {.lex_state = 1723}, - [7567] = {.lex_state = 1723}, - [7568] = {.lex_state = 134}, - [7569] = {.lex_state = 5537}, - [7570] = {.lex_state = 5537}, - [7571] = {.lex_state = 136}, - [7572] = {.lex_state = 1723}, - [7573] = {.lex_state = 1723}, - [7574] = {.lex_state = 1723}, - [7575] = {.lex_state = 1723}, - [7576] = {.lex_state = 1723}, - [7577] = {.lex_state = 5535}, - [7578] = {.lex_state = 5535}, - [7579] = {.lex_state = 1723}, - [7580] = {.lex_state = 1724}, - [7581] = {.lex_state = 338}, - [7582] = {.lex_state = 1723}, - [7583] = {.lex_state = 335}, - [7584] = {.lex_state = 5535}, - [7585] = {.lex_state = 5535}, - [7586] = {.lex_state = 1723}, - [7587] = {.lex_state = 1723}, - [7588] = {.lex_state = 136}, - [7589] = {.lex_state = 136}, - [7590] = {.lex_state = 134}, - [7591] = {.lex_state = 136}, - [7592] = {.lex_state = 5535}, - [7593] = {.lex_state = 1793}, - [7594] = {.lex_state = 134}, - [7595] = {.lex_state = 5535}, - [7596] = {.lex_state = 335}, - [7597] = {.lex_state = 1723}, - [7598] = {.lex_state = 335}, - [7599] = {.lex_state = 136}, - [7600] = {.lex_state = 1723}, - [7601] = {.lex_state = 1723}, - [7602] = {.lex_state = 136}, - [7603] = {.lex_state = 1723}, - [7604] = {.lex_state = 1723}, - [7605] = {.lex_state = 136}, - [7606] = {.lex_state = 136}, - [7607] = {.lex_state = 136}, - [7608] = {.lex_state = 5537}, - [7609] = {.lex_state = 402}, - [7610] = {.lex_state = 1724}, - [7611] = {.lex_state = 1723}, - [7612] = {.lex_state = 1723}, - [7613] = {.lex_state = 1723}, - [7614] = {.lex_state = 1723}, - [7615] = {.lex_state = 136}, - [7616] = {.lex_state = 134}, - [7617] = {.lex_state = 1723}, - [7618] = {.lex_state = 136}, - [7619] = {.lex_state = 1723}, - [7620] = {.lex_state = 1723}, - [7621] = {.lex_state = 1723}, - [7622] = {.lex_state = 5535}, - [7623] = {.lex_state = 1723}, - [7624] = {.lex_state = 5535}, - [7625] = {.lex_state = 134}, - [7626] = {.lex_state = 1723}, - [7627] = {.lex_state = 5539}, - [7628] = {.lex_state = 5539}, - [7629] = {.lex_state = 14}, - [7630] = {.lex_state = 134}, - [7631] = {.lex_state = 134}, - [7632] = {.lex_state = 1723}, - [7633] = {.lex_state = 136}, - [7634] = {.lex_state = 134}, - [7635] = {.lex_state = 1723}, - [7636] = {.lex_state = 134}, - [7637] = {.lex_state = 5539}, - [7638] = {.lex_state = 1723}, - [7639] = {.lex_state = 136}, - [7640] = {.lex_state = 1723}, - [7641] = {.lex_state = 136}, - [7642] = {.lex_state = 136}, - [7643] = {.lex_state = 1723}, - [7644] = {.lex_state = 136}, - [7645] = {.lex_state = 411}, - [7646] = {.lex_state = 1723}, - [7647] = {.lex_state = 1723}, - [7648] = {.lex_state = 1723}, - [7649] = {.lex_state = 1723}, - [7650] = {.lex_state = 136}, - [7651] = {.lex_state = 1723}, - [7652] = {.lex_state = 5535}, - [7653] = {.lex_state = 1723}, - [7654] = {.lex_state = 1723}, - [7655] = {.lex_state = 1723}, - [7656] = {.lex_state = 5539}, - [7657] = {.lex_state = 405}, - [7658] = {.lex_state = 136}, - [7659] = {.lex_state = 1723}, - [7660] = {.lex_state = 1723}, - [7661] = {.lex_state = 1723}, - [7662] = {.lex_state = 405}, - [7663] = {.lex_state = 1719}, - [7664] = {.lex_state = 136}, - [7665] = {.lex_state = 335}, - [7666] = {.lex_state = 1723}, - [7667] = {.lex_state = 1723}, - [7668] = {.lex_state = 136}, - [7669] = {.lex_state = 1723}, - [7670] = {.lex_state = 1723}, - [7671] = {.lex_state = 5535}, - [7672] = {.lex_state = 5537}, - [7673] = {.lex_state = 1723}, - [7674] = {.lex_state = 1723}, - [7675] = {.lex_state = 5535}, - [7676] = {.lex_state = 1723}, - [7677] = {.lex_state = 5535}, - [7678] = {.lex_state = 38}, - [7679] = {.lex_state = 5535}, - [7680] = {.lex_state = 1723}, - [7681] = {.lex_state = 134}, - [7682] = {.lex_state = 5535}, - [7683] = {.lex_state = 5535}, - [7684] = {.lex_state = 1723}, - [7685] = {.lex_state = 136}, - [7686] = {.lex_state = 5539}, - [7687] = {.lex_state = 5539}, - [7688] = {.lex_state = 1723}, - [7689] = {.lex_state = 5535}, - [7690] = {.lex_state = 136}, - [7691] = {.lex_state = 1723}, - [7692] = {.lex_state = 1723}, - [7693] = {.lex_state = 1723}, - [7694] = {.lex_state = 1723}, - [7695] = {.lex_state = 1723}, - [7696] = {.lex_state = 134}, - [7697] = {.lex_state = 1723}, - [7698] = {.lex_state = 1723}, - [7699] = {.lex_state = 136}, - [7700] = {.lex_state = 136}, - [7701] = {.lex_state = 136}, - [7702] = {.lex_state = 409}, - [7703] = {.lex_state = 335}, - [7704] = {.lex_state = 1701}, - [7705] = {.lex_state = 335}, - [7706] = {.lex_state = 4158}, - [7707] = {.lex_state = 1723}, - [7708] = {.lex_state = 335}, - [7709] = {.lex_state = 134}, - [7710] = {.lex_state = 5535}, - [7711] = {.lex_state = 5535}, - [7712] = {.lex_state = 1724}, - [7713] = {.lex_state = 1723}, - [7714] = {.lex_state = 1723, .external_lex_state = 3}, - [7715] = {.lex_state = 1719}, - [7716] = {.lex_state = 1723}, - [7717] = {.lex_state = 1723}, - [7718] = {.lex_state = 1723}, - [7719] = {.lex_state = 1723}, - [7720] = {.lex_state = 1723}, - [7721] = {.lex_state = 1723}, - [7722] = {.lex_state = 2}, - [7723] = {.lex_state = 1723}, - [7724] = {.lex_state = 2}, - [7725] = {.lex_state = 1723, .external_lex_state = 3}, - [7726] = {.lex_state = 1723}, - [7727] = {.lex_state = 1723}, - [7728] = {.lex_state = 1719}, - [7729] = {.lex_state = 1723}, - [7730] = {.lex_state = 1723}, - [7731] = {.lex_state = 1723, .external_lex_state = 3}, - [7732] = {.lex_state = 1723}, - [7733] = {.lex_state = 1723}, - [7734] = {.lex_state = 1723, .external_lex_state = 3}, - [7735] = {.lex_state = 1723}, - [7736] = {.lex_state = 3188}, - [7737] = {.lex_state = 3188}, - [7738] = {.lex_state = 1723}, - [7739] = {.lex_state = 1723}, - [7740] = {.lex_state = 1723, .external_lex_state = 3}, - [7741] = {.lex_state = 1719}, - [7742] = {.lex_state = 1723}, - [7743] = {.lex_state = 1723}, - [7744] = {.lex_state = 33}, - [7745] = {.lex_state = 229}, - [7746] = {.lex_state = 1723}, - [7747] = {.lex_state = 335}, - [7748] = {.lex_state = 5537}, - [7749] = {.lex_state = 1719}, - [7750] = {.lex_state = 2}, - [7751] = {.lex_state = 1723}, - [7752] = {.lex_state = 1723}, - [7753] = {.lex_state = 1723, .external_lex_state = 3}, - [7754] = {.lex_state = 1723}, - [7755] = {.lex_state = 1723}, - [7756] = {.lex_state = 1723}, - [7757] = {.lex_state = 229}, - [7758] = {.lex_state = 36}, - [7759] = {.lex_state = 405}, - [7760] = {.lex_state = 1723, .external_lex_state = 3}, - [7761] = {.lex_state = 1723, .external_lex_state = 3}, - [7762] = {.lex_state = 1723, .external_lex_state = 3}, - [7763] = {.lex_state = 1723, .external_lex_state = 3}, - [7764] = {.lex_state = 1723}, - [7765] = {.lex_state = 1723}, - [7766] = {.lex_state = 1723}, - [7767] = {.lex_state = 335}, - [7768] = {.lex_state = 405}, - [7769] = {.lex_state = 1723, .external_lex_state = 3}, - [7770] = {.lex_state = 1723}, - [7771] = {.lex_state = 335}, - [7772] = {.lex_state = 1723}, - [7773] = {.lex_state = 1723}, - [7774] = {.lex_state = 1723}, - [7775] = {.lex_state = 1723}, - [7776] = {.lex_state = 1723}, - [7777] = {.lex_state = 1723}, - [7778] = {.lex_state = 1723}, - [7779] = {.lex_state = 1723}, - [7780] = {.lex_state = 1723}, - [7781] = {.lex_state = 229}, - [7782] = {.lex_state = 1723, .external_lex_state = 3}, - [7783] = {.lex_state = 1723}, - [7784] = {.lex_state = 1723}, - [7785] = {.lex_state = 335}, - [7786] = {.lex_state = 1723}, - [7787] = {.lex_state = 1723}, - [7788] = {.lex_state = 1723}, - [7789] = {.lex_state = 1723}, - [7790] = {.lex_state = 1723}, - [7791] = {.lex_state = 1723}, - [7792] = {.lex_state = 3188}, - [7793] = {.lex_state = 405}, - [7794] = {.lex_state = 1723}, - [7795] = {.lex_state = 1723, .external_lex_state = 3}, - [7796] = {.lex_state = 1723}, - [7797] = {.lex_state = 1723}, - [7798] = {.lex_state = 1719}, - [7799] = {.lex_state = 1723}, - [7800] = {.lex_state = 1723}, - [7801] = {.lex_state = 1723}, - [7802] = {.lex_state = 1723, .external_lex_state = 3}, - [7803] = {.lex_state = 1723}, - [7804] = {.lex_state = 1723, .external_lex_state = 4}, - [7805] = {.lex_state = 335}, - [7806] = {.lex_state = 1723, .external_lex_state = 3}, - [7807] = {.lex_state = 2}, - [7808] = {.lex_state = 1723}, - [7809] = {.lex_state = 1723}, - [7810] = {.lex_state = 1723}, - [7811] = {.lex_state = 1723}, - [7812] = {.lex_state = 2}, - [7813] = {.lex_state = 1723, .external_lex_state = 3}, - [7814] = {.lex_state = 1807}, - [7815] = {.lex_state = 1723}, - [7816] = {.lex_state = 405}, - [7817] = {.lex_state = 1723}, - [7818] = {.lex_state = 411}, - [7819] = {.lex_state = 1723, .external_lex_state = 3}, - [7820] = {.lex_state = 5539}, - [7821] = {.lex_state = 1723}, - [7822] = {.lex_state = 1723}, - [7823] = {.lex_state = 1723, .external_lex_state = 3}, - [7824] = {.lex_state = 1723, .external_lex_state = 3}, - [7825] = {.lex_state = 399}, - [7826] = {.lex_state = 1723, .external_lex_state = 3}, - [7827] = {.lex_state = 399}, - [7828] = {.lex_state = 1723}, - [7829] = {.lex_state = 1723}, - [7830] = {.lex_state = 3188}, - [7831] = {.lex_state = 1723}, - [7832] = {.lex_state = 1723}, - [7833] = {.lex_state = 335}, - [7834] = {.lex_state = 1723}, - [7835] = {.lex_state = 33}, - [7836] = {.lex_state = 1723}, - [7837] = {.lex_state = 1723, .external_lex_state = 3}, - [7838] = {.lex_state = 1723}, - [7839] = {.lex_state = 1719}, - [7840] = {.lex_state = 5537}, - [7841] = {.lex_state = 1723}, - [7842] = {.lex_state = 1723}, - [7843] = {.lex_state = 1723, .external_lex_state = 3}, - [7844] = {.lex_state = 1723}, - [7845] = {.lex_state = 1723, .external_lex_state = 3}, - [7846] = {.lex_state = 1723}, - [7847] = {.lex_state = 1723, .external_lex_state = 3}, - [7848] = {.lex_state = 1723}, - [7849] = {.lex_state = 1723}, - [7850] = {.lex_state = 335}, - [7851] = {.lex_state = 1723}, - [7852] = {.lex_state = 1723, .external_lex_state = 3}, - [7853] = {.lex_state = 1723, .external_lex_state = 3}, - [7854] = {.lex_state = 1723}, - [7855] = {.lex_state = 1723}, - [7856] = {.lex_state = 1723}, - [7857] = {.lex_state = 405}, - [7858] = {.lex_state = 1723, .external_lex_state = 3}, - [7859] = {.lex_state = 1723}, - [7860] = {.lex_state = 1723, .external_lex_state = 3}, - [7861] = {.lex_state = 335}, - [7862] = {.lex_state = 1723}, - [7863] = {.lex_state = 1723}, - [7864] = {.lex_state = 1723}, - [7865] = {.lex_state = 1723, .external_lex_state = 4}, - [7866] = {.lex_state = 1723}, - [7867] = {.lex_state = 1723}, - [7868] = {.lex_state = 2}, - [7869] = {.lex_state = 1723}, - [7870] = {.lex_state = 1723, .external_lex_state = 3}, - [7871] = {.lex_state = 335}, - [7872] = {.lex_state = 405}, - [7873] = {.lex_state = 1723}, - [7874] = {.lex_state = 1723}, - [7875] = {.lex_state = 5539}, - [7876] = {.lex_state = 1723}, - [7877] = {.lex_state = 1723}, - [7878] = {.lex_state = 1723, .external_lex_state = 3}, - [7879] = {.lex_state = 1723}, - [7880] = {.lex_state = 1723}, - [7881] = {.lex_state = 1723, .external_lex_state = 3}, - [7882] = {.lex_state = 1723}, - [7883] = {.lex_state = 1723}, - [7884] = {.lex_state = 335}, - [7885] = {.lex_state = 33}, - [7886] = {.lex_state = 1723}, - [7887] = {.lex_state = 1723, .external_lex_state = 4}, - [7888] = {.lex_state = 1723, .external_lex_state = 3}, - [7889] = {.lex_state = 2}, - [7890] = {.lex_state = 1723}, - [7891] = {.lex_state = 3188}, - [7892] = {.lex_state = 1723}, - [7893] = {.lex_state = 2}, - [7894] = {.lex_state = 1723}, - [7895] = {.lex_state = 1723, .external_lex_state = 3}, - [7896] = {.lex_state = 3188}, - [7897] = {.lex_state = 1723}, - [7898] = {.lex_state = 1723}, - [7899] = {.lex_state = 2}, - [7900] = {.lex_state = 1723}, - [7901] = {.lex_state = 1723, .external_lex_state = 4}, - [7902] = {.lex_state = 2}, - [7903] = {.lex_state = 335}, - [7904] = {.lex_state = 33}, - [7905] = {.lex_state = 1723, .external_lex_state = 3}, - [7906] = {.lex_state = 3188}, - [7907] = {.lex_state = 1723, .external_lex_state = 3}, - [7908] = {.lex_state = 5537}, - [7909] = {.lex_state = 335}, - [7910] = {.lex_state = 2}, - [7911] = {.lex_state = 405}, - [7912] = {.lex_state = 1723, .external_lex_state = 3}, - [7913] = {.lex_state = 1723}, - [7914] = {.lex_state = 1723, .external_lex_state = 3}, - [7915] = {.lex_state = 1723, .external_lex_state = 4}, - [7916] = {.lex_state = 2}, - [7917] = {.lex_state = 1724}, - [7918] = {.lex_state = 1723}, - [7919] = {.lex_state = 1723}, - [7920] = {.lex_state = 405}, - [7921] = {.lex_state = 1723, .external_lex_state = 3}, - [7922] = {.lex_state = 1723}, - [7923] = {.lex_state = 400}, - [7924] = {.lex_state = 1723, .external_lex_state = 3}, - [7925] = {.lex_state = 1723}, - [7926] = {.lex_state = 1723}, - [7927] = {.lex_state = 1723}, - [7928] = {.lex_state = 1723, .external_lex_state = 3}, - [7929] = {.lex_state = 1723, .external_lex_state = 4}, - [7930] = {.lex_state = 2}, - [7931] = {.lex_state = 335}, - [7932] = {.lex_state = 1723}, - [7933] = {.lex_state = 1723}, - [7934] = {.lex_state = 1723}, - [7935] = {.lex_state = 33}, - [7936] = {.lex_state = 1723, .external_lex_state = 4}, - [7937] = {.lex_state = 405}, - [7938] = {.lex_state = 1723}, - [7939] = {.lex_state = 229}, - [7940] = {.lex_state = 1723}, - [7941] = {.lex_state = 10}, - [7942] = {.lex_state = 1723, .external_lex_state = 4}, - [7943] = {.lex_state = 2}, - [7944] = {.lex_state = 335}, - [7945] = {.lex_state = 405}, - [7946] = {.lex_state = 399}, - [7947] = {.lex_state = 1723}, - [7948] = {.lex_state = 1723}, - [7949] = {.lex_state = 1723}, - [7950] = {.lex_state = 3188}, - [7951] = {.lex_state = 1723}, - [7952] = {.lex_state = 14}, - [7953] = {.lex_state = 1723}, - [7954] = {.lex_state = 1719}, - [7955] = {.lex_state = 1723, .external_lex_state = 4}, - [7956] = {.lex_state = 2}, - [7957] = {.lex_state = 1723}, - [7958] = {.lex_state = 1723}, - [7959] = {.lex_state = 1723}, - [7960] = {.lex_state = 1723}, - [7961] = {.lex_state = 1723}, - [7962] = {.lex_state = 2}, - [7963] = {.lex_state = 1723}, - [7964] = {.lex_state = 1723}, - [7965] = {.lex_state = 335}, - [7966] = {.lex_state = 5535}, - [7967] = {.lex_state = 1723}, - [7968] = {.lex_state = 1723, .external_lex_state = 3}, - [7969] = {.lex_state = 2}, - [7970] = {.lex_state = 1723}, - [7971] = {.lex_state = 1723}, - [7972] = {.lex_state = 1723}, - [7973] = {.lex_state = 405}, - [7974] = {.lex_state = 10}, - [7975] = {.lex_state = 1723}, - [7976] = {.lex_state = 400}, - [7977] = {.lex_state = 1723}, - [7978] = {.lex_state = 1723}, - [7979] = {.lex_state = 1723, .external_lex_state = 3}, - [7980] = {.lex_state = 3188}, - [7981] = {.lex_state = 1723, .external_lex_state = 4}, - [7982] = {.lex_state = 2}, - [7983] = {.lex_state = 1723}, - [7984] = {.lex_state = 405}, - [7985] = {.lex_state = 1723}, - [7986] = {.lex_state = 1723}, - [7987] = {.lex_state = 1723}, - [7988] = {.lex_state = 3188}, - [7989] = {.lex_state = 1723, .external_lex_state = 3}, - [7990] = {.lex_state = 1723}, - [7991] = {.lex_state = 1723, .external_lex_state = 3}, - [7992] = {.lex_state = 1723}, - [7993] = {.lex_state = 1723}, - [7994] = {.lex_state = 1723, .external_lex_state = 4}, - [7995] = {.lex_state = 2}, - [7996] = {.lex_state = 1723}, - [7997] = {.lex_state = 5553}, - [7998] = {.lex_state = 1723}, - [7999] = {.lex_state = 5535}, - [8000] = {.lex_state = 2}, - [8001] = {.lex_state = 1723}, - [8002] = {.lex_state = 10}, - [8003] = {.lex_state = 5539}, - [8004] = {.lex_state = 3188}, - [8005] = {.lex_state = 33}, - [8006] = {.lex_state = 1723}, - [8007] = {.lex_state = 1723, .external_lex_state = 4}, - [8008] = {.lex_state = 2}, - [8009] = {.lex_state = 1723}, - [8010] = {.lex_state = 1723}, - [8011] = {.lex_state = 1723}, - [8012] = {.lex_state = 1723}, - [8013] = {.lex_state = 1723}, - [8014] = {.lex_state = 1723}, - [8015] = {.lex_state = 1723, .external_lex_state = 3}, - [8016] = {.lex_state = 1723}, - [8017] = {.lex_state = 4158}, - [8018] = {.lex_state = 1719}, - [8019] = {.lex_state = 1723}, - [8020] = {.lex_state = 1723, .external_lex_state = 4}, - [8021] = {.lex_state = 2}, - [8022] = {.lex_state = 1723}, - [8023] = {.lex_state = 1723}, - [8024] = {.lex_state = 5535}, - [8025] = {.lex_state = 1723}, - [8026] = {.lex_state = 1723}, - [8027] = {.lex_state = 14}, - [8028] = {.lex_state = 134}, - [8029] = {.lex_state = 1723}, - [8030] = {.lex_state = 1723, .external_lex_state = 4}, - [8031] = {.lex_state = 2}, - [8032] = {.lex_state = 2}, - [8033] = {.lex_state = 1723}, - [8034] = {.lex_state = 1723}, - [8035] = {.lex_state = 1723}, - [8036] = {.lex_state = 3188}, - [8037] = {.lex_state = 1723}, - [8038] = {.lex_state = 1723}, - [8039] = {.lex_state = 1723}, - [8040] = {.lex_state = 1723, .external_lex_state = 4}, - [8041] = {.lex_state = 1723, .external_lex_state = 4}, - [8042] = {.lex_state = 400}, - [8043] = {.lex_state = 1723, .external_lex_state = 3}, - [8044] = {.lex_state = 1723, .external_lex_state = 3}, - [8045] = {.lex_state = 1723, .external_lex_state = 3}, - [8046] = {.lex_state = 1723}, - [8047] = {.lex_state = 1723}, - [8048] = {.lex_state = 1723}, - [8049] = {.lex_state = 1723, .external_lex_state = 4}, - [8050] = {.lex_state = 1723}, - [8051] = {.lex_state = 1723}, - [8052] = {.lex_state = 1723}, - [8053] = {.lex_state = 1723}, - [8054] = {.lex_state = 1723}, - [8055] = {.lex_state = 1719}, - [8056] = {.lex_state = 3188}, - [8057] = {.lex_state = 335}, - [8058] = {.lex_state = 1723, .external_lex_state = 4}, - [8059] = {.lex_state = 1723}, - [8060] = {.lex_state = 405}, - [8061] = {.lex_state = 1723}, - [8062] = {.lex_state = 1723}, - [8063] = {.lex_state = 1723}, - [8064] = {.lex_state = 335}, - [8065] = {.lex_state = 1807}, - [8066] = {.lex_state = 1723}, - [8067] = {.lex_state = 1723, .external_lex_state = 4}, - [8068] = {.lex_state = 1723, .external_lex_state = 4}, - [8069] = {.lex_state = 1723, .external_lex_state = 4}, - [8070] = {.lex_state = 1723, .external_lex_state = 4}, - [8071] = {.lex_state = 1723, .external_lex_state = 4}, - [8072] = {.lex_state = 1723, .external_lex_state = 4}, - [8073] = {.lex_state = 1723, .external_lex_state = 4}, - [8074] = {.lex_state = 1723, .external_lex_state = 4}, - [8075] = {.lex_state = 1723, .external_lex_state = 4}, - [8076] = {.lex_state = 1723, .external_lex_state = 4}, - [8077] = {.lex_state = 1723, .external_lex_state = 4}, - [8078] = {.lex_state = 1723, .external_lex_state = 4}, - [8079] = {.lex_state = 1723, .external_lex_state = 4}, - [8080] = {.lex_state = 1723, .external_lex_state = 4}, - [8081] = {.lex_state = 1723, .external_lex_state = 4}, - [8082] = {.lex_state = 1723, .external_lex_state = 4}, - [8083] = {.lex_state = 1723, .external_lex_state = 4}, - [8084] = {.lex_state = 1723, .external_lex_state = 4}, - [8085] = {.lex_state = 1723, .external_lex_state = 4}, - [8086] = {.lex_state = 1723, .external_lex_state = 4}, - [8087] = {.lex_state = 1723, .external_lex_state = 4}, - [8088] = {.lex_state = 1723, .external_lex_state = 4}, - [8089] = {.lex_state = 1723, .external_lex_state = 4}, - [8090] = {.lex_state = 1723, .external_lex_state = 4}, - [8091] = {.lex_state = 1723, .external_lex_state = 4}, - [8092] = {.lex_state = 1723, .external_lex_state = 4}, - [8093] = {.lex_state = 1723, .external_lex_state = 4}, - [8094] = {.lex_state = 1723, .external_lex_state = 4}, - [8095] = {.lex_state = 1723, .external_lex_state = 4}, - [8096] = {.lex_state = 1723, .external_lex_state = 4}, - [8097] = {.lex_state = 1723, .external_lex_state = 4}, - [8098] = {.lex_state = 405}, - [8099] = {.lex_state = 1723, .external_lex_state = 3}, - [8100] = {.lex_state = 134}, - [8101] = {.lex_state = 33}, - [8102] = {.lex_state = 1723}, - [8103] = {.lex_state = 1723}, - [8104] = {.lex_state = 1723}, - [8105] = {.lex_state = 1723}, - [8106] = {.lex_state = 1723}, - [8107] = {.lex_state = 1723}, - [8108] = {.lex_state = 1723}, - [8109] = {.lex_state = 1723}, - [8110] = {.lex_state = 335}, - [8111] = {.lex_state = 1723}, - [8112] = {.lex_state = 1723}, - [8113] = {.lex_state = 1723}, - [8114] = {.lex_state = 1723}, - [8115] = {.lex_state = 10}, - [8116] = {.lex_state = 10}, - [8117] = {.lex_state = 1719}, - [8118] = {.lex_state = 335}, - [8119] = {.lex_state = 3188}, - [8120] = {.lex_state = 10}, - [8121] = {.lex_state = 10}, - [8122] = {.lex_state = 1723}, - [8123] = {.lex_state = 405}, - [8124] = {.lex_state = 1723}, - [8125] = {.lex_state = 1723}, - [8126] = {.lex_state = 1723}, - [8127] = {.lex_state = 1723}, - [8128] = {.lex_state = 33}, - [8129] = {.lex_state = 1723}, - [8130] = {.lex_state = 3188}, - [8131] = {.lex_state = 10}, - [8132] = {.lex_state = 1723}, - [8133] = {.lex_state = 1723, .external_lex_state = 3}, - [8134] = {.lex_state = 36}, - [8135] = {.lex_state = 134}, - [8136] = {.lex_state = 1723}, - [8137] = {.lex_state = 400}, - [8138] = {.lex_state = 1723}, - [8139] = {.lex_state = 1723}, - [8140] = {.lex_state = 1723}, - [8141] = {.lex_state = 1723}, - [8142] = {.lex_state = 1723}, - [8143] = {.lex_state = 1723}, - [8144] = {.lex_state = 1723}, - [8145] = {.lex_state = 1723}, - [8146] = {.lex_state = 1723}, - [8147] = {.lex_state = 1724}, - [8148] = {.lex_state = 1723}, - [8149] = {.lex_state = 3188}, - [8150] = {.lex_state = 1723}, - [8151] = {.lex_state = 1719}, - [8152] = {.lex_state = 1723}, - [8153] = {.lex_state = 1723}, - [8154] = {.lex_state = 1723}, - [8155] = {.lex_state = 3188}, - [8156] = {.lex_state = 1723}, - [8157] = {.lex_state = 3188}, - [8158] = {.lex_state = 289}, - [8159] = {.lex_state = 1723}, - [8160] = {.lex_state = 1723}, - [8161] = {.lex_state = 1723}, - [8162] = {.lex_state = 3188}, - [8163] = {.lex_state = 398}, - [8164] = {.lex_state = 2}, - [8165] = {.lex_state = 397}, - [8166] = {.lex_state = 1719}, - [8167] = {.lex_state = 1723}, - [8168] = {.lex_state = 3188}, - [8169] = {.lex_state = 2}, - [8170] = {.lex_state = 2}, - [8171] = {.lex_state = 1723}, - [8172] = {.lex_state = 1723}, - [8173] = {.lex_state = 1719}, - [8174] = {.lex_state = 1723, .external_lex_state = 4}, - [8175] = {(TSStateId)(-1)}, + [5736] = {.lex_state = 71}, + [5737] = {.lex_state = 71}, + [5738] = {.lex_state = 71}, + [5739] = {.lex_state = 71}, + [5740] = {.lex_state = 71}, + [5741] = {.lex_state = 71}, + [5742] = {.lex_state = 71}, + [5743] = {.lex_state = 383}, + [5744] = {.lex_state = 383}, + [5745] = {.lex_state = 350}, + [5746] = {.lex_state = 1703}, + [5747] = {.lex_state = 86}, + [5748] = {.lex_state = 1703}, + [5749] = {.lex_state = 350}, + [5750] = {.lex_state = 1703}, + [5751] = {.lex_state = 351}, + [5752] = {.lex_state = 350}, + [5753] = {.lex_state = 350}, + [5754] = {.lex_state = 1703}, + [5755] = {.lex_state = 373}, + [5756] = {.lex_state = 1739}, + [5757] = {.lex_state = 1703}, + [5758] = {.lex_state = 1703}, + [5759] = {.lex_state = 375}, + [5760] = {.lex_state = 1703}, + [5761] = {.lex_state = 1703}, + [5762] = {.lex_state = 339}, + [5763] = {.lex_state = 391}, + [5764] = {.lex_state = 1838}, + [5765] = {.lex_state = 1703}, + [5766] = {.lex_state = 1703}, + [5767] = {.lex_state = 1703}, + [5768] = {.lex_state = 1703}, + [5769] = {.lex_state = 1703}, + [5770] = {.lex_state = 1703}, + [5771] = {.lex_state = 1703}, + [5772] = {.lex_state = 1703}, + [5773] = {.lex_state = 1703}, + [5774] = {.lex_state = 1703}, + [5775] = {.lex_state = 1703}, + [5776] = {.lex_state = 1703}, + [5777] = {.lex_state = 392}, + [5778] = {.lex_state = 1703}, + [5779] = {.lex_state = 1703}, + [5780] = {.lex_state = 1703}, + [5781] = {.lex_state = 1703}, + [5782] = {.lex_state = 1703}, + [5783] = {.lex_state = 1703}, + [5784] = {.lex_state = 1703}, + [5785] = {.lex_state = 1703}, + [5786] = {.lex_state = 1703}, + [5787] = {.lex_state = 1703}, + [5788] = {.lex_state = 1703}, + [5789] = {.lex_state = 1703}, + [5790] = {.lex_state = 1703}, + [5791] = {.lex_state = 1703}, + [5792] = {.lex_state = 1703}, + [5793] = {.lex_state = 1703}, + [5794] = {.lex_state = 1703}, + [5795] = {.lex_state = 1703}, + [5796] = {.lex_state = 1703}, + [5797] = {.lex_state = 313}, + [5798] = {.lex_state = 1703}, + [5799] = {.lex_state = 41, .external_lex_state = 2}, + [5800] = {.lex_state = 41, .external_lex_state = 2}, + [5801] = {.lex_state = 1703}, + [5802] = {.lex_state = 41, .external_lex_state = 2}, + [5803] = {.lex_state = 41, .external_lex_state = 2}, + [5804] = {.lex_state = 363}, + [5805] = {.lex_state = 363}, + [5806] = {.lex_state = 71}, + [5807] = {.lex_state = 363}, + [5808] = {.lex_state = 1739}, + [5809] = {.lex_state = 376}, + [5810] = {.lex_state = 346}, + [5811] = {.lex_state = 363}, + [5812] = {.lex_state = 86}, + [5813] = {.lex_state = 1703}, + [5814] = {.lex_state = 1703}, + [5815] = {.lex_state = 1807}, + [5816] = {.lex_state = 285, .external_lex_state = 2}, + [5817] = {.lex_state = 283, .external_lex_state = 2}, + [5818] = {.lex_state = 283, .external_lex_state = 2}, + [5819] = {.lex_state = 10}, + [5820] = {.lex_state = 1739}, + [5821] = {.lex_state = 1739}, + [5822] = {.lex_state = 347}, + [5823] = {.lex_state = 325}, + [5824] = {.lex_state = 1807}, + [5825] = {.lex_state = 1737}, + [5826] = {.lex_state = 283, .external_lex_state = 2}, + [5827] = {.lex_state = 384}, + [5828] = {.lex_state = 325}, + [5829] = {.lex_state = 1737}, + [5830] = {.lex_state = 1737}, + [5831] = {.lex_state = 352}, + [5832] = {.lex_state = 283, .external_lex_state = 2}, + [5833] = {.lex_state = 1737}, + [5834] = {.lex_state = 325}, + [5835] = {.lex_state = 386}, + [5836] = {.lex_state = 352}, + [5837] = {.lex_state = 370}, + [5838] = {.lex_state = 370}, + [5839] = {.lex_state = 283, .external_lex_state = 2}, + [5840] = {.lex_state = 283, .external_lex_state = 2}, + [5841] = {.lex_state = 283, .external_lex_state = 2}, + [5842] = {.lex_state = 1737}, + [5843] = {.lex_state = 41}, + [5844] = {.lex_state = 283, .external_lex_state = 2}, + [5845] = {.lex_state = 87}, + [5846] = {.lex_state = 283, .external_lex_state = 2}, + [5847] = {.lex_state = 283, .external_lex_state = 2}, + [5848] = {.lex_state = 283, .external_lex_state = 2}, + [5849] = {.lex_state = 1739}, + [5850] = {.lex_state = 1737}, + [5851] = {.lex_state = 87}, + [5852] = {.lex_state = 1839}, + [5853] = {.lex_state = 283, .external_lex_state = 2}, + [5854] = {.lex_state = 283, .external_lex_state = 2}, + [5855] = {.lex_state = 283, .external_lex_state = 2}, + [5856] = {.lex_state = 283, .external_lex_state = 2}, + [5857] = {.lex_state = 1807}, + [5858] = {.lex_state = 1807}, + [5859] = {.lex_state = 283, .external_lex_state = 2}, + [5860] = {.lex_state = 283, .external_lex_state = 2}, + [5861] = {.lex_state = 283, .external_lex_state = 2}, + [5862] = {.lex_state = 283, .external_lex_state = 2}, + [5863] = {.lex_state = 283, .external_lex_state = 2}, + [5864] = {.lex_state = 283, .external_lex_state = 2}, + [5865] = {.lex_state = 283, .external_lex_state = 2}, + [5866] = {.lex_state = 283, .external_lex_state = 2}, + [5867] = {.lex_state = 283, .external_lex_state = 2}, + [5868] = {.lex_state = 283, .external_lex_state = 2}, + [5869] = {.lex_state = 283, .external_lex_state = 2}, + [5870] = {.lex_state = 283, .external_lex_state = 2}, + [5871] = {.lex_state = 283, .external_lex_state = 2}, + [5872] = {.lex_state = 283, .external_lex_state = 2}, + [5873] = {.lex_state = 283, .external_lex_state = 2}, + [5874] = {.lex_state = 283, .external_lex_state = 2}, + [5875] = {.lex_state = 283, .external_lex_state = 2}, + [5876] = {.lex_state = 283, .external_lex_state = 2}, + [5877] = {.lex_state = 384}, + [5878] = {.lex_state = 285, .external_lex_state = 2}, + [5879] = {.lex_state = 387}, + [5880] = {.lex_state = 283, .external_lex_state = 2}, + [5881] = {.lex_state = 1807}, + [5882] = {.lex_state = 283, .external_lex_state = 2}, + [5883] = {.lex_state = 1737}, + [5884] = {.lex_state = 393}, + [5885] = {.lex_state = 1847}, + [5886] = {.lex_state = 1737}, + [5887] = {.lex_state = 41}, + [5888] = {.lex_state = 1838}, + [5889] = {.lex_state = 283, .external_lex_state = 2}, + [5890] = {.lex_state = 71}, + [5891] = {.lex_state = 283, .external_lex_state = 2}, + [5892] = {.lex_state = 283, .external_lex_state = 2}, + [5893] = {.lex_state = 283, .external_lex_state = 2}, + [5894] = {.lex_state = 393}, + [5895] = {.lex_state = 285, .external_lex_state = 2}, + [5896] = {.lex_state = 283, .external_lex_state = 2}, + [5897] = {.lex_state = 283, .external_lex_state = 2}, + [5898] = {.lex_state = 1739}, + [5899] = {.lex_state = 283, .external_lex_state = 2}, + [5900] = {.lex_state = 283, .external_lex_state = 2}, + [5901] = {.lex_state = 283, .external_lex_state = 2}, + [5902] = {.lex_state = 285, .external_lex_state = 2}, + [5903] = {.lex_state = 387}, + [5904] = {.lex_state = 283, .external_lex_state = 2}, + [5905] = {.lex_state = 285, .external_lex_state = 2}, + [5906] = {.lex_state = 283, .external_lex_state = 2}, + [5907] = {.lex_state = 283, .external_lex_state = 2}, + [5908] = {.lex_state = 285, .external_lex_state = 2}, + [5909] = {.lex_state = 283, .external_lex_state = 2}, + [5910] = {.lex_state = 283, .external_lex_state = 2}, + [5911] = {.lex_state = 283, .external_lex_state = 2}, + [5912] = {.lex_state = 285, .external_lex_state = 2}, + [5913] = {.lex_state = 283, .external_lex_state = 2}, + [5914] = {.lex_state = 283, .external_lex_state = 2}, + [5915] = {.lex_state = 283, .external_lex_state = 2}, + [5916] = {.lex_state = 283, .external_lex_state = 2}, + [5917] = {.lex_state = 285, .external_lex_state = 2}, + [5918] = {.lex_state = 283, .external_lex_state = 2}, + [5919] = {.lex_state = 283, .external_lex_state = 2}, + [5920] = {.lex_state = 285, .external_lex_state = 2}, + [5921] = {.lex_state = 283, .external_lex_state = 2}, + [5922] = {.lex_state = 283, .external_lex_state = 2}, + [5923] = {.lex_state = 285, .external_lex_state = 2}, + [5924] = {.lex_state = 283, .external_lex_state = 2}, + [5925] = {.lex_state = 283, .external_lex_state = 2}, + [5926] = {.lex_state = 285, .external_lex_state = 2}, + [5927] = {.lex_state = 384}, + [5928] = {.lex_state = 283, .external_lex_state = 2}, + [5929] = {.lex_state = 285, .external_lex_state = 2}, + [5930] = {.lex_state = 285, .external_lex_state = 2}, + [5931] = {.lex_state = 285, .external_lex_state = 2}, + [5932] = {.lex_state = 384}, + [5933] = {.lex_state = 285, .external_lex_state = 2}, + [5934] = {.lex_state = 384}, + [5935] = {.lex_state = 1847}, + [5936] = {.lex_state = 285, .external_lex_state = 2}, + [5937] = {.lex_state = 283, .external_lex_state = 2}, + [5938] = {.lex_state = 325}, + [5939] = {.lex_state = 285, .external_lex_state = 2}, + [5940] = {.lex_state = 1841}, + [5941] = {.lex_state = 285, .external_lex_state = 2}, + [5942] = {.lex_state = 285, .external_lex_state = 2}, + [5943] = {.lex_state = 285, .external_lex_state = 2}, + [5944] = {.lex_state = 374}, + [5945] = {.lex_state = 285, .external_lex_state = 2}, + [5946] = {.lex_state = 285, .external_lex_state = 2}, + [5947] = {.lex_state = 285, .external_lex_state = 2}, + [5948] = {.lex_state = 285, .external_lex_state = 2}, + [5949] = {.lex_state = 285, .external_lex_state = 2}, + [5950] = {.lex_state = 285, .external_lex_state = 2}, + [5951] = {.lex_state = 285, .external_lex_state = 2}, + [5952] = {.lex_state = 285, .external_lex_state = 2}, + [5953] = {.lex_state = 285, .external_lex_state = 2}, + [5954] = {.lex_state = 285, .external_lex_state = 2}, + [5955] = {.lex_state = 285, .external_lex_state = 2}, + [5956] = {.lex_state = 285, .external_lex_state = 2}, + [5957] = {.lex_state = 285, .external_lex_state = 2}, + [5958] = {.lex_state = 285, .external_lex_state = 2}, + [5959] = {.lex_state = 285, .external_lex_state = 2}, + [5960] = {.lex_state = 285, .external_lex_state = 2}, + [5961] = {.lex_state = 285, .external_lex_state = 2}, + [5962] = {.lex_state = 285, .external_lex_state = 2}, + [5963] = {.lex_state = 285, .external_lex_state = 2}, + [5964] = {.lex_state = 285, .external_lex_state = 2}, + [5965] = {.lex_state = 285, .external_lex_state = 2}, + [5966] = {.lex_state = 285, .external_lex_state = 2}, + [5967] = {.lex_state = 285, .external_lex_state = 2}, + [5968] = {.lex_state = 283, .external_lex_state = 2}, + [5969] = {.lex_state = 283, .external_lex_state = 2}, + [5970] = {.lex_state = 285, .external_lex_state = 2}, + [5971] = {.lex_state = 1807}, + [5972] = {.lex_state = 394}, + [5973] = {.lex_state = 1807}, + [5974] = {.lex_state = 1847}, + [5975] = {.lex_state = 283, .external_lex_state = 2}, + [5976] = {.lex_state = 1807}, + [5977] = {.lex_state = 1847}, + [5978] = {.lex_state = 1847}, + [5979] = {.lex_state = 283, .external_lex_state = 2}, + [5980] = {.lex_state = 283, .external_lex_state = 2}, + [5981] = {.lex_state = 1807}, + [5982] = {.lex_state = 1807}, + [5983] = {.lex_state = 283, .external_lex_state = 2}, + [5984] = {.lex_state = 283, .external_lex_state = 2}, + [5985] = {.lex_state = 87}, + [5986] = {.lex_state = 283, .external_lex_state = 2}, + [5987] = {.lex_state = 283, .external_lex_state = 2}, + [5988] = {.lex_state = 394}, + [5989] = {.lex_state = 347}, + [5990] = {.lex_state = 283, .external_lex_state = 2}, + [5991] = {.lex_state = 347}, + [5992] = {.lex_state = 87}, + [5993] = {.lex_state = 347}, + [5994] = {.lex_state = 325}, + [5995] = {.lex_state = 87}, + [5996] = {.lex_state = 41}, + [5997] = {.lex_state = 1807}, + [5998] = {.lex_state = 283, .external_lex_state = 2}, + [5999] = {.lex_state = 1739}, + [6000] = {.lex_state = 361}, + [6001] = {.lex_state = 283}, + [6002] = {.lex_state = 353}, + [6003] = {.lex_state = 395}, + [6004] = {.lex_state = 388}, + [6005] = {.lex_state = 353}, + [6006] = {.lex_state = 388}, + [6007] = {.lex_state = 353}, + [6008] = {.lex_state = 353}, + [6009] = {.lex_state = 283}, + [6010] = {.lex_state = 1839}, + [6011] = {.lex_state = 397}, + [6012] = {.lex_state = 361}, + [6013] = {.lex_state = 41}, + [6014] = {.lex_state = 1847}, + [6015] = {.lex_state = 396}, + [6016] = {.lex_state = 347}, + [6017] = {.lex_state = 370}, + [6018] = {.lex_state = 353}, + [6019] = {.lex_state = 1807}, + [6020] = {.lex_state = 378}, + [6021] = {.lex_state = 283}, + [6022] = {.lex_state = 1807}, + [6023] = {.lex_state = 347}, + [6024] = {.lex_state = 1807}, + [6025] = {.lex_state = 283}, + [6026] = {.lex_state = 283}, + [6027] = {.lex_state = 395}, + [6028] = {.lex_state = 283, .external_lex_state = 2}, + [6029] = {.lex_state = 283, .external_lex_state = 2}, + [6030] = {.lex_state = 80}, + [6031] = {.lex_state = 395}, + [6032] = {.lex_state = 283, .external_lex_state = 2}, + [6033] = {.lex_state = 283, .external_lex_state = 2}, + [6034] = {.lex_state = 353}, + [6035] = {.lex_state = 395}, + [6036] = {.lex_state = 283}, + [6037] = {.lex_state = 395}, + [6038] = {.lex_state = 1806}, + [6039] = {.lex_state = 283}, + [6040] = {.lex_state = 283}, + [6041] = {.lex_state = 283}, + [6042] = {.lex_state = 283}, + [6043] = {.lex_state = 370}, + [6044] = {.lex_state = 370}, + [6045] = {.lex_state = 283, .external_lex_state = 2}, + [6046] = {.lex_state = 283}, + [6047] = {.lex_state = 1737}, + [6048] = {.lex_state = 388}, + [6049] = {.lex_state = 283}, + [6050] = {.lex_state = 283}, + [6051] = {.lex_state = 283}, + [6052] = {.lex_state = 283}, + [6053] = {.lex_state = 283}, + [6054] = {.lex_state = 388}, + [6055] = {.lex_state = 1807}, + [6056] = {.lex_state = 396}, + [6057] = {.lex_state = 1847}, + [6058] = {.lex_state = 283}, + [6059] = {.lex_state = 389}, + [6060] = {.lex_state = 1806}, + [6061] = {.lex_state = 389}, + [6062] = {.lex_state = 388}, + [6063] = {.lex_state = 125}, + [6064] = {.lex_state = 14}, + [6065] = {.lex_state = 283}, + [6066] = {.lex_state = 283}, + [6067] = {.lex_state = 283}, + [6068] = {.lex_state = 283}, + [6069] = {.lex_state = 1847}, + [6070] = {.lex_state = 388}, + [6071] = {.lex_state = 283}, + [6072] = {.lex_state = 1847}, + [6073] = {.lex_state = 377}, + [6074] = {.lex_state = 1847}, + [6075] = {.lex_state = 283}, + [6076] = {.lex_state = 396}, + [6077] = {.lex_state = 1739}, + [6078] = {.lex_state = 14}, + [6079] = {.lex_state = 283, .external_lex_state = 2}, + [6080] = {.lex_state = 283, .external_lex_state = 2}, + [6081] = {.lex_state = 396}, + [6082] = {.lex_state = 396}, + [6083] = {.lex_state = 342}, + [6084] = {.lex_state = 41, .external_lex_state = 2}, + [6085] = {.lex_state = 396}, + [6086] = {.lex_state = 283}, + [6087] = {.lex_state = 283}, + [6088] = {.lex_state = 1737}, + [6089] = {.lex_state = 1807}, + [6090] = {.lex_state = 283}, + [6091] = {.lex_state = 1771}, + [6092] = {.lex_state = 361}, + [6093] = {.lex_state = 80}, + [6094] = {.lex_state = 1737}, + [6095] = {.lex_state = 1737}, + [6096] = {.lex_state = 1737}, + [6097] = {.lex_state = 80}, + [6098] = {.lex_state = 1737}, + [6099] = {.lex_state = 1737}, + [6100] = {.lex_state = 80}, + [6101] = {.lex_state = 1771}, + [6102] = {.lex_state = 1771}, + [6103] = {.lex_state = 1737}, + [6104] = {.lex_state = 41}, + [6105] = {.lex_state = 313}, + [6106] = {.lex_state = 283}, + [6107] = {.lex_state = 411}, + [6108] = {.lex_state = 1771}, + [6109] = {.lex_state = 1737}, + [6110] = {.lex_state = 294}, + [6111] = {.lex_state = 1737}, + [6112] = {.lex_state = 283}, + [6113] = {.lex_state = 1771}, + [6114] = {.lex_state = 370}, + [6115] = {.lex_state = 1737}, + [6116] = {.lex_state = 322}, + [6117] = {.lex_state = 41, .external_lex_state = 2}, + [6118] = {.lex_state = 294}, + [6119] = {.lex_state = 396}, + [6120] = {.lex_state = 4765}, + [6121] = {.lex_state = 4765}, + [6122] = {.lex_state = 396}, + [6123] = {.lex_state = 1737}, + [6124] = {.lex_state = 294}, + [6125] = {.lex_state = 1806}, + [6126] = {.lex_state = 1771}, + [6127] = {.lex_state = 7}, + [6128] = {.lex_state = 431}, + [6129] = {.lex_state = 1737}, + [6130] = {.lex_state = 1771}, + [6131] = {.lex_state = 1737}, + [6132] = {.lex_state = 368}, + [6133] = {.lex_state = 80}, + [6134] = {.lex_state = 7}, + [6135] = {.lex_state = 431}, + [6136] = {.lex_state = 403}, + [6137] = {.lex_state = 1737}, + [6138] = {.lex_state = 1737}, + [6139] = {.lex_state = 1737}, + [6140] = {.lex_state = 390}, + [6141] = {.lex_state = 368}, + [6142] = {.lex_state = 80}, + [6143] = {.lex_state = 80}, + [6144] = {.lex_state = 294}, + [6145] = {.lex_state = 370}, + [6146] = {.lex_state = 340}, + [6147] = {.lex_state = 4765}, + [6148] = {.lex_state = 4765}, + [6149] = {.lex_state = 294}, + [6150] = {.lex_state = 1771}, + [6151] = {.lex_state = 80}, + [6152] = {.lex_state = 1771}, + [6153] = {.lex_state = 80}, + [6154] = {.lex_state = 80}, + [6155] = {.lex_state = 294}, + [6156] = {.lex_state = 370}, + [6157] = {.lex_state = 4765}, + [6158] = {.lex_state = 4765}, + [6159] = {.lex_state = 294}, + [6160] = {.lex_state = 1771}, + [6161] = {.lex_state = 1771}, + [6162] = {.lex_state = 1771}, + [6163] = {.lex_state = 41}, + [6164] = {.lex_state = 1771}, + [6165] = {.lex_state = 398}, + [6166] = {.lex_state = 80}, + [6167] = {.lex_state = 294}, + [6168] = {.lex_state = 1737}, + [6169] = {.lex_state = 4765}, + [6170] = {.lex_state = 4765}, + [6171] = {.lex_state = 294}, + [6172] = {.lex_state = 1737}, + [6173] = {.lex_state = 357}, + [6174] = {.lex_state = 1771}, + [6175] = {.lex_state = 14}, + [6176] = {.lex_state = 294}, + [6177] = {.lex_state = 1771}, + [6178] = {.lex_state = 1737}, + [6179] = {.lex_state = 1737}, + [6180] = {.lex_state = 294}, + [6181] = {.lex_state = 4765}, + [6182] = {.lex_state = 4765}, + [6183] = {.lex_state = 294}, + [6184] = {.lex_state = 1771}, + [6185] = {.lex_state = 1737}, + [6186] = {.lex_state = 1737}, + [6187] = {.lex_state = 1771}, + [6188] = {.lex_state = 1737}, + [6189] = {.lex_state = 1737}, + [6190] = {.lex_state = 294}, + [6191] = {.lex_state = 4765}, + [6192] = {.lex_state = 4765}, + [6193] = {.lex_state = 294}, + [6194] = {.lex_state = 1771}, + [6195] = {.lex_state = 80}, + [6196] = {.lex_state = 80}, + [6197] = {.lex_state = 80}, + [6198] = {.lex_state = 1771}, + [6199] = {.lex_state = 80}, + [6200] = {.lex_state = 80}, + [6201] = {.lex_state = 294}, + [6202] = {.lex_state = 4765}, + [6203] = {.lex_state = 4765}, + [6204] = {.lex_state = 294}, + [6205] = {.lex_state = 1771}, + [6206] = {.lex_state = 80}, + [6207] = {.lex_state = 1737}, + [6208] = {.lex_state = 80}, + [6209] = {.lex_state = 80}, + [6210] = {.lex_state = 294}, + [6211] = {.lex_state = 4765}, + [6212] = {.lex_state = 4765}, + [6213] = {.lex_state = 294}, + [6214] = {.lex_state = 1771}, + [6215] = {.lex_state = 80}, + [6216] = {.lex_state = 80}, + [6217] = {.lex_state = 1771}, + [6218] = {.lex_state = 1771}, + [6219] = {.lex_state = 1737}, + [6220] = {.lex_state = 1737}, + [6221] = {.lex_state = 80}, + [6222] = {.lex_state = 80}, + [6223] = {.lex_state = 294}, + [6224] = {.lex_state = 4765}, + [6225] = {.lex_state = 4765}, + [6226] = {.lex_state = 4765}, + [6227] = {.lex_state = 294}, + [6228] = {.lex_state = 1737}, + [6229] = {.lex_state = 1771}, + [6230] = {.lex_state = 1737}, + [6231] = {.lex_state = 1771}, + [6232] = {.lex_state = 1737}, + [6233] = {.lex_state = 1771}, + [6234] = {.lex_state = 294}, + [6235] = {.lex_state = 4765}, + [6236] = {.lex_state = 4765}, + [6237] = {.lex_state = 294}, + [6238] = {.lex_state = 1771}, + [6239] = {.lex_state = 80}, + [6240] = {.lex_state = 1771}, + [6241] = {.lex_state = 1771}, + [6242] = {.lex_state = 370}, + [6243] = {.lex_state = 1737}, + [6244] = {.lex_state = 294}, + [6245] = {.lex_state = 294}, + [6246] = {.lex_state = 1771}, + [6247] = {.lex_state = 1737}, + [6248] = {.lex_state = 1771}, + [6249] = {.lex_state = 80}, + [6250] = {.lex_state = 80}, + [6251] = {.lex_state = 294}, + [6252] = {.lex_state = 294}, + [6253] = {.lex_state = 1771}, + [6254] = {.lex_state = 80}, + [6255] = {.lex_state = 1771}, + [6256] = {.lex_state = 80}, + [6257] = {.lex_state = 294}, + [6258] = {.lex_state = 354}, + [6259] = {.lex_state = 294}, + [6260] = {.lex_state = 1771}, + [6261] = {.lex_state = 398}, + [6262] = {.lex_state = 1771}, + [6263] = {.lex_state = 370}, + [6264] = {.lex_state = 1771}, + [6265] = {.lex_state = 1771}, + [6266] = {.lex_state = 1771}, + [6267] = {.lex_state = 370}, + [6268] = {.lex_state = 1771}, + [6269] = {.lex_state = 370}, + [6270] = {.lex_state = 1771}, + [6271] = {.lex_state = 294}, + [6272] = {.lex_state = 1771}, + [6273] = {.lex_state = 14}, + [6274] = {.lex_state = 1771}, + [6275] = {.lex_state = 80}, + [6276] = {.lex_state = 1771}, + [6277] = {.lex_state = 1771}, + [6278] = {.lex_state = 370}, + [6279] = {.lex_state = 1771}, + [6280] = {.lex_state = 80}, + [6281] = {.lex_state = 1771}, + [6282] = {.lex_state = 1771}, + [6283] = {.lex_state = 361}, + [6284] = {.lex_state = 1771}, + [6285] = {.lex_state = 390}, + [6286] = {.lex_state = 80}, + [6287] = {.lex_state = 4765}, + [6288] = {.lex_state = 390}, + [6289] = {.lex_state = 1771}, + [6290] = {.lex_state = 80}, + [6291] = {.lex_state = 390}, + [6292] = {.lex_state = 390}, + [6293] = {.lex_state = 283}, + [6294] = {.lex_state = 1737}, + [6295] = {.lex_state = 4765}, + [6296] = {.lex_state = 1771}, + [6297] = {.lex_state = 1771}, + [6298] = {.lex_state = 1737}, + [6299] = {.lex_state = 4765}, + [6300] = {.lex_state = 41}, + [6301] = {.lex_state = 313}, + [6302] = {.lex_state = 313}, + [6303] = {.lex_state = 313}, + [6304] = {.lex_state = 1737}, + [6305] = {.lex_state = 403}, + [6306] = {.lex_state = 80}, + [6307] = {.lex_state = 80}, + [6308] = {.lex_state = 80}, + [6309] = {.lex_state = 283}, + [6310] = {.lex_state = 80}, + [6311] = {.lex_state = 294}, + [6312] = {.lex_state = 294}, + [6313] = {.lex_state = 4765}, + [6314] = {.lex_state = 313}, + [6315] = {.lex_state = 400}, + [6316] = {.lex_state = 1737}, + [6317] = {.lex_state = 4765}, + [6318] = {.lex_state = 80}, + [6319] = {.lex_state = 283}, + [6320] = {.lex_state = 1737}, + [6321] = {.lex_state = 1737}, + [6322] = {.lex_state = 316}, + [6323] = {.lex_state = 80}, + [6324] = {.lex_state = 313}, + [6325] = {.lex_state = 7}, + [6326] = {.lex_state = 313}, + [6327] = {.lex_state = 7}, + [6328] = {.lex_state = 7}, + [6329] = {.lex_state = 7}, + [6330] = {.lex_state = 313}, + [6331] = {.lex_state = 1737}, + [6332] = {.lex_state = 1737}, + [6333] = {.lex_state = 370}, + [6334] = {.lex_state = 1737}, + [6335] = {.lex_state = 41}, + [6336] = {.lex_state = 1771}, + [6337] = {.lex_state = 1771}, + [6338] = {.lex_state = 370}, + [6339] = {.lex_state = 396}, + [6340] = {.lex_state = 1737}, + [6341] = {.lex_state = 1737}, + [6342] = {.lex_state = 1771}, + [6343] = {.lex_state = 1737}, + [6344] = {.lex_state = 396}, + [6345] = {.lex_state = 14}, + [6346] = {.lex_state = 1771}, + [6347] = {.lex_state = 431}, + [6348] = {.lex_state = 1737}, + [6349] = {.lex_state = 431}, + [6350] = {.lex_state = 41}, + [6351] = {.lex_state = 1737}, + [6352] = {.lex_state = 1737}, + [6353] = {.lex_state = 294}, + [6354] = {.lex_state = 390}, + [6355] = {.lex_state = 1737}, + [6356] = {.lex_state = 1737}, + [6357] = {.lex_state = 1771}, + [6358] = {.lex_state = 80}, + [6359] = {.lex_state = 1771}, + [6360] = {.lex_state = 431}, + [6361] = {.lex_state = 14}, + [6362] = {.lex_state = 294}, + [6363] = {.lex_state = 14}, + [6364] = {.lex_state = 1771}, + [6365] = {.lex_state = 315}, + [6366] = {.lex_state = 1771}, + [6367] = {.lex_state = 323}, + [6368] = {.lex_state = 1771}, + [6369] = {.lex_state = 14}, + [6370] = {.lex_state = 283}, + [6371] = {.lex_state = 341}, + [6372] = {.lex_state = 1737}, + [6373] = {.lex_state = 283}, + [6374] = {.lex_state = 1737}, + [6375] = {.lex_state = 1771}, + [6376] = {.lex_state = 440}, + [6377] = {.lex_state = 368}, + [6378] = {.lex_state = 368}, + [6379] = {.lex_state = 1739}, + [6380] = {.lex_state = 1739}, + [6381] = {.lex_state = 370}, + [6382] = {.lex_state = 368}, + [6383] = {.lex_state = 370}, + [6384] = {.lex_state = 368}, + [6385] = {.lex_state = 368}, + [6386] = {.lex_state = 368}, + [6387] = {.lex_state = 368}, + [6388] = {.lex_state = 1739}, + [6389] = {.lex_state = 368}, + [6390] = {.lex_state = 1739}, + [6391] = {.lex_state = 320}, + [6392] = {.lex_state = 1739}, + [6393] = {.lex_state = 361}, + [6394] = {.lex_state = 1739}, + [6395] = {.lex_state = 340}, + [6396] = {.lex_state = 370}, + [6397] = {.lex_state = 370}, + [6398] = {.lex_state = 318}, + [6399] = {.lex_state = 1739}, + [6400] = {.lex_state = 1739}, + [6401] = {.lex_state = 399}, + [6402] = {.lex_state = 368}, + [6403] = {.lex_state = 370}, + [6404] = {.lex_state = 370}, + [6405] = {.lex_state = 368}, + [6406] = {.lex_state = 370}, + [6407] = {.lex_state = 370}, + [6408] = {.lex_state = 361}, + [6409] = {.lex_state = 368}, + [6410] = {.lex_state = 368}, + [6411] = {.lex_state = 361}, + [6412] = {.lex_state = 370}, + [6413] = {.lex_state = 370}, + [6414] = {.lex_state = 368}, + [6415] = {.lex_state = 368}, + [6416] = {.lex_state = 1771}, + [6417] = {.lex_state = 1739}, + [6418] = {.lex_state = 41}, + [6419] = {.lex_state = 41}, + [6420] = {.lex_state = 41}, + [6421] = {.lex_state = 355}, + [6422] = {.lex_state = 440}, + [6423] = {.lex_state = 1739}, + [6424] = {.lex_state = 1739}, + [6425] = {.lex_state = 41}, + [6426] = {.lex_state = 440}, + [6427] = {.lex_state = 368}, + [6428] = {.lex_state = 41}, + [6429] = {.lex_state = 41}, + [6430] = {.lex_state = 368}, + [6431] = {.lex_state = 440}, + [6432] = {.lex_state = 361}, + [6433] = {.lex_state = 1703}, + [6434] = {.lex_state = 1771}, + [6435] = {.lex_state = 1771}, + [6436] = {.lex_state = 1771}, + [6437] = {.lex_state = 440}, + [6438] = {.lex_state = 41}, + [6439] = {.lex_state = 1771}, + [6440] = {.lex_state = 125}, + [6441] = {.lex_state = 41}, + [6442] = {.lex_state = 399}, + [6443] = {.lex_state = 1772}, + [6444] = {.lex_state = 401}, + [6445] = {.lex_state = 41}, + [6446] = {.lex_state = 1739}, + [6447] = {.lex_state = 1739}, + [6448] = {.lex_state = 1739}, + [6449] = {.lex_state = 1739}, + [6450] = {.lex_state = 440}, + [6451] = {.lex_state = 1771}, + [6452] = {.lex_state = 440}, + [6453] = {.lex_state = 370}, + [6454] = {.lex_state = 370}, + [6455] = {.lex_state = 440}, + [6456] = {.lex_state = 440}, + [6457] = {.lex_state = 41}, + [6458] = {.lex_state = 1771}, + [6459] = {.lex_state = 1771}, + [6460] = {.lex_state = 370}, + [6461] = {.lex_state = 440}, + [6462] = {.lex_state = 370}, + [6463] = {.lex_state = 370}, + [6464] = {.lex_state = 440}, + [6465] = {.lex_state = 370}, + [6466] = {.lex_state = 41}, + [6467] = {.lex_state = 41}, + [6468] = {.lex_state = 41}, + [6469] = {.lex_state = 125}, + [6470] = {.lex_state = 440}, + [6471] = {.lex_state = 370}, + [6472] = {.lex_state = 370}, + [6473] = {.lex_state = 440}, + [6474] = {.lex_state = 1771}, + [6475] = {.lex_state = 368}, + [6476] = {.lex_state = 440}, + [6477] = {.lex_state = 41}, + [6478] = {.lex_state = 440}, + [6479] = {.lex_state = 41}, + [6480] = {.lex_state = 1771}, + [6481] = {.lex_state = 440}, + [6482] = {.lex_state = 368}, + [6483] = {.lex_state = 368}, + [6484] = {.lex_state = 368}, + [6485] = {.lex_state = 1771}, + [6486] = {.lex_state = 440}, + [6487] = {.lex_state = 440}, + [6488] = {.lex_state = 370}, + [6489] = {.lex_state = 368}, + [6490] = {.lex_state = 370}, + [6491] = {.lex_state = 370}, + [6492] = {.lex_state = 41}, + [6493] = {.lex_state = 440}, + [6494] = {.lex_state = 41}, + [6495] = {.lex_state = 399}, + [6496] = {.lex_state = 440}, + [6497] = {.lex_state = 440}, + [6498] = {.lex_state = 41}, + [6499] = {.lex_state = 41}, + [6500] = {.lex_state = 368}, + [6501] = {.lex_state = 41}, + [6502] = {.lex_state = 440}, + [6503] = {.lex_state = 440}, + [6504] = {.lex_state = 413}, + [6505] = {.lex_state = 368}, + [6506] = {.lex_state = 1771}, + [6507] = {.lex_state = 440}, + [6508] = {.lex_state = 41}, + [6509] = {.lex_state = 440}, + [6510] = {.lex_state = 399}, + [6511] = {.lex_state = 283}, + [6512] = {.lex_state = 1739}, + [6513] = {.lex_state = 440}, + [6514] = {.lex_state = 440}, + [6515] = {.lex_state = 368}, + [6516] = {.lex_state = 283}, + [6517] = {.lex_state = 283}, + [6518] = {.lex_state = 283}, + [6519] = {.lex_state = 368}, + [6520] = {.lex_state = 440}, + [6521] = {.lex_state = 399}, + [6522] = {.lex_state = 125}, + [6523] = {.lex_state = 440}, + [6524] = {.lex_state = 368}, + [6525] = {.lex_state = 440}, + [6526] = {.lex_state = 368}, + [6527] = {.lex_state = 440}, + [6528] = {.lex_state = 368}, + [6529] = {.lex_state = 1771}, + [6530] = {.lex_state = 370}, + [6531] = {.lex_state = 1771}, + [6532] = {.lex_state = 368}, + [6533] = {.lex_state = 125}, + [6534] = {.lex_state = 125}, + [6535] = {.lex_state = 368}, + [6536] = {.lex_state = 440}, + [6537] = {.lex_state = 1771}, + [6538] = {.lex_state = 1771}, + [6539] = {.lex_state = 1771}, + [6540] = {.lex_state = 1772}, + [6541] = {.lex_state = 440}, + [6542] = {.lex_state = 368}, + [6543] = {.lex_state = 370}, + [6544] = {.lex_state = 368}, + [6545] = {.lex_state = 41}, + [6546] = {.lex_state = 1770}, + [6547] = {.lex_state = 368}, + [6548] = {.lex_state = 283}, + [6549] = {.lex_state = 1739}, + [6550] = {.lex_state = 283}, + [6551] = {.lex_state = 1739}, + [6552] = {.lex_state = 368}, + [6553] = {.lex_state = 41}, + [6554] = {.lex_state = 1771}, + [6555] = {.lex_state = 368}, + [6556] = {.lex_state = 1807}, + [6557] = {.lex_state = 368}, + [6558] = {.lex_state = 1771}, + [6559] = {.lex_state = 368}, + [6560] = {.lex_state = 368}, + [6561] = {.lex_state = 1771}, + [6562] = {.lex_state = 368}, + [6563] = {.lex_state = 368}, + [6564] = {.lex_state = 370}, + [6565] = {.lex_state = 368}, + [6566] = {.lex_state = 1772}, + [6567] = {.lex_state = 370}, + [6568] = {.lex_state = 355}, + [6569] = {.lex_state = 1739}, + [6570] = {.lex_state = 1807}, + [6571] = {.lex_state = 368}, + [6572] = {.lex_state = 368}, + [6573] = {.lex_state = 323}, + [6574] = {.lex_state = 368}, + [6575] = {.lex_state = 399}, + [6576] = {.lex_state = 370}, + [6577] = {.lex_state = 370}, + [6578] = {.lex_state = 358}, + [6579] = {.lex_state = 41}, + [6580] = {.lex_state = 41}, + [6581] = {.lex_state = 41}, + [6582] = {.lex_state = 370}, + [6583] = {.lex_state = 41}, + [6584] = {.lex_state = 368}, + [6585] = {.lex_state = 1739}, + [6586] = {.lex_state = 313}, + [6587] = {.lex_state = 1771}, + [6588] = {.lex_state = 1771}, + [6589] = {.lex_state = 358}, + [6590] = {.lex_state = 1771}, + [6591] = {.lex_state = 1739}, + [6592] = {.lex_state = 1737}, + [6593] = {.lex_state = 361}, + [6594] = {.lex_state = 316}, + [6595] = {.lex_state = 313}, + [6596] = {.lex_state = 1737}, + [6597] = {.lex_state = 368}, + [6598] = {.lex_state = 412}, + [6599] = {.lex_state = 41}, + [6600] = {.lex_state = 41}, + [6601] = {.lex_state = 41}, + [6602] = {.lex_state = 41}, + [6603] = {.lex_state = 1771}, + [6604] = {.lex_state = 1771}, + [6605] = {.lex_state = 1771}, + [6606] = {.lex_state = 1771}, + [6607] = {.lex_state = 1771}, + [6608] = {.lex_state = 1771}, + [6609] = {.lex_state = 1771}, + [6610] = {.lex_state = 1771}, + [6611] = {.lex_state = 1771}, + [6612] = {.lex_state = 1771}, + [6613] = {.lex_state = 1771}, + [6614] = {.lex_state = 1771}, + [6615] = {.lex_state = 1771}, + [6616] = {.lex_state = 1771}, + [6617] = {.lex_state = 1771}, + [6618] = {.lex_state = 1771}, + [6619] = {.lex_state = 1771}, + [6620] = {.lex_state = 1771}, + [6621] = {.lex_state = 1771}, + [6622] = {.lex_state = 1771}, + [6623] = {.lex_state = 368}, + [6624] = {.lex_state = 1771}, + [6625] = {.lex_state = 1771}, + [6626] = {.lex_state = 1771}, + [6627] = {.lex_state = 1771}, + [6628] = {.lex_state = 1771}, + [6629] = {.lex_state = 1771}, + [6630] = {.lex_state = 1771}, + [6631] = {.lex_state = 1771}, + [6632] = {.lex_state = 1771}, + [6633] = {.lex_state = 1771}, + [6634] = {.lex_state = 1771}, + [6635] = {.lex_state = 1771}, + [6636] = {.lex_state = 370}, + [6637] = {.lex_state = 41}, + [6638] = {.lex_state = 41}, + [6639] = {.lex_state = 41}, + [6640] = {.lex_state = 1737}, + [6641] = {.lex_state = 41}, + [6642] = {.lex_state = 1737}, + [6643] = {.lex_state = 368}, + [6644] = {.lex_state = 370}, + [6645] = {.lex_state = 368}, + [6646] = {.lex_state = 368}, + [6647] = {.lex_state = 368}, + [6648] = {.lex_state = 370}, + [6649] = {.lex_state = 368}, + [6650] = {.lex_state = 370}, + [6651] = {.lex_state = 368}, + [6652] = {.lex_state = 370}, + [6653] = {.lex_state = 361}, + [6654] = {.lex_state = 368}, + [6655] = {.lex_state = 368}, + [6656] = {.lex_state = 368}, + [6657] = {.lex_state = 413}, + [6658] = {.lex_state = 370}, + [6659] = {.lex_state = 162}, + [6660] = {.lex_state = 162}, + [6661] = {.lex_state = 1771}, + [6662] = {.lex_state = 419}, + [6663] = {.lex_state = 162}, + [6664] = {.lex_state = 292}, + [6665] = {.lex_state = 294}, + [6666] = {.lex_state = 356}, + [6667] = {.lex_state = 333}, + [6668] = {.lex_state = 294}, + [6669] = {.lex_state = 1771}, + [6670] = {.lex_state = 414}, + [6671] = {.lex_state = 292}, + [6672] = {.lex_state = 419}, + [6673] = {.lex_state = 1771}, + [6674] = {.lex_state = 163}, + [6675] = {.lex_state = 361}, + [6676] = {.lex_state = 10}, + [6677] = {.lex_state = 88}, + [6678] = {.lex_state = 1771}, + [6679] = {.lex_state = 361}, + [6680] = {.lex_state = 419}, + [6681] = {.lex_state = 1771}, + [6682] = {.lex_state = 1771}, + [6683] = {.lex_state = 162}, + [6684] = {.lex_state = 162}, + [6685] = {.lex_state = 162}, + [6686] = {.lex_state = 162}, + [6687] = {.lex_state = 162}, + [6688] = {.lex_state = 162}, + [6689] = {.lex_state = 162}, + [6690] = {.lex_state = 162}, + [6691] = {.lex_state = 1771}, + [6692] = {.lex_state = 1771}, + [6693] = {.lex_state = 1771}, + [6694] = {.lex_state = 429}, + [6695] = {.lex_state = 419}, + [6696] = {.lex_state = 1771}, + [6697] = {.lex_state = 292}, + [6698] = {.lex_state = 429}, + [6699] = {.lex_state = 1771}, + [6700] = {.lex_state = 1771}, + [6701] = {.lex_state = 1771}, + [6702] = {.lex_state = 1771}, + [6703] = {.lex_state = 292}, + [6704] = {.lex_state = 435}, + [6705] = {.lex_state = 370}, + [6706] = {.lex_state = 370}, + [6707] = {.lex_state = 359}, + [6708] = {.lex_state = 370}, + [6709] = {.lex_state = 429}, + [6710] = {.lex_state = 292}, + [6711] = {.lex_state = 370}, + [6712] = {.lex_state = 1771}, + [6713] = {.lex_state = 1771}, + [6714] = {.lex_state = 370}, + [6715] = {.lex_state = 162}, + [6716] = {.lex_state = 162}, + [6717] = {.lex_state = 162}, + [6718] = {.lex_state = 162}, + [6719] = {.lex_state = 162}, + [6720] = {.lex_state = 162}, + [6721] = {.lex_state = 162}, + [6722] = {.lex_state = 162}, + [6723] = {.lex_state = 1771}, + [6724] = {.lex_state = 1771}, + [6725] = {.lex_state = 1771}, + [6726] = {.lex_state = 1771}, + [6727] = {.lex_state = 419}, + [6728] = {.lex_state = 1771}, + [6729] = {.lex_state = 292}, + [6730] = {.lex_state = 1771}, + [6731] = {.lex_state = 89}, + [6732] = {.lex_state = 1771}, + [6733] = {.lex_state = 1771}, + [6734] = {.lex_state = 292}, + [6735] = {.lex_state = 399}, + [6736] = {.lex_state = 292}, + [6737] = {.lex_state = 184}, + [6738] = {.lex_state = 414}, + [6739] = {.lex_state = 292}, + [6740] = {.lex_state = 434}, + [6741] = {.lex_state = 1771}, + [6742] = {.lex_state = 1771}, + [6743] = {.lex_state = 162}, + [6744] = {.lex_state = 162}, + [6745] = {.lex_state = 162}, + [6746] = {.lex_state = 162}, + [6747] = {.lex_state = 162}, + [6748] = {.lex_state = 162}, + [6749] = {.lex_state = 162}, + [6750] = {.lex_state = 162}, + [6751] = {.lex_state = 1771}, + [6752] = {.lex_state = 1771}, + [6753] = {.lex_state = 1771}, + [6754] = {.lex_state = 419}, + [6755] = {.lex_state = 1771}, + [6756] = {.lex_state = 292}, + [6757] = {.lex_state = 184}, + [6758] = {.lex_state = 1771}, + [6759] = {.lex_state = 1771}, + [6760] = {.lex_state = 438}, + [6761] = {.lex_state = 434}, + [6762] = {.lex_state = 292}, + [6763] = {.lex_state = 1771}, + [6764] = {.lex_state = 1771}, + [6765] = {.lex_state = 414}, + [6766] = {.lex_state = 184}, + [6767] = {.lex_state = 1771}, + [6768] = {.lex_state = 184}, + [6769] = {.lex_state = 1771}, + [6770] = {.lex_state = 1771}, + [6771] = {.lex_state = 294}, + [6772] = {.lex_state = 1771}, + [6773] = {.lex_state = 162}, + [6774] = {.lex_state = 162}, + [6775] = {.lex_state = 162}, + [6776] = {.lex_state = 162}, + [6777] = {.lex_state = 162}, + [6778] = {.lex_state = 162}, + [6779] = {.lex_state = 162}, + [6780] = {.lex_state = 162}, + [6781] = {.lex_state = 10}, + [6782] = {.lex_state = 10}, + [6783] = {.lex_state = 1771}, + [6784] = {.lex_state = 1771}, + [6785] = {.lex_state = 419}, + [6786] = {.lex_state = 1771}, + [6787] = {.lex_state = 292}, + [6788] = {.lex_state = 184}, + [6789] = {.lex_state = 10}, + [6790] = {.lex_state = 162}, + [6791] = {.lex_state = 1771}, + [6792] = {.lex_state = 1771}, + [6793] = {.lex_state = 292}, + [6794] = {.lex_state = 162}, + [6795] = {.lex_state = 368}, + [6796] = {.lex_state = 1771}, + [6797] = {.lex_state = 429}, + [6798] = {.lex_state = 1771}, + [6799] = {.lex_state = 162}, + [6800] = {.lex_state = 1771}, + [6801] = {.lex_state = 1771}, + [6802] = {.lex_state = 359}, + [6803] = {.lex_state = 1771}, + [6804] = {.lex_state = 162}, + [6805] = {.lex_state = 162}, + [6806] = {.lex_state = 162}, + [6807] = {.lex_state = 162}, + [6808] = {.lex_state = 162}, + [6809] = {.lex_state = 162}, + [6810] = {.lex_state = 162}, + [6811] = {.lex_state = 162}, + [6812] = {.lex_state = 414}, + [6813] = {.lex_state = 417}, + [6814] = {.lex_state = 1771}, + [6815] = {.lex_state = 1771}, + [6816] = {.lex_state = 419}, + [6817] = {.lex_state = 1771}, + [6818] = {.lex_state = 292}, + [6819] = {.lex_state = 162}, + [6820] = {.lex_state = 184}, + [6821] = {.lex_state = 1771}, + [6822] = {.lex_state = 292}, + [6823] = {.lex_state = 162}, + [6824] = {.lex_state = 162}, + [6825] = {.lex_state = 1771}, + [6826] = {.lex_state = 356}, + [6827] = {.lex_state = 1771}, + [6828] = {.lex_state = 162}, + [6829] = {.lex_state = 162}, + [6830] = {.lex_state = 162}, + [6831] = {.lex_state = 162}, + [6832] = {.lex_state = 162}, + [6833] = {.lex_state = 162}, + [6834] = {.lex_state = 162}, + [6835] = {.lex_state = 162}, + [6836] = {.lex_state = 162}, + [6837] = {.lex_state = 162}, + [6838] = {.lex_state = 184}, + [6839] = {.lex_state = 162}, + [6840] = {.lex_state = 1771}, + [6841] = {.lex_state = 419}, + [6842] = {.lex_state = 162}, + [6843] = {.lex_state = 292}, + [6844] = {.lex_state = 162}, + [6845] = {.lex_state = 184}, + [6846] = {.lex_state = 1771}, + [6847] = {.lex_state = 292}, + [6848] = {.lex_state = 356}, + [6849] = {.lex_state = 438}, + [6850] = {.lex_state = 184}, + [6851] = {.lex_state = 1771}, + [6852] = {.lex_state = 1771}, + [6853] = {.lex_state = 162}, + [6854] = {.lex_state = 162}, + [6855] = {.lex_state = 162}, + [6856] = {.lex_state = 162}, + [6857] = {.lex_state = 162}, + [6858] = {.lex_state = 162}, + [6859] = {.lex_state = 162}, + [6860] = {.lex_state = 162}, + [6861] = {.lex_state = 1771}, + [6862] = {.lex_state = 368}, + [6863] = {.lex_state = 419}, + [6864] = {.lex_state = 292}, + [6865] = {.lex_state = 1771}, + [6866] = {.lex_state = 1771}, + [6867] = {.lex_state = 1771}, + [6868] = {.lex_state = 292}, + [6869] = {.lex_state = 1771}, + [6870] = {.lex_state = 184}, + [6871] = {.lex_state = 1771}, + [6872] = {.lex_state = 1771}, + [6873] = {.lex_state = 1771}, + [6874] = {.lex_state = 162}, + [6875] = {.lex_state = 162}, + [6876] = {.lex_state = 162}, + [6877] = {.lex_state = 162}, + [6878] = {.lex_state = 162}, + [6879] = {.lex_state = 162}, + [6880] = {.lex_state = 162}, + [6881] = {.lex_state = 162}, + [6882] = {.lex_state = 184}, + [6883] = {.lex_state = 184}, + [6884] = {.lex_state = 419}, + [6885] = {.lex_state = 292}, + [6886] = {.lex_state = 1771}, + [6887] = {.lex_state = 292}, + [6888] = {.lex_state = 435}, + [6889] = {.lex_state = 1771}, + [6890] = {.lex_state = 414}, + [6891] = {.lex_state = 162}, + [6892] = {.lex_state = 162}, + [6893] = {.lex_state = 162}, + [6894] = {.lex_state = 162}, + [6895] = {.lex_state = 162}, + [6896] = {.lex_state = 162}, + [6897] = {.lex_state = 162}, + [6898] = {.lex_state = 162}, + [6899] = {.lex_state = 435}, + [6900] = {.lex_state = 162}, + [6901] = {.lex_state = 419}, + [6902] = {.lex_state = 292}, + [6903] = {.lex_state = 370}, + [6904] = {.lex_state = 292}, + [6905] = {.lex_state = 1771}, + [6906] = {.lex_state = 184}, + [6907] = {.lex_state = 435}, + [6908] = {.lex_state = 162}, + [6909] = {.lex_state = 162}, + [6910] = {.lex_state = 162}, + [6911] = {.lex_state = 162}, + [6912] = {.lex_state = 162}, + [6913] = {.lex_state = 162}, + [6914] = {.lex_state = 162}, + [6915] = {.lex_state = 162}, + [6916] = {.lex_state = 414}, + [6917] = {.lex_state = 419}, + [6918] = {.lex_state = 292}, + [6919] = {.lex_state = 370}, + [6920] = {.lex_state = 292}, + [6921] = {.lex_state = 1771}, + [6922] = {.lex_state = 1771}, + [6923] = {.lex_state = 429}, + [6924] = {.lex_state = 162}, + [6925] = {.lex_state = 162}, + [6926] = {.lex_state = 162}, + [6927] = {.lex_state = 162}, + [6928] = {.lex_state = 162}, + [6929] = {.lex_state = 162}, + [6930] = {.lex_state = 162}, + [6931] = {.lex_state = 162}, + [6932] = {.lex_state = 414}, + [6933] = {.lex_state = 419}, + [6934] = {.lex_state = 292}, + [6935] = {.lex_state = 370}, + [6936] = {.lex_state = 292}, + [6937] = {.lex_state = 162}, + [6938] = {.lex_state = 419}, + [6939] = {.lex_state = 292}, + [6940] = {.lex_state = 370}, + [6941] = {.lex_state = 292}, + [6942] = {.lex_state = 1771}, + [6943] = {.lex_state = 419}, + [6944] = {.lex_state = 292}, + [6945] = {.lex_state = 370}, + [6946] = {.lex_state = 292}, + [6947] = {.lex_state = 356}, + [6948] = {.lex_state = 419}, + [6949] = {.lex_state = 292}, + [6950] = {.lex_state = 292}, + [6951] = {.lex_state = 162}, + [6952] = {.lex_state = 419}, + [6953] = {.lex_state = 292}, + [6954] = {.lex_state = 292}, + [6955] = {.lex_state = 438}, + [6956] = {.lex_state = 419}, + [6957] = {.lex_state = 292}, + [6958] = {.lex_state = 292}, + [6959] = {.lex_state = 419}, + [6960] = {.lex_state = 419}, + [6961] = {.lex_state = 292}, + [6962] = {.lex_state = 292}, + [6963] = {.lex_state = 1771}, + [6964] = {.lex_state = 419}, + [6965] = {.lex_state = 292}, + [6966] = {.lex_state = 292}, + [6967] = {.lex_state = 1771}, + [6968] = {.lex_state = 419}, + [6969] = {.lex_state = 292}, + [6970] = {.lex_state = 292}, + [6971] = {.lex_state = 1771}, + [6972] = {.lex_state = 419}, + [6973] = {.lex_state = 292}, + [6974] = {.lex_state = 292}, + [6975] = {.lex_state = 292}, + [6976] = {.lex_state = 419}, + [6977] = {.lex_state = 292}, + [6978] = {.lex_state = 292}, + [6979] = {.lex_state = 162}, + [6980] = {.lex_state = 419}, + [6981] = {.lex_state = 292}, + [6982] = {.lex_state = 292}, + [6983] = {.lex_state = 1771}, + [6984] = {.lex_state = 419}, + [6985] = {.lex_state = 292}, + [6986] = {.lex_state = 292}, + [6987] = {.lex_state = 162}, + [6988] = {.lex_state = 419}, + [6989] = {.lex_state = 292}, + [6990] = {.lex_state = 292}, + [6991] = {.lex_state = 419}, + [6992] = {.lex_state = 419}, + [6993] = {.lex_state = 292}, + [6994] = {.lex_state = 292}, + [6995] = {.lex_state = 1771}, + [6996] = {.lex_state = 419}, + [6997] = {.lex_state = 292}, + [6998] = {.lex_state = 292}, + [6999] = {.lex_state = 1771}, + [7000] = {.lex_state = 419}, + [7001] = {.lex_state = 292}, + [7002] = {.lex_state = 292}, + [7003] = {.lex_state = 1771}, + [7004] = {.lex_state = 419}, + [7005] = {.lex_state = 292}, + [7006] = {.lex_state = 292}, + [7007] = {.lex_state = 1771}, + [7008] = {.lex_state = 419}, + [7009] = {.lex_state = 292}, + [7010] = {.lex_state = 292}, + [7011] = {.lex_state = 162}, + [7012] = {.lex_state = 419}, + [7013] = {.lex_state = 292}, + [7014] = {.lex_state = 292}, + [7015] = {.lex_state = 438}, + [7016] = {.lex_state = 419}, + [7017] = {.lex_state = 292}, + [7018] = {.lex_state = 292}, + [7019] = {.lex_state = 292}, + [7020] = {.lex_state = 419}, + [7021] = {.lex_state = 292}, + [7022] = {.lex_state = 292}, + [7023] = {.lex_state = 162}, + [7024] = {.lex_state = 419}, + [7025] = {.lex_state = 292}, + [7026] = {.lex_state = 162}, + [7027] = {.lex_state = 419}, + [7028] = {.lex_state = 292}, + [7029] = {.lex_state = 292}, + [7030] = {.lex_state = 419}, + [7031] = {.lex_state = 292}, + [7032] = {.lex_state = 292}, + [7033] = {.lex_state = 419}, + [7034] = {.lex_state = 292}, + [7035] = {.lex_state = 292}, + [7036] = {.lex_state = 419}, + [7037] = {.lex_state = 292}, + [7038] = {.lex_state = 292}, + [7039] = {.lex_state = 292}, + [7040] = {.lex_state = 292}, + [7041] = {.lex_state = 292}, + [7042] = {.lex_state = 292}, + [7043] = {.lex_state = 292}, + [7044] = {.lex_state = 292}, + [7045] = {.lex_state = 292}, + [7046] = {.lex_state = 419}, + [7047] = {.lex_state = 370}, + [7048] = {.lex_state = 1771}, + [7049] = {.lex_state = 162}, + [7050] = {.lex_state = 1771}, + [7051] = {.lex_state = 1771}, + [7052] = {.lex_state = 356}, + [7053] = {.lex_state = 10}, + [7054] = {.lex_state = 184}, + [7055] = {.lex_state = 316}, + [7056] = {.lex_state = 1771}, + [7057] = {.lex_state = 435}, + [7058] = {.lex_state = 162}, + [7059] = {.lex_state = 1771}, + [7060] = {.lex_state = 359}, + [7061] = {.lex_state = 184}, + [7062] = {.lex_state = 1771}, + [7063] = {.lex_state = 184}, + [7064] = {.lex_state = 1771}, + [7065] = {.lex_state = 361}, + [7066] = {.lex_state = 1771}, + [7067] = {.lex_state = 414}, + [7068] = {.lex_state = 1771}, + [7069] = {.lex_state = 292}, + [7070] = {.lex_state = 1771}, + [7071] = {.lex_state = 1771}, + [7072] = {.lex_state = 1771}, + [7073] = {.lex_state = 1771}, + [7074] = {.lex_state = 1771}, + [7075] = {.lex_state = 162}, + [7076] = {.lex_state = 1771}, + [7077] = {.lex_state = 1771}, + [7078] = {.lex_state = 1771}, + [7079] = {.lex_state = 370}, + [7080] = {.lex_state = 414}, + [7081] = {.lex_state = 1771}, + [7082] = {.lex_state = 1771}, + [7083] = {.lex_state = 1771}, + [7084] = {.lex_state = 1771}, + [7085] = {.lex_state = 292}, + [7086] = {.lex_state = 1771}, + [7087] = {.lex_state = 370}, + [7088] = {.lex_state = 1771}, + [7089] = {.lex_state = 1771}, + [7090] = {.lex_state = 359}, + [7091] = {.lex_state = 1771}, + [7092] = {.lex_state = 1771}, + [7093] = {.lex_state = 1771}, + [7094] = {.lex_state = 1771}, + [7095] = {.lex_state = 1771}, + [7096] = {.lex_state = 1771}, + [7097] = {.lex_state = 1771}, + [7098] = {.lex_state = 1771}, + [7099] = {.lex_state = 1771}, + [7100] = {.lex_state = 1771}, + [7101] = {.lex_state = 162}, + [7102] = {.lex_state = 162}, + [7103] = {.lex_state = 162}, + [7104] = {.lex_state = 370}, + [7105] = {.lex_state = 370}, + [7106] = {.lex_state = 370}, + [7107] = {.lex_state = 370}, + [7108] = {.lex_state = 370}, + [7109] = {.lex_state = 370}, + [7110] = {.lex_state = 370}, + [7111] = {.lex_state = 370}, + [7112] = {.lex_state = 162}, + [7113] = {.lex_state = 162}, + [7114] = {.lex_state = 162}, + [7115] = {.lex_state = 162}, + [7116] = {.lex_state = 162}, + [7117] = {.lex_state = 162}, + [7118] = {.lex_state = 162}, + [7119] = {.lex_state = 162}, + [7120] = {.lex_state = 162}, + [7121] = {.lex_state = 356}, + [7122] = {.lex_state = 184}, + [7123] = {.lex_state = 1771}, + [7124] = {.lex_state = 1771}, + [7125] = {.lex_state = 1771}, + [7126] = {.lex_state = 1771}, + [7127] = {.lex_state = 292}, + [7128] = {.lex_state = 419}, + [7129] = {.lex_state = 292}, + [7130] = {.lex_state = 366}, + [7131] = {.lex_state = 1771}, + [7132] = {.lex_state = 184}, + [7133] = {.lex_state = 434}, + [7134] = {.lex_state = 356}, + [7135] = {.lex_state = 359}, + [7136] = {.lex_state = 55}, + [7137] = {.lex_state = 162}, + [7138] = {.lex_state = 1771}, + [7139] = {.lex_state = 434}, + [7140] = {.lex_state = 1771}, + [7141] = {.lex_state = 283}, + [7142] = {.lex_state = 283}, + [7143] = {.lex_state = 434}, + [7144] = {.lex_state = 184}, + [7145] = {.lex_state = 1771}, + [7146] = {.lex_state = 1771}, + [7147] = {.lex_state = 292}, + [7148] = {.lex_state = 1771}, + [7149] = {.lex_state = 1771}, + [7150] = {.lex_state = 359}, + [7151] = {.lex_state = 1771}, + [7152] = {.lex_state = 1771}, + [7153] = {.lex_state = 419}, + [7154] = {.lex_state = 419}, + [7155] = {.lex_state = 1771}, + [7156] = {.lex_state = 1771}, + [7157] = {.lex_state = 1771}, + [7158] = {.lex_state = 1771}, + [7159] = {.lex_state = 162}, + [7160] = {.lex_state = 1771}, + [7161] = {.lex_state = 370}, + [7162] = {.lex_state = 1771}, + [7163] = {.lex_state = 1771}, + [7164] = {.lex_state = 1771}, + [7165] = {.lex_state = 1771}, + [7166] = {.lex_state = 1771}, + [7167] = {.lex_state = 359}, + [7168] = {.lex_state = 1771}, + [7169] = {.lex_state = 162}, + [7170] = {.lex_state = 415}, + [7171] = {.lex_state = 162}, + [7172] = {.lex_state = 370}, + [7173] = {.lex_state = 370}, + [7174] = {.lex_state = 399}, + [7175] = {.lex_state = 1771}, + [7176] = {.lex_state = 359}, + [7177] = {.lex_state = 162}, + [7178] = {.lex_state = 370}, + [7179] = {.lex_state = 162}, + [7180] = {.lex_state = 162}, + [7181] = {.lex_state = 1771}, + [7182] = {.lex_state = 162}, + [7183] = {.lex_state = 162}, + [7184] = {.lex_state = 162}, + [7185] = {.lex_state = 356}, + [7186] = {.lex_state = 162}, + [7187] = {.lex_state = 1771}, + [7188] = {.lex_state = 162}, + [7189] = {.lex_state = 162}, + [7190] = {.lex_state = 370}, + [7191] = {.lex_state = 184}, + [7192] = {.lex_state = 370}, + [7193] = {.lex_state = 162}, + [7194] = {.lex_state = 370}, + [7195] = {.lex_state = 370}, + [7196] = {.lex_state = 313}, + [7197] = {.lex_state = 370}, + [7198] = {.lex_state = 370}, + [7199] = {.lex_state = 419}, + [7200] = {.lex_state = 1771}, + [7201] = {.lex_state = 313}, + [7202] = {.lex_state = 402}, + [7203] = {.lex_state = 370}, + [7204] = {.lex_state = 370}, + [7205] = {.lex_state = 370}, + [7206] = {.lex_state = 292}, + [7207] = {.lex_state = 1771}, + [7208] = {.lex_state = 370}, + [7209] = {.lex_state = 370}, + [7210] = {.lex_state = 370}, + [7211] = {.lex_state = 1771}, + [7212] = {.lex_state = 1771}, + [7213] = {.lex_state = 370}, + [7214] = {.lex_state = 370}, + [7215] = {.lex_state = 370}, + [7216] = {.lex_state = 356}, + [7217] = {.lex_state = 1771}, + [7218] = {.lex_state = 370}, + [7219] = {.lex_state = 370}, + [7220] = {.lex_state = 370}, + [7221] = {.lex_state = 1771}, + [7222] = {.lex_state = 292}, + [7223] = {.lex_state = 370}, + [7224] = {.lex_state = 370}, + [7225] = {.lex_state = 370}, + [7226] = {.lex_state = 162}, + [7227] = {.lex_state = 162}, + [7228] = {.lex_state = 370}, + [7229] = {.lex_state = 370}, + [7230] = {.lex_state = 370}, + [7231] = {.lex_state = 1771}, + [7232] = {.lex_state = 1771}, + [7233] = {.lex_state = 370}, + [7234] = {.lex_state = 370}, + [7235] = {.lex_state = 370}, + [7236] = {.lex_state = 1771}, + [7237] = {.lex_state = 1771}, + [7238] = {.lex_state = 370}, + [7239] = {.lex_state = 370}, + [7240] = {.lex_state = 370}, + [7241] = {.lex_state = 184}, + [7242] = {.lex_state = 1771}, + [7243] = {.lex_state = 1771}, + [7244] = {.lex_state = 1771}, + [7245] = {.lex_state = 414}, + [7246] = {.lex_state = 438}, + [7247] = {.lex_state = 1771}, + [7248] = {.lex_state = 162}, + [7249] = {.lex_state = 162}, + [7250] = {.lex_state = 162}, + [7251] = {.lex_state = 162}, + [7252] = {.lex_state = 162}, + [7253] = {.lex_state = 162}, + [7254] = {.lex_state = 162}, + [7255] = {.lex_state = 162}, + [7256] = {.lex_state = 162}, + [7257] = {.lex_state = 419}, + [7258] = {.lex_state = 1771}, + [7259] = {.lex_state = 1771}, + [7260] = {.lex_state = 184}, + [7261] = {.lex_state = 184}, + [7262] = {.lex_state = 419}, + [7263] = {.lex_state = 162}, + [7264] = {.lex_state = 1771}, + [7265] = {.lex_state = 292}, + [7266] = {.lex_state = 162}, + [7267] = {.lex_state = 1771}, + [7268] = {.lex_state = 162}, + [7269] = {.lex_state = 162}, + [7270] = {.lex_state = 10}, + [7271] = {.lex_state = 1771}, + [7272] = {.lex_state = 1771}, + [7273] = {.lex_state = 1771}, + [7274] = {.lex_state = 41}, + [7275] = {.lex_state = 1771}, + [7276] = {.lex_state = 1771}, + [7277] = {.lex_state = 1771}, + [7278] = {.lex_state = 1771}, + [7279] = {.lex_state = 184}, + [7280] = {.lex_state = 1771}, + [7281] = {.lex_state = 1771}, + [7282] = {.lex_state = 415}, + [7283] = {.lex_state = 292}, + [7284] = {.lex_state = 283}, + [7285] = {.lex_state = 1771}, + [7286] = {.lex_state = 1771}, + [7287] = {.lex_state = 1771}, + [7288] = {.lex_state = 1771}, + [7289] = {.lex_state = 1771}, + [7290] = {.lex_state = 1771}, + [7291] = {.lex_state = 1771}, + [7292] = {.lex_state = 292}, + [7293] = {.lex_state = 368}, + [7294] = {.lex_state = 359}, + [7295] = {.lex_state = 162}, + [7296] = {.lex_state = 162}, + [7297] = {.lex_state = 292}, + [7298] = {.lex_state = 162}, + [7299] = {.lex_state = 162}, + [7300] = {.lex_state = 162}, + [7301] = {.lex_state = 162}, + [7302] = {.lex_state = 1771}, + [7303] = {.lex_state = 162}, + [7304] = {.lex_state = 41}, + [7305] = {.lex_state = 1771}, + [7306] = {.lex_state = 162}, + [7307] = {.lex_state = 1771}, + [7308] = {.lex_state = 10}, + [7309] = {.lex_state = 162}, + [7310] = {.lex_state = 292}, + [7311] = {.lex_state = 162}, + [7312] = {.lex_state = 257}, + [7313] = {.lex_state = 1771}, + [7314] = {.lex_state = 1739}, + [7315] = {.lex_state = 360}, + [7316] = {.lex_state = 1771}, + [7317] = {.lex_state = 162}, + [7318] = {.lex_state = 162}, + [7319] = {.lex_state = 162}, + [7320] = {.lex_state = 436}, + [7321] = {.lex_state = 433}, + [7322] = {.lex_state = 360}, + [7323] = {.lex_state = 1771}, + [7324] = {.lex_state = 162}, + [7325] = {.lex_state = 162}, + [7326] = {.lex_state = 436}, + [7327] = {.lex_state = 1771}, + [7328] = {.lex_state = 162}, + [7329] = {.lex_state = 162}, + [7330] = {.lex_state = 162}, + [7331] = {.lex_state = 1771}, + [7332] = {.lex_state = 162}, + [7333] = {.lex_state = 162}, + [7334] = {.lex_state = 162}, + [7335] = {.lex_state = 162}, + [7336] = {.lex_state = 162}, + [7337] = {.lex_state = 162}, + [7338] = {.lex_state = 162}, + [7339] = {.lex_state = 162}, + [7340] = {.lex_state = 162}, + [7341] = {.lex_state = 184}, + [7342] = {.lex_state = 1771}, + [7343] = {.lex_state = 184}, + [7344] = {.lex_state = 1771}, + [7345] = {.lex_state = 360}, + [7346] = {.lex_state = 1771}, + [7347] = {.lex_state = 433}, + [7348] = {.lex_state = 433}, + [7349] = {.lex_state = 360}, + [7350] = {.lex_state = 162}, + [7351] = {.lex_state = 1771}, + [7352] = {.lex_state = 184}, + [7353] = {.lex_state = 162}, + [7354] = {.lex_state = 162}, + [7355] = {.lex_state = 162}, + [7356] = {.lex_state = 184}, + [7357] = {.lex_state = 162}, + [7358] = {.lex_state = 162}, + [7359] = {.lex_state = 162}, + [7360] = {.lex_state = 184}, + [7361] = {.lex_state = 162}, + [7362] = {.lex_state = 439}, + [7363] = {.lex_state = 184}, + [7364] = {.lex_state = 1771}, + [7365] = {.lex_state = 184}, + [7366] = {.lex_state = 1771}, + [7367] = {.lex_state = 184}, + [7368] = {.lex_state = 1771}, + [7369] = {.lex_state = 1771}, + [7370] = {.lex_state = 1771}, + [7371] = {.lex_state = 360}, + [7372] = {.lex_state = 162}, + [7373] = {.lex_state = 1771}, + [7374] = {.lex_state = 1771}, + [7375] = {.lex_state = 1771}, + [7376] = {.lex_state = 1771}, + [7377] = {.lex_state = 1771}, + [7378] = {.lex_state = 360}, + [7379] = {.lex_state = 162}, + [7380] = {.lex_state = 162}, + [7381] = {.lex_state = 1771}, + [7382] = {.lex_state = 162}, + [7383] = {.lex_state = 162}, + [7384] = {.lex_state = 162}, + [7385] = {.lex_state = 162}, + [7386] = {.lex_state = 162}, + [7387] = {.lex_state = 162}, + [7388] = {.lex_state = 162}, + [7389] = {.lex_state = 360}, + [7390] = {.lex_state = 162}, + [7391] = {.lex_state = 1771}, + [7392] = {.lex_state = 1771}, + [7393] = {.lex_state = 1771}, + [7394] = {.lex_state = 416}, + [7395] = {.lex_state = 1771}, + [7396] = {.lex_state = 360}, + [7397] = {.lex_state = 416}, + [7398] = {.lex_state = 1771}, + [7399] = {.lex_state = 436}, + [7400] = {.lex_state = 162}, + [7401] = {.lex_state = 360}, + [7402] = {.lex_state = 1771}, + [7403] = {.lex_state = 162}, + [7404] = {.lex_state = 162}, + [7405] = {.lex_state = 162}, + [7406] = {.lex_state = 162}, + [7407] = {.lex_state = 162}, + [7408] = {.lex_state = 162}, + [7409] = {.lex_state = 162}, + [7410] = {.lex_state = 162}, + [7411] = {.lex_state = 92}, + [7412] = {.lex_state = 1771}, + [7413] = {.lex_state = 1770}, + [7414] = {.lex_state = 1749}, + [7415] = {.lex_state = 416}, + [7416] = {.lex_state = 1771}, + [7417] = {.lex_state = 162}, + [7418] = {.lex_state = 1771}, + [7419] = {.lex_state = 360}, + [7420] = {.lex_state = 162}, + [7421] = {.lex_state = 360}, + [7422] = {.lex_state = 162}, + [7423] = {.lex_state = 162}, + [7424] = {.lex_state = 162}, + [7425] = {.lex_state = 416}, + [7426] = {.lex_state = 162}, + [7427] = {.lex_state = 360}, + [7428] = {.lex_state = 416}, + [7429] = {.lex_state = 162}, + [7430] = {.lex_state = 162}, + [7431] = {.lex_state = 1771}, + [7432] = {.lex_state = 1771}, + [7433] = {.lex_state = 1771}, + [7434] = {.lex_state = 162}, + [7435] = {.lex_state = 162}, + [7436] = {.lex_state = 162}, + [7437] = {.lex_state = 1771}, + [7438] = {.lex_state = 162}, + [7439] = {.lex_state = 162}, + [7440] = {.lex_state = 162}, + [7441] = {.lex_state = 162}, + [7442] = {.lex_state = 440}, + [7443] = {.lex_state = 433}, + [7444] = {.lex_state = 422}, + [7445] = {.lex_state = 1771}, + [7446] = {.lex_state = 1771}, + [7447] = {.lex_state = 162}, + [7448] = {.lex_state = 360}, + [7449] = {.lex_state = 1771}, + [7450] = {.lex_state = 162}, + [7451] = {.lex_state = 1771}, + [7452] = {.lex_state = 360}, + [7453] = {.lex_state = 1771}, + [7454] = {.lex_state = 360}, + [7455] = {.lex_state = 1771}, + [7456] = {.lex_state = 1771}, + [7457] = {.lex_state = 162}, + [7458] = {.lex_state = 1771}, + [7459] = {.lex_state = 162}, + [7460] = {.lex_state = 162}, + [7461] = {.lex_state = 162}, + [7462] = {.lex_state = 162}, + [7463] = {.lex_state = 1771}, + [7464] = {.lex_state = 162}, + [7465] = {.lex_state = 162}, + [7466] = {.lex_state = 162}, + [7467] = {.lex_state = 162}, + [7468] = {.lex_state = 1771}, + [7469] = {.lex_state = 184}, + [7470] = {.lex_state = 162}, + [7471] = {.lex_state = 1771}, + [7472] = {.lex_state = 360}, + [7473] = {.lex_state = 1771}, + [7474] = {.lex_state = 162}, + [7475] = {.lex_state = 184}, + [7476] = {.lex_state = 360}, + [7477] = {.lex_state = 92}, + [7478] = {.lex_state = 162}, + [7479] = {.lex_state = 234}, + [7480] = {.lex_state = 1771}, + [7481] = {.lex_state = 162}, + [7482] = {.lex_state = 162}, + [7483] = {.lex_state = 162}, + [7484] = {.lex_state = 162}, + [7485] = {.lex_state = 162}, + [7486] = {.lex_state = 162}, + [7487] = {.lex_state = 1771}, + [7488] = {.lex_state = 162}, + [7489] = {.lex_state = 1771}, + [7490] = {.lex_state = 1771}, + [7491] = {.lex_state = 1770}, + [7492] = {.lex_state = 1771}, + [7493] = {.lex_state = 360}, + [7494] = {.lex_state = 360}, + [7495] = {.lex_state = 162}, + [7496] = {.lex_state = 2}, + [7497] = {.lex_state = 162}, + [7498] = {.lex_state = 360}, + [7499] = {.lex_state = 1771}, + [7500] = {.lex_state = 162}, + [7501] = {.lex_state = 432}, + [7502] = {.lex_state = 162}, + [7503] = {.lex_state = 162}, + [7504] = {.lex_state = 162}, + [7505] = {.lex_state = 162}, + [7506] = {.lex_state = 162}, + [7507] = {.lex_state = 1771}, + [7508] = {.lex_state = 162}, + [7509] = {.lex_state = 162}, + [7510] = {.lex_state = 1770}, + [7511] = {.lex_state = 162}, + [7512] = {.lex_state = 1770}, + [7513] = {.lex_state = 1770}, + [7514] = {.lex_state = 1771}, + [7515] = {.lex_state = 1771}, + [7516] = {.lex_state = 1771}, + [7517] = {.lex_state = 1771}, + [7518] = {.lex_state = 1771}, + [7519] = {.lex_state = 1771}, + [7520] = {.lex_state = 360}, + [7521] = {.lex_state = 433}, + [7522] = {.lex_state = 360}, + [7523] = {.lex_state = 162}, + [7524] = {.lex_state = 360}, + [7525] = {.lex_state = 162}, + [7526] = {.lex_state = 162}, + [7527] = {.lex_state = 162}, + [7528] = {.lex_state = 1771}, + [7529] = {.lex_state = 162}, + [7530] = {.lex_state = 162}, + [7531] = {.lex_state = 162}, + [7532] = {.lex_state = 162}, + [7533] = {.lex_state = 162}, + [7534] = {.lex_state = 14}, + [7535] = {.lex_state = 162}, + [7536] = {.lex_state = 1771}, + [7537] = {.lex_state = 162}, + [7538] = {.lex_state = 1770}, + [7539] = {.lex_state = 1770}, + [7540] = {.lex_state = 1770}, + [7541] = {.lex_state = 1771}, + [7542] = {.lex_state = 360}, + [7543] = {.lex_state = 1770}, + [7544] = {.lex_state = 1771}, + [7545] = {.lex_state = 1771}, + [7546] = {.lex_state = 360}, + [7547] = {.lex_state = 1770}, + [7548] = {.lex_state = 162}, + [7549] = {.lex_state = 162}, + [7550] = {.lex_state = 162}, + [7551] = {.lex_state = 162}, + [7552] = {.lex_state = 162}, + [7553] = {.lex_state = 184}, + [7554] = {.lex_state = 162}, + [7555] = {.lex_state = 1770}, + [7556] = {.lex_state = 162}, + [7557] = {.lex_state = 162}, + [7558] = {.lex_state = 1771}, + [7559] = {.lex_state = 162}, + [7560] = {.lex_state = 162}, + [7561] = {.lex_state = 162}, + [7562] = {.lex_state = 1772}, + [7563] = {.lex_state = 184}, + [7564] = {.lex_state = 416}, + [7565] = {.lex_state = 162}, + [7566] = {.lex_state = 162}, + [7567] = {.lex_state = 162}, + [7568] = {.lex_state = 360}, + [7569] = {.lex_state = 1771}, + [7570] = {.lex_state = 1771}, + [7571] = {.lex_state = 1771}, + [7572] = {.lex_state = 360}, + [7573] = {.lex_state = 1771}, + [7574] = {.lex_state = 162}, + [7575] = {.lex_state = 1771}, + [7576] = {.lex_state = 162}, + [7577] = {.lex_state = 162}, + [7578] = {.lex_state = 162}, + [7579] = {.lex_state = 162}, + [7580] = {.lex_state = 1771}, + [7581] = {.lex_state = 162}, + [7582] = {.lex_state = 162}, + [7583] = {.lex_state = 162}, + [7584] = {.lex_state = 430}, + [7585] = {.lex_state = 416}, + [7586] = {.lex_state = 1771}, + [7587] = {.lex_state = 162}, + [7588] = {.lex_state = 1771}, + [7589] = {.lex_state = 162}, + [7590] = {.lex_state = 162}, + [7591] = {.lex_state = 162}, + [7592] = {.lex_state = 162}, + [7593] = {.lex_state = 184}, + [7594] = {.lex_state = 1771}, + [7595] = {.lex_state = 162}, + [7596] = {.lex_state = 162}, + [7597] = {.lex_state = 162}, + [7598] = {.lex_state = 162}, + [7599] = {.lex_state = 1771}, + [7600] = {.lex_state = 162}, + [7601] = {.lex_state = 162}, + [7602] = {.lex_state = 1771}, + [7603] = {.lex_state = 162}, + [7604] = {.lex_state = 1771}, + [7605] = {.lex_state = 162}, + [7606] = {.lex_state = 162}, + [7607] = {.lex_state = 162}, + [7608] = {.lex_state = 162}, + [7609] = {.lex_state = 162}, + [7610] = {.lex_state = 1771}, + [7611] = {.lex_state = 162}, + [7612] = {.lex_state = 162}, + [7613] = {.lex_state = 1771}, + [7614] = {.lex_state = 1771}, + [7615] = {.lex_state = 162}, + [7616] = {.lex_state = 1771}, + [7617] = {.lex_state = 92}, + [7618] = {.lex_state = 1749}, + [7619] = {.lex_state = 1771}, + [7620] = {.lex_state = 162}, + [7621] = {.lex_state = 1771}, + [7622] = {.lex_state = 162}, + [7623] = {.lex_state = 162}, + [7624] = {.lex_state = 162}, + [7625] = {.lex_state = 162}, + [7626] = {.lex_state = 1771}, + [7627] = {.lex_state = 162}, + [7628] = {.lex_state = 162}, + [7629] = {.lex_state = 1771}, + [7630] = {.lex_state = 162}, + [7631] = {.lex_state = 92}, + [7632] = {.lex_state = 92}, + [7633] = {.lex_state = 162}, + [7634] = {.lex_state = 162}, + [7635] = {.lex_state = 1771}, + [7636] = {.lex_state = 416}, + [7637] = {.lex_state = 2}, + [7638] = {.lex_state = 14}, + [7639] = {.lex_state = 430}, + [7640] = {.lex_state = 162}, + [7641] = {.lex_state = 162}, + [7642] = {.lex_state = 162}, + [7643] = {.lex_state = 184}, + [7644] = {.lex_state = 184}, + [7645] = {.lex_state = 1771}, + [7646] = {.lex_state = 257}, + [7647] = {.lex_state = 162}, + [7648] = {.lex_state = 162}, + [7649] = {.lex_state = 162}, + [7650] = {.lex_state = 1771}, + [7651] = {.lex_state = 162}, + [7652] = {.lex_state = 162}, + [7653] = {.lex_state = 1771}, + [7654] = {.lex_state = 1771}, + [7655] = {.lex_state = 162}, + [7656] = {.lex_state = 360}, + [7657] = {.lex_state = 1771}, + [7658] = {.lex_state = 162}, + [7659] = {.lex_state = 292}, + [7660] = {.lex_state = 1771}, + [7661] = {.lex_state = 432}, + [7662] = {.lex_state = 440}, + [7663] = {.lex_state = 432}, + [7664] = {.lex_state = 162}, + [7665] = {.lex_state = 1771}, + [7666] = {.lex_state = 162}, + [7667] = {.lex_state = 440}, + [7668] = {.lex_state = 184}, + [7669] = {.lex_state = 1771}, + [7670] = {.lex_state = 162}, + [7671] = {.lex_state = 1771}, + [7672] = {.lex_state = 162}, + [7673] = {.lex_state = 1771}, + [7674] = {.lex_state = 162}, + [7675] = {.lex_state = 162}, + [7676] = {.lex_state = 162}, + [7677] = {.lex_state = 184}, + [7678] = {.lex_state = 1771}, + [7679] = {.lex_state = 1771}, + [7680] = {.lex_state = 1771}, + [7681] = {.lex_state = 1771}, + [7682] = {.lex_state = 1771}, + [7683] = {.lex_state = 1771}, + [7684] = {.lex_state = 416}, + [7685] = {.lex_state = 1771}, + [7686] = {.lex_state = 1771}, + [7687] = {.lex_state = 1771}, + [7688] = {.lex_state = 162}, + [7689] = {.lex_state = 1771}, + [7690] = {.lex_state = 162}, + [7691] = {.lex_state = 162}, + [7692] = {.lex_state = 1771}, + [7693] = {.lex_state = 184}, + [7694] = {.lex_state = 1771}, + [7695] = {.lex_state = 184}, + [7696] = {.lex_state = 416}, + [7697] = {.lex_state = 1771}, + [7698] = {.lex_state = 184}, + [7699] = {.lex_state = 184}, + [7700] = {.lex_state = 1771}, + [7701] = {.lex_state = 234}, + [7702] = {.lex_state = 162}, + [7703] = {.lex_state = 162}, + [7704] = {.lex_state = 409}, + [7705] = {.lex_state = 1771}, + [7706] = {.lex_state = 334}, + [7707] = {.lex_state = 1771}, + [7708] = {.lex_state = 1771}, + [7709] = {.lex_state = 162}, + [7710] = {.lex_state = 2}, + [7711] = {.lex_state = 162}, + [7712] = {.lex_state = 162}, + [7713] = {.lex_state = 184}, + [7714] = {.lex_state = 184}, + [7715] = {.lex_state = 2}, + [7716] = {.lex_state = 234}, + [7717] = {.lex_state = 184}, + [7718] = {.lex_state = 162}, + [7719] = {.lex_state = 2}, + [7720] = {.lex_state = 184}, + [7721] = {.lex_state = 184}, + [7722] = {.lex_state = 360}, + [7723] = {.lex_state = 162}, + [7724] = {.lex_state = 360}, + [7725] = {.lex_state = 162}, + [7726] = {.lex_state = 162}, + [7727] = {.lex_state = 184}, + [7728] = {.lex_state = 184}, + [7729] = {.lex_state = 234}, + [7730] = {.lex_state = 49}, + [7731] = {.lex_state = 2}, + [7732] = {.lex_state = 14}, + [7733] = {.lex_state = 1771}, + [7734] = {.lex_state = 1771}, + [7735] = {.lex_state = 162}, + [7736] = {.lex_state = 1771}, + [7737] = {.lex_state = 92}, + [7738] = {.lex_state = 1771}, + [7739] = {.lex_state = 162}, + [7740] = {.lex_state = 1771}, + [7741] = {.lex_state = 1771}, + [7742] = {.lex_state = 162}, + [7743] = {.lex_state = 1771}, + [7744] = {.lex_state = 162}, + [7745] = {.lex_state = 162}, + [7746] = {.lex_state = 1771}, + [7747] = {.lex_state = 1771}, + [7748] = {.lex_state = 162}, + [7749] = {.lex_state = 162}, + [7750] = {.lex_state = 1771}, + [7751] = {.lex_state = 162}, + [7752] = {.lex_state = 1771}, + [7753] = {.lex_state = 184}, + [7754] = {.lex_state = 1770}, + [7755] = {.lex_state = 1771}, + [7756] = {.lex_state = 1771}, + [7757] = {.lex_state = 1771}, + [7758] = {.lex_state = 1770}, + [7759] = {.lex_state = 162}, + [7760] = {.lex_state = 1771}, + [7761] = {.lex_state = 1771}, + [7762] = {.lex_state = 1771}, + [7763] = {.lex_state = 1771}, + [7764] = {.lex_state = 162}, + [7765] = {.lex_state = 92}, + [7766] = {.lex_state = 1771}, + [7767] = {.lex_state = 1771}, + [7768] = {.lex_state = 162}, + [7769] = {.lex_state = 162}, + [7770] = {.lex_state = 162}, + [7771] = {.lex_state = 162}, + [7772] = {.lex_state = 162}, + [7773] = {.lex_state = 162}, + [7774] = {.lex_state = 1771}, + [7775] = {.lex_state = 257}, + [7776] = {.lex_state = 408}, + [7777] = {.lex_state = 1771}, + [7778] = {.lex_state = 1770}, + [7779] = {.lex_state = 315}, + [7780] = {.lex_state = 1771}, + [7781] = {.lex_state = 162}, + [7782] = {.lex_state = 184}, + [7783] = {.lex_state = 257}, + [7784] = {.lex_state = 313}, + [7785] = {.lex_state = 1771}, + [7786] = {.lex_state = 162}, + [7787] = {.lex_state = 1771}, + [7788] = {.lex_state = 162}, + [7789] = {.lex_state = 184}, + [7790] = {.lex_state = 360}, + [7791] = {.lex_state = 234}, + [7792] = {.lex_state = 234}, + [7793] = {.lex_state = 1767}, + [7794] = {.lex_state = 90}, + [7795] = {.lex_state = 1771}, + [7796] = {.lex_state = 1771}, + [7797] = {.lex_state = 1771}, + [7798] = {.lex_state = 162}, + [7799] = {.lex_state = 433}, + [7800] = {.lex_state = 1771}, + [7801] = {.lex_state = 1767}, + [7802] = {.lex_state = 162}, + [7803] = {.lex_state = 436}, + [7804] = {.lex_state = 360}, + [7805] = {.lex_state = 432}, + [7806] = {.lex_state = 1771}, + [7807] = {.lex_state = 162}, + [7808] = {.lex_state = 410}, + [7809] = {.lex_state = 356}, + [7810] = {.lex_state = 422}, + [7811] = {.lex_state = 430}, + [7812] = {.lex_state = 1771}, + [7813] = {.lex_state = 162}, + [7814] = {.lex_state = 162}, + [7815] = {.lex_state = 162}, + [7816] = {.lex_state = 234}, + [7817] = {.lex_state = 162}, + [7818] = {.lex_state = 234}, + [7819] = {.lex_state = 162}, + [7820] = {.lex_state = 162}, + [7821] = {.lex_state = 1771}, + [7822] = {.lex_state = 1771}, + [7823] = {.lex_state = 1771}, + [7824] = {.lex_state = 1771}, + [7825] = {.lex_state = 162}, + [7826] = {.lex_state = 234}, + [7827] = {.lex_state = 162}, + [7828] = {.lex_state = 162}, + [7829] = {.lex_state = 234}, + [7830] = {.lex_state = 1771}, + [7831] = {.lex_state = 1771}, + [7832] = {.lex_state = 49}, + [7833] = {.lex_state = 1771}, + [7834] = {.lex_state = 1771}, + [7835] = {.lex_state = 234}, + [7836] = {.lex_state = 162}, + [7837] = {.lex_state = 234}, + [7838] = {.lex_state = 432}, + [7839] = {.lex_state = 162}, + [7840] = {.lex_state = 1771}, + [7841] = {.lex_state = 1771}, + [7842] = {.lex_state = 234}, + [7843] = {.lex_state = 1771}, + [7844] = {.lex_state = 1771}, + [7845] = {.lex_state = 234}, + [7846] = {.lex_state = 162}, + [7847] = {.lex_state = 234}, + [7848] = {.lex_state = 162}, + [7849] = {.lex_state = 1771}, + [7850] = {.lex_state = 1771}, + [7851] = {.lex_state = 162}, + [7852] = {.lex_state = 1771}, + [7853] = {.lex_state = 1771}, + [7854] = {.lex_state = 234}, + [7855] = {.lex_state = 162}, + [7856] = {.lex_state = 162}, + [7857] = {.lex_state = 234}, + [7858] = {.lex_state = 162}, + [7859] = {.lex_state = 162}, + [7860] = {.lex_state = 1771}, + [7861] = {.lex_state = 1771}, + [7862] = {.lex_state = 1771}, + [7863] = {.lex_state = 1771}, + [7864] = {.lex_state = 234}, + [7865] = {.lex_state = 1771}, + [7866] = {.lex_state = 234}, + [7867] = {.lex_state = 234}, + [7868] = {.lex_state = 1771}, + [7869] = {.lex_state = 1771}, + [7870] = {.lex_state = 1771}, + [7871] = {.lex_state = 1771}, + [7872] = {.lex_state = 234}, + [7873] = {.lex_state = 162}, + [7874] = {.lex_state = 234}, + [7875] = {.lex_state = 1771}, + [7876] = {.lex_state = 1771}, + [7877] = {.lex_state = 162}, + [7878] = {.lex_state = 1771}, + [7879] = {.lex_state = 1771}, + [7880] = {.lex_state = 234}, + [7881] = {.lex_state = 162}, + [7882] = {.lex_state = 234}, + [7883] = {.lex_state = 436}, + [7884] = {.lex_state = 1771}, + [7885] = {.lex_state = 1771}, + [7886] = {.lex_state = 162}, + [7887] = {.lex_state = 1771}, + [7888] = {.lex_state = 1771}, + [7889] = {.lex_state = 234}, + [7890] = {.lex_state = 162}, + [7891] = {.lex_state = 234}, + [7892] = {.lex_state = 1771}, + [7893] = {.lex_state = 1771}, + [7894] = {.lex_state = 1771}, + [7895] = {.lex_state = 1771}, + [7896] = {.lex_state = 162}, + [7897] = {.lex_state = 1771}, + [7898] = {.lex_state = 1771}, + [7899] = {.lex_state = 234}, + [7900] = {.lex_state = 1771}, + [7901] = {.lex_state = 1771}, + [7902] = {.lex_state = 234}, + [7903] = {.lex_state = 1771}, + [7904] = {.lex_state = 1771}, + [7905] = {.lex_state = 1771}, + [7906] = {.lex_state = 1771}, + [7907] = {.lex_state = 1771}, + [7908] = {.lex_state = 1771}, + [7909] = {.lex_state = 1771}, + [7910] = {.lex_state = 234}, + [7911] = {.lex_state = 1771}, + [7912] = {.lex_state = 234}, + [7913] = {.lex_state = 1771}, + [7914] = {.lex_state = 1771}, + [7915] = {.lex_state = 1771}, + [7916] = {.lex_state = 1771}, + [7917] = {.lex_state = 234}, + [7918] = {.lex_state = 234}, + [7919] = {.lex_state = 1771}, + [7920] = {.lex_state = 1771}, + [7921] = {.lex_state = 162}, + [7922] = {.lex_state = 1771}, + [7923] = {.lex_state = 1771}, + [7924] = {.lex_state = 234}, + [7925] = {.lex_state = 234}, + [7926] = {.lex_state = 1771}, + [7927] = {.lex_state = 1771}, + [7928] = {.lex_state = 1771}, + [7929] = {.lex_state = 1771}, + [7930] = {.lex_state = 234}, + [7931] = {.lex_state = 234}, + [7932] = {.lex_state = 1771}, + [7933] = {.lex_state = 1771}, + [7934] = {.lex_state = 1771}, + [7935] = {.lex_state = 1771}, + [7936] = {.lex_state = 1771}, + [7937] = {.lex_state = 234}, + [7938] = {.lex_state = 234}, + [7939] = {.lex_state = 1771}, + [7940] = {.lex_state = 1771}, + [7941] = {.lex_state = 1771}, + [7942] = {.lex_state = 1771}, + [7943] = {.lex_state = 234}, + [7944] = {.lex_state = 234}, + [7945] = {.lex_state = 1771}, + [7946] = {.lex_state = 1771}, + [7947] = {.lex_state = 1771}, + [7948] = {.lex_state = 1771}, + [7949] = {.lex_state = 359}, + [7950] = {.lex_state = 162}, + [7951] = {.lex_state = 360}, + [7952] = {.lex_state = 1771}, + [7953] = {.lex_state = 1771}, + [7954] = {.lex_state = 439}, + [7955] = {.lex_state = 162}, + [7956] = {.lex_state = 1771}, + [7957] = {.lex_state = 162}, + [7958] = {.lex_state = 433}, + [7959] = {.lex_state = 162}, + [7960] = {.lex_state = 360}, + [7961] = {.lex_state = 313}, + [7962] = {.lex_state = 370}, + [7963] = {.lex_state = 162}, + [7964] = {.lex_state = 162}, + [7965] = {.lex_state = 1771}, + [7966] = {.lex_state = 162}, + [7967] = {.lex_state = 162}, + [7968] = {.lex_state = 162}, + [7969] = {.lex_state = 162}, + [7970] = {.lex_state = 162}, + [7971] = {.lex_state = 430}, + [7972] = {.lex_state = 162}, + [7973] = {.lex_state = 1771}, + [7974] = {.lex_state = 162}, + [7975] = {.lex_state = 162}, + [7976] = {.lex_state = 162}, + [7977] = {.lex_state = 1771}, + [7978] = {.lex_state = 1771}, + [7979] = {.lex_state = 1771}, + [7980] = {.lex_state = 5580}, + [7981] = {.lex_state = 5580}, + [7982] = {.lex_state = 5584}, + [7983] = {.lex_state = 5584}, + [7984] = {.lex_state = 162}, + [7985] = {.lex_state = 1771}, + [7986] = {.lex_state = 1771}, + [7987] = {.lex_state = 1771}, + [7988] = {.lex_state = 1771}, + [7989] = {.lex_state = 437}, + [7990] = {.lex_state = 423}, + [7991] = {.lex_state = 418}, + [7992] = {.lex_state = 1771}, + [7993] = {.lex_state = 162}, + [7994] = {.lex_state = 160}, + [7995] = {.lex_state = 1771}, + [7996] = {.lex_state = 1749}, + [7997] = {.lex_state = 1771}, + [7998] = {.lex_state = 1771}, + [7999] = {.lex_state = 1771}, + [8000] = {.lex_state = 1771}, + [8001] = {.lex_state = 1771}, + [8002] = {.lex_state = 162}, + [8003] = {.lex_state = 1771}, + [8004] = {.lex_state = 160}, + [8005] = {.lex_state = 1771}, + [8006] = {.lex_state = 1771}, + [8007] = {.lex_state = 1771}, + [8008] = {.lex_state = 439}, + [8009] = {.lex_state = 162}, + [8010] = {.lex_state = 437}, + [8011] = {.lex_state = 5584}, + [8012] = {.lex_state = 5584}, + [8013] = {.lex_state = 1771}, + [8014] = {.lex_state = 1771}, + [8015] = {.lex_state = 160}, + [8016] = {.lex_state = 162}, + [8017] = {.lex_state = 5584}, + [8018] = {.lex_state = 423}, + [8019] = {.lex_state = 1771}, + [8020] = {.lex_state = 162}, + [8021] = {.lex_state = 423}, + [8022] = {.lex_state = 162}, + [8023] = {.lex_state = 1772}, + [8024] = {.lex_state = 423}, + [8025] = {.lex_state = 1771}, + [8026] = {.lex_state = 437}, + [8027] = {.lex_state = 423}, + [8028] = {.lex_state = 1771}, + [8029] = {.lex_state = 1771}, + [8030] = {.lex_state = 1807}, + [8031] = {.lex_state = 1771}, + [8032] = {.lex_state = 162}, + [8033] = {.lex_state = 1771}, + [8034] = {.lex_state = 1771}, + [8035] = {.lex_state = 1771}, + [8036] = {.lex_state = 433}, + [8037] = {.lex_state = 1771}, + [8038] = {.lex_state = 1771}, + [8039] = {.lex_state = 5580}, + [8040] = {.lex_state = 5580}, + [8041] = {.lex_state = 41}, + [8042] = {.lex_state = 14}, + [8043] = {.lex_state = 5582}, + [8044] = {.lex_state = 1771}, + [8045] = {.lex_state = 1772}, + [8046] = {.lex_state = 1771}, + [8047] = {.lex_state = 5584}, + [8048] = {.lex_state = 5584}, + [8049] = {.lex_state = 1771}, + [8050] = {.lex_state = 1771}, + [8051] = {.lex_state = 433}, + [8052] = {.lex_state = 160}, + [8053] = {.lex_state = 162}, + [8054] = {.lex_state = 423}, + [8055] = {.lex_state = 162}, + [8056] = {.lex_state = 162}, + [8057] = {.lex_state = 160}, + [8058] = {.lex_state = 1771}, + [8059] = {.lex_state = 1771}, + [8060] = {.lex_state = 423}, + [8061] = {.lex_state = 437}, + [8062] = {.lex_state = 5580}, + [8063] = {.lex_state = 437}, + [8064] = {.lex_state = 433}, + [8065] = {.lex_state = 5582}, + [8066] = {.lex_state = 1771}, + [8067] = {.lex_state = 1771}, + [8068] = {.lex_state = 14}, + [8069] = {.lex_state = 162}, + [8070] = {.lex_state = 162}, + [8071] = {.lex_state = 5580}, + [8072] = {.lex_state = 1771}, + [8073] = {.lex_state = 162}, + [8074] = {.lex_state = 162}, + [8075] = {.lex_state = 162}, + [8076] = {.lex_state = 1771}, + [8077] = {.lex_state = 4200}, + [8078] = {.lex_state = 162}, + [8079] = {.lex_state = 162}, + [8080] = {.lex_state = 162}, + [8081] = {.lex_state = 162}, + [8082] = {.lex_state = 5580}, + [8083] = {.lex_state = 1771}, + [8084] = {.lex_state = 162}, + [8085] = {.lex_state = 160}, + [8086] = {.lex_state = 162}, + [8087] = {.lex_state = 1707}, + [8088] = {.lex_state = 1767}, + [8089] = {.lex_state = 162}, + [8090] = {.lex_state = 1771}, + [8091] = {.lex_state = 160}, + [8092] = {.lex_state = 1771}, + [8093] = {.lex_state = 1771}, + [8094] = {.lex_state = 160}, + [8095] = {.lex_state = 1771}, + [8096] = {.lex_state = 162}, + [8097] = {.lex_state = 423}, + [8098] = {.lex_state = 1771}, + [8099] = {.lex_state = 1771}, + [8100] = {.lex_state = 1771}, + [8101] = {.lex_state = 162}, + [8102] = {.lex_state = 5580}, + [8103] = {.lex_state = 5580}, + [8104] = {.lex_state = 1771}, + [8105] = {.lex_state = 47}, + [8106] = {.lex_state = 1771}, + [8107] = {.lex_state = 1771}, + [8108] = {.lex_state = 1771}, + [8109] = {.lex_state = 1771}, + [8110] = {.lex_state = 160}, + [8111] = {.lex_state = 5580}, + [8112] = {.lex_state = 5584}, + [8113] = {.lex_state = 5584}, + [8114] = {.lex_state = 423}, + [8115] = {.lex_state = 1807}, + [8116] = {.lex_state = 1771}, + [8117] = {.lex_state = 1771}, + [8118] = {.lex_state = 1771}, + [8119] = {.lex_state = 160}, + [8120] = {.lex_state = 160}, + [8121] = {.lex_state = 5584}, + [8122] = {.lex_state = 1771}, + [8123] = {.lex_state = 5584}, + [8124] = {.lex_state = 1771}, + [8125] = {.lex_state = 1771}, + [8126] = {.lex_state = 1771}, + [8127] = {.lex_state = 162}, + [8128] = {.lex_state = 5580}, + [8129] = {.lex_state = 14}, + [8130] = {.lex_state = 160}, + [8131] = {.lex_state = 1771}, + [8132] = {.lex_state = 162}, + [8133] = {.lex_state = 1772}, + [8134] = {.lex_state = 160}, + [8135] = {.lex_state = 162}, + [8136] = {.lex_state = 1771}, + [8137] = {.lex_state = 1771}, + [8138] = {.lex_state = 162}, + [8139] = {.lex_state = 160}, + [8140] = {.lex_state = 5580}, + [8141] = {.lex_state = 5584}, + [8142] = {.lex_state = 5584}, + [8143] = {.lex_state = 5584}, + [8144] = {.lex_state = 1771}, + [8145] = {.lex_state = 5580}, + [8146] = {.lex_state = 5582}, + [8147] = {.lex_state = 1771}, + [8148] = {.lex_state = 5580}, + [8149] = {.lex_state = 5580}, + [8150] = {.lex_state = 5580}, + [8151] = {.lex_state = 5580}, + [8152] = {.lex_state = 5580}, + [8153] = {.lex_state = 5580}, + [8154] = {.lex_state = 1771}, + [8155] = {.lex_state = 1771}, + [8156] = {.lex_state = 1771}, + [8157] = {.lex_state = 1772}, + [8158] = {.lex_state = 162}, + [8159] = {.lex_state = 5580}, + [8160] = {.lex_state = 5580}, + [8161] = {.lex_state = 1771}, + [8162] = {.lex_state = 1771}, + [8163] = {.lex_state = 360}, + [8164] = {.lex_state = 1771}, + [8165] = {.lex_state = 1771}, + [8166] = {.lex_state = 1771}, + [8167] = {.lex_state = 5582}, + [8168] = {.lex_state = 433}, + [8169] = {.lex_state = 1771}, + [8170] = {.lex_state = 1771}, + [8171] = {.lex_state = 47}, + [8172] = {.lex_state = 162}, + [8173] = {.lex_state = 5582}, + [8174] = {.lex_state = 162}, + [8175] = {.lex_state = 1771}, + [8176] = {.lex_state = 1771}, + [8177] = {.lex_state = 1771}, + [8178] = {.lex_state = 1771}, + [8179] = {.lex_state = 162}, + [8180] = {.lex_state = 1771}, + [8181] = {.lex_state = 162}, + [8182] = {.lex_state = 423}, + [8183] = {.lex_state = 1771}, + [8184] = {.lex_state = 5580}, + [8185] = {.lex_state = 5580}, + [8186] = {.lex_state = 1771}, + [8187] = {.lex_state = 1771}, + [8188] = {.lex_state = 1771}, + [8189] = {.lex_state = 433}, + [8190] = {.lex_state = 433}, + [8191] = {.lex_state = 1771}, + [8192] = {.lex_state = 5580}, + [8193] = {.lex_state = 1771}, + [8194] = {.lex_state = 5584}, + [8195] = {.lex_state = 1771}, + [8196] = {.lex_state = 5584}, + [8197] = {.lex_state = 1771}, + [8198] = {.lex_state = 1771}, + [8199] = {.lex_state = 162}, + [8200] = {.lex_state = 184}, + [8201] = {.lex_state = 5580}, + [8202] = {.lex_state = 5580}, + [8203] = {.lex_state = 1771}, + [8204] = {.lex_state = 1771}, + [8205] = {.lex_state = 1771}, + [8206] = {.lex_state = 430}, + [8207] = {.lex_state = 160}, + [8208] = {.lex_state = 5580}, + [8209] = {.lex_state = 5580}, + [8210] = {.lex_state = 1771}, + [8211] = {.lex_state = 1771}, + [8212] = {.lex_state = 1771}, + [8213] = {.lex_state = 5584}, + [8214] = {.lex_state = 1771}, + [8215] = {.lex_state = 1771}, + [8216] = {.lex_state = 1771}, + [8217] = {.lex_state = 1771}, + [8218] = {.lex_state = 1771}, + [8219] = {.lex_state = 1771}, + [8220] = {.lex_state = 1771}, + [8221] = {.lex_state = 1771}, + [8222] = {.lex_state = 1771}, + [8223] = {.lex_state = 5580}, + [8224] = {.lex_state = 1771}, + [8225] = {.lex_state = 1771, .external_lex_state = 3}, + [8226] = {.lex_state = 2}, + [8227] = {.lex_state = 423}, + [8228] = {.lex_state = 433}, + [8229] = {.lex_state = 1771}, + [8230] = {.lex_state = 1771}, + [8231] = {.lex_state = 1771}, + [8232] = {.lex_state = 1771}, + [8233] = {.lex_state = 255}, + [8234] = {.lex_state = 1771}, + [8235] = {.lex_state = 1771}, + [8236] = {.lex_state = 1771}, + [8237] = {.lex_state = 1771}, + [8238] = {.lex_state = 1771}, + [8239] = {.lex_state = 1767}, + [8240] = {.lex_state = 425}, + [8241] = {.lex_state = 1771}, + [8242] = {.lex_state = 1771}, + [8243] = {.lex_state = 1771, .external_lex_state = 3}, + [8244] = {.lex_state = 1771}, + [8245] = {.lex_state = 1771, .external_lex_state = 3}, + [8246] = {.lex_state = 1771}, + [8247] = {.lex_state = 255}, + [8248] = {.lex_state = 1771}, + [8249] = {.lex_state = 1771}, + [8250] = {.lex_state = 1771, .external_lex_state = 3}, + [8251] = {.lex_state = 423}, + [8252] = {.lex_state = 1771}, + [8253] = {.lex_state = 1771}, + [8254] = {.lex_state = 1771}, + [8255] = {.lex_state = 1771}, + [8256] = {.lex_state = 1771}, + [8257] = {.lex_state = 1771}, + [8258] = {.lex_state = 1771}, + [8259] = {.lex_state = 3228}, + [8260] = {.lex_state = 1771, .external_lex_state = 3}, + [8261] = {.lex_state = 423}, + [8262] = {.lex_state = 3228}, + [8263] = {.lex_state = 3228}, + [8264] = {.lex_state = 1767}, + [8265] = {.lex_state = 433}, + [8266] = {.lex_state = 1771}, + [8267] = {.lex_state = 423}, + [8268] = {.lex_state = 1771}, + [8269] = {.lex_state = 1771, .external_lex_state = 3}, + [8270] = {.lex_state = 1771, .external_lex_state = 3}, + [8271] = {.lex_state = 1771}, + [8272] = {.lex_state = 1771}, + [8273] = {.lex_state = 1772}, + [8274] = {.lex_state = 1767}, + [8275] = {.lex_state = 1771, .external_lex_state = 3}, + [8276] = {.lex_state = 1771}, + [8277] = {.lex_state = 1771}, + [8278] = {.lex_state = 1771}, + [8279] = {.lex_state = 2}, + [8280] = {.lex_state = 1771}, + [8281] = {.lex_state = 1771}, + [8282] = {.lex_state = 1771}, + [8283] = {.lex_state = 1771}, + [8284] = {.lex_state = 1771, .external_lex_state = 3}, + [8285] = {.lex_state = 423}, + [8286] = {.lex_state = 1771}, + [8287] = {.lex_state = 433}, + [8288] = {.lex_state = 160}, + [8289] = {.lex_state = 41}, + [8290] = {.lex_state = 1771}, + [8291] = {.lex_state = 1771}, + [8292] = {.lex_state = 1771}, + [8293] = {.lex_state = 1771}, + [8294] = {.lex_state = 4200}, + [8295] = {.lex_state = 1771}, + [8296] = {.lex_state = 1771}, + [8297] = {.lex_state = 1771}, + [8298] = {.lex_state = 428}, + [8299] = {.lex_state = 1771}, + [8300] = {.lex_state = 1771}, + [8301] = {.lex_state = 1771}, + [8302] = {.lex_state = 1771, .external_lex_state = 4}, + [8303] = {.lex_state = 1771, .external_lex_state = 3}, + [8304] = {.lex_state = 3228}, + [8305] = {.lex_state = 2}, + [8306] = {.lex_state = 1771, .external_lex_state = 3}, + [8307] = {.lex_state = 1771}, + [8308] = {.lex_state = 1771}, + [8309] = {.lex_state = 1771}, + [8310] = {.lex_state = 2}, + [8311] = {.lex_state = 1771}, + [8312] = {.lex_state = 1771}, + [8313] = {.lex_state = 1771}, + [8314] = {.lex_state = 3228}, + [8315] = {.lex_state = 1771}, + [8316] = {.lex_state = 1771}, + [8317] = {.lex_state = 1771, .external_lex_state = 3}, + [8318] = {.lex_state = 1771, .external_lex_state = 3}, + [8319] = {.lex_state = 433}, + [8320] = {.lex_state = 1771}, + [8321] = {.lex_state = 1771}, + [8322] = {.lex_state = 1771}, + [8323] = {.lex_state = 3228}, + [8324] = {.lex_state = 423}, + [8325] = {.lex_state = 3228}, + [8326] = {.lex_state = 1771}, + [8327] = {.lex_state = 1767}, + [8328] = {.lex_state = 1771, .external_lex_state = 3}, + [8329] = {.lex_state = 427}, + [8330] = {.lex_state = 1771}, + [8331] = {.lex_state = 1771}, + [8332] = {.lex_state = 1771}, + [8333] = {.lex_state = 1771}, + [8334] = {.lex_state = 1771}, + [8335] = {.lex_state = 1767}, + [8336] = {.lex_state = 3228}, + [8337] = {.lex_state = 1771}, + [8338] = {.lex_state = 1771}, + [8339] = {.lex_state = 3228}, + [8340] = {.lex_state = 1767}, + [8341] = {.lex_state = 1767}, + [8342] = {.lex_state = 3228}, + [8343] = {.lex_state = 1771}, + [8344] = {.lex_state = 423}, + [8345] = {.lex_state = 1771}, + [8346] = {.lex_state = 3228}, + [8347] = {.lex_state = 1771, .external_lex_state = 3}, + [8348] = {.lex_state = 1771}, + [8349] = {.lex_state = 14}, + [8350] = {.lex_state = 1771}, + [8351] = {.lex_state = 1771}, + [8352] = {.lex_state = 1771}, + [8353] = {.lex_state = 1771}, + [8354] = {.lex_state = 1771, .external_lex_state = 3}, + [8355] = {.lex_state = 427}, + [8356] = {.lex_state = 423}, + [8357] = {.lex_state = 5580}, + [8358] = {.lex_state = 1771}, + [8359] = {.lex_state = 1771}, + [8360] = {.lex_state = 1771, .external_lex_state = 3}, + [8361] = {.lex_state = 1771}, + [8362] = {.lex_state = 41}, + [8363] = {.lex_state = 1771}, + [8364] = {.lex_state = 1771, .external_lex_state = 3}, + [8365] = {.lex_state = 1767}, + [8366] = {.lex_state = 1771}, + [8367] = {.lex_state = 1771, .external_lex_state = 4}, + [8368] = {.lex_state = 1771}, + [8369] = {.lex_state = 1771}, + [8370] = {.lex_state = 2}, + [8371] = {.lex_state = 1771, .external_lex_state = 3}, + [8372] = {.lex_state = 1771}, + [8373] = {.lex_state = 1771, .external_lex_state = 3}, + [8374] = {.lex_state = 1771, .external_lex_state = 3}, + [8375] = {.lex_state = 1771}, + [8376] = {.lex_state = 1771}, + [8377] = {.lex_state = 1771}, + [8378] = {.lex_state = 1771, .external_lex_state = 3}, + [8379] = {.lex_state = 1771, .external_lex_state = 3}, + [8380] = {.lex_state = 423}, + [8381] = {.lex_state = 1771}, + [8382] = {.lex_state = 1771}, + [8383] = {.lex_state = 1771}, + [8384] = {.lex_state = 1771}, + [8385] = {.lex_state = 1771}, + [8386] = {.lex_state = 1771, .external_lex_state = 3}, + [8387] = {.lex_state = 1771}, + [8388] = {.lex_state = 1771, .external_lex_state = 4}, + [8389] = {.lex_state = 2}, + [8390] = {.lex_state = 1771, .external_lex_state = 4}, + [8391] = {.lex_state = 2}, + [8392] = {.lex_state = 2}, + [8393] = {.lex_state = 1771}, + [8394] = {.lex_state = 3228}, + [8395] = {.lex_state = 14}, + [8396] = {.lex_state = 1771}, + [8397] = {.lex_state = 1771, .external_lex_state = 3}, + [8398] = {.lex_state = 1771}, + [8399] = {.lex_state = 2}, + [8400] = {.lex_state = 1771}, + [8401] = {.lex_state = 1771}, + [8402] = {.lex_state = 1771}, + [8403] = {.lex_state = 1771, .external_lex_state = 3}, + [8404] = {.lex_state = 1771}, + [8405] = {.lex_state = 1771, .external_lex_state = 4}, + [8406] = {.lex_state = 2}, + [8407] = {.lex_state = 1771}, + [8408] = {.lex_state = 1767}, + [8409] = {.lex_state = 1771}, + [8410] = {.lex_state = 3228}, + [8411] = {.lex_state = 1771}, + [8412] = {.lex_state = 1771}, + [8413] = {.lex_state = 433}, + [8414] = {.lex_state = 1767}, + [8415] = {.lex_state = 433}, + [8416] = {.lex_state = 1771}, + [8417] = {.lex_state = 423}, + [8418] = {.lex_state = 1771, .external_lex_state = 3}, + [8419] = {.lex_state = 1771, .external_lex_state = 4}, + [8420] = {.lex_state = 2}, + [8421] = {.lex_state = 5582}, + [8422] = {.lex_state = 433}, + [8423] = {.lex_state = 2}, + [8424] = {.lex_state = 5598}, + [8425] = {.lex_state = 1771}, + [8426] = {.lex_state = 1771}, + [8427] = {.lex_state = 5584}, + [8428] = {.lex_state = 1771}, + [8429] = {.lex_state = 1771, .external_lex_state = 3}, + [8430] = {.lex_state = 1771, .external_lex_state = 3}, + [8431] = {.lex_state = 10}, + [8432] = {.lex_state = 1771}, + [8433] = {.lex_state = 1771, .external_lex_state = 4}, + [8434] = {.lex_state = 2}, + [8435] = {.lex_state = 1771}, + [8436] = {.lex_state = 423}, + [8437] = {.lex_state = 433}, + [8438] = {.lex_state = 1771, .external_lex_state = 3}, + [8439] = {.lex_state = 1771}, + [8440] = {.lex_state = 1771}, + [8441] = {.lex_state = 1771}, + [8442] = {.lex_state = 1771}, + [8443] = {.lex_state = 423}, + [8444] = {.lex_state = 1771}, + [8445] = {.lex_state = 41}, + [8446] = {.lex_state = 1771, .external_lex_state = 4}, + [8447] = {.lex_state = 2}, + [8448] = {.lex_state = 1771}, + [8449] = {.lex_state = 44}, + [8450] = {.lex_state = 1771}, + [8451] = {.lex_state = 1771}, + [8452] = {.lex_state = 1771}, + [8453] = {.lex_state = 1771}, + [8454] = {.lex_state = 1771}, + [8455] = {.lex_state = 1771}, + [8456] = {.lex_state = 10}, + [8457] = {.lex_state = 41}, + [8458] = {.lex_state = 1771}, + [8459] = {.lex_state = 1771, .external_lex_state = 4}, + [8460] = {.lex_state = 2}, + [8461] = {.lex_state = 1771}, + [8462] = {.lex_state = 1771, .external_lex_state = 3}, + [8463] = {.lex_state = 1771}, + [8464] = {.lex_state = 1771}, + [8465] = {.lex_state = 1771}, + [8466] = {.lex_state = 5580}, + [8467] = {.lex_state = 5580}, + [8468] = {.lex_state = 433}, + [8469] = {.lex_state = 1771}, + [8470] = {.lex_state = 1771}, + [8471] = {.lex_state = 41}, + [8472] = {.lex_state = 1771, .external_lex_state = 4}, + [8473] = {.lex_state = 2}, + [8474] = {.lex_state = 1771}, + [8475] = {.lex_state = 1771}, + [8476] = {.lex_state = 1771}, + [8477] = {.lex_state = 1771}, + [8478] = {.lex_state = 426}, + [8479] = {.lex_state = 1771, .external_lex_state = 3}, + [8480] = {.lex_state = 1771}, + [8481] = {.lex_state = 427}, + [8482] = {.lex_state = 1771}, + [8483] = {.lex_state = 1771}, + [8484] = {.lex_state = 1771}, + [8485] = {.lex_state = 1771, .external_lex_state = 4}, + [8486] = {.lex_state = 2}, + [8487] = {.lex_state = 1767}, + [8488] = {.lex_state = 1771, .external_lex_state = 3}, + [8489] = {.lex_state = 423}, + [8490] = {.lex_state = 5584}, + [8491] = {.lex_state = 1771, .external_lex_state = 3}, + [8492] = {.lex_state = 1771}, + [8493] = {.lex_state = 1771}, + [8494] = {.lex_state = 1771}, + [8495] = {.lex_state = 428}, + [8496] = {.lex_state = 1771}, + [8497] = {.lex_state = 1771}, + [8498] = {.lex_state = 1771, .external_lex_state = 4}, + [8499] = {.lex_state = 2}, + [8500] = {.lex_state = 1771}, + [8501] = {.lex_state = 1771}, + [8502] = {.lex_state = 1771}, + [8503] = {.lex_state = 1771}, + [8504] = {.lex_state = 1771, .external_lex_state = 3}, + [8505] = {.lex_state = 2}, + [8506] = {.lex_state = 1771}, + [8507] = {.lex_state = 1771}, + [8508] = {.lex_state = 1771}, + [8509] = {.lex_state = 423}, + [8510] = {.lex_state = 1771}, + [8511] = {.lex_state = 1771, .external_lex_state = 4}, + [8512] = {.lex_state = 2}, + [8513] = {.lex_state = 1771}, + [8514] = {.lex_state = 1771}, + [8515] = {.lex_state = 2}, + [8516] = {.lex_state = 1771}, + [8517] = {.lex_state = 1771, .external_lex_state = 3}, + [8518] = {.lex_state = 1771, .external_lex_state = 3}, + [8519] = {.lex_state = 1771}, + [8520] = {.lex_state = 1771}, + [8521] = {.lex_state = 44}, + [8522] = {.lex_state = 1771, .external_lex_state = 3}, + [8523] = {.lex_state = 1771}, + [8524] = {.lex_state = 1771, .external_lex_state = 4}, + [8525] = {.lex_state = 2}, + [8526] = {.lex_state = 433}, + [8527] = {.lex_state = 2}, + [8528] = {.lex_state = 1771}, + [8529] = {.lex_state = 423}, + [8530] = {.lex_state = 433}, + [8531] = {.lex_state = 433}, + [8532] = {.lex_state = 1771, .external_lex_state = 3}, + [8533] = {.lex_state = 1771}, + [8534] = {.lex_state = 1771, .external_lex_state = 4}, + [8535] = {.lex_state = 2}, + [8536] = {.lex_state = 1771}, + [8537] = {.lex_state = 1771}, + [8538] = {.lex_state = 5582}, + [8539] = {.lex_state = 1771, .external_lex_state = 3}, + [8540] = {.lex_state = 255}, + [8541] = {.lex_state = 423}, + [8542] = {.lex_state = 1771}, + [8543] = {.lex_state = 439}, + [8544] = {.lex_state = 1771, .external_lex_state = 4}, + [8545] = {.lex_state = 1771}, + [8546] = {.lex_state = 1771, .external_lex_state = 3}, + [8547] = {.lex_state = 433}, + [8548] = {.lex_state = 2}, + [8549] = {.lex_state = 5582}, + [8550] = {.lex_state = 1771}, + [8551] = {.lex_state = 1771, .external_lex_state = 3}, + [8552] = {.lex_state = 1771}, + [8553] = {.lex_state = 1771, .external_lex_state = 4}, + [8554] = {.lex_state = 1771}, + [8555] = {.lex_state = 5584}, + [8556] = {.lex_state = 41}, + [8557] = {.lex_state = 1851}, + [8558] = {.lex_state = 1771}, + [8559] = {.lex_state = 1771}, + [8560] = {.lex_state = 1771}, + [8561] = {.lex_state = 1771}, + [8562] = {.lex_state = 1771, .external_lex_state = 4}, + [8563] = {.lex_state = 1771}, + [8564] = {.lex_state = 1771}, + [8565] = {.lex_state = 1771}, + [8566] = {.lex_state = 1771}, + [8567] = {.lex_state = 1771}, + [8568] = {.lex_state = 1771}, + [8569] = {.lex_state = 1771, .external_lex_state = 3}, + [8570] = {.lex_state = 315}, + [8571] = {.lex_state = 1771, .external_lex_state = 4}, + [8572] = {.lex_state = 1771, .external_lex_state = 4}, + [8573] = {.lex_state = 1771, .external_lex_state = 4}, + [8574] = {.lex_state = 1771, .external_lex_state = 4}, + [8575] = {.lex_state = 1771, .external_lex_state = 4}, + [8576] = {.lex_state = 1771, .external_lex_state = 4}, + [8577] = {.lex_state = 1771, .external_lex_state = 4}, + [8578] = {.lex_state = 1771, .external_lex_state = 4}, + [8579] = {.lex_state = 1771, .external_lex_state = 4}, + [8580] = {.lex_state = 1771, .external_lex_state = 4}, + [8581] = {.lex_state = 1771, .external_lex_state = 4}, + [8582] = {.lex_state = 1771, .external_lex_state = 4}, + [8583] = {.lex_state = 1771, .external_lex_state = 4}, + [8584] = {.lex_state = 1771, .external_lex_state = 4}, + [8585] = {.lex_state = 1771, .external_lex_state = 4}, + [8586] = {.lex_state = 1771, .external_lex_state = 4}, + [8587] = {.lex_state = 1771, .external_lex_state = 4}, + [8588] = {.lex_state = 1771, .external_lex_state = 4}, + [8589] = {.lex_state = 1771, .external_lex_state = 4}, + [8590] = {.lex_state = 1771, .external_lex_state = 4}, + [8591] = {.lex_state = 1771, .external_lex_state = 4}, + [8592] = {.lex_state = 1771, .external_lex_state = 4}, + [8593] = {.lex_state = 1771, .external_lex_state = 4}, + [8594] = {.lex_state = 1771, .external_lex_state = 4}, + [8595] = {.lex_state = 1771, .external_lex_state = 4}, + [8596] = {.lex_state = 1771, .external_lex_state = 4}, + [8597] = {.lex_state = 1771, .external_lex_state = 4}, + [8598] = {.lex_state = 1771, .external_lex_state = 4}, + [8599] = {.lex_state = 1771, .external_lex_state = 4}, + [8600] = {.lex_state = 1771, .external_lex_state = 4}, + [8601] = {.lex_state = 1771}, + [8602] = {.lex_state = 1771}, + [8603] = {.lex_state = 160}, + [8604] = {.lex_state = 2}, + [8605] = {.lex_state = 1771, .external_lex_state = 3}, + [8606] = {.lex_state = 1771}, + [8607] = {.lex_state = 1771}, + [8608] = {.lex_state = 1771}, + [8609] = {.lex_state = 1771, .external_lex_state = 4}, + [8610] = {.lex_state = 1771}, + [8611] = {.lex_state = 3228}, + [8612] = {.lex_state = 1771}, + [8613] = {.lex_state = 1771, .external_lex_state = 3}, + [8614] = {.lex_state = 1771}, + [8615] = {.lex_state = 1771}, + [8616] = {.lex_state = 1771}, + [8617] = {.lex_state = 423}, + [8618] = {.lex_state = 1771}, + [8619] = {.lex_state = 10}, + [8620] = {.lex_state = 10}, + [8621] = {.lex_state = 1851}, + [8622] = {.lex_state = 1771}, + [8623] = {.lex_state = 2}, + [8624] = {.lex_state = 423}, + [8625] = {.lex_state = 433}, + [8626] = {.lex_state = 1771}, + [8627] = {.lex_state = 10}, + [8628] = {.lex_state = 10}, + [8629] = {.lex_state = 1771}, + [8630] = {.lex_state = 1771}, + [8631] = {.lex_state = 3228}, + [8632] = {.lex_state = 1771}, + [8633] = {.lex_state = 3228}, + [8634] = {.lex_state = 1771}, + [8635] = {.lex_state = 1771}, + [8636] = {.lex_state = 1767}, + [8637] = {.lex_state = 1771}, + [8638] = {.lex_state = 1772}, + [8639] = {.lex_state = 1771}, + [8640] = {.lex_state = 1771}, + [8641] = {.lex_state = 3228}, + [8642] = {.lex_state = 1771}, + [8643] = {.lex_state = 160}, + [8644] = {.lex_state = 1771}, + [8645] = {.lex_state = 1771}, + [8646] = {.lex_state = 1771}, + [8647] = {.lex_state = 1771}, + [8648] = {.lex_state = 1771}, + [8649] = {.lex_state = 427}, + [8650] = {.lex_state = 1771, .external_lex_state = 3}, + [8651] = {.lex_state = 3228}, + [8652] = {.lex_state = 1771}, + [8653] = {.lex_state = 1771}, + [8654] = {.lex_state = 1771}, + [8655] = {.lex_state = 1771}, + [8656] = {.lex_state = 1771}, + [8657] = {.lex_state = 1771}, + [8658] = {.lex_state = 1771}, + [8659] = {.lex_state = 1771}, + [8660] = {.lex_state = 1771}, + [8661] = {.lex_state = 1771}, + [8662] = {.lex_state = 1771}, + [8663] = {.lex_state = 1771}, + [8664] = {.lex_state = 1771, .external_lex_state = 3}, + [8665] = {.lex_state = 1771}, + [8666] = {.lex_state = 10}, + [8667] = {.lex_state = 1771}, + [8668] = {.lex_state = 1771}, + [8669] = {.lex_state = 1771, .external_lex_state = 3}, + [8670] = {.lex_state = 1771, .external_lex_state = 3}, + [8671] = {.lex_state = 423}, + [8672] = {.lex_state = 1767}, + [8673] = {.lex_state = 1771}, + [8674] = {.lex_state = 433}, + [8675] = {.lex_state = 41}, + [8676] = {.lex_state = 1771}, + [8677] = {.lex_state = 10}, + [8678] = {.lex_state = 255}, + [8679] = {.lex_state = 41}, + [8680] = {.lex_state = 428}, + [8681] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -69945,11 +72620,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1), [sym__str_back_ticks] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1), [aux_sym_record_entry_token1] = ACTIONS(1), [aux_sym_env_var_token1] = ACTIONS(1), [anon_sym_CARET] = 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), [aux_sym__unquoted_in_record_token2] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(3), @@ -69958,83 +72632,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(7790), - [sym_shebang] = STATE(75), - [sym__block_body_statement] = STATE(6699), - [sym__declaration] = STATE(6909), - [sym_decl_alias] = STATE(7077), - [sym_stmt_let] = STATE(7085), - [sym_stmt_mut] = STATE(7085), - [sym_stmt_const] = STATE(7085), - [sym_assignment] = STATE(7085), - [sym__mutable_assignment_pattern] = STATE(7069), - [sym__statement] = STATE(6909), - [sym_pipeline] = STATE(7085), - [sym__block_body] = STATE(7986), - [sym_cmd_identifier] = STATE(4789), - [sym_decl_def] = STATE(7077), - [sym_decl_export] = STATE(7077), - [sym_decl_extern] = STATE(7077), - [sym_decl_module] = STATE(7077), - [sym_decl_use] = STATE(7077), - [sym__ctrl_statement] = STATE(7085), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_for] = STATE(7233), - [sym_ctrl_loop] = STATE(7233), - [sym_ctrl_error] = STATE(7233), - [sym_ctrl_while] = STATE(7233), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_stmt_source] = STATE(7085), - [sym_stmt_register] = STATE(7085), - [sym__stmt_hide] = STATE(7085), - [sym_hide_mod] = STATE(6934), - [sym_hide_env] = STATE(6934), - [sym__stmt_overlay] = STATE(7085), - [sym_overlay_list] = STATE(6834), - [sym_overlay_hide] = STATE(6834), - [sym_overlay_new] = STATE(6834), - [sym_overlay_use] = STATE(6834), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), + [sym_nu_script] = STATE(8282), + [sym_shebang] = STATE(70), + [sym__block_body_statement] = STATE(6763), + [sym__declaration] = STATE(7752), + [sym_decl_alias] = STATE(7471), + [sym_stmt_let] = STATE(7480), + [sym_stmt_mut] = STATE(7480), + [sym_stmt_const] = STATE(7480), + [sym_assignment] = STATE(7480), + [sym__mutable_assignment_pattern] = STATE(7499), + [sym__statement] = STATE(7752), + [sym_pipeline] = STATE(7480), + [sym__block_body] = STATE(8662), + [sym_cmd_identifier] = STATE(5044), + [sym_decl_def] = STATE(7471), + [sym_decl_export] = STATE(7471), + [sym_decl_extern] = STATE(7471), + [sym_decl_module] = STATE(7471), + [sym_decl_use] = STATE(7471), + [sym__ctrl_statement] = STATE(7480), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_for] = STATE(7673), + [sym_ctrl_loop] = STATE(7673), + [sym_ctrl_error] = STATE(7673), + [sym_ctrl_while] = STATE(7673), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_stmt_source] = STATE(7480), + [sym_stmt_register] = STATE(7480), + [sym__stmt_hide] = STATE(7480), + [sym_hide_mod] = STATE(7738), + [sym_hide_env] = STATE(7738), + [sym__stmt_overlay] = STATE(7480), + [sym_overlay_list] = STATE(7418), + [sym_overlay_hide] = STATE(7418), + [sym_overlay_new] = STATE(7418), + [sym_overlay_use] = STATE(7418), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(833), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(7063), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(148), - [aux_sym_pipe_element_repeat2] = STATE(332), + [aux_sym_shebang_repeat1] = STATE(7414), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(117), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(328), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -70146,91 +72820,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(123), }, [2] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7791), - [sym_cmd_identifier] = STATE(4535), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym__match_pattern_record_variable] = STATE(717), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2034), - [sym__spread_parenthesized] = STATE(647), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(649), - [sym_val_variable] = STATE(164), - [sym_val_number] = STATE(2437), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2437), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(647), - [sym_record_body] = STATE(7811), - [sym_record_entry] = STATE(590), - [sym__record_key] = STATE(7812), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8510), + [sym_cmd_identifier] = STATE(4873), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym__match_pattern_record_variable] = STATE(699), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2112), + [sym__spread_parenthesized] = STATE(680), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(681), + [sym_val_variable] = STATE(162), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(680), + [sym_record_body] = STATE(8375), + [sym_record_entry] = STATE(591), + [sym__record_key] = STATE(8310), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym__match_pattern_record_repeat1] = STATE(217), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym__match_pattern_record_repeat1] = STATE(213), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(125), [anon_sym_alias] = ACTIONS(127), [anon_sym_let] = ACTIONS(129), @@ -70351,89 +73025,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [3] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8051), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7822), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8246), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8554), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -70554,89 +73228,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [4] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7791), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7811), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8283), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8554), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(4), [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -70757,89 +73431,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [5] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7772), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7789), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8510), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8375), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -70960,89 +73634,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [6] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7784), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7789), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8321), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8523), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(6), [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -71163,89 +73837,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [7] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8136), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7811), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8520), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8523), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -71366,89 +74040,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [8] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7784), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8172), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8618), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8375), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -71569,89 +74243,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [9] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8171), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8108), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8520), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8295), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -71772,89 +74446,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [10] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8107), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8167), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8293), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8601), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(10), [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -71975,89 +74649,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [11] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8053), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7964), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8568), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8497), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72178,89 +74852,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [12] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7963), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7886), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8496), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8657), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(12), [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72381,89 +75055,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [13] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7873), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7894), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8652), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8464), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72584,89 +75258,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [14] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8111), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7822), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8398), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8238), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72787,89 +75461,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [15] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7890), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8102), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8237), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8450), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72990,89 +75664,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [16] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8066), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7721), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8448), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8224), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73193,89 +75867,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [17] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7873), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7972), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8398), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8281), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73396,89 +76070,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [18] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8148), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7778), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8635), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(133), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8566), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(18), [aux_sym_shebang_repeat1] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73599,89 +76273,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [19] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7970), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(136), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7869), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8280), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(135), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8258), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(19), [aux_sym_shebang_repeat1] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73802,89 +76476,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [20] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7890), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7934), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8237), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8385), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74005,89 +76679,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [21] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7776), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(138), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7996), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8558), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(137), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8441), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74208,89 +76882,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [22] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7867), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8050), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8255), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(104), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8494), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74411,88 +77085,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [23] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7880), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8642), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(138), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74612,88 +77286,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [24] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8022), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8292), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74813,88 +77487,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [25] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8029), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8350), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75014,88 +77688,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [26] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7783), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8307), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(139), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75215,88 +77889,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [27] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8145), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8333), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75416,88 +78090,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [28] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7787), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8477), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75617,88 +78291,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [29] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8129), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8401), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75818,88 +78492,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [30] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8141), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8665), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76019,88 +78693,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [31] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8016), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8330), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76220,88 +78894,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [32] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7940), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8476), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76421,88 +79095,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [33] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8159), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(133), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8629), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76622,88 +79296,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [34] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7779), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8315), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76823,88 +79497,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [35] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8039), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(137), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8369), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -77024,88 +79698,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [36] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7797), - [sym_cmd_identifier] = STATE(4585), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(139), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2035), - [sym__spread_parenthesized] = STATE(7650), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(1483), - [sym_val_number] = STATE(2456), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(2383), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2456), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8653), + [sym_cmd_identifier] = STATE(4812), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2160), + [sym__spread_parenthesized] = STATE(8135), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(1481), + [sym_val_number] = STATE(2447), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(2431), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2447), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(205), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(203), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -77225,82 +79899,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [37] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8105), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8545), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(45), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -77412,82 +80086,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [38] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8051), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8321), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -77599,82 +80273,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [39] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7961), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8246), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(42), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -77786,82 +80460,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [40] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7772), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8514), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(40), [aux_sym_shebang_repeat1] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -77973,82 +80647,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [41] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7787), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8307), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(139), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(224), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -78159,82 +80833,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [42] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8111), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8350), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(224), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -78345,82 +81019,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [43] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8022), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8520), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -78531,82 +81205,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [44] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7784), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8283), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(42), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -78717,82 +81391,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [45] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8141), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8629), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(224), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -78903,82 +81577,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [46] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7783), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8333), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(282), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_shebang_repeat1] = STATE(224), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -79089,80 +81763,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7993), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8506), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(47), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -79274,80 +81948,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8109), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8383), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(48), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -79459,80 +82133,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8063), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8416), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(49), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -79644,80 +82318,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8153), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8299), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(50), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -79800,7 +82474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_RPAREN2] = ACTIONS(497), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -79829,80 +82503,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8104), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8440), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(51), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -79958,7 +82632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(499), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -79985,7 +82659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(499), + [anon_sym_RPAREN2] = ACTIONS(501), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -80014,80 +82688,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8048), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8268), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(52), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -80143,7 +82817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -80170,7 +82844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(503), + [anon_sym_RPAREN2] = ACTIONS(505), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -80199,80 +82873,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8059), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8366), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(53), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -80328,7 +83002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(507), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -80355,7 +83029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(507), + [anon_sym_RPAREN2] = ACTIONS(497), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -80384,80 +83058,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7735), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8493), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(54), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -80569,80 +83243,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8143), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8291), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(55), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -80725,7 +83399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(473), + [anon_sym_RPAREN2] = ACTIONS(497), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -80754,80 +83428,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7764), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8610), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(56), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -80939,80 +83613,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8106), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8607), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(57), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -81095,7 +83769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_RPAREN2] = ACTIONS(521), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -81124,80 +83798,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7817), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8552), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(58), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -81253,7 +83927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(523), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -81280,7 +83954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(523), + [anon_sym_RPAREN2] = ACTIONS(525), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -81309,80 +83983,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7844), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8565), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(59), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -81438,7 +84112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(527), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -81465,7 +84139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(527), + [anon_sym_RPAREN2] = ACTIONS(497), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -81494,80 +84168,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7801), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8614), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(60), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -81650,7 +84324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_RPAREN2] = ACTIONS(531), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -81679,80 +84353,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7959), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8311), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(61), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -81808,7 +84482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -81835,7 +84509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), + [anon_sym_RPAREN2] = ACTIONS(535), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -81864,80 +84538,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7864), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8612), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(62), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -81993,7 +84667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(537), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -82020,7 +84694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_RPAREN2] = ACTIONS(531), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -82049,80 +84723,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7866), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8254), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(63), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -82178,7 +84852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(539), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -82205,7 +84879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(539), + [anon_sym_RPAREN2] = ACTIONS(541), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -82234,80 +84908,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8010), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8235), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(64), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -82363,7 +85037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_RPAREN] = ACTIONS(543), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -82390,7 +85064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(489), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -82419,265 +85092,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8001), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8507), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [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(150), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(489), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [66] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7933), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -82760,7 +85248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(547), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(475), @@ -82788,265 +85275,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [67] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8009), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [68] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7726), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(68), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [66] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8428), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(66), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -83114,7 +85417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(441), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), [anon_sym_return] = ACTIONS(411), @@ -83156,81 +85459,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [69] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7882), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [67] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8484), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -83286,7 +85589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_RPAREN] = ACTIONS(547), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -83340,81 +85643,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [70] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7957), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(70), - [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(150), + [68] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8432), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -83470,7 +85773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(549), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -83524,81 +85827,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [71] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8160), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [69] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8661), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -83654,7 +85957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(551), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -83708,81 +86011,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7947), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), + [70] = { + [sym__block_body_statement] = STATE(6763), + [sym__declaration] = STATE(7752), + [sym_decl_alias] = STATE(7471), + [sym_stmt_let] = STATE(7480), + [sym_stmt_mut] = STATE(7480), + [sym_stmt_const] = STATE(7480), + [sym_assignment] = STATE(7480), + [sym__mutable_assignment_pattern] = STATE(7499), + [sym__statement] = STATE(7752), + [sym_pipeline] = STATE(7480), + [sym__block_body] = STATE(8358), + [sym_cmd_identifier] = STATE(5044), + [sym_decl_def] = STATE(7471), + [sym_decl_export] = STATE(7471), + [sym_decl_extern] = STATE(7471), + [sym_decl_module] = STATE(7471), + [sym_decl_use] = STATE(7471), + [sym__ctrl_statement] = STATE(7480), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_for] = STATE(7673), + [sym_ctrl_loop] = STATE(7673), + [sym_ctrl_error] = STATE(7673), + [sym_ctrl_while] = STATE(7673), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_stmt_source] = STATE(7480), + [sym_stmt_register] = STATE(7480), + [sym__stmt_hide] = STATE(7480), + [sym_hide_mod] = STATE(7738), + [sym_hide_env] = STATE(7738), + [sym__stmt_overlay] = STATE(7480), + [sym_overlay_list] = STATE(7418), + [sym_overlay_hide] = STATE(7418), + [sym_overlay_new] = STATE(7418), + [sym_overlay_use] = STATE(7418), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(2666), [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(70), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(117), + [aux_sym__block_body_repeat2] = STATE(140), + [aux_sym_pipe_element_repeat2] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(553), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(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(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(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [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(19), + [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), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [71] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8645), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_let_DASHenv] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(367), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(367), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [aux_sym_cmd_identifier_token37] = ACTIONS(369), + [aux_sym_cmd_identifier_token38] = ACTIONS(367), + [aux_sym_cmd_identifier_token39] = ACTIONS(369), + [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(373), + [anon_sym_export_DASHenv] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(377), + [anon_sym_module] = ACTIONS(379), + [anon_sym_use] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_error] = ACTIONS(387), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_for] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(397), + [anon_sym_while] = ACTIONS(399), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_match] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(467), + [anon_sym_return] = ACTIONS(469), + [anon_sym_source] = ACTIONS(413), + [anon_sym_source_DASHenv] = ACTIONS(413), + [anon_sym_register] = ACTIONS(415), + [anon_sym_hide] = ACTIONS(417), + [anon_sym_hide_DASHenv] = ACTIONS(419), + [anon_sym_overlay] = ACTIONS(421), + [anon_sym_where] = ACTIONS(471), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(433), + [aux_sym__val_number_token5] = ACTIONS(433), + [aux_sym__val_number_token6] = ACTIONS(433), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [72] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8656), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -83893,80 +86564,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8156), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8313), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(73), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -84077,80 +86748,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8001), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8337), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -84261,264 +86932,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [75] = { - [sym__block_body_statement] = STATE(6699), - [sym__declaration] = STATE(6909), - [sym_decl_alias] = STATE(7077), - [sym_stmt_let] = STATE(7085), - [sym_stmt_mut] = STATE(7085), - [sym_stmt_const] = STATE(7085), - [sym_assignment] = STATE(7085), - [sym__mutable_assignment_pattern] = STATE(7069), - [sym__statement] = STATE(6909), - [sym_pipeline] = STATE(7085), - [sym__block_body] = STATE(7851), - [sym_cmd_identifier] = STATE(4789), - [sym_decl_def] = STATE(7077), - [sym_decl_export] = STATE(7077), - [sym_decl_extern] = STATE(7077), - [sym_decl_module] = STATE(7077), - [sym_decl_use] = STATE(7077), - [sym__ctrl_statement] = STATE(7085), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_for] = STATE(7233), - [sym_ctrl_loop] = STATE(7233), - [sym_ctrl_error] = STATE(7233), - [sym_ctrl_while] = STATE(7233), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_stmt_source] = STATE(7085), - [sym_stmt_register] = STATE(7085), - [sym__stmt_hide] = STATE(7085), - [sym_hide_mod] = STATE(6934), - [sym_hide_env] = STATE(6934), - [sym__stmt_overlay] = STATE(7085), - [sym_overlay_list] = STATE(6834), - [sym_overlay_hide] = STATE(6834), - [sym_overlay_new] = STATE(6834), - [sym_overlay_use] = STATE(6834), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8377), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(107), - [aux_sym__block_body_repeat2] = STATE(148), - [aux_sym_pipe_element_repeat2] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(563), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(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(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(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [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(19), - [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), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [76] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7898), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -84574,7 +87061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -84628,81 +87115,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [77] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7862), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [76] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8316), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -84758,7 +87245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -84812,81 +87299,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [78] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8054), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [77] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8338), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -84942,7 +87429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -84996,81 +87483,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [79] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8150), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [78] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8615), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -85126,7 +87613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(569), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -85180,81 +87667,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [80] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7765), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [79] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8630), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -85310,7 +87797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(571), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -85364,81 +87851,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [81] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7755), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [80] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8444), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(80), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -85494,7 +87981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -85548,81 +88035,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7794), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [81] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8673), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -85678,7 +88165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_RPAREN] = ACTIONS(575), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -85732,81 +88219,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [83] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7829), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8634), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -85862,7 +88349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -85916,81 +88403,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7756), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8402), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -86046,7 +88533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(579), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -86100,81 +88587,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [85] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7788), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [84] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8550), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -86230,7 +88717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(581), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -86284,81 +88771,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [86] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7780), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [85] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8234), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -86414,7 +88901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(583), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -86468,81 +88955,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8143), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8536), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -86598,7 +89085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(585), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -86652,81 +89139,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8012), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [87] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8331), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -86782,7 +89269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(587), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -86836,265 +89323,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [89] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7754), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7883), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [88] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8480), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -87150,7 +89453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(589), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -87204,81 +89507,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [91] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8127), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [89] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8230), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -87334,7 +89637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(591), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -87388,81 +89691,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [92] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8142), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [90] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8372), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -87518,7 +89821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(593), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -87572,81 +89875,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [93] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8052), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [91] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8644), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -87702,7 +90005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -87756,81 +90059,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [94] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7948), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [92] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8296), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(92), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -87886,7 +90189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(597), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -87940,81 +90243,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [95] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8035), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [93] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8400), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(93), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -88070,7 +90373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_RPAREN] = ACTIONS(599), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), @@ -88124,81 +90427,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [96] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8063), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [94] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8453), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(94), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_let_DASHenv] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(367), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(367), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [aux_sym_cmd_identifier_token37] = ACTIONS(369), + [aux_sym_cmd_identifier_token38] = ACTIONS(367), + [aux_sym_cmd_identifier_token39] = ACTIONS(369), + [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(373), + [anon_sym_export_DASHenv] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(377), + [anon_sym_module] = ACTIONS(379), + [anon_sym_use] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_error] = ACTIONS(387), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_for] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(397), + [anon_sym_while] = ACTIONS(399), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_match] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(467), + [anon_sym_return] = ACTIONS(469), + [anon_sym_source] = ACTIONS(413), + [anon_sym_source_DASHenv] = ACTIONS(413), + [anon_sym_register] = ACTIONS(415), + [anon_sym_hide] = ACTIONS(417), + [anon_sym_hide_DASHenv] = ACTIONS(419), + [anon_sym_overlay] = ACTIONS(421), + [anon_sym_where] = ACTIONS(471), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(433), + [aux_sym__val_number_token5] = ACTIONS(433), + [aux_sym__val_number_token6] = ACTIONS(433), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [95] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8500), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(95), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -88308,81 +90795,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [97] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8161), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [96] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8542), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(96), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -88492,81 +90979,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [98] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7876), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [97] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8622), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(97), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -88676,81 +91163,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [99] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7821), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [98] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8659), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(98), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -88860,81 +91347,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8138), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [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(150), + [99] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8667), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(99), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -89044,81 +91531,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [101] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8023), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(101), - [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(150), + [100] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8363), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(100), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -89228,81 +91715,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [101] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8465), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(101), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(367), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(367), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [aux_sym_cmd_identifier_token37] = ACTIONS(369), + [aux_sym_cmd_identifier_token38] = ACTIONS(367), + [aux_sym_cmd_identifier_token39] = ACTIONS(369), + [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(373), + [anon_sym_export_DASHenv] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(377), + [anon_sym_module] = ACTIONS(379), + [anon_sym_use] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_error] = ACTIONS(387), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(397), + [anon_sym_while] = ACTIONS(399), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(403), + [anon_sym_match] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_source] = ACTIONS(413), + [anon_sym_source_DASHenv] = ACTIONS(413), + [anon_sym_register] = ACTIONS(415), + [anon_sym_hide] = ACTIONS(417), + [anon_sym_hide_DASHenv] = ACTIONS(419), + [anon_sym_overlay] = ACTIONS(421), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(433), + [aux_sym__val_number_token5] = ACTIONS(433), + [aux_sym__val_number_token6] = ACTIONS(433), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, [102] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7800), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8248), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [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(150), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -89413,86 +92084,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [103] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7775), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8277), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [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(150), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -89542,39 +92213,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(617), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -89591,92 +92261,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [104] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(7766), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8286), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [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(150), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -89726,39 +92396,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(619), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -89775,86 +92444,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [105] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8013), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8376), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -89964,86 +92633,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [106] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7983), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8616), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_let_DASHenv] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -90096,35 +92765,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(467), + [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -90141,275 +92810,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [107] = { - [sym__block_body_statement] = STATE(6254), - [sym__declaration] = STATE(6909), - [sym_decl_alias] = STATE(7077), - [sym_stmt_let] = STATE(7085), - [sym_stmt_mut] = STATE(7085), - [sym_stmt_const] = STATE(7085), - [sym_assignment] = STATE(7085), - [sym__mutable_assignment_pattern] = STATE(7069), - [sym__statement] = STATE(6909), - [sym_pipeline] = STATE(7085), - [sym_cmd_identifier] = STATE(4789), - [sym_decl_def] = STATE(7077), - [sym_decl_export] = STATE(7077), - [sym_decl_extern] = STATE(7077), - [sym_decl_module] = STATE(7077), - [sym_decl_use] = STATE(7077), - [sym__ctrl_statement] = STATE(7085), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_for] = STATE(7233), - [sym_ctrl_loop] = STATE(7233), - [sym_ctrl_error] = STATE(7233), - [sym_ctrl_while] = STATE(7233), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_stmt_source] = STATE(7085), - [sym_stmt_register] = STATE(7085), - [sym__stmt_hide] = STATE(7085), - [sym_hide_mod] = STATE(6934), - [sym_hide_env] = STATE(6934), - [sym__stmt_overlay] = STATE(7085), - [sym_overlay_list] = STATE(6834), - [sym_overlay_hide] = STATE(6834), - [sym_overlay_new] = STATE(6834), - [sym_overlay_use] = STATE(6834), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8320), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(251), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(621), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(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(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(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [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(19), - [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), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [108] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8026), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(108), - [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(150), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -90462,35 +92948,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -90507,91 +92993,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [109] = { - [sym__block_body_statement] = STATE(6162), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1562), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(219), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(322), - [anon_sym_export] = ACTIONS(623), - [anon_sym_alias] = ACTIONS(625), - [anon_sym_let] = ACTIONS(627), - [anon_sym_let_DASHenv] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(629), - [anon_sym_const] = ACTIONS(631), + [108] = { + [sym__block_body_statement_parenthesized] = STATE(6337), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(108), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(217), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(149), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_let_DASHenv] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -90641,21 +93127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(617), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), + [anon_sym_try] = ACTIONS(467), [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), @@ -90663,7 +93149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -90690,91 +93176,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [110] = { - [sym__block_body_statement_parenthesized] = STATE(5736), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(110), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(219), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [109] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8256), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(109), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -90824,39 +93311,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(381), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(635), [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -90873,92 +93359,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [111] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7919), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), + [110] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8608), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1580), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(110), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym__block_body_repeat1] = STATE(115), [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipe_element_repeat2] = STATE(315), + [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(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -91017,12 +93503,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), @@ -91036,10 +93522,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -91061,87 +93547,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [112] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7842), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1562), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(112), + [111] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8513), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1580), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(111), [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(146), - [aux_sym_pipe_element_repeat2] = STATE(322), - [anon_sym_export] = ACTIONS(623), - [anon_sym_alias] = ACTIONS(625), - [anon_sym_let] = ACTIONS(627), - [anon_sym_let_DASHenv] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(629), - [anon_sym_const] = ACTIONS(631), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(143), + [aux_sym_pipe_element_repeat2] = STATE(315), + [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(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -91200,7 +93686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -91244,80 +93730,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [113] = { - [sym__block_body_statement] = STATE(6162), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(219), - [aux_sym__block_body_repeat2] = STATE(149), - [aux_sym_pipe_element_repeat2] = STATE(318), + [112] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8563), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(112), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -91385,7 +93872,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(621), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), [anon_sym_return] = ACTIONS(411), @@ -91427,87 +93913,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [114] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7834), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1562), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(146), - [aux_sym_pipe_element_repeat2] = STATE(322), - [anon_sym_export] = ACTIONS(623), - [anon_sym_alias] = ACTIONS(625), - [anon_sym_let] = ACTIONS(627), - [anon_sym_let_DASHenv] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(629), - [anon_sym_const] = ACTIONS(631), + [113] = { + [sym__block_body_statement_parenthesized] = STATE(6346), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym__parenthesized_body] = STATE(8236), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(108), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(147), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_let_DASHenv] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -91560,17 +94046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), + [anon_sym_try] = ACTIONS(467), [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), @@ -91578,7 +94064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -91605,86 +94091,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [115] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8025), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [114] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8469), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(114), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -91793,87 +94279,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [115] = { + [sym__block_body_statement] = STATE(6439), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1580), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(115), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym__block_body_repeat1] = STATE(217), + [aux_sym__block_body_repeat2] = STATE(146), + [aux_sym_pipe_element_repeat2] = STATE(315), + [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(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(367), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(367), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(367), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(367), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(367), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [aux_sym_cmd_identifier_token37] = ACTIONS(369), + [aux_sym_cmd_identifier_token38] = ACTIONS(367), + [aux_sym_cmd_identifier_token39] = ACTIONS(369), + [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(373), + [anon_sym_export_DASHenv] = ACTIONS(375), + [anon_sym_extern] = ACTIONS(377), + [anon_sym_module] = ACTIONS(379), + [anon_sym_use] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_error] = ACTIONS(387), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_for] = ACTIONS(395), + [anon_sym_loop] = ACTIONS(397), + [anon_sym_while] = ACTIONS(399), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(469), + [anon_sym_source] = ACTIONS(413), + [anon_sym_source_DASHenv] = ACTIONS(413), + [anon_sym_register] = ACTIONS(415), + [anon_sym_hide] = ACTIONS(417), + [anon_sym_hide_DASHenv] = ACTIONS(419), + [anon_sym_overlay] = ACTIONS(421), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(433), + [aux_sym__val_number_token5] = ACTIONS(433), + [aux_sym__val_number_token6] = ACTIONS(433), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, [116] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7713), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8244), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1580), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym__block_body_repeat1] = STATE(115), [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [aux_sym_pipe_element_repeat2] = STATE(315), + [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(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -91932,12 +94601,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), @@ -91951,10 +94620,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -91977,80 +94646,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [117] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7958), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(7285), + [sym__declaration] = STATE(7752), + [sym_decl_alias] = STATE(7471), + [sym_stmt_let] = STATE(7480), + [sym_stmt_mut] = STATE(7480), + [sym_stmt_const] = STATE(7480), + [sym_assignment] = STATE(7480), + [sym__mutable_assignment_pattern] = STATE(7499), + [sym__statement] = STATE(7752), + [sym_pipeline] = STATE(7480), + [sym_cmd_identifier] = STATE(5044), + [sym_decl_def] = STATE(7471), + [sym_decl_export] = STATE(7471), + [sym_decl_extern] = STATE(7471), + [sym_decl_module] = STATE(7471), + [sym_decl_use] = STATE(7471), + [sym__ctrl_statement] = STATE(7480), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_for] = STATE(7673), + [sym_ctrl_loop] = STATE(7673), + [sym_ctrl_error] = STATE(7673), + [sym_ctrl_while] = STATE(7673), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_stmt_source] = STATE(7480), + [sym_stmt_register] = STATE(7480), + [sym__stmt_hide] = STATE(7480), + [sym_hide_mod] = STATE(7738), + [sym_hide_env] = STATE(7738), + [sym__stmt_overlay] = STATE(7480), + [sym_overlay_list] = STATE(7418), + [sym_overlay_hide] = STATE(7418), + [sym_overlay_new] = STATE(7418), + [sym_overlay_use] = STATE(7418), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(833), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym__block_body_repeat1] = STATE(227), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(631), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(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(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(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [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(19), + [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), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [118] = { + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8332), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(118), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -92159,264 +95011,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [118] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8033), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1562), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(146), - [aux_sym_pipe_element_repeat2] = STATE(322), - [anon_sym_export] = ACTIONS(623), - [anon_sym_alias] = ACTIONS(625), - [anon_sym_let] = ACTIONS(627), - [anon_sym_let_DASHenv] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(629), - [anon_sym_const] = ACTIONS(631), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, [119] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7846), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6439), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(217), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -92484,6 +95152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(631), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), [anon_sym_return] = ACTIONS(411), @@ -92526,80 +95195,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [120] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7831), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8359), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -92709,80 +95378,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [121] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7786), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8626), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -92892,80 +95561,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [122] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7810), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8648), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -93075,80 +95744,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [123] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8140), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8461), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -93258,80 +95927,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [124] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7892), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8482), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -93441,80 +96110,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [125] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8125), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8393), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -93624,80 +96293,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [126] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7738), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8455), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -93807,80 +96476,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [127] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7809), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8654), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -93990,80 +96659,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [128] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8126), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8411), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -94173,80 +96842,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [129] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7727), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8326), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -94356,80 +97025,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [130] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7938), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8353), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -94539,80 +97208,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [131] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7967), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8474), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -94722,80 +97391,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [132] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8154), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8501), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -94905,80 +97574,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [133] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7719), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8252), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(133), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -95088,80 +97757,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [134] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7777), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8676), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(134), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -95271,80 +97940,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [135] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7803), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8368), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -95454,80 +98123,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [136] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8034), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8396), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -95637,80 +98306,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [137] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(8122), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8640), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -95820,80 +98489,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [138] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7796), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8660), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -96003,80 +98672,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [139] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7815), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), + [sym__block_body_statement] = STATE(6458), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym__block_body] = STATE(8483), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(119), + [aux_sym__block_body_repeat2] = STATE(145), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -96186,444 +98855,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [140] = { - [sym__block_body_statement] = STATE(6107), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym__block_body] = STATE(7879), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(113), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(318), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [141] = { - [sym__block_body_statement_parenthesized] = STATE(5986), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym__parenthesized_body] = STATE(8061), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), + [sym__block_body_statement] = STATE(7285), + [sym__declaration] = STATE(7752), + [sym_decl_alias] = STATE(7471), + [sym_stmt_let] = STATE(7480), + [sym_stmt_mut] = STATE(7480), + [sym_stmt_const] = STATE(7480), + [sym_assignment] = STATE(7480), + [sym__mutable_assignment_pattern] = STATE(7499), + [sym__statement] = STATE(7752), + [sym_pipeline] = STATE(7480), + [sym_cmd_identifier] = STATE(5044), + [sym_decl_def] = STATE(7471), + [sym_decl_export] = STATE(7471), + [sym_decl_extern] = STATE(7471), + [sym_decl_module] = STATE(7471), + [sym_decl_use] = STATE(7471), + [sym__ctrl_statement] = STATE(7480), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_for] = STATE(7673), + [sym_ctrl_loop] = STATE(7673), + [sym_ctrl_error] = STATE(7673), + [sym_ctrl_while] = STATE(7673), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_stmt_source] = STATE(7480), + [sym_stmt_register] = STATE(7480), + [sym__stmt_hide] = STATE(7480), + [sym_hide_mod] = STATE(7738), + [sym_hide_env] = STATE(7738), + [sym__stmt_overlay] = STATE(7480), + [sym_overlay_list] = STATE(7418), + [sym_overlay_hide] = STATE(7418), + [sym_overlay_new] = STATE(7418), + [sym_overlay_use] = STATE(7418), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(2666), [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(141), - [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(150), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [142] = { - [sym__block_body_statement] = STATE(6768), - [sym__declaration] = STATE(6909), - [sym_decl_alias] = STATE(7077), - [sym_stmt_let] = STATE(7085), - [sym_stmt_mut] = STATE(7085), - [sym_stmt_const] = STATE(7085), - [sym_assignment] = STATE(7085), - [sym__mutable_assignment_pattern] = STATE(7069), - [sym__statement] = STATE(6909), - [sym_pipeline] = STATE(7085), - [sym_cmd_identifier] = STATE(4789), - [sym_decl_def] = STATE(7077), - [sym_decl_export] = STATE(7077), - [sym_decl_extern] = STATE(7077), - [sym_decl_module] = STATE(7077), - [sym_decl_use] = STATE(7077), - [sym__ctrl_statement] = STATE(7085), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_for] = STATE(7233), - [sym_ctrl_loop] = STATE(7233), - [sym_ctrl_error] = STATE(7233), - [sym_ctrl_while] = STATE(7233), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_stmt_source] = STATE(7085), - [sym_stmt_register] = STATE(7085), - [sym__stmt_hide] = STATE(7085), - [sym_hide_mod] = STATE(6934), - [sym_hide_env] = STATE(6934), - [sym__stmt_overlay] = STATE(7085), - [sym_overlay_list] = STATE(6834), - [sym_overlay_hide] = STATE(6834), - [sym_overlay_new] = STATE(6834), - [sym_overlay_use] = STATE(6834), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(142), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(332), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(140), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(328), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -96730,79 +99033,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [143] = { - [sym__block_body_statement] = STATE(6162), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(318), + [141] = { + [sym__block_body_statement] = STATE(7412), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1642), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(141), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(322), + [anon_sym_export] = ACTIONS(633), + [anon_sym_alias] = ACTIONS(636), + [anon_sym_let] = ACTIONS(639), + [anon_sym_let_DASHenv] = ACTIONS(639), + [anon_sym_mut] = ACTIONS(642), + [anon_sym_const] = ACTIONS(645), + [aux_sym_cmd_identifier_token1] = ACTIONS(648), + [aux_sym_cmd_identifier_token2] = ACTIONS(651), + [aux_sym_cmd_identifier_token3] = ACTIONS(651), + [aux_sym_cmd_identifier_token4] = ACTIONS(651), + [aux_sym_cmd_identifier_token5] = ACTIONS(651), + [aux_sym_cmd_identifier_token6] = ACTIONS(651), + [aux_sym_cmd_identifier_token7] = ACTIONS(651), + [aux_sym_cmd_identifier_token8] = ACTIONS(648), + [aux_sym_cmd_identifier_token9] = ACTIONS(648), + [aux_sym_cmd_identifier_token10] = ACTIONS(651), + [aux_sym_cmd_identifier_token11] = ACTIONS(651), + [aux_sym_cmd_identifier_token12] = ACTIONS(648), + [aux_sym_cmd_identifier_token13] = ACTIONS(648), + [aux_sym_cmd_identifier_token14] = ACTIONS(648), + [aux_sym_cmd_identifier_token15] = ACTIONS(648), + [aux_sym_cmd_identifier_token16] = ACTIONS(651), + [aux_sym_cmd_identifier_token17] = ACTIONS(651), + [aux_sym_cmd_identifier_token18] = ACTIONS(648), + [aux_sym_cmd_identifier_token19] = ACTIONS(651), + [aux_sym_cmd_identifier_token20] = ACTIONS(651), + [aux_sym_cmd_identifier_token21] = ACTIONS(651), + [aux_sym_cmd_identifier_token22] = ACTIONS(651), + [aux_sym_cmd_identifier_token23] = ACTIONS(651), + [aux_sym_cmd_identifier_token24] = ACTIONS(651), + [aux_sym_cmd_identifier_token25] = ACTIONS(651), + [aux_sym_cmd_identifier_token26] = ACTIONS(651), + [aux_sym_cmd_identifier_token27] = ACTIONS(651), + [aux_sym_cmd_identifier_token28] = ACTIONS(651), + [aux_sym_cmd_identifier_token29] = ACTIONS(651), + [aux_sym_cmd_identifier_token30] = ACTIONS(651), + [aux_sym_cmd_identifier_token31] = ACTIONS(651), + [aux_sym_cmd_identifier_token32] = ACTIONS(648), + [aux_sym_cmd_identifier_token33] = ACTIONS(651), + [aux_sym_cmd_identifier_token34] = ACTIONS(648), + [aux_sym_cmd_identifier_token35] = ACTIONS(651), + [aux_sym_cmd_identifier_token36] = ACTIONS(651), + [aux_sym_cmd_identifier_token37] = ACTIONS(651), + [aux_sym_cmd_identifier_token38] = ACTIONS(648), + [aux_sym_cmd_identifier_token39] = ACTIONS(651), + [aux_sym_cmd_identifier_token40] = ACTIONS(651), + [anon_sym_def] = ACTIONS(654), + [anon_sym_export_DASHenv] = ACTIONS(657), + [anon_sym_extern] = ACTIONS(660), + [anon_sym_module] = ACTIONS(663), + [anon_sym_use] = ACTIONS(666), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_error] = ACTIONS(678), + [anon_sym_DASH2] = ACTIONS(681), + [anon_sym_break] = ACTIONS(684), + [anon_sym_continue] = ACTIONS(687), + [anon_sym_for] = ACTIONS(690), + [anon_sym_loop] = ACTIONS(693), + [anon_sym_while] = ACTIONS(696), + [anon_sym_do] = ACTIONS(699), + [anon_sym_if] = ACTIONS(702), + [anon_sym_match] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_DOT_DOT] = ACTIONS(711), + [anon_sym_try] = ACTIONS(714), + [anon_sym_return] = ACTIONS(717), + [anon_sym_source] = ACTIONS(720), + [anon_sym_source_DASHenv] = ACTIONS(720), + [anon_sym_register] = ACTIONS(723), + [anon_sym_hide] = ACTIONS(726), + [anon_sym_hide_DASHenv] = ACTIONS(729), + [anon_sym_overlay] = ACTIONS(732), + [anon_sym_where] = ACTIONS(735), + [aux_sym_expr_unary_token1] = ACTIONS(738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(741), + [anon_sym_DOT_DOT_LT] = ACTIONS(741), + [anon_sym_null] = ACTIONS(744), + [anon_sym_true] = ACTIONS(747), + [anon_sym_false] = ACTIONS(747), + [aux_sym__val_number_decimal_token1] = ACTIONS(750), + [aux_sym__val_number_decimal_token2] = ACTIONS(753), + [aux_sym__val_number_decimal_token3] = ACTIONS(756), + [aux_sym__val_number_decimal_token4] = ACTIONS(759), + [aux_sym__val_number_token1] = ACTIONS(762), + [aux_sym__val_number_token2] = ACTIONS(762), + [aux_sym__val_number_token3] = ACTIONS(762), + [aux_sym__val_number_token4] = ACTIONS(765), + [aux_sym__val_number_token5] = ACTIONS(765), + [aux_sym__val_number_token6] = ACTIONS(765), + [anon_sym_0b] = ACTIONS(768), + [anon_sym_0o] = ACTIONS(771), + [anon_sym_0x] = ACTIONS(771), + [sym_val_date] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym__str_single_quotes] = ACTIONS(780), + [sym__str_back_ticks] = ACTIONS(780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(786), + [aux_sym_env_var_token1] = ACTIONS(789), + [anon_sym_CARET] = ACTIONS(792), + [aux_sym_command_token1] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(798), + }, + [142] = { + [sym__block_body_statement] = STATE(6485), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(142), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(326), [anon_sym_export] = ACTIONS(357), [anon_sym_alias] = ACTIONS(359), [anon_sym_let] = ACTIONS(361), @@ -96909,264 +99391,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [144] = { - [sym__block_body_statement] = STATE(7156), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1633), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(144), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(327), - [anon_sym_export] = ACTIONS(637), - [anon_sym_alias] = ACTIONS(640), - [anon_sym_let] = ACTIONS(643), - [anon_sym_let_DASHenv] = ACTIONS(643), - [anon_sym_mut] = ACTIONS(646), - [anon_sym_const] = ACTIONS(649), - [aux_sym_cmd_identifier_token1] = ACTIONS(652), - [aux_sym_cmd_identifier_token2] = ACTIONS(655), - [aux_sym_cmd_identifier_token3] = ACTIONS(655), - [aux_sym_cmd_identifier_token4] = ACTIONS(655), - [aux_sym_cmd_identifier_token5] = ACTIONS(655), - [aux_sym_cmd_identifier_token6] = ACTIONS(655), - [aux_sym_cmd_identifier_token7] = ACTIONS(655), - [aux_sym_cmd_identifier_token8] = ACTIONS(652), - [aux_sym_cmd_identifier_token9] = ACTIONS(652), - [aux_sym_cmd_identifier_token10] = ACTIONS(655), - [aux_sym_cmd_identifier_token11] = ACTIONS(655), - [aux_sym_cmd_identifier_token12] = ACTIONS(652), - [aux_sym_cmd_identifier_token13] = ACTIONS(652), - [aux_sym_cmd_identifier_token14] = ACTIONS(652), - [aux_sym_cmd_identifier_token15] = ACTIONS(652), - [aux_sym_cmd_identifier_token16] = ACTIONS(655), - [aux_sym_cmd_identifier_token17] = ACTIONS(655), - [aux_sym_cmd_identifier_token18] = ACTIONS(652), - [aux_sym_cmd_identifier_token19] = ACTIONS(655), - [aux_sym_cmd_identifier_token20] = ACTIONS(655), - [aux_sym_cmd_identifier_token21] = ACTIONS(655), - [aux_sym_cmd_identifier_token22] = ACTIONS(655), - [aux_sym_cmd_identifier_token23] = ACTIONS(655), - [aux_sym_cmd_identifier_token24] = ACTIONS(655), - [aux_sym_cmd_identifier_token25] = ACTIONS(655), - [aux_sym_cmd_identifier_token26] = ACTIONS(655), - [aux_sym_cmd_identifier_token27] = ACTIONS(655), - [aux_sym_cmd_identifier_token28] = ACTIONS(655), - [aux_sym_cmd_identifier_token29] = ACTIONS(655), - [aux_sym_cmd_identifier_token30] = ACTIONS(655), - [aux_sym_cmd_identifier_token31] = ACTIONS(655), - [aux_sym_cmd_identifier_token32] = ACTIONS(652), - [aux_sym_cmd_identifier_token33] = ACTIONS(655), - [aux_sym_cmd_identifier_token34] = ACTIONS(652), - [aux_sym_cmd_identifier_token35] = ACTIONS(655), - [aux_sym_cmd_identifier_token36] = ACTIONS(655), - [aux_sym_cmd_identifier_token37] = ACTIONS(655), - [aux_sym_cmd_identifier_token38] = ACTIONS(652), - [aux_sym_cmd_identifier_token39] = ACTIONS(655), - [aux_sym_cmd_identifier_token40] = ACTIONS(655), - [anon_sym_def] = ACTIONS(658), - [anon_sym_export_DASHenv] = ACTIONS(661), - [anon_sym_extern] = ACTIONS(664), - [anon_sym_module] = ACTIONS(667), - [anon_sym_use] = ACTIONS(670), - [anon_sym_LBRACK] = ACTIONS(673), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_DOLLAR] = ACTIONS(679), - [anon_sym_error] = ACTIONS(682), - [anon_sym_DASH2] = ACTIONS(685), - [anon_sym_break] = ACTIONS(688), - [anon_sym_continue] = ACTIONS(691), - [anon_sym_for] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(697), - [anon_sym_while] = ACTIONS(700), - [anon_sym_do] = ACTIONS(703), - [anon_sym_if] = ACTIONS(706), - [anon_sym_match] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(715), - [anon_sym_try] = ACTIONS(718), - [anon_sym_return] = ACTIONS(721), - [anon_sym_source] = ACTIONS(724), - [anon_sym_source_DASHenv] = ACTIONS(724), - [anon_sym_register] = ACTIONS(727), - [anon_sym_hide] = ACTIONS(730), - [anon_sym_hide_DASHenv] = ACTIONS(733), - [anon_sym_overlay] = ACTIONS(736), - [anon_sym_where] = ACTIONS(739), - [aux_sym_expr_unary_token1] = ACTIONS(742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(745), - [anon_sym_DOT_DOT_LT] = ACTIONS(745), - [anon_sym_null] = ACTIONS(748), - [anon_sym_true] = ACTIONS(751), - [anon_sym_false] = ACTIONS(751), - [aux_sym__val_number_decimal_token1] = ACTIONS(754), - [aux_sym__val_number_decimal_token2] = ACTIONS(757), - [aux_sym__val_number_decimal_token3] = ACTIONS(760), - [aux_sym__val_number_decimal_token4] = ACTIONS(763), - [aux_sym__val_number_token1] = ACTIONS(766), - [aux_sym__val_number_token2] = ACTIONS(766), - [aux_sym__val_number_token3] = ACTIONS(766), - [aux_sym__val_number_token4] = ACTIONS(769), - [aux_sym__val_number_token5] = ACTIONS(769), - [aux_sym__val_number_token6] = ACTIONS(769), - [anon_sym_0b] = ACTIONS(772), - [anon_sym_0o] = ACTIONS(775), - [anon_sym_0x] = ACTIONS(775), - [sym_val_date] = ACTIONS(778), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym__str_single_quotes] = ACTIONS(784), - [sym__str_back_ticks] = ACTIONS(784), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(790), - [aux_sym_env_var_token1] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(796), - [aux_sym_command_token1] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(802), - }, - [145] = { - [sym__block_body_statement_parenthesized] = STATE(5817), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(145), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [143] = { + [sym__block_body_statement] = STATE(6439), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1580), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(143), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(315), + [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(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -97217,17 +99520,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), + [anon_sym_try] = ACTIONS(409), [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), @@ -97235,7 +99538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -97262,90 +99565,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [146] = { - [sym__block_body_statement] = STATE(6162), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1562), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(322), - [anon_sym_export] = ACTIONS(623), - [anon_sym_alias] = ACTIONS(625), - [anon_sym_let] = ACTIONS(627), - [anon_sym_let_DASHenv] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(629), - [anon_sym_const] = ACTIONS(631), + [144] = { + [sym__block_body_statement_parenthesized] = STATE(6871), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1631), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(144), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), + [aux_sym__parenthesized_body_repeat2] = STATE(144), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(804), + [anon_sym_let] = ACTIONS(807), + [anon_sym_let_DASHenv] = ACTIONS(807), + [anon_sym_mut] = ACTIONS(810), + [anon_sym_const] = ACTIONS(813), + [aux_sym_cmd_identifier_token1] = ACTIONS(816), + [aux_sym_cmd_identifier_token2] = ACTIONS(819), + [aux_sym_cmd_identifier_token3] = ACTIONS(819), + [aux_sym_cmd_identifier_token4] = ACTIONS(819), + [aux_sym_cmd_identifier_token5] = ACTIONS(819), + [aux_sym_cmd_identifier_token6] = ACTIONS(819), + [aux_sym_cmd_identifier_token7] = ACTIONS(819), + [aux_sym_cmd_identifier_token8] = ACTIONS(816), + [aux_sym_cmd_identifier_token9] = ACTIONS(816), + [aux_sym_cmd_identifier_token10] = ACTIONS(819), + [aux_sym_cmd_identifier_token11] = ACTIONS(819), + [aux_sym_cmd_identifier_token12] = ACTIONS(816), + [aux_sym_cmd_identifier_token13] = ACTIONS(816), + [aux_sym_cmd_identifier_token14] = ACTIONS(816), + [aux_sym_cmd_identifier_token15] = ACTIONS(816), + [aux_sym_cmd_identifier_token16] = ACTIONS(819), + [aux_sym_cmd_identifier_token17] = ACTIONS(819), + [aux_sym_cmd_identifier_token18] = ACTIONS(816), + [aux_sym_cmd_identifier_token19] = ACTIONS(819), + [aux_sym_cmd_identifier_token20] = ACTIONS(819), + [aux_sym_cmd_identifier_token21] = ACTIONS(819), + [aux_sym_cmd_identifier_token22] = ACTIONS(819), + [aux_sym_cmd_identifier_token23] = ACTIONS(819), + [aux_sym_cmd_identifier_token24] = ACTIONS(819), + [aux_sym_cmd_identifier_token25] = ACTIONS(819), + [aux_sym_cmd_identifier_token26] = ACTIONS(819), + [aux_sym_cmd_identifier_token27] = ACTIONS(819), + [aux_sym_cmd_identifier_token28] = ACTIONS(819), + [aux_sym_cmd_identifier_token29] = ACTIONS(819), + [aux_sym_cmd_identifier_token30] = ACTIONS(819), + [aux_sym_cmd_identifier_token31] = ACTIONS(819), + [aux_sym_cmd_identifier_token32] = ACTIONS(816), + [aux_sym_cmd_identifier_token33] = ACTIONS(819), + [aux_sym_cmd_identifier_token34] = ACTIONS(816), + [aux_sym_cmd_identifier_token35] = ACTIONS(819), + [aux_sym_cmd_identifier_token36] = ACTIONS(819), + [aux_sym_cmd_identifier_token37] = ACTIONS(819), + [aux_sym_cmd_identifier_token38] = ACTIONS(816), + [aux_sym_cmd_identifier_token39] = ACTIONS(819), + [aux_sym_cmd_identifier_token40] = ACTIONS(819), + [anon_sym_def] = ACTIONS(822), + [anon_sym_export_DASHenv] = ACTIONS(825), + [anon_sym_extern] = ACTIONS(828), + [anon_sym_module] = ACTIONS(831), + [anon_sym_use] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_error] = ACTIONS(846), + [anon_sym_DASH2] = ACTIONS(849), + [anon_sym_break] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_for] = ACTIONS(858), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(864), + [anon_sym_do] = ACTIONS(867), + [anon_sym_if] = ACTIONS(870), + [anon_sym_match] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_try] = ACTIONS(882), + [anon_sym_return] = ACTIONS(885), + [anon_sym_source] = ACTIONS(888), + [anon_sym_source_DASHenv] = ACTIONS(888), + [anon_sym_register] = ACTIONS(891), + [anon_sym_hide] = ACTIONS(894), + [anon_sym_hide_DASHenv] = ACTIONS(897), + [anon_sym_overlay] = ACTIONS(900), + [anon_sym_where] = ACTIONS(903), + [aux_sym_expr_unary_token1] = ACTIONS(906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [anon_sym_DOT_DOT_LT] = ACTIONS(909), + [anon_sym_null] = ACTIONS(912), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [aux_sym__val_number_decimal_token1] = ACTIONS(918), + [aux_sym__val_number_decimal_token2] = ACTIONS(921), + [aux_sym__val_number_decimal_token3] = ACTIONS(924), + [aux_sym__val_number_decimal_token4] = ACTIONS(927), + [aux_sym__val_number_token1] = ACTIONS(930), + [aux_sym__val_number_token2] = ACTIONS(930), + [aux_sym__val_number_token3] = ACTIONS(930), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(936), + [anon_sym_0o] = ACTIONS(939), + [anon_sym_0x] = ACTIONS(939), + [sym_val_date] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(945), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [aux_sym_env_var_token1] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(960), + [aux_sym_command_token1] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(966), + }, + [145] = { + [sym__block_body_statement] = STATE(6439), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1524), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(145), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(326), + [anon_sym_export] = ACTIONS(357), + [anon_sym_alias] = ACTIONS(359), + [anon_sym_let] = ACTIONS(361), + [anon_sym_let_DASHenv] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(363), + [anon_sym_const] = ACTIONS(365), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -97402,12 +99884,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_return] = ACTIONS(411), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), @@ -97421,10 +99903,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -97446,443 +99928,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [147] = { - [sym__block_body_statement_parenthesized] = STATE(6370), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1618), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(147), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(202), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(328), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(805), - [anon_sym_alias] = ACTIONS(808), - [anon_sym_let] = ACTIONS(811), - [anon_sym_let_DASHenv] = ACTIONS(811), - [anon_sym_mut] = ACTIONS(814), - [anon_sym_const] = ACTIONS(817), - [aux_sym_cmd_identifier_token1] = ACTIONS(820), - [aux_sym_cmd_identifier_token2] = ACTIONS(823), - [aux_sym_cmd_identifier_token3] = ACTIONS(823), - [aux_sym_cmd_identifier_token4] = ACTIONS(823), - [aux_sym_cmd_identifier_token5] = ACTIONS(823), - [aux_sym_cmd_identifier_token6] = ACTIONS(823), - [aux_sym_cmd_identifier_token7] = ACTIONS(823), - [aux_sym_cmd_identifier_token8] = ACTIONS(820), - [aux_sym_cmd_identifier_token9] = ACTIONS(820), - [aux_sym_cmd_identifier_token10] = ACTIONS(823), - [aux_sym_cmd_identifier_token11] = ACTIONS(823), - [aux_sym_cmd_identifier_token12] = ACTIONS(820), - [aux_sym_cmd_identifier_token13] = ACTIONS(820), - [aux_sym_cmd_identifier_token14] = ACTIONS(820), - [aux_sym_cmd_identifier_token15] = ACTIONS(820), - [aux_sym_cmd_identifier_token16] = ACTIONS(823), - [aux_sym_cmd_identifier_token17] = ACTIONS(823), - [aux_sym_cmd_identifier_token18] = ACTIONS(820), - [aux_sym_cmd_identifier_token19] = ACTIONS(823), - [aux_sym_cmd_identifier_token20] = ACTIONS(823), - [aux_sym_cmd_identifier_token21] = ACTIONS(823), - [aux_sym_cmd_identifier_token22] = ACTIONS(823), - [aux_sym_cmd_identifier_token23] = ACTIONS(823), - [aux_sym_cmd_identifier_token24] = ACTIONS(823), - [aux_sym_cmd_identifier_token25] = ACTIONS(823), - [aux_sym_cmd_identifier_token26] = ACTIONS(823), - [aux_sym_cmd_identifier_token27] = ACTIONS(823), - [aux_sym_cmd_identifier_token28] = ACTIONS(823), - [aux_sym_cmd_identifier_token29] = ACTIONS(823), - [aux_sym_cmd_identifier_token30] = ACTIONS(823), - [aux_sym_cmd_identifier_token31] = ACTIONS(823), - [aux_sym_cmd_identifier_token32] = ACTIONS(820), - [aux_sym_cmd_identifier_token33] = ACTIONS(823), - [aux_sym_cmd_identifier_token34] = ACTIONS(820), - [aux_sym_cmd_identifier_token35] = ACTIONS(823), - [aux_sym_cmd_identifier_token36] = ACTIONS(823), - [aux_sym_cmd_identifier_token37] = ACTIONS(823), - [aux_sym_cmd_identifier_token38] = ACTIONS(820), - [aux_sym_cmd_identifier_token39] = ACTIONS(823), - [aux_sym_cmd_identifier_token40] = ACTIONS(823), - [anon_sym_def] = ACTIONS(826), - [anon_sym_export_DASHenv] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(832), - [anon_sym_module] = ACTIONS(835), - [anon_sym_use] = ACTIONS(838), - [anon_sym_LBRACK] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(844), - [anon_sym_DOLLAR] = ACTIONS(847), - [anon_sym_error] = ACTIONS(850), - [anon_sym_DASH2] = ACTIONS(853), - [anon_sym_break] = ACTIONS(856), - [anon_sym_continue] = ACTIONS(859), - [anon_sym_for] = ACTIONS(862), - [anon_sym_loop] = ACTIONS(865), - [anon_sym_while] = ACTIONS(868), - [anon_sym_do] = ACTIONS(871), - [anon_sym_if] = ACTIONS(874), - [anon_sym_match] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_try] = ACTIONS(886), - [anon_sym_return] = ACTIONS(889), - [anon_sym_source] = ACTIONS(892), - [anon_sym_source_DASHenv] = ACTIONS(892), - [anon_sym_register] = ACTIONS(895), - [anon_sym_hide] = ACTIONS(898), - [anon_sym_hide_DASHenv] = ACTIONS(901), - [anon_sym_overlay] = ACTIONS(904), - [anon_sym_where] = ACTIONS(907), - [aux_sym_expr_unary_token1] = ACTIONS(910), - [anon_sym_DOT_DOT_EQ] = ACTIONS(913), - [anon_sym_DOT_DOT_LT] = ACTIONS(913), - [anon_sym_null] = ACTIONS(916), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym__val_number_decimal_token1] = ACTIONS(922), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [aux_sym__val_number_decimal_token3] = ACTIONS(928), - [aux_sym__val_number_decimal_token4] = ACTIONS(931), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [aux_sym__val_number_token4] = ACTIONS(937), - [aux_sym__val_number_token5] = ACTIONS(937), - [aux_sym__val_number_token6] = ACTIONS(937), - [anon_sym_0b] = ACTIONS(940), - [anon_sym_0o] = ACTIONS(943), - [anon_sym_0x] = ACTIONS(943), - [sym_val_date] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym__str_single_quotes] = ACTIONS(952), - [sym__str_back_ticks] = ACTIONS(952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), - [aux_sym_env_var_token1] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(964), - [aux_sym_command_token1] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(970), - }, - [148] = { - [sym__block_body_statement] = STATE(6254), - [sym__declaration] = STATE(6909), - [sym_decl_alias] = STATE(7077), - [sym_stmt_let] = STATE(7085), - [sym_stmt_mut] = STATE(7085), - [sym_stmt_const] = STATE(7085), - [sym_assignment] = STATE(7085), - [sym__mutable_assignment_pattern] = STATE(7069), - [sym__statement] = STATE(6909), - [sym_pipeline] = STATE(7085), - [sym_cmd_identifier] = STATE(4789), - [sym_decl_def] = STATE(7077), - [sym_decl_export] = STATE(7077), - [sym_decl_extern] = STATE(7077), - [sym_decl_module] = STATE(7077), - [sym_decl_use] = STATE(7077), - [sym__ctrl_statement] = STATE(7085), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_for] = STATE(7233), - [sym_ctrl_loop] = STATE(7233), - [sym_ctrl_error] = STATE(7233), - [sym_ctrl_while] = STATE(7233), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_stmt_source] = STATE(7085), - [sym_stmt_register] = STATE(7085), - [sym__stmt_hide] = STATE(7085), - [sym_hide_mod] = STATE(6934), - [sym_hide_env] = STATE(6934), - [sym__stmt_overlay] = STATE(7085), - [sym_overlay_list] = STATE(6834), - [sym_overlay_hide] = STATE(6834), - [sym_overlay_new] = STATE(6834), - [sym_overlay_use] = STATE(6834), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(332), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(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(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(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [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(19), - [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_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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [149] = { - [sym__block_body_statement] = STATE(6063), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1509), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(318), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), + [146] = { + [sym__block_body_statement] = STATE(6485), + [sym__declaration] = STATE(7217), + [sym_decl_alias] = STATE(7232), + [sym_stmt_let] = STATE(7280), + [sym_stmt_mut] = STATE(7280), + [sym_stmt_const] = STATE(7280), + [sym_assignment] = STATE(7280), + [sym__mutable_assignment_pattern] = STATE(7291), + [sym__statement] = STATE(7217), + [sym_pipeline] = STATE(7280), + [sym_cmd_identifier] = STATE(4846), + [sym_decl_def] = STATE(7232), + [sym_decl_export] = STATE(7232), + [sym_decl_extern] = STATE(7232), + [sym_decl_module] = STATE(7232), + [sym_decl_use] = STATE(7232), + [sym__ctrl_statement] = STATE(7280), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_stmt_source] = STATE(7280), + [sym_stmt_register] = STATE(7280), + [sym__stmt_hide] = STATE(7280), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7280), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1580), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(146), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(315), + [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(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -97939,12 +100063,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), [anon_sym_register] = ACTIONS(415), @@ -97958,10 +100082,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -97983,79 +100107,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [150] = { - [sym__block_body_statement_parenthesized] = STATE(5736), - [sym__declaration_parenthesized] = STATE(7219), - [sym_decl_alias_parenthesized] = STATE(7229), - [sym_stmt_let_parenthesized] = STATE(7230), - [sym_stmt_mut_parenthesized] = STATE(7230), - [sym_stmt_const_parenthesized] = STATE(7230), - [sym_assignment_parenthesized] = STATE(7230), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7248), - [sym__statement_parenthesized] = STATE(7219), - [sym_pipeline_parenthesized] = STATE(7230), - [sym_cmd_identifier] = STATE(4751), - [sym_decl_def] = STATE(7229), - [sym_decl_export] = STATE(7229), - [sym_decl_extern] = STATE(7229), - [sym_decl_module] = STATE(7229), - [sym_decl_use] = STATE(7229), - [sym__ctrl_statement] = STATE(7230), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_stmt_source] = STATE(7230), - [sym_stmt_register] = STATE(7230), - [sym__stmt_hide] = STATE(7230), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(7230), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1566), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(150), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(147), + [147] = { + [sym__block_body_statement_parenthesized] = STATE(6337), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(147), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(144), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -98162,85 +100286,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [151] = { - [sym__block_body_statement] = STATE(6063), - [sym__declaration] = STATE(6788), - [sym_decl_alias] = STATE(6790), - [sym_stmt_let] = STATE(6791), - [sym_stmt_mut] = STATE(6791), - [sym_stmt_const] = STATE(6791), - [sym_assignment] = STATE(6791), - [sym__mutable_assignment_pattern] = STATE(6794), - [sym__statement] = STATE(6788), - [sym_pipeline] = STATE(6791), - [sym_cmd_identifier] = STATE(4616), - [sym_decl_def] = STATE(6790), - [sym_decl_export] = STATE(6790), - [sym_decl_extern] = STATE(6790), - [sym_decl_module] = STATE(6790), - [sym_decl_use] = STATE(6790), - [sym__ctrl_statement] = STATE(6791), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_for] = STATE(6807), - [sym_ctrl_loop] = STATE(6807), - [sym_ctrl_error] = STATE(6807), - [sym_ctrl_while] = STATE(6807), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_stmt_source] = STATE(6791), - [sym_stmt_register] = STATE(6791), - [sym__stmt_hide] = STATE(6791), - [sym_hide_mod] = STATE(6246), - [sym_hide_env] = STATE(6246), - [sym__stmt_overlay] = STATE(6791), - [sym_overlay_list] = STATE(6247), - [sym_overlay_hide] = STATE(6247), - [sym_overlay_new] = STATE(6247), - [sym_overlay_use] = STATE(6247), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(1562), - [sym_val_number] = STATE(2174), + [148] = { + [sym__block_body_statement] = STATE(6764), + [sym__declaration] = STATE(7752), + [sym_decl_alias] = STATE(7471), + [sym_stmt_let] = STATE(7480), + [sym_stmt_mut] = STATE(7480), + [sym_stmt_const] = STATE(7480), + [sym_assignment] = STATE(7480), + [sym__mutable_assignment_pattern] = STATE(7499), + [sym__statement] = STATE(7752), + [sym_pipeline] = STATE(7480), + [sym_cmd_identifier] = STATE(5044), + [sym_decl_def] = STATE(7471), + [sym_decl_export] = STATE(7471), + [sym_decl_extern] = STATE(7471), + [sym_decl_module] = STATE(7471), + [sym_decl_use] = STATE(7471), + [sym__ctrl_statement] = STATE(7480), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_for] = STATE(7673), + [sym_ctrl_loop] = STATE(7673), + [sym_ctrl_error] = STATE(7673), + [sym_ctrl_while] = STATE(7673), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_stmt_source] = STATE(7480), + [sym_stmt_register] = STATE(7480), + [sym__stmt_hide] = STATE(7480), + [sym_hide_mod] = STATE(7738), + [sym_hide_env] = STATE(7738), + [sym__stmt_overlay] = STATE(7480), + [sym_overlay_list] = STATE(7418), + [sym_overlay_hide] = STATE(7418), + [sym_overlay_new] = STATE(7418), + [sym_overlay_use] = STATE(7418), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(2666), [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat2] = STATE(144), - [aux_sym_pipe_element_repeat2] = STATE(322), - [anon_sym_export] = ACTIONS(623), - [anon_sym_alias] = ACTIONS(625), - [anon_sym_let] = ACTIONS(627), - [anon_sym_let_DASHenv] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(629), - [anon_sym_const] = ACTIONS(631), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(148), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym__block_body_repeat2] = STATE(141), + [aux_sym_pipe_element_repeat2] = STATE(328), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(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(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(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [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(19), + [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_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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [149] = { + [sym__block_body_statement_parenthesized] = STATE(6161), + [sym__declaration_parenthesized] = STATE(7956), + [sym_decl_alias_parenthesized] = STATE(7973), + [sym_stmt_let_parenthesized] = STATE(7445), + [sym_stmt_mut_parenthesized] = STATE(7445), + [sym_stmt_const_parenthesized] = STATE(7445), + [sym_assignment_parenthesized] = STATE(7445), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), + [sym__statement_parenthesized] = STATE(7956), + [sym_pipeline_parenthesized] = STATE(7445), + [sym_cmd_identifier] = STATE(4892), + [sym_decl_def] = STATE(7973), + [sym_decl_export] = STATE(7973), + [sym_decl_extern] = STATE(7973), + [sym_decl_module] = STATE(7973), + [sym_decl_use] = STATE(7973), + [sym__ctrl_statement] = STATE(7445), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_for] = STATE(6661), + [sym_ctrl_loop] = STATE(6661), + [sym_ctrl_error] = STATE(6661), + [sym_ctrl_while] = STATE(6661), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_stmt_source] = STATE(7445), + [sym_stmt_register] = STATE(7445), + [sym__stmt_hide] = STATE(7445), + [sym_hide_mod] = STATE(6681), + [sym_hide_env] = STATE(6681), + [sym__stmt_overlay] = STATE(7445), + [sym_overlay_list] = STATE(6713), + [sym_overlay_hide] = STATE(6713), + [sym_overlay_new] = STATE(6713), + [sym_overlay_use] = STATE(6713), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(1538), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(149), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(144), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_let_DASHenv] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -98291,17 +100594,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(385), [anon_sym_error] = ACTIONS(387), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), [anon_sym_for] = ACTIONS(395), [anon_sym_loop] = ACTIONS(397), [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), + [anon_sym_try] = ACTIONS(467), [anon_sym_return] = ACTIONS(469), [anon_sym_source] = ACTIONS(413), [anon_sym_source_DASHenv] = ACTIONS(413), @@ -98309,7 +100612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(417), [anon_sym_hide_DASHenv] = ACTIONS(419), [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -98336,346 +100639,509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [150] = { + [sym_cell_path] = STATE(163), + [sym_path] = STATE(161), + [sym_comment] = STATE(150), + [aux_sym_cell_path_repeat1] = STATE(152), + [anon_sym_export] = ACTIONS(969), + [anon_sym_alias] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_let_DASHenv] = ACTIONS(969), + [anon_sym_mut] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), + [aux_sym_cmd_identifier_token1] = ACTIONS(969), + [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(969), + [aux_sym_cmd_identifier_token9] = ACTIONS(969), + [aux_sym_cmd_identifier_token10] = ACTIONS(971), + [aux_sym_cmd_identifier_token11] = ACTIONS(971), + [aux_sym_cmd_identifier_token12] = ACTIONS(969), + [aux_sym_cmd_identifier_token13] = ACTIONS(969), + [aux_sym_cmd_identifier_token14] = ACTIONS(969), + [aux_sym_cmd_identifier_token15] = ACTIONS(969), + [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(969), + [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(969), + [aux_sym_cmd_identifier_token39] = ACTIONS(971), + [aux_sym_cmd_identifier_token40] = ACTIONS(971), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_def] = ACTIONS(969), + [anon_sym_export_DASHenv] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_error] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_make] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_source] = ACTIONS(969), + [anon_sym_source_DASHenv] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_hide_DASHenv] = ACTIONS(969), + [anon_sym_overlay] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(969), + [anon_sym_and2] = ACTIONS(971), + [anon_sym_xor2] = ACTIONS(971), + [anon_sym_or2] = ACTIONS(971), + [anon_sym_not_DASHin2] = ACTIONS(971), + [anon_sym_starts_DASHwith2] = ACTIONS(971), + [anon_sym_ends_DASHwith2] = ACTIONS(971), + [anon_sym_EQ_EQ2] = ACTIONS(971), + [anon_sym_BANG_EQ2] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_LT_EQ2] = ACTIONS(971), + [anon_sym_GT_EQ2] = ACTIONS(971), + [anon_sym_EQ_TILDE2] = ACTIONS(971), + [anon_sym_BANG_TILDE2] = ACTIONS(971), + [anon_sym_STAR_STAR2] = ACTIONS(971), + [anon_sym_PLUS_PLUS2] = ACTIONS(969), + [anon_sym_SLASH2] = ACTIONS(969), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_bit_DASHshl2] = ACTIONS(971), + [anon_sym_bit_DASHshr2] = ACTIONS(971), + [anon_sym_bit_DASHand2] = ACTIONS(971), + [anon_sym_bit_DASHxor2] = ACTIONS(971), + [anon_sym_bit_DASHor2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [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), + [aux_sym_record_entry_token1] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), + }, + [151] = { + [sym_path] = STATE(161), + [sym_comment] = STATE(151), + [aux_sym_cell_path_repeat1] = STATE(151), + [anon_sym_export] = ACTIONS(975), + [anon_sym_alias] = ACTIONS(975), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_let_DASHenv] = ACTIONS(975), + [anon_sym_mut] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), + [aux_sym_cmd_identifier_token1] = ACTIONS(975), + [aux_sym_cmd_identifier_token2] = ACTIONS(977), + [aux_sym_cmd_identifier_token3] = ACTIONS(977), + [aux_sym_cmd_identifier_token4] = ACTIONS(977), + [aux_sym_cmd_identifier_token5] = ACTIONS(977), + [aux_sym_cmd_identifier_token6] = ACTIONS(977), + [aux_sym_cmd_identifier_token7] = ACTIONS(977), + [aux_sym_cmd_identifier_token8] = ACTIONS(975), + [aux_sym_cmd_identifier_token9] = ACTIONS(975), + [aux_sym_cmd_identifier_token10] = ACTIONS(977), + [aux_sym_cmd_identifier_token11] = ACTIONS(977), + [aux_sym_cmd_identifier_token12] = ACTIONS(975), + [aux_sym_cmd_identifier_token13] = ACTIONS(975), + [aux_sym_cmd_identifier_token14] = ACTIONS(975), + [aux_sym_cmd_identifier_token15] = ACTIONS(975), + [aux_sym_cmd_identifier_token16] = ACTIONS(977), + [aux_sym_cmd_identifier_token17] = ACTIONS(977), + [aux_sym_cmd_identifier_token18] = ACTIONS(977), + [aux_sym_cmd_identifier_token19] = ACTIONS(977), + [aux_sym_cmd_identifier_token20] = ACTIONS(977), + [aux_sym_cmd_identifier_token21] = ACTIONS(977), + [aux_sym_cmd_identifier_token22] = ACTIONS(977), + [aux_sym_cmd_identifier_token23] = ACTIONS(977), + [aux_sym_cmd_identifier_token24] = ACTIONS(977), + [aux_sym_cmd_identifier_token25] = ACTIONS(977), + [aux_sym_cmd_identifier_token26] = ACTIONS(977), + [aux_sym_cmd_identifier_token27] = ACTIONS(977), + [aux_sym_cmd_identifier_token28] = ACTIONS(977), + [aux_sym_cmd_identifier_token29] = ACTIONS(977), + [aux_sym_cmd_identifier_token30] = ACTIONS(977), + [aux_sym_cmd_identifier_token31] = ACTIONS(977), + [aux_sym_cmd_identifier_token32] = ACTIONS(977), + [aux_sym_cmd_identifier_token33] = ACTIONS(977), + [aux_sym_cmd_identifier_token34] = ACTIONS(975), + [aux_sym_cmd_identifier_token35] = ACTIONS(977), + [aux_sym_cmd_identifier_token36] = ACTIONS(977), + [aux_sym_cmd_identifier_token37] = ACTIONS(977), + [aux_sym_cmd_identifier_token38] = ACTIONS(975), + [aux_sym_cmd_identifier_token39] = ACTIONS(977), + [aux_sym_cmd_identifier_token40] = ACTIONS(977), + [sym__newline] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_def] = ACTIONS(975), + [anon_sym_export_DASHenv] = ACTIONS(975), + [anon_sym_extern] = ACTIONS(975), + [anon_sym_module] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_error] = ACTIONS(975), + [anon_sym_GT2] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_make] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_source] = ACTIONS(975), + [anon_sym_source_DASHenv] = ACTIONS(975), + [anon_sym_register] = ACTIONS(975), + [anon_sym_hide] = ACTIONS(975), + [anon_sym_hide_DASHenv] = ACTIONS(975), + [anon_sym_overlay] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_STAR2] = ACTIONS(975), + [anon_sym_and2] = ACTIONS(977), + [anon_sym_xor2] = ACTIONS(977), + [anon_sym_or2] = ACTIONS(977), + [anon_sym_not_DASHin2] = ACTIONS(977), + [anon_sym_starts_DASHwith2] = ACTIONS(977), + [anon_sym_ends_DASHwith2] = ACTIONS(977), + [anon_sym_EQ_EQ2] = ACTIONS(977), + [anon_sym_BANG_EQ2] = ACTIONS(977), + [anon_sym_LT2] = ACTIONS(975), + [anon_sym_LT_EQ2] = ACTIONS(977), + [anon_sym_GT_EQ2] = ACTIONS(977), + [anon_sym_EQ_TILDE2] = ACTIONS(977), + [anon_sym_BANG_TILDE2] = ACTIONS(977), + [anon_sym_STAR_STAR2] = ACTIONS(977), + [anon_sym_PLUS_PLUS2] = ACTIONS(975), + [anon_sym_SLASH2] = ACTIONS(975), + [anon_sym_mod2] = ACTIONS(975), + [anon_sym_SLASH_SLASH2] = ACTIONS(977), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_bit_DASHshl2] = ACTIONS(977), + [anon_sym_bit_DASHshr2] = ACTIONS(977), + [anon_sym_bit_DASHand2] = ACTIONS(977), + [anon_sym_bit_DASHxor2] = ACTIONS(977), + [anon_sym_bit_DASHor2] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(975), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), + [aux_sym_record_entry_token1] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(977), + }, [152] = { - [sym_cell_path] = STATE(165), - [sym_path] = STATE(163), + [sym_path] = STATE(161), [sym_comment] = STATE(152), - [aux_sym_cell_path_repeat1] = STATE(154), - [anon_sym_export] = ACTIONS(973), - [anon_sym_alias] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_let_DASHenv] = ACTIONS(973), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(975), - [aux_sym_cmd_identifier_token1] = ACTIONS(973), - [aux_sym_cmd_identifier_token2] = ACTIONS(975), - [aux_sym_cmd_identifier_token3] = ACTIONS(975), - [aux_sym_cmd_identifier_token4] = ACTIONS(975), - [aux_sym_cmd_identifier_token5] = ACTIONS(975), - [aux_sym_cmd_identifier_token6] = ACTIONS(975), - [aux_sym_cmd_identifier_token7] = ACTIONS(975), - [aux_sym_cmd_identifier_token8] = ACTIONS(973), - [aux_sym_cmd_identifier_token9] = ACTIONS(973), - [aux_sym_cmd_identifier_token10] = ACTIONS(975), - [aux_sym_cmd_identifier_token11] = ACTIONS(975), - [aux_sym_cmd_identifier_token12] = ACTIONS(973), - [aux_sym_cmd_identifier_token13] = ACTIONS(973), - [aux_sym_cmd_identifier_token14] = ACTIONS(973), - [aux_sym_cmd_identifier_token15] = ACTIONS(973), - [aux_sym_cmd_identifier_token16] = ACTIONS(975), - [aux_sym_cmd_identifier_token17] = ACTIONS(975), - [aux_sym_cmd_identifier_token18] = ACTIONS(975), - [aux_sym_cmd_identifier_token19] = ACTIONS(975), - [aux_sym_cmd_identifier_token20] = ACTIONS(975), - [aux_sym_cmd_identifier_token21] = ACTIONS(975), - [aux_sym_cmd_identifier_token22] = ACTIONS(975), - [aux_sym_cmd_identifier_token23] = ACTIONS(975), - [aux_sym_cmd_identifier_token24] = ACTIONS(975), - [aux_sym_cmd_identifier_token25] = ACTIONS(975), - [aux_sym_cmd_identifier_token26] = ACTIONS(975), - [aux_sym_cmd_identifier_token27] = ACTIONS(975), - [aux_sym_cmd_identifier_token28] = ACTIONS(975), - [aux_sym_cmd_identifier_token29] = ACTIONS(975), - [aux_sym_cmd_identifier_token30] = ACTIONS(975), - [aux_sym_cmd_identifier_token31] = ACTIONS(975), - [aux_sym_cmd_identifier_token32] = ACTIONS(975), - [aux_sym_cmd_identifier_token33] = ACTIONS(975), - [aux_sym_cmd_identifier_token34] = ACTIONS(973), - [aux_sym_cmd_identifier_token35] = ACTIONS(975), - [aux_sym_cmd_identifier_token36] = ACTIONS(975), - [aux_sym_cmd_identifier_token37] = ACTIONS(975), - [aux_sym_cmd_identifier_token38] = ACTIONS(973), - [aux_sym_cmd_identifier_token39] = ACTIONS(975), - [aux_sym_cmd_identifier_token40] = ACTIONS(975), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_def] = ACTIONS(973), - [anon_sym_export_DASHenv] = ACTIONS(973), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_make] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_source] = ACTIONS(973), - [anon_sym_source_DASHenv] = ACTIONS(973), - [anon_sym_register] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_hide_DASHenv] = ACTIONS(973), - [anon_sym_overlay] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(973), - [anon_sym_and2] = ACTIONS(975), - [anon_sym_xor2] = ACTIONS(975), - [anon_sym_or2] = ACTIONS(975), - [anon_sym_not_DASHin2] = ACTIONS(975), - [anon_sym_starts_DASHwith2] = ACTIONS(975), - [anon_sym_ends_DASHwith2] = ACTIONS(975), - [anon_sym_EQ_EQ2] = ACTIONS(975), - [anon_sym_BANG_EQ2] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_LT_EQ2] = ACTIONS(975), - [anon_sym_GT_EQ2] = ACTIONS(975), - [anon_sym_EQ_TILDE2] = ACTIONS(975), - [anon_sym_BANG_TILDE2] = ACTIONS(975), - [anon_sym_STAR_STAR2] = ACTIONS(975), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(973), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_bit_DASHshl2] = ACTIONS(975), - [anon_sym_bit_DASHshr2] = ACTIONS(975), - [anon_sym_bit_DASHand2] = ACTIONS(975), - [anon_sym_bit_DASHxor2] = ACTIONS(975), - [anon_sym_bit_DASHor2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(975), - [aux_sym_record_entry_token1] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), + [aux_sym_cell_path_repeat1] = STATE(151), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [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(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [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(982), + [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(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(982), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_register] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(982), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [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), + [aux_sym_record_entry_token1] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), }, [153] = { - [sym_path] = STATE(163), [sym_comment] = STATE(153), - [aux_sym_cell_path_repeat1] = STATE(153), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(981), - [aux_sym_cmd_identifier_token1] = ACTIONS(979), - [aux_sym_cmd_identifier_token2] = ACTIONS(981), - [aux_sym_cmd_identifier_token3] = ACTIONS(981), - [aux_sym_cmd_identifier_token4] = ACTIONS(981), - [aux_sym_cmd_identifier_token5] = ACTIONS(981), - [aux_sym_cmd_identifier_token6] = ACTIONS(981), - [aux_sym_cmd_identifier_token7] = ACTIONS(981), - [aux_sym_cmd_identifier_token8] = ACTIONS(979), - [aux_sym_cmd_identifier_token9] = ACTIONS(979), - [aux_sym_cmd_identifier_token10] = ACTIONS(981), - [aux_sym_cmd_identifier_token11] = ACTIONS(981), - [aux_sym_cmd_identifier_token12] = ACTIONS(979), - [aux_sym_cmd_identifier_token13] = ACTIONS(979), - [aux_sym_cmd_identifier_token14] = ACTIONS(979), - [aux_sym_cmd_identifier_token15] = ACTIONS(979), - [aux_sym_cmd_identifier_token16] = ACTIONS(981), - [aux_sym_cmd_identifier_token17] = ACTIONS(981), - [aux_sym_cmd_identifier_token18] = ACTIONS(981), - [aux_sym_cmd_identifier_token19] = ACTIONS(981), - [aux_sym_cmd_identifier_token20] = ACTIONS(981), - [aux_sym_cmd_identifier_token21] = ACTIONS(981), - [aux_sym_cmd_identifier_token22] = ACTIONS(981), - [aux_sym_cmd_identifier_token23] = ACTIONS(981), - [aux_sym_cmd_identifier_token24] = ACTIONS(981), - [aux_sym_cmd_identifier_token25] = ACTIONS(981), - [aux_sym_cmd_identifier_token26] = ACTIONS(981), - [aux_sym_cmd_identifier_token27] = ACTIONS(981), - [aux_sym_cmd_identifier_token28] = ACTIONS(981), - [aux_sym_cmd_identifier_token29] = ACTIONS(981), - [aux_sym_cmd_identifier_token30] = ACTIONS(981), - [aux_sym_cmd_identifier_token31] = ACTIONS(981), - [aux_sym_cmd_identifier_token32] = ACTIONS(981), - [aux_sym_cmd_identifier_token33] = ACTIONS(981), - [aux_sym_cmd_identifier_token34] = ACTIONS(979), - [aux_sym_cmd_identifier_token35] = ACTIONS(981), - [aux_sym_cmd_identifier_token36] = ACTIONS(981), - [aux_sym_cmd_identifier_token37] = ACTIONS(981), - [aux_sym_cmd_identifier_token38] = ACTIONS(979), - [aux_sym_cmd_identifier_token39] = ACTIONS(981), - [aux_sym_cmd_identifier_token40] = ACTIONS(981), - [sym__newline] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_error] = ACTIONS(979), - [anon_sym_GT2] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_and2] = ACTIONS(981), - [anon_sym_xor2] = ACTIONS(981), - [anon_sym_or2] = ACTIONS(981), - [anon_sym_not_DASHin2] = ACTIONS(981), - [anon_sym_starts_DASHwith2] = ACTIONS(981), - [anon_sym_ends_DASHwith2] = ACTIONS(981), - [anon_sym_EQ_EQ2] = ACTIONS(981), - [anon_sym_BANG_EQ2] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ2] = ACTIONS(981), - [anon_sym_GT_EQ2] = ACTIONS(981), - [anon_sym_EQ_TILDE2] = ACTIONS(981), - [anon_sym_BANG_TILDE2] = ACTIONS(981), - [anon_sym_STAR_STAR2] = ACTIONS(981), - [anon_sym_PLUS_PLUS2] = ACTIONS(979), - [anon_sym_SLASH2] = ACTIONS(979), - [anon_sym_mod2] = ACTIONS(979), - [anon_sym_SLASH_SLASH2] = ACTIONS(981), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_bit_DASHshl2] = ACTIONS(981), - [anon_sym_bit_DASHshr2] = ACTIONS(981), - [anon_sym_bit_DASHand2] = ACTIONS(981), - [anon_sym_bit_DASHxor2] = ACTIONS(981), - [anon_sym_bit_DASHor2] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(981), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(981), - [aux_sym_record_entry_token1] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), - }, - [154] = { - [sym_path] = STATE(163), - [sym_comment] = STATE(154), - [aux_sym_cell_path_repeat1] = STATE(153), [anon_sym_export] = ACTIONS(986), [anon_sym_alias] = ACTIONS(986), [anon_sym_EQ] = ACTIONS(986), @@ -98773,6 +101239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(986), [anon_sym_as] = ACTIONS(986), [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), [anon_sym_and2] = ACTIONS(988), [anon_sym_xor2] = ACTIONS(988), [anon_sym_or2] = ACTIONS(988), @@ -98799,7 +101266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(988), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(986), [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), [anon_sym_DOT_DOT_LT2] = ACTIONS(988), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), @@ -98837,8 +101304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(988), }, - [155] = { - [sym_comment] = STATE(155), + [154] = { + [sym_comment] = STATE(154), [anon_sym_export] = ACTIONS(990), [anon_sym_alias] = ACTIONS(990), [anon_sym_EQ] = ACTIONS(990), @@ -99001,8 +101468,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(992), }, - [156] = { - [sym_comment] = STATE(156), + [155] = { + [sym_comment] = STATE(155), [anon_sym_export] = ACTIONS(996), [anon_sym_alias] = ACTIONS(996), [anon_sym_EQ] = ACTIONS(996), @@ -99165,8 +101632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(998), }, - [157] = { - [sym_comment] = STATE(157), + [156] = { + [sym_comment] = STATE(156), [anon_sym_export] = ACTIONS(1000), [anon_sym_alias] = ACTIONS(1000), [anon_sym_EQ] = ACTIONS(1000), @@ -99329,8 +101796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1002), }, - [158] = { - [sym_comment] = STATE(158), + [157] = { + [sym_comment] = STATE(157), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_EQ] = ACTIONS(1004), @@ -99493,8 +101960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1006), }, - [159] = { - [sym_comment] = STATE(159), + [158] = { + [sym_comment] = STATE(158), [anon_sym_export] = ACTIONS(1008), [anon_sym_alias] = ACTIONS(1008), [anon_sym_EQ] = ACTIONS(1008), @@ -99592,7 +102059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1008), [anon_sym_as] = ACTIONS(1008), [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), + [anon_sym_QMARK2] = ACTIONS(1012), [anon_sym_and2] = ACTIONS(1010), [anon_sym_xor2] = ACTIONS(1010), [anon_sym_or2] = ACTIONS(1010), @@ -99657,172 +102124,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1010), }, + [159] = { + [sym_comment] = STATE(159), + [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(251), + [sym_raw_string_begin] = ACTIONS(1016), + }, [160] = { [sym_comment] = STATE(160), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_alias] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_let_DASHenv] = ACTIONS(1012), - [anon_sym_mut] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1014), - [anon_sym_DASH_EQ] = ACTIONS(1014), - [anon_sym_STAR_EQ] = ACTIONS(1014), - [anon_sym_SLASH_EQ] = ACTIONS(1014), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1012), - [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(1012), - [aux_sym_cmd_identifier_token9] = ACTIONS(1012), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1012), - [aux_sym_cmd_identifier_token13] = ACTIONS(1012), - [aux_sym_cmd_identifier_token14] = ACTIONS(1012), - [aux_sym_cmd_identifier_token15] = ACTIONS(1012), - [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(1012), - [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(1012), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1012), - [anon_sym_export_DASHenv] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_make] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_catch] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_source] = ACTIONS(1012), - [anon_sym_source_DASHenv] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_hide] = ACTIONS(1012), - [anon_sym_hide_DASHenv] = ACTIONS(1012), - [anon_sym_overlay] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1014), - [anon_sym_xor2] = ACTIONS(1014), - [anon_sym_or2] = ACTIONS(1014), - [anon_sym_not_DASHin2] = ACTIONS(1014), - [anon_sym_starts_DASHwith2] = ACTIONS(1014), - [anon_sym_ends_DASHwith2] = ACTIONS(1014), - [anon_sym_EQ_EQ2] = ACTIONS(1014), - [anon_sym_BANG_EQ2] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1012), - [anon_sym_LT_EQ2] = ACTIONS(1014), - [anon_sym_GT_EQ2] = ACTIONS(1014), - [anon_sym_EQ_TILDE2] = ACTIONS(1014), - [anon_sym_BANG_TILDE2] = ACTIONS(1014), - [anon_sym_STAR_STAR2] = ACTIONS(1014), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_bit_DASHshl2] = ACTIONS(1014), - [anon_sym_bit_DASHshr2] = ACTIONS(1014), - [anon_sym_bit_DASHand2] = ACTIONS(1014), - [anon_sym_bit_DASHxor2] = ACTIONS(1014), - [anon_sym_bit_DASHor2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), - }, - [161] = { - [sym_comment] = STATE(161), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_EQ] = ACTIONS(1018), @@ -99984,8 +102450,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [162] = { - [sym_comment] = STATE(162), + [161] = { + [sym_comment] = STATE(161), [anon_sym_export] = ACTIONS(1022), [anon_sym_alias] = ACTIONS(1022), [anon_sym_EQ] = ACTIONS(1022), @@ -100147,86 +102613,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1024), }, - [163] = { - [sym_comment] = STATE(163), + [162] = { + [sym_comment] = STATE(162), [anon_sym_export] = ACTIONS(1026), [anon_sym_alias] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1026), + [anon_sym_EQ] = ACTIONS(1028), [anon_sym_let] = ACTIONS(1026), [anon_sym_let_DASHenv] = ACTIONS(1026), [anon_sym_mut] = ACTIONS(1026), [anon_sym_const] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1028), - [anon_sym_DASH_EQ] = ACTIONS(1028), - [anon_sym_STAR_EQ] = ACTIONS(1028), - [anon_sym_SLASH_EQ] = ACTIONS(1028), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [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_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(1026), [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token10] = ACTIONS(1032), + [aux_sym_cmd_identifier_token11] = ACTIONS(1032), [aux_sym_cmd_identifier_token12] = ACTIONS(1026), [aux_sym_cmd_identifier_token13] = ACTIONS(1026), [aux_sym_cmd_identifier_token14] = ACTIONS(1026), [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [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_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(1026), - [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_token35] = ACTIONS(1032), + [aux_sym_cmd_identifier_token36] = ACTIONS(1032), + [aux_sym_cmd_identifier_token37] = ACTIONS(1032), [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [sym__newline] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [aux_sym_cmd_identifier_token39] = ACTIONS(1032), + [aux_sym_cmd_identifier_token40] = ACTIONS(1032), + [sym__newline] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), [anon_sym_def] = ACTIONS(1026), [anon_sym_export_DASHenv] = ACTIONS(1026), [anon_sym_extern] = ACTIONS(1026), [anon_sym_module] = ACTIONS(1026), [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_COMMA] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_error] = ACTIONS(1026), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1040), [anon_sym_break] = ACTIONS(1026), [anon_sym_continue] = ACTIONS(1026), [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1040), [anon_sym_loop] = ACTIONS(1026), [anon_sym_make] = ACTIONS(1026), [anon_sym_while] = ACTIONS(1026), @@ -100234,7 +102700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1026), [anon_sym_else] = ACTIONS(1026), [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_try] = ACTIONS(1026), [anon_sym_catch] = ACTIONS(1026), [anon_sym_return] = ACTIONS(1026), @@ -100245,694 +102711,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1026), [anon_sym_overlay] = ACTIONS(1026), [anon_sym_as] = ACTIONS(1026), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1026), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1034), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1040), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [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_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(1026), [aux_sym__val_number_token5] = ACTIONS(1026), [aux_sym__val_number_token6] = ACTIONS(1026), - [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(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1028), + [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_record_entry_token1] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1032), }, - [164] = { - [sym_comment] = STATE(164), - [anon_sym_export] = ACTIONS(1030), - [anon_sym_alias] = ACTIONS(1030), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_let_DASHenv] = ACTIONS(1030), - [anon_sym_mut] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), - [anon_sym_STAR_EQ] = ACTIONS(1034), - [anon_sym_SLASH_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1030), - [aux_sym_cmd_identifier_token2] = ACTIONS(1036), - [aux_sym_cmd_identifier_token3] = ACTIONS(1036), - [aux_sym_cmd_identifier_token4] = ACTIONS(1036), - [aux_sym_cmd_identifier_token5] = ACTIONS(1036), - [aux_sym_cmd_identifier_token6] = ACTIONS(1036), - [aux_sym_cmd_identifier_token7] = ACTIONS(1036), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1036), - [aux_sym_cmd_identifier_token11] = ACTIONS(1036), - [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(1036), - [aux_sym_cmd_identifier_token17] = ACTIONS(1036), - [aux_sym_cmd_identifier_token18] = ACTIONS(1036), - [aux_sym_cmd_identifier_token19] = ACTIONS(1036), - [aux_sym_cmd_identifier_token20] = ACTIONS(1036), - [aux_sym_cmd_identifier_token21] = ACTIONS(1036), - [aux_sym_cmd_identifier_token22] = ACTIONS(1036), - [aux_sym_cmd_identifier_token23] = ACTIONS(1036), - [aux_sym_cmd_identifier_token24] = ACTIONS(1036), - [aux_sym_cmd_identifier_token25] = ACTIONS(1036), - [aux_sym_cmd_identifier_token26] = ACTIONS(1036), - [aux_sym_cmd_identifier_token27] = ACTIONS(1036), - [aux_sym_cmd_identifier_token28] = ACTIONS(1036), - [aux_sym_cmd_identifier_token29] = ACTIONS(1036), - [aux_sym_cmd_identifier_token30] = ACTIONS(1036), - [aux_sym_cmd_identifier_token31] = ACTIONS(1036), - [aux_sym_cmd_identifier_token32] = ACTIONS(1036), - [aux_sym_cmd_identifier_token33] = ACTIONS(1036), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1036), - [aux_sym_cmd_identifier_token36] = ACTIONS(1036), - [aux_sym_cmd_identifier_token37] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [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(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(1036), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1030), - [anon_sym_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1044), - [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(1047), - [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_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1038), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1044), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [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(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [163] = { + [sym_comment] = STATE(163), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [aux_sym_cmd_identifier_token37] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_GT2] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_STAR2] = ACTIONS(1052), + [anon_sym_and2] = ACTIONS(1054), + [anon_sym_xor2] = ACTIONS(1054), + [anon_sym_or2] = ACTIONS(1054), + [anon_sym_not_DASHin2] = ACTIONS(1054), + [anon_sym_starts_DASHwith2] = ACTIONS(1054), + [anon_sym_ends_DASHwith2] = ACTIONS(1054), + [anon_sym_EQ_EQ2] = ACTIONS(1054), + [anon_sym_BANG_EQ2] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1052), + [anon_sym_LT_EQ2] = ACTIONS(1054), + [anon_sym_GT_EQ2] = ACTIONS(1054), + [anon_sym_EQ_TILDE2] = ACTIONS(1054), + [anon_sym_BANG_TILDE2] = ACTIONS(1054), + [anon_sym_STAR_STAR2] = ACTIONS(1054), + [anon_sym_PLUS_PLUS2] = ACTIONS(1052), + [anon_sym_SLASH2] = ACTIONS(1052), + [anon_sym_mod2] = ACTIONS(1052), + [anon_sym_SLASH_SLASH2] = ACTIONS(1054), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_bit_DASHshl2] = ACTIONS(1054), + [anon_sym_bit_DASHshr2] = ACTIONS(1054), + [anon_sym_bit_DASHand2] = ACTIONS(1054), + [anon_sym_bit_DASHxor2] = ACTIONS(1054), + [anon_sym_bit_DASHor2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1052), + [aux_sym__val_number_token5] = ACTIONS(1052), + [aux_sym__val_number_token6] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), [aux_sym_record_entry_token1] = ACTIONS(1054), - [anon_sym_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(251), - [sym_raw_string_begin] = ACTIONS(1036), - }, - [165] = { - [sym_comment] = STATE(165), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [aux_sym_cmd_identifier_token37] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [sym__newline] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_GT2] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_STAR2] = ACTIONS(1056), - [anon_sym_and2] = ACTIONS(1058), - [anon_sym_xor2] = ACTIONS(1058), - [anon_sym_or2] = ACTIONS(1058), - [anon_sym_not_DASHin2] = ACTIONS(1058), - [anon_sym_starts_DASHwith2] = ACTIONS(1058), - [anon_sym_ends_DASHwith2] = ACTIONS(1058), - [anon_sym_EQ_EQ2] = ACTIONS(1058), - [anon_sym_BANG_EQ2] = ACTIONS(1058), - [anon_sym_LT2] = ACTIONS(1056), - [anon_sym_LT_EQ2] = ACTIONS(1058), - [anon_sym_GT_EQ2] = ACTIONS(1058), - [anon_sym_EQ_TILDE2] = ACTIONS(1058), - [anon_sym_BANG_TILDE2] = ACTIONS(1058), - [anon_sym_STAR_STAR2] = ACTIONS(1058), - [anon_sym_PLUS_PLUS2] = ACTIONS(1056), - [anon_sym_SLASH2] = ACTIONS(1056), - [anon_sym_mod2] = ACTIONS(1056), - [anon_sym_SLASH_SLASH2] = ACTIONS(1058), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_bit_DASHshl2] = ACTIONS(1058), - [anon_sym_bit_DASHshr2] = ACTIONS(1058), - [anon_sym_bit_DASHand2] = ACTIONS(1058), - [anon_sym_bit_DASHxor2] = ACTIONS(1058), - [anon_sym_bit_DASHor2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [aux_sym__val_number_token4] = ACTIONS(1056), - [aux_sym__val_number_token5] = ACTIONS(1056), - [aux_sym__val_number_token6] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [aux_sym_record_entry_token1] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1058), - }, - [166] = { - [sym_pipeline] = STATE(7158), - [sym_cmd_identifier] = STATE(4789), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = 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(19), - [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(19), - [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(1060), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1054), }, - [167] = { - [sym_pipeline] = STATE(7178), - [sym_cmd_identifier] = STATE(4789), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = 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(19), - [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(19), - [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(1060), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [168] = { - [sym_pipeline] = STATE(6285), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(327), + [164] = { + [sym_pipeline] = STATE(7244), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym_pipe_element_repeat2] = STATE(315), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -100975,145 +103022,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [169] = { - [sym_pipeline] = STATE(6669), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(469), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -101121,10 +103040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -101146,49 +103065,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [170] = { - [sym_pipeline] = STATE(6671), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(170), + [165] = { + [sym_pipeline] = STATE(6701), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(165), [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_pipe_element_repeat2] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -101231,17 +103150,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1058), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -101249,10 +103168,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -101274,49 +103193,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [171] = { - [sym_pipeline] = STATE(6286), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(171), + [166] = { + [sym_pipeline] = STATE(7244), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(166), [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_pipe_element_repeat2] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -101359,17 +103278,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1058), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -101377,10 +103296,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -101402,49 +103321,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [172] = { - [sym_pipeline] = STATE(6369), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(172), + [167] = { + [sym_pipeline] = STATE(6869), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(167), [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_pipe_element_repeat2] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -101487,17 +103406,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1058), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -101505,10 +103424,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -101530,177 +103449,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [173] = { - [sym_pipeline_parenthesized] = STATE(7165), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), + [168] = { + [sym_pipeline] = STATE(7777), + [sym_cmd_identifier] = STATE(5044), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(173), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(328), + [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(19), + [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(19), + [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(1070), + [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(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(123), }, - [174] = { - [sym_pipeline] = STATE(7028), - [sym_cmd_identifier] = STATE(4789), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(332), + [169] = { + [sym_pipeline] = STATE(7416), + [sym_cmd_identifier] = STATE(5044), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(833), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(169), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(328), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -101743,7 +103662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -101786,49 +103705,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [175] = { - [sym_pipeline] = STATE(6669), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(322), + [170] = { + [sym_pipeline_parenthesized] = STATE(7451), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -101871,18 +103790,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), + [anon_sym_try] = ACTIONS(467), [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -101909,54 +103828,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [176] = { - [sym_pipeline_parenthesized] = STATE(7442), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(176), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [171] = { + [sym_pipeline_parenthesized] = STATE(7692), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(171), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -101999,17 +103918,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_if] = ACTIONS(1072), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -102017,10 +103936,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -102042,49 +103961,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [177] = { - [sym_pipeline_parenthesized] = STATE(7443), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [172] = { + [sym_pipeline_parenthesized] = STATE(7451), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(172), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -102127,17 +104046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_if] = ACTIONS(1072), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -102145,10 +104064,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -102170,49 +104089,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [178] = { - [sym_pipeline_parenthesized] = STATE(6911), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), + [173] = { + [sym_pipeline] = STATE(7660), + [sym_cmd_identifier] = STATE(5044), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(178), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(328), + [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(19), + [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(19), + [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(1070), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [174] = { + [sym_pipeline_parenthesized] = STATE(7613), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(174), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -102255,7 +104302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), @@ -102298,49 +104345,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [179] = { - [sym_pipeline_parenthesized] = STATE(6965), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [175] = { + [sym_pipeline_parenthesized] = STATE(7613), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(175), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -102383,17 +104430,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), + [anon_sym_if] = ACTIONS(1072), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -102401,10 +104448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -102426,177 +104473,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [180] = { - [sym_pipeline] = STATE(7189), - [sym_cmd_identifier] = STATE(4789), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = 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(19), - [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(19), - [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(1060), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [181] = { - [sym_pipeline] = STATE(6286), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(322), + [176] = { + [sym_pipeline_parenthesized] = STATE(7760), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(176), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -102639,28 +104558,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(1072), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(467), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -102677,54 +104596,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [182] = { - [sym_pipeline_parenthesized] = STATE(7165), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(202), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(328), + [177] = { + [sym_pipeline_parenthesized] = STATE(7761), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(177), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -102767,17 +104686,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1072), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -102785,10 +104704,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -102810,49 +104729,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [183] = { - [sym_pipeline_parenthesized] = STATE(7442), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(183), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(202), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(328), + [178] = { + [sym_pipeline_parenthesized] = STATE(7760), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(178), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -102895,17 +104814,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(469), [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -102913,10 +104832,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -102938,49 +104857,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [184] = { - [sym_pipeline_parenthesized] = STATE(7443), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(184), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(202), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(328), + [179] = { + [sym_pipeline] = STATE(7653), + [sym_cmd_identifier] = STATE(5044), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(833), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(328), + [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(19), + [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(19), + [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(1070), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [180] = { + [sym_pipeline] = STATE(7654), + [sym_cmd_identifier] = STATE(5044), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(5045), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(833), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(201), + [aux_sym_pipe_element_repeat2] = STATE(328), + [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(19), + [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(19), + [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(1070), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [181] = { + [sym_pipeline] = STATE(7231), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(326), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103023,28 +105198,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(411), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -103061,54 +105236,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [185] = { - [sym_pipeline] = STATE(6285), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(318), + [182] = { + [sym_pipeline_parenthesized] = STATE(7761), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(182), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103151,28 +105326,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_break] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(461), + [anon_sym_do] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(467), + [anon_sym_return] = ACTIONS(469), + [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -103189,54 +105364,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [186] = { - [sym_pipeline_parenthesized] = STATE(6911), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(202), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(328), + [183] = { + [sym_pipeline_parenthesized] = STATE(7692), + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(4951), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103279,17 +105454,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(465), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(469), [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -103297,10 +105472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -103322,49 +105497,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [187] = { - [sym_pipeline_parenthesized] = STATE(6965), - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4761), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(187), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(202), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(328), + [184] = { + [sym_pipeline] = STATE(7231), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym_pipe_element_repeat2] = STATE(315), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103407,28 +105582,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(469), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -103445,54 +105620,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [188] = { - [sym_pipeline] = STATE(6669), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(318), + [185] = { + [sym_pipeline] = STATE(7231), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym_pipe_element_repeat2] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103535,17 +105710,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(1058), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -103553,10 +105728,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -103578,177 +105753,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [189] = { - [sym_pipeline] = STATE(7040), - [sym_cmd_identifier] = STATE(4789), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4728), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = 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(19), - [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(19), - [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(1060), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [190] = { - [sym_pipeline] = STATE(6671), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(318), + [186] = { + [sym_pipeline] = STATE(6700), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(186), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym_pipe_element_repeat2] = STATE(315), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103791,17 +105838,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_return] = ACTIONS(469), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -103809,10 +105856,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -103834,49 +105881,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [191] = { - [sym_pipeline] = STATE(6286), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(318), + [187] = { + [sym_pipeline] = STATE(6700), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(326), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -103919,7 +105966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), @@ -103962,49 +106009,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [192] = { - [sym_pipeline] = STATE(6369), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(318), + [188] = { + [sym_pipeline] = STATE(6701), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(197), + [aux_sym_pipe_element_repeat2] = STATE(315), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104047,17 +106094,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_return] = ACTIONS(469), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -104065,10 +106112,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -104090,49 +106137,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [193] = { - [sym_pipeline] = STATE(6369), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(193), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(322), + [189] = { + [sym_pipeline] = STATE(6869), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(326), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104175,17 +106222,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_return] = ACTIONS(411), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -104193,10 +106240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -104218,49 +106265,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [194] = { - [sym_pipeline] = STATE(6285), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(194), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(322), + [190] = { + [sym_pipeline] = STATE(6701), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(326), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104303,17 +106350,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_return] = ACTIONS(411), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -104321,10 +106368,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -104346,49 +106393,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [195] = { - [sym_pipeline] = STATE(6671), - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4559), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(195), + [191] = { + [sym_pipeline] = STATE(6869), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(191), [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(322), + [aux_sym_pipe_element_repeat2] = STATE(315), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104431,12 +106478,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_if] = ACTIONS(629), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -104474,48 +106521,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [196] = { - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4570), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(196), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(327), + [192] = { + [sym_pipeline] = STATE(6700), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(192), + [aux_sym_pipeline_repeat1] = STATE(196), + [aux_sym_pipe_element_repeat2] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104558,17 +106606,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1058), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -104576,10 +106624,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -104601,48 +106649,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [197] = { - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4570), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(197), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(322), + [193] = { + [sym_pipeline] = STATE(7244), + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4850), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(193), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(326), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104685,17 +106734,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(633), + [anon_sym_if] = ACTIONS(403), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_return] = ACTIONS(411), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -104703,10 +106752,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -104728,175 +106777,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [198] = { - [sym_cmd_identifier] = STATE(4789), - [sym__ctrl_expression] = STATE(5058), - [sym_ctrl_do] = STATE(5085), - [sym_ctrl_if] = STATE(5085), - [sym_ctrl_match] = STATE(5085), - [sym_ctrl_try] = STATE(5085), - [sym_ctrl_return] = STATE(5085), - [sym_pipe_element] = STATE(4756), - [sym_where_command] = STATE(5095), - [sym__expression] = STATE(3937), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5095), - [sym_comment] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = 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(19), - [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(19), - [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(1060), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [199] = { - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4742), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(199), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [194] = { + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(5055), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(194), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(198), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -104939,7 +106861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), @@ -104982,48 +106904,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [200] = { - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(4570), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(200), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(318), + [195] = { + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4868), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(326), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105066,7 +106988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(391), [anon_sym_continue] = ACTIONS(393), @@ -105109,175 +107031,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [201] = { - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(5017), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(871), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(201), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym_cmd_identifier_token1] = ACTIONS(1078), - [aux_sym_cmd_identifier_token2] = ACTIONS(1081), - [aux_sym_cmd_identifier_token3] = ACTIONS(1081), - [aux_sym_cmd_identifier_token4] = ACTIONS(1081), - [aux_sym_cmd_identifier_token5] = ACTIONS(1081), - [aux_sym_cmd_identifier_token6] = ACTIONS(1081), - [aux_sym_cmd_identifier_token7] = ACTIONS(1081), - [aux_sym_cmd_identifier_token8] = ACTIONS(1081), - [aux_sym_cmd_identifier_token9] = ACTIONS(1078), - [aux_sym_cmd_identifier_token10] = ACTIONS(1081), - [aux_sym_cmd_identifier_token11] = ACTIONS(1081), - [aux_sym_cmd_identifier_token12] = ACTIONS(1081), - [aux_sym_cmd_identifier_token13] = ACTIONS(1078), - [aux_sym_cmd_identifier_token14] = ACTIONS(1081), - [aux_sym_cmd_identifier_token15] = ACTIONS(1078), - [aux_sym_cmd_identifier_token16] = ACTIONS(1081), - [aux_sym_cmd_identifier_token17] = ACTIONS(1081), - [aux_sym_cmd_identifier_token18] = ACTIONS(1078), - [aux_sym_cmd_identifier_token19] = ACTIONS(1081), - [aux_sym_cmd_identifier_token20] = ACTIONS(1081), - [aux_sym_cmd_identifier_token21] = ACTIONS(1081), - [aux_sym_cmd_identifier_token22] = ACTIONS(1081), - [aux_sym_cmd_identifier_token23] = ACTIONS(1081), - [aux_sym_cmd_identifier_token24] = ACTIONS(1081), - [aux_sym_cmd_identifier_token25] = ACTIONS(1081), - [aux_sym_cmd_identifier_token26] = ACTIONS(1081), - [aux_sym_cmd_identifier_token27] = ACTIONS(1081), - [aux_sym_cmd_identifier_token28] = ACTIONS(1081), - [aux_sym_cmd_identifier_token29] = ACTIONS(1081), - [aux_sym_cmd_identifier_token30] = ACTIONS(1081), - [aux_sym_cmd_identifier_token31] = ACTIONS(1081), - [aux_sym_cmd_identifier_token32] = ACTIONS(1078), - [aux_sym_cmd_identifier_token33] = ACTIONS(1081), - [aux_sym_cmd_identifier_token34] = ACTIONS(1078), - [aux_sym_cmd_identifier_token35] = ACTIONS(1081), - [aux_sym_cmd_identifier_token36] = ACTIONS(1081), - [aux_sym_cmd_identifier_token37] = ACTIONS(1081), - [aux_sym_cmd_identifier_token38] = ACTIONS(1078), - [aux_sym_cmd_identifier_token39] = ACTIONS(1081), - [aux_sym_cmd_identifier_token40] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_DASH2] = ACTIONS(1093), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_match] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_DOT_DOT] = ACTIONS(1114), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_where] = ACTIONS(1123), - [aux_sym_expr_unary_token1] = ACTIONS(1126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), - [anon_sym_DOT_DOT_LT] = ACTIONS(1129), - [anon_sym_null] = ACTIONS(1132), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [aux_sym__val_number_decimal_token1] = ACTIONS(1138), - [aux_sym__val_number_decimal_token2] = ACTIONS(1141), - [aux_sym__val_number_decimal_token3] = ACTIONS(1144), - [aux_sym__val_number_decimal_token4] = ACTIONS(1147), - [aux_sym__val_number_token1] = ACTIONS(1150), - [aux_sym__val_number_token2] = ACTIONS(1150), - [aux_sym__val_number_token3] = ACTIONS(1150), - [aux_sym__val_number_token4] = ACTIONS(1153), - [aux_sym__val_number_token5] = ACTIONS(1153), - [aux_sym__val_number_token6] = ACTIONS(1153), - [anon_sym_0b] = ACTIONS(1156), - [anon_sym_0o] = ACTIONS(1159), - [anon_sym_0x] = ACTIONS(1159), - [sym_val_date] = ACTIONS(1162), - [anon_sym_DQUOTE] = ACTIONS(1165), - [sym__str_single_quotes] = ACTIONS(1168), - [sym__str_back_ticks] = ACTIONS(1168), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1171), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1174), - [aux_sym_env_var_token1] = ACTIONS(1177), - [anon_sym_CARET] = ACTIONS(1180), - [aux_sym_command_token1] = ACTIONS(1183), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1186), + [196] = { + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4868), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(196), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(322), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(367), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(367), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [aux_sym_cmd_identifier_token37] = ACTIONS(369), + [aux_sym_cmd_identifier_token38] = ACTIONS(367), + [aux_sym_cmd_identifier_token39] = ACTIONS(369), + [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(1060), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(433), + [aux_sym__val_number_token5] = ACTIONS(433), + [aux_sym__val_number_token6] = ACTIONS(433), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, - [202] = { - [sym_cmd_identifier] = STATE(4751), - [sym__ctrl_expression_parenthesized] = STATE(5100), - [sym_ctrl_do_parenthesized] = STATE(5103), - [sym_ctrl_if_parenthesized] = STATE(5103), - [sym_ctrl_match] = STATE(5103), - [sym_ctrl_try_parenthesized] = STATE(5103), - [sym_ctrl_return] = STATE(5103), - [sym_pipe_element_parenthesized] = STATE(4742), - [sym_where_command_parenthesized] = STATE(5106), - [sym__expression_parenthesized] = STATE(3935), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5111), - [sym_comment] = STATE(202), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(328), + [197] = { + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(4868), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(197), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(315), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -105320,17 +107242,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_break] = ACTIONS(391), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_do] = ACTIONS(401), + [anon_sym_if] = ACTIONS(629), + [anon_sym_match] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(409), + [anon_sym_return] = ACTIONS(469), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(433), + [aux_sym__val_number_token5] = ACTIONS(433), + [aux_sym__val_number_token6] = ACTIONS(433), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [198] = { + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(5437), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(869), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(198), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(198), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(1074), + [aux_sym_cmd_identifier_token2] = ACTIONS(1077), + [aux_sym_cmd_identifier_token3] = ACTIONS(1077), + [aux_sym_cmd_identifier_token4] = ACTIONS(1077), + [aux_sym_cmd_identifier_token5] = ACTIONS(1077), + [aux_sym_cmd_identifier_token6] = ACTIONS(1077), + [aux_sym_cmd_identifier_token7] = ACTIONS(1077), + [aux_sym_cmd_identifier_token8] = ACTIONS(1077), + [aux_sym_cmd_identifier_token9] = ACTIONS(1074), + [aux_sym_cmd_identifier_token10] = ACTIONS(1077), + [aux_sym_cmd_identifier_token11] = ACTIONS(1077), + [aux_sym_cmd_identifier_token12] = ACTIONS(1077), + [aux_sym_cmd_identifier_token13] = ACTIONS(1074), + [aux_sym_cmd_identifier_token14] = ACTIONS(1077), + [aux_sym_cmd_identifier_token15] = ACTIONS(1074), + [aux_sym_cmd_identifier_token16] = ACTIONS(1077), + [aux_sym_cmd_identifier_token17] = ACTIONS(1077), + [aux_sym_cmd_identifier_token18] = ACTIONS(1074), + [aux_sym_cmd_identifier_token19] = ACTIONS(1077), + [aux_sym_cmd_identifier_token20] = ACTIONS(1077), + [aux_sym_cmd_identifier_token21] = ACTIONS(1077), + [aux_sym_cmd_identifier_token22] = ACTIONS(1077), + [aux_sym_cmd_identifier_token23] = ACTIONS(1077), + [aux_sym_cmd_identifier_token24] = ACTIONS(1077), + [aux_sym_cmd_identifier_token25] = ACTIONS(1077), + [aux_sym_cmd_identifier_token26] = ACTIONS(1077), + [aux_sym_cmd_identifier_token27] = ACTIONS(1077), + [aux_sym_cmd_identifier_token28] = ACTIONS(1077), + [aux_sym_cmd_identifier_token29] = ACTIONS(1077), + [aux_sym_cmd_identifier_token30] = ACTIONS(1077), + [aux_sym_cmd_identifier_token31] = ACTIONS(1077), + [aux_sym_cmd_identifier_token32] = ACTIONS(1074), + [aux_sym_cmd_identifier_token33] = ACTIONS(1077), + [aux_sym_cmd_identifier_token34] = ACTIONS(1074), + [aux_sym_cmd_identifier_token35] = ACTIONS(1077), + [aux_sym_cmd_identifier_token36] = ACTIONS(1077), + [aux_sym_cmd_identifier_token37] = ACTIONS(1077), + [aux_sym_cmd_identifier_token38] = ACTIONS(1074), + [aux_sym_cmd_identifier_token39] = ACTIONS(1077), + [aux_sym_cmd_identifier_token40] = ACTIONS(1077), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_DASH2] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_if] = ACTIONS(1101), + [anon_sym_match] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_DOT_DOT] = ACTIONS(1110), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_where] = ACTIONS(1119), + [aux_sym_expr_unary_token1] = ACTIONS(1122), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), + [anon_sym_DOT_DOT_LT] = ACTIONS(1125), + [anon_sym_null] = ACTIONS(1128), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1131), + [aux_sym__val_number_decimal_token1] = ACTIONS(1134), + [aux_sym__val_number_decimal_token2] = ACTIONS(1137), + [aux_sym__val_number_decimal_token3] = ACTIONS(1140), + [aux_sym__val_number_decimal_token4] = ACTIONS(1143), + [aux_sym__val_number_token1] = ACTIONS(1146), + [aux_sym__val_number_token2] = ACTIONS(1146), + [aux_sym__val_number_token3] = ACTIONS(1146), + [aux_sym__val_number_token4] = ACTIONS(1149), + [aux_sym__val_number_token5] = ACTIONS(1149), + [aux_sym__val_number_token6] = ACTIONS(1149), + [anon_sym_0b] = ACTIONS(1152), + [anon_sym_0o] = ACTIONS(1155), + [anon_sym_0x] = ACTIONS(1155), + [sym_val_date] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym__str_single_quotes] = ACTIONS(1164), + [sym__str_back_ticks] = ACTIONS(1164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1167), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1170), + [aux_sym_env_var_token1] = ACTIONS(1173), + [anon_sym_CARET] = ACTIONS(1176), + [aux_sym_command_token1] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1182), + }, + [199] = { + [sym_cmd_identifier] = STATE(4846), + [sym__ctrl_expression] = STATE(5086), + [sym_ctrl_do] = STATE(5087), + [sym_ctrl_if] = STATE(5087), + [sym_ctrl_match] = STATE(5087), + [sym_ctrl_try] = STATE(5087), + [sym_ctrl_return] = STATE(5087), + [sym_pipe_element] = STATE(5327), + [sym_where_command] = STATE(5089), + [sym__expression] = STATE(4111), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(869), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5089), + [sym_comment] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(324), + [aux_sym_cmd_identifier_token1] = ACTIONS(1185), + [aux_sym_cmd_identifier_token2] = ACTIONS(1188), + [aux_sym_cmd_identifier_token3] = ACTIONS(1188), + [aux_sym_cmd_identifier_token4] = ACTIONS(1188), + [aux_sym_cmd_identifier_token5] = ACTIONS(1188), + [aux_sym_cmd_identifier_token6] = ACTIONS(1188), + [aux_sym_cmd_identifier_token7] = ACTIONS(1188), + [aux_sym_cmd_identifier_token8] = ACTIONS(1188), + [aux_sym_cmd_identifier_token9] = ACTIONS(1185), + [aux_sym_cmd_identifier_token10] = ACTIONS(1188), + [aux_sym_cmd_identifier_token11] = ACTIONS(1188), + [aux_sym_cmd_identifier_token12] = ACTIONS(1188), + [aux_sym_cmd_identifier_token13] = ACTIONS(1185), + [aux_sym_cmd_identifier_token14] = ACTIONS(1188), + [aux_sym_cmd_identifier_token15] = ACTIONS(1185), + [aux_sym_cmd_identifier_token16] = ACTIONS(1188), + [aux_sym_cmd_identifier_token17] = ACTIONS(1188), + [aux_sym_cmd_identifier_token18] = ACTIONS(1185), + [aux_sym_cmd_identifier_token19] = ACTIONS(1188), + [aux_sym_cmd_identifier_token20] = ACTIONS(1188), + [aux_sym_cmd_identifier_token21] = ACTIONS(1188), + [aux_sym_cmd_identifier_token22] = ACTIONS(1188), + [aux_sym_cmd_identifier_token23] = ACTIONS(1188), + [aux_sym_cmd_identifier_token24] = ACTIONS(1188), + [aux_sym_cmd_identifier_token25] = ACTIONS(1188), + [aux_sym_cmd_identifier_token26] = ACTIONS(1188), + [aux_sym_cmd_identifier_token27] = ACTIONS(1188), + [aux_sym_cmd_identifier_token28] = ACTIONS(1188), + [aux_sym_cmd_identifier_token29] = ACTIONS(1188), + [aux_sym_cmd_identifier_token30] = ACTIONS(1188), + [aux_sym_cmd_identifier_token31] = ACTIONS(1188), + [aux_sym_cmd_identifier_token32] = ACTIONS(1185), + [aux_sym_cmd_identifier_token33] = ACTIONS(1188), + [aux_sym_cmd_identifier_token34] = ACTIONS(1185), + [aux_sym_cmd_identifier_token35] = ACTIONS(1188), + [aux_sym_cmd_identifier_token36] = ACTIONS(1188), + [aux_sym_cmd_identifier_token37] = ACTIONS(1188), + [aux_sym_cmd_identifier_token38] = ACTIONS(1185), + [aux_sym_cmd_identifier_token39] = ACTIONS(1188), + [aux_sym_cmd_identifier_token40] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_DOLLAR] = ACTIONS(1197), + [anon_sym_DASH2] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_where] = ACTIONS(1230), + [aux_sym_expr_unary_token1] = ACTIONS(1233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), + [anon_sym_DOT_DOT_LT] = ACTIONS(1236), + [anon_sym_null] = ACTIONS(1239), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [aux_sym__val_number_decimal_token1] = ACTIONS(1245), + [aux_sym__val_number_decimal_token2] = ACTIONS(1248), + [aux_sym__val_number_decimal_token3] = ACTIONS(1251), + [aux_sym__val_number_decimal_token4] = ACTIONS(1254), + [aux_sym__val_number_token1] = ACTIONS(1257), + [aux_sym__val_number_token2] = ACTIONS(1257), + [aux_sym__val_number_token3] = ACTIONS(1257), + [aux_sym__val_number_token4] = ACTIONS(1260), + [aux_sym__val_number_token5] = ACTIONS(1260), + [aux_sym__val_number_token6] = ACTIONS(1260), + [anon_sym_0b] = ACTIONS(1263), + [anon_sym_0o] = ACTIONS(1266), + [anon_sym_0x] = ACTIONS(1266), + [sym_val_date] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1281), + [aux_sym_env_var_token1] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1287), + [aux_sym_command_token1] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1293), + }, + [200] = { + [sym_cmd_identifier] = STATE(4892), + [sym__ctrl_expression_parenthesized] = STATE(5380), + [sym_ctrl_do_parenthesized] = STATE(5404), + [sym_ctrl_if_parenthesized] = STATE(5404), + [sym_ctrl_match] = STATE(5404), + [sym_ctrl_try_parenthesized] = STATE(5404), + [sym_ctrl_return] = STATE(5404), + [sym_pipe_element_parenthesized] = STATE(5055), + [sym_where_command_parenthesized] = STATE(5431), + [sym__expression_parenthesized] = STATE(4206), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5468), + [sym_comment] = STATE(200), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(198), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), + [aux_sym_cmd_identifier_token1] = ACTIONS(367), + [aux_sym_cmd_identifier_token2] = ACTIONS(369), + [aux_sym_cmd_identifier_token3] = ACTIONS(369), + [aux_sym_cmd_identifier_token4] = ACTIONS(369), + [aux_sym_cmd_identifier_token5] = ACTIONS(369), + [aux_sym_cmd_identifier_token6] = ACTIONS(369), + [aux_sym_cmd_identifier_token7] = ACTIONS(369), + [aux_sym_cmd_identifier_token8] = ACTIONS(369), + [aux_sym_cmd_identifier_token9] = ACTIONS(367), + [aux_sym_cmd_identifier_token10] = ACTIONS(369), + [aux_sym_cmd_identifier_token11] = ACTIONS(369), + [aux_sym_cmd_identifier_token12] = ACTIONS(369), + [aux_sym_cmd_identifier_token13] = ACTIONS(367), + [aux_sym_cmd_identifier_token14] = ACTIONS(369), + [aux_sym_cmd_identifier_token15] = ACTIONS(367), + [aux_sym_cmd_identifier_token16] = ACTIONS(369), + [aux_sym_cmd_identifier_token17] = ACTIONS(369), + [aux_sym_cmd_identifier_token18] = ACTIONS(367), + [aux_sym_cmd_identifier_token19] = ACTIONS(369), + [aux_sym_cmd_identifier_token20] = ACTIONS(369), + [aux_sym_cmd_identifier_token21] = ACTIONS(369), + [aux_sym_cmd_identifier_token22] = ACTIONS(369), + [aux_sym_cmd_identifier_token23] = ACTIONS(369), + [aux_sym_cmd_identifier_token24] = ACTIONS(369), + [aux_sym_cmd_identifier_token25] = ACTIONS(369), + [aux_sym_cmd_identifier_token26] = ACTIONS(369), + [aux_sym_cmd_identifier_token27] = ACTIONS(369), + [aux_sym_cmd_identifier_token28] = ACTIONS(369), + [aux_sym_cmd_identifier_token29] = ACTIONS(369), + [aux_sym_cmd_identifier_token30] = ACTIONS(369), + [aux_sym_cmd_identifier_token31] = ACTIONS(369), + [aux_sym_cmd_identifier_token32] = ACTIONS(367), + [aux_sym_cmd_identifier_token33] = ACTIONS(369), + [aux_sym_cmd_identifier_token34] = ACTIONS(367), + [aux_sym_cmd_identifier_token35] = ACTIONS(369), + [aux_sym_cmd_identifier_token36] = ACTIONS(369), + [aux_sym_cmd_identifier_token37] = ACTIONS(369), + [aux_sym_cmd_identifier_token38] = ACTIONS(367), + [aux_sym_cmd_identifier_token39] = ACTIONS(369), + [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_break] = ACTIONS(459), [anon_sym_continue] = ACTIONS(461), [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1072), [anon_sym_match] = ACTIONS(405), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1060), [anon_sym_where] = ACTIONS(471), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -105338,10 +107641,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -105363,377 +107666,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [203] = { - [sym_cmd_identifier] = STATE(4616), - [sym__ctrl_expression] = STATE(4987), - [sym_ctrl_do] = STATE(4809), - [sym_ctrl_if] = STATE(4809), - [sym_ctrl_match] = STATE(4809), - [sym_ctrl_try] = STATE(4809), - [sym_ctrl_return] = STATE(4809), - [sym_pipe_element] = STATE(5133), - [sym_where_command] = STATE(4977), - [sym__expression] = STATE(3888), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(871), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4977), - [sym_comment] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(1189), - [aux_sym_cmd_identifier_token2] = ACTIONS(1192), - [aux_sym_cmd_identifier_token3] = ACTIONS(1192), - [aux_sym_cmd_identifier_token4] = ACTIONS(1192), - [aux_sym_cmd_identifier_token5] = ACTIONS(1192), - [aux_sym_cmd_identifier_token6] = ACTIONS(1192), - [aux_sym_cmd_identifier_token7] = ACTIONS(1192), - [aux_sym_cmd_identifier_token8] = ACTIONS(1192), - [aux_sym_cmd_identifier_token9] = ACTIONS(1189), - [aux_sym_cmd_identifier_token10] = ACTIONS(1192), - [aux_sym_cmd_identifier_token11] = ACTIONS(1192), - [aux_sym_cmd_identifier_token12] = ACTIONS(1192), - [aux_sym_cmd_identifier_token13] = ACTIONS(1189), - [aux_sym_cmd_identifier_token14] = ACTIONS(1192), - [aux_sym_cmd_identifier_token15] = ACTIONS(1189), - [aux_sym_cmd_identifier_token16] = ACTIONS(1192), - [aux_sym_cmd_identifier_token17] = ACTIONS(1192), - [aux_sym_cmd_identifier_token18] = ACTIONS(1189), - [aux_sym_cmd_identifier_token19] = ACTIONS(1192), - [aux_sym_cmd_identifier_token20] = ACTIONS(1192), - [aux_sym_cmd_identifier_token21] = ACTIONS(1192), - [aux_sym_cmd_identifier_token22] = ACTIONS(1192), - [aux_sym_cmd_identifier_token23] = ACTIONS(1192), - [aux_sym_cmd_identifier_token24] = ACTIONS(1192), - [aux_sym_cmd_identifier_token25] = ACTIONS(1192), - [aux_sym_cmd_identifier_token26] = ACTIONS(1192), - [aux_sym_cmd_identifier_token27] = ACTIONS(1192), - [aux_sym_cmd_identifier_token28] = ACTIONS(1192), - [aux_sym_cmd_identifier_token29] = ACTIONS(1192), - [aux_sym_cmd_identifier_token30] = ACTIONS(1192), - [aux_sym_cmd_identifier_token31] = ACTIONS(1192), - [aux_sym_cmd_identifier_token32] = ACTIONS(1189), - [aux_sym_cmd_identifier_token33] = ACTIONS(1192), - [aux_sym_cmd_identifier_token34] = ACTIONS(1189), - [aux_sym_cmd_identifier_token35] = ACTIONS(1192), - [aux_sym_cmd_identifier_token36] = ACTIONS(1192), - [aux_sym_cmd_identifier_token37] = ACTIONS(1192), - [aux_sym_cmd_identifier_token38] = ACTIONS(1189), - [aux_sym_cmd_identifier_token39] = ACTIONS(1192), - [aux_sym_cmd_identifier_token40] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_DASH2] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_DOT_DOT] = ACTIONS(1225), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_where] = ACTIONS(1234), - [aux_sym_expr_unary_token1] = ACTIONS(1237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_DOT_DOT_LT] = ACTIONS(1240), - [anon_sym_null] = ACTIONS(1243), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [aux_sym__val_number_decimal_token1] = ACTIONS(1249), - [aux_sym__val_number_decimal_token2] = ACTIONS(1252), - [aux_sym__val_number_decimal_token3] = ACTIONS(1255), - [aux_sym__val_number_decimal_token4] = ACTIONS(1258), - [aux_sym__val_number_token1] = ACTIONS(1261), - [aux_sym__val_number_token2] = ACTIONS(1261), - [aux_sym__val_number_token3] = ACTIONS(1261), - [aux_sym__val_number_token4] = ACTIONS(1264), - [aux_sym__val_number_token5] = ACTIONS(1264), - [aux_sym__val_number_token6] = ACTIONS(1264), - [anon_sym_0b] = ACTIONS(1267), - [anon_sym_0o] = ACTIONS(1270), - [anon_sym_0x] = ACTIONS(1270), - [sym_val_date] = ACTIONS(1273), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym__str_single_quotes] = ACTIONS(1279), - [sym__str_back_ticks] = ACTIONS(1279), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), - [aux_sym_env_var_token1] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1291), - [aux_sym_command_token1] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1297), - }, - [204] = { - [sym_comment] = STATE(204), - [anon_sym_export] = ACTIONS(1300), - [anon_sym_alias] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_let_DASHenv] = ACTIONS(1300), - [anon_sym_mut] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [aux_sym_cmd_identifier_token1] = ACTIONS(1300), - [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(1300), - [aux_sym_cmd_identifier_token9] = ACTIONS(1300), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1300), - [aux_sym_cmd_identifier_token13] = ACTIONS(1300), - [aux_sym_cmd_identifier_token14] = ACTIONS(1300), - [aux_sym_cmd_identifier_token15] = ACTIONS(1300), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1300), - [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(1300), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1300), - [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(1300), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_def] = ACTIONS(1300), - [anon_sym_export_DASHenv] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_module] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_error] = ACTIONS(1300), - [anon_sym_DASH2] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_in2] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_make] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_source] = ACTIONS(1300), - [anon_sym_source_DASHenv] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_hide] = ACTIONS(1300), - [anon_sym_hide_DASHenv] = ACTIONS(1300), - [anon_sym_overlay] = ACTIONS(1300), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1303), - [aux_sym_expr_unary_token1] = ACTIONS(1303), - [anon_sym_PLUS2] = ACTIONS(1308), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1303), - [anon_sym_DOT_DOT_LT] = ACTIONS(1303), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1306), - [aux_sym__val_number_decimal_token1] = ACTIONS(1300), - [aux_sym__val_number_decimal_token2] = ACTIONS(1303), - [aux_sym__val_number_decimal_token3] = ACTIONS(1303), - [aux_sym__val_number_decimal_token4] = ACTIONS(1303), - [aux_sym__val_number_token1] = ACTIONS(1303), - [aux_sym__val_number_token2] = ACTIONS(1303), - [aux_sym__val_number_token3] = ACTIONS(1303), - [aux_sym__val_number_token4] = ACTIONS(1300), - [aux_sym__val_number_token5] = ACTIONS(1300), - [aux_sym__val_number_token6] = ACTIONS(1300), - [anon_sym_0b] = ACTIONS(1300), - [anon_sym_0o] = ACTIONS(1300), - [anon_sym_0x] = ACTIONS(1300), - [sym_val_date] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym__str_single_quotes] = ACTIONS(1303), - [sym__str_back_ticks] = ACTIONS(1303), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1306), - [aux_sym_env_var_token1] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1303), - [aux_sym_command_token1] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1303), + [201] = { + [sym_cmd_identifier] = STATE(5044), + [sym__ctrl_expression] = STATE(5445), + [sym_ctrl_do] = STATE(5449), + [sym_ctrl_if] = STATE(5449), + [sym_ctrl_match] = STATE(5449), + [sym_ctrl_try] = STATE(5449), + [sym_ctrl_return] = STATE(5449), + [sym_pipe_element] = STATE(4987), + [sym_where_command] = STATE(5344), + [sym__expression] = STATE(4205), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(833), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5344), + [sym_comment] = STATE(201), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(328), + [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(19), + [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(19), + [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(1070), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, - [205] = { - [sym_comment] = STATE(205), - [aux_sym_shebang_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [aux_sym_cmd_identifier_token1] = ACTIONS(1312), - [aux_sym_cmd_identifier_token2] = ACTIONS(1314), - [aux_sym_cmd_identifier_token3] = ACTIONS(1314), - [aux_sym_cmd_identifier_token4] = ACTIONS(1314), - [aux_sym_cmd_identifier_token5] = ACTIONS(1314), - [aux_sym_cmd_identifier_token6] = ACTIONS(1314), - [aux_sym_cmd_identifier_token7] = ACTIONS(1314), - [aux_sym_cmd_identifier_token8] = ACTIONS(1312), - [aux_sym_cmd_identifier_token9] = ACTIONS(1312), - [aux_sym_cmd_identifier_token10] = ACTIONS(1314), - [aux_sym_cmd_identifier_token11] = ACTIONS(1314), - [aux_sym_cmd_identifier_token12] = ACTIONS(1312), - [aux_sym_cmd_identifier_token13] = ACTIONS(1312), - [aux_sym_cmd_identifier_token14] = ACTIONS(1312), - [aux_sym_cmd_identifier_token15] = ACTIONS(1312), - [aux_sym_cmd_identifier_token16] = ACTIONS(1314), - [aux_sym_cmd_identifier_token17] = ACTIONS(1314), - [aux_sym_cmd_identifier_token18] = ACTIONS(1312), - [aux_sym_cmd_identifier_token19] = ACTIONS(1314), - [aux_sym_cmd_identifier_token20] = ACTIONS(1314), - [aux_sym_cmd_identifier_token21] = ACTIONS(1314), - [aux_sym_cmd_identifier_token22] = ACTIONS(1314), - [aux_sym_cmd_identifier_token23] = ACTIONS(1314), - [aux_sym_cmd_identifier_token24] = ACTIONS(1314), - [aux_sym_cmd_identifier_token25] = ACTIONS(1314), - [aux_sym_cmd_identifier_token26] = ACTIONS(1314), - [aux_sym_cmd_identifier_token27] = ACTIONS(1314), - [aux_sym_cmd_identifier_token28] = ACTIONS(1314), - [aux_sym_cmd_identifier_token29] = ACTIONS(1314), - [aux_sym_cmd_identifier_token30] = ACTIONS(1314), - [aux_sym_cmd_identifier_token31] = ACTIONS(1314), - [aux_sym_cmd_identifier_token32] = ACTIONS(1312), - [aux_sym_cmd_identifier_token33] = ACTIONS(1314), - [aux_sym_cmd_identifier_token34] = ACTIONS(1312), - [aux_sym_cmd_identifier_token35] = ACTIONS(1314), - [aux_sym_cmd_identifier_token36] = ACTIONS(1314), - [aux_sym_cmd_identifier_token37] = ACTIONS(1314), - [aux_sym_cmd_identifier_token38] = ACTIONS(1312), - [aux_sym_cmd_identifier_token39] = ACTIONS(1314), - [aux_sym_cmd_identifier_token40] = ACTIONS(1314), - [sym__newline] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_DASH2] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in2] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_make] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_catch] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1314), - [aux_sym_expr_unary_token1] = ACTIONS(1314), - [anon_sym_PLUS2] = ACTIONS(1312), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1314), - [anon_sym_DOT_DOT_LT] = ACTIONS(1314), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1314), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_decimal_token4] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1314), - [aux_sym_env_var_token1] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1314), - [aux_sym_command_token1] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1314), + [202] = { + [sym_comment] = STATE(202), + [anon_sym_export] = ACTIONS(1296), + [anon_sym_alias] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_let_DASHenv] = ACTIONS(1296), + [anon_sym_mut] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [aux_sym_cmd_identifier_token1] = ACTIONS(1296), + [aux_sym_cmd_identifier_token2] = ACTIONS(1299), + [aux_sym_cmd_identifier_token3] = ACTIONS(1299), + [aux_sym_cmd_identifier_token4] = ACTIONS(1299), + [aux_sym_cmd_identifier_token5] = ACTIONS(1299), + [aux_sym_cmd_identifier_token6] = ACTIONS(1299), + [aux_sym_cmd_identifier_token7] = ACTIONS(1299), + [aux_sym_cmd_identifier_token8] = ACTIONS(1296), + [aux_sym_cmd_identifier_token9] = ACTIONS(1296), + [aux_sym_cmd_identifier_token10] = ACTIONS(1299), + [aux_sym_cmd_identifier_token11] = ACTIONS(1299), + [aux_sym_cmd_identifier_token12] = ACTIONS(1296), + [aux_sym_cmd_identifier_token13] = ACTIONS(1296), + [aux_sym_cmd_identifier_token14] = ACTIONS(1296), + [aux_sym_cmd_identifier_token15] = ACTIONS(1296), + [aux_sym_cmd_identifier_token16] = ACTIONS(1299), + [aux_sym_cmd_identifier_token17] = ACTIONS(1299), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1299), + [aux_sym_cmd_identifier_token20] = ACTIONS(1299), + [aux_sym_cmd_identifier_token21] = ACTIONS(1299), + [aux_sym_cmd_identifier_token22] = ACTIONS(1299), + [aux_sym_cmd_identifier_token23] = ACTIONS(1299), + [aux_sym_cmd_identifier_token24] = ACTIONS(1299), + [aux_sym_cmd_identifier_token25] = ACTIONS(1299), + [aux_sym_cmd_identifier_token26] = ACTIONS(1299), + [aux_sym_cmd_identifier_token27] = ACTIONS(1299), + [aux_sym_cmd_identifier_token28] = ACTIONS(1299), + [aux_sym_cmd_identifier_token29] = ACTIONS(1299), + [aux_sym_cmd_identifier_token30] = ACTIONS(1299), + [aux_sym_cmd_identifier_token31] = ACTIONS(1299), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1299), + [aux_sym_cmd_identifier_token34] = ACTIONS(1296), + [aux_sym_cmd_identifier_token35] = ACTIONS(1299), + [aux_sym_cmd_identifier_token36] = ACTIONS(1299), + [aux_sym_cmd_identifier_token37] = ACTIONS(1299), + [aux_sym_cmd_identifier_token38] = ACTIONS(1296), + [aux_sym_cmd_identifier_token39] = ACTIONS(1299), + [aux_sym_cmd_identifier_token40] = ACTIONS(1299), + [sym__newline] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_def] = ACTIONS(1296), + [anon_sym_export_DASHenv] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_module] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1299), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_error] = ACTIONS(1296), + [anon_sym_DASH2] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_in2] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_make] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1296), + [anon_sym_try] = ACTIONS(1296), + [anon_sym_catch] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_source] = ACTIONS(1296), + [anon_sym_source_DASHenv] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_hide] = ACTIONS(1296), + [anon_sym_hide_DASHenv] = ACTIONS(1296), + [anon_sym_overlay] = ACTIONS(1296), + [anon_sym_as] = ACTIONS(1304), + [anon_sym_where] = ACTIONS(1299), + [aux_sym_expr_unary_token1] = ACTIONS(1299), + [anon_sym_PLUS2] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1302), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1299), + [anon_sym_DOT_DOT_LT] = ACTIONS(1299), + [anon_sym_null] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1299), + [aux_sym__val_number_decimal_token3] = ACTIONS(1299), + [aux_sym__val_number_decimal_token4] = ACTIONS(1299), + [aux_sym__val_number_token1] = ACTIONS(1299), + [aux_sym__val_number_token2] = ACTIONS(1299), + [aux_sym__val_number_token3] = ACTIONS(1299), + [aux_sym__val_number_token4] = ACTIONS(1296), + [aux_sym__val_number_token5] = ACTIONS(1296), + [aux_sym__val_number_token6] = ACTIONS(1296), + [anon_sym_0b] = ACTIONS(1296), + [anon_sym_0o] = ACTIONS(1296), + [anon_sym_0x] = ACTIONS(1296), + [sym_val_date] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1299), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1302), + [aux_sym_env_var_token1] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1299), + [aux_sym_command_token1] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, - [206] = { - [sym_comment] = STATE(206), + [203] = { + [sym_comment] = STATE(203), + [aux_sym_shebang_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(1308), [anon_sym_alias] = ACTIONS(1308), [anon_sym_let] = ACTIONS(1308), @@ -105741,55 +107924,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1308), [anon_sym_const] = ACTIONS(1308), [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), + [aux_sym_cmd_identifier_token2] = ACTIONS(1310), + [aux_sym_cmd_identifier_token3] = ACTIONS(1310), + [aux_sym_cmd_identifier_token4] = ACTIONS(1310), + [aux_sym_cmd_identifier_token5] = ACTIONS(1310), + [aux_sym_cmd_identifier_token6] = ACTIONS(1310), + [aux_sym_cmd_identifier_token7] = ACTIONS(1310), [aux_sym_cmd_identifier_token8] = ACTIONS(1308), [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), + [aux_sym_cmd_identifier_token10] = ACTIONS(1310), + [aux_sym_cmd_identifier_token11] = ACTIONS(1310), [aux_sym_cmd_identifier_token12] = ACTIONS(1308), [aux_sym_cmd_identifier_token13] = ACTIONS(1308), [aux_sym_cmd_identifier_token14] = ACTIONS(1308), [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), + [aux_sym_cmd_identifier_token16] = ACTIONS(1310), + [aux_sym_cmd_identifier_token17] = ACTIONS(1310), [aux_sym_cmd_identifier_token18] = ACTIONS(1308), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), + [aux_sym_cmd_identifier_token19] = ACTIONS(1310), + [aux_sym_cmd_identifier_token20] = ACTIONS(1310), + [aux_sym_cmd_identifier_token21] = ACTIONS(1310), + [aux_sym_cmd_identifier_token22] = ACTIONS(1310), + [aux_sym_cmd_identifier_token23] = ACTIONS(1310), + [aux_sym_cmd_identifier_token24] = ACTIONS(1310), + [aux_sym_cmd_identifier_token25] = ACTIONS(1310), + [aux_sym_cmd_identifier_token26] = ACTIONS(1310), + [aux_sym_cmd_identifier_token27] = ACTIONS(1310), + [aux_sym_cmd_identifier_token28] = ACTIONS(1310), + [aux_sym_cmd_identifier_token29] = ACTIONS(1310), + [aux_sym_cmd_identifier_token30] = ACTIONS(1310), + [aux_sym_cmd_identifier_token31] = ACTIONS(1310), [aux_sym_cmd_identifier_token32] = ACTIONS(1308), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), + [aux_sym_cmd_identifier_token33] = ACTIONS(1310), [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), + [aux_sym_cmd_identifier_token35] = ACTIONS(1310), + [aux_sym_cmd_identifier_token36] = ACTIONS(1310), + [aux_sym_cmd_identifier_token37] = ACTIONS(1310), [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), + [aux_sym_cmd_identifier_token39] = ACTIONS(1310), + [aux_sym_cmd_identifier_token40] = ACTIONS(1310), + [sym__newline] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), [anon_sym_def] = ACTIONS(1308), [anon_sym_export_DASHenv] = ACTIONS(1308), [anon_sym_extern] = ACTIONS(1308), [anon_sym_module] = ACTIONS(1308), [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), [anon_sym_DOLLAR] = ACTIONS(1308), [anon_sym_error] = ACTIONS(1308), [anon_sym_DASH2] = ACTIONS(1308), @@ -105804,7 +107987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1308), [anon_sym_else] = ACTIONS(1308), [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1310), [anon_sym_DOT_DOT] = ACTIONS(1308), [anon_sym_try] = ACTIONS(1308), [anon_sym_catch] = ACTIONS(1308), @@ -105816,115 +107999,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1308), [anon_sym_overlay] = ACTIONS(1308), [anon_sym_as] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1306), - [aux_sym_expr_unary_token1] = ACTIONS(1306), + [anon_sym_where] = ACTIONS(1310), + [aux_sym_expr_unary_token1] = ACTIONS(1310), [anon_sym_PLUS2] = ACTIONS(1308), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), + [anon_sym_DOT_DOT_LT] = ACTIONS(1310), [anon_sym_null] = ACTIONS(1308), [anon_sym_true] = ACTIONS(1308), [anon_sym_false] = ACTIONS(1308), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1306), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1310), [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1310), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(1310), + [aux_sym__val_number_token2] = ACTIONS(1310), + [aux_sym__val_number_token3] = ACTIONS(1310), [aux_sym__val_number_token4] = ACTIONS(1308), [aux_sym__val_number_token5] = ACTIONS(1308), [aux_sym__val_number_token6] = ACTIONS(1308), [anon_sym_0b] = ACTIONS(1308), [anon_sym_0o] = ACTIONS(1308), [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1306), + [sym_val_date] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym__str_single_quotes] = ACTIONS(1310), + [sym__str_back_ticks] = ACTIONS(1310), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1310), [aux_sym_env_var_token1] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1310), + [aux_sym_command_token1] = ACTIONS(1310), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), + [sym_raw_string_begin] = ACTIONS(1310), }, - [207] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7822), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(207), + [204] = { + [sym_comment] = STATE(204), + [anon_sym_export] = ACTIONS(1304), + [anon_sym_alias] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_let_DASHenv] = ACTIONS(1304), + [anon_sym_mut] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [aux_sym_cmd_identifier_token1] = ACTIONS(1304), + [aux_sym_cmd_identifier_token2] = ACTIONS(1302), + [aux_sym_cmd_identifier_token3] = ACTIONS(1302), + [aux_sym_cmd_identifier_token4] = ACTIONS(1302), + [aux_sym_cmd_identifier_token5] = ACTIONS(1302), + [aux_sym_cmd_identifier_token6] = ACTIONS(1302), + [aux_sym_cmd_identifier_token7] = ACTIONS(1302), + [aux_sym_cmd_identifier_token8] = ACTIONS(1304), + [aux_sym_cmd_identifier_token9] = ACTIONS(1304), + [aux_sym_cmd_identifier_token10] = ACTIONS(1302), + [aux_sym_cmd_identifier_token11] = ACTIONS(1302), + [aux_sym_cmd_identifier_token12] = ACTIONS(1304), + [aux_sym_cmd_identifier_token13] = ACTIONS(1304), + [aux_sym_cmd_identifier_token14] = ACTIONS(1304), + [aux_sym_cmd_identifier_token15] = ACTIONS(1304), + [aux_sym_cmd_identifier_token16] = ACTIONS(1302), + [aux_sym_cmd_identifier_token17] = ACTIONS(1302), + [aux_sym_cmd_identifier_token18] = ACTIONS(1304), + [aux_sym_cmd_identifier_token19] = ACTIONS(1302), + [aux_sym_cmd_identifier_token20] = ACTIONS(1302), + [aux_sym_cmd_identifier_token21] = ACTIONS(1302), + [aux_sym_cmd_identifier_token22] = ACTIONS(1302), + [aux_sym_cmd_identifier_token23] = ACTIONS(1302), + [aux_sym_cmd_identifier_token24] = ACTIONS(1302), + [aux_sym_cmd_identifier_token25] = ACTIONS(1302), + [aux_sym_cmd_identifier_token26] = ACTIONS(1302), + [aux_sym_cmd_identifier_token27] = ACTIONS(1302), + [aux_sym_cmd_identifier_token28] = ACTIONS(1302), + [aux_sym_cmd_identifier_token29] = ACTIONS(1302), + [aux_sym_cmd_identifier_token30] = ACTIONS(1302), + [aux_sym_cmd_identifier_token31] = ACTIONS(1302), + [aux_sym_cmd_identifier_token32] = ACTIONS(1304), + [aux_sym_cmd_identifier_token33] = ACTIONS(1302), + [aux_sym_cmd_identifier_token34] = ACTIONS(1304), + [aux_sym_cmd_identifier_token35] = ACTIONS(1302), + [aux_sym_cmd_identifier_token36] = ACTIONS(1302), + [aux_sym_cmd_identifier_token37] = ACTIONS(1302), + [aux_sym_cmd_identifier_token38] = ACTIONS(1304), + [aux_sym_cmd_identifier_token39] = ACTIONS(1302), + [aux_sym_cmd_identifier_token40] = ACTIONS(1302), + [sym__newline] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_def] = ACTIONS(1304), + [anon_sym_export_DASHenv] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_module] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_error] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_in2] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_make] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(1304), + [anon_sym_catch] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_source] = ACTIONS(1304), + [anon_sym_source_DASHenv] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_hide] = ACTIONS(1304), + [anon_sym_hide_DASHenv] = ACTIONS(1304), + [anon_sym_overlay] = ACTIONS(1304), + [anon_sym_as] = ACTIONS(1304), + [anon_sym_where] = ACTIONS(1302), + [aux_sym_expr_unary_token1] = ACTIONS(1302), + [anon_sym_PLUS2] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1302), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), + [anon_sym_DOT_DOT_LT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(1302), + [aux_sym__val_number_token2] = ACTIONS(1302), + [aux_sym__val_number_token3] = ACTIONS(1302), + [aux_sym__val_number_token4] = ACTIONS(1304), + [aux_sym__val_number_token5] = ACTIONS(1304), + [aux_sym__val_number_token6] = ACTIONS(1304), + [anon_sym_0b] = ACTIONS(1304), + [anon_sym_0o] = ACTIONS(1304), + [anon_sym_0x] = ACTIONS(1304), + [sym_val_date] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym__str_single_quotes] = ACTIONS(1302), + [sym__str_back_ticks] = ACTIONS(1302), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1302), + [aux_sym_env_var_token1] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1302), + [aux_sym_command_token1] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1302), + }, + [205] = { + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8561), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_comment] = STATE(205), [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [sym__newline] = ACTIONS(1323), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [sym__newline] = ACTIONS(1319), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -105938,7 +108241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(1325), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -105952,10 +108255,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105969,79 +108272,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [208] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8172), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(208), + [206] = { + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8322), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_comment] = STATE(206), [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [sym__newline] = ACTIONS(1323), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [sym__newline] = ACTIONS(1319), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -106055,7 +108358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(1335), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -106069,10 +108372,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106086,79 +108389,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [209] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8006), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(209), + [207] = { + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8554), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_comment] = STATE(207), [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [sym__newline] = ACTIONS(1323), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [sym__newline] = ACTIONS(1319), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -106172,7 +108475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -106186,10 +108489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106203,79 +108506,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [210] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(7925), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(210), + [208] = { + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8295), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_comment] = STATE(208), [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [sym__newline] = ACTIONS(1323), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [sym__newline] = ACTIONS(1319), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -106289,7 +108592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -106303,10 +108606,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106320,79 +108623,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [211] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_body] = STATE(8144), - [sym_record_entry] = STATE(6878), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(211), + [209] = { + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_body] = STATE(8272), + [sym_record_entry] = STATE(7836), + [sym__record_key] = STATE(8527), + [sym_comment] = STATE(209), [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(220), + [aux_sym_record_body_repeat1] = STATE(216), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [sym__newline] = ACTIONS(1323), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [sym__newline] = ACTIONS(1319), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -106406,7 +108709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1337), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -106420,10 +108723,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106437,223 +108740,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, + [210] = { + [sym_cmd_identifier] = STATE(8505), + [sym__match_pattern_record_variable] = STATE(699), + [sym_expr_parenthesized] = STATE(8623), + [sym__spread_parenthesized] = STATE(731), + [sym__spread_variable] = STATE(732), + [sym_val_variable] = STATE(581), + [sym_val_number] = STATE(8623), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8623), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(731), + [sym_record_entry] = STATE(699), + [sym__record_key] = STATE(8505), + [sym_comment] = STATE(210), + [aux_sym__match_pattern_record_repeat1] = STATE(210), + [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(251), + [sym_raw_string_begin] = ACTIONS(1392), + }, + [211] = { + [sym_cmd_identifier] = STATE(8505), + [sym__match_pattern_record_variable] = STATE(699), + [sym_expr_parenthesized] = STATE(8623), + [sym__spread_parenthesized] = STATE(731), + [sym__spread_variable] = STATE(732), + [sym_val_variable] = STATE(581), + [sym_val_number] = STATE(8623), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8623), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(731), + [sym_record_entry] = STATE(699), + [sym__record_key] = STATE(8505), + [sym_comment] = STATE(211), + [aux_sym__match_pattern_record_repeat1] = STATE(213), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_alias] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_let_DASHenv] = ACTIONS(1395), + [anon_sym_mut] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [anon_sym_def] = ACTIONS(1395), + [anon_sym_export_DASHenv] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1397), + [anon_sym_error] = ACTIONS(1395), + [anon_sym_DASH2] = ACTIONS(207), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_in2] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_make] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_catch] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_source] = ACTIONS(1395), + [anon_sym_source_DASHenv] = ACTIONS(1395), + [anon_sym_register] = ACTIONS(1395), + [anon_sym_hide] = ACTIONS(1395), + [anon_sym_hide_DASHenv] = ACTIONS(1395), + [anon_sym_overlay] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), + [anon_sym_PLUS2] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, [212] = { - [sym_cmd_identifier] = STATE(8032), - [sym__match_pattern_record_variable] = STATE(717), - [sym_expr_parenthesized] = STATE(8164), - [sym__spread_parenthesized] = STATE(767), - [sym__spread_variable] = STATE(714), - [sym_val_variable] = STATE(570), - [sym_val_number] = STATE(8164), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(8164), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(767), - [sym_record_entry] = STATE(717), - [sym__record_key] = STATE(8032), + [sym_cmd_identifier] = STATE(8505), + [sym__match_pattern_record_variable] = STATE(699), + [sym_expr_parenthesized] = STATE(8623), + [sym__spread_parenthesized] = STATE(731), + [sym__spread_variable] = STATE(732), + [sym_val_variable] = STATE(581), + [sym_val_number] = STATE(8623), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8623), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(731), + [sym_record_entry] = STATE(699), + [sym__record_key] = STATE(8505), [sym_comment] = STATE(212), - [aux_sym__match_pattern_record_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(1343), - [anon_sym_alias] = ACTIONS(1343), - [anon_sym_let] = ACTIONS(1343), - [anon_sym_let_DASHenv] = ACTIONS(1343), - [anon_sym_mut] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [aux_sym_cmd_identifier_token1] = ACTIONS(1346), - [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(1346), - [aux_sym_cmd_identifier_token9] = ACTIONS(1346), - [aux_sym_cmd_identifier_token10] = ACTIONS(1349), - [aux_sym_cmd_identifier_token11] = ACTIONS(1349), - [aux_sym_cmd_identifier_token12] = ACTIONS(1346), - [aux_sym_cmd_identifier_token13] = ACTIONS(1346), - [aux_sym_cmd_identifier_token14] = ACTIONS(1346), - [aux_sym_cmd_identifier_token15] = ACTIONS(1346), - [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(1346), - [aux_sym_cmd_identifier_token35] = ACTIONS(1349), - [aux_sym_cmd_identifier_token36] = ACTIONS(1349), - [aux_sym_cmd_identifier_token37] = ACTIONS(1349), - [aux_sym_cmd_identifier_token38] = ACTIONS(1346), - [aux_sym_cmd_identifier_token39] = ACTIONS(1349), - [aux_sym_cmd_identifier_token40] = ACTIONS(1349), - [anon_sym_def] = ACTIONS(1343), - [anon_sym_export_DASHenv] = ACTIONS(1343), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_module] = ACTIONS(1343), - [anon_sym_use] = ACTIONS(1343), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1343), - [anon_sym_DASH2] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_in2] = ACTIONS(1343), - [anon_sym_loop] = ACTIONS(1343), - [anon_sym_make] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_do] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_match] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_try] = ACTIONS(1343), - [anon_sym_catch] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_source] = ACTIONS(1343), - [anon_sym_source_DASHenv] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_hide] = ACTIONS(1343), - [anon_sym_hide_DASHenv] = ACTIONS(1343), - [anon_sym_overlay] = ACTIONS(1343), - [anon_sym_as] = ACTIONS(1343), - [anon_sym_PLUS2] = ACTIONS(1358), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1363), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1366), - [aux_sym__val_number_decimal_token1] = ACTIONS(1369), - [aux_sym__val_number_decimal_token2] = ACTIONS(1372), - [aux_sym__val_number_decimal_token3] = ACTIONS(1375), - [aux_sym__val_number_decimal_token4] = ACTIONS(1378), - [aux_sym__val_number_token1] = ACTIONS(1381), - [aux_sym__val_number_token2] = ACTIONS(1381), - [aux_sym__val_number_token3] = ACTIONS(1381), - [aux_sym__val_number_token4] = ACTIONS(1384), - [aux_sym__val_number_token5] = ACTIONS(1384), - [aux_sym__val_number_token6] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym__str_single_quotes] = ACTIONS(1390), - [sym__str_back_ticks] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1396), + [aux_sym__match_pattern_record_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_alias] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_let_DASHenv] = ACTIONS(1395), + [anon_sym_mut] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [anon_sym_def] = ACTIONS(1395), + [anon_sym_export_DASHenv] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1397), + [anon_sym_error] = ACTIONS(1395), + [anon_sym_DASH2] = ACTIONS(207), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_in2] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_make] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_catch] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_source] = ACTIONS(1395), + [anon_sym_source_DASHenv] = ACTIONS(1395), + [anon_sym_register] = ACTIONS(1395), + [anon_sym_hide] = ACTIONS(1395), + [anon_sym_hide_DASHenv] = ACTIONS(1395), + [anon_sym_overlay] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), + [anon_sym_PLUS2] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [213] = { - [sym_cmd_identifier] = STATE(8032), - [sym__match_pattern_record_variable] = STATE(717), - [sym_expr_parenthesized] = STATE(8164), - [sym__spread_parenthesized] = STATE(767), - [sym__spread_variable] = STATE(714), - [sym_val_variable] = STATE(570), - [sym_val_number] = STATE(8164), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(8164), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(767), - [sym_record_entry] = STATE(717), - [sym__record_key] = STATE(8032), + [sym_cmd_identifier] = STATE(8505), + [sym__match_pattern_record_variable] = STATE(699), + [sym_expr_parenthesized] = STATE(8623), + [sym__spread_parenthesized] = STATE(731), + [sym__spread_variable] = STATE(732), + [sym_val_variable] = STATE(581), + [sym_val_number] = STATE(8623), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8623), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(731), + [sym_record_entry] = STATE(699), + [sym__record_key] = STATE(8505), [sym_comment] = STATE(213), - [aux_sym__match_pattern_record_repeat1] = STATE(212), - [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(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [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(1325), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1399), + [aux_sym__match_pattern_record_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_alias] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_let_DASHenv] = ACTIONS(1395), + [anon_sym_mut] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [anon_sym_def] = ACTIONS(1395), + [anon_sym_export_DASHenv] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1397), + [anon_sym_error] = ACTIONS(1395), [anon_sym_DASH2] = ACTIONS(207), - [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_RBRACE] = ACTIONS(1403), - [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_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_in2] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_make] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1395), + [anon_sym_catch] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_source] = ACTIONS(1395), + [anon_sym_source_DASHenv] = ACTIONS(1395), + [anon_sym_register] = ACTIONS(1395), + [anon_sym_hide] = ACTIONS(1395), + [anon_sym_hide_DASHenv] = ACTIONS(1395), + [anon_sym_overlay] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1407), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106663,82 +109196,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1409), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [214] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7087), - [sym__record_key] = STATE(8169), + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7658), + [sym__record_key] = STATE(8527), [sym_comment] = STATE(214), - [aux_sym_shebang_repeat1] = STATE(685), - [aux_sym_record_body_repeat1] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(650), + [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [sym__newline] = ACTIONS(1323), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [sym__newline] = ACTIONS(1319), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -106765,10 +109298,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106783,107 +109316,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [215] = { - [sym_cmd_identifier] = STATE(8032), - [sym__match_pattern_record_variable] = STATE(717), - [sym_expr_parenthesized] = STATE(8164), - [sym__spread_parenthesized] = STATE(767), - [sym__spread_variable] = STATE(714), - [sym_val_variable] = STATE(570), - [sym_val_number] = STATE(8164), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(8164), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(767), - [sym_record_entry] = STATE(717), - [sym__record_key] = STATE(8032), + [sym_cmd_identifier] = STATE(8505), + [sym__match_pattern_record_variable] = STATE(699), + [sym_expr_parenthesized] = STATE(8623), + [sym__spread_parenthesized] = STATE(731), + [sym__spread_variable] = STATE(732), + [sym_val_variable] = STATE(581), + [sym_val_number] = STATE(8623), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8623), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(731), + [sym_record_entry] = STATE(699), + [sym__record_key] = STATE(8505), [sym_comment] = STATE(215), - [aux_sym__match_pattern_record_repeat1] = STATE(217), - [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(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [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(1325), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1399), + [aux_sym__match_pattern_record_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(1395), + [anon_sym_alias] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_let_DASHenv] = ACTIONS(1395), + [anon_sym_mut] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [anon_sym_def] = ACTIONS(1395), + [anon_sym_export_DASHenv] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_module] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1397), + [anon_sym_error] = ACTIONS(1395), [anon_sym_DASH2] = ACTIONS(207), - [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_break] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_in2] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_make] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), [anon_sym_RBRACE] = ACTIONS(1411), - [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_try] = ACTIONS(1395), + [anon_sym_catch] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_source] = ACTIONS(1395), + [anon_sym_source_DASHenv] = ACTIONS(1395), + [anon_sym_register] = ACTIONS(1395), + [anon_sym_hide] = ACTIONS(1395), + [anon_sym_hide_DASHenv] = ACTIONS(1395), + [anon_sym_overlay] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1407), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106893,536 +109426,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1409), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [216] = { - [sym_cmd_identifier] = STATE(8032), - [sym__match_pattern_record_variable] = STATE(717), - [sym_expr_parenthesized] = STATE(8164), - [sym__spread_parenthesized] = STATE(767), - [sym__spread_variable] = STATE(714), - [sym_val_variable] = STATE(570), - [sym_val_number] = STATE(8164), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(8164), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(767), - [sym_record_entry] = STATE(717), - [sym__record_key] = STATE(8032), + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7691), + [sym__record_key] = STATE(8527), [sym_comment] = STATE(216), - [aux_sym__match_pattern_record_repeat1] = STATE(213), - [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(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [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(1325), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH2] = ACTIONS(207), - [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_RBRACE] = ACTIONS(1413), - [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(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1407), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [217] = { - [sym_cmd_identifier] = STATE(8032), - [sym__match_pattern_record_variable] = STATE(717), - [sym_expr_parenthesized] = STATE(8164), - [sym__spread_parenthesized] = STATE(767), - [sym__spread_variable] = STATE(714), - [sym_val_variable] = STATE(570), - [sym_val_number] = STATE(8164), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(8164), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(767), - [sym_record_entry] = STATE(717), - [sym__record_key] = STATE(8032), - [sym_comment] = STATE(217), - [aux_sym__match_pattern_record_repeat1] = STATE(212), - [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(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), - [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(1325), - [anon_sym_DOLLAR] = ACTIONS(1401), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH2] = ACTIONS(207), - [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_RBRACE] = ACTIONS(1415), - [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(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1407), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [218] = { - [sym_comment] = STATE(218), - [aux_sym__block_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_alias] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_let_DASHenv] = ACTIONS(1417), - [anon_sym_mut] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [aux_sym_cmd_identifier_token1] = ACTIONS(1417), - [aux_sym_cmd_identifier_token2] = ACTIONS(1419), - [aux_sym_cmd_identifier_token3] = ACTIONS(1419), - [aux_sym_cmd_identifier_token4] = ACTIONS(1419), - [aux_sym_cmd_identifier_token5] = ACTIONS(1419), - [aux_sym_cmd_identifier_token6] = ACTIONS(1419), - [aux_sym_cmd_identifier_token7] = ACTIONS(1419), - [aux_sym_cmd_identifier_token8] = ACTIONS(1417), - [aux_sym_cmd_identifier_token9] = ACTIONS(1417), - [aux_sym_cmd_identifier_token10] = ACTIONS(1419), - [aux_sym_cmd_identifier_token11] = ACTIONS(1419), - [aux_sym_cmd_identifier_token12] = ACTIONS(1417), - [aux_sym_cmd_identifier_token13] = ACTIONS(1417), - [aux_sym_cmd_identifier_token14] = ACTIONS(1417), - [aux_sym_cmd_identifier_token15] = ACTIONS(1417), - [aux_sym_cmd_identifier_token16] = ACTIONS(1419), - [aux_sym_cmd_identifier_token17] = ACTIONS(1419), - [aux_sym_cmd_identifier_token18] = ACTIONS(1417), - [aux_sym_cmd_identifier_token19] = ACTIONS(1419), - [aux_sym_cmd_identifier_token20] = ACTIONS(1419), - [aux_sym_cmd_identifier_token21] = ACTIONS(1419), - [aux_sym_cmd_identifier_token22] = ACTIONS(1419), - [aux_sym_cmd_identifier_token23] = ACTIONS(1419), - [aux_sym_cmd_identifier_token24] = ACTIONS(1419), - [aux_sym_cmd_identifier_token25] = ACTIONS(1419), - [aux_sym_cmd_identifier_token26] = ACTIONS(1419), - [aux_sym_cmd_identifier_token27] = ACTIONS(1419), - [aux_sym_cmd_identifier_token28] = ACTIONS(1419), - [aux_sym_cmd_identifier_token29] = ACTIONS(1419), - [aux_sym_cmd_identifier_token30] = ACTIONS(1419), - [aux_sym_cmd_identifier_token31] = ACTIONS(1419), - [aux_sym_cmd_identifier_token32] = ACTIONS(1417), - [aux_sym_cmd_identifier_token33] = ACTIONS(1419), - [aux_sym_cmd_identifier_token34] = ACTIONS(1417), - [aux_sym_cmd_identifier_token35] = ACTIONS(1419), - [aux_sym_cmd_identifier_token36] = ACTIONS(1419), - [aux_sym_cmd_identifier_token37] = ACTIONS(1419), - [aux_sym_cmd_identifier_token38] = ACTIONS(1417), - [aux_sym_cmd_identifier_token39] = ACTIONS(1419), - [aux_sym_cmd_identifier_token40] = ACTIONS(1419), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1417), - [anon_sym_export_DASHenv] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_error] = ACTIONS(1417), - [anon_sym_DASH2] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_source] = ACTIONS(1417), - [anon_sym_source_DASHenv] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_hide] = ACTIONS(1417), - [anon_sym_hide_DASHenv] = ACTIONS(1417), - [anon_sym_overlay] = ACTIONS(1417), - [anon_sym_where] = ACTIONS(1419), - [aux_sym_expr_unary_token1] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_DOT_DOT_LT] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [aux_sym__val_number_decimal_token1] = ACTIONS(1417), - [aux_sym__val_number_decimal_token2] = ACTIONS(1419), - [aux_sym__val_number_decimal_token3] = ACTIONS(1419), - [aux_sym__val_number_decimal_token4] = ACTIONS(1419), - [aux_sym__val_number_token1] = ACTIONS(1419), - [aux_sym__val_number_token2] = ACTIONS(1419), - [aux_sym__val_number_token3] = ACTIONS(1419), - [aux_sym__val_number_token4] = ACTIONS(1417), - [aux_sym__val_number_token5] = ACTIONS(1417), - [aux_sym__val_number_token6] = ACTIONS(1417), - [anon_sym_0b] = ACTIONS(1417), - [anon_sym_0o] = ACTIONS(1417), - [anon_sym_0x] = ACTIONS(1417), - [sym_val_date] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym__str_single_quotes] = ACTIONS(1419), - [sym__str_back_ticks] = ACTIONS(1419), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), - [aux_sym_env_var_token1] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [aux_sym_command_token1] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1419), - }, - [219] = { - [sym_comment] = STATE(219), - [aux_sym__block_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(1423), - [anon_sym_alias] = ACTIONS(1423), - [anon_sym_let] = ACTIONS(1423), - [anon_sym_let_DASHenv] = ACTIONS(1423), - [anon_sym_mut] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [aux_sym_cmd_identifier_token1] = ACTIONS(1423), - [aux_sym_cmd_identifier_token2] = ACTIONS(1425), - [aux_sym_cmd_identifier_token3] = ACTIONS(1425), - [aux_sym_cmd_identifier_token4] = ACTIONS(1425), - [aux_sym_cmd_identifier_token5] = ACTIONS(1425), - [aux_sym_cmd_identifier_token6] = ACTIONS(1425), - [aux_sym_cmd_identifier_token7] = ACTIONS(1425), - [aux_sym_cmd_identifier_token8] = ACTIONS(1423), - [aux_sym_cmd_identifier_token9] = ACTIONS(1423), - [aux_sym_cmd_identifier_token10] = ACTIONS(1425), - [aux_sym_cmd_identifier_token11] = ACTIONS(1425), - [aux_sym_cmd_identifier_token12] = ACTIONS(1423), - [aux_sym_cmd_identifier_token13] = ACTIONS(1423), - [aux_sym_cmd_identifier_token14] = ACTIONS(1423), - [aux_sym_cmd_identifier_token15] = ACTIONS(1423), - [aux_sym_cmd_identifier_token16] = ACTIONS(1425), - [aux_sym_cmd_identifier_token17] = ACTIONS(1425), - [aux_sym_cmd_identifier_token18] = ACTIONS(1423), - [aux_sym_cmd_identifier_token19] = ACTIONS(1425), - [aux_sym_cmd_identifier_token20] = ACTIONS(1425), - [aux_sym_cmd_identifier_token21] = ACTIONS(1425), - [aux_sym_cmd_identifier_token22] = ACTIONS(1425), - [aux_sym_cmd_identifier_token23] = ACTIONS(1425), - [aux_sym_cmd_identifier_token24] = ACTIONS(1425), - [aux_sym_cmd_identifier_token25] = ACTIONS(1425), - [aux_sym_cmd_identifier_token26] = ACTIONS(1425), - [aux_sym_cmd_identifier_token27] = ACTIONS(1425), - [aux_sym_cmd_identifier_token28] = ACTIONS(1425), - [aux_sym_cmd_identifier_token29] = ACTIONS(1425), - [aux_sym_cmd_identifier_token30] = ACTIONS(1425), - [aux_sym_cmd_identifier_token31] = ACTIONS(1425), - [aux_sym_cmd_identifier_token32] = ACTIONS(1423), - [aux_sym_cmd_identifier_token33] = ACTIONS(1425), - [aux_sym_cmd_identifier_token34] = ACTIONS(1423), - [aux_sym_cmd_identifier_token35] = ACTIONS(1425), - [aux_sym_cmd_identifier_token36] = ACTIONS(1425), - [aux_sym_cmd_identifier_token37] = ACTIONS(1425), - [aux_sym_cmd_identifier_token38] = ACTIONS(1423), - [aux_sym_cmd_identifier_token39] = ACTIONS(1425), - [aux_sym_cmd_identifier_token40] = ACTIONS(1425), - [sym__newline] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_def] = ACTIONS(1423), - [anon_sym_export_DASHenv] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym_module] = ACTIONS(1423), - [anon_sym_use] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_DOLLAR] = ACTIONS(1423), - [anon_sym_error] = ACTIONS(1423), - [anon_sym_DASH2] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_loop] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_match] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_try] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_source] = ACTIONS(1423), - [anon_sym_source_DASHenv] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_hide] = ACTIONS(1423), - [anon_sym_hide_DASHenv] = ACTIONS(1423), - [anon_sym_overlay] = ACTIONS(1423), - [anon_sym_where] = ACTIONS(1425), - [aux_sym_expr_unary_token1] = ACTIONS(1425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), - [anon_sym_DOT_DOT_LT] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1425), - [aux_sym__val_number_decimal_token3] = ACTIONS(1425), - [aux_sym__val_number_decimal_token4] = ACTIONS(1425), - [aux_sym__val_number_token1] = ACTIONS(1425), - [aux_sym__val_number_token2] = ACTIONS(1425), - [aux_sym__val_number_token3] = ACTIONS(1425), - [aux_sym__val_number_token4] = ACTIONS(1423), - [aux_sym__val_number_token5] = ACTIONS(1423), - [aux_sym__val_number_token6] = ACTIONS(1423), - [anon_sym_0b] = ACTIONS(1423), - [anon_sym_0o] = ACTIONS(1423), - [anon_sym_0x] = ACTIONS(1423), - [sym_val_date] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym__str_single_quotes] = ACTIONS(1425), - [sym__str_back_ticks] = ACTIONS(1425), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), - [aux_sym_env_var_token1] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1425), - [aux_sym_command_token1] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1425), - }, - [220] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7109), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(220), - [aux_sym_record_body_repeat1] = STATE(224), + [aux_sym_record_body_repeat1] = STATE(218), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -107449,10 +109526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -107466,76 +109543,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [221] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7052), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(221), - [aux_sym_record_body_repeat1] = STATE(224), + [217] = { + [sym_comment] = STATE(217), + [aux_sym__block_body_repeat1] = STATE(217), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_alias] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_let_DASHenv] = ACTIONS(1413), + [anon_sym_mut] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [aux_sym_cmd_identifier_token1] = ACTIONS(1413), + [aux_sym_cmd_identifier_token2] = ACTIONS(1415), + [aux_sym_cmd_identifier_token3] = ACTIONS(1415), + [aux_sym_cmd_identifier_token4] = ACTIONS(1415), + [aux_sym_cmd_identifier_token5] = ACTIONS(1415), + [aux_sym_cmd_identifier_token6] = ACTIONS(1415), + [aux_sym_cmd_identifier_token7] = ACTIONS(1415), + [aux_sym_cmd_identifier_token8] = ACTIONS(1413), + [aux_sym_cmd_identifier_token9] = ACTIONS(1413), + [aux_sym_cmd_identifier_token10] = ACTIONS(1415), + [aux_sym_cmd_identifier_token11] = ACTIONS(1415), + [aux_sym_cmd_identifier_token12] = ACTIONS(1413), + [aux_sym_cmd_identifier_token13] = ACTIONS(1413), + [aux_sym_cmd_identifier_token14] = ACTIONS(1413), + [aux_sym_cmd_identifier_token15] = ACTIONS(1413), + [aux_sym_cmd_identifier_token16] = ACTIONS(1415), + [aux_sym_cmd_identifier_token17] = ACTIONS(1415), + [aux_sym_cmd_identifier_token18] = ACTIONS(1413), + [aux_sym_cmd_identifier_token19] = ACTIONS(1415), + [aux_sym_cmd_identifier_token20] = ACTIONS(1415), + [aux_sym_cmd_identifier_token21] = ACTIONS(1415), + [aux_sym_cmd_identifier_token22] = ACTIONS(1415), + [aux_sym_cmd_identifier_token23] = ACTIONS(1415), + [aux_sym_cmd_identifier_token24] = ACTIONS(1415), + [aux_sym_cmd_identifier_token25] = ACTIONS(1415), + [aux_sym_cmd_identifier_token26] = ACTIONS(1415), + [aux_sym_cmd_identifier_token27] = ACTIONS(1415), + [aux_sym_cmd_identifier_token28] = ACTIONS(1415), + [aux_sym_cmd_identifier_token29] = ACTIONS(1415), + [aux_sym_cmd_identifier_token30] = ACTIONS(1415), + [aux_sym_cmd_identifier_token31] = ACTIONS(1415), + [aux_sym_cmd_identifier_token32] = ACTIONS(1413), + [aux_sym_cmd_identifier_token33] = ACTIONS(1415), + [aux_sym_cmd_identifier_token34] = ACTIONS(1413), + [aux_sym_cmd_identifier_token35] = ACTIONS(1415), + [aux_sym_cmd_identifier_token36] = ACTIONS(1415), + [aux_sym_cmd_identifier_token37] = ACTIONS(1415), + [aux_sym_cmd_identifier_token38] = ACTIONS(1413), + [aux_sym_cmd_identifier_token39] = ACTIONS(1415), + [aux_sym_cmd_identifier_token40] = ACTIONS(1415), + [sym__newline] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_def] = ACTIONS(1413), + [anon_sym_export_DASHenv] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1413), + [anon_sym_error] = ACTIONS(1413), + [anon_sym_DASH2] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_source] = ACTIONS(1413), + [anon_sym_source_DASHenv] = ACTIONS(1413), + [anon_sym_register] = ACTIONS(1413), + [anon_sym_hide] = ACTIONS(1413), + [anon_sym_hide_DASHenv] = ACTIONS(1413), + [anon_sym_overlay] = ACTIONS(1413), + [anon_sym_where] = ACTIONS(1415), + [aux_sym_expr_unary_token1] = ACTIONS(1415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1415), + [anon_sym_DOT_DOT_LT] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1415), + [aux_sym__val_number_decimal_token3] = ACTIONS(1415), + [aux_sym__val_number_decimal_token4] = ACTIONS(1415), + [aux_sym__val_number_token1] = ACTIONS(1415), + [aux_sym__val_number_token2] = ACTIONS(1415), + [aux_sym__val_number_token3] = ACTIONS(1415), + [aux_sym__val_number_token4] = ACTIONS(1413), + [aux_sym__val_number_token5] = ACTIONS(1413), + [aux_sym__val_number_token6] = ACTIONS(1413), + [anon_sym_0b] = ACTIONS(1413), + [anon_sym_0o] = ACTIONS(1413), + [anon_sym_0x] = ACTIONS(1413), + [sym_val_date] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym__str_single_quotes] = ACTIONS(1415), + [sym__str_back_ticks] = ACTIONS(1415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1415), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1415), + [aux_sym_env_var_token1] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1415), + [aux_sym_command_token1] = ACTIONS(1415), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1415), + }, + [218] = { + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(8081), + [sym__record_key] = STATE(8527), + [sym_comment] = STATE(218), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(1420), + [anon_sym_alias] = ACTIONS(1420), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_let_DASHenv] = ACTIONS(1420), + [anon_sym_mut] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [aux_sym_cmd_identifier_token1] = ACTIONS(1423), + [aux_sym_cmd_identifier_token2] = ACTIONS(1426), + [aux_sym_cmd_identifier_token3] = ACTIONS(1426), + [aux_sym_cmd_identifier_token4] = ACTIONS(1426), + [aux_sym_cmd_identifier_token5] = ACTIONS(1426), + [aux_sym_cmd_identifier_token6] = ACTIONS(1426), + [aux_sym_cmd_identifier_token7] = ACTIONS(1426), + [aux_sym_cmd_identifier_token8] = ACTIONS(1423), + [aux_sym_cmd_identifier_token9] = ACTIONS(1423), + [aux_sym_cmd_identifier_token10] = ACTIONS(1426), + [aux_sym_cmd_identifier_token11] = ACTIONS(1426), + [aux_sym_cmd_identifier_token12] = ACTIONS(1423), + [aux_sym_cmd_identifier_token13] = ACTIONS(1423), + [aux_sym_cmd_identifier_token14] = ACTIONS(1423), + [aux_sym_cmd_identifier_token15] = ACTIONS(1423), + [aux_sym_cmd_identifier_token16] = ACTIONS(1426), + [aux_sym_cmd_identifier_token17] = ACTIONS(1426), + [aux_sym_cmd_identifier_token18] = ACTIONS(1426), + [aux_sym_cmd_identifier_token19] = ACTIONS(1426), + [aux_sym_cmd_identifier_token20] = ACTIONS(1426), + [aux_sym_cmd_identifier_token21] = ACTIONS(1426), + [aux_sym_cmd_identifier_token22] = ACTIONS(1426), + [aux_sym_cmd_identifier_token23] = ACTIONS(1426), + [aux_sym_cmd_identifier_token24] = ACTIONS(1426), + [aux_sym_cmd_identifier_token25] = ACTIONS(1426), + [aux_sym_cmd_identifier_token26] = ACTIONS(1426), + [aux_sym_cmd_identifier_token27] = ACTIONS(1426), + [aux_sym_cmd_identifier_token28] = ACTIONS(1426), + [aux_sym_cmd_identifier_token29] = ACTIONS(1426), + [aux_sym_cmd_identifier_token30] = ACTIONS(1426), + [aux_sym_cmd_identifier_token31] = ACTIONS(1426), + [aux_sym_cmd_identifier_token32] = ACTIONS(1426), + [aux_sym_cmd_identifier_token33] = ACTIONS(1426), + [aux_sym_cmd_identifier_token34] = ACTIONS(1423), + [aux_sym_cmd_identifier_token35] = ACTIONS(1426), + [aux_sym_cmd_identifier_token36] = ACTIONS(1426), + [aux_sym_cmd_identifier_token37] = ACTIONS(1426), + [aux_sym_cmd_identifier_token38] = ACTIONS(1423), + [aux_sym_cmd_identifier_token39] = ACTIONS(1426), + [aux_sym_cmd_identifier_token40] = ACTIONS(1426), + [anon_sym_def] = ACTIONS(1420), + [anon_sym_export_DASHenv] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym_module] = ACTIONS(1420), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_error] = ACTIONS(1420), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_in2] = ACTIONS(1420), + [anon_sym_loop] = ACTIONS(1420), + [anon_sym_make] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_else] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_try] = ACTIONS(1420), + [anon_sym_catch] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_source] = ACTIONS(1420), + [anon_sym_source_DASHenv] = ACTIONS(1420), + [anon_sym_register] = ACTIONS(1420), + [anon_sym_hide] = ACTIONS(1420), + [anon_sym_hide_DASHenv] = ACTIONS(1420), + [anon_sym_overlay] = ACTIONS(1420), + [anon_sym_as] = ACTIONS(1420), + [anon_sym_PLUS2] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1438), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), + [aux_sym__val_number_decimal_token1] = ACTIONS(1444), + [aux_sym__val_number_decimal_token2] = ACTIONS(1447), + [aux_sym__val_number_decimal_token3] = ACTIONS(1450), + [aux_sym__val_number_decimal_token4] = ACTIONS(1453), + [aux_sym__val_number_token1] = ACTIONS(1456), + [aux_sym__val_number_token2] = ACTIONS(1456), + [aux_sym__val_number_token3] = ACTIONS(1456), + [aux_sym__val_number_token4] = ACTIONS(1459), + [aux_sym__val_number_token5] = ACTIONS(1459), + [aux_sym__val_number_token6] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1462), + [sym__str_single_quotes] = ACTIONS(1465), + [sym__str_back_ticks] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1471), + }, + [219] = { + [sym_comment] = STATE(219), + [aux_sym__block_body_repeat1] = STATE(217), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [aux_sym_cmd_identifier_token1] = ACTIONS(1474), + [aux_sym_cmd_identifier_token2] = ACTIONS(1476), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym_cmd_identifier_token6] = ACTIONS(1476), + [aux_sym_cmd_identifier_token7] = ACTIONS(1476), + [aux_sym_cmd_identifier_token8] = ACTIONS(1474), + [aux_sym_cmd_identifier_token9] = ACTIONS(1474), + [aux_sym_cmd_identifier_token10] = ACTIONS(1476), + [aux_sym_cmd_identifier_token11] = ACTIONS(1476), + [aux_sym_cmd_identifier_token12] = ACTIONS(1474), + [aux_sym_cmd_identifier_token13] = ACTIONS(1474), + [aux_sym_cmd_identifier_token14] = ACTIONS(1474), + [aux_sym_cmd_identifier_token15] = ACTIONS(1474), + [aux_sym_cmd_identifier_token16] = ACTIONS(1476), + [aux_sym_cmd_identifier_token17] = ACTIONS(1476), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1476), + [aux_sym_cmd_identifier_token20] = ACTIONS(1476), + [aux_sym_cmd_identifier_token21] = ACTIONS(1476), + [aux_sym_cmd_identifier_token22] = ACTIONS(1476), + [aux_sym_cmd_identifier_token23] = ACTIONS(1476), + [aux_sym_cmd_identifier_token24] = ACTIONS(1476), + [aux_sym_cmd_identifier_token25] = ACTIONS(1476), + [aux_sym_cmd_identifier_token26] = ACTIONS(1476), + [aux_sym_cmd_identifier_token27] = ACTIONS(1476), + [aux_sym_cmd_identifier_token28] = ACTIONS(1476), + [aux_sym_cmd_identifier_token29] = ACTIONS(1476), + [aux_sym_cmd_identifier_token30] = ACTIONS(1476), + [aux_sym_cmd_identifier_token31] = ACTIONS(1476), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1476), + [aux_sym_cmd_identifier_token34] = ACTIONS(1474), + [aux_sym_cmd_identifier_token35] = ACTIONS(1476), + [aux_sym_cmd_identifier_token36] = ACTIONS(1476), + [aux_sym_cmd_identifier_token37] = ACTIONS(1476), + [aux_sym_cmd_identifier_token38] = ACTIONS(1474), + [aux_sym_cmd_identifier_token39] = ACTIONS(1476), + [aux_sym_cmd_identifier_token40] = ACTIONS(1476), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1476), + [aux_sym_expr_unary_token1] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_LT] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1476), + [aux_sym__val_number_decimal_token4] = ACTIONS(1476), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), + [aux_sym_env_var_token1] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1476), + [aux_sym_command_token1] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1476), + }, + [220] = { + [sym_cmd_identifier] = STATE(8527), + [sym_expr_parenthesized] = STATE(8548), + [sym__spread_parenthesized] = STATE(8135), + [sym__spread_variable] = STATE(8174), + [sym_val_variable] = STATE(8548), + [sym_val_number] = STATE(8548), + [sym__val_number_decimal] = STATE(3846), + [sym__val_number] = STATE(2431), + [sym_val_string] = STATE(8548), + [sym__raw_str] = STATE(1571), + [sym__str_double_quotes] = STATE(1571), + [sym__spread_record] = STATE(8135), + [sym_record_entry] = STATE(7877), + [sym__record_key] = STATE(8527), + [sym_comment] = STATE(220), + [aux_sym_record_body_repeat1] = STATE(218), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1319), - [aux_sym_cmd_identifier_token2] = ACTIONS(1321), - [aux_sym_cmd_identifier_token3] = ACTIONS(1321), - [aux_sym_cmd_identifier_token4] = ACTIONS(1321), - [aux_sym_cmd_identifier_token5] = ACTIONS(1321), - [aux_sym_cmd_identifier_token6] = ACTIONS(1321), - [aux_sym_cmd_identifier_token7] = ACTIONS(1321), - [aux_sym_cmd_identifier_token8] = ACTIONS(1319), - [aux_sym_cmd_identifier_token9] = ACTIONS(1319), - [aux_sym_cmd_identifier_token10] = ACTIONS(1321), - [aux_sym_cmd_identifier_token11] = ACTIONS(1321), - [aux_sym_cmd_identifier_token12] = ACTIONS(1319), - [aux_sym_cmd_identifier_token13] = ACTIONS(1319), - [aux_sym_cmd_identifier_token14] = ACTIONS(1319), - [aux_sym_cmd_identifier_token15] = ACTIONS(1319), - [aux_sym_cmd_identifier_token16] = ACTIONS(1321), - [aux_sym_cmd_identifier_token17] = ACTIONS(1321), - [aux_sym_cmd_identifier_token18] = ACTIONS(1321), - [aux_sym_cmd_identifier_token19] = ACTIONS(1321), - [aux_sym_cmd_identifier_token20] = ACTIONS(1321), - [aux_sym_cmd_identifier_token21] = ACTIONS(1321), - [aux_sym_cmd_identifier_token22] = ACTIONS(1321), - [aux_sym_cmd_identifier_token23] = ACTIONS(1321), - [aux_sym_cmd_identifier_token24] = ACTIONS(1321), - [aux_sym_cmd_identifier_token25] = ACTIONS(1321), - [aux_sym_cmd_identifier_token26] = ACTIONS(1321), - [aux_sym_cmd_identifier_token27] = ACTIONS(1321), - [aux_sym_cmd_identifier_token28] = ACTIONS(1321), - [aux_sym_cmd_identifier_token29] = ACTIONS(1321), - [aux_sym_cmd_identifier_token30] = ACTIONS(1321), - [aux_sym_cmd_identifier_token31] = ACTIONS(1321), - [aux_sym_cmd_identifier_token32] = ACTIONS(1321), - [aux_sym_cmd_identifier_token33] = ACTIONS(1321), - [aux_sym_cmd_identifier_token34] = ACTIONS(1319), - [aux_sym_cmd_identifier_token35] = ACTIONS(1321), - [aux_sym_cmd_identifier_token36] = ACTIONS(1321), - [aux_sym_cmd_identifier_token37] = ACTIONS(1321), - [aux_sym_cmd_identifier_token38] = ACTIONS(1319), - [aux_sym_cmd_identifier_token39] = ACTIONS(1321), - [aux_sym_cmd_identifier_token40] = ACTIONS(1321), + [aux_sym_cmd_identifier_token1] = ACTIONS(1315), + [aux_sym_cmd_identifier_token2] = ACTIONS(1317), + [aux_sym_cmd_identifier_token3] = ACTIONS(1317), + [aux_sym_cmd_identifier_token4] = ACTIONS(1317), + [aux_sym_cmd_identifier_token5] = ACTIONS(1317), + [aux_sym_cmd_identifier_token6] = ACTIONS(1317), + [aux_sym_cmd_identifier_token7] = ACTIONS(1317), + [aux_sym_cmd_identifier_token8] = ACTIONS(1315), + [aux_sym_cmd_identifier_token9] = ACTIONS(1315), + [aux_sym_cmd_identifier_token10] = ACTIONS(1317), + [aux_sym_cmd_identifier_token11] = ACTIONS(1317), + [aux_sym_cmd_identifier_token12] = ACTIONS(1315), + [aux_sym_cmd_identifier_token13] = ACTIONS(1315), + [aux_sym_cmd_identifier_token14] = ACTIONS(1315), + [aux_sym_cmd_identifier_token15] = ACTIONS(1315), + [aux_sym_cmd_identifier_token16] = ACTIONS(1317), + [aux_sym_cmd_identifier_token17] = ACTIONS(1317), + [aux_sym_cmd_identifier_token18] = ACTIONS(1317), + [aux_sym_cmd_identifier_token19] = ACTIONS(1317), + [aux_sym_cmd_identifier_token20] = ACTIONS(1317), + [aux_sym_cmd_identifier_token21] = ACTIONS(1317), + [aux_sym_cmd_identifier_token22] = ACTIONS(1317), + [aux_sym_cmd_identifier_token23] = ACTIONS(1317), + [aux_sym_cmd_identifier_token24] = ACTIONS(1317), + [aux_sym_cmd_identifier_token25] = ACTIONS(1317), + [aux_sym_cmd_identifier_token26] = ACTIONS(1317), + [aux_sym_cmd_identifier_token27] = ACTIONS(1317), + [aux_sym_cmd_identifier_token28] = ACTIONS(1317), + [aux_sym_cmd_identifier_token29] = ACTIONS(1317), + [aux_sym_cmd_identifier_token30] = ACTIONS(1317), + [aux_sym_cmd_identifier_token31] = ACTIONS(1317), + [aux_sym_cmd_identifier_token32] = ACTIONS(1317), + [aux_sym_cmd_identifier_token33] = ACTIONS(1317), + [aux_sym_cmd_identifier_token34] = ACTIONS(1315), + [aux_sym_cmd_identifier_token35] = ACTIONS(1317), + [aux_sym_cmd_identifier_token36] = ACTIONS(1317), + [aux_sym_cmd_identifier_token37] = ACTIONS(1317), + [aux_sym_cmd_identifier_token38] = ACTIONS(1315), + [aux_sym_cmd_identifier_token39] = ACTIONS(1317), + [aux_sym_cmd_identifier_token40] = ACTIONS(1317), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1323), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -107562,10 +109978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1329), - [aux_sym__val_number_decimal_token2] = ACTIONS(1331), - [aux_sym__val_number_decimal_token3] = ACTIONS(1333), - [aux_sym__val_number_decimal_token4] = ACTIONS(1335), + [aux_sym__val_number_decimal_token1] = ACTIONS(1327), + [aux_sym__val_number_decimal_token2] = ACTIONS(1329), + [aux_sym__val_number_decimal_token3] = ACTIONS(1331), + [aux_sym__val_number_decimal_token4] = ACTIONS(1333), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -107579,379 +109995,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [222] = { - [sym_comment] = STATE(222), - [aux_sym__block_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_alias] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_let_DASHenv] = ACTIONS(1417), - [anon_sym_mut] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [aux_sym_cmd_identifier_token1] = ACTIONS(1417), - [aux_sym_cmd_identifier_token2] = ACTIONS(1419), - [aux_sym_cmd_identifier_token3] = ACTIONS(1419), - [aux_sym_cmd_identifier_token4] = ACTIONS(1419), - [aux_sym_cmd_identifier_token5] = ACTIONS(1419), - [aux_sym_cmd_identifier_token6] = ACTIONS(1419), - [aux_sym_cmd_identifier_token7] = ACTIONS(1419), - [aux_sym_cmd_identifier_token8] = ACTIONS(1417), - [aux_sym_cmd_identifier_token9] = ACTIONS(1417), - [aux_sym_cmd_identifier_token10] = ACTIONS(1419), - [aux_sym_cmd_identifier_token11] = ACTIONS(1419), - [aux_sym_cmd_identifier_token12] = ACTIONS(1417), - [aux_sym_cmd_identifier_token13] = ACTIONS(1417), - [aux_sym_cmd_identifier_token14] = ACTIONS(1417), - [aux_sym_cmd_identifier_token15] = ACTIONS(1417), - [aux_sym_cmd_identifier_token16] = ACTIONS(1419), - [aux_sym_cmd_identifier_token17] = ACTIONS(1419), - [aux_sym_cmd_identifier_token18] = ACTIONS(1417), - [aux_sym_cmd_identifier_token19] = ACTIONS(1419), - [aux_sym_cmd_identifier_token20] = ACTIONS(1419), - [aux_sym_cmd_identifier_token21] = ACTIONS(1419), - [aux_sym_cmd_identifier_token22] = ACTIONS(1419), - [aux_sym_cmd_identifier_token23] = ACTIONS(1419), - [aux_sym_cmd_identifier_token24] = ACTIONS(1419), - [aux_sym_cmd_identifier_token25] = ACTIONS(1419), - [aux_sym_cmd_identifier_token26] = ACTIONS(1419), - [aux_sym_cmd_identifier_token27] = ACTIONS(1419), - [aux_sym_cmd_identifier_token28] = ACTIONS(1419), - [aux_sym_cmd_identifier_token29] = ACTIONS(1419), - [aux_sym_cmd_identifier_token30] = ACTIONS(1419), - [aux_sym_cmd_identifier_token31] = ACTIONS(1419), - [aux_sym_cmd_identifier_token32] = ACTIONS(1417), - [aux_sym_cmd_identifier_token33] = ACTIONS(1419), - [aux_sym_cmd_identifier_token34] = ACTIONS(1417), - [aux_sym_cmd_identifier_token35] = ACTIONS(1419), - [aux_sym_cmd_identifier_token36] = ACTIONS(1419), - [aux_sym_cmd_identifier_token37] = ACTIONS(1419), - [aux_sym_cmd_identifier_token38] = ACTIONS(1417), - [aux_sym_cmd_identifier_token39] = ACTIONS(1419), - [aux_sym_cmd_identifier_token40] = ACTIONS(1419), + [221] = { + [sym_comment] = STATE(221), + [aux_sym__block_body_repeat1] = STATE(217), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [aux_sym_cmd_identifier_token1] = ACTIONS(1474), + [aux_sym_cmd_identifier_token2] = ACTIONS(1476), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym_cmd_identifier_token6] = ACTIONS(1476), + [aux_sym_cmd_identifier_token7] = ACTIONS(1476), + [aux_sym_cmd_identifier_token8] = ACTIONS(1474), + [aux_sym_cmd_identifier_token9] = ACTIONS(1474), + [aux_sym_cmd_identifier_token10] = ACTIONS(1476), + [aux_sym_cmd_identifier_token11] = ACTIONS(1476), + [aux_sym_cmd_identifier_token12] = ACTIONS(1474), + [aux_sym_cmd_identifier_token13] = ACTIONS(1474), + [aux_sym_cmd_identifier_token14] = ACTIONS(1474), + [aux_sym_cmd_identifier_token15] = ACTIONS(1474), + [aux_sym_cmd_identifier_token16] = ACTIONS(1476), + [aux_sym_cmd_identifier_token17] = ACTIONS(1476), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1476), + [aux_sym_cmd_identifier_token20] = ACTIONS(1476), + [aux_sym_cmd_identifier_token21] = ACTIONS(1476), + [aux_sym_cmd_identifier_token22] = ACTIONS(1476), + [aux_sym_cmd_identifier_token23] = ACTIONS(1476), + [aux_sym_cmd_identifier_token24] = ACTIONS(1476), + [aux_sym_cmd_identifier_token25] = ACTIONS(1476), + [aux_sym_cmd_identifier_token26] = ACTIONS(1476), + [aux_sym_cmd_identifier_token27] = ACTIONS(1476), + [aux_sym_cmd_identifier_token28] = ACTIONS(1476), + [aux_sym_cmd_identifier_token29] = ACTIONS(1476), + [aux_sym_cmd_identifier_token30] = ACTIONS(1476), + [aux_sym_cmd_identifier_token31] = ACTIONS(1476), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1476), + [aux_sym_cmd_identifier_token34] = ACTIONS(1474), + [aux_sym_cmd_identifier_token35] = ACTIONS(1476), + [aux_sym_cmd_identifier_token36] = ACTIONS(1476), + [aux_sym_cmd_identifier_token37] = ACTIONS(1476), + [aux_sym_cmd_identifier_token38] = ACTIONS(1474), + [aux_sym_cmd_identifier_token39] = ACTIONS(1476), + [aux_sym_cmd_identifier_token40] = ACTIONS(1476), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1417), - [anon_sym_export_DASHenv] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_error] = ACTIONS(1417), - [anon_sym_DASH2] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_source] = ACTIONS(1417), - [anon_sym_source_DASHenv] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_hide] = ACTIONS(1417), - [anon_sym_hide_DASHenv] = ACTIONS(1417), - [anon_sym_overlay] = ACTIONS(1417), - [anon_sym_where] = ACTIONS(1419), - [aux_sym_expr_unary_token1] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_DOT_DOT_LT] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [aux_sym__val_number_decimal_token1] = ACTIONS(1417), - [aux_sym__val_number_decimal_token2] = ACTIONS(1419), - [aux_sym__val_number_decimal_token3] = ACTIONS(1419), - [aux_sym__val_number_decimal_token4] = ACTIONS(1419), - [aux_sym__val_number_token1] = ACTIONS(1419), - [aux_sym__val_number_token2] = ACTIONS(1419), - [aux_sym__val_number_token3] = ACTIONS(1419), - [aux_sym__val_number_token4] = ACTIONS(1417), - [aux_sym__val_number_token5] = ACTIONS(1417), - [aux_sym__val_number_token6] = ACTIONS(1417), - [anon_sym_0b] = ACTIONS(1417), - [anon_sym_0o] = ACTIONS(1417), - [anon_sym_0x] = ACTIONS(1417), - [sym_val_date] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym__str_single_quotes] = ACTIONS(1419), - [sym__str_back_ticks] = ACTIONS(1419), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), - [aux_sym_env_var_token1] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [aux_sym_command_token1] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1419), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1476), + [aux_sym_expr_unary_token1] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_LT] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1476), + [aux_sym__val_number_decimal_token4] = ACTIONS(1476), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), + [aux_sym_env_var_token1] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1476), + [aux_sym_command_token1] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1476), }, - [223] = { - [sym_comment] = STATE(223), - [aux_sym__block_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_alias] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_let_DASHenv] = ACTIONS(1417), - [anon_sym_mut] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [aux_sym_cmd_identifier_token1] = ACTIONS(1417), - [aux_sym_cmd_identifier_token2] = ACTIONS(1419), - [aux_sym_cmd_identifier_token3] = ACTIONS(1419), - [aux_sym_cmd_identifier_token4] = ACTIONS(1419), - [aux_sym_cmd_identifier_token5] = ACTIONS(1419), - [aux_sym_cmd_identifier_token6] = ACTIONS(1419), - [aux_sym_cmd_identifier_token7] = ACTIONS(1419), - [aux_sym_cmd_identifier_token8] = ACTIONS(1417), - [aux_sym_cmd_identifier_token9] = ACTIONS(1417), - [aux_sym_cmd_identifier_token10] = ACTIONS(1419), - [aux_sym_cmd_identifier_token11] = ACTIONS(1419), - [aux_sym_cmd_identifier_token12] = ACTIONS(1417), - [aux_sym_cmd_identifier_token13] = ACTIONS(1417), - [aux_sym_cmd_identifier_token14] = ACTIONS(1417), - [aux_sym_cmd_identifier_token15] = ACTIONS(1417), - [aux_sym_cmd_identifier_token16] = ACTIONS(1419), - [aux_sym_cmd_identifier_token17] = ACTIONS(1419), - [aux_sym_cmd_identifier_token18] = ACTIONS(1417), - [aux_sym_cmd_identifier_token19] = ACTIONS(1419), - [aux_sym_cmd_identifier_token20] = ACTIONS(1419), - [aux_sym_cmd_identifier_token21] = ACTIONS(1419), - [aux_sym_cmd_identifier_token22] = ACTIONS(1419), - [aux_sym_cmd_identifier_token23] = ACTIONS(1419), - [aux_sym_cmd_identifier_token24] = ACTIONS(1419), - [aux_sym_cmd_identifier_token25] = ACTIONS(1419), - [aux_sym_cmd_identifier_token26] = ACTIONS(1419), - [aux_sym_cmd_identifier_token27] = ACTIONS(1419), - [aux_sym_cmd_identifier_token28] = ACTIONS(1419), - [aux_sym_cmd_identifier_token29] = ACTIONS(1419), - [aux_sym_cmd_identifier_token30] = ACTIONS(1419), - [aux_sym_cmd_identifier_token31] = ACTIONS(1419), - [aux_sym_cmd_identifier_token32] = ACTIONS(1417), - [aux_sym_cmd_identifier_token33] = ACTIONS(1419), - [aux_sym_cmd_identifier_token34] = ACTIONS(1417), - [aux_sym_cmd_identifier_token35] = ACTIONS(1419), - [aux_sym_cmd_identifier_token36] = ACTIONS(1419), - [aux_sym_cmd_identifier_token37] = ACTIONS(1419), - [aux_sym_cmd_identifier_token38] = ACTIONS(1417), - [aux_sym_cmd_identifier_token39] = ACTIONS(1419), - [aux_sym_cmd_identifier_token40] = ACTIONS(1419), + [222] = { + [sym_comment] = STATE(222), + [aux_sym__block_body_repeat1] = STATE(217), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [aux_sym_cmd_identifier_token1] = ACTIONS(1474), + [aux_sym_cmd_identifier_token2] = ACTIONS(1476), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym_cmd_identifier_token6] = ACTIONS(1476), + [aux_sym_cmd_identifier_token7] = ACTIONS(1476), + [aux_sym_cmd_identifier_token8] = ACTIONS(1474), + [aux_sym_cmd_identifier_token9] = ACTIONS(1474), + [aux_sym_cmd_identifier_token10] = ACTIONS(1476), + [aux_sym_cmd_identifier_token11] = ACTIONS(1476), + [aux_sym_cmd_identifier_token12] = ACTIONS(1474), + [aux_sym_cmd_identifier_token13] = ACTIONS(1474), + [aux_sym_cmd_identifier_token14] = ACTIONS(1474), + [aux_sym_cmd_identifier_token15] = ACTIONS(1474), + [aux_sym_cmd_identifier_token16] = ACTIONS(1476), + [aux_sym_cmd_identifier_token17] = ACTIONS(1476), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1476), + [aux_sym_cmd_identifier_token20] = ACTIONS(1476), + [aux_sym_cmd_identifier_token21] = ACTIONS(1476), + [aux_sym_cmd_identifier_token22] = ACTIONS(1476), + [aux_sym_cmd_identifier_token23] = ACTIONS(1476), + [aux_sym_cmd_identifier_token24] = ACTIONS(1476), + [aux_sym_cmd_identifier_token25] = ACTIONS(1476), + [aux_sym_cmd_identifier_token26] = ACTIONS(1476), + [aux_sym_cmd_identifier_token27] = ACTIONS(1476), + [aux_sym_cmd_identifier_token28] = ACTIONS(1476), + [aux_sym_cmd_identifier_token29] = ACTIONS(1476), + [aux_sym_cmd_identifier_token30] = ACTIONS(1476), + [aux_sym_cmd_identifier_token31] = ACTIONS(1476), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1476), + [aux_sym_cmd_identifier_token34] = ACTIONS(1474), + [aux_sym_cmd_identifier_token35] = ACTIONS(1476), + [aux_sym_cmd_identifier_token36] = ACTIONS(1476), + [aux_sym_cmd_identifier_token37] = ACTIONS(1476), + [aux_sym_cmd_identifier_token38] = ACTIONS(1474), + [aux_sym_cmd_identifier_token39] = ACTIONS(1476), + [aux_sym_cmd_identifier_token40] = ACTIONS(1476), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1417), - [anon_sym_export_DASHenv] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_error] = ACTIONS(1417), - [anon_sym_DASH2] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_source] = ACTIONS(1417), - [anon_sym_source_DASHenv] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_hide] = ACTIONS(1417), - [anon_sym_hide_DASHenv] = ACTIONS(1417), - [anon_sym_overlay] = ACTIONS(1417), - [anon_sym_where] = ACTIONS(1419), - [aux_sym_expr_unary_token1] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_DOT_DOT_LT] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [aux_sym__val_number_decimal_token1] = ACTIONS(1417), - [aux_sym__val_number_decimal_token2] = ACTIONS(1419), - [aux_sym__val_number_decimal_token3] = ACTIONS(1419), - [aux_sym__val_number_decimal_token4] = ACTIONS(1419), - [aux_sym__val_number_token1] = ACTIONS(1419), - [aux_sym__val_number_token2] = ACTIONS(1419), - [aux_sym__val_number_token3] = ACTIONS(1419), - [aux_sym__val_number_token4] = ACTIONS(1417), - [aux_sym__val_number_token5] = ACTIONS(1417), - [aux_sym__val_number_token6] = ACTIONS(1417), - [anon_sym_0b] = ACTIONS(1417), - [anon_sym_0o] = ACTIONS(1417), - [anon_sym_0x] = ACTIONS(1417), - [sym_val_date] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym__str_single_quotes] = ACTIONS(1419), - [sym__str_back_ticks] = ACTIONS(1419), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), - [aux_sym_env_var_token1] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [aux_sym_command_token1] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1419), - }, - [224] = { - [sym_cmd_identifier] = STATE(8169), - [sym_expr_parenthesized] = STATE(7899), - [sym__spread_parenthesized] = STATE(7650), - [sym__spread_variable] = STATE(7523), - [sym_val_variable] = STATE(7899), - [sym_val_number] = STATE(7899), - [sym__val_number_decimal] = STATE(3681), - [sym__val_number] = STATE(2383), - [sym_val_string] = STATE(7899), - [sym__raw_str] = STATE(1515), - [sym__str_double_quotes] = STATE(1515), - [sym__spread_record] = STATE(7650), - [sym_record_entry] = STATE(7644), - [sym__record_key] = STATE(8169), - [sym_comment] = STATE(224), - [aux_sym_record_body_repeat1] = STATE(224), - [anon_sym_export] = ACTIONS(1434), - [anon_sym_alias] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_let_DASHenv] = ACTIONS(1434), - [anon_sym_mut] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [aux_sym_cmd_identifier_token1] = ACTIONS(1437), - [aux_sym_cmd_identifier_token2] = ACTIONS(1440), - [aux_sym_cmd_identifier_token3] = ACTIONS(1440), - [aux_sym_cmd_identifier_token4] = ACTIONS(1440), - [aux_sym_cmd_identifier_token5] = ACTIONS(1440), - [aux_sym_cmd_identifier_token6] = ACTIONS(1440), - [aux_sym_cmd_identifier_token7] = ACTIONS(1440), - [aux_sym_cmd_identifier_token8] = ACTIONS(1437), - [aux_sym_cmd_identifier_token9] = ACTIONS(1437), - [aux_sym_cmd_identifier_token10] = ACTIONS(1440), - [aux_sym_cmd_identifier_token11] = ACTIONS(1440), - [aux_sym_cmd_identifier_token12] = ACTIONS(1437), - [aux_sym_cmd_identifier_token13] = ACTIONS(1437), - [aux_sym_cmd_identifier_token14] = ACTIONS(1437), - [aux_sym_cmd_identifier_token15] = ACTIONS(1437), - [aux_sym_cmd_identifier_token16] = ACTIONS(1440), - [aux_sym_cmd_identifier_token17] = ACTIONS(1440), - [aux_sym_cmd_identifier_token18] = ACTIONS(1440), - [aux_sym_cmd_identifier_token19] = ACTIONS(1440), - [aux_sym_cmd_identifier_token20] = ACTIONS(1440), - [aux_sym_cmd_identifier_token21] = ACTIONS(1440), - [aux_sym_cmd_identifier_token22] = ACTIONS(1440), - [aux_sym_cmd_identifier_token23] = ACTIONS(1440), - [aux_sym_cmd_identifier_token24] = ACTIONS(1440), - [aux_sym_cmd_identifier_token25] = ACTIONS(1440), - [aux_sym_cmd_identifier_token26] = ACTIONS(1440), - [aux_sym_cmd_identifier_token27] = ACTIONS(1440), - [aux_sym_cmd_identifier_token28] = ACTIONS(1440), - [aux_sym_cmd_identifier_token29] = ACTIONS(1440), - [aux_sym_cmd_identifier_token30] = ACTIONS(1440), - [aux_sym_cmd_identifier_token31] = ACTIONS(1440), - [aux_sym_cmd_identifier_token32] = ACTIONS(1440), - [aux_sym_cmd_identifier_token33] = ACTIONS(1440), - [aux_sym_cmd_identifier_token34] = ACTIONS(1437), - [aux_sym_cmd_identifier_token35] = ACTIONS(1440), - [aux_sym_cmd_identifier_token36] = ACTIONS(1440), - [aux_sym_cmd_identifier_token37] = ACTIONS(1440), - [aux_sym_cmd_identifier_token38] = ACTIONS(1437), - [aux_sym_cmd_identifier_token39] = ACTIONS(1440), - [aux_sym_cmd_identifier_token40] = ACTIONS(1440), - [anon_sym_def] = ACTIONS(1434), - [anon_sym_export_DASHenv] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_module] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(1446), - [anon_sym_error] = ACTIONS(1434), - [anon_sym_DASH2] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_in2] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_make] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_else] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_catch] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_source] = ACTIONS(1434), - [anon_sym_source_DASHenv] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_hide] = ACTIONS(1434), - [anon_sym_hide_DASHenv] = ACTIONS(1434), - [anon_sym_overlay] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1455), - [aux_sym__val_number_decimal_token1] = ACTIONS(1458), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1464), - [aux_sym__val_number_decimal_token4] = ACTIONS(1467), - [aux_sym__val_number_token1] = ACTIONS(1470), - [aux_sym__val_number_token2] = ACTIONS(1470), - [aux_sym__val_number_token3] = ACTIONS(1470), - [aux_sym__val_number_token4] = ACTIONS(1473), - [aux_sym__val_number_token5] = ACTIONS(1473), - [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1476), + [aux_sym_expr_unary_token1] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_LT] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1476), + [aux_sym__val_number_decimal_token4] = ACTIONS(1476), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1476), [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1479), - [sym__str_back_ticks] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1482), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), + [aux_sym_env_var_token1] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1476), + [aux_sym_command_token1] = ACTIONS(1476), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1485), + [sym_raw_string_begin] = ACTIONS(1476), }, - [225] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5123), - [sym__expression_parenthesized] = STATE(5123), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5123), - [sym_comment] = STATE(225), - [aux_sym_shebang_repeat1] = STATE(1173), + [223] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5317), + [sym_block] = STATE(5390), + [sym__expression_parenthesized] = STATE(5390), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5390), + [sym_comment] = STATE(223), + [aux_sym_shebang_repeat1] = STATE(253), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -107992,13 +110295,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108006,10 +110309,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108030,39 +110333,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [224] = { + [sym_comment] = STATE(224), + [aux_sym_shebang_repeat1] = STATE(224), + [anon_sym_export] = ACTIONS(1308), + [anon_sym_alias] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_let_DASHenv] = ACTIONS(1308), + [anon_sym_mut] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [aux_sym_cmd_identifier_token1] = ACTIONS(1308), + [aux_sym_cmd_identifier_token2] = ACTIONS(1310), + [aux_sym_cmd_identifier_token3] = ACTIONS(1310), + [aux_sym_cmd_identifier_token4] = ACTIONS(1310), + [aux_sym_cmd_identifier_token5] = ACTIONS(1310), + [aux_sym_cmd_identifier_token6] = ACTIONS(1310), + [aux_sym_cmd_identifier_token7] = ACTIONS(1310), + [aux_sym_cmd_identifier_token8] = ACTIONS(1308), + [aux_sym_cmd_identifier_token9] = ACTIONS(1308), + [aux_sym_cmd_identifier_token10] = ACTIONS(1310), + [aux_sym_cmd_identifier_token11] = ACTIONS(1310), + [aux_sym_cmd_identifier_token12] = ACTIONS(1308), + [aux_sym_cmd_identifier_token13] = ACTIONS(1308), + [aux_sym_cmd_identifier_token14] = ACTIONS(1308), + [aux_sym_cmd_identifier_token15] = ACTIONS(1308), + [aux_sym_cmd_identifier_token16] = ACTIONS(1310), + [aux_sym_cmd_identifier_token17] = ACTIONS(1310), + [aux_sym_cmd_identifier_token18] = ACTIONS(1308), + [aux_sym_cmd_identifier_token19] = ACTIONS(1310), + [aux_sym_cmd_identifier_token20] = ACTIONS(1310), + [aux_sym_cmd_identifier_token21] = ACTIONS(1310), + [aux_sym_cmd_identifier_token22] = ACTIONS(1310), + [aux_sym_cmd_identifier_token23] = ACTIONS(1310), + [aux_sym_cmd_identifier_token24] = ACTIONS(1310), + [aux_sym_cmd_identifier_token25] = ACTIONS(1310), + [aux_sym_cmd_identifier_token26] = ACTIONS(1310), + [aux_sym_cmd_identifier_token27] = ACTIONS(1310), + [aux_sym_cmd_identifier_token28] = ACTIONS(1310), + [aux_sym_cmd_identifier_token29] = ACTIONS(1310), + [aux_sym_cmd_identifier_token30] = ACTIONS(1310), + [aux_sym_cmd_identifier_token31] = ACTIONS(1310), + [aux_sym_cmd_identifier_token32] = ACTIONS(1308), + [aux_sym_cmd_identifier_token33] = ACTIONS(1310), + [aux_sym_cmd_identifier_token34] = ACTIONS(1308), + [aux_sym_cmd_identifier_token35] = ACTIONS(1310), + [aux_sym_cmd_identifier_token36] = ACTIONS(1310), + [aux_sym_cmd_identifier_token37] = ACTIONS(1310), + [aux_sym_cmd_identifier_token38] = ACTIONS(1308), + [aux_sym_cmd_identifier_token39] = ACTIONS(1310), + [aux_sym_cmd_identifier_token40] = ACTIONS(1310), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_def] = ACTIONS(1308), + [anon_sym_export_DASHenv] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_module] = ACTIONS(1308), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [anon_sym_error] = ACTIONS(1308), + [anon_sym_DASH2] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_loop] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_match] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [anon_sym_try] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_source] = ACTIONS(1308), + [anon_sym_source_DASHenv] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_hide] = ACTIONS(1308), + [anon_sym_hide_DASHenv] = ACTIONS(1308), + [anon_sym_overlay] = ACTIONS(1308), + [anon_sym_where] = ACTIONS(1310), + [aux_sym_expr_unary_token1] = ACTIONS(1310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), + [anon_sym_DOT_DOT_LT] = ACTIONS(1310), + [anon_sym_null] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1310), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(1310), + [aux_sym__val_number_token2] = ACTIONS(1310), + [aux_sym__val_number_token3] = ACTIONS(1310), + [aux_sym__val_number_token4] = ACTIONS(1308), + [aux_sym__val_number_token5] = ACTIONS(1308), + [aux_sym__val_number_token6] = ACTIONS(1308), + [anon_sym_0b] = ACTIONS(1308), + [anon_sym_0o] = ACTIONS(1308), + [anon_sym_0x] = ACTIONS(1308), + [sym_val_date] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym__str_single_quotes] = ACTIONS(1310), + [sym__str_back_ticks] = ACTIONS(1310), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), + [aux_sym_env_var_token1] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1310), + [aux_sym_command_token1] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1310), + }, + [225] = { + [sym_comment] = STATE(225), + [aux_sym__block_body_repeat1] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [aux_sym_cmd_identifier_token1] = ACTIONS(1474), + [aux_sym_cmd_identifier_token2] = ACTIONS(1476), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym_cmd_identifier_token6] = ACTIONS(1476), + [aux_sym_cmd_identifier_token7] = ACTIONS(1476), + [aux_sym_cmd_identifier_token8] = ACTIONS(1474), + [aux_sym_cmd_identifier_token9] = ACTIONS(1474), + [aux_sym_cmd_identifier_token10] = ACTIONS(1476), + [aux_sym_cmd_identifier_token11] = ACTIONS(1476), + [aux_sym_cmd_identifier_token12] = ACTIONS(1474), + [aux_sym_cmd_identifier_token13] = ACTIONS(1474), + [aux_sym_cmd_identifier_token14] = ACTIONS(1474), + [aux_sym_cmd_identifier_token15] = ACTIONS(1474), + [aux_sym_cmd_identifier_token16] = ACTIONS(1476), + [aux_sym_cmd_identifier_token17] = ACTIONS(1476), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1476), + [aux_sym_cmd_identifier_token20] = ACTIONS(1476), + [aux_sym_cmd_identifier_token21] = ACTIONS(1476), + [aux_sym_cmd_identifier_token22] = ACTIONS(1476), + [aux_sym_cmd_identifier_token23] = ACTIONS(1476), + [aux_sym_cmd_identifier_token24] = ACTIONS(1476), + [aux_sym_cmd_identifier_token25] = ACTIONS(1476), + [aux_sym_cmd_identifier_token26] = ACTIONS(1476), + [aux_sym_cmd_identifier_token27] = ACTIONS(1476), + [aux_sym_cmd_identifier_token28] = ACTIONS(1476), + [aux_sym_cmd_identifier_token29] = ACTIONS(1476), + [aux_sym_cmd_identifier_token30] = ACTIONS(1476), + [aux_sym_cmd_identifier_token31] = ACTIONS(1476), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1476), + [aux_sym_cmd_identifier_token34] = ACTIONS(1474), + [aux_sym_cmd_identifier_token35] = ACTIONS(1476), + [aux_sym_cmd_identifier_token36] = ACTIONS(1476), + [aux_sym_cmd_identifier_token37] = ACTIONS(1476), + [aux_sym_cmd_identifier_token38] = ACTIONS(1474), + [aux_sym_cmd_identifier_token39] = ACTIONS(1476), + [aux_sym_cmd_identifier_token40] = ACTIONS(1476), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1476), + [aux_sym_expr_unary_token1] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_LT] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1476), + [aux_sym__val_number_decimal_token4] = ACTIONS(1476), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), + [aux_sym_env_var_token1] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1476), + [aux_sym_command_token1] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1476), + }, [226] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5073), - [sym_block] = STATE(5074), - [sym__expression_parenthesized] = STATE(5074), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5074), [sym_comment] = STATE(226), + [aux_sym_shebang_repeat1] = STATE(7746), + [aux_sym__parenthesized_body_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1501), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [aux_sym_cmd_identifier_token6] = ACTIONS(1501), + [aux_sym_cmd_identifier_token7] = ACTIONS(1501), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1501), + [aux_sym_cmd_identifier_token11] = ACTIONS(1501), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1501), + [aux_sym_cmd_identifier_token17] = ACTIONS(1501), + [aux_sym_cmd_identifier_token18] = ACTIONS(1499), + [aux_sym_cmd_identifier_token19] = ACTIONS(1501), + [aux_sym_cmd_identifier_token20] = ACTIONS(1501), + [aux_sym_cmd_identifier_token21] = ACTIONS(1501), + [aux_sym_cmd_identifier_token22] = ACTIONS(1501), + [aux_sym_cmd_identifier_token23] = ACTIONS(1501), + [aux_sym_cmd_identifier_token24] = ACTIONS(1501), + [aux_sym_cmd_identifier_token25] = ACTIONS(1501), + [aux_sym_cmd_identifier_token26] = ACTIONS(1501), + [aux_sym_cmd_identifier_token27] = ACTIONS(1501), + [aux_sym_cmd_identifier_token28] = ACTIONS(1501), + [aux_sym_cmd_identifier_token29] = ACTIONS(1501), + [aux_sym_cmd_identifier_token30] = ACTIONS(1501), + [aux_sym_cmd_identifier_token31] = ACTIONS(1501), + [aux_sym_cmd_identifier_token32] = ACTIONS(1499), + [aux_sym_cmd_identifier_token33] = ACTIONS(1501), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1501), + [aux_sym_cmd_identifier_token36] = ACTIONS(1501), + [aux_sym_cmd_identifier_token37] = ACTIONS(1501), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1501), + [aux_sym_cmd_identifier_token40] = ACTIONS(1501), + [sym__newline] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_register] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_where] = ACTIONS(1501), + [aux_sym_expr_unary_token1] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [aux_sym_env_var_token1] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1501), + [aux_sym_command_token1] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [227] = { + [sym_comment] = STATE(227), + [aux_sym__block_body_repeat1] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(1415), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_alias] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_let_DASHenv] = ACTIONS(1413), + [anon_sym_mut] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [aux_sym_cmd_identifier_token1] = ACTIONS(1413), + [aux_sym_cmd_identifier_token2] = ACTIONS(1415), + [aux_sym_cmd_identifier_token3] = ACTIONS(1415), + [aux_sym_cmd_identifier_token4] = ACTIONS(1415), + [aux_sym_cmd_identifier_token5] = ACTIONS(1415), + [aux_sym_cmd_identifier_token6] = ACTIONS(1415), + [aux_sym_cmd_identifier_token7] = ACTIONS(1415), + [aux_sym_cmd_identifier_token8] = ACTIONS(1413), + [aux_sym_cmd_identifier_token9] = ACTIONS(1413), + [aux_sym_cmd_identifier_token10] = ACTIONS(1415), + [aux_sym_cmd_identifier_token11] = ACTIONS(1415), + [aux_sym_cmd_identifier_token12] = ACTIONS(1413), + [aux_sym_cmd_identifier_token13] = ACTIONS(1413), + [aux_sym_cmd_identifier_token14] = ACTIONS(1413), + [aux_sym_cmd_identifier_token15] = ACTIONS(1413), + [aux_sym_cmd_identifier_token16] = ACTIONS(1415), + [aux_sym_cmd_identifier_token17] = ACTIONS(1415), + [aux_sym_cmd_identifier_token18] = ACTIONS(1413), + [aux_sym_cmd_identifier_token19] = ACTIONS(1415), + [aux_sym_cmd_identifier_token20] = ACTIONS(1415), + [aux_sym_cmd_identifier_token21] = ACTIONS(1415), + [aux_sym_cmd_identifier_token22] = ACTIONS(1415), + [aux_sym_cmd_identifier_token23] = ACTIONS(1415), + [aux_sym_cmd_identifier_token24] = ACTIONS(1415), + [aux_sym_cmd_identifier_token25] = ACTIONS(1415), + [aux_sym_cmd_identifier_token26] = ACTIONS(1415), + [aux_sym_cmd_identifier_token27] = ACTIONS(1415), + [aux_sym_cmd_identifier_token28] = ACTIONS(1415), + [aux_sym_cmd_identifier_token29] = ACTIONS(1415), + [aux_sym_cmd_identifier_token30] = ACTIONS(1415), + [aux_sym_cmd_identifier_token31] = ACTIONS(1415), + [aux_sym_cmd_identifier_token32] = ACTIONS(1413), + [aux_sym_cmd_identifier_token33] = ACTIONS(1415), + [aux_sym_cmd_identifier_token34] = ACTIONS(1413), + [aux_sym_cmd_identifier_token35] = ACTIONS(1415), + [aux_sym_cmd_identifier_token36] = ACTIONS(1415), + [aux_sym_cmd_identifier_token37] = ACTIONS(1415), + [aux_sym_cmd_identifier_token38] = ACTIONS(1413), + [aux_sym_cmd_identifier_token39] = ACTIONS(1415), + [aux_sym_cmd_identifier_token40] = ACTIONS(1415), + [sym__newline] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1413), + [anon_sym_export_DASHenv] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_module] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1413), + [anon_sym_error] = ACTIONS(1413), + [anon_sym_DASH2] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_source] = ACTIONS(1413), + [anon_sym_source_DASHenv] = ACTIONS(1413), + [anon_sym_register] = ACTIONS(1413), + [anon_sym_hide] = ACTIONS(1413), + [anon_sym_hide_DASHenv] = ACTIONS(1413), + [anon_sym_overlay] = ACTIONS(1413), + [anon_sym_where] = ACTIONS(1415), + [aux_sym_expr_unary_token1] = ACTIONS(1415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1415), + [anon_sym_DOT_DOT_LT] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [aux_sym__val_number_decimal_token1] = ACTIONS(1413), + [aux_sym__val_number_decimal_token2] = ACTIONS(1415), + [aux_sym__val_number_decimal_token3] = ACTIONS(1415), + [aux_sym__val_number_decimal_token4] = ACTIONS(1415), + [aux_sym__val_number_token1] = ACTIONS(1415), + [aux_sym__val_number_token2] = ACTIONS(1415), + [aux_sym__val_number_token3] = ACTIONS(1415), + [aux_sym__val_number_token4] = ACTIONS(1413), + [aux_sym__val_number_token5] = ACTIONS(1413), + [aux_sym__val_number_token6] = ACTIONS(1413), + [anon_sym_0b] = ACTIONS(1413), + [anon_sym_0o] = ACTIONS(1413), + [anon_sym_0x] = ACTIONS(1413), + [sym_val_date] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym__str_single_quotes] = ACTIONS(1415), + [sym__str_back_ticks] = ACTIONS(1415), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1415), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1415), + [aux_sym_env_var_token1] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1415), + [aux_sym_command_token1] = ACTIONS(1415), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1415), + }, + [228] = { + [sym_comment] = STATE(228), + [aux_sym__block_body_repeat1] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [aux_sym_cmd_identifier_token1] = ACTIONS(1474), + [aux_sym_cmd_identifier_token2] = ACTIONS(1476), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym_cmd_identifier_token6] = ACTIONS(1476), + [aux_sym_cmd_identifier_token7] = ACTIONS(1476), + [aux_sym_cmd_identifier_token8] = ACTIONS(1474), + [aux_sym_cmd_identifier_token9] = ACTIONS(1474), + [aux_sym_cmd_identifier_token10] = ACTIONS(1476), + [aux_sym_cmd_identifier_token11] = ACTIONS(1476), + [aux_sym_cmd_identifier_token12] = ACTIONS(1474), + [aux_sym_cmd_identifier_token13] = ACTIONS(1474), + [aux_sym_cmd_identifier_token14] = ACTIONS(1474), + [aux_sym_cmd_identifier_token15] = ACTIONS(1474), + [aux_sym_cmd_identifier_token16] = ACTIONS(1476), + [aux_sym_cmd_identifier_token17] = ACTIONS(1476), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1476), + [aux_sym_cmd_identifier_token20] = ACTIONS(1476), + [aux_sym_cmd_identifier_token21] = ACTIONS(1476), + [aux_sym_cmd_identifier_token22] = ACTIONS(1476), + [aux_sym_cmd_identifier_token23] = ACTIONS(1476), + [aux_sym_cmd_identifier_token24] = ACTIONS(1476), + [aux_sym_cmd_identifier_token25] = ACTIONS(1476), + [aux_sym_cmd_identifier_token26] = ACTIONS(1476), + [aux_sym_cmd_identifier_token27] = ACTIONS(1476), + [aux_sym_cmd_identifier_token28] = ACTIONS(1476), + [aux_sym_cmd_identifier_token29] = ACTIONS(1476), + [aux_sym_cmd_identifier_token30] = ACTIONS(1476), + [aux_sym_cmd_identifier_token31] = ACTIONS(1476), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1476), + [aux_sym_cmd_identifier_token34] = ACTIONS(1474), + [aux_sym_cmd_identifier_token35] = ACTIONS(1476), + [aux_sym_cmd_identifier_token36] = ACTIONS(1476), + [aux_sym_cmd_identifier_token37] = ACTIONS(1476), + [aux_sym_cmd_identifier_token38] = ACTIONS(1474), + [aux_sym_cmd_identifier_token39] = ACTIONS(1476), + [aux_sym_cmd_identifier_token40] = ACTIONS(1476), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1476), + [aux_sym_expr_unary_token1] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_LT] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1476), + [aux_sym__val_number_decimal_token4] = ACTIONS(1476), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), + [aux_sym_env_var_token1] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1476), + [aux_sym_command_token1] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1476), + }, + [229] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5317), + [sym_block] = STATE(5390), + [sym__expression_parenthesized] = STATE(5390), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5390), + [sym_comment] = STATE(229), [aux_sym_shebang_repeat1] = STATE(231), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), @@ -108104,13 +110967,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108118,10 +110981,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108142,40 +111005,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [227] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(5076), - [sym__expression_parenthesized] = STATE(5076), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5076), - [sym_comment] = STATE(227), - [aux_sym_shebang_repeat1] = STATE(233), + [230] = { + [sym_comment] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_POUND_BANG] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1306), + [aux_sym_cmd_identifier_token3] = ACTIONS(1306), + [aux_sym_cmd_identifier_token4] = ACTIONS(1306), + [aux_sym_cmd_identifier_token5] = ACTIONS(1306), + [aux_sym_cmd_identifier_token6] = ACTIONS(1306), + [aux_sym_cmd_identifier_token7] = ACTIONS(1306), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1306), + [aux_sym_cmd_identifier_token11] = ACTIONS(1306), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1306), + [aux_sym_cmd_identifier_token17] = ACTIONS(1306), + [aux_sym_cmd_identifier_token18] = ACTIONS(1522), + [aux_sym_cmd_identifier_token19] = ACTIONS(1306), + [aux_sym_cmd_identifier_token20] = ACTIONS(1306), + [aux_sym_cmd_identifier_token21] = ACTIONS(1306), + [aux_sym_cmd_identifier_token22] = ACTIONS(1306), + [aux_sym_cmd_identifier_token23] = ACTIONS(1306), + [aux_sym_cmd_identifier_token24] = ACTIONS(1306), + [aux_sym_cmd_identifier_token25] = ACTIONS(1306), + [aux_sym_cmd_identifier_token26] = ACTIONS(1306), + [aux_sym_cmd_identifier_token27] = ACTIONS(1306), + [aux_sym_cmd_identifier_token28] = ACTIONS(1306), + [aux_sym_cmd_identifier_token29] = ACTIONS(1306), + [aux_sym_cmd_identifier_token30] = ACTIONS(1306), + [aux_sym_cmd_identifier_token31] = ACTIONS(1306), + [aux_sym_cmd_identifier_token32] = ACTIONS(1522), + [aux_sym_cmd_identifier_token33] = ACTIONS(1306), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1306), + [aux_sym_cmd_identifier_token36] = ACTIONS(1306), + [aux_sym_cmd_identifier_token37] = ACTIONS(1306), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1306), + [aux_sym_cmd_identifier_token40] = ACTIONS(1306), + [sym__newline] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_where] = ACTIONS(1306), + [aux_sym_expr_unary_token1] = ACTIONS(1306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), + [anon_sym_DOT_DOT_LT] = ACTIONS(1306), + [anon_sym_null] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_token1] = ACTIONS(1306), + [aux_sym__val_number_token2] = ACTIONS(1306), + [aux_sym__val_number_token3] = ACTIONS(1306), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym__str_single_quotes] = ACTIONS(1306), + [sym__str_back_ticks] = ACTIONS(1306), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), + [aux_sym_env_var_token1] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1306), + [aux_sym_command_token1] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1306), + }, + [231] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5459), + [sym_block] = STATE(5460), + [sym__expression_parenthesized] = STATE(5460), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5460), + [sym_comment] = STATE(231), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -108216,13 +111191,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108230,10 +111205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108254,39 +111229,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [228] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5077), - [sym_block] = STATE(5078), - [sym__expression_parenthesized] = STATE(5078), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5078), - [sym_comment] = STATE(228), + [232] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5459), + [sym_block] = STATE(5460), + [sym__expression_parenthesized] = STATE(5460), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5460), + [sym_comment] = STATE(232), [aux_sym_shebang_repeat1] = STATE(235), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), @@ -108328,13 +111303,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108342,10 +111317,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108366,40 +111341,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [229] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5132), - [sym__expression_parenthesized] = STATE(5132), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5132), - [sym_comment] = STATE(229), - [aux_sym_shebang_repeat1] = STATE(230), + [233] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5474), + [sym_block] = STATE(5475), + [sym__expression_parenthesized] = STATE(5475), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5475), + [sym_comment] = STATE(233), + [aux_sym_shebang_repeat1] = STATE(237), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -108440,13 +111415,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108454,10 +111429,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108478,40 +111453,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [230] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5134), - [sym_block] = STATE(5135), - [sym__expression_parenthesized] = STATE(5135), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5135), - [sym_comment] = STATE(230), - [aux_sym_shebang_repeat1] = STATE(1173), + [234] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5438), + [sym_block] = STATE(5443), + [sym__expression_parenthesized] = STATE(5443), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5443), + [sym_comment] = STATE(234), + [aux_sym_shebang_repeat1] = STATE(239), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -108552,13 +111527,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108566,10 +111541,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108590,40 +111565,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [231] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5098), - [sym_block] = STATE(5099), - [sym__expression_parenthesized] = STATE(5099), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5099), - [sym_comment] = STATE(231), - [aux_sym_shebang_repeat1] = STATE(1173), + [235] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5331), + [sym_block] = STATE(5333), + [sym__expression_parenthesized] = STATE(5333), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5333), + [sym_comment] = STATE(235), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -108664,13 +111639,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108678,10 +111653,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108702,40 +111677,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [232] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5098), - [sym_block] = STATE(5099), - [sym__expression_parenthesized] = STATE(5099), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5099), - [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(239), + [236] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5331), + [sym_block] = STATE(5333), + [sym__expression_parenthesized] = STATE(5333), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5333), + [sym_comment] = STATE(236), + [aux_sym_shebang_repeat1] = STATE(241), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -108776,13 +111751,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108790,10 +111765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108814,40 +111789,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [233] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5101), - [sym_block] = STATE(5102), - [sym__expression_parenthesized] = STATE(5102), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5102), - [sym_comment] = STATE(233), - [aux_sym_shebang_repeat1] = STATE(1173), + [237] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5335), + [sym_block] = STATE(5336), + [sym__expression_parenthesized] = STATE(5336), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5336), + [sym_comment] = STATE(237), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -108888,13 +111863,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -108902,10 +111877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -108926,40 +111901,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [234] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5101), - [sym_block] = STATE(5102), - [sym__expression_parenthesized] = STATE(5102), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5102), - [sym_comment] = STATE(234), - [aux_sym_shebang_repeat1] = STATE(240), + [238] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5335), + [sym_block] = STATE(5336), + [sym__expression_parenthesized] = STATE(5336), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5336), + [sym_comment] = STATE(238), + [aux_sym_shebang_repeat1] = STATE(242), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109000,13 +111975,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109014,10 +111989,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109038,40 +112013,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [235] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5104), - [sym_block] = STATE(5105), - [sym__expression_parenthesized] = STATE(5105), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5105), - [sym_comment] = STATE(235), - [aux_sym_shebang_repeat1] = STATE(1173), + [239] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5338), + [sym_block] = STATE(5340), + [sym__expression_parenthesized] = STATE(5340), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5340), + [sym_comment] = STATE(239), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109112,13 +112087,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109126,10 +112101,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109150,40 +112125,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [236] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5104), - [sym_block] = STATE(5105), - [sym__expression_parenthesized] = STATE(5105), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5105), - [sym_comment] = STATE(236), - [aux_sym_shebang_repeat1] = STATE(242), + [240] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5345), + [sym_block] = STATE(5346), + [sym__expression_parenthesized] = STATE(5346), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5346), + [sym_comment] = STATE(240), + [aux_sym_shebang_repeat1] = STATE(246), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109224,13 +112199,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109238,10 +112213,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109262,40 +112237,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [237] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5107), - [sym_block] = STATE(5108), - [sym__expression_parenthesized] = STATE(5108), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5108), - [sym_comment] = STATE(237), - [aux_sym_shebang_repeat1] = STATE(244), + [241] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5455), + [sym_block] = STATE(5456), + [sym__expression_parenthesized] = STATE(5456), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5456), + [sym_comment] = STATE(241), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109336,13 +112311,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109350,10 +112325,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109374,152 +112349,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [238] = { - [sym_comment] = STATE(238), - [ts_builtin_sym_end] = ACTIONS(1310), - [anon_sym_POUND_BANG] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_DASH2] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_where] = ACTIONS(1310), - [aux_sym_expr_unary_token1] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1518), - [aux_sym__val_number_token5] = ACTIONS(1518), - [aux_sym__val_number_token6] = ACTIONS(1518), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), - [aux_sym_env_var_token1] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1310), - [aux_sym_command_token1] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1310), - }, - [239] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5119), - [sym__expression_parenthesized] = STATE(5119), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5119), - [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(1173), + [242] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5457), + [sym_block] = STATE(5458), + [sym__expression_parenthesized] = STATE(5458), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5458), + [sym_comment] = STATE(242), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109560,13 +112423,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109574,10 +112437,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109598,40 +112461,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [240] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5121), - [sym__expression_parenthesized] = STATE(5121), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5121), - [sym_comment] = STATE(240), - [aux_sym_shebang_repeat1] = STATE(1173), + [243] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5457), + [sym_block] = STATE(5458), + [sym__expression_parenthesized] = STATE(5458), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5458), + [sym_comment] = STATE(243), + [aux_sym_shebang_repeat1] = STATE(248), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109672,13 +112535,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109686,10 +112549,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109710,40 +112573,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [241] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5121), - [sym__expression_parenthesized] = STATE(5121), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5121), - [sym_comment] = STATE(241), - [aux_sym_shebang_repeat1] = STATE(246), + [244] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5461), + [sym_block] = STATE(5462), + [sym__expression_parenthesized] = STATE(5462), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5462), + [sym_comment] = STATE(244), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109784,13 +112647,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109798,10 +112661,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109822,40 +112685,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [242] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5123), - [sym__expression_parenthesized] = STATE(5123), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5123), - [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(1173), + [245] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5461), + [sym_block] = STATE(5462), + [sym__expression_parenthesized] = STATE(5462), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5462), + [sym_comment] = STATE(245), + [aux_sym_shebang_repeat1] = STATE(249), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -109896,13 +112759,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -109910,10 +112773,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -109934,40 +112797,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [243] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5123), - [sym__expression_parenthesized] = STATE(5123), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5123), - [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(247), + [246] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5463), + [sym_block] = STATE(5464), + [sym__expression_parenthesized] = STATE(5464), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5464), + [sym_comment] = STATE(246), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110008,13 +112871,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110022,10 +112885,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110046,40 +112909,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [244] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5125), - [sym_comment] = STATE(244), - [aux_sym_shebang_repeat1] = STATE(1173), + [247] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5463), + [sym_block] = STATE(5464), + [sym__expression_parenthesized] = STATE(5464), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5464), + [sym_comment] = STATE(247), + [aux_sym_shebang_repeat1] = STATE(250), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110120,13 +112983,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110134,10 +112997,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110158,40 +113021,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [245] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5125), - [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(248), + [248] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5361), + [sym_block] = STATE(5378), + [sym__expression_parenthesized] = STATE(5378), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5378), + [sym_comment] = STATE(248), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110232,13 +113095,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110246,10 +113109,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110270,40 +113133,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [246] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5127), - [sym_block] = STATE(5128), - [sym__expression_parenthesized] = STATE(5128), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5128), - [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(1173), + [249] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5313), + [sym_block] = STATE(5433), + [sym__expression_parenthesized] = STATE(5433), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5433), + [sym_comment] = STATE(249), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110344,13 +113207,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110358,10 +113221,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110382,40 +113245,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [247] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5129), - [sym_block] = STATE(5130), - [sym__expression_parenthesized] = STATE(5130), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5130), - [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(1173), + [250] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5400), + [sym_block] = STATE(5315), + [sym__expression_parenthesized] = STATE(5315), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5315), + [sym_comment] = STATE(250), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110456,13 +113319,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110470,10 +113333,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110494,40 +113357,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [248] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5132), - [sym__expression_parenthesized] = STATE(5132), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5132), - [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(1173), + [251] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5400), + [sym_block] = STATE(5315), + [sym__expression_parenthesized] = STATE(5315), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5315), + [sym_comment] = STATE(251), + [aux_sym_shebang_repeat1] = STATE(252), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110568,13 +113431,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110582,10 +113445,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110606,40 +113469,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [249] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5132), - [sym__expression_parenthesized] = STATE(5132), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5132), - [sym_comment] = STATE(249), - [aux_sym_shebang_repeat1] = STATE(250), + [252] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5405), + [sym_block] = STATE(5430), + [sym__expression_parenthesized] = STATE(5430), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5430), + [sym_comment] = STATE(252), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110680,13 +113543,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110694,10 +113557,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110718,40 +113581,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [250] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5134), - [sym_block] = STATE(5135), - [sym__expression_parenthesized] = STATE(5135), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5135), - [sym_comment] = STATE(250), - [aux_sym_shebang_repeat1] = STATE(1173), + [253] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5459), + [sym_block] = STATE(5460), + [sym__expression_parenthesized] = STATE(5460), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5460), + [sym_comment] = STATE(253), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -110792,13 +113655,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110806,10 +113669,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -110830,264 +113693,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [251] = { - [sym_comment] = STATE(251), - [aux_sym__block_body_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(1425), - [anon_sym_export] = ACTIONS(1423), - [anon_sym_alias] = ACTIONS(1423), - [anon_sym_let] = ACTIONS(1423), - [anon_sym_let_DASHenv] = ACTIONS(1423), - [anon_sym_mut] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [aux_sym_cmd_identifier_token1] = ACTIONS(1423), - [aux_sym_cmd_identifier_token2] = ACTIONS(1425), - [aux_sym_cmd_identifier_token3] = ACTIONS(1425), - [aux_sym_cmd_identifier_token4] = ACTIONS(1425), - [aux_sym_cmd_identifier_token5] = ACTIONS(1425), - [aux_sym_cmd_identifier_token6] = ACTIONS(1425), - [aux_sym_cmd_identifier_token7] = ACTIONS(1425), - [aux_sym_cmd_identifier_token8] = ACTIONS(1423), - [aux_sym_cmd_identifier_token9] = ACTIONS(1423), - [aux_sym_cmd_identifier_token10] = ACTIONS(1425), - [aux_sym_cmd_identifier_token11] = ACTIONS(1425), - [aux_sym_cmd_identifier_token12] = ACTIONS(1423), - [aux_sym_cmd_identifier_token13] = ACTIONS(1423), - [aux_sym_cmd_identifier_token14] = ACTIONS(1423), - [aux_sym_cmd_identifier_token15] = ACTIONS(1423), - [aux_sym_cmd_identifier_token16] = ACTIONS(1425), - [aux_sym_cmd_identifier_token17] = ACTIONS(1425), - [aux_sym_cmd_identifier_token18] = ACTIONS(1423), - [aux_sym_cmd_identifier_token19] = ACTIONS(1425), - [aux_sym_cmd_identifier_token20] = ACTIONS(1425), - [aux_sym_cmd_identifier_token21] = ACTIONS(1425), - [aux_sym_cmd_identifier_token22] = ACTIONS(1425), - [aux_sym_cmd_identifier_token23] = ACTIONS(1425), - [aux_sym_cmd_identifier_token24] = ACTIONS(1425), - [aux_sym_cmd_identifier_token25] = ACTIONS(1425), - [aux_sym_cmd_identifier_token26] = ACTIONS(1425), - [aux_sym_cmd_identifier_token27] = ACTIONS(1425), - [aux_sym_cmd_identifier_token28] = ACTIONS(1425), - [aux_sym_cmd_identifier_token29] = ACTIONS(1425), - [aux_sym_cmd_identifier_token30] = ACTIONS(1425), - [aux_sym_cmd_identifier_token31] = ACTIONS(1425), - [aux_sym_cmd_identifier_token32] = ACTIONS(1423), - [aux_sym_cmd_identifier_token33] = ACTIONS(1425), - [aux_sym_cmd_identifier_token34] = ACTIONS(1423), - [aux_sym_cmd_identifier_token35] = ACTIONS(1425), - [aux_sym_cmd_identifier_token36] = ACTIONS(1425), - [aux_sym_cmd_identifier_token37] = ACTIONS(1425), - [aux_sym_cmd_identifier_token38] = ACTIONS(1423), - [aux_sym_cmd_identifier_token39] = ACTIONS(1425), - [aux_sym_cmd_identifier_token40] = ACTIONS(1425), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1423), - [anon_sym_export_DASHenv] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym_module] = ACTIONS(1423), - [anon_sym_use] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_DOLLAR] = ACTIONS(1423), - [anon_sym_error] = ACTIONS(1423), - [anon_sym_DASH2] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_loop] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_match] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_try] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_source] = ACTIONS(1423), - [anon_sym_source_DASHenv] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_hide] = ACTIONS(1423), - [anon_sym_hide_DASHenv] = ACTIONS(1423), - [anon_sym_overlay] = ACTIONS(1423), - [anon_sym_where] = ACTIONS(1425), - [aux_sym_expr_unary_token1] = ACTIONS(1425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), - [anon_sym_DOT_DOT_LT] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1425), - [aux_sym__val_number_decimal_token3] = ACTIONS(1425), - [aux_sym__val_number_decimal_token4] = ACTIONS(1425), - [aux_sym__val_number_token1] = ACTIONS(1425), - [aux_sym__val_number_token2] = ACTIONS(1425), - [aux_sym__val_number_token3] = ACTIONS(1425), - [aux_sym__val_number_token4] = ACTIONS(1423), - [aux_sym__val_number_token5] = ACTIONS(1423), - [aux_sym__val_number_token6] = ACTIONS(1423), - [anon_sym_0b] = ACTIONS(1423), - [anon_sym_0o] = ACTIONS(1423), - [anon_sym_0x] = ACTIONS(1423), - [sym_val_date] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym__str_single_quotes] = ACTIONS(1425), - [sym__str_back_ticks] = ACTIONS(1425), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1425), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1425), - [aux_sym_env_var_token1] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1425), - [aux_sym_command_token1] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1425), - }, - [252] = { - [sym_comment] = STATE(252), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_DASH2] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_where] = ACTIONS(1310), - [aux_sym_expr_unary_token1] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1518), - [aux_sym__val_number_token5] = ACTIONS(1518), - [aux_sym__val_number_token6] = ACTIONS(1518), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), - [aux_sym_env_var_token1] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1310), - [aux_sym_command_token1] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1310), - }, - [253] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5014), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5015), - [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(256), + [254] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5459), + [sym_block] = STATE(5460), + [sym__expression_parenthesized] = STATE(5460), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5460), + [sym_comment] = STATE(254), + [aux_sym_shebang_repeat1] = STATE(281), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -111128,13 +113767,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111142,10 +113781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -111166,264 +113805,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [254] = { - [sym_comment] = STATE(254), - [aux_sym__block_body_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(1432), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_alias] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_let_DASHenv] = ACTIONS(1417), - [anon_sym_mut] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [aux_sym_cmd_identifier_token1] = ACTIONS(1417), - [aux_sym_cmd_identifier_token2] = ACTIONS(1419), - [aux_sym_cmd_identifier_token3] = ACTIONS(1419), - [aux_sym_cmd_identifier_token4] = ACTIONS(1419), - [aux_sym_cmd_identifier_token5] = ACTIONS(1419), - [aux_sym_cmd_identifier_token6] = ACTIONS(1419), - [aux_sym_cmd_identifier_token7] = ACTIONS(1419), - [aux_sym_cmd_identifier_token8] = ACTIONS(1417), - [aux_sym_cmd_identifier_token9] = ACTIONS(1417), - [aux_sym_cmd_identifier_token10] = ACTIONS(1419), - [aux_sym_cmd_identifier_token11] = ACTIONS(1419), - [aux_sym_cmd_identifier_token12] = ACTIONS(1417), - [aux_sym_cmd_identifier_token13] = ACTIONS(1417), - [aux_sym_cmd_identifier_token14] = ACTIONS(1417), - [aux_sym_cmd_identifier_token15] = ACTIONS(1417), - [aux_sym_cmd_identifier_token16] = ACTIONS(1419), - [aux_sym_cmd_identifier_token17] = ACTIONS(1419), - [aux_sym_cmd_identifier_token18] = ACTIONS(1417), - [aux_sym_cmd_identifier_token19] = ACTIONS(1419), - [aux_sym_cmd_identifier_token20] = ACTIONS(1419), - [aux_sym_cmd_identifier_token21] = ACTIONS(1419), - [aux_sym_cmd_identifier_token22] = ACTIONS(1419), - [aux_sym_cmd_identifier_token23] = ACTIONS(1419), - [aux_sym_cmd_identifier_token24] = ACTIONS(1419), - [aux_sym_cmd_identifier_token25] = ACTIONS(1419), - [aux_sym_cmd_identifier_token26] = ACTIONS(1419), - [aux_sym_cmd_identifier_token27] = ACTIONS(1419), - [aux_sym_cmd_identifier_token28] = ACTIONS(1419), - [aux_sym_cmd_identifier_token29] = ACTIONS(1419), - [aux_sym_cmd_identifier_token30] = ACTIONS(1419), - [aux_sym_cmd_identifier_token31] = ACTIONS(1419), - [aux_sym_cmd_identifier_token32] = ACTIONS(1417), - [aux_sym_cmd_identifier_token33] = ACTIONS(1419), - [aux_sym_cmd_identifier_token34] = ACTIONS(1417), - [aux_sym_cmd_identifier_token35] = ACTIONS(1419), - [aux_sym_cmd_identifier_token36] = ACTIONS(1419), - [aux_sym_cmd_identifier_token37] = ACTIONS(1419), - [aux_sym_cmd_identifier_token38] = ACTIONS(1417), - [aux_sym_cmd_identifier_token39] = ACTIONS(1419), - [aux_sym_cmd_identifier_token40] = ACTIONS(1419), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1417), - [anon_sym_export_DASHenv] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_error] = ACTIONS(1417), - [anon_sym_DASH2] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_source] = ACTIONS(1417), - [anon_sym_source_DASHenv] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_hide] = ACTIONS(1417), - [anon_sym_hide_DASHenv] = ACTIONS(1417), - [anon_sym_overlay] = ACTIONS(1417), - [anon_sym_where] = ACTIONS(1419), - [aux_sym_expr_unary_token1] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_DOT_DOT_LT] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [aux_sym__val_number_decimal_token1] = ACTIONS(1417), - [aux_sym__val_number_decimal_token2] = ACTIONS(1419), - [aux_sym__val_number_decimal_token3] = ACTIONS(1419), - [aux_sym__val_number_decimal_token4] = ACTIONS(1419), - [aux_sym__val_number_token1] = ACTIONS(1419), - [aux_sym__val_number_token2] = ACTIONS(1419), - [aux_sym__val_number_token3] = ACTIONS(1419), - [aux_sym__val_number_token4] = ACTIONS(1417), - [aux_sym__val_number_token5] = ACTIONS(1417), - [aux_sym__val_number_token6] = ACTIONS(1417), - [anon_sym_0b] = ACTIONS(1417), - [anon_sym_0o] = ACTIONS(1417), - [anon_sym_0x] = ACTIONS(1417), - [sym_val_date] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym__str_single_quotes] = ACTIONS(1419), - [sym__str_back_ticks] = ACTIONS(1419), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), - [aux_sym_env_var_token1] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [aux_sym_command_token1] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1419), - }, [255] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5474), + [sym_block] = STATE(5475), + [sym__expression_parenthesized] = STATE(5475), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5475), [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(307), - [aux_sym__parenthesized_body_repeat1] = STATE(279), - [anon_sym_export] = ACTIONS(1523), - [anon_sym_alias] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_let_DASHenv] = ACTIONS(1523), - [anon_sym_mut] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [aux_sym_cmd_identifier_token1] = ACTIONS(1523), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1523), - [aux_sym_cmd_identifier_token9] = ACTIONS(1523), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1523), - [aux_sym_cmd_identifier_token13] = ACTIONS(1523), - [aux_sym_cmd_identifier_token14] = ACTIONS(1523), - [aux_sym_cmd_identifier_token15] = ACTIONS(1523), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1523), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1523), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1523), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [aux_sym_cmd_identifier_token37] = ACTIONS(1525), - [aux_sym_cmd_identifier_token38] = ACTIONS(1523), - [aux_sym_cmd_identifier_token39] = ACTIONS(1525), - [aux_sym_cmd_identifier_token40] = ACTIONS(1525), - [sym__newline] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_def] = ACTIONS(1523), - [anon_sym_export_DASHenv] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_module] = ACTIONS(1523), - [anon_sym_use] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1523), - [anon_sym_error] = ACTIONS(1523), - [anon_sym_DASH2] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_loop] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_try] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_source] = ACTIONS(1523), - [anon_sym_source_DASHenv] = ACTIONS(1523), - [anon_sym_register] = ACTIONS(1523), - [anon_sym_hide] = ACTIONS(1523), - [anon_sym_hide_DASHenv] = ACTIONS(1523), - [anon_sym_overlay] = ACTIONS(1523), - [anon_sym_where] = ACTIONS(1525), - [aux_sym_expr_unary_token1] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [aux_sym__val_number_decimal_token1] = ACTIONS(1523), - [aux_sym__val_number_decimal_token2] = ACTIONS(1525), - [aux_sym__val_number_decimal_token3] = ACTIONS(1525), - [aux_sym__val_number_decimal_token4] = ACTIONS(1525), - [aux_sym__val_number_token1] = ACTIONS(1525), - [aux_sym__val_number_token2] = ACTIONS(1525), - [aux_sym__val_number_token3] = ACTIONS(1525), - [aux_sym__val_number_token4] = ACTIONS(1523), - [aux_sym__val_number_token5] = ACTIONS(1523), - [aux_sym__val_number_token6] = ACTIONS(1523), - [anon_sym_0b] = ACTIONS(1523), - [anon_sym_0o] = ACTIONS(1523), - [anon_sym_0x] = ACTIONS(1523), - [sym_val_date] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [sym__str_single_quotes] = ACTIONS(1525), - [sym__str_back_ticks] = ACTIONS(1525), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1525), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1525), - [aux_sym_env_var_token1] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1525), - [aux_sym_command_token1] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1525), - }, - [256] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5073), - [sym_block] = STATE(5074), - [sym__expression_parenthesized] = STATE(5074), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5074), - [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(1173), + [aux_sym_shebang_repeat1] = STATE(283), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -111464,13 +113879,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111478,10 +113893,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -111502,40 +113917,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [257] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5073), - [sym_block] = STATE(5074), - [sym__expression_parenthesized] = STATE(5074), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5074), - [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(260), + [256] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5438), + [sym_block] = STATE(5443), + [sym__expression_parenthesized] = STATE(5443), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5443), + [sym_comment] = STATE(256), + [aux_sym_shebang_repeat1] = STATE(285), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -111576,13 +113991,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111590,10 +114005,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -111614,40 +114029,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [258] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(5076), - [sym__expression_parenthesized] = STATE(5076), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5076), - [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(262), + [257] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5317), + [sym_block] = STATE(5390), + [sym__expression_parenthesized] = STATE(5390), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5390), + [sym_comment] = STATE(257), + [aux_sym_shebang_repeat1] = STATE(258), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -111688,13 +114103,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111702,10 +114117,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -111726,40 +114141,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [259] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5077), - [sym_block] = STATE(5078), - [sym__expression_parenthesized] = STATE(5078), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5078), - [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(264), + [258] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5459), + [sym_block] = STATE(5460), + [sym__expression_parenthesized] = STATE(5460), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5460), + [sym_comment] = STATE(258), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -111800,13 +114215,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111814,10 +114229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -111838,40 +114253,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [260] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5098), - [sym_block] = STATE(5099), - [sym__expression_parenthesized] = STATE(5099), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5099), - [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(1173), + [259] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5459), + [sym_block] = STATE(5460), + [sym__expression_parenthesized] = STATE(5460), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5460), + [sym_comment] = STATE(259), + [aux_sym_shebang_repeat1] = STATE(262), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -111912,13 +114327,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111926,10 +114341,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -111950,40 +114365,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [261] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5098), - [sym_block] = STATE(5099), - [sym__expression_parenthesized] = STATE(5099), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5099), - [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(268), + [260] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5474), + [sym_block] = STATE(5475), + [sym__expression_parenthesized] = STATE(5475), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5475), + [sym_comment] = STATE(260), + [aux_sym_shebang_repeat1] = STATE(264), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112024,13 +114439,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112038,10 +114453,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112062,40 +114477,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [262] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5101), - [sym_block] = STATE(5102), - [sym__expression_parenthesized] = STATE(5102), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5102), - [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(1173), + [261] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5438), + [sym_block] = STATE(5443), + [sym__expression_parenthesized] = STATE(5443), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5443), + [sym_comment] = STATE(261), + [aux_sym_shebang_repeat1] = STATE(266), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112136,13 +114551,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112150,10 +114565,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112174,40 +114589,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [263] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5101), - [sym_block] = STATE(5102), - [sym__expression_parenthesized] = STATE(5102), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5102), - [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(270), + [262] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5331), + [sym_block] = STATE(5333), + [sym__expression_parenthesized] = STATE(5333), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5333), + [sym_comment] = STATE(262), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112248,13 +114663,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112262,10 +114677,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112286,40 +114701,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [264] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5104), - [sym_block] = STATE(5105), - [sym__expression_parenthesized] = STATE(5105), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5105), - [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(1173), + [263] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5331), + [sym_block] = STATE(5333), + [sym__expression_parenthesized] = STATE(5333), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5333), + [sym_comment] = STATE(263), + [aux_sym_shebang_repeat1] = STATE(269), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112360,13 +114775,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112374,10 +114789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112398,40 +114813,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [265] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5014), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5015), - [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(271), + [264] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5335), + [sym_block] = STATE(5336), + [sym__expression_parenthesized] = STATE(5336), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5336), + [sym_comment] = STATE(264), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112472,13 +114887,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112486,10 +114901,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112510,40 +114925,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [266] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5104), - [sym_block] = STATE(5105), - [sym__expression_parenthesized] = STATE(5105), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5105), - [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(273), + [265] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5335), + [sym_block] = STATE(5336), + [sym__expression_parenthesized] = STATE(5336), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5336), + [sym_comment] = STATE(265), + [aux_sym_shebang_repeat1] = STATE(270), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112584,13 +114999,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112598,10 +115013,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112622,40 +115037,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [267] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5107), - [sym_block] = STATE(5108), - [sym__expression_parenthesized] = STATE(5108), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5108), - [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(285), + [266] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5338), + [sym_block] = STATE(5340), + [sym__expression_parenthesized] = STATE(5340), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5340), + [sym_comment] = STATE(266), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112696,13 +115111,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112710,10 +115125,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112734,40 +115149,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [268] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5119), - [sym__expression_parenthesized] = STATE(5119), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5119), - [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(1173), + [267] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5338), + [sym_block] = STATE(5340), + [sym__expression_parenthesized] = STATE(5340), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5340), + [sym_comment] = STATE(267), + [aux_sym_shebang_repeat1] = STATE(272), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112808,13 +115223,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112822,10 +115237,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112846,40 +115261,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [269] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5134), - [sym_block] = STATE(5135), - [sym__expression_parenthesized] = STATE(5135), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5135), - [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(1173), + [268] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5345), + [sym_block] = STATE(5346), + [sym__expression_parenthesized] = STATE(5346), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5346), + [sym_comment] = STATE(268), + [aux_sym_shebang_repeat1] = STATE(274), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -112920,13 +115335,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112934,10 +115349,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -112958,40 +115373,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [270] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5121), - [sym__expression_parenthesized] = STATE(5121), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5121), - [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(1173), + [269] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5455), + [sym_block] = STATE(5456), + [sym__expression_parenthesized] = STATE(5456), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5456), + [sym_comment] = STATE(269), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113032,13 +115447,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113046,10 +115461,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113070,40 +115485,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [271] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5073), - [sym_block] = STATE(5074), - [sym__expression_parenthesized] = STATE(5074), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5074), - [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(1173), + [270] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5457), + [sym_block] = STATE(5458), + [sym__expression_parenthesized] = STATE(5458), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5458), + [sym_comment] = STATE(270), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113144,13 +115559,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113158,10 +115573,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113182,40 +115597,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [272] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5121), - [sym__expression_parenthesized] = STATE(5121), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5121), - [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(294), + [271] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5457), + [sym_block] = STATE(5458), + [sym__expression_parenthesized] = STATE(5458), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5458), + [sym_comment] = STATE(271), + [aux_sym_shebang_repeat1] = STATE(276), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113256,13 +115671,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113270,10 +115685,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113294,40 +115709,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [273] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5123), - [sym__expression_parenthesized] = STATE(5123), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5123), - [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(1173), + [272] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5461), + [sym_block] = STATE(5462), + [sym__expression_parenthesized] = STATE(5462), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5462), + [sym_comment] = STATE(272), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113368,13 +115783,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113382,10 +115797,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113406,40 +115821,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [274] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5073), - [sym_block] = STATE(5074), - [sym__expression_parenthesized] = STATE(5074), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5074), - [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(278), + [273] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5461), + [sym_block] = STATE(5462), + [sym__expression_parenthesized] = STATE(5462), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5462), + [sym_comment] = STATE(273), + [aux_sym_shebang_repeat1] = STATE(277), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113480,13 +115895,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113494,10 +115909,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113518,40 +115933,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [275] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(5076), - [sym__expression_parenthesized] = STATE(5076), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5076), - [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(283), + [274] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5463), + [sym_block] = STATE(5464), + [sym__expression_parenthesized] = STATE(5464), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5464), + [sym_comment] = STATE(274), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113592,13 +116007,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113606,10 +116021,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113630,40 +116045,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [276] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5123), - [sym__expression_parenthesized] = STATE(5123), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5123), - [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(300), + [275] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5463), + [sym_block] = STATE(5464), + [sym__expression_parenthesized] = STATE(5464), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5464), + [sym_comment] = STATE(275), + [aux_sym_shebang_repeat1] = STATE(278), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113704,13 +116119,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113718,10 +116133,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113742,40 +116157,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [277] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5077), - [sym_block] = STATE(5078), - [sym__expression_parenthesized] = STATE(5078), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5078), - [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(286), + [276] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5361), + [sym_block] = STATE(5378), + [sym__expression_parenthesized] = STATE(5378), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5378), + [sym_comment] = STATE(276), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113816,13 +116231,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113830,10 +116245,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113854,40 +116269,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [278] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5098), - [sym_block] = STATE(5099), - [sym__expression_parenthesized] = STATE(5099), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5099), - [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(1173), + [277] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5313), + [sym_block] = STATE(5433), + [sym__expression_parenthesized] = STATE(5433), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5433), + [sym_comment] = STATE(277), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -113928,13 +116343,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113942,10 +116357,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -113966,152 +116381,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [279] = { - [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(7385), - [aux_sym__parenthesized_body_repeat1] = STATE(279), - [anon_sym_export] = ACTIONS(1531), - [anon_sym_alias] = ACTIONS(1531), - [anon_sym_let] = ACTIONS(1531), - [anon_sym_let_DASHenv] = ACTIONS(1531), - [anon_sym_mut] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [aux_sym_cmd_identifier_token1] = ACTIONS(1531), - [aux_sym_cmd_identifier_token2] = ACTIONS(1533), - [aux_sym_cmd_identifier_token3] = ACTIONS(1533), - [aux_sym_cmd_identifier_token4] = ACTIONS(1533), - [aux_sym_cmd_identifier_token5] = ACTIONS(1533), - [aux_sym_cmd_identifier_token6] = ACTIONS(1533), - [aux_sym_cmd_identifier_token7] = ACTIONS(1533), - [aux_sym_cmd_identifier_token8] = ACTIONS(1531), - [aux_sym_cmd_identifier_token9] = ACTIONS(1531), - [aux_sym_cmd_identifier_token10] = ACTIONS(1533), - [aux_sym_cmd_identifier_token11] = ACTIONS(1533), - [aux_sym_cmd_identifier_token12] = ACTIONS(1531), - [aux_sym_cmd_identifier_token13] = ACTIONS(1531), - [aux_sym_cmd_identifier_token14] = ACTIONS(1531), - [aux_sym_cmd_identifier_token15] = ACTIONS(1531), - [aux_sym_cmd_identifier_token16] = ACTIONS(1533), - [aux_sym_cmd_identifier_token17] = ACTIONS(1533), - [aux_sym_cmd_identifier_token18] = ACTIONS(1531), - [aux_sym_cmd_identifier_token19] = ACTIONS(1533), - [aux_sym_cmd_identifier_token20] = ACTIONS(1533), - [aux_sym_cmd_identifier_token21] = ACTIONS(1533), - [aux_sym_cmd_identifier_token22] = ACTIONS(1533), - [aux_sym_cmd_identifier_token23] = ACTIONS(1533), - [aux_sym_cmd_identifier_token24] = ACTIONS(1533), - [aux_sym_cmd_identifier_token25] = ACTIONS(1533), - [aux_sym_cmd_identifier_token26] = ACTIONS(1533), - [aux_sym_cmd_identifier_token27] = ACTIONS(1533), - [aux_sym_cmd_identifier_token28] = ACTIONS(1533), - [aux_sym_cmd_identifier_token29] = ACTIONS(1533), - [aux_sym_cmd_identifier_token30] = ACTIONS(1533), - [aux_sym_cmd_identifier_token31] = ACTIONS(1533), - [aux_sym_cmd_identifier_token32] = ACTIONS(1531), - [aux_sym_cmd_identifier_token33] = ACTIONS(1533), - [aux_sym_cmd_identifier_token34] = ACTIONS(1531), - [aux_sym_cmd_identifier_token35] = ACTIONS(1533), - [aux_sym_cmd_identifier_token36] = ACTIONS(1533), - [aux_sym_cmd_identifier_token37] = ACTIONS(1533), - [aux_sym_cmd_identifier_token38] = ACTIONS(1531), - [aux_sym_cmd_identifier_token39] = ACTIONS(1533), - [aux_sym_cmd_identifier_token40] = ACTIONS(1533), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1531), - [anon_sym_export_DASHenv] = ACTIONS(1531), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_module] = ACTIONS(1531), - [anon_sym_use] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_error] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_loop] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_try] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_source] = ACTIONS(1531), - [anon_sym_source_DASHenv] = ACTIONS(1531), - [anon_sym_register] = ACTIONS(1531), - [anon_sym_hide] = ACTIONS(1531), - [anon_sym_hide_DASHenv] = ACTIONS(1531), - [anon_sym_overlay] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(1533), - [aux_sym_expr_unary_token1] = ACTIONS(1533), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT] = ACTIONS(1533), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [aux_sym__val_number_decimal_token1] = ACTIONS(1531), - [aux_sym__val_number_decimal_token2] = ACTIONS(1533), - [aux_sym__val_number_decimal_token3] = ACTIONS(1533), - [aux_sym__val_number_decimal_token4] = ACTIONS(1533), - [aux_sym__val_number_token1] = ACTIONS(1533), - [aux_sym__val_number_token2] = ACTIONS(1533), - [aux_sym__val_number_token3] = ACTIONS(1533), - [aux_sym__val_number_token4] = ACTIONS(1531), - [aux_sym__val_number_token5] = ACTIONS(1531), - [aux_sym__val_number_token6] = ACTIONS(1531), - [anon_sym_0b] = ACTIONS(1531), - [anon_sym_0o] = ACTIONS(1531), - [anon_sym_0x] = ACTIONS(1531), - [sym_val_date] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [sym__str_single_quotes] = ACTIONS(1533), - [sym__str_back_ticks] = ACTIONS(1533), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1533), - [aux_sym_env_var_token1] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1533), - [aux_sym_command_token1] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1533), - }, - [280] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5098), - [sym_block] = STATE(5099), - [sym__expression_parenthesized] = STATE(5099), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5099), - [sym_comment] = STATE(280), - [aux_sym_shebang_repeat1] = STATE(290), + [278] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5400), + [sym_block] = STATE(5315), + [sym__expression_parenthesized] = STATE(5315), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5315), + [sym_comment] = STATE(278), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -114152,13 +116455,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114166,10 +116469,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -114190,264 +116493,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [281] = { - [sym_comment] = STATE(281), - [anon_sym_export] = ACTIONS(1300), - [anon_sym_alias] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_let_DASHenv] = ACTIONS(1300), - [anon_sym_mut] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [aux_sym_cmd_identifier_token1] = ACTIONS(1300), - [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(1300), - [aux_sym_cmd_identifier_token9] = ACTIONS(1300), - [aux_sym_cmd_identifier_token10] = ACTIONS(1303), - [aux_sym_cmd_identifier_token11] = ACTIONS(1303), - [aux_sym_cmd_identifier_token12] = ACTIONS(1300), - [aux_sym_cmd_identifier_token13] = ACTIONS(1300), - [aux_sym_cmd_identifier_token14] = ACTIONS(1300), - [aux_sym_cmd_identifier_token15] = ACTIONS(1300), - [aux_sym_cmd_identifier_token16] = ACTIONS(1303), - [aux_sym_cmd_identifier_token17] = ACTIONS(1303), - [aux_sym_cmd_identifier_token18] = ACTIONS(1300), - [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(1300), - [aux_sym_cmd_identifier_token33] = ACTIONS(1303), - [aux_sym_cmd_identifier_token34] = ACTIONS(1300), - [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(1300), - [aux_sym_cmd_identifier_token39] = ACTIONS(1303), - [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_def] = ACTIONS(1300), - [anon_sym_export_DASHenv] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_module] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_error] = ACTIONS(1300), - [anon_sym_DASH2] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_source] = ACTIONS(1300), - [anon_sym_source_DASHenv] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_hide] = ACTIONS(1300), - [anon_sym_hide_DASHenv] = ACTIONS(1300), - [anon_sym_overlay] = ACTIONS(1300), - [anon_sym_where] = ACTIONS(1303), - [aux_sym_expr_unary_token1] = ACTIONS(1303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1303), - [anon_sym_DOT_DOT_LT] = ACTIONS(1303), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym__val_number_decimal_token1] = ACTIONS(1300), - [aux_sym__val_number_decimal_token2] = ACTIONS(1303), - [aux_sym__val_number_decimal_token3] = ACTIONS(1303), - [aux_sym__val_number_decimal_token4] = ACTIONS(1303), - [aux_sym__val_number_token1] = ACTIONS(1303), - [aux_sym__val_number_token2] = ACTIONS(1303), - [aux_sym__val_number_token3] = ACTIONS(1303), - [aux_sym__val_number_token4] = ACTIONS(1300), - [aux_sym__val_number_token5] = ACTIONS(1300), - [aux_sym__val_number_token6] = ACTIONS(1300), - [anon_sym_0b] = ACTIONS(1300), - [anon_sym_0o] = ACTIONS(1300), - [anon_sym_0x] = ACTIONS(1300), - [sym_val_date] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym__str_single_quotes] = ACTIONS(1303), - [sym__str_back_ticks] = ACTIONS(1303), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1303), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1303), - [aux_sym_env_var_token1] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1303), - [aux_sym_command_token1] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1303), - }, - [282] = { - [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(282), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [aux_sym_cmd_identifier_token1] = ACTIONS(1312), - [aux_sym_cmd_identifier_token2] = ACTIONS(1314), - [aux_sym_cmd_identifier_token3] = ACTIONS(1314), - [aux_sym_cmd_identifier_token4] = ACTIONS(1314), - [aux_sym_cmd_identifier_token5] = ACTIONS(1314), - [aux_sym_cmd_identifier_token6] = ACTIONS(1314), - [aux_sym_cmd_identifier_token7] = ACTIONS(1314), - [aux_sym_cmd_identifier_token8] = ACTIONS(1312), - [aux_sym_cmd_identifier_token9] = ACTIONS(1312), - [aux_sym_cmd_identifier_token10] = ACTIONS(1314), - [aux_sym_cmd_identifier_token11] = ACTIONS(1314), - [aux_sym_cmd_identifier_token12] = ACTIONS(1312), - [aux_sym_cmd_identifier_token13] = ACTIONS(1312), - [aux_sym_cmd_identifier_token14] = ACTIONS(1312), - [aux_sym_cmd_identifier_token15] = ACTIONS(1312), - [aux_sym_cmd_identifier_token16] = ACTIONS(1314), - [aux_sym_cmd_identifier_token17] = ACTIONS(1314), - [aux_sym_cmd_identifier_token18] = ACTIONS(1312), - [aux_sym_cmd_identifier_token19] = ACTIONS(1314), - [aux_sym_cmd_identifier_token20] = ACTIONS(1314), - [aux_sym_cmd_identifier_token21] = ACTIONS(1314), - [aux_sym_cmd_identifier_token22] = ACTIONS(1314), - [aux_sym_cmd_identifier_token23] = ACTIONS(1314), - [aux_sym_cmd_identifier_token24] = ACTIONS(1314), - [aux_sym_cmd_identifier_token25] = ACTIONS(1314), - [aux_sym_cmd_identifier_token26] = ACTIONS(1314), - [aux_sym_cmd_identifier_token27] = ACTIONS(1314), - [aux_sym_cmd_identifier_token28] = ACTIONS(1314), - [aux_sym_cmd_identifier_token29] = ACTIONS(1314), - [aux_sym_cmd_identifier_token30] = ACTIONS(1314), - [aux_sym_cmd_identifier_token31] = ACTIONS(1314), - [aux_sym_cmd_identifier_token32] = ACTIONS(1312), - [aux_sym_cmd_identifier_token33] = ACTIONS(1314), - [aux_sym_cmd_identifier_token34] = ACTIONS(1312), - [aux_sym_cmd_identifier_token35] = ACTIONS(1314), - [aux_sym_cmd_identifier_token36] = ACTIONS(1314), - [aux_sym_cmd_identifier_token37] = ACTIONS(1314), - [aux_sym_cmd_identifier_token38] = ACTIONS(1312), - [aux_sym_cmd_identifier_token39] = ACTIONS(1314), - [aux_sym_cmd_identifier_token40] = ACTIONS(1314), - [sym__newline] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_DASH2] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1314), - [aux_sym_expr_unary_token1] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1314), - [anon_sym_DOT_DOT_LT] = ACTIONS(1314), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_decimal_token4] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [aux_sym_env_var_token1] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1314), - [aux_sym_command_token1] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1314), - }, - [283] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5101), - [sym_block] = STATE(5102), - [sym__expression_parenthesized] = STATE(5102), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5102), - [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(1173), + [279] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5400), + [sym_block] = STATE(5315), + [sym__expression_parenthesized] = STATE(5315), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5315), + [sym_comment] = STATE(279), + [aux_sym_shebang_repeat1] = STATE(280), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -114488,13 +116567,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114502,10 +116581,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -114526,40 +116605,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [284] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5101), - [sym_block] = STATE(5102), - [sym__expression_parenthesized] = STATE(5102), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5102), - [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(292), + [280] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5405), + [sym_block] = STATE(5430), + [sym__expression_parenthesized] = STATE(5430), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5430), + [sym_comment] = STATE(280), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -114600,13 +116679,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114614,10 +116693,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -114638,40 +116717,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [285] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5125), - [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(1173), + [281] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5331), + [sym_block] = STATE(5333), + [sym__expression_parenthesized] = STATE(5333), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5333), + [sym_comment] = STATE(281), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -114712,13 +116791,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114726,10 +116805,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -114750,40 +116829,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [286] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5104), - [sym_block] = STATE(5105), - [sym__expression_parenthesized] = STATE(5105), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5105), - [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(1173), + [282] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5331), + [sym_block] = STATE(5333), + [sym__expression_parenthesized] = STATE(5333), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5333), + [sym_comment] = STATE(282), + [aux_sym_shebang_repeat1] = STATE(289), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -114824,13 +116903,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114838,10 +116917,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -114862,40 +116941,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [287] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5104), - [sym_block] = STATE(5105), - [sym__expression_parenthesized] = STATE(5105), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5105), - [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(225), + [283] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5335), + [sym_block] = STATE(5336), + [sym__expression_parenthesized] = STATE(5336), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5336), + [sym_comment] = STATE(283), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -114936,13 +117015,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114950,10 +117029,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -114974,152 +117053,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [288] = { - [sym_comment] = STATE(288), - [aux_sym__block_body_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(1421), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_alias] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_let_DASHenv] = ACTIONS(1417), - [anon_sym_mut] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [aux_sym_cmd_identifier_token1] = ACTIONS(1417), - [aux_sym_cmd_identifier_token2] = ACTIONS(1419), - [aux_sym_cmd_identifier_token3] = ACTIONS(1419), - [aux_sym_cmd_identifier_token4] = ACTIONS(1419), - [aux_sym_cmd_identifier_token5] = ACTIONS(1419), - [aux_sym_cmd_identifier_token6] = ACTIONS(1419), - [aux_sym_cmd_identifier_token7] = ACTIONS(1419), - [aux_sym_cmd_identifier_token8] = ACTIONS(1417), - [aux_sym_cmd_identifier_token9] = ACTIONS(1417), - [aux_sym_cmd_identifier_token10] = ACTIONS(1419), - [aux_sym_cmd_identifier_token11] = ACTIONS(1419), - [aux_sym_cmd_identifier_token12] = ACTIONS(1417), - [aux_sym_cmd_identifier_token13] = ACTIONS(1417), - [aux_sym_cmd_identifier_token14] = ACTIONS(1417), - [aux_sym_cmd_identifier_token15] = ACTIONS(1417), - [aux_sym_cmd_identifier_token16] = ACTIONS(1419), - [aux_sym_cmd_identifier_token17] = ACTIONS(1419), - [aux_sym_cmd_identifier_token18] = ACTIONS(1417), - [aux_sym_cmd_identifier_token19] = ACTIONS(1419), - [aux_sym_cmd_identifier_token20] = ACTIONS(1419), - [aux_sym_cmd_identifier_token21] = ACTIONS(1419), - [aux_sym_cmd_identifier_token22] = ACTIONS(1419), - [aux_sym_cmd_identifier_token23] = ACTIONS(1419), - [aux_sym_cmd_identifier_token24] = ACTIONS(1419), - [aux_sym_cmd_identifier_token25] = ACTIONS(1419), - [aux_sym_cmd_identifier_token26] = ACTIONS(1419), - [aux_sym_cmd_identifier_token27] = ACTIONS(1419), - [aux_sym_cmd_identifier_token28] = ACTIONS(1419), - [aux_sym_cmd_identifier_token29] = ACTIONS(1419), - [aux_sym_cmd_identifier_token30] = ACTIONS(1419), - [aux_sym_cmd_identifier_token31] = ACTIONS(1419), - [aux_sym_cmd_identifier_token32] = ACTIONS(1417), - [aux_sym_cmd_identifier_token33] = ACTIONS(1419), - [aux_sym_cmd_identifier_token34] = ACTIONS(1417), - [aux_sym_cmd_identifier_token35] = ACTIONS(1419), - [aux_sym_cmd_identifier_token36] = ACTIONS(1419), - [aux_sym_cmd_identifier_token37] = ACTIONS(1419), - [aux_sym_cmd_identifier_token38] = ACTIONS(1417), - [aux_sym_cmd_identifier_token39] = ACTIONS(1419), - [aux_sym_cmd_identifier_token40] = ACTIONS(1419), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1417), - [anon_sym_export_DASHenv] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_error] = ACTIONS(1417), - [anon_sym_DASH2] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_source] = ACTIONS(1417), - [anon_sym_source_DASHenv] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_hide] = ACTIONS(1417), - [anon_sym_hide_DASHenv] = ACTIONS(1417), - [anon_sym_overlay] = ACTIONS(1417), - [anon_sym_where] = ACTIONS(1419), - [aux_sym_expr_unary_token1] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_DOT_DOT_LT] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [aux_sym__val_number_decimal_token1] = ACTIONS(1417), - [aux_sym__val_number_decimal_token2] = ACTIONS(1419), - [aux_sym__val_number_decimal_token3] = ACTIONS(1419), - [aux_sym__val_number_decimal_token4] = ACTIONS(1419), - [aux_sym__val_number_token1] = ACTIONS(1419), - [aux_sym__val_number_token2] = ACTIONS(1419), - [aux_sym__val_number_token3] = ACTIONS(1419), - [aux_sym__val_number_token4] = ACTIONS(1417), - [aux_sym__val_number_token5] = ACTIONS(1417), - [aux_sym__val_number_token6] = ACTIONS(1417), - [anon_sym_0b] = ACTIONS(1417), - [anon_sym_0o] = ACTIONS(1417), - [anon_sym_0x] = ACTIONS(1417), - [sym_val_date] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym__str_single_quotes] = ACTIONS(1419), - [sym__str_back_ticks] = ACTIONS(1419), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), - [aux_sym_env_var_token1] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [aux_sym_command_token1] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1419), - }, - [289] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5107), - [sym_block] = STATE(5108), - [sym__expression_parenthesized] = STATE(5108), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5108), - [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(296), + [284] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5335), + [sym_block] = STATE(5336), + [sym__expression_parenthesized] = STATE(5336), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5336), + [sym_comment] = STATE(284), + [aux_sym_shebang_repeat1] = STATE(290), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115160,13 +117127,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115174,10 +117141,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115198,40 +117165,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [290] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5118), - [sym_block] = STATE(5119), - [sym__expression_parenthesized] = STATE(5119), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5119), - [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(1173), + [285] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5338), + [sym_block] = STATE(5340), + [sym__expression_parenthesized] = STATE(5340), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5340), + [sym_comment] = STATE(285), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115272,13 +117239,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115286,10 +117253,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115310,40 +117277,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [291] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5125), - [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(303), + [286] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5338), + [sym_block] = STATE(5340), + [sym__expression_parenthesized] = STATE(5340), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5340), + [sym_comment] = STATE(286), + [aux_sym_shebang_repeat1] = STATE(292), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115384,13 +117351,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115398,10 +117365,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115422,40 +117389,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [292] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5121), - [sym__expression_parenthesized] = STATE(5121), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5121), - [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(1173), + [287] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5345), + [sym_block] = STATE(5346), + [sym__expression_parenthesized] = STATE(5346), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5346), + [sym_comment] = STATE(287), + [aux_sym_shebang_repeat1] = STATE(294), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115496,13 +117463,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115510,10 +117477,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115534,40 +117501,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [293] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5120), - [sym_block] = STATE(5121), - [sym__expression_parenthesized] = STATE(5121), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5121), - [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(299), + [288] = { + [sym_comment] = STATE(288), + [aux_sym_shebang_repeat1] = STATE(311), + [aux_sym__parenthesized_body_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_alias] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_let_DASHenv] = ACTIONS(1532), + [anon_sym_mut] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [aux_sym_cmd_identifier_token1] = ACTIONS(1532), + [aux_sym_cmd_identifier_token2] = ACTIONS(1534), + [aux_sym_cmd_identifier_token3] = ACTIONS(1534), + [aux_sym_cmd_identifier_token4] = ACTIONS(1534), + [aux_sym_cmd_identifier_token5] = ACTIONS(1534), + [aux_sym_cmd_identifier_token6] = ACTIONS(1534), + [aux_sym_cmd_identifier_token7] = ACTIONS(1534), + [aux_sym_cmd_identifier_token8] = ACTIONS(1532), + [aux_sym_cmd_identifier_token9] = ACTIONS(1532), + [aux_sym_cmd_identifier_token10] = ACTIONS(1534), + [aux_sym_cmd_identifier_token11] = ACTIONS(1534), + [aux_sym_cmd_identifier_token12] = ACTIONS(1532), + [aux_sym_cmd_identifier_token13] = ACTIONS(1532), + [aux_sym_cmd_identifier_token14] = ACTIONS(1532), + [aux_sym_cmd_identifier_token15] = ACTIONS(1532), + [aux_sym_cmd_identifier_token16] = ACTIONS(1534), + [aux_sym_cmd_identifier_token17] = ACTIONS(1534), + [aux_sym_cmd_identifier_token18] = ACTIONS(1532), + [aux_sym_cmd_identifier_token19] = ACTIONS(1534), + [aux_sym_cmd_identifier_token20] = ACTIONS(1534), + [aux_sym_cmd_identifier_token21] = ACTIONS(1534), + [aux_sym_cmd_identifier_token22] = ACTIONS(1534), + [aux_sym_cmd_identifier_token23] = ACTIONS(1534), + [aux_sym_cmd_identifier_token24] = ACTIONS(1534), + [aux_sym_cmd_identifier_token25] = ACTIONS(1534), + [aux_sym_cmd_identifier_token26] = ACTIONS(1534), + [aux_sym_cmd_identifier_token27] = ACTIONS(1534), + [aux_sym_cmd_identifier_token28] = ACTIONS(1534), + [aux_sym_cmd_identifier_token29] = ACTIONS(1534), + [aux_sym_cmd_identifier_token30] = ACTIONS(1534), + [aux_sym_cmd_identifier_token31] = ACTIONS(1534), + [aux_sym_cmd_identifier_token32] = ACTIONS(1532), + [aux_sym_cmd_identifier_token33] = ACTIONS(1534), + [aux_sym_cmd_identifier_token34] = ACTIONS(1532), + [aux_sym_cmd_identifier_token35] = ACTIONS(1534), + [aux_sym_cmd_identifier_token36] = ACTIONS(1534), + [aux_sym_cmd_identifier_token37] = ACTIONS(1534), + [aux_sym_cmd_identifier_token38] = ACTIONS(1532), + [aux_sym_cmd_identifier_token39] = ACTIONS(1534), + [aux_sym_cmd_identifier_token40] = ACTIONS(1534), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1532), + [anon_sym_export_DASHenv] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_error] = ACTIONS(1532), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_do] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_try] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_source] = ACTIONS(1532), + [anon_sym_source_DASHenv] = ACTIONS(1532), + [anon_sym_register] = ACTIONS(1532), + [anon_sym_hide] = ACTIONS(1532), + [anon_sym_hide_DASHenv] = ACTIONS(1532), + [anon_sym_overlay] = ACTIONS(1532), + [anon_sym_where] = ACTIONS(1534), + [aux_sym_expr_unary_token1] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1534), + [anon_sym_DOT_DOT_LT] = ACTIONS(1534), + [anon_sym_null] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [aux_sym__val_number_decimal_token1] = ACTIONS(1532), + [aux_sym__val_number_decimal_token2] = ACTIONS(1534), + [aux_sym__val_number_decimal_token3] = ACTIONS(1534), + [aux_sym__val_number_decimal_token4] = ACTIONS(1534), + [aux_sym__val_number_token1] = ACTIONS(1534), + [aux_sym__val_number_token2] = ACTIONS(1534), + [aux_sym__val_number_token3] = ACTIONS(1534), + [aux_sym__val_number_token4] = ACTIONS(1532), + [aux_sym__val_number_token5] = ACTIONS(1532), + [aux_sym__val_number_token6] = ACTIONS(1532), + [anon_sym_0b] = ACTIONS(1532), + [anon_sym_0o] = ACTIONS(1532), + [anon_sym_0x] = ACTIONS(1532), + [sym_val_date] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [sym__str_single_quotes] = ACTIONS(1534), + [sym__str_back_ticks] = ACTIONS(1534), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1534), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1534), + [aux_sym_env_var_token1] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1534), + [aux_sym_command_token1] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1534), + }, + [289] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5455), + [sym_block] = STATE(5456), + [sym__expression_parenthesized] = STATE(5456), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5456), + [sym_comment] = STATE(289), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115608,13 +117687,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115622,10 +117701,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115646,40 +117725,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [294] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5127), - [sym_block] = STATE(5128), - [sym__expression_parenthesized] = STATE(5128), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5128), - [sym_comment] = STATE(294), - [aux_sym_shebang_repeat1] = STATE(1173), + [290] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5457), + [sym_block] = STATE(5458), + [sym__expression_parenthesized] = STATE(5458), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5458), + [sym_comment] = STATE(290), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115720,13 +117799,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115734,10 +117813,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115758,40 +117837,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [295] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(5123), - [sym__expression_parenthesized] = STATE(5123), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5123), - [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(301), + [291] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5457), + [sym_block] = STATE(5458), + [sym__expression_parenthesized] = STATE(5458), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5458), + [sym_comment] = STATE(291), + [aux_sym_shebang_repeat1] = STATE(296), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115832,13 +117911,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115846,10 +117925,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115870,40 +117949,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [296] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5125), - [sym_comment] = STATE(296), - [aux_sym_shebang_repeat1] = STATE(1173), + [292] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5461), + [sym_block] = STATE(5462), + [sym__expression_parenthesized] = STATE(5462), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5462), + [sym_comment] = STATE(292), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -115944,13 +118023,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115958,10 +118037,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -115982,40 +118061,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [297] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5014), - [sym_block] = STATE(5015), - [sym__expression_parenthesized] = STATE(5015), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5015), - [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(305), + [293] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5461), + [sym_block] = STATE(5462), + [sym__expression_parenthesized] = STATE(5462), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5462), + [sym_comment] = STATE(293), + [aux_sym_shebang_repeat1] = STATE(297), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116056,13 +118135,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116070,10 +118149,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116094,40 +118173,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [298] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5124), - [sym_block] = STATE(5125), - [sym__expression_parenthesized] = STATE(5125), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5125), - [sym_comment] = STATE(298), - [aux_sym_shebang_repeat1] = STATE(302), + [294] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5463), + [sym_block] = STATE(5464), + [sym__expression_parenthesized] = STATE(5464), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5464), + [sym_comment] = STATE(294), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116168,13 +118247,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116182,10 +118261,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116206,40 +118285,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [299] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5127), - [sym_block] = STATE(5128), - [sym__expression_parenthesized] = STATE(5128), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5128), - [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(1173), + [295] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5463), + [sym_block] = STATE(5464), + [sym__expression_parenthesized] = STATE(5464), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5464), + [sym_comment] = STATE(295), + [aux_sym_shebang_repeat1] = STATE(298), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116280,13 +118359,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116294,10 +118373,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116318,40 +118397,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [300] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5129), - [sym_block] = STATE(5130), - [sym__expression_parenthesized] = STATE(5130), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5130), - [sym_comment] = STATE(300), - [aux_sym_shebang_repeat1] = STATE(1173), + [296] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5361), + [sym_block] = STATE(5378), + [sym__expression_parenthesized] = STATE(5378), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5378), + [sym_comment] = STATE(296), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116392,13 +118471,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116406,10 +118485,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116430,40 +118509,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [301] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5129), - [sym_block] = STATE(5130), - [sym__expression_parenthesized] = STATE(5130), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5130), - [sym_comment] = STATE(301), - [aux_sym_shebang_repeat1] = STATE(1173), + [297] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5313), + [sym_block] = STATE(5433), + [sym__expression_parenthesized] = STATE(5433), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5433), + [sym_comment] = STATE(297), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116504,13 +118583,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116518,10 +118597,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116542,40 +118621,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [302] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5132), - [sym__expression_parenthesized] = STATE(5132), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5132), - [sym_comment] = STATE(302), - [aux_sym_shebang_repeat1] = STATE(1173), + [298] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5400), + [sym_block] = STATE(5315), + [sym__expression_parenthesized] = STATE(5315), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5315), + [sym_comment] = STATE(298), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116616,13 +118695,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116630,10 +118709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116654,40 +118733,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [303] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5132), - [sym__expression_parenthesized] = STATE(5132), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5132), - [sym_comment] = STATE(303), - [aux_sym_shebang_repeat1] = STATE(1173), + [299] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5400), + [sym_block] = STATE(5315), + [sym__expression_parenthesized] = STATE(5315), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5315), + [sym_comment] = STATE(299), + [aux_sym_shebang_repeat1] = STATE(300), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116728,13 +118807,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116742,10 +118821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116766,40 +118845,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [304] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5131), - [sym_block] = STATE(5132), - [sym__expression_parenthesized] = STATE(5132), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5132), - [sym_comment] = STATE(304), - [aux_sym_shebang_repeat1] = STATE(269), + [300] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5405), + [sym_block] = STATE(5430), + [sym__expression_parenthesized] = STATE(5430), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5430), + [sym_comment] = STATE(300), + [aux_sym_shebang_repeat1] = STATE(1170), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116840,13 +118919,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116854,10 +118933,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116878,40 +118957,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [305] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if_parenthesized] = STATE(5073), - [sym_block] = STATE(5074), - [sym__expression_parenthesized] = STATE(5074), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3912), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(5074), - [sym_comment] = STATE(305), - [aux_sym_shebang_repeat1] = STATE(1173), + [301] = { + [sym_comment] = STATE(301), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), + [aux_sym_cmd_identifier_token2] = ACTIONS(1306), + [aux_sym_cmd_identifier_token3] = ACTIONS(1306), + [aux_sym_cmd_identifier_token4] = ACTIONS(1306), + [aux_sym_cmd_identifier_token5] = ACTIONS(1306), + [aux_sym_cmd_identifier_token6] = ACTIONS(1306), + [aux_sym_cmd_identifier_token7] = ACTIONS(1306), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), + [aux_sym_cmd_identifier_token10] = ACTIONS(1306), + [aux_sym_cmd_identifier_token11] = ACTIONS(1306), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), + [aux_sym_cmd_identifier_token16] = ACTIONS(1306), + [aux_sym_cmd_identifier_token17] = ACTIONS(1306), + [aux_sym_cmd_identifier_token18] = ACTIONS(1522), + [aux_sym_cmd_identifier_token19] = ACTIONS(1306), + [aux_sym_cmd_identifier_token20] = ACTIONS(1306), + [aux_sym_cmd_identifier_token21] = ACTIONS(1306), + [aux_sym_cmd_identifier_token22] = ACTIONS(1306), + [aux_sym_cmd_identifier_token23] = ACTIONS(1306), + [aux_sym_cmd_identifier_token24] = ACTIONS(1306), + [aux_sym_cmd_identifier_token25] = ACTIONS(1306), + [aux_sym_cmd_identifier_token26] = ACTIONS(1306), + [aux_sym_cmd_identifier_token27] = ACTIONS(1306), + [aux_sym_cmd_identifier_token28] = ACTIONS(1306), + [aux_sym_cmd_identifier_token29] = ACTIONS(1306), + [aux_sym_cmd_identifier_token30] = ACTIONS(1306), + [aux_sym_cmd_identifier_token31] = ACTIONS(1306), + [aux_sym_cmd_identifier_token32] = ACTIONS(1522), + [aux_sym_cmd_identifier_token33] = ACTIONS(1306), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), + [aux_sym_cmd_identifier_token35] = ACTIONS(1306), + [aux_sym_cmd_identifier_token36] = ACTIONS(1306), + [aux_sym_cmd_identifier_token37] = ACTIONS(1306), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), + [aux_sym_cmd_identifier_token39] = ACTIONS(1306), + [aux_sym_cmd_identifier_token40] = ACTIONS(1306), + [sym__newline] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), + [anon_sym_where] = ACTIONS(1306), + [aux_sym_expr_unary_token1] = ACTIONS(1306), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), + [anon_sym_DOT_DOT_LT] = ACTIONS(1306), + [anon_sym_null] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), + [aux_sym__val_number_decimal_token2] = ACTIONS(1306), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_token1] = ACTIONS(1306), + [aux_sym__val_number_token2] = ACTIONS(1306), + [aux_sym__val_number_token3] = ACTIONS(1306), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), + [sym_val_date] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym__str_single_quotes] = ACTIONS(1306), + [sym__str_back_ticks] = ACTIONS(1306), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), + [aux_sym_env_var_token1] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1306), + [aux_sym_command_token1] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1306), + }, + [302] = { + [sym_comment] = STATE(302), + [aux_sym__block_body_repeat1] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(1480), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [aux_sym_cmd_identifier_token1] = ACTIONS(1474), + [aux_sym_cmd_identifier_token2] = ACTIONS(1476), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym_cmd_identifier_token6] = ACTIONS(1476), + [aux_sym_cmd_identifier_token7] = ACTIONS(1476), + [aux_sym_cmd_identifier_token8] = ACTIONS(1474), + [aux_sym_cmd_identifier_token9] = ACTIONS(1474), + [aux_sym_cmd_identifier_token10] = ACTIONS(1476), + [aux_sym_cmd_identifier_token11] = ACTIONS(1476), + [aux_sym_cmd_identifier_token12] = ACTIONS(1474), + [aux_sym_cmd_identifier_token13] = ACTIONS(1474), + [aux_sym_cmd_identifier_token14] = ACTIONS(1474), + [aux_sym_cmd_identifier_token15] = ACTIONS(1474), + [aux_sym_cmd_identifier_token16] = ACTIONS(1476), + [aux_sym_cmd_identifier_token17] = ACTIONS(1476), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1476), + [aux_sym_cmd_identifier_token20] = ACTIONS(1476), + [aux_sym_cmd_identifier_token21] = ACTIONS(1476), + [aux_sym_cmd_identifier_token22] = ACTIONS(1476), + [aux_sym_cmd_identifier_token23] = ACTIONS(1476), + [aux_sym_cmd_identifier_token24] = ACTIONS(1476), + [aux_sym_cmd_identifier_token25] = ACTIONS(1476), + [aux_sym_cmd_identifier_token26] = ACTIONS(1476), + [aux_sym_cmd_identifier_token27] = ACTIONS(1476), + [aux_sym_cmd_identifier_token28] = ACTIONS(1476), + [aux_sym_cmd_identifier_token29] = ACTIONS(1476), + [aux_sym_cmd_identifier_token30] = ACTIONS(1476), + [aux_sym_cmd_identifier_token31] = ACTIONS(1476), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1476), + [aux_sym_cmd_identifier_token34] = ACTIONS(1474), + [aux_sym_cmd_identifier_token35] = ACTIONS(1476), + [aux_sym_cmd_identifier_token36] = ACTIONS(1476), + [aux_sym_cmd_identifier_token37] = ACTIONS(1476), + [aux_sym_cmd_identifier_token38] = ACTIONS(1474), + [aux_sym_cmd_identifier_token39] = ACTIONS(1476), + [aux_sym_cmd_identifier_token40] = ACTIONS(1476), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1476), + [aux_sym_expr_unary_token1] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_LT] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1476), + [aux_sym__val_number_decimal_token4] = ACTIONS(1476), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), + [aux_sym_env_var_token1] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1476), + [aux_sym_command_token1] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1476), + }, + [303] = { + [sym_comment] = STATE(303), + [anon_sym_export] = ACTIONS(1296), + [anon_sym_alias] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_let_DASHenv] = ACTIONS(1296), + [anon_sym_mut] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [aux_sym_cmd_identifier_token1] = ACTIONS(1296), + [aux_sym_cmd_identifier_token2] = ACTIONS(1299), + [aux_sym_cmd_identifier_token3] = ACTIONS(1299), + [aux_sym_cmd_identifier_token4] = ACTIONS(1299), + [aux_sym_cmd_identifier_token5] = ACTIONS(1299), + [aux_sym_cmd_identifier_token6] = ACTIONS(1299), + [aux_sym_cmd_identifier_token7] = ACTIONS(1299), + [aux_sym_cmd_identifier_token8] = ACTIONS(1296), + [aux_sym_cmd_identifier_token9] = ACTIONS(1296), + [aux_sym_cmd_identifier_token10] = ACTIONS(1299), + [aux_sym_cmd_identifier_token11] = ACTIONS(1299), + [aux_sym_cmd_identifier_token12] = ACTIONS(1296), + [aux_sym_cmd_identifier_token13] = ACTIONS(1296), + [aux_sym_cmd_identifier_token14] = ACTIONS(1296), + [aux_sym_cmd_identifier_token15] = ACTIONS(1296), + [aux_sym_cmd_identifier_token16] = ACTIONS(1299), + [aux_sym_cmd_identifier_token17] = ACTIONS(1299), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1299), + [aux_sym_cmd_identifier_token20] = ACTIONS(1299), + [aux_sym_cmd_identifier_token21] = ACTIONS(1299), + [aux_sym_cmd_identifier_token22] = ACTIONS(1299), + [aux_sym_cmd_identifier_token23] = ACTIONS(1299), + [aux_sym_cmd_identifier_token24] = ACTIONS(1299), + [aux_sym_cmd_identifier_token25] = ACTIONS(1299), + [aux_sym_cmd_identifier_token26] = ACTIONS(1299), + [aux_sym_cmd_identifier_token27] = ACTIONS(1299), + [aux_sym_cmd_identifier_token28] = ACTIONS(1299), + [aux_sym_cmd_identifier_token29] = ACTIONS(1299), + [aux_sym_cmd_identifier_token30] = ACTIONS(1299), + [aux_sym_cmd_identifier_token31] = ACTIONS(1299), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1299), + [aux_sym_cmd_identifier_token34] = ACTIONS(1296), + [aux_sym_cmd_identifier_token35] = ACTIONS(1299), + [aux_sym_cmd_identifier_token36] = ACTIONS(1299), + [aux_sym_cmd_identifier_token37] = ACTIONS(1299), + [aux_sym_cmd_identifier_token38] = ACTIONS(1296), + [aux_sym_cmd_identifier_token39] = ACTIONS(1299), + [aux_sym_cmd_identifier_token40] = ACTIONS(1299), + [sym__newline] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_def] = ACTIONS(1296), + [anon_sym_export_DASHenv] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_module] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1299), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_error] = ACTIONS(1296), + [anon_sym_DASH2] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1296), + [anon_sym_try] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_source] = ACTIONS(1296), + [anon_sym_source_DASHenv] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_hide] = ACTIONS(1296), + [anon_sym_hide_DASHenv] = ACTIONS(1296), + [anon_sym_overlay] = ACTIONS(1296), + [anon_sym_where] = ACTIONS(1299), + [aux_sym_expr_unary_token1] = ACTIONS(1299), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1299), + [anon_sym_DOT_DOT_LT] = ACTIONS(1299), + [anon_sym_null] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [aux_sym__val_number_decimal_token1] = ACTIONS(1296), + [aux_sym__val_number_decimal_token2] = ACTIONS(1299), + [aux_sym__val_number_decimal_token3] = ACTIONS(1299), + [aux_sym__val_number_decimal_token4] = ACTIONS(1299), + [aux_sym__val_number_token1] = ACTIONS(1299), + [aux_sym__val_number_token2] = ACTIONS(1299), + [aux_sym__val_number_token3] = ACTIONS(1299), + [aux_sym__val_number_token4] = ACTIONS(1296), + [aux_sym__val_number_token5] = ACTIONS(1296), + [aux_sym__val_number_token6] = ACTIONS(1296), + [anon_sym_0b] = ACTIONS(1296), + [anon_sym_0o] = ACTIONS(1296), + [anon_sym_0x] = ACTIONS(1296), + [sym_val_date] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1299), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1299), + [aux_sym_env_var_token1] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1299), + [aux_sym_command_token1] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), + }, + [304] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if_parenthesized] = STATE(5338), + [sym_block] = STATE(5340), + [sym__expression_parenthesized] = STATE(5340), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4164), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5340), + [sym_comment] = STATE(304), + [aux_sym_shebang_repeat1] = STATE(244), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -116952,13 +119367,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(367), [aux_sym_cmd_identifier_token39] = ACTIONS(369), [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1488), + [sym__newline] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116966,10 +119381,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -116990,366 +119405,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [305] = { + [sym_comment] = STATE(305), + [aux_sym__block_body_repeat1] = STATE(217), + [anon_sym_export] = ACTIONS(1474), + [anon_sym_alias] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_let_DASHenv] = ACTIONS(1474), + [anon_sym_mut] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [aux_sym_cmd_identifier_token1] = ACTIONS(1474), + [aux_sym_cmd_identifier_token2] = ACTIONS(1476), + [aux_sym_cmd_identifier_token3] = ACTIONS(1476), + [aux_sym_cmd_identifier_token4] = ACTIONS(1476), + [aux_sym_cmd_identifier_token5] = ACTIONS(1476), + [aux_sym_cmd_identifier_token6] = ACTIONS(1476), + [aux_sym_cmd_identifier_token7] = ACTIONS(1476), + [aux_sym_cmd_identifier_token8] = ACTIONS(1474), + [aux_sym_cmd_identifier_token9] = ACTIONS(1474), + [aux_sym_cmd_identifier_token10] = ACTIONS(1476), + [aux_sym_cmd_identifier_token11] = ACTIONS(1476), + [aux_sym_cmd_identifier_token12] = ACTIONS(1474), + [aux_sym_cmd_identifier_token13] = ACTIONS(1474), + [aux_sym_cmd_identifier_token14] = ACTIONS(1474), + [aux_sym_cmd_identifier_token15] = ACTIONS(1474), + [aux_sym_cmd_identifier_token16] = ACTIONS(1476), + [aux_sym_cmd_identifier_token17] = ACTIONS(1476), + [aux_sym_cmd_identifier_token18] = ACTIONS(1474), + [aux_sym_cmd_identifier_token19] = ACTIONS(1476), + [aux_sym_cmd_identifier_token20] = ACTIONS(1476), + [aux_sym_cmd_identifier_token21] = ACTIONS(1476), + [aux_sym_cmd_identifier_token22] = ACTIONS(1476), + [aux_sym_cmd_identifier_token23] = ACTIONS(1476), + [aux_sym_cmd_identifier_token24] = ACTIONS(1476), + [aux_sym_cmd_identifier_token25] = ACTIONS(1476), + [aux_sym_cmd_identifier_token26] = ACTIONS(1476), + [aux_sym_cmd_identifier_token27] = ACTIONS(1476), + [aux_sym_cmd_identifier_token28] = ACTIONS(1476), + [aux_sym_cmd_identifier_token29] = ACTIONS(1476), + [aux_sym_cmd_identifier_token30] = ACTIONS(1476), + [aux_sym_cmd_identifier_token31] = ACTIONS(1476), + [aux_sym_cmd_identifier_token32] = ACTIONS(1474), + [aux_sym_cmd_identifier_token33] = ACTIONS(1476), + [aux_sym_cmd_identifier_token34] = ACTIONS(1474), + [aux_sym_cmd_identifier_token35] = ACTIONS(1476), + [aux_sym_cmd_identifier_token36] = ACTIONS(1476), + [aux_sym_cmd_identifier_token37] = ACTIONS(1476), + [aux_sym_cmd_identifier_token38] = ACTIONS(1474), + [aux_sym_cmd_identifier_token39] = ACTIONS(1476), + [aux_sym_cmd_identifier_token40] = ACTIONS(1476), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1474), + [anon_sym_export_DASHenv] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_error] = ACTIONS(1474), + [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_source] = ACTIONS(1474), + [anon_sym_source_DASHenv] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_hide] = ACTIONS(1474), + [anon_sym_hide_DASHenv] = ACTIONS(1474), + [anon_sym_overlay] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1476), + [aux_sym_expr_unary_token1] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), + [anon_sym_DOT_DOT_LT] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1476), + [aux_sym__val_number_decimal_token4] = ACTIONS(1476), + [aux_sym__val_number_token1] = ACTIONS(1476), + [aux_sym__val_number_token2] = ACTIONS(1476), + [aux_sym__val_number_token3] = ACTIONS(1476), + [aux_sym__val_number_token4] = ACTIONS(1474), + [aux_sym__val_number_token5] = ACTIONS(1474), + [aux_sym__val_number_token6] = ACTIONS(1474), + [anon_sym_0b] = ACTIONS(1474), + [anon_sym_0o] = ACTIONS(1474), + [anon_sym_0x] = ACTIONS(1474), + [sym_val_date] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym__str_single_quotes] = ACTIONS(1476), + [sym__str_back_ticks] = ACTIONS(1476), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), + [aux_sym_env_var_token1] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1476), + [aux_sym_command_token1] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1476), + }, [306] = { [sym_comment] = STATE(306), - [aux_sym__block_body_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_alias] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_let_DASHenv] = ACTIONS(1417), - [anon_sym_mut] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [aux_sym_cmd_identifier_token1] = ACTIONS(1417), - [aux_sym_cmd_identifier_token2] = ACTIONS(1419), - [aux_sym_cmd_identifier_token3] = ACTIONS(1419), - [aux_sym_cmd_identifier_token4] = ACTIONS(1419), - [aux_sym_cmd_identifier_token5] = ACTIONS(1419), - [aux_sym_cmd_identifier_token6] = ACTIONS(1419), - [aux_sym_cmd_identifier_token7] = ACTIONS(1419), - [aux_sym_cmd_identifier_token8] = ACTIONS(1417), - [aux_sym_cmd_identifier_token9] = ACTIONS(1417), - [aux_sym_cmd_identifier_token10] = ACTIONS(1419), - [aux_sym_cmd_identifier_token11] = ACTIONS(1419), - [aux_sym_cmd_identifier_token12] = ACTIONS(1417), - [aux_sym_cmd_identifier_token13] = ACTIONS(1417), - [aux_sym_cmd_identifier_token14] = ACTIONS(1417), - [aux_sym_cmd_identifier_token15] = ACTIONS(1417), - [aux_sym_cmd_identifier_token16] = ACTIONS(1419), - [aux_sym_cmd_identifier_token17] = ACTIONS(1419), - [aux_sym_cmd_identifier_token18] = ACTIONS(1417), - [aux_sym_cmd_identifier_token19] = ACTIONS(1419), - [aux_sym_cmd_identifier_token20] = ACTIONS(1419), - [aux_sym_cmd_identifier_token21] = ACTIONS(1419), - [aux_sym_cmd_identifier_token22] = ACTIONS(1419), - [aux_sym_cmd_identifier_token23] = ACTIONS(1419), - [aux_sym_cmd_identifier_token24] = ACTIONS(1419), - [aux_sym_cmd_identifier_token25] = ACTIONS(1419), - [aux_sym_cmd_identifier_token26] = ACTIONS(1419), - [aux_sym_cmd_identifier_token27] = ACTIONS(1419), - [aux_sym_cmd_identifier_token28] = ACTIONS(1419), - [aux_sym_cmd_identifier_token29] = ACTIONS(1419), - [aux_sym_cmd_identifier_token30] = ACTIONS(1419), - [aux_sym_cmd_identifier_token31] = ACTIONS(1419), - [aux_sym_cmd_identifier_token32] = ACTIONS(1417), - [aux_sym_cmd_identifier_token33] = ACTIONS(1419), - [aux_sym_cmd_identifier_token34] = ACTIONS(1417), - [aux_sym_cmd_identifier_token35] = ACTIONS(1419), - [aux_sym_cmd_identifier_token36] = ACTIONS(1419), - [aux_sym_cmd_identifier_token37] = ACTIONS(1419), - [aux_sym_cmd_identifier_token38] = ACTIONS(1417), - [aux_sym_cmd_identifier_token39] = ACTIONS(1419), - [aux_sym_cmd_identifier_token40] = ACTIONS(1419), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1417), - [anon_sym_export_DASHenv] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_error] = ACTIONS(1417), - [anon_sym_DASH2] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_source] = ACTIONS(1417), - [anon_sym_source_DASHenv] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_hide] = ACTIONS(1417), - [anon_sym_hide_DASHenv] = ACTIONS(1417), - [anon_sym_overlay] = ACTIONS(1417), - [anon_sym_where] = ACTIONS(1419), - [aux_sym_expr_unary_token1] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_DOT_DOT_LT] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [aux_sym__val_number_decimal_token1] = ACTIONS(1417), - [aux_sym__val_number_decimal_token2] = ACTIONS(1419), - [aux_sym__val_number_decimal_token3] = ACTIONS(1419), - [aux_sym__val_number_decimal_token4] = ACTIONS(1419), - [aux_sym__val_number_token1] = ACTIONS(1419), - [aux_sym__val_number_token2] = ACTIONS(1419), - [aux_sym__val_number_token3] = ACTIONS(1419), - [aux_sym__val_number_token4] = ACTIONS(1417), - [aux_sym__val_number_token5] = ACTIONS(1417), - [aux_sym__val_number_token6] = ACTIONS(1417), - [anon_sym_0b] = ACTIONS(1417), - [anon_sym_0o] = ACTIONS(1417), - [anon_sym_0x] = ACTIONS(1417), - [sym_val_date] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym__str_single_quotes] = ACTIONS(1419), - [sym__str_back_ticks] = ACTIONS(1419), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), - [aux_sym_env_var_token1] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [aux_sym_command_token1] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1419), + [anon_sym_export] = ACTIONS(1304), + [anon_sym_alias] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_let_DASHenv] = ACTIONS(1304), + [anon_sym_mut] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [aux_sym_cmd_identifier_token1] = ACTIONS(1304), + [aux_sym_cmd_identifier_token2] = ACTIONS(1302), + [aux_sym_cmd_identifier_token3] = ACTIONS(1302), + [aux_sym_cmd_identifier_token4] = ACTIONS(1302), + [aux_sym_cmd_identifier_token5] = ACTIONS(1302), + [aux_sym_cmd_identifier_token6] = ACTIONS(1302), + [aux_sym_cmd_identifier_token7] = ACTIONS(1302), + [aux_sym_cmd_identifier_token8] = ACTIONS(1304), + [aux_sym_cmd_identifier_token9] = ACTIONS(1304), + [aux_sym_cmd_identifier_token10] = ACTIONS(1302), + [aux_sym_cmd_identifier_token11] = ACTIONS(1302), + [aux_sym_cmd_identifier_token12] = ACTIONS(1304), + [aux_sym_cmd_identifier_token13] = ACTIONS(1304), + [aux_sym_cmd_identifier_token14] = ACTIONS(1304), + [aux_sym_cmd_identifier_token15] = ACTIONS(1304), + [aux_sym_cmd_identifier_token16] = ACTIONS(1302), + [aux_sym_cmd_identifier_token17] = ACTIONS(1302), + [aux_sym_cmd_identifier_token18] = ACTIONS(1304), + [aux_sym_cmd_identifier_token19] = ACTIONS(1302), + [aux_sym_cmd_identifier_token20] = ACTIONS(1302), + [aux_sym_cmd_identifier_token21] = ACTIONS(1302), + [aux_sym_cmd_identifier_token22] = ACTIONS(1302), + [aux_sym_cmd_identifier_token23] = ACTIONS(1302), + [aux_sym_cmd_identifier_token24] = ACTIONS(1302), + [aux_sym_cmd_identifier_token25] = ACTIONS(1302), + [aux_sym_cmd_identifier_token26] = ACTIONS(1302), + [aux_sym_cmd_identifier_token27] = ACTIONS(1302), + [aux_sym_cmd_identifier_token28] = ACTIONS(1302), + [aux_sym_cmd_identifier_token29] = ACTIONS(1302), + [aux_sym_cmd_identifier_token30] = ACTIONS(1302), + [aux_sym_cmd_identifier_token31] = ACTIONS(1302), + [aux_sym_cmd_identifier_token32] = ACTIONS(1304), + [aux_sym_cmd_identifier_token33] = ACTIONS(1302), + [aux_sym_cmd_identifier_token34] = ACTIONS(1304), + [aux_sym_cmd_identifier_token35] = ACTIONS(1302), + [aux_sym_cmd_identifier_token36] = ACTIONS(1302), + [aux_sym_cmd_identifier_token37] = ACTIONS(1302), + [aux_sym_cmd_identifier_token38] = ACTIONS(1304), + [aux_sym_cmd_identifier_token39] = ACTIONS(1302), + [aux_sym_cmd_identifier_token40] = ACTIONS(1302), + [sym__newline] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_def] = ACTIONS(1304), + [anon_sym_export_DASHenv] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_module] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_error] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_source] = ACTIONS(1304), + [anon_sym_source_DASHenv] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_hide] = ACTIONS(1304), + [anon_sym_hide_DASHenv] = ACTIONS(1304), + [anon_sym_overlay] = ACTIONS(1304), + [anon_sym_where] = ACTIONS(1302), + [aux_sym_expr_unary_token1] = ACTIONS(1302), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), + [anon_sym_DOT_DOT_LT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(1302), + [aux_sym__val_number_token2] = ACTIONS(1302), + [aux_sym__val_number_token3] = ACTIONS(1302), + [aux_sym__val_number_token4] = ACTIONS(1304), + [aux_sym__val_number_token5] = ACTIONS(1304), + [aux_sym__val_number_token6] = ACTIONS(1304), + [anon_sym_0b] = ACTIONS(1304), + [anon_sym_0o] = ACTIONS(1304), + [anon_sym_0x] = ACTIONS(1304), + [sym_val_date] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym__str_single_quotes] = ACTIONS(1302), + [sym__str_back_ticks] = ACTIONS(1302), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), + [aux_sym_env_var_token1] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1302), + [aux_sym_command_token1] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1302), }, [307] = { [sym_comment] = STATE(307), - [aux_sym_shebang_repeat1] = STATE(282), - [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(1546), - [aux_sym_cmd_identifier_token3] = ACTIONS(1546), - [aux_sym_cmd_identifier_token4] = ACTIONS(1546), - [aux_sym_cmd_identifier_token5] = ACTIONS(1546), - [aux_sym_cmd_identifier_token6] = ACTIONS(1546), - [aux_sym_cmd_identifier_token7] = ACTIONS(1546), - [aux_sym_cmd_identifier_token8] = ACTIONS(1544), - [aux_sym_cmd_identifier_token9] = ACTIONS(1544), - [aux_sym_cmd_identifier_token10] = ACTIONS(1546), - [aux_sym_cmd_identifier_token11] = ACTIONS(1546), - [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(1546), - [aux_sym_cmd_identifier_token17] = ACTIONS(1546), - [aux_sym_cmd_identifier_token18] = ACTIONS(1544), - [aux_sym_cmd_identifier_token19] = ACTIONS(1546), - [aux_sym_cmd_identifier_token20] = ACTIONS(1546), - [aux_sym_cmd_identifier_token21] = ACTIONS(1546), - [aux_sym_cmd_identifier_token22] = ACTIONS(1546), - [aux_sym_cmd_identifier_token23] = ACTIONS(1546), - [aux_sym_cmd_identifier_token24] = ACTIONS(1546), - [aux_sym_cmd_identifier_token25] = ACTIONS(1546), - [aux_sym_cmd_identifier_token26] = ACTIONS(1546), - [aux_sym_cmd_identifier_token27] = ACTIONS(1546), - [aux_sym_cmd_identifier_token28] = ACTIONS(1546), - [aux_sym_cmd_identifier_token29] = ACTIONS(1546), - [aux_sym_cmd_identifier_token30] = ACTIONS(1546), - [aux_sym_cmd_identifier_token31] = ACTIONS(1546), - [aux_sym_cmd_identifier_token32] = ACTIONS(1544), - [aux_sym_cmd_identifier_token33] = ACTIONS(1546), - [aux_sym_cmd_identifier_token34] = ACTIONS(1544), - [aux_sym_cmd_identifier_token35] = ACTIONS(1546), - [aux_sym_cmd_identifier_token36] = ACTIONS(1546), - [aux_sym_cmd_identifier_token37] = ACTIONS(1546), - [aux_sym_cmd_identifier_token38] = ACTIONS(1544), - [aux_sym_cmd_identifier_token39] = ACTIONS(1546), - [aux_sym_cmd_identifier_token40] = ACTIONS(1546), - [sym__newline] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1548), - [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_LBRACK] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_DOLLAR] = ACTIONS(1544), - [anon_sym_error] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_try] = 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_where] = ACTIONS(1546), - [aux_sym_expr_unary_token1] = ACTIONS(1546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), - [anon_sym_DOT_DOT_LT] = ACTIONS(1546), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1546), - [aux_sym__val_number_decimal_token3] = ACTIONS(1546), - [aux_sym__val_number_decimal_token4] = ACTIONS(1546), - [aux_sym__val_number_token1] = ACTIONS(1546), - [aux_sym__val_number_token2] = ACTIONS(1546), - [aux_sym__val_number_token3] = ACTIONS(1546), - [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(1544), - [anon_sym_0o] = ACTIONS(1544), - [anon_sym_0x] = ACTIONS(1544), - [sym_val_date] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [sym__str_single_quotes] = ACTIONS(1546), - [sym__str_back_ticks] = ACTIONS(1546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1546), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1546), - [aux_sym_env_var_token1] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1546), - [aux_sym_command_token1] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1546), - }, - [308] = { - [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(1550), - [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(1550), - [aux_sym_cmd_identifier_token3] = ACTIONS(1550), - [aux_sym_cmd_identifier_token4] = ACTIONS(1550), - [aux_sym_cmd_identifier_token5] = ACTIONS(1550), - [aux_sym_cmd_identifier_token6] = ACTIONS(1550), - [aux_sym_cmd_identifier_token7] = ACTIONS(1550), - [aux_sym_cmd_identifier_token8] = ACTIONS(1552), - [aux_sym_cmd_identifier_token9] = ACTIONS(1552), - [aux_sym_cmd_identifier_token10] = ACTIONS(1550), - [aux_sym_cmd_identifier_token11] = ACTIONS(1550), - [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(1550), - [aux_sym_cmd_identifier_token17] = ACTIONS(1550), - [aux_sym_cmd_identifier_token18] = ACTIONS(1552), - [aux_sym_cmd_identifier_token19] = ACTIONS(1550), - [aux_sym_cmd_identifier_token20] = ACTIONS(1550), - [aux_sym_cmd_identifier_token21] = ACTIONS(1550), - [aux_sym_cmd_identifier_token22] = ACTIONS(1550), - [aux_sym_cmd_identifier_token23] = ACTIONS(1550), - [aux_sym_cmd_identifier_token24] = ACTIONS(1550), - [aux_sym_cmd_identifier_token25] = ACTIONS(1550), - [aux_sym_cmd_identifier_token26] = ACTIONS(1550), - [aux_sym_cmd_identifier_token27] = ACTIONS(1550), - [aux_sym_cmd_identifier_token28] = ACTIONS(1550), - [aux_sym_cmd_identifier_token29] = ACTIONS(1550), - [aux_sym_cmd_identifier_token30] = ACTIONS(1550), - [aux_sym_cmd_identifier_token31] = ACTIONS(1550), - [aux_sym_cmd_identifier_token32] = ACTIONS(1552), - [aux_sym_cmd_identifier_token33] = ACTIONS(1550), - [aux_sym_cmd_identifier_token34] = ACTIONS(1552), - [aux_sym_cmd_identifier_token35] = ACTIONS(1550), - [aux_sym_cmd_identifier_token36] = ACTIONS(1550), - [aux_sym_cmd_identifier_token37] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1552), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_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(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [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(1550), - [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(1550), - [aux_sym_expr_unary_token1] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [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(1550), - [aux_sym__val_number_decimal_token3] = ACTIONS(1550), - [aux_sym__val_number_decimal_token4] = ACTIONS(1550), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [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(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [aux_sym_env_var_token1] = ACTIONS(1552), - [anon_sym_CARET] = ACTIONS(1550), - [aux_sym_command_token1] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1550), - }, - [309] = { - [sym_comment] = STATE(309), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_export] = ACTIONS(1522), + [anon_sym_alias] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_let_DASHenv] = ACTIONS(1522), + [anon_sym_mut] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [aux_sym_cmd_identifier_token1] = ACTIONS(1522), [aux_sym_cmd_identifier_token2] = ACTIONS(1306), [aux_sym_cmd_identifier_token3] = ACTIONS(1306), [aux_sym_cmd_identifier_token4] = ACTIONS(1306), [aux_sym_cmd_identifier_token5] = ACTIONS(1306), [aux_sym_cmd_identifier_token6] = ACTIONS(1306), [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1308), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), + [aux_sym_cmd_identifier_token8] = ACTIONS(1522), + [aux_sym_cmd_identifier_token9] = ACTIONS(1522), [aux_sym_cmd_identifier_token10] = ACTIONS(1306), [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1308), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1308), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), + [aux_sym_cmd_identifier_token12] = ACTIONS(1522), + [aux_sym_cmd_identifier_token13] = ACTIONS(1522), + [aux_sym_cmd_identifier_token14] = ACTIONS(1522), + [aux_sym_cmd_identifier_token15] = ACTIONS(1522), [aux_sym_cmd_identifier_token16] = ACTIONS(1306), [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1308), + [aux_sym_cmd_identifier_token18] = ACTIONS(1522), [aux_sym_cmd_identifier_token19] = ACTIONS(1306), [aux_sym_cmd_identifier_token20] = ACTIONS(1306), [aux_sym_cmd_identifier_token21] = ACTIONS(1306), @@ -117363,555 +119667,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(1306), [aux_sym_cmd_identifier_token30] = ACTIONS(1306), [aux_sym_cmd_identifier_token31] = ACTIONS(1306), - [aux_sym_cmd_identifier_token32] = ACTIONS(1308), + [aux_sym_cmd_identifier_token32] = ACTIONS(1522), [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), + [aux_sym_cmd_identifier_token34] = ACTIONS(1522), [aux_sym_cmd_identifier_token35] = ACTIONS(1306), [aux_sym_cmd_identifier_token36] = ACTIONS(1306), [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), + [aux_sym_cmd_identifier_token38] = ACTIONS(1522), [aux_sym_cmd_identifier_token39] = ACTIONS(1306), [aux_sym_cmd_identifier_token40] = ACTIONS(1306), [sym__newline] = ACTIONS(1306), [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_export_DASHenv] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_module] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1306), [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_error] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_source] = ACTIONS(1522), + [anon_sym_source_DASHenv] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_hide] = ACTIONS(1522), + [anon_sym_hide_DASHenv] = ACTIONS(1522), + [anon_sym_overlay] = ACTIONS(1522), [anon_sym_where] = ACTIONS(1306), [aux_sym_expr_unary_token1] = ACTIONS(1306), [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), [anon_sym_DOT_DOT_LT] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [anon_sym_null] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [aux_sym__val_number_decimal_token1] = ACTIONS(1522), [aux_sym__val_number_decimal_token2] = ACTIONS(1306), [aux_sym__val_number_decimal_token3] = ACTIONS(1306), [aux_sym__val_number_decimal_token4] = ACTIONS(1306), [aux_sym__val_number_token1] = ACTIONS(1306), [aux_sym__val_number_token2] = ACTIONS(1306), [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), + [aux_sym__val_number_token4] = ACTIONS(1522), + [aux_sym__val_number_token5] = ACTIONS(1522), + [aux_sym__val_number_token6] = ACTIONS(1522), + [anon_sym_0b] = ACTIONS(1522), + [anon_sym_0o] = ACTIONS(1522), + [anon_sym_0x] = ACTIONS(1522), [sym_val_date] = ACTIONS(1306), [anon_sym_DQUOTE] = ACTIONS(1306), [sym__str_single_quotes] = ACTIONS(1306), [sym__str_back_ticks] = ACTIONS(1306), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [aux_sym_env_var_token1] = ACTIONS(1308), + [aux_sym_env_var_token1] = ACTIONS(1522), [anon_sym_CARET] = ACTIONS(1306), [aux_sym_command_token1] = ACTIONS(1306), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1306), }, + [308] = { + [sym_comment] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(1540), + [anon_sym_export] = ACTIONS(1542), + [anon_sym_alias] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_let_DASHenv] = ACTIONS(1542), + [anon_sym_mut] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [aux_sym_cmd_identifier_token1] = ACTIONS(1542), + [aux_sym_cmd_identifier_token2] = ACTIONS(1540), + [aux_sym_cmd_identifier_token3] = ACTIONS(1540), + [aux_sym_cmd_identifier_token4] = ACTIONS(1540), + [aux_sym_cmd_identifier_token5] = ACTIONS(1540), + [aux_sym_cmd_identifier_token6] = ACTIONS(1540), + [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token8] = ACTIONS(1542), + [aux_sym_cmd_identifier_token9] = ACTIONS(1542), + [aux_sym_cmd_identifier_token10] = ACTIONS(1540), + [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token12] = ACTIONS(1542), + [aux_sym_cmd_identifier_token13] = ACTIONS(1542), + [aux_sym_cmd_identifier_token14] = ACTIONS(1542), + [aux_sym_cmd_identifier_token15] = ACTIONS(1542), + [aux_sym_cmd_identifier_token16] = ACTIONS(1540), + [aux_sym_cmd_identifier_token17] = ACTIONS(1540), + [aux_sym_cmd_identifier_token18] = ACTIONS(1542), + [aux_sym_cmd_identifier_token19] = ACTIONS(1540), + [aux_sym_cmd_identifier_token20] = ACTIONS(1540), + [aux_sym_cmd_identifier_token21] = ACTIONS(1540), + [aux_sym_cmd_identifier_token22] = ACTIONS(1540), + [aux_sym_cmd_identifier_token23] = ACTIONS(1540), + [aux_sym_cmd_identifier_token24] = ACTIONS(1540), + [aux_sym_cmd_identifier_token25] = ACTIONS(1540), + [aux_sym_cmd_identifier_token26] = ACTIONS(1540), + [aux_sym_cmd_identifier_token27] = ACTIONS(1540), + [aux_sym_cmd_identifier_token28] = ACTIONS(1540), + [aux_sym_cmd_identifier_token29] = ACTIONS(1540), + [aux_sym_cmd_identifier_token30] = ACTIONS(1540), + [aux_sym_cmd_identifier_token31] = ACTIONS(1540), + [aux_sym_cmd_identifier_token32] = ACTIONS(1542), + [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token34] = ACTIONS(1542), + [aux_sym_cmd_identifier_token35] = ACTIONS(1540), + [aux_sym_cmd_identifier_token36] = ACTIONS(1540), + [aux_sym_cmd_identifier_token37] = ACTIONS(1540), + [aux_sym_cmd_identifier_token38] = ACTIONS(1542), + [aux_sym_cmd_identifier_token39] = ACTIONS(1540), + [aux_sym_cmd_identifier_token40] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1542), + [anon_sym_export_DASHenv] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_module] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_error] = ACTIONS(1542), + [anon_sym_DASH2] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_do] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1542), + [anon_sym_try] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_source] = ACTIONS(1542), + [anon_sym_source_DASHenv] = ACTIONS(1542), + [anon_sym_register] = ACTIONS(1542), + [anon_sym_hide] = ACTIONS(1542), + [anon_sym_hide_DASHenv] = ACTIONS(1542), + [anon_sym_overlay] = ACTIONS(1542), + [anon_sym_where] = ACTIONS(1540), + [aux_sym_expr_unary_token1] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT] = ACTIONS(1540), + [anon_sym_null] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [aux_sym__val_number_decimal_token1] = ACTIONS(1542), + [aux_sym__val_number_decimal_token2] = ACTIONS(1540), + [aux_sym__val_number_decimal_token3] = ACTIONS(1540), + [aux_sym__val_number_decimal_token4] = ACTIONS(1540), + [aux_sym__val_number_token1] = ACTIONS(1540), + [aux_sym__val_number_token2] = ACTIONS(1540), + [aux_sym__val_number_token3] = ACTIONS(1540), + [aux_sym__val_number_token4] = ACTIONS(1542), + [aux_sym__val_number_token5] = ACTIONS(1542), + [aux_sym__val_number_token6] = ACTIONS(1542), + [anon_sym_0b] = ACTIONS(1542), + [anon_sym_0o] = ACTIONS(1542), + [anon_sym_0x] = ACTIONS(1542), + [sym_val_date] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [sym__str_single_quotes] = ACTIONS(1540), + [sym__str_back_ticks] = ACTIONS(1540), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), + [aux_sym_env_var_token1] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1540), + [aux_sym_command_token1] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1540), + }, + [309] = { + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(1544), + [anon_sym_export] = ACTIONS(1546), + [anon_sym_alias] = ACTIONS(1546), + [anon_sym_let] = ACTIONS(1546), + [anon_sym_let_DASHenv] = ACTIONS(1546), + [anon_sym_mut] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [aux_sym_cmd_identifier_token1] = ACTIONS(1546), + [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(1546), + [aux_sym_cmd_identifier_token9] = ACTIONS(1546), + [aux_sym_cmd_identifier_token10] = ACTIONS(1544), + [aux_sym_cmd_identifier_token11] = ACTIONS(1544), + [aux_sym_cmd_identifier_token12] = ACTIONS(1546), + [aux_sym_cmd_identifier_token13] = ACTIONS(1546), + [aux_sym_cmd_identifier_token14] = ACTIONS(1546), + [aux_sym_cmd_identifier_token15] = ACTIONS(1546), + [aux_sym_cmd_identifier_token16] = ACTIONS(1544), + [aux_sym_cmd_identifier_token17] = ACTIONS(1544), + [aux_sym_cmd_identifier_token18] = ACTIONS(1546), + [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(1546), + [aux_sym_cmd_identifier_token33] = ACTIONS(1544), + [aux_sym_cmd_identifier_token34] = ACTIONS(1546), + [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(1546), + [aux_sym_cmd_identifier_token39] = ACTIONS(1544), + [aux_sym_cmd_identifier_token40] = ACTIONS(1544), + [sym__newline] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_def] = ACTIONS(1546), + [anon_sym_export_DASHenv] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_module] = ACTIONS(1546), + [anon_sym_use] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_error] = ACTIONS(1546), + [anon_sym_DASH2] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_loop] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_do] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1546), + [anon_sym_try] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_source] = ACTIONS(1546), + [anon_sym_source_DASHenv] = ACTIONS(1546), + [anon_sym_register] = ACTIONS(1546), + [anon_sym_hide] = ACTIONS(1546), + [anon_sym_hide_DASHenv] = ACTIONS(1546), + [anon_sym_overlay] = ACTIONS(1546), + [anon_sym_where] = ACTIONS(1544), + [aux_sym_expr_unary_token1] = ACTIONS(1544), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), + [anon_sym_DOT_DOT_LT] = ACTIONS(1544), + [anon_sym_null] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [aux_sym__val_number_decimal_token1] = ACTIONS(1546), + [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), + [aux_sym__val_number_token4] = ACTIONS(1546), + [aux_sym__val_number_token5] = ACTIONS(1546), + [aux_sym__val_number_token6] = ACTIONS(1546), + [anon_sym_0b] = ACTIONS(1546), + [anon_sym_0o] = ACTIONS(1546), + [anon_sym_0x] = ACTIONS(1546), + [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), + [aux_sym_env_var_token1] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1544), + [aux_sym_command_token1] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1544), + }, [310] = { [sym_comment] = STATE(310), - [ts_builtin_sym_end] = ACTIONS(1554), - [anon_sym_export] = ACTIONS(1556), - [anon_sym_alias] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_let_DASHenv] = ACTIONS(1556), - [anon_sym_mut] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [aux_sym_cmd_identifier_token1] = ACTIONS(1556), - [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(1556), - [aux_sym_cmd_identifier_token9] = ACTIONS(1556), - [aux_sym_cmd_identifier_token10] = ACTIONS(1554), - [aux_sym_cmd_identifier_token11] = ACTIONS(1554), - [aux_sym_cmd_identifier_token12] = ACTIONS(1556), - [aux_sym_cmd_identifier_token13] = ACTIONS(1556), - [aux_sym_cmd_identifier_token14] = ACTIONS(1556), - [aux_sym_cmd_identifier_token15] = ACTIONS(1556), - [aux_sym_cmd_identifier_token16] = ACTIONS(1554), - [aux_sym_cmd_identifier_token17] = ACTIONS(1554), - [aux_sym_cmd_identifier_token18] = ACTIONS(1556), - [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(1556), - [aux_sym_cmd_identifier_token33] = ACTIONS(1554), - [aux_sym_cmd_identifier_token34] = ACTIONS(1556), - [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(1556), - [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(1556), - [anon_sym_export_DASHenv] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_module] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_source] = ACTIONS(1556), - [anon_sym_source_DASHenv] = ACTIONS(1556), - [anon_sym_register] = ACTIONS(1556), - [anon_sym_hide] = ACTIONS(1556), - [anon_sym_hide_DASHenv] = ACTIONS(1556), - [anon_sym_overlay] = ACTIONS(1556), - [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(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1556), - [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(1556), - [aux_sym__val_number_token5] = ACTIONS(1556), - [aux_sym__val_number_token6] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1556), - [anon_sym_0x] = ACTIONS(1556), - [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(1556), - [anon_sym_CARET] = ACTIONS(1554), - [aux_sym_command_token1] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1554), + [anon_sym_export] = ACTIONS(1548), + [anon_sym_alias] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_let_DASHenv] = ACTIONS(1548), + [anon_sym_mut] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [aux_sym_cmd_identifier_token1] = ACTIONS(1548), + [aux_sym_cmd_identifier_token2] = ACTIONS(1550), + [aux_sym_cmd_identifier_token3] = ACTIONS(1550), + [aux_sym_cmd_identifier_token4] = ACTIONS(1550), + [aux_sym_cmd_identifier_token5] = ACTIONS(1550), + [aux_sym_cmd_identifier_token6] = ACTIONS(1550), + [aux_sym_cmd_identifier_token7] = ACTIONS(1550), + [aux_sym_cmd_identifier_token8] = ACTIONS(1548), + [aux_sym_cmd_identifier_token9] = ACTIONS(1548), + [aux_sym_cmd_identifier_token10] = ACTIONS(1550), + [aux_sym_cmd_identifier_token11] = ACTIONS(1550), + [aux_sym_cmd_identifier_token12] = ACTIONS(1548), + [aux_sym_cmd_identifier_token13] = ACTIONS(1548), + [aux_sym_cmd_identifier_token14] = ACTIONS(1548), + [aux_sym_cmd_identifier_token15] = ACTIONS(1548), + [aux_sym_cmd_identifier_token16] = ACTIONS(1550), + [aux_sym_cmd_identifier_token17] = ACTIONS(1550), + [aux_sym_cmd_identifier_token18] = ACTIONS(1548), + [aux_sym_cmd_identifier_token19] = ACTIONS(1550), + [aux_sym_cmd_identifier_token20] = ACTIONS(1550), + [aux_sym_cmd_identifier_token21] = ACTIONS(1550), + [aux_sym_cmd_identifier_token22] = ACTIONS(1550), + [aux_sym_cmd_identifier_token23] = ACTIONS(1550), + [aux_sym_cmd_identifier_token24] = ACTIONS(1550), + [aux_sym_cmd_identifier_token25] = ACTIONS(1550), + [aux_sym_cmd_identifier_token26] = ACTIONS(1550), + [aux_sym_cmd_identifier_token27] = ACTIONS(1550), + [aux_sym_cmd_identifier_token28] = ACTIONS(1550), + [aux_sym_cmd_identifier_token29] = ACTIONS(1550), + [aux_sym_cmd_identifier_token30] = ACTIONS(1550), + [aux_sym_cmd_identifier_token31] = ACTIONS(1550), + [aux_sym_cmd_identifier_token32] = ACTIONS(1548), + [aux_sym_cmd_identifier_token33] = ACTIONS(1550), + [aux_sym_cmd_identifier_token34] = ACTIONS(1548), + [aux_sym_cmd_identifier_token35] = ACTIONS(1550), + [aux_sym_cmd_identifier_token36] = ACTIONS(1550), + [aux_sym_cmd_identifier_token37] = ACTIONS(1550), + [aux_sym_cmd_identifier_token38] = ACTIONS(1548), + [aux_sym_cmd_identifier_token39] = ACTIONS(1550), + [aux_sym_cmd_identifier_token40] = ACTIONS(1550), + [sym__newline] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_def] = ACTIONS(1548), + [anon_sym_export_DASHenv] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_module] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1548), + [anon_sym_DASH2] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_source] = ACTIONS(1548), + [anon_sym_source_DASHenv] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_hide] = ACTIONS(1548), + [anon_sym_hide_DASHenv] = ACTIONS(1548), + [anon_sym_overlay] = ACTIONS(1548), + [anon_sym_where] = ACTIONS(1550), + [aux_sym_expr_unary_token1] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), + [anon_sym_DOT_DOT_LT] = ACTIONS(1550), + [anon_sym_null] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [aux_sym__val_number_decimal_token1] = ACTIONS(1548), + [aux_sym__val_number_decimal_token2] = ACTIONS(1550), + [aux_sym__val_number_decimal_token3] = ACTIONS(1550), + [aux_sym__val_number_decimal_token4] = ACTIONS(1550), + [aux_sym__val_number_token1] = ACTIONS(1550), + [aux_sym__val_number_token2] = ACTIONS(1550), + [aux_sym__val_number_token3] = ACTIONS(1550), + [aux_sym__val_number_token4] = ACTIONS(1548), + [aux_sym__val_number_token5] = ACTIONS(1548), + [aux_sym__val_number_token6] = ACTIONS(1548), + [anon_sym_0b] = ACTIONS(1548), + [anon_sym_0o] = ACTIONS(1548), + [anon_sym_0x] = ACTIONS(1548), + [sym_val_date] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym__str_single_quotes] = ACTIONS(1550), + [sym__str_back_ticks] = ACTIONS(1550), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), + [aux_sym_env_var_token1] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [aux_sym_command_token1] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1550), }, [311] = { [sym_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(1310), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_DASH2] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_where] = ACTIONS(1310), - [aux_sym_expr_unary_token1] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1518), - [aux_sym__val_number_token5] = ACTIONS(1518), - [aux_sym__val_number_token6] = ACTIONS(1518), - [anon_sym_0b] = ACTIONS(1518), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), - [aux_sym_env_var_token1] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1310), - [aux_sym_command_token1] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1310), + [aux_sym_shebang_repeat1] = STATE(224), + [anon_sym_export] = ACTIONS(1555), + [anon_sym_alias] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_let_DASHenv] = ACTIONS(1555), + [anon_sym_mut] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [aux_sym_cmd_identifier_token1] = ACTIONS(1555), + [aux_sym_cmd_identifier_token2] = ACTIONS(1557), + [aux_sym_cmd_identifier_token3] = ACTIONS(1557), + [aux_sym_cmd_identifier_token4] = ACTIONS(1557), + [aux_sym_cmd_identifier_token5] = ACTIONS(1557), + [aux_sym_cmd_identifier_token6] = ACTIONS(1557), + [aux_sym_cmd_identifier_token7] = ACTIONS(1557), + [aux_sym_cmd_identifier_token8] = ACTIONS(1555), + [aux_sym_cmd_identifier_token9] = ACTIONS(1555), + [aux_sym_cmd_identifier_token10] = ACTIONS(1557), + [aux_sym_cmd_identifier_token11] = ACTIONS(1557), + [aux_sym_cmd_identifier_token12] = ACTIONS(1555), + [aux_sym_cmd_identifier_token13] = ACTIONS(1555), + [aux_sym_cmd_identifier_token14] = ACTIONS(1555), + [aux_sym_cmd_identifier_token15] = ACTIONS(1555), + [aux_sym_cmd_identifier_token16] = ACTIONS(1557), + [aux_sym_cmd_identifier_token17] = ACTIONS(1557), + [aux_sym_cmd_identifier_token18] = ACTIONS(1555), + [aux_sym_cmd_identifier_token19] = ACTIONS(1557), + [aux_sym_cmd_identifier_token20] = ACTIONS(1557), + [aux_sym_cmd_identifier_token21] = ACTIONS(1557), + [aux_sym_cmd_identifier_token22] = ACTIONS(1557), + [aux_sym_cmd_identifier_token23] = ACTIONS(1557), + [aux_sym_cmd_identifier_token24] = ACTIONS(1557), + [aux_sym_cmd_identifier_token25] = ACTIONS(1557), + [aux_sym_cmd_identifier_token26] = ACTIONS(1557), + [aux_sym_cmd_identifier_token27] = ACTIONS(1557), + [aux_sym_cmd_identifier_token28] = ACTIONS(1557), + [aux_sym_cmd_identifier_token29] = ACTIONS(1557), + [aux_sym_cmd_identifier_token30] = ACTIONS(1557), + [aux_sym_cmd_identifier_token31] = ACTIONS(1557), + [aux_sym_cmd_identifier_token32] = ACTIONS(1555), + [aux_sym_cmd_identifier_token33] = ACTIONS(1557), + [aux_sym_cmd_identifier_token34] = ACTIONS(1555), + [aux_sym_cmd_identifier_token35] = ACTIONS(1557), + [aux_sym_cmd_identifier_token36] = ACTIONS(1557), + [aux_sym_cmd_identifier_token37] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1555), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_def] = ACTIONS(1555), + [anon_sym_export_DASHenv] = ACTIONS(1555), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1555), + [anon_sym_error] = ACTIONS(1555), + [anon_sym_DASH2] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_try] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_source] = ACTIONS(1555), + [anon_sym_source_DASHenv] = ACTIONS(1555), + [anon_sym_register] = ACTIONS(1555), + [anon_sym_hide] = ACTIONS(1555), + [anon_sym_hide_DASHenv] = ACTIONS(1555), + [anon_sym_overlay] = ACTIONS(1555), + [anon_sym_where] = ACTIONS(1557), + [aux_sym_expr_unary_token1] = ACTIONS(1557), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1555), + [aux_sym__val_number_decimal_token2] = ACTIONS(1557), + [aux_sym__val_number_decimal_token3] = ACTIONS(1557), + [aux_sym__val_number_decimal_token4] = ACTIONS(1557), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1555), + [aux_sym__val_number_token5] = ACTIONS(1555), + [aux_sym__val_number_token6] = ACTIONS(1555), + [anon_sym_0b] = ACTIONS(1555), + [anon_sym_0o] = ACTIONS(1555), + [anon_sym_0x] = ACTIONS(1555), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [aux_sym_env_var_token1] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1557), + [aux_sym_command_token1] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1557), }, [312] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if] = STATE(5223), + [sym_block] = STATE(5224), + [sym__expression] = STATE(5224), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1224), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5224), [sym_comment] = STATE(312), - [aux_sym__block_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(1417), - [anon_sym_alias] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_let_DASHenv] = ACTIONS(1417), - [anon_sym_mut] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [aux_sym_cmd_identifier_token1] = ACTIONS(1417), - [aux_sym_cmd_identifier_token2] = ACTIONS(1419), - [aux_sym_cmd_identifier_token3] = ACTIONS(1419), - [aux_sym_cmd_identifier_token4] = ACTIONS(1419), - [aux_sym_cmd_identifier_token5] = ACTIONS(1419), - [aux_sym_cmd_identifier_token6] = ACTIONS(1419), - [aux_sym_cmd_identifier_token7] = ACTIONS(1419), - [aux_sym_cmd_identifier_token8] = ACTIONS(1417), - [aux_sym_cmd_identifier_token9] = ACTIONS(1417), - [aux_sym_cmd_identifier_token10] = ACTIONS(1419), - [aux_sym_cmd_identifier_token11] = ACTIONS(1419), - [aux_sym_cmd_identifier_token12] = ACTIONS(1417), - [aux_sym_cmd_identifier_token13] = ACTIONS(1417), - [aux_sym_cmd_identifier_token14] = ACTIONS(1417), - [aux_sym_cmd_identifier_token15] = ACTIONS(1417), - [aux_sym_cmd_identifier_token16] = ACTIONS(1419), - [aux_sym_cmd_identifier_token17] = ACTIONS(1419), - [aux_sym_cmd_identifier_token18] = ACTIONS(1417), - [aux_sym_cmd_identifier_token19] = ACTIONS(1419), - [aux_sym_cmd_identifier_token20] = ACTIONS(1419), - [aux_sym_cmd_identifier_token21] = ACTIONS(1419), - [aux_sym_cmd_identifier_token22] = ACTIONS(1419), - [aux_sym_cmd_identifier_token23] = ACTIONS(1419), - [aux_sym_cmd_identifier_token24] = ACTIONS(1419), - [aux_sym_cmd_identifier_token25] = ACTIONS(1419), - [aux_sym_cmd_identifier_token26] = ACTIONS(1419), - [aux_sym_cmd_identifier_token27] = ACTIONS(1419), - [aux_sym_cmd_identifier_token28] = ACTIONS(1419), - [aux_sym_cmd_identifier_token29] = ACTIONS(1419), - [aux_sym_cmd_identifier_token30] = ACTIONS(1419), - [aux_sym_cmd_identifier_token31] = ACTIONS(1419), - [aux_sym_cmd_identifier_token32] = ACTIONS(1417), - [aux_sym_cmd_identifier_token33] = ACTIONS(1419), - [aux_sym_cmd_identifier_token34] = ACTIONS(1417), - [aux_sym_cmd_identifier_token35] = ACTIONS(1419), - [aux_sym_cmd_identifier_token36] = ACTIONS(1419), - [aux_sym_cmd_identifier_token37] = ACTIONS(1419), - [aux_sym_cmd_identifier_token38] = ACTIONS(1417), - [aux_sym_cmd_identifier_token39] = ACTIONS(1419), - [aux_sym_cmd_identifier_token40] = ACTIONS(1419), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1417), - [anon_sym_export_DASHenv] = ACTIONS(1417), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_module] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_error] = ACTIONS(1417), - [anon_sym_DASH2] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_try] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_source] = ACTIONS(1417), - [anon_sym_source_DASHenv] = ACTIONS(1417), - [anon_sym_register] = ACTIONS(1417), - [anon_sym_hide] = ACTIONS(1417), - [anon_sym_hide_DASHenv] = ACTIONS(1417), - [anon_sym_overlay] = ACTIONS(1417), - [anon_sym_where] = ACTIONS(1419), - [aux_sym_expr_unary_token1] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_DOT_DOT_LT] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [aux_sym__val_number_decimal_token1] = ACTIONS(1417), - [aux_sym__val_number_decimal_token2] = ACTIONS(1419), - [aux_sym__val_number_decimal_token3] = ACTIONS(1419), - [aux_sym__val_number_decimal_token4] = ACTIONS(1419), - [aux_sym__val_number_token1] = ACTIONS(1419), - [aux_sym__val_number_token2] = ACTIONS(1419), - [aux_sym__val_number_token3] = ACTIONS(1419), - [aux_sym__val_number_token4] = ACTIONS(1417), - [aux_sym__val_number_token5] = ACTIONS(1417), - [aux_sym__val_number_token6] = ACTIONS(1417), - [anon_sym_0b] = ACTIONS(1417), - [anon_sym_0o] = ACTIONS(1417), - [anon_sym_0x] = ACTIONS(1417), - [sym_val_date] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [sym__str_single_quotes] = ACTIONS(1419), - [sym__str_back_ticks] = ACTIONS(1419), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1419), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1419), - [aux_sym_env_var_token1] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1419), - [aux_sym_command_token1] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1419), - }, - [313] = { - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(1558), - [anon_sym_alias] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_let_DASHenv] = ACTIONS(1558), - [anon_sym_mut] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [aux_sym_cmd_identifier_token1] = ACTIONS(1558), - [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(1558), - [aux_sym_cmd_identifier_token9] = ACTIONS(1558), - [aux_sym_cmd_identifier_token10] = ACTIONS(1560), - [aux_sym_cmd_identifier_token11] = ACTIONS(1560), - [aux_sym_cmd_identifier_token12] = ACTIONS(1558), - [aux_sym_cmd_identifier_token13] = ACTIONS(1558), - [aux_sym_cmd_identifier_token14] = ACTIONS(1558), - [aux_sym_cmd_identifier_token15] = ACTIONS(1558), - [aux_sym_cmd_identifier_token16] = ACTIONS(1560), - [aux_sym_cmd_identifier_token17] = ACTIONS(1560), - [aux_sym_cmd_identifier_token18] = ACTIONS(1558), - [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(1558), - [aux_sym_cmd_identifier_token33] = ACTIONS(1560), - [aux_sym_cmd_identifier_token34] = ACTIONS(1558), - [aux_sym_cmd_identifier_token35] = ACTIONS(1560), - [aux_sym_cmd_identifier_token36] = ACTIONS(1560), - [aux_sym_cmd_identifier_token37] = ACTIONS(1560), - [aux_sym_cmd_identifier_token38] = ACTIONS(1558), - [aux_sym_cmd_identifier_token39] = ACTIONS(1560), - [aux_sym_cmd_identifier_token40] = ACTIONS(1560), - [sym__newline] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_def] = ACTIONS(1558), - [anon_sym_export_DASHenv] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_module] = ACTIONS(1558), - [anon_sym_use] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1558), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_loop] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_do] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_source] = ACTIONS(1558), - [anon_sym_source_DASHenv] = ACTIONS(1558), - [anon_sym_register] = ACTIONS(1558), - [anon_sym_hide] = ACTIONS(1558), - [anon_sym_hide_DASHenv] = ACTIONS(1558), - [anon_sym_overlay] = ACTIONS(1558), - [anon_sym_where] = ACTIONS(1560), - [aux_sym_expr_unary_token1] = ACTIONS(1560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), - [anon_sym_DOT_DOT_LT] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [aux_sym__val_number_decimal_token1] = ACTIONS(1558), - [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), - [aux_sym__val_number_token4] = ACTIONS(1558), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1558), - [anon_sym_0b] = ACTIONS(1558), - [anon_sym_0o] = ACTIONS(1558), - [anon_sym_0x] = ACTIONS(1558), - [sym_val_date] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), - [aux_sym_env_var_token1] = ACTIONS(1558), - [anon_sym_CARET] = ACTIONS(1560), - [aux_sym_command_token1] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1560), - }, - [314] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if] = STATE(4808), - [sym_block] = STATE(4812), - [sym__expression] = STATE(4812), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1211), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(4812), - [sym_comment] = STATE(314), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -117954,10 +120257,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117965,10 +120268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1569), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), + [aux_sym__val_number_decimal_token1] = ACTIONS(1488), + [aux_sym__val_number_decimal_token2] = ACTIONS(1490), + [aux_sym__val_number_decimal_token3] = ACTIONS(1492), + [aux_sym__val_number_decimal_token4] = ACTIONS(1494), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -117989,259 +120292,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [315] = { - [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(1531), - [anon_sym_alias] = ACTIONS(1531), - [anon_sym_let] = ACTIONS(1531), - [anon_sym_let_DASHenv] = ACTIONS(1531), - [anon_sym_mut] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [aux_sym_cmd_identifier_token1] = ACTIONS(1531), - [aux_sym_cmd_identifier_token2] = ACTIONS(1533), - [aux_sym_cmd_identifier_token3] = ACTIONS(1533), - [aux_sym_cmd_identifier_token4] = ACTIONS(1533), - [aux_sym_cmd_identifier_token5] = ACTIONS(1533), - [aux_sym_cmd_identifier_token6] = ACTIONS(1533), - [aux_sym_cmd_identifier_token7] = ACTIONS(1533), - [aux_sym_cmd_identifier_token8] = ACTIONS(1531), - [aux_sym_cmd_identifier_token9] = ACTIONS(1531), - [aux_sym_cmd_identifier_token10] = ACTIONS(1533), - [aux_sym_cmd_identifier_token11] = ACTIONS(1533), - [aux_sym_cmd_identifier_token12] = ACTIONS(1531), - [aux_sym_cmd_identifier_token13] = ACTIONS(1531), - [aux_sym_cmd_identifier_token14] = ACTIONS(1531), - [aux_sym_cmd_identifier_token15] = ACTIONS(1531), - [aux_sym_cmd_identifier_token16] = ACTIONS(1533), - [aux_sym_cmd_identifier_token17] = ACTIONS(1533), - [aux_sym_cmd_identifier_token18] = ACTIONS(1531), - [aux_sym_cmd_identifier_token19] = ACTIONS(1533), - [aux_sym_cmd_identifier_token20] = ACTIONS(1533), - [aux_sym_cmd_identifier_token21] = ACTIONS(1533), - [aux_sym_cmd_identifier_token22] = ACTIONS(1533), - [aux_sym_cmd_identifier_token23] = ACTIONS(1533), - [aux_sym_cmd_identifier_token24] = ACTIONS(1533), - [aux_sym_cmd_identifier_token25] = ACTIONS(1533), - [aux_sym_cmd_identifier_token26] = ACTIONS(1533), - [aux_sym_cmd_identifier_token27] = ACTIONS(1533), - [aux_sym_cmd_identifier_token28] = ACTIONS(1533), - [aux_sym_cmd_identifier_token29] = ACTIONS(1533), - [aux_sym_cmd_identifier_token30] = ACTIONS(1533), - [aux_sym_cmd_identifier_token31] = ACTIONS(1533), - [aux_sym_cmd_identifier_token32] = ACTIONS(1531), - [aux_sym_cmd_identifier_token33] = ACTIONS(1533), - [aux_sym_cmd_identifier_token34] = ACTIONS(1531), - [aux_sym_cmd_identifier_token35] = ACTIONS(1533), - [aux_sym_cmd_identifier_token36] = ACTIONS(1533), - [aux_sym_cmd_identifier_token37] = ACTIONS(1533), - [aux_sym_cmd_identifier_token38] = ACTIONS(1531), - [aux_sym_cmd_identifier_token39] = ACTIONS(1533), - [aux_sym_cmd_identifier_token40] = ACTIONS(1533), - [sym__newline] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_def] = ACTIONS(1531), - [anon_sym_export_DASHenv] = ACTIONS(1531), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_module] = ACTIONS(1531), - [anon_sym_use] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_DOLLAR] = ACTIONS(1531), - [anon_sym_error] = ACTIONS(1531), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_loop] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_try] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_source] = ACTIONS(1531), - [anon_sym_source_DASHenv] = ACTIONS(1531), - [anon_sym_register] = ACTIONS(1531), - [anon_sym_hide] = ACTIONS(1531), - [anon_sym_hide_DASHenv] = ACTIONS(1531), - [anon_sym_overlay] = ACTIONS(1531), - [anon_sym_where] = ACTIONS(1533), - [aux_sym_expr_unary_token1] = ACTIONS(1533), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), - [anon_sym_DOT_DOT_LT] = ACTIONS(1533), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [aux_sym__val_number_decimal_token1] = ACTIONS(1531), - [aux_sym__val_number_decimal_token2] = ACTIONS(1533), - [aux_sym__val_number_decimal_token3] = ACTIONS(1533), - [aux_sym__val_number_decimal_token4] = ACTIONS(1533), - [aux_sym__val_number_token1] = ACTIONS(1533), - [aux_sym__val_number_token2] = ACTIONS(1533), - [aux_sym__val_number_token3] = ACTIONS(1533), - [aux_sym__val_number_token4] = ACTIONS(1531), - [aux_sym__val_number_token5] = ACTIONS(1531), - [aux_sym__val_number_token6] = ACTIONS(1531), - [anon_sym_0b] = ACTIONS(1531), - [anon_sym_0o] = ACTIONS(1531), - [anon_sym_0x] = ACTIONS(1531), - [sym_val_date] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [sym__str_single_quotes] = ACTIONS(1533), - [sym__str_back_ticks] = ACTIONS(1533), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1533), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1533), - [aux_sym_env_var_token1] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1533), - [aux_sym_command_token1] = ACTIONS(1533), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1533), + [313] = { + [sym_comment] = STATE(313), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_alias] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_let_DASHenv] = ACTIONS(1561), + [anon_sym_mut] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [aux_sym_cmd_identifier_token1] = ACTIONS(1561), + [aux_sym_cmd_identifier_token2] = ACTIONS(1563), + [aux_sym_cmd_identifier_token3] = ACTIONS(1563), + [aux_sym_cmd_identifier_token4] = ACTIONS(1563), + [aux_sym_cmd_identifier_token5] = ACTIONS(1563), + [aux_sym_cmd_identifier_token6] = ACTIONS(1563), + [aux_sym_cmd_identifier_token7] = ACTIONS(1563), + [aux_sym_cmd_identifier_token8] = ACTIONS(1561), + [aux_sym_cmd_identifier_token9] = ACTIONS(1561), + [aux_sym_cmd_identifier_token10] = ACTIONS(1563), + [aux_sym_cmd_identifier_token11] = ACTIONS(1563), + [aux_sym_cmd_identifier_token12] = ACTIONS(1561), + [aux_sym_cmd_identifier_token13] = ACTIONS(1561), + [aux_sym_cmd_identifier_token14] = ACTIONS(1561), + [aux_sym_cmd_identifier_token15] = ACTIONS(1561), + [aux_sym_cmd_identifier_token16] = ACTIONS(1563), + [aux_sym_cmd_identifier_token17] = ACTIONS(1563), + [aux_sym_cmd_identifier_token18] = ACTIONS(1561), + [aux_sym_cmd_identifier_token19] = ACTIONS(1563), + [aux_sym_cmd_identifier_token20] = ACTIONS(1563), + [aux_sym_cmd_identifier_token21] = ACTIONS(1563), + [aux_sym_cmd_identifier_token22] = ACTIONS(1563), + [aux_sym_cmd_identifier_token23] = ACTIONS(1563), + [aux_sym_cmd_identifier_token24] = ACTIONS(1563), + [aux_sym_cmd_identifier_token25] = ACTIONS(1563), + [aux_sym_cmd_identifier_token26] = ACTIONS(1563), + [aux_sym_cmd_identifier_token27] = ACTIONS(1563), + [aux_sym_cmd_identifier_token28] = ACTIONS(1563), + [aux_sym_cmd_identifier_token29] = ACTIONS(1563), + [aux_sym_cmd_identifier_token30] = ACTIONS(1563), + [aux_sym_cmd_identifier_token31] = ACTIONS(1563), + [aux_sym_cmd_identifier_token32] = ACTIONS(1561), + [aux_sym_cmd_identifier_token33] = ACTIONS(1563), + [aux_sym_cmd_identifier_token34] = ACTIONS(1561), + [aux_sym_cmd_identifier_token35] = ACTIONS(1563), + [aux_sym_cmd_identifier_token36] = ACTIONS(1563), + [aux_sym_cmd_identifier_token37] = ACTIONS(1563), + [aux_sym_cmd_identifier_token38] = ACTIONS(1561), + [aux_sym_cmd_identifier_token39] = ACTIONS(1563), + [aux_sym_cmd_identifier_token40] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_def] = ACTIONS(1561), + [anon_sym_export_DASHenv] = ACTIONS(1561), + [anon_sym_extern] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_use] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [anon_sym_error] = ACTIONS(1561), + [anon_sym_DASH2] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_loop] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_match] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_source] = ACTIONS(1561), + [anon_sym_source_DASHenv] = ACTIONS(1561), + [anon_sym_register] = ACTIONS(1561), + [anon_sym_hide] = ACTIONS(1561), + [anon_sym_hide_DASHenv] = ACTIONS(1561), + [anon_sym_overlay] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1563), + [aux_sym_expr_unary_token1] = ACTIONS(1563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [aux_sym__val_number_decimal_token1] = ACTIONS(1561), + [aux_sym__val_number_decimal_token2] = ACTIONS(1563), + [aux_sym__val_number_decimal_token3] = ACTIONS(1563), + [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_token1] = ACTIONS(1563), + [aux_sym__val_number_token2] = ACTIONS(1563), + [aux_sym__val_number_token3] = ACTIONS(1563), + [aux_sym__val_number_token4] = ACTIONS(1561), + [aux_sym__val_number_token5] = ACTIONS(1561), + [aux_sym__val_number_token6] = ACTIONS(1561), + [anon_sym_0b] = ACTIONS(1561), + [anon_sym_0o] = ACTIONS(1561), + [anon_sym_0x] = ACTIONS(1561), + [sym_val_date] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [sym__str_single_quotes] = ACTIONS(1563), + [sym__str_back_ticks] = ACTIONS(1563), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1563), + [aux_sym_env_var_token1] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1563), + [aux_sym_command_token1] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1563), }, - [316] = { - [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(1573), - [anon_sym_alias] = ACTIONS(1573), - [anon_sym_let] = ACTIONS(1573), - [anon_sym_let_DASHenv] = ACTIONS(1573), - [anon_sym_mut] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [aux_sym_cmd_identifier_token1] = ACTIONS(1573), - [aux_sym_cmd_identifier_token2] = ACTIONS(1575), - [aux_sym_cmd_identifier_token3] = ACTIONS(1575), - [aux_sym_cmd_identifier_token4] = ACTIONS(1575), - [aux_sym_cmd_identifier_token5] = ACTIONS(1575), - [aux_sym_cmd_identifier_token6] = ACTIONS(1575), - [aux_sym_cmd_identifier_token7] = ACTIONS(1575), - [aux_sym_cmd_identifier_token8] = ACTIONS(1573), - [aux_sym_cmd_identifier_token9] = ACTIONS(1573), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1573), - [aux_sym_cmd_identifier_token13] = ACTIONS(1573), - [aux_sym_cmd_identifier_token14] = ACTIONS(1573), - [aux_sym_cmd_identifier_token15] = ACTIONS(1573), - [aux_sym_cmd_identifier_token16] = ACTIONS(1575), - [aux_sym_cmd_identifier_token17] = ACTIONS(1575), - [aux_sym_cmd_identifier_token18] = ACTIONS(1573), - [aux_sym_cmd_identifier_token19] = ACTIONS(1575), - [aux_sym_cmd_identifier_token20] = ACTIONS(1575), - [aux_sym_cmd_identifier_token21] = ACTIONS(1575), - [aux_sym_cmd_identifier_token22] = ACTIONS(1575), - [aux_sym_cmd_identifier_token23] = ACTIONS(1575), - [aux_sym_cmd_identifier_token24] = ACTIONS(1575), - [aux_sym_cmd_identifier_token25] = ACTIONS(1575), - [aux_sym_cmd_identifier_token26] = ACTIONS(1575), - [aux_sym_cmd_identifier_token27] = ACTIONS(1575), - [aux_sym_cmd_identifier_token28] = ACTIONS(1575), - [aux_sym_cmd_identifier_token29] = ACTIONS(1575), - [aux_sym_cmd_identifier_token30] = ACTIONS(1575), - [aux_sym_cmd_identifier_token31] = ACTIONS(1575), - [aux_sym_cmd_identifier_token32] = ACTIONS(1573), - [aux_sym_cmd_identifier_token33] = ACTIONS(1575), - [aux_sym_cmd_identifier_token34] = ACTIONS(1573), - [aux_sym_cmd_identifier_token35] = ACTIONS(1575), - [aux_sym_cmd_identifier_token36] = ACTIONS(1575), - [aux_sym_cmd_identifier_token37] = ACTIONS(1575), - [aux_sym_cmd_identifier_token38] = ACTIONS(1573), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [sym__newline] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1573), - [anon_sym_export_DASHenv] = ACTIONS(1573), - [anon_sym_extern] = ACTIONS(1573), - [anon_sym_module] = ACTIONS(1573), - [anon_sym_use] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_error] = ACTIONS(1573), - [anon_sym_DASH2] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_loop] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1573), - [anon_sym_try] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_source] = ACTIONS(1573), - [anon_sym_source_DASHenv] = ACTIONS(1573), - [anon_sym_register] = ACTIONS(1573), - [anon_sym_hide] = ACTIONS(1573), - [anon_sym_hide_DASHenv] = ACTIONS(1573), - [anon_sym_overlay] = ACTIONS(1573), - [anon_sym_where] = ACTIONS(1575), - [aux_sym_expr_unary_token1] = ACTIONS(1575), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), - [anon_sym_DOT_DOT_LT] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [aux_sym__val_number_decimal_token1] = ACTIONS(1573), - [aux_sym__val_number_decimal_token2] = ACTIONS(1575), - [aux_sym__val_number_decimal_token3] = ACTIONS(1575), - [aux_sym__val_number_decimal_token4] = ACTIONS(1575), - [aux_sym__val_number_token1] = ACTIONS(1575), - [aux_sym__val_number_token2] = ACTIONS(1575), - [aux_sym__val_number_token3] = ACTIONS(1575), - [aux_sym__val_number_token4] = ACTIONS(1573), - [aux_sym__val_number_token5] = ACTIONS(1573), - [aux_sym__val_number_token6] = ACTIONS(1573), - [anon_sym_0b] = ACTIONS(1573), - [anon_sym_0o] = ACTIONS(1573), - [anon_sym_0x] = ACTIONS(1573), - [sym_val_date] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [sym__str_single_quotes] = ACTIONS(1575), - [sym__str_back_ticks] = ACTIONS(1575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), - [aux_sym_env_var_token1] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1575), - [aux_sym_command_token1] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1575), + [314] = { + [sym__expr_parenthesized_immediate] = STATE(500), + [sym__immediate_decimal] = STATE(390), + [sym_val_variable] = STATE(500), + [sym_comment] = STATE(314), + [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), + [anon_sym_DOT] = ACTIONS(1571), + [aux_sym__immediate_decimal_token1] = ACTIONS(1573), + [aux_sym__immediate_decimal_token3] = ACTIONS(1573), + [aux_sym__immediate_decimal_token4] = ACTIONS(1575), + [aux_sym__immediate_decimal_token5] = ACTIONS(1577), + [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(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1579), }, - [317] = { - [sym_cmd_identifier] = STATE(4751), - [sym__expression_parenthesized] = STATE(3945), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(871), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(317), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1176), + [315] = { + [sym_cmd_identifier] = STATE(4846), + [sym__expression] = STATE(4087), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5178), + [sym_comment] = STATE(315), + [aux_sym_pipe_element_repeat2] = STATE(1172), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -118284,7 +120587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -118294,10 +120597,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -118314,44 +120617,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [318] = { - [sym_cmd_identifier] = STATE(4616), - [sym__expression] = STATE(3864), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(822), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4976), - [sym_comment] = STATE(318), - [aux_sym_pipe_element_repeat2] = STATE(1175), + [316] = { + [sym_comment] = STATE(316), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1501), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [aux_sym_cmd_identifier_token6] = ACTIONS(1501), + [aux_sym_cmd_identifier_token7] = ACTIONS(1501), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1501), + [aux_sym_cmd_identifier_token11] = ACTIONS(1501), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1501), + [aux_sym_cmd_identifier_token17] = ACTIONS(1501), + [aux_sym_cmd_identifier_token18] = ACTIONS(1499), + [aux_sym_cmd_identifier_token19] = ACTIONS(1501), + [aux_sym_cmd_identifier_token20] = ACTIONS(1501), + [aux_sym_cmd_identifier_token21] = ACTIONS(1501), + [aux_sym_cmd_identifier_token22] = ACTIONS(1501), + [aux_sym_cmd_identifier_token23] = ACTIONS(1501), + [aux_sym_cmd_identifier_token24] = ACTIONS(1501), + [aux_sym_cmd_identifier_token25] = ACTIONS(1501), + [aux_sym_cmd_identifier_token26] = ACTIONS(1501), + [aux_sym_cmd_identifier_token27] = ACTIONS(1501), + [aux_sym_cmd_identifier_token28] = ACTIONS(1501), + [aux_sym_cmd_identifier_token29] = ACTIONS(1501), + [aux_sym_cmd_identifier_token30] = ACTIONS(1501), + [aux_sym_cmd_identifier_token31] = ACTIONS(1501), + [aux_sym_cmd_identifier_token32] = ACTIONS(1499), + [aux_sym_cmd_identifier_token33] = ACTIONS(1501), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1501), + [aux_sym_cmd_identifier_token36] = ACTIONS(1501), + [aux_sym_cmd_identifier_token37] = ACTIONS(1501), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1501), + [aux_sym_cmd_identifier_token40] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_register] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_where] = ACTIONS(1501), + [aux_sym_expr_unary_token1] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [anon_sym_0b] = ACTIONS(1499), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [aux_sym_env_var_token1] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1501), + [aux_sym_command_token1] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [317] = { + [sym_cmd_identifier] = STATE(4892), + [sym__expression_parenthesized] = STATE(4174), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5366), + [sym_comment] = STATE(317), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -118394,7 +120807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -118404,10 +120817,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -118424,44 +120837,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(483), + [aux_sym_command_token1] = ACTIONS(485), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [318] = { + [sym_comment] = STATE(318), + [anon_sym_export] = ACTIONS(1548), + [anon_sym_alias] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_let_DASHenv] = ACTIONS(1548), + [anon_sym_mut] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [aux_sym_cmd_identifier_token1] = ACTIONS(1548), + [aux_sym_cmd_identifier_token2] = ACTIONS(1550), + [aux_sym_cmd_identifier_token3] = ACTIONS(1550), + [aux_sym_cmd_identifier_token4] = ACTIONS(1550), + [aux_sym_cmd_identifier_token5] = ACTIONS(1550), + [aux_sym_cmd_identifier_token6] = ACTIONS(1550), + [aux_sym_cmd_identifier_token7] = ACTIONS(1550), + [aux_sym_cmd_identifier_token8] = ACTIONS(1548), + [aux_sym_cmd_identifier_token9] = ACTIONS(1548), + [aux_sym_cmd_identifier_token10] = ACTIONS(1550), + [aux_sym_cmd_identifier_token11] = ACTIONS(1550), + [aux_sym_cmd_identifier_token12] = ACTIONS(1548), + [aux_sym_cmd_identifier_token13] = ACTIONS(1548), + [aux_sym_cmd_identifier_token14] = ACTIONS(1548), + [aux_sym_cmd_identifier_token15] = ACTIONS(1548), + [aux_sym_cmd_identifier_token16] = ACTIONS(1550), + [aux_sym_cmd_identifier_token17] = ACTIONS(1550), + [aux_sym_cmd_identifier_token18] = ACTIONS(1548), + [aux_sym_cmd_identifier_token19] = ACTIONS(1550), + [aux_sym_cmd_identifier_token20] = ACTIONS(1550), + [aux_sym_cmd_identifier_token21] = ACTIONS(1550), + [aux_sym_cmd_identifier_token22] = ACTIONS(1550), + [aux_sym_cmd_identifier_token23] = ACTIONS(1550), + [aux_sym_cmd_identifier_token24] = ACTIONS(1550), + [aux_sym_cmd_identifier_token25] = ACTIONS(1550), + [aux_sym_cmd_identifier_token26] = ACTIONS(1550), + [aux_sym_cmd_identifier_token27] = ACTIONS(1550), + [aux_sym_cmd_identifier_token28] = ACTIONS(1550), + [aux_sym_cmd_identifier_token29] = ACTIONS(1550), + [aux_sym_cmd_identifier_token30] = ACTIONS(1550), + [aux_sym_cmd_identifier_token31] = ACTIONS(1550), + [aux_sym_cmd_identifier_token32] = ACTIONS(1548), + [aux_sym_cmd_identifier_token33] = ACTIONS(1550), + [aux_sym_cmd_identifier_token34] = ACTIONS(1548), + [aux_sym_cmd_identifier_token35] = ACTIONS(1550), + [aux_sym_cmd_identifier_token36] = ACTIONS(1550), + [aux_sym_cmd_identifier_token37] = ACTIONS(1550), + [aux_sym_cmd_identifier_token38] = ACTIONS(1548), + [aux_sym_cmd_identifier_token39] = ACTIONS(1550), + [aux_sym_cmd_identifier_token40] = ACTIONS(1550), + [sym__newline] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_def] = ACTIONS(1548), + [anon_sym_export_DASHenv] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_module] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_error] = ACTIONS(1548), + [anon_sym_DASH2] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_try] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_source] = ACTIONS(1548), + [anon_sym_source_DASHenv] = ACTIONS(1548), + [anon_sym_register] = ACTIONS(1548), + [anon_sym_hide] = ACTIONS(1548), + [anon_sym_hide_DASHenv] = ACTIONS(1548), + [anon_sym_overlay] = ACTIONS(1548), + [anon_sym_where] = ACTIONS(1550), + [aux_sym_expr_unary_token1] = ACTIONS(1550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), + [anon_sym_DOT_DOT_LT] = ACTIONS(1550), + [anon_sym_null] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [aux_sym__val_number_decimal_token1] = ACTIONS(1548), + [aux_sym__val_number_decimal_token2] = ACTIONS(1550), + [aux_sym__val_number_decimal_token3] = ACTIONS(1550), + [aux_sym__val_number_decimal_token4] = ACTIONS(1550), + [aux_sym__val_number_token1] = ACTIONS(1550), + [aux_sym__val_number_token2] = ACTIONS(1550), + [aux_sym__val_number_token3] = ACTIONS(1550), + [aux_sym__val_number_token4] = ACTIONS(1548), + [aux_sym__val_number_token5] = ACTIONS(1548), + [aux_sym__val_number_token6] = ACTIONS(1548), + [anon_sym_0b] = ACTIONS(1548), + [anon_sym_0o] = ACTIONS(1548), + [anon_sym_0x] = ACTIONS(1548), + [sym_val_date] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [sym__str_single_quotes] = ACTIONS(1550), + [sym__str_back_ticks] = ACTIONS(1550), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), + [aux_sym_env_var_token1] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1550), + [aux_sym_command_token1] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1550), + }, [319] = { - [sym_cmd_identifier] = STATE(4751), - [sym__expression_parenthesized] = STATE(3945), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5013), [sym_comment] = STATE(319), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1176), + [anon_sym_export] = ACTIONS(1583), + [anon_sym_alias] = ACTIONS(1583), + [anon_sym_let] = ACTIONS(1583), + [anon_sym_let_DASHenv] = ACTIONS(1583), + [anon_sym_mut] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [aux_sym_cmd_identifier_token1] = ACTIONS(1583), + [aux_sym_cmd_identifier_token2] = ACTIONS(1585), + [aux_sym_cmd_identifier_token3] = ACTIONS(1585), + [aux_sym_cmd_identifier_token4] = ACTIONS(1585), + [aux_sym_cmd_identifier_token5] = ACTIONS(1585), + [aux_sym_cmd_identifier_token6] = ACTIONS(1585), + [aux_sym_cmd_identifier_token7] = ACTIONS(1585), + [aux_sym_cmd_identifier_token8] = ACTIONS(1583), + [aux_sym_cmd_identifier_token9] = ACTIONS(1583), + [aux_sym_cmd_identifier_token10] = ACTIONS(1585), + [aux_sym_cmd_identifier_token11] = ACTIONS(1585), + [aux_sym_cmd_identifier_token12] = ACTIONS(1583), + [aux_sym_cmd_identifier_token13] = ACTIONS(1583), + [aux_sym_cmd_identifier_token14] = ACTIONS(1583), + [aux_sym_cmd_identifier_token15] = ACTIONS(1583), + [aux_sym_cmd_identifier_token16] = ACTIONS(1585), + [aux_sym_cmd_identifier_token17] = ACTIONS(1585), + [aux_sym_cmd_identifier_token18] = ACTIONS(1583), + [aux_sym_cmd_identifier_token19] = ACTIONS(1585), + [aux_sym_cmd_identifier_token20] = ACTIONS(1585), + [aux_sym_cmd_identifier_token21] = ACTIONS(1585), + [aux_sym_cmd_identifier_token22] = ACTIONS(1585), + [aux_sym_cmd_identifier_token23] = ACTIONS(1585), + [aux_sym_cmd_identifier_token24] = ACTIONS(1585), + [aux_sym_cmd_identifier_token25] = ACTIONS(1585), + [aux_sym_cmd_identifier_token26] = ACTIONS(1585), + [aux_sym_cmd_identifier_token27] = ACTIONS(1585), + [aux_sym_cmd_identifier_token28] = ACTIONS(1585), + [aux_sym_cmd_identifier_token29] = ACTIONS(1585), + [aux_sym_cmd_identifier_token30] = ACTIONS(1585), + [aux_sym_cmd_identifier_token31] = ACTIONS(1585), + [aux_sym_cmd_identifier_token32] = ACTIONS(1583), + [aux_sym_cmd_identifier_token33] = ACTIONS(1585), + [aux_sym_cmd_identifier_token34] = ACTIONS(1583), + [aux_sym_cmd_identifier_token35] = ACTIONS(1585), + [aux_sym_cmd_identifier_token36] = ACTIONS(1585), + [aux_sym_cmd_identifier_token37] = ACTIONS(1585), + [aux_sym_cmd_identifier_token38] = ACTIONS(1583), + [aux_sym_cmd_identifier_token39] = ACTIONS(1585), + [aux_sym_cmd_identifier_token40] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1583), + [anon_sym_export_DASHenv] = ACTIONS(1583), + [anon_sym_extern] = ACTIONS(1583), + [anon_sym_module] = ACTIONS(1583), + [anon_sym_use] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1583), + [anon_sym_error] = ACTIONS(1583), + [anon_sym_DASH2] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_do] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_source] = ACTIONS(1583), + [anon_sym_source_DASHenv] = ACTIONS(1583), + [anon_sym_register] = ACTIONS(1583), + [anon_sym_hide] = ACTIONS(1583), + [anon_sym_hide_DASHenv] = ACTIONS(1583), + [anon_sym_overlay] = ACTIONS(1583), + [anon_sym_where] = ACTIONS(1585), + [aux_sym_expr_unary_token1] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1583), + [aux_sym__val_number_decimal_token2] = ACTIONS(1585), + [aux_sym__val_number_decimal_token3] = ACTIONS(1585), + [aux_sym__val_number_decimal_token4] = ACTIONS(1585), + [aux_sym__val_number_token1] = ACTIONS(1585), + [aux_sym__val_number_token2] = ACTIONS(1585), + [aux_sym__val_number_token3] = ACTIONS(1585), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1583), + [anon_sym_0o] = ACTIONS(1583), + [anon_sym_0x] = ACTIONS(1583), + [sym_val_date] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1585), + [sym__str_single_quotes] = ACTIONS(1585), + [sym__str_back_ticks] = ACTIONS(1585), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1585), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1585), + [aux_sym_env_var_token1] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1585), + [aux_sym_command_token1] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1585), + }, + [320] = { + [sym_cmd_identifier] = STATE(4892), + [sym__expression_parenthesized] = STATE(4174), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(869), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5366), + [sym_comment] = STATE(320), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -118504,7 +121137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -118514,10 +121147,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -118539,259 +121172,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [320] = { - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(1585), - [anon_sym_alias] = ACTIONS(1585), - [anon_sym_let] = ACTIONS(1585), - [anon_sym_let_DASHenv] = ACTIONS(1585), - [anon_sym_mut] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [aux_sym_cmd_identifier_token1] = ACTIONS(1585), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1585), - [aux_sym_cmd_identifier_token9] = ACTIONS(1585), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1585), - [aux_sym_cmd_identifier_token13] = ACTIONS(1585), - [aux_sym_cmd_identifier_token14] = ACTIONS(1585), - [aux_sym_cmd_identifier_token15] = ACTIONS(1585), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1585), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1585), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1585), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [aux_sym_cmd_identifier_token37] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1585), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_export_DASHenv] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym_module] = ACTIONS(1585), - [anon_sym_use] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1585), - [anon_sym_error] = ACTIONS(1585), - [anon_sym_DASH2] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_source] = ACTIONS(1585), - [anon_sym_source_DASHenv] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_hide] = ACTIONS(1585), - [anon_sym_hide_DASHenv] = ACTIONS(1585), - [anon_sym_overlay] = ACTIONS(1585), - [anon_sym_where] = ACTIONS(1587), - [aux_sym_expr_unary_token1] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [aux_sym__val_number_decimal_token1] = ACTIONS(1585), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1585), - [aux_sym__val_number_token5] = ACTIONS(1585), - [aux_sym__val_number_token6] = ACTIONS(1585), - [anon_sym_0b] = ACTIONS(1585), - [anon_sym_0o] = ACTIONS(1585), - [anon_sym_0x] = ACTIONS(1585), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), - [aux_sym_env_var_token1] = ACTIONS(1585), - [anon_sym_CARET] = ACTIONS(1587), - [aux_sym_command_token1] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1587), - }, [321] = { - [sym__expr_parenthesized_immediate] = STATE(461), - [sym__immediate_decimal] = STATE(386), - [sym_val_variable] = STATE(461), + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if] = STATE(5223), + [sym_block] = STATE(5224), + [sym__expression] = STATE(5224), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1256), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5224), [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [aux_sym_cmd_identifier_token37] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1593), - [anon_sym_PLUS2] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1595), - [aux_sym__immediate_decimal_token1] = ACTIONS(1597), - [aux_sym__immediate_decimal_token3] = ACTIONS(1597), - [aux_sym__immediate_decimal_token4] = ACTIONS(1599), - [aux_sym__immediate_decimal_token5] = ACTIONS(1601), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1603), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1603), - }, - [322] = { - [sym_cmd_identifier] = STATE(4616), - [sym__expression] = STATE(3864), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4976), - [sym_comment] = STATE(322), - [aux_sym_pipe_element_repeat2] = STATE(1175), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -118834,9 +121247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118844,10 +121258,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1520), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -118863,155 +121277,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [323] = { - [sym_cmd_identifier] = STATE(4789), - [sym_ctrl_if] = STATE(5148), - [sym_block] = STATE(5149), - [sym__expression] = STATE(5149), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3972), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_command] = STATE(5149), - [sym_comment] = STATE(323), - [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(19), - [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(19), - [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(1060), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_if] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(1607), - [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(1609), - [aux_sym__val_number_decimal_token2] = ACTIONS(1611), - [aux_sym__val_number_decimal_token3] = ACTIONS(1613), - [aux_sym__val_number_decimal_token4] = ACTIONS(1615), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [324] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if] = STATE(4808), - [sym_block] = STATE(4812), - [sym__expression] = STATE(4812), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1249), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(4812), - [sym_comment] = STATE(324), + [322] = { + [sym_cmd_identifier] = STATE(4846), + [sym__expression] = STATE(4087), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(838), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5178), + [sym_comment] = STATE(322), + [aux_sym_pipe_element_repeat2] = STATE(1172), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -119054,10 +121357,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -119065,10 +121367,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1512), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -119084,44 +121386,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [325] = { - [sym_cmd_identifier] = STATE(4616), - [sym__expression] = STATE(3864), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(871), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4976), - [sym_comment] = STATE(325), - [aux_sym_pipe_element_repeat2] = STATE(1175), + [323] = { + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if] = STATE(5223), + [sym_block] = STATE(5224), + [sym__expression] = STATE(5224), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1229), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5224), + [sym_comment] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -119164,9 +121467,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -119174,10 +121478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1577), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1524), + [aux_sym__val_number_decimal_token2] = ACTIONS(1526), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -119193,45 +121497,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [326] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if] = STATE(4808), - [sym_block] = STATE(4812), - [sym__expression] = STATE(4812), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(4812), - [sym_comment] = STATE(326), + [324] = { + [sym_cmd_identifier] = STATE(4846), + [sym__expression] = STATE(4087), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(869), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5178), + [sym_comment] = STATE(324), + [aux_sym_pipe_element_repeat2] = STATE(1172), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -119274,10 +121577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -119285,10 +121587,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1494), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1498), - [aux_sym__val_number_decimal_token4] = ACTIONS(1500), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1589), + [aux_sym__val_number_decimal_token3] = ACTIONS(1591), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -119304,44 +121606,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [327] = { - [sym_cmd_identifier] = STATE(4616), - [sym__expression] = STATE(3864), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(4976), - [sym_comment] = STATE(327), - [aux_sym_pipe_element_repeat2] = STATE(1175), + [325] = { + [sym_cmd_identifier] = STATE(5044), + [sym_ctrl_if] = STATE(5321), + [sym_block] = STATE(5358), + [sym__expression] = STATE(5358), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4216), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1209), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_command] = STATE(5358), + [sym_comment] = STATE(325), + [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(19), + [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(19), + [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(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_if] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(1597), + [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(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1603), + [aux_sym__val_number_decimal_token4] = ACTIONS(1605), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [326] = { + [sym_cmd_identifier] = STATE(4846), + [sym__expression] = STATE(4087), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4218), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(829), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5178), + [sym_comment] = STATE(326), + [aux_sym_pipe_element_repeat2] = STATE(1172), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -119384,7 +121797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -119394,10 +121807,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(423), + [aux_sym__val_number_decimal_token2] = ACTIONS(425), + [aux_sym__val_number_decimal_token3] = ACTIONS(427), + [aux_sym__val_number_decimal_token4] = ACTIONS(429), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -119419,39 +121832,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [328] = { - [sym_cmd_identifier] = STATE(4751), - [sym__expression_parenthesized] = STATE(3945), - [sym_expr_unary] = STATE(2450), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2450), - [sym__expr_binary_expression_parenthesized] = STATE(3865), - [sym_expr_parenthesized] = STATE(2172), - [sym_val_range] = STATE(3950), - [sym__value] = STATE(2450), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(842), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_env_var] = STATE(6937), - [sym__command_parenthesized] = STATE(5013), - [sym_comment] = STATE(328), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1176), + [327] = { + [sym_cmd_identifier] = STATE(4892), + [sym__expression_parenthesized] = STATE(4174), + [sym_expr_unary] = STATE(2441), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2441), + [sym__expr_binary_expression_parenthesized] = STATE(4088), + [sym_expr_parenthesized] = STATE(2041), + [sym_val_range] = STATE(2441), + [sym__value] = STATE(2441), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(825), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_env_var] = STATE(7562), + [sym__command_parenthesized] = STATE(5366), + [sym_comment] = STATE(327), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), [aux_sym_cmd_identifier_token3] = ACTIONS(369), @@ -119494,7 +121907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -119504,10 +121917,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1068), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(475), + [aux_sym__val_number_decimal_token2] = ACTIONS(477), + [aux_sym__val_number_decimal_token3] = ACTIONS(479), + [aux_sym__val_number_decimal_token4] = ACTIONS(481), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -119529,148 +121942,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [328] = { + [sym_cmd_identifier] = STATE(5044), + [sym__expression] = STATE(4177), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4209), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(833), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_env_var] = STATE(8133), + [sym_command] = STATE(5367), + [sym_comment] = STATE(328), + [aux_sym_pipe_element_repeat2] = STATE(1172), + [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(19), + [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(19), + [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(1070), + [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), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, [329] = { [sym_comment] = STATE(329), - [anon_sym_export] = ACTIONS(1558), - [anon_sym_alias] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_let_DASHenv] = ACTIONS(1558), - [anon_sym_mut] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [aux_sym_cmd_identifier_token1] = ACTIONS(1558), - [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(1558), - [aux_sym_cmd_identifier_token9] = ACTIONS(1558), - [aux_sym_cmd_identifier_token10] = ACTIONS(1560), - [aux_sym_cmd_identifier_token11] = ACTIONS(1560), - [aux_sym_cmd_identifier_token12] = ACTIONS(1558), - [aux_sym_cmd_identifier_token13] = ACTIONS(1558), - [aux_sym_cmd_identifier_token14] = ACTIONS(1558), - [aux_sym_cmd_identifier_token15] = ACTIONS(1558), - [aux_sym_cmd_identifier_token16] = ACTIONS(1560), - [aux_sym_cmd_identifier_token17] = ACTIONS(1560), - [aux_sym_cmd_identifier_token18] = ACTIONS(1558), - [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(1558), - [aux_sym_cmd_identifier_token33] = ACTIONS(1560), - [aux_sym_cmd_identifier_token34] = ACTIONS(1558), - [aux_sym_cmd_identifier_token35] = ACTIONS(1560), - [aux_sym_cmd_identifier_token36] = ACTIONS(1560), - [aux_sym_cmd_identifier_token37] = ACTIONS(1560), - [aux_sym_cmd_identifier_token38] = ACTIONS(1558), - [aux_sym_cmd_identifier_token39] = ACTIONS(1560), - [aux_sym_cmd_identifier_token40] = ACTIONS(1560), - [sym__newline] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_def] = ACTIONS(1558), - [anon_sym_export_DASHenv] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_module] = ACTIONS(1558), - [anon_sym_use] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_error] = ACTIONS(1558), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_loop] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_do] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_source] = ACTIONS(1558), - [anon_sym_source_DASHenv] = ACTIONS(1558), - [anon_sym_register] = ACTIONS(1558), - [anon_sym_hide] = ACTIONS(1558), - [anon_sym_hide_DASHenv] = ACTIONS(1558), - [anon_sym_overlay] = ACTIONS(1558), - [anon_sym_where] = ACTIONS(1560), - [aux_sym_expr_unary_token1] = ACTIONS(1560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), - [anon_sym_DOT_DOT_LT] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [aux_sym__val_number_decimal_token1] = ACTIONS(1558), - [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), - [aux_sym__val_number_token4] = ACTIONS(1558), - [aux_sym__val_number_token5] = ACTIONS(1558), - [aux_sym__val_number_token6] = ACTIONS(1558), - [anon_sym_0b] = ACTIONS(1558), - [anon_sym_0o] = ACTIONS(1558), - [anon_sym_0x] = ACTIONS(1558), - [sym_val_date] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1560), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1560), - [aux_sym_env_var_token1] = ACTIONS(1558), - [anon_sym_CARET] = ACTIONS(1560), - [aux_sym_command_token1] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1560), + [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(1607), + [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(1607), + [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), + [sym__newline] = ACTIONS(1609), + [anon_sym_SEMI] = 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_LBRACK] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1609), + [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_loop] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_try] = 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_where] = ACTIONS(1609), + [aux_sym_expr_unary_token1] = ACTIONS(1609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1609), + [anon_sym_DOT_DOT_LT] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [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), + [anon_sym_0b] = ACTIONS(1607), + [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), + [aux_sym_env_var_token1] = ACTIONS(1607), + [anon_sym_CARET] = ACTIONS(1609), + [aux_sym_command_token1] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1609), }, [330] = { - [sym_cmd_identifier] = STATE(4616), - [sym_ctrl_if] = STATE(4808), - [sym_block] = STATE(4812), - [sym__expression] = STATE(4812), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1210), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_command] = STATE(4812), + [sym_cmd_identifier] = STATE(4846), + [sym_ctrl_if] = STATE(5223), + [sym_block] = STATE(5224), + [sym__expression] = STATE(5224), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1225), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_command] = STATE(5224), [sym_comment] = STATE(330), [aux_sym_cmd_identifier_token1] = ACTIONS(367), [aux_sym_cmd_identifier_token2] = ACTIONS(369), @@ -119714,10 +122237,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(1486), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -119725,10 +122248,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1611), + [aux_sym__val_number_decimal_token2] = ACTIONS(1613), + [aux_sym__val_number_decimal_token3] = ACTIONS(1615), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -119750,445 +122273,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(439), }, [331] = { + [sym__expr_parenthesized_immediate] = STATE(546), + [sym__immediate_decimal] = STATE(438), + [sym_val_variable] = STATE(546), [sym_comment] = STATE(331), - [anon_sym_export] = ACTIONS(1619), - [anon_sym_alias] = ACTIONS(1619), - [anon_sym_let] = ACTIONS(1619), - [anon_sym_let_DASHenv] = ACTIONS(1619), - [anon_sym_mut] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [aux_sym_cmd_identifier_token1] = ACTIONS(1619), - [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(1619), - [aux_sym_cmd_identifier_token9] = ACTIONS(1619), - [aux_sym_cmd_identifier_token10] = ACTIONS(1621), - [aux_sym_cmd_identifier_token11] = ACTIONS(1621), - [aux_sym_cmd_identifier_token12] = ACTIONS(1619), - [aux_sym_cmd_identifier_token13] = ACTIONS(1619), - [aux_sym_cmd_identifier_token14] = ACTIONS(1619), - [aux_sym_cmd_identifier_token15] = ACTIONS(1619), - [aux_sym_cmd_identifier_token16] = ACTIONS(1621), - [aux_sym_cmd_identifier_token17] = ACTIONS(1621), - [aux_sym_cmd_identifier_token18] = ACTIONS(1619), - [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(1619), - [aux_sym_cmd_identifier_token33] = ACTIONS(1621), - [aux_sym_cmd_identifier_token34] = ACTIONS(1619), - [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(1619), - [aux_sym_cmd_identifier_token39] = ACTIONS(1621), - [aux_sym_cmd_identifier_token40] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_def] = ACTIONS(1619), - [anon_sym_export_DASHenv] = ACTIONS(1619), - [anon_sym_extern] = ACTIONS(1619), - [anon_sym_module] = ACTIONS(1619), - [anon_sym_use] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), + [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(1579), + [aux_sym_cmd_identifier_token3] = ACTIONS(1579), + [aux_sym_cmd_identifier_token4] = ACTIONS(1579), + [aux_sym_cmd_identifier_token5] = ACTIONS(1579), + [aux_sym_cmd_identifier_token6] = ACTIONS(1579), + [aux_sym_cmd_identifier_token7] = ACTIONS(1579), + [aux_sym_cmd_identifier_token8] = ACTIONS(1565), + [aux_sym_cmd_identifier_token9] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1579), + [aux_sym_cmd_identifier_token11] = ACTIONS(1579), + [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(1579), + [aux_sym_cmd_identifier_token17] = ACTIONS(1579), + [aux_sym_cmd_identifier_token18] = ACTIONS(1579), + [aux_sym_cmd_identifier_token19] = ACTIONS(1579), + [aux_sym_cmd_identifier_token20] = ACTIONS(1579), + [aux_sym_cmd_identifier_token21] = ACTIONS(1579), + [aux_sym_cmd_identifier_token22] = ACTIONS(1579), + [aux_sym_cmd_identifier_token23] = ACTIONS(1579), + [aux_sym_cmd_identifier_token24] = ACTIONS(1579), + [aux_sym_cmd_identifier_token25] = ACTIONS(1579), + [aux_sym_cmd_identifier_token26] = ACTIONS(1579), + [aux_sym_cmd_identifier_token27] = ACTIONS(1579), + [aux_sym_cmd_identifier_token28] = ACTIONS(1579), + [aux_sym_cmd_identifier_token29] = ACTIONS(1579), + [aux_sym_cmd_identifier_token30] = ACTIONS(1579), + [aux_sym_cmd_identifier_token31] = ACTIONS(1579), + [aux_sym_cmd_identifier_token32] = ACTIONS(1579), + [aux_sym_cmd_identifier_token33] = ACTIONS(1579), + [aux_sym_cmd_identifier_token34] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1579), + [aux_sym_cmd_identifier_token36] = ACTIONS(1579), + [aux_sym_cmd_identifier_token37] = ACTIONS(1579), + [aux_sym_cmd_identifier_token38] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1579), + [aux_sym_cmd_identifier_token40] = ACTIONS(1579), + [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(1619), - [anon_sym_error] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_loop] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_match] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_DOT_DOT] = ACTIONS(1619), - [anon_sym_try] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_source] = ACTIONS(1619), - [anon_sym_source_DASHenv] = ACTIONS(1619), - [anon_sym_register] = ACTIONS(1619), - [anon_sym_hide] = ACTIONS(1619), - [anon_sym_hide_DASHenv] = ACTIONS(1619), - [anon_sym_overlay] = ACTIONS(1619), - [anon_sym_where] = ACTIONS(1621), - [aux_sym_expr_unary_token1] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [aux_sym__val_number_decimal_token1] = ACTIONS(1619), - [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(1619), - [aux_sym__val_number_token5] = ACTIONS(1619), - [aux_sym__val_number_token6] = ACTIONS(1619), - [anon_sym_0b] = ACTIONS(1619), - [anon_sym_0o] = ACTIONS(1619), - [anon_sym_0x] = ACTIONS(1619), - [sym_val_date] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym__str_single_quotes] = ACTIONS(1621), - [sym__str_back_ticks] = ACTIONS(1621), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1621), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1621), - [aux_sym_env_var_token1] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1621), - [aux_sym_command_token1] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1621), + [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(1579), + [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(1621), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1625), + [aux_sym__immediate_decimal_token3] = ACTIONS(1627), + [aux_sym__immediate_decimal_token4] = ACTIONS(1629), + [aux_sym__immediate_decimal_token5] = ACTIONS(1631), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [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(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1579), }, [332] = { - [sym_cmd_identifier] = STATE(4789), - [sym__expression] = STATE(3954), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3990), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_env_var] = STATE(7468), - [sym_command] = STATE(5084), + [sym__expr_parenthesized_immediate] = STATE(455), + [sym__immediate_decimal] = STATE(456), + [sym_val_variable] = STATE(455), [sym_comment] = STATE(332), - [aux_sym_pipe_element_repeat2] = STATE(1175), - [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(19), - [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(19), - [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(1060), - [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), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [anon_sym_export] = ACTIONS(1633), + [anon_sym_alias] = ACTIONS(1633), + [anon_sym_let] = ACTIONS(1633), + [anon_sym_let_DASHenv] = ACTIONS(1633), + [anon_sym_mut] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [aux_sym_cmd_identifier_token1] = ACTIONS(1633), + [aux_sym_cmd_identifier_token2] = ACTIONS(1633), + [aux_sym_cmd_identifier_token3] = ACTIONS(1633), + [aux_sym_cmd_identifier_token4] = ACTIONS(1633), + [aux_sym_cmd_identifier_token5] = ACTIONS(1633), + [aux_sym_cmd_identifier_token6] = ACTIONS(1633), + [aux_sym_cmd_identifier_token7] = ACTIONS(1633), + [aux_sym_cmd_identifier_token8] = ACTIONS(1633), + [aux_sym_cmd_identifier_token9] = ACTIONS(1633), + [aux_sym_cmd_identifier_token10] = ACTIONS(1633), + [aux_sym_cmd_identifier_token11] = ACTIONS(1633), + [aux_sym_cmd_identifier_token12] = ACTIONS(1633), + [aux_sym_cmd_identifier_token13] = ACTIONS(1633), + [aux_sym_cmd_identifier_token14] = ACTIONS(1633), + [aux_sym_cmd_identifier_token15] = ACTIONS(1633), + [aux_sym_cmd_identifier_token16] = ACTIONS(1633), + [aux_sym_cmd_identifier_token17] = ACTIONS(1633), + [aux_sym_cmd_identifier_token18] = ACTIONS(1633), + [aux_sym_cmd_identifier_token19] = ACTIONS(1633), + [aux_sym_cmd_identifier_token20] = ACTIONS(1633), + [aux_sym_cmd_identifier_token21] = ACTIONS(1633), + [aux_sym_cmd_identifier_token22] = ACTIONS(1633), + [aux_sym_cmd_identifier_token23] = ACTIONS(1633), + [aux_sym_cmd_identifier_token24] = ACTIONS(1633), + [aux_sym_cmd_identifier_token25] = ACTIONS(1633), + [aux_sym_cmd_identifier_token26] = ACTIONS(1633), + [aux_sym_cmd_identifier_token27] = ACTIONS(1633), + [aux_sym_cmd_identifier_token28] = ACTIONS(1633), + [aux_sym_cmd_identifier_token29] = ACTIONS(1633), + [aux_sym_cmd_identifier_token30] = ACTIONS(1633), + [aux_sym_cmd_identifier_token31] = ACTIONS(1633), + [aux_sym_cmd_identifier_token32] = ACTIONS(1633), + [aux_sym_cmd_identifier_token33] = ACTIONS(1633), + [aux_sym_cmd_identifier_token34] = ACTIONS(1633), + [aux_sym_cmd_identifier_token35] = ACTIONS(1633), + [aux_sym_cmd_identifier_token36] = ACTIONS(1633), + [aux_sym_cmd_identifier_token37] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_export_DASHenv] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym_module] = ACTIONS(1633), + [anon_sym_use] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_error] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_make] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_else] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_catch] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_source] = ACTIONS(1633), + [anon_sym_source_DASHenv] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_hide] = ACTIONS(1633), + [anon_sym_hide_DASHenv] = ACTIONS(1633), + [anon_sym_overlay] = ACTIONS(1633), + [anon_sym_as] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [anon_sym_DOT] = ACTIONS(1635), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1637), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), + [aux_sym__immediate_decimal_token5] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [aux_sym__val_number_token4] = ACTIONS(1633), + [aux_sym__val_number_token5] = ACTIONS(1633), + [aux_sym__val_number_token6] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [sym__entry_separator] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1643), }, [333] = { - [sym__expr_parenthesized_immediate] = STATE(548), - [sym__immediate_decimal] = STATE(444), - [sym_val_variable] = STATE(548), + [sym__expr_parenthesized_immediate] = STATE(647), + [sym__immediate_decimal] = STATE(533), + [sym_val_variable] = STATE(647), [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1603), - [aux_sym_cmd_identifier_token3] = ACTIONS(1603), - [aux_sym_cmd_identifier_token4] = ACTIONS(1603), - [aux_sym_cmd_identifier_token5] = ACTIONS(1603), - [aux_sym_cmd_identifier_token6] = ACTIONS(1603), - [aux_sym_cmd_identifier_token7] = ACTIONS(1603), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1603), - [aux_sym_cmd_identifier_token11] = ACTIONS(1603), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1603), - [aux_sym_cmd_identifier_token17] = ACTIONS(1603), - [aux_sym_cmd_identifier_token18] = ACTIONS(1603), - [aux_sym_cmd_identifier_token19] = ACTIONS(1603), - [aux_sym_cmd_identifier_token20] = ACTIONS(1603), - [aux_sym_cmd_identifier_token21] = ACTIONS(1603), - [aux_sym_cmd_identifier_token22] = ACTIONS(1603), - [aux_sym_cmd_identifier_token23] = ACTIONS(1603), - [aux_sym_cmd_identifier_token24] = ACTIONS(1603), - [aux_sym_cmd_identifier_token25] = ACTIONS(1603), - [aux_sym_cmd_identifier_token26] = ACTIONS(1603), - [aux_sym_cmd_identifier_token27] = ACTIONS(1603), - [aux_sym_cmd_identifier_token28] = ACTIONS(1603), - [aux_sym_cmd_identifier_token29] = ACTIONS(1603), - [aux_sym_cmd_identifier_token30] = ACTIONS(1603), - [aux_sym_cmd_identifier_token31] = ACTIONS(1603), - [aux_sym_cmd_identifier_token32] = ACTIONS(1603), - [aux_sym_cmd_identifier_token33] = ACTIONS(1603), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1603), - [aux_sym_cmd_identifier_token36] = ACTIONS(1603), - [aux_sym_cmd_identifier_token37] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1623), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1625), - [anon_sym_PLUS2] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), - [anon_sym_DOT] = ACTIONS(1627), - [aux_sym__immediate_decimal_token1] = ACTIONS(1629), - [aux_sym__immediate_decimal_token3] = ACTIONS(1631), - [aux_sym__immediate_decimal_token4] = ACTIONS(1633), - [aux_sym__immediate_decimal_token5] = ACTIONS(1635), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1603), - }, - [334] = { - [sym_comment] = STATE(334), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_alias] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_let_DASHenv] = ACTIONS(1637), - [anon_sym_mut] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [aux_sym_cmd_identifier_token1] = ACTIONS(1637), - [aux_sym_cmd_identifier_token2] = ACTIONS(1637), - [aux_sym_cmd_identifier_token3] = ACTIONS(1637), - [aux_sym_cmd_identifier_token4] = ACTIONS(1637), - [aux_sym_cmd_identifier_token5] = ACTIONS(1637), - [aux_sym_cmd_identifier_token6] = ACTIONS(1637), - [aux_sym_cmd_identifier_token7] = ACTIONS(1637), - [aux_sym_cmd_identifier_token8] = ACTIONS(1637), - [aux_sym_cmd_identifier_token9] = ACTIONS(1637), - [aux_sym_cmd_identifier_token10] = ACTIONS(1637), - [aux_sym_cmd_identifier_token11] = ACTIONS(1637), - [aux_sym_cmd_identifier_token12] = ACTIONS(1637), - [aux_sym_cmd_identifier_token13] = ACTIONS(1637), - [aux_sym_cmd_identifier_token14] = ACTIONS(1637), - [aux_sym_cmd_identifier_token15] = ACTIONS(1637), - [aux_sym_cmd_identifier_token16] = ACTIONS(1637), - [aux_sym_cmd_identifier_token17] = ACTIONS(1637), - [aux_sym_cmd_identifier_token18] = ACTIONS(1637), - [aux_sym_cmd_identifier_token19] = ACTIONS(1637), - [aux_sym_cmd_identifier_token20] = ACTIONS(1637), - [aux_sym_cmd_identifier_token21] = ACTIONS(1637), - [aux_sym_cmd_identifier_token22] = ACTIONS(1637), - [aux_sym_cmd_identifier_token23] = ACTIONS(1637), - [aux_sym_cmd_identifier_token24] = ACTIONS(1637), - [aux_sym_cmd_identifier_token25] = ACTIONS(1637), - [aux_sym_cmd_identifier_token26] = ACTIONS(1637), - [aux_sym_cmd_identifier_token27] = ACTIONS(1637), - [aux_sym_cmd_identifier_token28] = ACTIONS(1637), - [aux_sym_cmd_identifier_token29] = ACTIONS(1637), - [aux_sym_cmd_identifier_token30] = ACTIONS(1637), - [aux_sym_cmd_identifier_token31] = ACTIONS(1637), - [aux_sym_cmd_identifier_token32] = ACTIONS(1637), - [aux_sym_cmd_identifier_token33] = ACTIONS(1637), - [aux_sym_cmd_identifier_token34] = ACTIONS(1637), - [aux_sym_cmd_identifier_token35] = ACTIONS(1637), - [aux_sym_cmd_identifier_token36] = ACTIONS(1637), - [aux_sym_cmd_identifier_token37] = ACTIONS(1637), - [aux_sym_cmd_identifier_token38] = ACTIONS(1637), - [aux_sym_cmd_identifier_token39] = ACTIONS(1637), - [aux_sym_cmd_identifier_token40] = ACTIONS(1637), - [anon_sym_def] = ACTIONS(1637), - [anon_sym_export_DASHenv] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym_module] = ACTIONS(1637), - [anon_sym_use] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_error] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_loop] = ACTIONS(1637), - [anon_sym_make] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_catch] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_source] = ACTIONS(1637), - [anon_sym_source_DASHenv] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_hide] = ACTIONS(1637), - [anon_sym_hide_DASHenv] = ACTIONS(1637), - [anon_sym_overlay] = ACTIONS(1637), - [anon_sym_as] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(1641), - [aux_sym__immediate_decimal_token2] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1637), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1637), - [aux_sym__val_number_decimal_token3] = ACTIONS(1637), - [aux_sym__val_number_decimal_token4] = ACTIONS(1637), - [aux_sym__val_number_token1] = ACTIONS(1637), - [aux_sym__val_number_token2] = ACTIONS(1637), - [aux_sym__val_number_token3] = ACTIONS(1637), - [aux_sym__val_number_token4] = ACTIONS(1637), - [aux_sym__val_number_token5] = ACTIONS(1637), - [aux_sym__val_number_token6] = ACTIONS(1637), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym__str_single_quotes] = ACTIONS(1637), - [sym__str_back_ticks] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1637), - [sym__entry_separator] = ACTIONS(1639), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1639), - }, - [335] = { - [sym_comment] = STATE(335), [anon_sym_export] = ACTIONS(1645), [anon_sym_alias] = ACTIONS(1645), [anon_sym_let] = ACTIONS(1645), @@ -120241,7 +122547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1645), [anon_sym_use] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1647), [anon_sym_error] = ACTIONS(1645), [anon_sym_DASH2] = ACTIONS(1645), [anon_sym_break] = ACTIONS(1645), @@ -120266,14 +122572,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1645), [anon_sym_overlay] = ACTIONS(1645), [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), + [anon_sym_LPAREN2] = ACTIONS(1649), [anon_sym_PLUS2] = ACTIONS(1645), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1651), + [aux_sym__immediate_decimal_token3] = ACTIONS(1651), + [aux_sym__immediate_decimal_token4] = ACTIONS(1653), + [aux_sym__immediate_decimal_token5] = ACTIONS(1655), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), [aux_sym__val_number_decimal_token1] = ACTIONS(1645), [aux_sym__val_number_decimal_token2] = ACTIONS(1645), @@ -120285,910 +122590,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1645), [aux_sym__val_number_token5] = ACTIONS(1645), [aux_sym__val_number_token6] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1645), [anon_sym_DQUOTE] = ACTIONS(1645), [sym__str_single_quotes] = ACTIONS(1645), [sym__str_back_ticks] = ACTIONS(1645), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [sym__entry_separator] = ACTIONS(1647), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1647), - }, - [336] = { - [sym__expr_parenthesized_immediate] = STATE(684), - [sym__immediate_decimal] = STATE(533), - [sym_val_variable] = STATE(684), - [sym_comment] = STATE(336), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [aux_sym_cmd_identifier_token37] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_PLUS2] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [aux_sym__immediate_decimal_token1] = ACTIONS(1657), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [aux_sym__immediate_decimal_token5] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [sym__entry_separator] = ACTIONS(1603), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), + [sym__entry_separator] = ACTIONS(1657), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1603), + [sym_raw_string_begin] = ACTIONS(1657), }, - [337] = { - [sym__expr_parenthesized_immediate] = STATE(492), - [sym__immediate_decimal] = STATE(460), - [sym_val_variable] = STATE(492), - [sym_comment] = STATE(337), - [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(1591), - [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(1593), - [anon_sym_PLUS2] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), - [anon_sym_DOT] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(1667), - [aux_sym__immediate_decimal_token3] = ACTIONS(1667), - [aux_sym__immediate_decimal_token4] = ACTIONS(1669), - [aux_sym__immediate_decimal_token5] = ACTIONS(1671), - [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(1673), + [334] = { + [sym__expr_parenthesized_immediate] = STATE(634), + [sym__immediate_decimal] = STATE(535), + [sym_val_variable] = STATE(634), + [sym_comment] = STATE(334), + [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(1647), + [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(1649), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), + [aux_sym__immediate_decimal_token1] = ACTIONS(1651), + [aux_sym__immediate_decimal_token3] = ACTIONS(1651), + [aux_sym__immediate_decimal_token4] = ACTIONS(1653), + [aux_sym__immediate_decimal_token5] = ACTIONS(1655), + [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(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1673), + [sym_raw_string_begin] = ACTIONS(1579), }, - [338] = { - [sym__expr_parenthesized_immediate] = STATE(618), - [sym__immediate_decimal] = STATE(532), - [sym_val_variable] = STATE(618), - [sym_comment] = STATE(338), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_alias] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_let_DASHenv] = ACTIONS(1675), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [aux_sym_cmd_identifier_token1] = ACTIONS(1675), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1675), - [aux_sym_cmd_identifier_token9] = ACTIONS(1675), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1675), - [aux_sym_cmd_identifier_token13] = ACTIONS(1675), - [aux_sym_cmd_identifier_token14] = ACTIONS(1675), - [aux_sym_cmd_identifier_token15] = ACTIONS(1675), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1675), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [aux_sym_cmd_identifier_token37] = ACTIONS(1675), - [aux_sym_cmd_identifier_token38] = ACTIONS(1675), - [aux_sym_cmd_identifier_token39] = ACTIONS(1675), - [aux_sym_cmd_identifier_token40] = ACTIONS(1675), - [anon_sym_def] = ACTIONS(1675), - [anon_sym_export_DASHenv] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_error] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_in2] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_make] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_catch] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_source] = ACTIONS(1675), - [anon_sym_source_DASHenv] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_hide] = ACTIONS(1675), - [anon_sym_hide_DASHenv] = ACTIONS(1675), - [anon_sym_overlay] = ACTIONS(1675), - [anon_sym_as] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_PLUS2] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1657), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1659), - [aux_sym__immediate_decimal_token5] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), - [sym__entry_separator] = ACTIONS(1677), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1679), + [335] = { + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_alias] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_let_DASHenv] = ACTIONS(1661), + [anon_sym_mut] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [aux_sym_cmd_identifier_token1] = ACTIONS(1661), + [aux_sym_cmd_identifier_token2] = ACTIONS(1661), + [aux_sym_cmd_identifier_token3] = ACTIONS(1661), + [aux_sym_cmd_identifier_token4] = ACTIONS(1661), + [aux_sym_cmd_identifier_token5] = ACTIONS(1661), + [aux_sym_cmd_identifier_token6] = ACTIONS(1661), + [aux_sym_cmd_identifier_token7] = ACTIONS(1661), + [aux_sym_cmd_identifier_token8] = ACTIONS(1661), + [aux_sym_cmd_identifier_token9] = ACTIONS(1661), + [aux_sym_cmd_identifier_token10] = ACTIONS(1661), + [aux_sym_cmd_identifier_token11] = ACTIONS(1661), + [aux_sym_cmd_identifier_token12] = ACTIONS(1661), + [aux_sym_cmd_identifier_token13] = ACTIONS(1661), + [aux_sym_cmd_identifier_token14] = ACTIONS(1661), + [aux_sym_cmd_identifier_token15] = ACTIONS(1661), + [aux_sym_cmd_identifier_token16] = ACTIONS(1661), + [aux_sym_cmd_identifier_token17] = ACTIONS(1661), + [aux_sym_cmd_identifier_token18] = ACTIONS(1661), + [aux_sym_cmd_identifier_token19] = ACTIONS(1661), + [aux_sym_cmd_identifier_token20] = ACTIONS(1661), + [aux_sym_cmd_identifier_token21] = ACTIONS(1661), + [aux_sym_cmd_identifier_token22] = ACTIONS(1661), + [aux_sym_cmd_identifier_token23] = ACTIONS(1661), + [aux_sym_cmd_identifier_token24] = ACTIONS(1661), + [aux_sym_cmd_identifier_token25] = ACTIONS(1661), + [aux_sym_cmd_identifier_token26] = ACTIONS(1661), + [aux_sym_cmd_identifier_token27] = ACTIONS(1661), + [aux_sym_cmd_identifier_token28] = ACTIONS(1661), + [aux_sym_cmd_identifier_token29] = ACTIONS(1661), + [aux_sym_cmd_identifier_token30] = ACTIONS(1661), + [aux_sym_cmd_identifier_token31] = ACTIONS(1661), + [aux_sym_cmd_identifier_token32] = ACTIONS(1661), + [aux_sym_cmd_identifier_token33] = ACTIONS(1661), + [aux_sym_cmd_identifier_token34] = ACTIONS(1661), + [aux_sym_cmd_identifier_token35] = ACTIONS(1661), + [aux_sym_cmd_identifier_token36] = ACTIONS(1661), + [aux_sym_cmd_identifier_token37] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1661), + [anon_sym_export_DASHenv] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_use] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_loop] = ACTIONS(1661), + [anon_sym_make] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_source] = ACTIONS(1661), + [anon_sym_source_DASHenv] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_hide] = ACTIONS(1661), + [anon_sym_hide_DASHenv] = ACTIONS(1661), + [anon_sym_overlay] = ACTIONS(1661), + [anon_sym_as] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token2] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [aux_sym__val_number_token4] = ACTIONS(1661), + [aux_sym__val_number_token5] = ACTIONS(1661), + [aux_sym__val_number_token6] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [sym__entry_separator] = ACTIONS(1663), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1677), - }, - [339] = { - [sym__expr_parenthesized_immediate] = STATE(542), - [sym__immediate_decimal] = STATE(543), - [sym_val_variable] = STATE(542), - [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(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(1663), - [aux_sym_cmd_identifier_token9] = ACTIONS(1663), - [aux_sym_cmd_identifier_token10] = ACTIONS(1673), - [aux_sym_cmd_identifier_token11] = ACTIONS(1673), - [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(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(1663), - [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(1663), - [aux_sym_cmd_identifier_token39] = ACTIONS(1673), - [aux_sym_cmd_identifier_token40] = ACTIONS(1673), - [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(1623), - [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(1673), - [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(1625), - [anon_sym_PLUS2] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1673), - [anon_sym_DOT] = ACTIONS(1681), - [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(1673), - [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(1673), - [aux_sym__val_number_token2] = ACTIONS(1673), - [aux_sym__val_number_token3] = ACTIONS(1673), - [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(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1673), - }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(1645), - [anon_sym_alias] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_let_DASHenv] = ACTIONS(1645), - [anon_sym_mut] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [aux_sym_cmd_identifier_token1] = ACTIONS(1645), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1645), - [aux_sym_cmd_identifier_token9] = ACTIONS(1645), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1645), - [aux_sym_cmd_identifier_token13] = ACTIONS(1645), - [aux_sym_cmd_identifier_token14] = ACTIONS(1645), - [aux_sym_cmd_identifier_token15] = ACTIONS(1645), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1647), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1647), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1647), - [aux_sym_cmd_identifier_token32] = ACTIONS(1647), - [aux_sym_cmd_identifier_token33] = ACTIONS(1647), - [aux_sym_cmd_identifier_token34] = ACTIONS(1645), - [aux_sym_cmd_identifier_token35] = ACTIONS(1647), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [aux_sym_cmd_identifier_token37] = ACTIONS(1647), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1647), - [aux_sym_cmd_identifier_token40] = ACTIONS(1647), - [anon_sym_def] = ACTIONS(1645), - [anon_sym_export_DASHenv] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_module] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_make] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_source] = ACTIONS(1645), - [anon_sym_source_DASHenv] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_hide_DASHenv] = ACTIONS(1645), - [anon_sym_overlay] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1645), - [aux_sym__val_number_token5] = ACTIONS(1645), - [aux_sym__val_number_token6] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1647), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), + [sym_raw_string_begin] = ACTIONS(1663), }, - [341] = { - [sym__expr_parenthesized_immediate] = STATE(7686), - [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1695), - [anon_sym_alias] = ACTIONS(1695), - [anon_sym_let] = ACTIONS(1695), - [anon_sym_let_DASHenv] = ACTIONS(1695), - [anon_sym_mut] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [aux_sym_cmd_identifier_token1] = ACTIONS(1695), - [aux_sym_cmd_identifier_token2] = ACTIONS(1695), - [aux_sym_cmd_identifier_token3] = ACTIONS(1695), - [aux_sym_cmd_identifier_token4] = ACTIONS(1695), - [aux_sym_cmd_identifier_token5] = ACTIONS(1695), - [aux_sym_cmd_identifier_token6] = ACTIONS(1695), - [aux_sym_cmd_identifier_token7] = ACTIONS(1695), - [aux_sym_cmd_identifier_token8] = ACTIONS(1695), - [aux_sym_cmd_identifier_token9] = ACTIONS(1695), - [aux_sym_cmd_identifier_token10] = ACTIONS(1695), - [aux_sym_cmd_identifier_token11] = ACTIONS(1695), - [aux_sym_cmd_identifier_token12] = ACTIONS(1695), - [aux_sym_cmd_identifier_token13] = ACTIONS(1695), - [aux_sym_cmd_identifier_token14] = ACTIONS(1695), - [aux_sym_cmd_identifier_token15] = ACTIONS(1695), - [aux_sym_cmd_identifier_token16] = ACTIONS(1695), - [aux_sym_cmd_identifier_token17] = ACTIONS(1695), - [aux_sym_cmd_identifier_token18] = ACTIONS(1695), - [aux_sym_cmd_identifier_token19] = ACTIONS(1695), - [aux_sym_cmd_identifier_token20] = ACTIONS(1695), - [aux_sym_cmd_identifier_token21] = ACTIONS(1695), - [aux_sym_cmd_identifier_token22] = ACTIONS(1695), - [aux_sym_cmd_identifier_token23] = ACTIONS(1695), - [aux_sym_cmd_identifier_token24] = ACTIONS(1695), - [aux_sym_cmd_identifier_token25] = ACTIONS(1695), - [aux_sym_cmd_identifier_token26] = ACTIONS(1695), - [aux_sym_cmd_identifier_token27] = ACTIONS(1695), - [aux_sym_cmd_identifier_token28] = ACTIONS(1695), - [aux_sym_cmd_identifier_token29] = ACTIONS(1695), - [aux_sym_cmd_identifier_token30] = ACTIONS(1695), - [aux_sym_cmd_identifier_token31] = ACTIONS(1695), - [aux_sym_cmd_identifier_token32] = ACTIONS(1695), - [aux_sym_cmd_identifier_token33] = ACTIONS(1695), - [aux_sym_cmd_identifier_token34] = ACTIONS(1695), - [aux_sym_cmd_identifier_token35] = ACTIONS(1695), - [aux_sym_cmd_identifier_token36] = ACTIONS(1695), - [aux_sym_cmd_identifier_token37] = ACTIONS(1695), - [aux_sym_cmd_identifier_token38] = ACTIONS(1695), - [aux_sym_cmd_identifier_token39] = ACTIONS(1695), - [aux_sym_cmd_identifier_token40] = ACTIONS(1695), - [anon_sym_def] = ACTIONS(1695), - [anon_sym_export_DASHenv] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_module] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_error] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_loop] = ACTIONS(1695), - [anon_sym_make] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_catch] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_source] = ACTIONS(1695), - [anon_sym_source_DASHenv] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_hide] = ACTIONS(1695), - [anon_sym_hide_DASHenv] = ACTIONS(1695), - [anon_sym_overlay] = ACTIONS(1695), - [anon_sym_as] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(1699), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1701), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1695), - [aux_sym__val_number_decimal_token3] = ACTIONS(1695), - [aux_sym__val_number_decimal_token4] = ACTIONS(1695), - [aux_sym__val_number_token1] = ACTIONS(1695), - [aux_sym__val_number_token2] = ACTIONS(1695), - [aux_sym__val_number_token3] = ACTIONS(1695), - [aux_sym__val_number_token4] = ACTIONS(1695), - [aux_sym__val_number_token5] = ACTIONS(1695), - [aux_sym__val_number_token6] = ACTIONS(1695), - [sym_filesize_unit] = ACTIONS(1703), - [sym_duration_unit] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym__str_single_quotes] = ACTIONS(1695), - [sym__str_back_ticks] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), - [sym__entry_separator] = ACTIONS(1707), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1709), + [336] = { + [sym_comment] = STATE(336), + [anon_sym_export] = ACTIONS(1669), + [anon_sym_alias] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_let_DASHenv] = ACTIONS(1669), + [anon_sym_mut] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [aux_sym_cmd_identifier_token1] = ACTIONS(1669), + [aux_sym_cmd_identifier_token2] = ACTIONS(1669), + [aux_sym_cmd_identifier_token3] = ACTIONS(1669), + [aux_sym_cmd_identifier_token4] = ACTIONS(1669), + [aux_sym_cmd_identifier_token5] = ACTIONS(1669), + [aux_sym_cmd_identifier_token6] = ACTIONS(1669), + [aux_sym_cmd_identifier_token7] = ACTIONS(1669), + [aux_sym_cmd_identifier_token8] = ACTIONS(1669), + [aux_sym_cmd_identifier_token9] = ACTIONS(1669), + [aux_sym_cmd_identifier_token10] = ACTIONS(1669), + [aux_sym_cmd_identifier_token11] = ACTIONS(1669), + [aux_sym_cmd_identifier_token12] = ACTIONS(1669), + [aux_sym_cmd_identifier_token13] = ACTIONS(1669), + [aux_sym_cmd_identifier_token14] = ACTIONS(1669), + [aux_sym_cmd_identifier_token15] = ACTIONS(1669), + [aux_sym_cmd_identifier_token16] = ACTIONS(1669), + [aux_sym_cmd_identifier_token17] = ACTIONS(1669), + [aux_sym_cmd_identifier_token18] = ACTIONS(1669), + [aux_sym_cmd_identifier_token19] = ACTIONS(1669), + [aux_sym_cmd_identifier_token20] = ACTIONS(1669), + [aux_sym_cmd_identifier_token21] = ACTIONS(1669), + [aux_sym_cmd_identifier_token22] = ACTIONS(1669), + [aux_sym_cmd_identifier_token23] = ACTIONS(1669), + [aux_sym_cmd_identifier_token24] = ACTIONS(1669), + [aux_sym_cmd_identifier_token25] = ACTIONS(1669), + [aux_sym_cmd_identifier_token26] = ACTIONS(1669), + [aux_sym_cmd_identifier_token27] = ACTIONS(1669), + [aux_sym_cmd_identifier_token28] = ACTIONS(1669), + [aux_sym_cmd_identifier_token29] = ACTIONS(1669), + [aux_sym_cmd_identifier_token30] = ACTIONS(1669), + [aux_sym_cmd_identifier_token31] = ACTIONS(1669), + [aux_sym_cmd_identifier_token32] = ACTIONS(1669), + [aux_sym_cmd_identifier_token33] = ACTIONS(1669), + [aux_sym_cmd_identifier_token34] = ACTIONS(1669), + [aux_sym_cmd_identifier_token35] = ACTIONS(1669), + [aux_sym_cmd_identifier_token36] = ACTIONS(1669), + [aux_sym_cmd_identifier_token37] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_export_DASHenv] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_module] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_make] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_else] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_catch] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_source] = ACTIONS(1669), + [anon_sym_source_DASHenv] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_hide] = ACTIONS(1669), + [anon_sym_hide_DASHenv] = ACTIONS(1669), + [anon_sym_overlay] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(1673), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [aux_sym__val_number_token4] = ACTIONS(1669), + [aux_sym__val_number_token5] = ACTIONS(1669), + [aux_sym__val_number_token6] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [sym__entry_separator] = ACTIONS(1671), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1707), + [sym_raw_string_begin] = ACTIONS(1671), }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_alias] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_let_DASHenv] = ACTIONS(1637), - [anon_sym_mut] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [aux_sym_cmd_identifier_token1] = ACTIONS(1637), - [aux_sym_cmd_identifier_token2] = ACTIONS(1639), - [aux_sym_cmd_identifier_token3] = ACTIONS(1639), - [aux_sym_cmd_identifier_token4] = ACTIONS(1639), - [aux_sym_cmd_identifier_token5] = ACTIONS(1639), - [aux_sym_cmd_identifier_token6] = ACTIONS(1639), - [aux_sym_cmd_identifier_token7] = ACTIONS(1639), - [aux_sym_cmd_identifier_token8] = ACTIONS(1637), - [aux_sym_cmd_identifier_token9] = ACTIONS(1637), - [aux_sym_cmd_identifier_token10] = ACTIONS(1639), - [aux_sym_cmd_identifier_token11] = ACTIONS(1639), - [aux_sym_cmd_identifier_token12] = ACTIONS(1637), - [aux_sym_cmd_identifier_token13] = ACTIONS(1637), - [aux_sym_cmd_identifier_token14] = ACTIONS(1637), - [aux_sym_cmd_identifier_token15] = ACTIONS(1637), - [aux_sym_cmd_identifier_token16] = ACTIONS(1639), - [aux_sym_cmd_identifier_token17] = ACTIONS(1639), - [aux_sym_cmd_identifier_token18] = ACTIONS(1639), - [aux_sym_cmd_identifier_token19] = ACTIONS(1639), - [aux_sym_cmd_identifier_token20] = ACTIONS(1639), - [aux_sym_cmd_identifier_token21] = ACTIONS(1639), - [aux_sym_cmd_identifier_token22] = ACTIONS(1639), - [aux_sym_cmd_identifier_token23] = ACTIONS(1639), - [aux_sym_cmd_identifier_token24] = ACTIONS(1639), - [aux_sym_cmd_identifier_token25] = ACTIONS(1639), - [aux_sym_cmd_identifier_token26] = ACTIONS(1639), - [aux_sym_cmd_identifier_token27] = ACTIONS(1639), - [aux_sym_cmd_identifier_token28] = ACTIONS(1639), - [aux_sym_cmd_identifier_token29] = ACTIONS(1639), - [aux_sym_cmd_identifier_token30] = ACTIONS(1639), - [aux_sym_cmd_identifier_token31] = ACTIONS(1639), - [aux_sym_cmd_identifier_token32] = ACTIONS(1639), - [aux_sym_cmd_identifier_token33] = ACTIONS(1639), - [aux_sym_cmd_identifier_token34] = ACTIONS(1637), - [aux_sym_cmd_identifier_token35] = ACTIONS(1639), - [aux_sym_cmd_identifier_token36] = ACTIONS(1639), - [aux_sym_cmd_identifier_token37] = ACTIONS(1639), - [aux_sym_cmd_identifier_token38] = ACTIONS(1637), - [aux_sym_cmd_identifier_token39] = ACTIONS(1639), - [aux_sym_cmd_identifier_token40] = ACTIONS(1639), - [anon_sym_def] = ACTIONS(1637), - [anon_sym_export_DASHenv] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym_module] = ACTIONS(1637), - [anon_sym_use] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_error] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_loop] = ACTIONS(1637), - [anon_sym_make] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_catch] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_source] = ACTIONS(1637), - [anon_sym_source_DASHenv] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_hide] = ACTIONS(1637), - [anon_sym_hide_DASHenv] = ACTIONS(1637), - [anon_sym_overlay] = ACTIONS(1637), - [anon_sym_as] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(1711), - [aux_sym__immediate_decimal_token2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [aux_sym__val_number_token4] = ACTIONS(1637), - [aux_sym__val_number_token5] = ACTIONS(1637), - [aux_sym__val_number_token6] = ACTIONS(1637), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1639), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), - }, - [343] = { - [sym__expr_parenthesized_immediate] = STATE(770), - [sym__immediate_decimal] = STATE(585), - [sym_val_variable] = STATE(770), - [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1589), - [anon_sym_alias] = ACTIONS(1589), - [anon_sym_let] = ACTIONS(1589), - [anon_sym_let_DASHenv] = ACTIONS(1589), - [anon_sym_mut] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [aux_sym_cmd_identifier_token1] = ACTIONS(1589), - [aux_sym_cmd_identifier_token2] = ACTIONS(1603), - [aux_sym_cmd_identifier_token3] = ACTIONS(1603), - [aux_sym_cmd_identifier_token4] = ACTIONS(1603), - [aux_sym_cmd_identifier_token5] = ACTIONS(1603), - [aux_sym_cmd_identifier_token6] = ACTIONS(1603), - [aux_sym_cmd_identifier_token7] = ACTIONS(1603), - [aux_sym_cmd_identifier_token8] = ACTIONS(1589), - [aux_sym_cmd_identifier_token9] = ACTIONS(1589), - [aux_sym_cmd_identifier_token10] = ACTIONS(1603), - [aux_sym_cmd_identifier_token11] = ACTIONS(1603), - [aux_sym_cmd_identifier_token12] = ACTIONS(1589), - [aux_sym_cmd_identifier_token13] = ACTIONS(1589), - [aux_sym_cmd_identifier_token14] = ACTIONS(1589), - [aux_sym_cmd_identifier_token15] = ACTIONS(1589), - [aux_sym_cmd_identifier_token16] = ACTIONS(1603), - [aux_sym_cmd_identifier_token17] = ACTIONS(1603), - [aux_sym_cmd_identifier_token18] = ACTIONS(1603), - [aux_sym_cmd_identifier_token19] = ACTIONS(1603), - [aux_sym_cmd_identifier_token20] = ACTIONS(1603), - [aux_sym_cmd_identifier_token21] = ACTIONS(1603), - [aux_sym_cmd_identifier_token22] = ACTIONS(1603), - [aux_sym_cmd_identifier_token23] = ACTIONS(1603), - [aux_sym_cmd_identifier_token24] = ACTIONS(1603), - [aux_sym_cmd_identifier_token25] = ACTIONS(1603), - [aux_sym_cmd_identifier_token26] = ACTIONS(1603), - [aux_sym_cmd_identifier_token27] = ACTIONS(1603), - [aux_sym_cmd_identifier_token28] = ACTIONS(1603), - [aux_sym_cmd_identifier_token29] = ACTIONS(1603), - [aux_sym_cmd_identifier_token30] = ACTIONS(1603), - [aux_sym_cmd_identifier_token31] = ACTIONS(1603), - [aux_sym_cmd_identifier_token32] = ACTIONS(1603), - [aux_sym_cmd_identifier_token33] = ACTIONS(1603), - [aux_sym_cmd_identifier_token34] = ACTIONS(1589), - [aux_sym_cmd_identifier_token35] = ACTIONS(1603), - [aux_sym_cmd_identifier_token36] = ACTIONS(1603), - [aux_sym_cmd_identifier_token37] = ACTIONS(1603), - [aux_sym_cmd_identifier_token38] = ACTIONS(1589), - [aux_sym_cmd_identifier_token39] = ACTIONS(1603), - [aux_sym_cmd_identifier_token40] = ACTIONS(1603), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_export_DASHenv] = ACTIONS(1589), - [anon_sym_extern] = ACTIONS(1589), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_use] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_make] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_catch] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_source] = ACTIONS(1589), - [anon_sym_source_DASHenv] = ACTIONS(1589), - [anon_sym_register] = ACTIONS(1589), - [anon_sym_hide] = ACTIONS(1589), - [anon_sym_hide_DASHenv] = ACTIONS(1589), - [anon_sym_overlay] = ACTIONS(1589), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(1719), - [aux_sym__immediate_decimal_token3] = ACTIONS(1721), - [aux_sym__immediate_decimal_token4] = ACTIONS(1723), - [aux_sym__immediate_decimal_token5] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1603), - }, - [344] = { - [sym__expr_parenthesized_immediate] = STATE(758), - [sym__immediate_decimal] = STATE(567), - [sym_val_variable] = STATE(758), - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_alias] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_let_DASHenv] = ACTIONS(1675), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [aux_sym_cmd_identifier_token1] = ACTIONS(1675), + [337] = { + [sym__expr_parenthesized_immediate] = STATE(640), + [sym__immediate_decimal] = STATE(641), + [sym_val_variable] = STATE(640), + [sym_comment] = STATE(337), + [anon_sym_export] = ACTIONS(1677), + [anon_sym_alias] = ACTIONS(1677), + [anon_sym_let] = ACTIONS(1677), + [anon_sym_let_DASHenv] = ACTIONS(1677), + [anon_sym_mut] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [aux_sym_cmd_identifier_token1] = ACTIONS(1677), [aux_sym_cmd_identifier_token2] = ACTIONS(1677), [aux_sym_cmd_identifier_token3] = ACTIONS(1677), [aux_sym_cmd_identifier_token4] = ACTIONS(1677), [aux_sym_cmd_identifier_token5] = ACTIONS(1677), [aux_sym_cmd_identifier_token6] = ACTIONS(1677), [aux_sym_cmd_identifier_token7] = ACTIONS(1677), - [aux_sym_cmd_identifier_token8] = ACTIONS(1675), - [aux_sym_cmd_identifier_token9] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1677), + [aux_sym_cmd_identifier_token9] = ACTIONS(1677), [aux_sym_cmd_identifier_token10] = ACTIONS(1677), [aux_sym_cmd_identifier_token11] = ACTIONS(1677), - [aux_sym_cmd_identifier_token12] = ACTIONS(1675), - [aux_sym_cmd_identifier_token13] = ACTIONS(1675), - [aux_sym_cmd_identifier_token14] = ACTIONS(1675), - [aux_sym_cmd_identifier_token15] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1677), + [aux_sym_cmd_identifier_token13] = ACTIONS(1677), + [aux_sym_cmd_identifier_token14] = ACTIONS(1677), + [aux_sym_cmd_identifier_token15] = ACTIONS(1677), [aux_sym_cmd_identifier_token16] = ACTIONS(1677), [aux_sym_cmd_identifier_token17] = ACTIONS(1677), [aux_sym_cmd_identifier_token18] = ACTIONS(1677), @@ -121207,96 +122970,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1677), [aux_sym_cmd_identifier_token32] = ACTIONS(1677), [aux_sym_cmd_identifier_token33] = ACTIONS(1677), - [aux_sym_cmd_identifier_token34] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1677), [aux_sym_cmd_identifier_token35] = ACTIONS(1677), [aux_sym_cmd_identifier_token36] = ACTIONS(1677), [aux_sym_cmd_identifier_token37] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), [aux_sym_cmd_identifier_token39] = ACTIONS(1677), [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [anon_sym_def] = ACTIONS(1675), - [anon_sym_export_DASHenv] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_in2] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_make] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1677), + [anon_sym_export_DASHenv] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_module] = ACTIONS(1677), + [anon_sym_use] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_in2] = ACTIONS(1677), + [anon_sym_loop] = ACTIONS(1677), + [anon_sym_make] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_else] = ACTIONS(1677), + [anon_sym_match] = ACTIONS(1677), [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_catch] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_source] = ACTIONS(1675), - [anon_sym_source_DASHenv] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_hide] = ACTIONS(1675), - [anon_sym_hide_DASHenv] = ACTIONS(1675), - [anon_sym_overlay] = ACTIONS(1675), - [anon_sym_as] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1677), + [anon_sym_catch] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_source] = ACTIONS(1677), + [anon_sym_source_DASHenv] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_hide] = ACTIONS(1677), + [anon_sym_hide_DASHenv] = ACTIONS(1677), + [anon_sym_overlay] = ACTIONS(1677), + [anon_sym_as] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1649), + [anon_sym_PLUS2] = ACTIONS(1677), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(1719), - [aux_sym__immediate_decimal_token3] = ACTIONS(1721), - [aux_sym__immediate_decimal_token4] = ACTIONS(1723), - [aux_sym__immediate_decimal_token5] = ACTIONS(1725), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), [aux_sym__val_number_token1] = ACTIONS(1677), [aux_sym__val_number_token2] = ACTIONS(1677), [aux_sym__val_number_token3] = ACTIONS(1677), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1677), + [aux_sym__val_number_token5] = ACTIONS(1677), + [aux_sym__val_number_token6] = ACTIONS(1677), [anon_sym_DQUOTE] = ACTIONS(1677), [sym__str_single_quotes] = ACTIONS(1677), [sym__str_back_ticks] = ACTIONS(1677), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1677), + [sym__entry_separator] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1685), }, - [345] = { - [sym__expr_parenthesized_immediate] = STATE(678), - [sym__immediate_decimal] = STATE(683), - [sym_val_variable] = STATE(678), - [sym_comment] = STATE(345), - [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), + [338] = { + [sym__expr_parenthesized_immediate] = STATE(8112), + [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [aux_sym_cmd_identifier_token1] = ACTIONS(1687), + [aux_sym_cmd_identifier_token2] = ACTIONS(1687), + [aux_sym_cmd_identifier_token3] = ACTIONS(1687), + [aux_sym_cmd_identifier_token4] = ACTIONS(1687), + [aux_sym_cmd_identifier_token5] = ACTIONS(1687), + [aux_sym_cmd_identifier_token6] = ACTIONS(1687), + [aux_sym_cmd_identifier_token7] = ACTIONS(1687), + [aux_sym_cmd_identifier_token8] = ACTIONS(1687), + [aux_sym_cmd_identifier_token9] = ACTIONS(1687), + [aux_sym_cmd_identifier_token10] = ACTIONS(1687), + [aux_sym_cmd_identifier_token11] = ACTIONS(1687), + [aux_sym_cmd_identifier_token12] = ACTIONS(1687), + [aux_sym_cmd_identifier_token13] = ACTIONS(1687), + [aux_sym_cmd_identifier_token14] = ACTIONS(1687), + [aux_sym_cmd_identifier_token15] = ACTIONS(1687), + [aux_sym_cmd_identifier_token16] = ACTIONS(1687), + [aux_sym_cmd_identifier_token17] = ACTIONS(1687), + [aux_sym_cmd_identifier_token18] = ACTIONS(1687), + [aux_sym_cmd_identifier_token19] = ACTIONS(1687), + [aux_sym_cmd_identifier_token20] = ACTIONS(1687), + [aux_sym_cmd_identifier_token21] = ACTIONS(1687), + [aux_sym_cmd_identifier_token22] = ACTIONS(1687), + [aux_sym_cmd_identifier_token23] = ACTIONS(1687), + [aux_sym_cmd_identifier_token24] = ACTIONS(1687), + [aux_sym_cmd_identifier_token25] = ACTIONS(1687), + [aux_sym_cmd_identifier_token26] = ACTIONS(1687), + [aux_sym_cmd_identifier_token27] = ACTIONS(1687), + [aux_sym_cmd_identifier_token28] = ACTIONS(1687), + [aux_sym_cmd_identifier_token29] = ACTIONS(1687), + [aux_sym_cmd_identifier_token30] = ACTIONS(1687), + [aux_sym_cmd_identifier_token31] = ACTIONS(1687), + [aux_sym_cmd_identifier_token32] = ACTIONS(1687), + [aux_sym_cmd_identifier_token33] = ACTIONS(1687), + [aux_sym_cmd_identifier_token34] = ACTIONS(1687), + [aux_sym_cmd_identifier_token35] = ACTIONS(1687), + [aux_sym_cmd_identifier_token36] = ACTIONS(1687), + [aux_sym_cmd_identifier_token37] = ACTIONS(1687), + [aux_sym_cmd_identifier_token38] = ACTIONS(1687), + [aux_sym_cmd_identifier_token39] = ACTIONS(1687), + [aux_sym_cmd_identifier_token40] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_make] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), + [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(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1695), + [sym_duration_unit] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), + [sym__entry_separator] = ACTIONS(1699), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [339] = { + [sym_comment] = STATE(339), + [anon_sym_export] = ACTIONS(1669), + [anon_sym_alias] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_let_DASHenv] = ACTIONS(1669), + [anon_sym_mut] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [aux_sym_cmd_identifier_token1] = ACTIONS(1669), + [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(1669), + [aux_sym_cmd_identifier_token9] = ACTIONS(1669), + [aux_sym_cmd_identifier_token10] = ACTIONS(1671), + [aux_sym_cmd_identifier_token11] = ACTIONS(1671), + [aux_sym_cmd_identifier_token12] = ACTIONS(1669), + [aux_sym_cmd_identifier_token13] = ACTIONS(1669), + [aux_sym_cmd_identifier_token14] = ACTIONS(1669), + [aux_sym_cmd_identifier_token15] = ACTIONS(1669), + [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(1669), + [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(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1671), + [aux_sym_cmd_identifier_token40] = ACTIONS(1671), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_export_DASHenv] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_module] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_error] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_make] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_else] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_catch] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_source] = ACTIONS(1669), + [anon_sym_source_DASHenv] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_hide] = ACTIONS(1669), + [anon_sym_hide_DASHenv] = ACTIONS(1669), + [anon_sym_overlay] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1669), + [aux_sym__val_number_token5] = ACTIONS(1669), + [aux_sym__val_number_token6] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1669), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), + }, + [340] = { + [sym_comment] = STATE(340), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_alias] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_let_DASHenv] = ACTIONS(1661), + [anon_sym_mut] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [aux_sym_cmd_identifier_token1] = ACTIONS(1661), [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_token8] = ACTIONS(1661), + [aux_sym_cmd_identifier_token9] = ACTIONS(1661), [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_token12] = ACTIONS(1661), + [aux_sym_cmd_identifier_token13] = ACTIONS(1661), + [aux_sym_cmd_identifier_token14] = ACTIONS(1661), + [aux_sym_cmd_identifier_token15] = ACTIONS(1661), [aux_sym_cmd_identifier_token16] = ACTIONS(1663), [aux_sym_cmd_identifier_token17] = ACTIONS(1663), [aux_sym_cmd_identifier_token18] = ACTIONS(1663), @@ -121315,396 +123291,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_token34] = ACTIONS(1661), [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_token38] = ACTIONS(1661), [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(1653), - [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_def] = ACTIONS(1661), + [anon_sym_export_DASHenv] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_use] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_error] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_loop] = ACTIONS(1661), + [anon_sym_make] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), [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(1655), - [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_source] = ACTIONS(1661), + [anon_sym_source_DASHenv] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_hide] = ACTIONS(1661), + [anon_sym_hide_DASHenv] = ACTIONS(1661), + [anon_sym_overlay] = ACTIONS(1661), + [anon_sym_as] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(1727), - [aux_sym__immediate_decimal_token3] = ACTIONS(1727), - [aux_sym__immediate_decimal_token4] = ACTIONS(1729), - [aux_sym__immediate_decimal_token5] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(1709), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), [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), + [aux_sym__val_number_token4] = ACTIONS(1661), + [aux_sym__val_number_token5] = ACTIONS(1661), + [aux_sym__val_number_token6] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1661), [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(1673), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1673), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), }, - [346] = { - [sym__expr_parenthesized_immediate] = STATE(611), - [sym__immediate_decimal] = STATE(612), - [sym_val_variable] = STATE(611), - [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [aux_sym_cmd_identifier_token37] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1733), - [aux_sym_cmd_identifier_token40] = ACTIONS(1733), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), - [aux_sym__immediate_decimal_token1] = ACTIONS(1727), - [aux_sym__immediate_decimal_token3] = ACTIONS(1727), - [aux_sym__immediate_decimal_token4] = ACTIONS(1729), - [aux_sym__immediate_decimal_token5] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1733), - [aux_sym__val_number_token2] = ACTIONS(1733), - [aux_sym__val_number_token3] = ACTIONS(1733), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), - [sym__entry_separator] = ACTIONS(1735), + [341] = { + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(1669), + [anon_sym_alias] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_let_DASHenv] = ACTIONS(1669), + [anon_sym_mut] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [aux_sym_cmd_identifier_token1] = ACTIONS(1669), + [aux_sym_cmd_identifier_token2] = ACTIONS(1669), + [aux_sym_cmd_identifier_token3] = ACTIONS(1669), + [aux_sym_cmd_identifier_token4] = ACTIONS(1669), + [aux_sym_cmd_identifier_token5] = ACTIONS(1669), + [aux_sym_cmd_identifier_token6] = ACTIONS(1669), + [aux_sym_cmd_identifier_token7] = ACTIONS(1669), + [aux_sym_cmd_identifier_token8] = ACTIONS(1669), + [aux_sym_cmd_identifier_token9] = ACTIONS(1669), + [aux_sym_cmd_identifier_token10] = ACTIONS(1669), + [aux_sym_cmd_identifier_token11] = ACTIONS(1669), + [aux_sym_cmd_identifier_token12] = ACTIONS(1669), + [aux_sym_cmd_identifier_token13] = ACTIONS(1669), + [aux_sym_cmd_identifier_token14] = ACTIONS(1669), + [aux_sym_cmd_identifier_token15] = ACTIONS(1669), + [aux_sym_cmd_identifier_token16] = ACTIONS(1669), + [aux_sym_cmd_identifier_token17] = ACTIONS(1669), + [aux_sym_cmd_identifier_token18] = ACTIONS(1669), + [aux_sym_cmd_identifier_token19] = ACTIONS(1669), + [aux_sym_cmd_identifier_token20] = ACTIONS(1669), + [aux_sym_cmd_identifier_token21] = ACTIONS(1669), + [aux_sym_cmd_identifier_token22] = ACTIONS(1669), + [aux_sym_cmd_identifier_token23] = ACTIONS(1669), + [aux_sym_cmd_identifier_token24] = ACTIONS(1669), + [aux_sym_cmd_identifier_token25] = ACTIONS(1669), + [aux_sym_cmd_identifier_token26] = ACTIONS(1669), + [aux_sym_cmd_identifier_token27] = ACTIONS(1669), + [aux_sym_cmd_identifier_token28] = ACTIONS(1669), + [aux_sym_cmd_identifier_token29] = ACTIONS(1669), + [aux_sym_cmd_identifier_token30] = ACTIONS(1669), + [aux_sym_cmd_identifier_token31] = ACTIONS(1669), + [aux_sym_cmd_identifier_token32] = ACTIONS(1669), + [aux_sym_cmd_identifier_token33] = ACTIONS(1669), + [aux_sym_cmd_identifier_token34] = ACTIONS(1669), + [aux_sym_cmd_identifier_token35] = ACTIONS(1669), + [aux_sym_cmd_identifier_token36] = ACTIONS(1669), + [aux_sym_cmd_identifier_token37] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_export_DASHenv] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_module] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_make] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_else] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_catch] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_source] = ACTIONS(1669), + [anon_sym_source_DASHenv] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_hide] = ACTIONS(1669), + [anon_sym_hide_DASHenv] = ACTIONS(1669), + [anon_sym_overlay] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [aux_sym__val_number_token4] = ACTIONS(1669), + [aux_sym__val_number_token5] = ACTIONS(1669), + [aux_sym__val_number_token6] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [sym__entry_separator] = ACTIONS(1671), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1735), + [sym_raw_string_begin] = ACTIONS(1671), }, - [347] = { - [sym__expr_parenthesized_immediate] = STATE(613), - [sym__immediate_decimal] = STATE(614), - [sym_val_variable] = STATE(613), - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_alias] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_let_DASHenv] = ACTIONS(1737), - [anon_sym_mut] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [aux_sym_cmd_identifier_token1] = ACTIONS(1737), - [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(1737), - [aux_sym_cmd_identifier_token9] = ACTIONS(1737), - [aux_sym_cmd_identifier_token10] = ACTIONS(1737), - [aux_sym_cmd_identifier_token11] = ACTIONS(1737), - [aux_sym_cmd_identifier_token12] = ACTIONS(1737), - [aux_sym_cmd_identifier_token13] = ACTIONS(1737), - [aux_sym_cmd_identifier_token14] = ACTIONS(1737), - [aux_sym_cmd_identifier_token15] = ACTIONS(1737), - [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(1737), - [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(1737), - [aux_sym_cmd_identifier_token39] = ACTIONS(1737), - [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [anon_sym_def] = ACTIONS(1737), - [anon_sym_export_DASHenv] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_error] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_make] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_source] = ACTIONS(1737), - [anon_sym_source_DASHenv] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_hide] = ACTIONS(1737), - [anon_sym_hide_DASHenv] = ACTIONS(1737), - [anon_sym_overlay] = ACTIONS(1737), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_PLUS2] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), - [aux_sym__immediate_decimal_token1] = ACTIONS(1727), - [aux_sym__immediate_decimal_token3] = ACTIONS(1727), - [aux_sym__immediate_decimal_token4] = ACTIONS(1729), - [aux_sym__immediate_decimal_token5] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1737), - [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_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), - [sym__entry_separator] = ACTIONS(1739), + [342] = { + [sym_comment] = STATE(342), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_in2] = 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_as] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [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), + [aux_sym__immediate_decimal_token2] = ACTIONS(1715), + [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), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1739), + [sym_raw_string_begin] = ACTIONS(1713), }, - [348] = { - [sym__expr_parenthesized_immediate] = STATE(616), - [sym__immediate_decimal] = STATE(617), - [sym_val_variable] = STATE(616), - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_alias] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_let_DASHenv] = ACTIONS(1741), - [anon_sym_mut] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [aux_sym_cmd_identifier_token1] = ACTIONS(1741), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1741), - [aux_sym_cmd_identifier_token9] = ACTIONS(1741), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1741), - [aux_sym_cmd_identifier_token13] = ACTIONS(1741), - [aux_sym_cmd_identifier_token14] = ACTIONS(1741), - [aux_sym_cmd_identifier_token15] = ACTIONS(1741), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1741), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1741), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1741), - [anon_sym_export_DASHenv] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_in2] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_make] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_catch] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_source] = ACTIONS(1741), - [anon_sym_source_DASHenv] = ACTIONS(1741), - [anon_sym_register] = ACTIONS(1741), - [anon_sym_hide] = ACTIONS(1741), - [anon_sym_hide_DASHenv] = ACTIONS(1741), - [anon_sym_overlay] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_PLUS2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1727), - [aux_sym__immediate_decimal_token3] = ACTIONS(1727), - [aux_sym__immediate_decimal_token4] = ACTIONS(1729), - [aux_sym__immediate_decimal_token5] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [sym__entry_separator] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1743), + [343] = { + [sym__expr_parenthesized_immediate] = STATE(734), + [sym__immediate_decimal] = STATE(574), + [sym_val_variable] = STATE(734), + [sym_comment] = STATE(343), + [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(1579), + [aux_sym_cmd_identifier_token3] = ACTIONS(1579), + [aux_sym_cmd_identifier_token4] = ACTIONS(1579), + [aux_sym_cmd_identifier_token5] = ACTIONS(1579), + [aux_sym_cmd_identifier_token6] = ACTIONS(1579), + [aux_sym_cmd_identifier_token7] = ACTIONS(1579), + [aux_sym_cmd_identifier_token8] = ACTIONS(1565), + [aux_sym_cmd_identifier_token9] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1579), + [aux_sym_cmd_identifier_token11] = ACTIONS(1579), + [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(1579), + [aux_sym_cmd_identifier_token17] = ACTIONS(1579), + [aux_sym_cmd_identifier_token18] = ACTIONS(1579), + [aux_sym_cmd_identifier_token19] = ACTIONS(1579), + [aux_sym_cmd_identifier_token20] = ACTIONS(1579), + [aux_sym_cmd_identifier_token21] = ACTIONS(1579), + [aux_sym_cmd_identifier_token22] = ACTIONS(1579), + [aux_sym_cmd_identifier_token23] = ACTIONS(1579), + [aux_sym_cmd_identifier_token24] = ACTIONS(1579), + [aux_sym_cmd_identifier_token25] = ACTIONS(1579), + [aux_sym_cmd_identifier_token26] = ACTIONS(1579), + [aux_sym_cmd_identifier_token27] = ACTIONS(1579), + [aux_sym_cmd_identifier_token28] = ACTIONS(1579), + [aux_sym_cmd_identifier_token29] = ACTIONS(1579), + [aux_sym_cmd_identifier_token30] = ACTIONS(1579), + [aux_sym_cmd_identifier_token31] = ACTIONS(1579), + [aux_sym_cmd_identifier_token32] = ACTIONS(1579), + [aux_sym_cmd_identifier_token33] = ACTIONS(1579), + [aux_sym_cmd_identifier_token34] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1579), + [aux_sym_cmd_identifier_token36] = ACTIONS(1579), + [aux_sym_cmd_identifier_token37] = ACTIONS(1579), + [aux_sym_cmd_identifier_token38] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1579), + [aux_sym_cmd_identifier_token40] = ACTIONS(1579), + [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(1717), + [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(1579), + [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(1719), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(1721), + [aux_sym__immediate_decimal_token3] = ACTIONS(1723), + [aux_sym__immediate_decimal_token4] = ACTIONS(1725), + [aux_sym__immediate_decimal_token5] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [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(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1579), }, - [349] = { - [sym_comment] = STATE(349), + [344] = { + [sym__expr_parenthesized_immediate] = STATE(751), + [sym__immediate_decimal] = STATE(577), + [sym_val_variable] = STATE(751), + [sym_comment] = STATE(344), [anon_sym_export] = ACTIONS(1645), [anon_sym_alias] = ACTIONS(1645), [anon_sym_let] = ACTIONS(1645), @@ -121712,52 +123694,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1645), [anon_sym_const] = ACTIONS(1645), [aux_sym_cmd_identifier_token1] = ACTIONS(1645), - [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_token2] = ACTIONS(1657), + [aux_sym_cmd_identifier_token3] = ACTIONS(1657), + [aux_sym_cmd_identifier_token4] = ACTIONS(1657), + [aux_sym_cmd_identifier_token5] = ACTIONS(1657), + [aux_sym_cmd_identifier_token6] = ACTIONS(1657), + [aux_sym_cmd_identifier_token7] = ACTIONS(1657), [aux_sym_cmd_identifier_token8] = ACTIONS(1645), [aux_sym_cmd_identifier_token9] = ACTIONS(1645), - [aux_sym_cmd_identifier_token10] = ACTIONS(1645), - [aux_sym_cmd_identifier_token11] = ACTIONS(1645), + [aux_sym_cmd_identifier_token10] = ACTIONS(1657), + [aux_sym_cmd_identifier_token11] = ACTIONS(1657), [aux_sym_cmd_identifier_token12] = ACTIONS(1645), [aux_sym_cmd_identifier_token13] = ACTIONS(1645), [aux_sym_cmd_identifier_token14] = ACTIONS(1645), [aux_sym_cmd_identifier_token15] = ACTIONS(1645), - [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_token16] = ACTIONS(1657), + [aux_sym_cmd_identifier_token17] = ACTIONS(1657), + [aux_sym_cmd_identifier_token18] = ACTIONS(1657), + [aux_sym_cmd_identifier_token19] = ACTIONS(1657), + [aux_sym_cmd_identifier_token20] = ACTIONS(1657), + [aux_sym_cmd_identifier_token21] = ACTIONS(1657), + [aux_sym_cmd_identifier_token22] = ACTIONS(1657), + [aux_sym_cmd_identifier_token23] = ACTIONS(1657), + [aux_sym_cmd_identifier_token24] = ACTIONS(1657), + [aux_sym_cmd_identifier_token25] = ACTIONS(1657), + [aux_sym_cmd_identifier_token26] = ACTIONS(1657), + [aux_sym_cmd_identifier_token27] = ACTIONS(1657), + [aux_sym_cmd_identifier_token28] = ACTIONS(1657), + [aux_sym_cmd_identifier_token29] = ACTIONS(1657), + [aux_sym_cmd_identifier_token30] = ACTIONS(1657), + [aux_sym_cmd_identifier_token31] = ACTIONS(1657), + [aux_sym_cmd_identifier_token32] = ACTIONS(1657), + [aux_sym_cmd_identifier_token33] = ACTIONS(1657), [aux_sym_cmd_identifier_token34] = ACTIONS(1645), - [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_token35] = ACTIONS(1657), + [aux_sym_cmd_identifier_token36] = ACTIONS(1657), + [aux_sym_cmd_identifier_token37] = ACTIONS(1657), [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), + [aux_sym_cmd_identifier_token39] = ACTIONS(1657), + [aux_sym_cmd_identifier_token40] = ACTIONS(1657), [anon_sym_def] = ACTIONS(1645), [anon_sym_export_DASHenv] = ACTIONS(1645), [anon_sym_extern] = ACTIONS(1645), [anon_sym_module] = ACTIONS(1645), [anon_sym_use] = ACTIONS(1645), [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(1717), [anon_sym_error] = ACTIONS(1645), [anon_sym_DASH2] = ACTIONS(1645), [anon_sym_break] = ACTIONS(1645), @@ -121771,7 +123753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1645), [anon_sym_else] = ACTIONS(1645), [anon_sym_match] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1657), [anon_sym_try] = ACTIONS(1645), [anon_sym_catch] = ACTIONS(1645), [anon_sym_return] = ACTIONS(1645), @@ -121782,597 +123764,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1645), [anon_sym_overlay] = ACTIONS(1645), [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), + [anon_sym_LPAREN2] = ACTIONS(1719), [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1651), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(1721), + [aux_sym__immediate_decimal_token3] = ACTIONS(1723), + [aux_sym__immediate_decimal_token4] = ACTIONS(1725), + [aux_sym__immediate_decimal_token5] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1657), [aux_sym__val_number_decimal_token1] = ACTIONS(1645), [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(1645), - [aux_sym__val_number_token5] = ACTIONS(1645), - [aux_sym__val_number_token6] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [sym__entry_separator] = ACTIONS(1647), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1647), - }, - [350] = { - [sym_comment] = STATE(350), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [aux_sym_cmd_identifier_token1] = ACTIONS(1745), - [aux_sym_cmd_identifier_token2] = ACTIONS(1745), - [aux_sym_cmd_identifier_token3] = ACTIONS(1745), - [aux_sym_cmd_identifier_token4] = ACTIONS(1745), - [aux_sym_cmd_identifier_token5] = ACTIONS(1745), - [aux_sym_cmd_identifier_token6] = ACTIONS(1745), - [aux_sym_cmd_identifier_token7] = ACTIONS(1745), - [aux_sym_cmd_identifier_token8] = ACTIONS(1745), - [aux_sym_cmd_identifier_token9] = ACTIONS(1745), - [aux_sym_cmd_identifier_token10] = ACTIONS(1745), - [aux_sym_cmd_identifier_token11] = ACTIONS(1745), - [aux_sym_cmd_identifier_token12] = ACTIONS(1745), - [aux_sym_cmd_identifier_token13] = ACTIONS(1745), - [aux_sym_cmd_identifier_token14] = ACTIONS(1745), - [aux_sym_cmd_identifier_token15] = ACTIONS(1745), - [aux_sym_cmd_identifier_token16] = ACTIONS(1745), - [aux_sym_cmd_identifier_token17] = ACTIONS(1745), - [aux_sym_cmd_identifier_token18] = ACTIONS(1745), - [aux_sym_cmd_identifier_token19] = ACTIONS(1745), - [aux_sym_cmd_identifier_token20] = ACTIONS(1745), - [aux_sym_cmd_identifier_token21] = ACTIONS(1745), - [aux_sym_cmd_identifier_token22] = ACTIONS(1745), - [aux_sym_cmd_identifier_token23] = ACTIONS(1745), - [aux_sym_cmd_identifier_token24] = ACTIONS(1745), - [aux_sym_cmd_identifier_token25] = ACTIONS(1745), - [aux_sym_cmd_identifier_token26] = ACTIONS(1745), - [aux_sym_cmd_identifier_token27] = ACTIONS(1745), - [aux_sym_cmd_identifier_token28] = ACTIONS(1745), - [aux_sym_cmd_identifier_token29] = ACTIONS(1745), - [aux_sym_cmd_identifier_token30] = ACTIONS(1745), - [aux_sym_cmd_identifier_token31] = ACTIONS(1745), - [aux_sym_cmd_identifier_token32] = ACTIONS(1745), - [aux_sym_cmd_identifier_token33] = ACTIONS(1745), - [aux_sym_cmd_identifier_token34] = ACTIONS(1745), - [aux_sym_cmd_identifier_token35] = ACTIONS(1745), - [aux_sym_cmd_identifier_token36] = ACTIONS(1745), - [aux_sym_cmd_identifier_token37] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_make] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_catch] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), - [sym__entry_separator] = ACTIONS(1747), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1747), - }, - [351] = { - [sym__expr_parenthesized_immediate] = STATE(7475), - [sym_comment] = STATE(351), - [anon_sym_export] = ACTIONS(1695), - [anon_sym_alias] = ACTIONS(1695), - [anon_sym_let] = ACTIONS(1695), - [anon_sym_let_DASHenv] = ACTIONS(1695), - [anon_sym_mut] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [aux_sym_cmd_identifier_token1] = ACTIONS(1695), - [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(1695), - [aux_sym_cmd_identifier_token9] = ACTIONS(1695), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1695), - [aux_sym_cmd_identifier_token13] = ACTIONS(1695), - [aux_sym_cmd_identifier_token14] = ACTIONS(1695), - [aux_sym_cmd_identifier_token15] = ACTIONS(1695), - [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(1695), - [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(1695), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1695), - [anon_sym_export_DASHenv] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_module] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_loop] = ACTIONS(1695), - [anon_sym_make] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_catch] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_source] = ACTIONS(1695), - [anon_sym_source_DASHenv] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_hide] = ACTIONS(1695), - [anon_sym_hide_DASHenv] = ACTIONS(1695), - [anon_sym_overlay] = ACTIONS(1695), - [anon_sym_as] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(1751), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1753), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1695), - [aux_sym__val_number_token5] = ACTIONS(1695), - [aux_sym__val_number_token6] = ACTIONS(1695), - [sym_filesize_unit] = ACTIONS(1755), - [sym_duration_unit] = ACTIONS(1757), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1645), - [anon_sym_alias] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_let_DASHenv] = ACTIONS(1645), - [anon_sym_mut] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [aux_sym_cmd_identifier_token1] = ACTIONS(1645), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1645), - [aux_sym_cmd_identifier_token9] = ACTIONS(1645), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1645), - [aux_sym_cmd_identifier_token13] = ACTIONS(1645), - [aux_sym_cmd_identifier_token14] = ACTIONS(1645), - [aux_sym_cmd_identifier_token15] = ACTIONS(1645), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1647), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1647), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1647), - [aux_sym_cmd_identifier_token32] = ACTIONS(1647), - [aux_sym_cmd_identifier_token33] = ACTIONS(1647), - [aux_sym_cmd_identifier_token34] = ACTIONS(1645), - [aux_sym_cmd_identifier_token35] = ACTIONS(1647), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [aux_sym_cmd_identifier_token37] = ACTIONS(1647), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1647), - [aux_sym_cmd_identifier_token40] = ACTIONS(1647), - [anon_sym_def] = ACTIONS(1645), - [anon_sym_export_DASHenv] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_module] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_make] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_source] = ACTIONS(1645), - [anon_sym_source_DASHenv] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_hide_DASHenv] = ACTIONS(1645), - [anon_sym_overlay] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), + [aux_sym__val_number_token1] = ACTIONS(1657), + [aux_sym__val_number_token2] = ACTIONS(1657), + [aux_sym__val_number_token3] = ACTIONS(1657), [aux_sym__val_number_token4] = ACTIONS(1645), [aux_sym__val_number_token5] = ACTIONS(1645), [aux_sym__val_number_token6] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1647), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1645), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym__str_single_quotes] = ACTIONS(1657), + [sym__str_back_ticks] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1657), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), - }, - [353] = { - [sym__expr_parenthesized_immediate] = STATE(730), - [sym__immediate_decimal] = STATE(716), - [sym_val_variable] = STATE(730), - [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [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(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1735), - [aux_sym_cmd_identifier_token11] = ACTIONS(1735), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [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(1733), - [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(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), - [aux_sym__immediate_decimal_token1] = ACTIONS(1761), - [aux_sym__immediate_decimal_token3] = ACTIONS(1763), - [aux_sym__immediate_decimal_token4] = ACTIONS(1765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), + [sym_raw_string_begin] = ACTIONS(1657), }, - [354] = { - [sym_comment] = STATE(354), - [anon_sym_export] = ACTIONS(1645), - [anon_sym_alias] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_let_DASHenv] = ACTIONS(1645), - [anon_sym_mut] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [aux_sym_cmd_identifier_token1] = ACTIONS(1645), - [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(1645), - [aux_sym_cmd_identifier_token9] = ACTIONS(1645), - [aux_sym_cmd_identifier_token10] = ACTIONS(1645), - [aux_sym_cmd_identifier_token11] = ACTIONS(1645), - [aux_sym_cmd_identifier_token12] = ACTIONS(1645), - [aux_sym_cmd_identifier_token13] = ACTIONS(1645), - [aux_sym_cmd_identifier_token14] = ACTIONS(1645), - [aux_sym_cmd_identifier_token15] = ACTIONS(1645), - [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(1645), - [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(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1645), - [anon_sym_export_DASHenv] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_module] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_make] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_source] = ACTIONS(1645), - [anon_sym_source_DASHenv] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_hide_DASHenv] = ACTIONS(1645), - [anon_sym_overlay] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [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(1645), - [aux_sym__val_number_token5] = ACTIONS(1645), - [aux_sym__val_number_token6] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [sym__entry_separator] = ACTIONS(1647), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1647), + [345] = { + [sym__expr_parenthesized_immediate] = STATE(512), + [sym__immediate_decimal] = STATE(540), + [sym_val_variable] = STATE(512), + [sym_comment] = STATE(345), + [anon_sym_export] = ACTIONS(1633), + [anon_sym_alias] = ACTIONS(1633), + [anon_sym_let] = ACTIONS(1633), + [anon_sym_let_DASHenv] = ACTIONS(1633), + [anon_sym_mut] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [aux_sym_cmd_identifier_token1] = ACTIONS(1633), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1633), + [aux_sym_cmd_identifier_token9] = ACTIONS(1633), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1633), + [aux_sym_cmd_identifier_token13] = ACTIONS(1633), + [aux_sym_cmd_identifier_token14] = ACTIONS(1633), + [aux_sym_cmd_identifier_token15] = ACTIONS(1633), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1633), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [aux_sym_cmd_identifier_token37] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_export_DASHenv] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym_module] = ACTIONS(1633), + [anon_sym_use] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1619), + [anon_sym_error] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_make] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_else] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_catch] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_source] = ACTIONS(1633), + [anon_sym_source_DASHenv] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_hide] = ACTIONS(1633), + [anon_sym_hide_DASHenv] = ACTIONS(1633), + [anon_sym_overlay] = ACTIONS(1633), + [anon_sym_as] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(1731), + [aux_sym__immediate_decimal_token3] = ACTIONS(1733), + [aux_sym__immediate_decimal_token4] = ACTIONS(1735), + [aux_sym__immediate_decimal_token5] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [aux_sym__val_number_token4] = ACTIONS(1633), + [aux_sym__val_number_token5] = ACTIONS(1633), + [aux_sym__val_number_token6] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1643), }, - [355] = { - [sym__expr_parenthesized_immediate] = STATE(722), - [sym__immediate_decimal] = STATE(734), - [sym_val_variable] = STATE(722), - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_alias] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_let_DASHenv] = ACTIONS(1737), - [anon_sym_mut] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [aux_sym_cmd_identifier_token1] = ACTIONS(1737), + [346] = { + [sym__expr_parenthesized_immediate] = STATE(642), + [sym__immediate_decimal] = STATE(643), + [sym_val_variable] = STATE(642), + [sym_comment] = STATE(346), + [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(1737), - [aux_sym_cmd_identifier_token9] = ACTIONS(1737), + [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(1737), - [aux_sym_cmd_identifier_token13] = ACTIONS(1737), - [aux_sym_cmd_identifier_token14] = ACTIONS(1737), - [aux_sym_cmd_identifier_token15] = ACTIONS(1737), + [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), @@ -122391,95 +123942,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1737), + [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(1737), + [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(1737), - [anon_sym_export_DASHenv] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_make] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1647), + [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(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_source] = ACTIONS(1737), - [anon_sym_source_DASHenv] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_hide] = ACTIONS(1737), - [anon_sym_hide_DASHenv] = ACTIONS(1737), - [anon_sym_overlay] = ACTIONS(1737), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1737), + [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(1649), + [anon_sym_PLUS2] = ACTIONS(1739), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(1761), - [aux_sym__immediate_decimal_token3] = ACTIONS(1763), - [aux_sym__immediate_decimal_token4] = ACTIONS(1765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1767), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1737), - [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_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(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), + [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), }, - [356] = { - [sym__expr_parenthesized_immediate] = STATE(748), - [sym__immediate_decimal] = STATE(749), - [sym_val_variable] = STATE(748), - [sym_comment] = STATE(356), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_alias] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_let_DASHenv] = ACTIONS(1741), - [anon_sym_mut] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [aux_sym_cmd_identifier_token1] = ACTIONS(1741), + [347] = { + [sym__expr_parenthesized_immediate] = STATE(644), + [sym__immediate_decimal] = STATE(646), + [sym_val_variable] = STATE(644), + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1743), + [anon_sym_alias] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_let_DASHenv] = ACTIONS(1743), + [anon_sym_mut] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [aux_sym_cmd_identifier_token1] = ACTIONS(1743), [aux_sym_cmd_identifier_token2] = ACTIONS(1743), [aux_sym_cmd_identifier_token3] = ACTIONS(1743), [aux_sym_cmd_identifier_token4] = ACTIONS(1743), [aux_sym_cmd_identifier_token5] = ACTIONS(1743), [aux_sym_cmd_identifier_token6] = ACTIONS(1743), [aux_sym_cmd_identifier_token7] = ACTIONS(1743), - [aux_sym_cmd_identifier_token8] = ACTIONS(1741), - [aux_sym_cmd_identifier_token9] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1743), + [aux_sym_cmd_identifier_token9] = ACTIONS(1743), [aux_sym_cmd_identifier_token10] = ACTIONS(1743), [aux_sym_cmd_identifier_token11] = ACTIONS(1743), - [aux_sym_cmd_identifier_token12] = ACTIONS(1741), - [aux_sym_cmd_identifier_token13] = ACTIONS(1741), - [aux_sym_cmd_identifier_token14] = ACTIONS(1741), - [aux_sym_cmd_identifier_token15] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1743), + [aux_sym_cmd_identifier_token13] = ACTIONS(1743), + [aux_sym_cmd_identifier_token14] = ACTIONS(1743), + [aux_sym_cmd_identifier_token15] = ACTIONS(1743), [aux_sym_cmd_identifier_token16] = ACTIONS(1743), [aux_sym_cmd_identifier_token17] = ACTIONS(1743), [aux_sym_cmd_identifier_token18] = ACTIONS(1743), @@ -122498,395 +124050,1143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1743), [aux_sym_cmd_identifier_token32] = ACTIONS(1743), [aux_sym_cmd_identifier_token33] = ACTIONS(1743), - [aux_sym_cmd_identifier_token34] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1743), [aux_sym_cmd_identifier_token35] = ACTIONS(1743), [aux_sym_cmd_identifier_token36] = ACTIONS(1743), [aux_sym_cmd_identifier_token37] = ACTIONS(1743), - [aux_sym_cmd_identifier_token38] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1743), [aux_sym_cmd_identifier_token39] = ACTIONS(1743), [aux_sym_cmd_identifier_token40] = ACTIONS(1743), - [anon_sym_def] = ACTIONS(1741), - [anon_sym_export_DASHenv] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_in2] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_make] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1743), + [anon_sym_export_DASHenv] = ACTIONS(1743), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_module] = ACTIONS(1743), + [anon_sym_use] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1743), + [anon_sym_DASH2] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_in2] = ACTIONS(1743), + [anon_sym_loop] = ACTIONS(1743), + [anon_sym_make] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_do] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_else] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_catch] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_source] = ACTIONS(1741), - [anon_sym_source_DASHenv] = ACTIONS(1741), - [anon_sym_register] = ACTIONS(1741), - [anon_sym_hide] = ACTIONS(1741), - [anon_sym_hide_DASHenv] = ACTIONS(1741), - [anon_sym_overlay] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1743), + [anon_sym_catch] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_source] = ACTIONS(1743), + [anon_sym_source_DASHenv] = ACTIONS(1743), + [anon_sym_register] = ACTIONS(1743), + [anon_sym_hide] = ACTIONS(1743), + [anon_sym_hide_DASHenv] = ACTIONS(1743), + [anon_sym_overlay] = ACTIONS(1743), + [anon_sym_as] = ACTIONS(1743), + [anon_sym_LPAREN2] = ACTIONS(1649), + [anon_sym_PLUS2] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1743), - [aux_sym__immediate_decimal_token1] = ACTIONS(1761), - [aux_sym__immediate_decimal_token3] = ACTIONS(1763), - [aux_sym__immediate_decimal_token4] = ACTIONS(1765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1767), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1743), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1743), + [aux_sym__val_number_decimal_token3] = ACTIONS(1743), + [aux_sym__val_number_decimal_token4] = ACTIONS(1743), [aux_sym__val_number_token1] = ACTIONS(1743), [aux_sym__val_number_token2] = ACTIONS(1743), [aux_sym__val_number_token3] = ACTIONS(1743), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1743), + [aux_sym__val_number_token5] = ACTIONS(1743), + [aux_sym__val_number_token6] = ACTIONS(1743), [anon_sym_DQUOTE] = ACTIONS(1743), [sym__str_single_quotes] = ACTIONS(1743), [sym__str_back_ticks] = ACTIONS(1743), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1743), + [sym__entry_separator] = ACTIONS(1745), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1745), + }, + [348] = { + [sym__expr_parenthesized_immediate] = STATE(632), + [sym__immediate_decimal] = STATE(633), + [sym_val_variable] = STATE(632), + [sym_comment] = STATE(348), + [anon_sym_export] = ACTIONS(1633), + [anon_sym_alias] = ACTIONS(1633), + [anon_sym_let] = ACTIONS(1633), + [anon_sym_let_DASHenv] = ACTIONS(1633), + [anon_sym_mut] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [aux_sym_cmd_identifier_token1] = ACTIONS(1633), + [aux_sym_cmd_identifier_token2] = ACTIONS(1633), + [aux_sym_cmd_identifier_token3] = ACTIONS(1633), + [aux_sym_cmd_identifier_token4] = ACTIONS(1633), + [aux_sym_cmd_identifier_token5] = ACTIONS(1633), + [aux_sym_cmd_identifier_token6] = ACTIONS(1633), + [aux_sym_cmd_identifier_token7] = ACTIONS(1633), + [aux_sym_cmd_identifier_token8] = ACTIONS(1633), + [aux_sym_cmd_identifier_token9] = ACTIONS(1633), + [aux_sym_cmd_identifier_token10] = ACTIONS(1633), + [aux_sym_cmd_identifier_token11] = ACTIONS(1633), + [aux_sym_cmd_identifier_token12] = ACTIONS(1633), + [aux_sym_cmd_identifier_token13] = ACTIONS(1633), + [aux_sym_cmd_identifier_token14] = ACTIONS(1633), + [aux_sym_cmd_identifier_token15] = ACTIONS(1633), + [aux_sym_cmd_identifier_token16] = ACTIONS(1633), + [aux_sym_cmd_identifier_token17] = ACTIONS(1633), + [aux_sym_cmd_identifier_token18] = ACTIONS(1633), + [aux_sym_cmd_identifier_token19] = ACTIONS(1633), + [aux_sym_cmd_identifier_token20] = ACTIONS(1633), + [aux_sym_cmd_identifier_token21] = ACTIONS(1633), + [aux_sym_cmd_identifier_token22] = ACTIONS(1633), + [aux_sym_cmd_identifier_token23] = ACTIONS(1633), + [aux_sym_cmd_identifier_token24] = ACTIONS(1633), + [aux_sym_cmd_identifier_token25] = ACTIONS(1633), + [aux_sym_cmd_identifier_token26] = ACTIONS(1633), + [aux_sym_cmd_identifier_token27] = ACTIONS(1633), + [aux_sym_cmd_identifier_token28] = ACTIONS(1633), + [aux_sym_cmd_identifier_token29] = ACTIONS(1633), + [aux_sym_cmd_identifier_token30] = ACTIONS(1633), + [aux_sym_cmd_identifier_token31] = ACTIONS(1633), + [aux_sym_cmd_identifier_token32] = ACTIONS(1633), + [aux_sym_cmd_identifier_token33] = ACTIONS(1633), + [aux_sym_cmd_identifier_token34] = ACTIONS(1633), + [aux_sym_cmd_identifier_token35] = ACTIONS(1633), + [aux_sym_cmd_identifier_token36] = ACTIONS(1633), + [aux_sym_cmd_identifier_token37] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_export_DASHenv] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym_module] = ACTIONS(1633), + [anon_sym_use] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_make] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_else] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_catch] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_source] = ACTIONS(1633), + [anon_sym_source_DASHenv] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_hide] = ACTIONS(1633), + [anon_sym_hide_DASHenv] = ACTIONS(1633), + [anon_sym_overlay] = ACTIONS(1633), + [anon_sym_as] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1649), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [aux_sym__val_number_token4] = ACTIONS(1633), + [aux_sym__val_number_token5] = ACTIONS(1633), + [aux_sym__val_number_token6] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), + [sym__entry_separator] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1643), + }, + [349] = { + [sym__expr_parenthesized_immediate] = STATE(716), + [sym__immediate_decimal] = STATE(747), + [sym_val_variable] = STATE(716), + [sym_comment] = STATE(349), + [anon_sym_export] = ACTIONS(1743), + [anon_sym_alias] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_let_DASHenv] = ACTIONS(1743), + [anon_sym_mut] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [aux_sym_cmd_identifier_token1] = ACTIONS(1743), + [aux_sym_cmd_identifier_token2] = ACTIONS(1745), + [aux_sym_cmd_identifier_token3] = ACTIONS(1745), + [aux_sym_cmd_identifier_token4] = ACTIONS(1745), + [aux_sym_cmd_identifier_token5] = ACTIONS(1745), + [aux_sym_cmd_identifier_token6] = ACTIONS(1745), + [aux_sym_cmd_identifier_token7] = ACTIONS(1745), + [aux_sym_cmd_identifier_token8] = ACTIONS(1743), + [aux_sym_cmd_identifier_token9] = ACTIONS(1743), + [aux_sym_cmd_identifier_token10] = ACTIONS(1745), + [aux_sym_cmd_identifier_token11] = ACTIONS(1745), + [aux_sym_cmd_identifier_token12] = ACTIONS(1743), + [aux_sym_cmd_identifier_token13] = ACTIONS(1743), + [aux_sym_cmd_identifier_token14] = ACTIONS(1743), + [aux_sym_cmd_identifier_token15] = ACTIONS(1743), + [aux_sym_cmd_identifier_token16] = ACTIONS(1745), + [aux_sym_cmd_identifier_token17] = ACTIONS(1745), + [aux_sym_cmd_identifier_token18] = ACTIONS(1745), + [aux_sym_cmd_identifier_token19] = ACTIONS(1745), + [aux_sym_cmd_identifier_token20] = ACTIONS(1745), + [aux_sym_cmd_identifier_token21] = ACTIONS(1745), + [aux_sym_cmd_identifier_token22] = ACTIONS(1745), + [aux_sym_cmd_identifier_token23] = ACTIONS(1745), + [aux_sym_cmd_identifier_token24] = ACTIONS(1745), + [aux_sym_cmd_identifier_token25] = ACTIONS(1745), + [aux_sym_cmd_identifier_token26] = ACTIONS(1745), + [aux_sym_cmd_identifier_token27] = ACTIONS(1745), + [aux_sym_cmd_identifier_token28] = ACTIONS(1745), + [aux_sym_cmd_identifier_token29] = ACTIONS(1745), + [aux_sym_cmd_identifier_token30] = ACTIONS(1745), + [aux_sym_cmd_identifier_token31] = ACTIONS(1745), + [aux_sym_cmd_identifier_token32] = ACTIONS(1745), + [aux_sym_cmd_identifier_token33] = ACTIONS(1745), + [aux_sym_cmd_identifier_token34] = ACTIONS(1743), + [aux_sym_cmd_identifier_token35] = ACTIONS(1745), + [aux_sym_cmd_identifier_token36] = ACTIONS(1745), + [aux_sym_cmd_identifier_token37] = ACTIONS(1745), + [aux_sym_cmd_identifier_token38] = ACTIONS(1743), + [aux_sym_cmd_identifier_token39] = ACTIONS(1745), + [aux_sym_cmd_identifier_token40] = ACTIONS(1745), + [anon_sym_def] = ACTIONS(1743), + [anon_sym_export_DASHenv] = ACTIONS(1743), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_module] = ACTIONS(1743), + [anon_sym_use] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1743), + [anon_sym_DASH2] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_in2] = ACTIONS(1743), + [anon_sym_loop] = ACTIONS(1743), + [anon_sym_make] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_do] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_else] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1743), + [anon_sym_catch] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_source] = ACTIONS(1743), + [anon_sym_source_DASHenv] = ACTIONS(1743), + [anon_sym_register] = ACTIONS(1743), + [anon_sym_hide] = ACTIONS(1743), + [anon_sym_hide_DASHenv] = ACTIONS(1743), + [anon_sym_overlay] = ACTIONS(1743), + [anon_sym_as] = ACTIONS(1743), + [anon_sym_LPAREN2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), + [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(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1743), + [aux_sym__val_number_decimal_token3] = ACTIONS(1743), + [aux_sym__val_number_decimal_token4] = ACTIONS(1743), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [aux_sym__val_number_token4] = ACTIONS(1743), + [aux_sym__val_number_token5] = ACTIONS(1743), + [aux_sym__val_number_token6] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1743), + [sym_raw_string_begin] = ACTIONS(1745), + }, + [350] = { + [sym_comment] = STATE(350), + [anon_sym_export] = ACTIONS(1669), + [anon_sym_alias] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_let_DASHenv] = ACTIONS(1669), + [anon_sym_mut] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [aux_sym_cmd_identifier_token1] = ACTIONS(1669), + [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(1669), + [aux_sym_cmd_identifier_token9] = ACTIONS(1669), + [aux_sym_cmd_identifier_token10] = ACTIONS(1671), + [aux_sym_cmd_identifier_token11] = ACTIONS(1671), + [aux_sym_cmd_identifier_token12] = ACTIONS(1669), + [aux_sym_cmd_identifier_token13] = ACTIONS(1669), + [aux_sym_cmd_identifier_token14] = ACTIONS(1669), + [aux_sym_cmd_identifier_token15] = ACTIONS(1669), + [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(1669), + [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(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1671), + [aux_sym_cmd_identifier_token40] = ACTIONS(1671), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_export_DASHenv] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_module] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_error] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_make] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_else] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_catch] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_source] = ACTIONS(1669), + [anon_sym_source_DASHenv] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_hide] = ACTIONS(1669), + [anon_sym_hide_DASHenv] = ACTIONS(1669), + [anon_sym_overlay] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1669), + [aux_sym__val_number_token5] = ACTIONS(1669), + [aux_sym__val_number_token6] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1669), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), + }, + [351] = { + [sym_comment] = STATE(351), + [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(1713), + [aux_sym_cmd_identifier_token3] = ACTIONS(1713), + [aux_sym_cmd_identifier_token4] = ACTIONS(1713), + [aux_sym_cmd_identifier_token5] = ACTIONS(1713), + [aux_sym_cmd_identifier_token6] = ACTIONS(1713), + [aux_sym_cmd_identifier_token7] = ACTIONS(1713), + [aux_sym_cmd_identifier_token8] = ACTIONS(1711), + [aux_sym_cmd_identifier_token9] = ACTIONS(1711), + [aux_sym_cmd_identifier_token10] = ACTIONS(1713), + [aux_sym_cmd_identifier_token11] = ACTIONS(1713), + [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(1713), + [aux_sym_cmd_identifier_token17] = ACTIONS(1713), + [aux_sym_cmd_identifier_token18] = ACTIONS(1713), + [aux_sym_cmd_identifier_token19] = ACTIONS(1713), + [aux_sym_cmd_identifier_token20] = ACTIONS(1713), + [aux_sym_cmd_identifier_token21] = ACTIONS(1713), + [aux_sym_cmd_identifier_token22] = ACTIONS(1713), + [aux_sym_cmd_identifier_token23] = ACTIONS(1713), + [aux_sym_cmd_identifier_token24] = ACTIONS(1713), + [aux_sym_cmd_identifier_token25] = ACTIONS(1713), + [aux_sym_cmd_identifier_token26] = ACTIONS(1713), + [aux_sym_cmd_identifier_token27] = ACTIONS(1713), + [aux_sym_cmd_identifier_token28] = ACTIONS(1713), + [aux_sym_cmd_identifier_token29] = ACTIONS(1713), + [aux_sym_cmd_identifier_token30] = ACTIONS(1713), + [aux_sym_cmd_identifier_token31] = ACTIONS(1713), + [aux_sym_cmd_identifier_token32] = ACTIONS(1713), + [aux_sym_cmd_identifier_token33] = ACTIONS(1713), + [aux_sym_cmd_identifier_token34] = ACTIONS(1711), + [aux_sym_cmd_identifier_token35] = ACTIONS(1713), + [aux_sym_cmd_identifier_token36] = ACTIONS(1713), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_in2] = 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_as] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [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), + [aux_sym__immediate_decimal_token2] = ACTIONS(1755), + [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), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1713), + }, + [352] = { + [sym_cell_path] = STATE(474), + [sym_path] = STATE(429), + [sym_comment] = STATE(352), + [aux_sym_cell_path_repeat1] = STATE(375), + [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(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), + [aux_sym_cmd_identifier_token34] = ACTIONS(1757), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = ACTIONS(1757), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), + [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_LPAREN] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_in2] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_make] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_catch] = 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_as] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [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_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), + [sym__entry_separator] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1761), + }, + [353] = { + [sym_comment] = STATE(353), + [anon_sym_export] = ACTIONS(1669), + [anon_sym_alias] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_let_DASHenv] = ACTIONS(1669), + [anon_sym_mut] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [aux_sym_cmd_identifier_token1] = ACTIONS(1669), + [aux_sym_cmd_identifier_token2] = ACTIONS(1669), + [aux_sym_cmd_identifier_token3] = ACTIONS(1669), + [aux_sym_cmd_identifier_token4] = ACTIONS(1669), + [aux_sym_cmd_identifier_token5] = ACTIONS(1669), + [aux_sym_cmd_identifier_token6] = ACTIONS(1669), + [aux_sym_cmd_identifier_token7] = ACTIONS(1669), + [aux_sym_cmd_identifier_token8] = ACTIONS(1669), + [aux_sym_cmd_identifier_token9] = ACTIONS(1669), + [aux_sym_cmd_identifier_token10] = ACTIONS(1669), + [aux_sym_cmd_identifier_token11] = ACTIONS(1669), + [aux_sym_cmd_identifier_token12] = ACTIONS(1669), + [aux_sym_cmd_identifier_token13] = ACTIONS(1669), + [aux_sym_cmd_identifier_token14] = ACTIONS(1669), + [aux_sym_cmd_identifier_token15] = ACTIONS(1669), + [aux_sym_cmd_identifier_token16] = ACTIONS(1669), + [aux_sym_cmd_identifier_token17] = ACTIONS(1669), + [aux_sym_cmd_identifier_token18] = ACTIONS(1669), + [aux_sym_cmd_identifier_token19] = ACTIONS(1669), + [aux_sym_cmd_identifier_token20] = ACTIONS(1669), + [aux_sym_cmd_identifier_token21] = ACTIONS(1669), + [aux_sym_cmd_identifier_token22] = ACTIONS(1669), + [aux_sym_cmd_identifier_token23] = ACTIONS(1669), + [aux_sym_cmd_identifier_token24] = ACTIONS(1669), + [aux_sym_cmd_identifier_token25] = ACTIONS(1669), + [aux_sym_cmd_identifier_token26] = ACTIONS(1669), + [aux_sym_cmd_identifier_token27] = ACTIONS(1669), + [aux_sym_cmd_identifier_token28] = ACTIONS(1669), + [aux_sym_cmd_identifier_token29] = ACTIONS(1669), + [aux_sym_cmd_identifier_token30] = ACTIONS(1669), + [aux_sym_cmd_identifier_token31] = ACTIONS(1669), + [aux_sym_cmd_identifier_token32] = ACTIONS(1669), + [aux_sym_cmd_identifier_token33] = ACTIONS(1669), + [aux_sym_cmd_identifier_token34] = ACTIONS(1669), + [aux_sym_cmd_identifier_token35] = ACTIONS(1669), + [aux_sym_cmd_identifier_token36] = ACTIONS(1669), + [aux_sym_cmd_identifier_token37] = ACTIONS(1669), + [aux_sym_cmd_identifier_token38] = ACTIONS(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1669), + [aux_sym_cmd_identifier_token40] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_export_DASHenv] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_module] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_error] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_make] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_else] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_catch] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_source] = ACTIONS(1669), + [anon_sym_source_DASHenv] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_hide] = ACTIONS(1669), + [anon_sym_hide_DASHenv] = ACTIONS(1669), + [anon_sym_overlay] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1669), + [aux_sym__val_number_decimal_token3] = ACTIONS(1669), + [aux_sym__val_number_decimal_token4] = ACTIONS(1669), + [aux_sym__val_number_token1] = ACTIONS(1669), + [aux_sym__val_number_token2] = ACTIONS(1669), + [aux_sym__val_number_token3] = ACTIONS(1669), + [aux_sym__val_number_token4] = ACTIONS(1669), + [aux_sym__val_number_token5] = ACTIONS(1669), + [aux_sym__val_number_token6] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [sym__str_single_quotes] = ACTIONS(1669), + [sym__str_back_ticks] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), + [sym__entry_separator] = ACTIONS(1671), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1671), + }, + [354] = { + [sym_cell_path] = STATE(480), + [sym_path] = STATE(429), + [sym_comment] = STATE(354), + [aux_sym_cell_path_repeat1] = STATE(375), + [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(1763), + [aux_sym_cmd_identifier_token26] = ACTIONS(1763), + [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(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), + [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(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_PLUS2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT] = ACTIONS(1759), + [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), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), + [sym__entry_separator] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1765), + }, + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_alias] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_let_DASHenv] = ACTIONS(1661), + [anon_sym_mut] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [aux_sym_cmd_identifier_token1] = ACTIONS(1661), + [aux_sym_cmd_identifier_token2] = ACTIONS(1661), + [aux_sym_cmd_identifier_token3] = ACTIONS(1661), + [aux_sym_cmd_identifier_token4] = ACTIONS(1661), + [aux_sym_cmd_identifier_token5] = ACTIONS(1661), + [aux_sym_cmd_identifier_token6] = ACTIONS(1661), + [aux_sym_cmd_identifier_token7] = ACTIONS(1661), + [aux_sym_cmd_identifier_token8] = ACTIONS(1661), + [aux_sym_cmd_identifier_token9] = ACTIONS(1661), + [aux_sym_cmd_identifier_token10] = ACTIONS(1661), + [aux_sym_cmd_identifier_token11] = ACTIONS(1661), + [aux_sym_cmd_identifier_token12] = ACTIONS(1661), + [aux_sym_cmd_identifier_token13] = ACTIONS(1661), + [aux_sym_cmd_identifier_token14] = ACTIONS(1661), + [aux_sym_cmd_identifier_token15] = ACTIONS(1661), + [aux_sym_cmd_identifier_token16] = ACTIONS(1661), + [aux_sym_cmd_identifier_token17] = ACTIONS(1661), + [aux_sym_cmd_identifier_token18] = ACTIONS(1661), + [aux_sym_cmd_identifier_token19] = ACTIONS(1661), + [aux_sym_cmd_identifier_token20] = ACTIONS(1661), + [aux_sym_cmd_identifier_token21] = ACTIONS(1661), + [aux_sym_cmd_identifier_token22] = ACTIONS(1661), + [aux_sym_cmd_identifier_token23] = ACTIONS(1661), + [aux_sym_cmd_identifier_token24] = ACTIONS(1661), + [aux_sym_cmd_identifier_token25] = ACTIONS(1661), + [aux_sym_cmd_identifier_token26] = ACTIONS(1661), + [aux_sym_cmd_identifier_token27] = ACTIONS(1661), + [aux_sym_cmd_identifier_token28] = ACTIONS(1661), + [aux_sym_cmd_identifier_token29] = ACTIONS(1661), + [aux_sym_cmd_identifier_token30] = ACTIONS(1661), + [aux_sym_cmd_identifier_token31] = ACTIONS(1661), + [aux_sym_cmd_identifier_token32] = ACTIONS(1661), + [aux_sym_cmd_identifier_token33] = ACTIONS(1661), + [aux_sym_cmd_identifier_token34] = ACTIONS(1661), + [aux_sym_cmd_identifier_token35] = ACTIONS(1661), + [aux_sym_cmd_identifier_token36] = ACTIONS(1661), + [aux_sym_cmd_identifier_token37] = ACTIONS(1661), + [aux_sym_cmd_identifier_token38] = ACTIONS(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1661), + [aux_sym_cmd_identifier_token40] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1661), + [anon_sym_export_DASHenv] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_use] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_error] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_loop] = ACTIONS(1661), + [anon_sym_make] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_source] = ACTIONS(1661), + [anon_sym_source_DASHenv] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_hide] = ACTIONS(1661), + [anon_sym_hide_DASHenv] = ACTIONS(1661), + [anon_sym_overlay] = ACTIONS(1661), + [anon_sym_as] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [aux_sym__val_number_decimal_token2] = ACTIONS(1661), + [aux_sym__val_number_decimal_token3] = ACTIONS(1661), + [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_token1] = ACTIONS(1661), + [aux_sym__val_number_token2] = ACTIONS(1661), + [aux_sym__val_number_token3] = ACTIONS(1661), + [aux_sym__val_number_token4] = ACTIONS(1661), + [aux_sym__val_number_token5] = ACTIONS(1661), + [aux_sym__val_number_token6] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [sym__str_single_quotes] = ACTIONS(1661), + [sym__str_back_ticks] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), + [sym__entry_separator] = ACTIONS(1663), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1663), + }, + [356] = { + [sym_comment] = STATE(356), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_in2] = 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_as] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [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), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1713), }, [357] = { [sym_comment] = STATE(357), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_alias] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_let_DASHenv] = ACTIONS(1637), - [anon_sym_mut] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [aux_sym_cmd_identifier_token1] = ACTIONS(1637), - [aux_sym_cmd_identifier_token2] = ACTIONS(1637), - [aux_sym_cmd_identifier_token3] = ACTIONS(1637), - [aux_sym_cmd_identifier_token4] = ACTIONS(1637), - [aux_sym_cmd_identifier_token5] = ACTIONS(1637), - [aux_sym_cmd_identifier_token6] = ACTIONS(1637), - [aux_sym_cmd_identifier_token7] = ACTIONS(1637), - [aux_sym_cmd_identifier_token8] = ACTIONS(1637), - [aux_sym_cmd_identifier_token9] = ACTIONS(1637), - [aux_sym_cmd_identifier_token10] = ACTIONS(1637), - [aux_sym_cmd_identifier_token11] = ACTIONS(1637), - [aux_sym_cmd_identifier_token12] = ACTIONS(1637), - [aux_sym_cmd_identifier_token13] = ACTIONS(1637), - [aux_sym_cmd_identifier_token14] = ACTIONS(1637), - [aux_sym_cmd_identifier_token15] = ACTIONS(1637), - [aux_sym_cmd_identifier_token16] = ACTIONS(1637), - [aux_sym_cmd_identifier_token17] = ACTIONS(1637), - [aux_sym_cmd_identifier_token18] = ACTIONS(1637), - [aux_sym_cmd_identifier_token19] = ACTIONS(1637), - [aux_sym_cmd_identifier_token20] = ACTIONS(1637), - [aux_sym_cmd_identifier_token21] = ACTIONS(1637), - [aux_sym_cmd_identifier_token22] = ACTIONS(1637), - [aux_sym_cmd_identifier_token23] = ACTIONS(1637), - [aux_sym_cmd_identifier_token24] = ACTIONS(1637), - [aux_sym_cmd_identifier_token25] = ACTIONS(1637), - [aux_sym_cmd_identifier_token26] = ACTIONS(1637), - [aux_sym_cmd_identifier_token27] = ACTIONS(1637), - [aux_sym_cmd_identifier_token28] = ACTIONS(1637), - [aux_sym_cmd_identifier_token29] = ACTIONS(1637), - [aux_sym_cmd_identifier_token30] = ACTIONS(1637), - [aux_sym_cmd_identifier_token31] = ACTIONS(1637), - [aux_sym_cmd_identifier_token32] = ACTIONS(1637), - [aux_sym_cmd_identifier_token33] = ACTIONS(1637), - [aux_sym_cmd_identifier_token34] = ACTIONS(1637), - [aux_sym_cmd_identifier_token35] = ACTIONS(1637), - [aux_sym_cmd_identifier_token36] = ACTIONS(1637), - [aux_sym_cmd_identifier_token37] = ACTIONS(1637), - [aux_sym_cmd_identifier_token38] = ACTIONS(1637), - [aux_sym_cmd_identifier_token39] = ACTIONS(1637), - [aux_sym_cmd_identifier_token40] = ACTIONS(1637), - [anon_sym_def] = ACTIONS(1637), - [anon_sym_export_DASHenv] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym_module] = ACTIONS(1637), - [anon_sym_use] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_error] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_loop] = ACTIONS(1637), - [anon_sym_make] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_catch] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_source] = ACTIONS(1637), - [anon_sym_source_DASHenv] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_hide] = ACTIONS(1637), - [anon_sym_hide_DASHenv] = ACTIONS(1637), - [anon_sym_overlay] = ACTIONS(1637), - [anon_sym_as] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1637), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1637), - [aux_sym__val_number_decimal_token3] = ACTIONS(1637), - [aux_sym__val_number_decimal_token4] = ACTIONS(1637), - [aux_sym__val_number_token1] = ACTIONS(1637), - [aux_sym__val_number_token2] = ACTIONS(1637), - [aux_sym__val_number_token3] = ACTIONS(1637), - [aux_sym__val_number_token4] = ACTIONS(1637), - [aux_sym__val_number_token5] = ACTIONS(1637), - [aux_sym__val_number_token6] = ACTIONS(1637), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym__str_single_quotes] = ACTIONS(1637), - [sym__str_back_ticks] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1637), - [sym__entry_separator] = ACTIONS(1639), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1637), + [anon_sym_export] = ACTIONS(1767), + [anon_sym_alias] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_let_DASHenv] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [aux_sym_cmd_identifier_token1] = ACTIONS(1767), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1767), + [aux_sym_cmd_identifier_token9] = ACTIONS(1767), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1767), + [aux_sym_cmd_identifier_token13] = ACTIONS(1767), + [aux_sym_cmd_identifier_token14] = ACTIONS(1767), + [aux_sym_cmd_identifier_token15] = ACTIONS(1767), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1767), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1767), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1767), + [anon_sym_export_DASHenv] = ACTIONS(1767), + [anon_sym_extern] = ACTIONS(1767), + [anon_sym_module] = ACTIONS(1767), + [anon_sym_use] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_loop] = ACTIONS(1767), + [anon_sym_make] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_else] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_catch] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_source] = ACTIONS(1767), + [anon_sym_source_DASHenv] = ACTIONS(1767), + [anon_sym_register] = ACTIONS(1767), + [anon_sym_hide] = ACTIONS(1767), + [anon_sym_hide_DASHenv] = ACTIONS(1767), + [anon_sym_overlay] = ACTIONS(1767), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1767), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [sym__entry_separator] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1639), + [sym_raw_string_begin] = ACTIONS(1769), }, [358] = { - [sym__expr_parenthesized_immediate] = STATE(768), - [sym__immediate_decimal] = STATE(769), - [sym_val_variable] = STATE(768), [sym_comment] = STATE(358), - [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(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(1663), - [aux_sym_cmd_identifier_token9] = ACTIONS(1663), - [aux_sym_cmd_identifier_token10] = ACTIONS(1673), - [aux_sym_cmd_identifier_token11] = ACTIONS(1673), - [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(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(1663), - [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(1663), - [aux_sym_cmd_identifier_token39] = ACTIONS(1673), - [aux_sym_cmd_identifier_token40] = ACTIONS(1673), - [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(1715), - [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(1673), - [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(1717), - [anon_sym_PLUS2] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1673), - [aux_sym__immediate_decimal_token1] = ACTIONS(1761), - [aux_sym__immediate_decimal_token3] = ACTIONS(1763), - [aux_sym__immediate_decimal_token4] = ACTIONS(1765), - [aux_sym__immediate_decimal_token5] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1673), - [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(1673), - [aux_sym__val_number_token2] = ACTIONS(1673), - [aux_sym__val_number_token3] = ACTIONS(1673), - [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(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1673), - }, - [359] = { - [sym_comment] = STATE(359), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [aux_sym_cmd_identifier_token1] = ACTIONS(1745), - [aux_sym_cmd_identifier_token2] = ACTIONS(1747), - [aux_sym_cmd_identifier_token3] = ACTIONS(1747), - [aux_sym_cmd_identifier_token4] = ACTIONS(1747), - [aux_sym_cmd_identifier_token5] = ACTIONS(1747), - [aux_sym_cmd_identifier_token6] = ACTIONS(1747), - [aux_sym_cmd_identifier_token7] = ACTIONS(1747), - [aux_sym_cmd_identifier_token8] = ACTIONS(1745), - [aux_sym_cmd_identifier_token9] = ACTIONS(1745), - [aux_sym_cmd_identifier_token10] = ACTIONS(1747), - [aux_sym_cmd_identifier_token11] = ACTIONS(1747), - [aux_sym_cmd_identifier_token12] = ACTIONS(1745), - [aux_sym_cmd_identifier_token13] = ACTIONS(1745), - [aux_sym_cmd_identifier_token14] = ACTIONS(1745), - [aux_sym_cmd_identifier_token15] = ACTIONS(1745), - [aux_sym_cmd_identifier_token16] = ACTIONS(1747), - [aux_sym_cmd_identifier_token17] = ACTIONS(1747), - [aux_sym_cmd_identifier_token18] = ACTIONS(1747), - [aux_sym_cmd_identifier_token19] = ACTIONS(1747), - [aux_sym_cmd_identifier_token20] = ACTIONS(1747), - [aux_sym_cmd_identifier_token21] = ACTIONS(1747), - [aux_sym_cmd_identifier_token22] = ACTIONS(1747), - [aux_sym_cmd_identifier_token23] = ACTIONS(1747), - [aux_sym_cmd_identifier_token24] = ACTIONS(1747), - [aux_sym_cmd_identifier_token25] = ACTIONS(1747), - [aux_sym_cmd_identifier_token26] = ACTIONS(1747), - [aux_sym_cmd_identifier_token27] = ACTIONS(1747), - [aux_sym_cmd_identifier_token28] = ACTIONS(1747), - [aux_sym_cmd_identifier_token29] = ACTIONS(1747), - [aux_sym_cmd_identifier_token30] = ACTIONS(1747), - [aux_sym_cmd_identifier_token31] = ACTIONS(1747), - [aux_sym_cmd_identifier_token32] = ACTIONS(1747), - [aux_sym_cmd_identifier_token33] = ACTIONS(1747), - [aux_sym_cmd_identifier_token34] = ACTIONS(1745), - [aux_sym_cmd_identifier_token35] = ACTIONS(1747), - [aux_sym_cmd_identifier_token36] = ACTIONS(1747), - [aux_sym_cmd_identifier_token37] = ACTIONS(1747), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1747), - [aux_sym_cmd_identifier_token40] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_make] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_catch] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), - }, - [360] = { - [sym_cell_path] = STATE(494), - [sym_path] = STATE(440), - [sym_comment] = STATE(360), - [aux_sym_cell_path_repeat1] = STATE(377), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -122964,12 +125264,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1771), [anon_sym_overlay] = ACTIONS(1771), [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_PLUS2] = ACTIONS(1771), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(1775), + [aux_sym__immediate_decimal_token2] = ACTIONS(1777), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), [aux_sym__val_number_decimal_token2] = ACTIONS(1771), @@ -122985,1208 +125287,994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1771), [sym__str_back_ticks] = ACTIONS(1771), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [sym__entry_separator] = ACTIONS(1775), + [sym__entry_separator] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [359] = { + [sym_cell_path] = STATE(461), + [sym_path] = STATE(429), + [sym_comment] = STATE(359), + [aux_sym_cell_path_repeat1] = STATE(375), + [anon_sym_export] = ACTIONS(969), + [anon_sym_alias] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_let_DASHenv] = ACTIONS(969), + [anon_sym_mut] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [aux_sym_cmd_identifier_token1] = ACTIONS(969), + [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(969), + [aux_sym_cmd_identifier_token9] = ACTIONS(969), + [aux_sym_cmd_identifier_token10] = ACTIONS(969), + [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token12] = ACTIONS(969), + [aux_sym_cmd_identifier_token13] = ACTIONS(969), + [aux_sym_cmd_identifier_token14] = ACTIONS(969), + [aux_sym_cmd_identifier_token15] = ACTIONS(969), + [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(969), + [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(969), + [aux_sym_cmd_identifier_token39] = ACTIONS(969), + [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [anon_sym_def] = ACTIONS(969), + [anon_sym_export_DASHenv] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_error] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_make] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_try] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_source] = ACTIONS(969), + [anon_sym_source_DASHenv] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_hide_DASHenv] = ACTIONS(969), + [anon_sym_overlay] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), + [sym__entry_separator] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(971), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1775), + [sym_raw_string_begin] = ACTIONS(1781), }, [361] = { - [sym_cell_path] = STATE(499), - [sym_path] = STATE(440), + [sym__expr_parenthesized_immediate] = STATE(757), + [sym__immediate_decimal] = STATE(705), + [sym_val_variable] = STATE(757), [sym_comment] = STATE(361), - [aux_sym_cell_path_repeat1] = STATE(377), - [anon_sym_export] = ACTIONS(1777), - [anon_sym_alias] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_let_DASHenv] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [aux_sym_cmd_identifier_token1] = ACTIONS(1777), - [aux_sym_cmd_identifier_token2] = ACTIONS(1777), - [aux_sym_cmd_identifier_token3] = ACTIONS(1777), - [aux_sym_cmd_identifier_token4] = ACTIONS(1777), - [aux_sym_cmd_identifier_token5] = ACTIONS(1777), - [aux_sym_cmd_identifier_token6] = ACTIONS(1777), - [aux_sym_cmd_identifier_token7] = ACTIONS(1777), - [aux_sym_cmd_identifier_token8] = ACTIONS(1777), - [aux_sym_cmd_identifier_token9] = ACTIONS(1777), - [aux_sym_cmd_identifier_token10] = ACTIONS(1777), - [aux_sym_cmd_identifier_token11] = ACTIONS(1777), - [aux_sym_cmd_identifier_token12] = ACTIONS(1777), - [aux_sym_cmd_identifier_token13] = ACTIONS(1777), - [aux_sym_cmd_identifier_token14] = ACTIONS(1777), - [aux_sym_cmd_identifier_token15] = ACTIONS(1777), - [aux_sym_cmd_identifier_token16] = ACTIONS(1777), - [aux_sym_cmd_identifier_token17] = ACTIONS(1777), - [aux_sym_cmd_identifier_token18] = ACTIONS(1777), - [aux_sym_cmd_identifier_token19] = ACTIONS(1777), - [aux_sym_cmd_identifier_token20] = ACTIONS(1777), - [aux_sym_cmd_identifier_token21] = ACTIONS(1777), - [aux_sym_cmd_identifier_token22] = ACTIONS(1777), - [aux_sym_cmd_identifier_token23] = ACTIONS(1777), - [aux_sym_cmd_identifier_token24] = ACTIONS(1777), - [aux_sym_cmd_identifier_token25] = ACTIONS(1777), - [aux_sym_cmd_identifier_token26] = ACTIONS(1777), - [aux_sym_cmd_identifier_token27] = ACTIONS(1777), - [aux_sym_cmd_identifier_token28] = ACTIONS(1777), - [aux_sym_cmd_identifier_token29] = ACTIONS(1777), - [aux_sym_cmd_identifier_token30] = ACTIONS(1777), - [aux_sym_cmd_identifier_token31] = ACTIONS(1777), - [aux_sym_cmd_identifier_token32] = ACTIONS(1777), - [aux_sym_cmd_identifier_token33] = ACTIONS(1777), - [aux_sym_cmd_identifier_token34] = ACTIONS(1777), - [aux_sym_cmd_identifier_token35] = ACTIONS(1777), - [aux_sym_cmd_identifier_token36] = ACTIONS(1777), - [aux_sym_cmd_identifier_token37] = ACTIONS(1777), - [aux_sym_cmd_identifier_token38] = ACTIONS(1777), - [aux_sym_cmd_identifier_token39] = ACTIONS(1777), - [aux_sym_cmd_identifier_token40] = ACTIONS(1777), - [anon_sym_def] = ACTIONS(1777), - [anon_sym_export_DASHenv] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_module] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_DOLLAR] = ACTIONS(1777), - [anon_sym_error] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_in2] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_make] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_catch] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_source] = ACTIONS(1777), - [anon_sym_source_DASHenv] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_hide] = ACTIONS(1777), - [anon_sym_hide_DASHenv] = ACTIONS(1777), - [anon_sym_overlay] = ACTIONS(1777), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_PLUS2] = ACTIONS(1777), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1777), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1777), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), - [aux_sym__val_number_decimal_token2] = ACTIONS(1777), - [aux_sym__val_number_decimal_token3] = ACTIONS(1777), - [aux_sym__val_number_decimal_token4] = ACTIONS(1777), - [aux_sym__val_number_token1] = ACTIONS(1777), - [aux_sym__val_number_token2] = ACTIONS(1777), - [aux_sym__val_number_token3] = ACTIONS(1777), - [aux_sym__val_number_token4] = ACTIONS(1777), - [aux_sym__val_number_token5] = ACTIONS(1777), - [aux_sym__val_number_token6] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [sym__str_single_quotes] = ACTIONS(1777), - [sym__str_back_ticks] = ACTIONS(1777), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1777), - [sym__entry_separator] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1779), + [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(1717), + [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(1719), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [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(1741), + [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(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(251), + [sym_raw_string_begin] = ACTIONS(1741), }, [362] = { - [sym_cell_path] = STATE(476), - [sym_path] = STATE(440), + [sym__expr_parenthesized_immediate] = STATE(722), + [sym__immediate_decimal] = STATE(724), + [sym_val_variable] = STATE(722), [sym_comment] = STATE(362), - [aux_sym_cell_path_repeat1] = STATE(377), - [anon_sym_export] = ACTIONS(973), - [anon_sym_alias] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_let_DASHenv] = ACTIONS(973), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [aux_sym_cmd_identifier_token1] = ACTIONS(973), - [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(973), - [aux_sym_cmd_identifier_token9] = ACTIONS(973), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(973), - [aux_sym_cmd_identifier_token13] = ACTIONS(973), - [aux_sym_cmd_identifier_token14] = ACTIONS(973), - [aux_sym_cmd_identifier_token15] = ACTIONS(973), - [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(973), - [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(973), - [aux_sym_cmd_identifier_token39] = ACTIONS(973), - [aux_sym_cmd_identifier_token40] = ACTIONS(973), - [anon_sym_def] = ACTIONS(973), - [anon_sym_export_DASHenv] = ACTIONS(973), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_error] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_make] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_try] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_source] = ACTIONS(973), - [anon_sym_source_DASHenv] = ACTIONS(973), - [anon_sym_register] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_hide_DASHenv] = ACTIONS(973), - [anon_sym_overlay] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [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_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), - [sym__entry_separator] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(975), + [anon_sym_export] = ACTIONS(1633), + [anon_sym_alias] = ACTIONS(1633), + [anon_sym_let] = ACTIONS(1633), + [anon_sym_let_DASHenv] = ACTIONS(1633), + [anon_sym_mut] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [aux_sym_cmd_identifier_token1] = ACTIONS(1633), + [aux_sym_cmd_identifier_token2] = ACTIONS(1643), + [aux_sym_cmd_identifier_token3] = ACTIONS(1643), + [aux_sym_cmd_identifier_token4] = ACTIONS(1643), + [aux_sym_cmd_identifier_token5] = ACTIONS(1643), + [aux_sym_cmd_identifier_token6] = ACTIONS(1643), + [aux_sym_cmd_identifier_token7] = ACTIONS(1643), + [aux_sym_cmd_identifier_token8] = ACTIONS(1633), + [aux_sym_cmd_identifier_token9] = ACTIONS(1633), + [aux_sym_cmd_identifier_token10] = ACTIONS(1643), + [aux_sym_cmd_identifier_token11] = ACTIONS(1643), + [aux_sym_cmd_identifier_token12] = ACTIONS(1633), + [aux_sym_cmd_identifier_token13] = ACTIONS(1633), + [aux_sym_cmd_identifier_token14] = ACTIONS(1633), + [aux_sym_cmd_identifier_token15] = ACTIONS(1633), + [aux_sym_cmd_identifier_token16] = ACTIONS(1643), + [aux_sym_cmd_identifier_token17] = ACTIONS(1643), + [aux_sym_cmd_identifier_token18] = ACTIONS(1643), + [aux_sym_cmd_identifier_token19] = ACTIONS(1643), + [aux_sym_cmd_identifier_token20] = ACTIONS(1643), + [aux_sym_cmd_identifier_token21] = ACTIONS(1643), + [aux_sym_cmd_identifier_token22] = ACTIONS(1643), + [aux_sym_cmd_identifier_token23] = ACTIONS(1643), + [aux_sym_cmd_identifier_token24] = ACTIONS(1643), + [aux_sym_cmd_identifier_token25] = ACTIONS(1643), + [aux_sym_cmd_identifier_token26] = ACTIONS(1643), + [aux_sym_cmd_identifier_token27] = ACTIONS(1643), + [aux_sym_cmd_identifier_token28] = ACTIONS(1643), + [aux_sym_cmd_identifier_token29] = ACTIONS(1643), + [aux_sym_cmd_identifier_token30] = ACTIONS(1643), + [aux_sym_cmd_identifier_token31] = ACTIONS(1643), + [aux_sym_cmd_identifier_token32] = ACTIONS(1643), + [aux_sym_cmd_identifier_token33] = ACTIONS(1643), + [aux_sym_cmd_identifier_token34] = ACTIONS(1633), + [aux_sym_cmd_identifier_token35] = ACTIONS(1643), + [aux_sym_cmd_identifier_token36] = ACTIONS(1643), + [aux_sym_cmd_identifier_token37] = ACTIONS(1643), + [aux_sym_cmd_identifier_token38] = ACTIONS(1633), + [aux_sym_cmd_identifier_token39] = ACTIONS(1643), + [aux_sym_cmd_identifier_token40] = ACTIONS(1643), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_export_DASHenv] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym_module] = ACTIONS(1633), + [anon_sym_use] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1633), + [anon_sym_loop] = ACTIONS(1633), + [anon_sym_make] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_else] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_catch] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_source] = ACTIONS(1633), + [anon_sym_source_DASHenv] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_hide] = ACTIONS(1633), + [anon_sym_hide_DASHenv] = ACTIONS(1633), + [anon_sym_overlay] = ACTIONS(1633), + [anon_sym_as] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), + [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(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [aux_sym__val_number_token4] = ACTIONS(1633), + [aux_sym__val_number_token5] = ACTIONS(1633), + [aux_sym__val_number_token6] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1643), }, [363] = { + [sym__expr_parenthesized_immediate] = STATE(763), + [sym__immediate_decimal] = STATE(719), + [sym_val_variable] = STATE(763), [sym_comment] = STATE(363), - [anon_sym_export] = ACTIONS(1781), - [anon_sym_alias] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_let_DASHenv] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [aux_sym_cmd_identifier_token1] = ACTIONS(1781), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1781), - [aux_sym_cmd_identifier_token9] = ACTIONS(1781), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1781), - [aux_sym_cmd_identifier_token13] = ACTIONS(1781), - [aux_sym_cmd_identifier_token14] = ACTIONS(1781), - [aux_sym_cmd_identifier_token15] = ACTIONS(1781), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1781), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1781), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1781), - [anon_sym_export_DASHenv] = ACTIONS(1781), - [anon_sym_extern] = ACTIONS(1781), - [anon_sym_module] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_loop] = ACTIONS(1781), - [anon_sym_make] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_do] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_catch] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_source] = ACTIONS(1781), - [anon_sym_source_DASHenv] = ACTIONS(1781), - [anon_sym_register] = ACTIONS(1781), - [anon_sym_hide] = ACTIONS(1781), - [anon_sym_hide_DASHenv] = ACTIONS(1781), - [anon_sym_overlay] = ACTIONS(1781), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1781), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [sym__entry_separator] = ACTIONS(1783), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1783), + [anon_sym_export] = ACTIONS(1677), + [anon_sym_alias] = ACTIONS(1677), + [anon_sym_let] = ACTIONS(1677), + [anon_sym_let_DASHenv] = ACTIONS(1677), + [anon_sym_mut] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [aux_sym_cmd_identifier_token1] = ACTIONS(1677), + [aux_sym_cmd_identifier_token2] = ACTIONS(1685), + [aux_sym_cmd_identifier_token3] = ACTIONS(1685), + [aux_sym_cmd_identifier_token4] = ACTIONS(1685), + [aux_sym_cmd_identifier_token5] = ACTIONS(1685), + [aux_sym_cmd_identifier_token6] = ACTIONS(1685), + [aux_sym_cmd_identifier_token7] = ACTIONS(1685), + [aux_sym_cmd_identifier_token8] = ACTIONS(1677), + [aux_sym_cmd_identifier_token9] = ACTIONS(1677), + [aux_sym_cmd_identifier_token10] = ACTIONS(1685), + [aux_sym_cmd_identifier_token11] = ACTIONS(1685), + [aux_sym_cmd_identifier_token12] = ACTIONS(1677), + [aux_sym_cmd_identifier_token13] = ACTIONS(1677), + [aux_sym_cmd_identifier_token14] = ACTIONS(1677), + [aux_sym_cmd_identifier_token15] = ACTIONS(1677), + [aux_sym_cmd_identifier_token16] = ACTIONS(1685), + [aux_sym_cmd_identifier_token17] = ACTIONS(1685), + [aux_sym_cmd_identifier_token18] = ACTIONS(1685), + [aux_sym_cmd_identifier_token19] = ACTIONS(1685), + [aux_sym_cmd_identifier_token20] = ACTIONS(1685), + [aux_sym_cmd_identifier_token21] = ACTIONS(1685), + [aux_sym_cmd_identifier_token22] = ACTIONS(1685), + [aux_sym_cmd_identifier_token23] = ACTIONS(1685), + [aux_sym_cmd_identifier_token24] = ACTIONS(1685), + [aux_sym_cmd_identifier_token25] = ACTIONS(1685), + [aux_sym_cmd_identifier_token26] = ACTIONS(1685), + [aux_sym_cmd_identifier_token27] = ACTIONS(1685), + [aux_sym_cmd_identifier_token28] = ACTIONS(1685), + [aux_sym_cmd_identifier_token29] = ACTIONS(1685), + [aux_sym_cmd_identifier_token30] = ACTIONS(1685), + [aux_sym_cmd_identifier_token31] = ACTIONS(1685), + [aux_sym_cmd_identifier_token32] = ACTIONS(1685), + [aux_sym_cmd_identifier_token33] = ACTIONS(1685), + [aux_sym_cmd_identifier_token34] = ACTIONS(1677), + [aux_sym_cmd_identifier_token35] = ACTIONS(1685), + [aux_sym_cmd_identifier_token36] = ACTIONS(1685), + [aux_sym_cmd_identifier_token37] = ACTIONS(1685), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), + [aux_sym_cmd_identifier_token39] = ACTIONS(1685), + [aux_sym_cmd_identifier_token40] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1677), + [anon_sym_export_DASHenv] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_module] = ACTIONS(1677), + [anon_sym_use] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_in2] = ACTIONS(1677), + [anon_sym_loop] = ACTIONS(1677), + [anon_sym_make] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_else] = ACTIONS(1677), + [anon_sym_match] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1677), + [anon_sym_catch] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_source] = ACTIONS(1677), + [anon_sym_source_DASHenv] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_hide] = ACTIONS(1677), + [anon_sym_hide_DASHenv] = ACTIONS(1677), + [anon_sym_overlay] = ACTIONS(1677), + [anon_sym_as] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1685), + [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(1685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1685), + [aux_sym__val_number_token2] = ACTIONS(1685), + [aux_sym__val_number_token3] = ACTIONS(1685), + [aux_sym__val_number_token4] = ACTIONS(1677), + [aux_sym__val_number_token5] = ACTIONS(1677), + [aux_sym__val_number_token6] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1685), + [sym__str_single_quotes] = ACTIONS(1685), + [sym__str_back_ticks] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1685), }, [364] = { + [sym__expr_parenthesized_immediate] = STATE(7982), [sym_comment] = STATE(364), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [aux_sym_cmd_identifier_token1] = ACTIONS(1687), + [aux_sym_cmd_identifier_token2] = ACTIONS(1699), + [aux_sym_cmd_identifier_token3] = ACTIONS(1699), + [aux_sym_cmd_identifier_token4] = ACTIONS(1699), + [aux_sym_cmd_identifier_token5] = ACTIONS(1699), + [aux_sym_cmd_identifier_token6] = ACTIONS(1699), + [aux_sym_cmd_identifier_token7] = ACTIONS(1699), + [aux_sym_cmd_identifier_token8] = ACTIONS(1687), + [aux_sym_cmd_identifier_token9] = ACTIONS(1687), + [aux_sym_cmd_identifier_token10] = ACTIONS(1699), + [aux_sym_cmd_identifier_token11] = ACTIONS(1699), + [aux_sym_cmd_identifier_token12] = ACTIONS(1687), + [aux_sym_cmd_identifier_token13] = ACTIONS(1687), + [aux_sym_cmd_identifier_token14] = ACTIONS(1687), + [aux_sym_cmd_identifier_token15] = ACTIONS(1687), + [aux_sym_cmd_identifier_token16] = ACTIONS(1699), + [aux_sym_cmd_identifier_token17] = ACTIONS(1699), + [aux_sym_cmd_identifier_token18] = ACTIONS(1699), + [aux_sym_cmd_identifier_token19] = ACTIONS(1699), + [aux_sym_cmd_identifier_token20] = ACTIONS(1699), + [aux_sym_cmd_identifier_token21] = ACTIONS(1699), + [aux_sym_cmd_identifier_token22] = ACTIONS(1699), + [aux_sym_cmd_identifier_token23] = ACTIONS(1699), + [aux_sym_cmd_identifier_token24] = ACTIONS(1699), + [aux_sym_cmd_identifier_token25] = ACTIONS(1699), + [aux_sym_cmd_identifier_token26] = ACTIONS(1699), + [aux_sym_cmd_identifier_token27] = ACTIONS(1699), + [aux_sym_cmd_identifier_token28] = ACTIONS(1699), + [aux_sym_cmd_identifier_token29] = ACTIONS(1699), + [aux_sym_cmd_identifier_token30] = ACTIONS(1699), + [aux_sym_cmd_identifier_token31] = ACTIONS(1699), + [aux_sym_cmd_identifier_token32] = ACTIONS(1699), + [aux_sym_cmd_identifier_token33] = ACTIONS(1699), + [aux_sym_cmd_identifier_token34] = ACTIONS(1687), + [aux_sym_cmd_identifier_token35] = ACTIONS(1699), + [aux_sym_cmd_identifier_token36] = ACTIONS(1699), + [aux_sym_cmd_identifier_token37] = ACTIONS(1699), + [aux_sym_cmd_identifier_token38] = ACTIONS(1687), + [aux_sym_cmd_identifier_token39] = ACTIONS(1699), + [aux_sym_cmd_identifier_token40] = ACTIONS(1699), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1699), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_make] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(1787), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1789), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1789), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1791), + [sym_duration_unit] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), }, [365] = { + [sym_cell_path] = STATE(528), + [sym_path] = STATE(472), [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [aux_sym_cmd_identifier_token1] = ACTIONS(1745), - [aux_sym_cmd_identifier_token2] = ACTIONS(1745), - [aux_sym_cmd_identifier_token3] = ACTIONS(1745), - [aux_sym_cmd_identifier_token4] = ACTIONS(1745), - [aux_sym_cmd_identifier_token5] = ACTIONS(1745), - [aux_sym_cmd_identifier_token6] = ACTIONS(1745), - [aux_sym_cmd_identifier_token7] = ACTIONS(1745), - [aux_sym_cmd_identifier_token8] = ACTIONS(1745), - [aux_sym_cmd_identifier_token9] = ACTIONS(1745), - [aux_sym_cmd_identifier_token10] = ACTIONS(1745), - [aux_sym_cmd_identifier_token11] = ACTIONS(1745), - [aux_sym_cmd_identifier_token12] = ACTIONS(1745), - [aux_sym_cmd_identifier_token13] = ACTIONS(1745), - [aux_sym_cmd_identifier_token14] = ACTIONS(1745), - [aux_sym_cmd_identifier_token15] = ACTIONS(1745), - [aux_sym_cmd_identifier_token16] = ACTIONS(1745), - [aux_sym_cmd_identifier_token17] = ACTIONS(1745), - [aux_sym_cmd_identifier_token18] = ACTIONS(1745), - [aux_sym_cmd_identifier_token19] = ACTIONS(1745), - [aux_sym_cmd_identifier_token20] = ACTIONS(1745), - [aux_sym_cmd_identifier_token21] = ACTIONS(1745), - [aux_sym_cmd_identifier_token22] = ACTIONS(1745), - [aux_sym_cmd_identifier_token23] = ACTIONS(1745), - [aux_sym_cmd_identifier_token24] = ACTIONS(1745), - [aux_sym_cmd_identifier_token25] = ACTIONS(1745), - [aux_sym_cmd_identifier_token26] = ACTIONS(1745), - [aux_sym_cmd_identifier_token27] = ACTIONS(1745), - [aux_sym_cmd_identifier_token28] = ACTIONS(1745), - [aux_sym_cmd_identifier_token29] = ACTIONS(1745), - [aux_sym_cmd_identifier_token30] = ACTIONS(1745), - [aux_sym_cmd_identifier_token31] = ACTIONS(1745), - [aux_sym_cmd_identifier_token32] = ACTIONS(1745), - [aux_sym_cmd_identifier_token33] = ACTIONS(1745), - [aux_sym_cmd_identifier_token34] = ACTIONS(1745), - [aux_sym_cmd_identifier_token35] = ACTIONS(1745), - [aux_sym_cmd_identifier_token36] = ACTIONS(1745), - [aux_sym_cmd_identifier_token37] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_make] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_catch] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), - [sym__entry_separator] = ACTIONS(1747), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1747), + [aux_sym_cell_path_repeat1] = STATE(391), + [anon_sym_export] = ACTIONS(969), + [anon_sym_alias] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_let_DASHenv] = ACTIONS(969), + [anon_sym_mut] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [aux_sym_cmd_identifier_token1] = ACTIONS(969), + [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(969), + [aux_sym_cmd_identifier_token9] = ACTIONS(969), + [aux_sym_cmd_identifier_token10] = ACTIONS(971), + [aux_sym_cmd_identifier_token11] = ACTIONS(971), + [aux_sym_cmd_identifier_token12] = ACTIONS(969), + [aux_sym_cmd_identifier_token13] = ACTIONS(969), + [aux_sym_cmd_identifier_token14] = ACTIONS(969), + [aux_sym_cmd_identifier_token15] = ACTIONS(969), + [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(969), + [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(969), + [aux_sym_cmd_identifier_token39] = ACTIONS(971), + [aux_sym_cmd_identifier_token40] = ACTIONS(971), + [anon_sym_def] = ACTIONS(969), + [anon_sym_export_DASHenv] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_error] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_make] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_source] = ACTIONS(969), + [anon_sym_source_DASHenv] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_hide_DASHenv] = ACTIONS(969), + [anon_sym_overlay] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), }, [366] = { + [sym_cell_path] = STATE(519), + [sym_path] = STATE(472), [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(1797), - [aux_sym__immediate_decimal_token2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), + [aux_sym_cell_path_repeat1] = STATE(391), + [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(1765), + [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_PLUS2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1763), + [anon_sym_DOT] = ACTIONS(1797), + [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), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1765), }, [367] = { [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_alias] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_let_DASHenv] = ACTIONS(1637), - [anon_sym_mut] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [aux_sym_cmd_identifier_token1] = ACTIONS(1637), - [aux_sym_cmd_identifier_token2] = ACTIONS(1639), - [aux_sym_cmd_identifier_token3] = ACTIONS(1639), - [aux_sym_cmd_identifier_token4] = ACTIONS(1639), - [aux_sym_cmd_identifier_token5] = ACTIONS(1639), - [aux_sym_cmd_identifier_token6] = ACTIONS(1639), - [aux_sym_cmd_identifier_token7] = ACTIONS(1639), - [aux_sym_cmd_identifier_token8] = ACTIONS(1637), - [aux_sym_cmd_identifier_token9] = ACTIONS(1637), - [aux_sym_cmd_identifier_token10] = ACTIONS(1639), - [aux_sym_cmd_identifier_token11] = ACTIONS(1639), - [aux_sym_cmd_identifier_token12] = ACTIONS(1637), - [aux_sym_cmd_identifier_token13] = ACTIONS(1637), - [aux_sym_cmd_identifier_token14] = ACTIONS(1637), - [aux_sym_cmd_identifier_token15] = ACTIONS(1637), - [aux_sym_cmd_identifier_token16] = ACTIONS(1639), - [aux_sym_cmd_identifier_token17] = ACTIONS(1639), - [aux_sym_cmd_identifier_token18] = ACTIONS(1639), - [aux_sym_cmd_identifier_token19] = ACTIONS(1639), - [aux_sym_cmd_identifier_token20] = ACTIONS(1639), - [aux_sym_cmd_identifier_token21] = ACTIONS(1639), - [aux_sym_cmd_identifier_token22] = ACTIONS(1639), - [aux_sym_cmd_identifier_token23] = ACTIONS(1639), - [aux_sym_cmd_identifier_token24] = ACTIONS(1639), - [aux_sym_cmd_identifier_token25] = ACTIONS(1639), - [aux_sym_cmd_identifier_token26] = ACTIONS(1639), - [aux_sym_cmd_identifier_token27] = ACTIONS(1639), - [aux_sym_cmd_identifier_token28] = ACTIONS(1639), - [aux_sym_cmd_identifier_token29] = ACTIONS(1639), - [aux_sym_cmd_identifier_token30] = ACTIONS(1639), - [aux_sym_cmd_identifier_token31] = ACTIONS(1639), - [aux_sym_cmd_identifier_token32] = ACTIONS(1639), - [aux_sym_cmd_identifier_token33] = ACTIONS(1639), - [aux_sym_cmd_identifier_token34] = ACTIONS(1637), - [aux_sym_cmd_identifier_token35] = ACTIONS(1639), - [aux_sym_cmd_identifier_token36] = ACTIONS(1639), - [aux_sym_cmd_identifier_token37] = ACTIONS(1639), - [aux_sym_cmd_identifier_token38] = ACTIONS(1637), - [aux_sym_cmd_identifier_token39] = ACTIONS(1639), - [aux_sym_cmd_identifier_token40] = ACTIONS(1639), - [anon_sym_def] = ACTIONS(1637), - [anon_sym_export_DASHenv] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym_module] = ACTIONS(1637), - [anon_sym_use] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_error] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_loop] = ACTIONS(1637), - [anon_sym_make] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_catch] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_source] = ACTIONS(1637), - [anon_sym_source_DASHenv] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_hide] = ACTIONS(1637), - [anon_sym_hide_DASHenv] = ACTIONS(1637), - [anon_sym_overlay] = ACTIONS(1637), - [anon_sym_as] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [aux_sym__val_number_token4] = ACTIONS(1637), - [aux_sym__val_number_token5] = ACTIONS(1637), - [aux_sym__val_number_token6] = ACTIONS(1637), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1637), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1639), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), - }, - [368] = { - [sym_comment] = STATE(368), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(1805), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [369] = { - [sym_comment] = STATE(369), - [anon_sym_export] = ACTIONS(1781), - [anon_sym_alias] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_let_DASHenv] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [aux_sym_cmd_identifier_token1] = ACTIONS(1781), - [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(1781), - [aux_sym_cmd_identifier_token9] = ACTIONS(1781), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1781), - [aux_sym_cmd_identifier_token13] = ACTIONS(1781), - [aux_sym_cmd_identifier_token14] = ACTIONS(1781), - [aux_sym_cmd_identifier_token15] = ACTIONS(1781), - [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(1781), - [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(1781), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1781), - [anon_sym_export_DASHenv] = ACTIONS(1781), - [anon_sym_extern] = ACTIONS(1781), - [anon_sym_module] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_loop] = ACTIONS(1781), - [anon_sym_make] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_do] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_catch] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_source] = ACTIONS(1781), - [anon_sym_source_DASHenv] = ACTIONS(1781), - [anon_sym_register] = ACTIONS(1781), - [anon_sym_hide] = ACTIONS(1781), - [anon_sym_hide_DASHenv] = ACTIONS(1781), - [anon_sym_overlay] = ACTIONS(1781), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1781), - [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(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1781), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1783), - }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [aux_sym_cmd_identifier_token1] = ACTIONS(1745), - [aux_sym_cmd_identifier_token2] = ACTIONS(1747), - [aux_sym_cmd_identifier_token3] = ACTIONS(1747), - [aux_sym_cmd_identifier_token4] = ACTIONS(1747), - [aux_sym_cmd_identifier_token5] = ACTIONS(1747), - [aux_sym_cmd_identifier_token6] = ACTIONS(1747), - [aux_sym_cmd_identifier_token7] = ACTIONS(1747), - [aux_sym_cmd_identifier_token8] = ACTIONS(1745), - [aux_sym_cmd_identifier_token9] = ACTIONS(1745), - [aux_sym_cmd_identifier_token10] = ACTIONS(1747), - [aux_sym_cmd_identifier_token11] = ACTIONS(1747), - [aux_sym_cmd_identifier_token12] = ACTIONS(1745), - [aux_sym_cmd_identifier_token13] = ACTIONS(1745), - [aux_sym_cmd_identifier_token14] = ACTIONS(1745), - [aux_sym_cmd_identifier_token15] = ACTIONS(1745), - [aux_sym_cmd_identifier_token16] = ACTIONS(1747), - [aux_sym_cmd_identifier_token17] = ACTIONS(1747), - [aux_sym_cmd_identifier_token18] = ACTIONS(1747), - [aux_sym_cmd_identifier_token19] = ACTIONS(1747), - [aux_sym_cmd_identifier_token20] = ACTIONS(1747), - [aux_sym_cmd_identifier_token21] = ACTIONS(1747), - [aux_sym_cmd_identifier_token22] = ACTIONS(1747), - [aux_sym_cmd_identifier_token23] = ACTIONS(1747), - [aux_sym_cmd_identifier_token24] = ACTIONS(1747), - [aux_sym_cmd_identifier_token25] = ACTIONS(1747), - [aux_sym_cmd_identifier_token26] = ACTIONS(1747), - [aux_sym_cmd_identifier_token27] = ACTIONS(1747), - [aux_sym_cmd_identifier_token28] = ACTIONS(1747), - [aux_sym_cmd_identifier_token29] = ACTIONS(1747), - [aux_sym_cmd_identifier_token30] = ACTIONS(1747), - [aux_sym_cmd_identifier_token31] = ACTIONS(1747), - [aux_sym_cmd_identifier_token32] = ACTIONS(1747), - [aux_sym_cmd_identifier_token33] = ACTIONS(1747), - [aux_sym_cmd_identifier_token34] = ACTIONS(1745), - [aux_sym_cmd_identifier_token35] = ACTIONS(1747), - [aux_sym_cmd_identifier_token36] = ACTIONS(1747), - [aux_sym_cmd_identifier_token37] = ACTIONS(1747), - [aux_sym_cmd_identifier_token38] = ACTIONS(1745), - [aux_sym_cmd_identifier_token39] = ACTIONS(1747), - [aux_sym_cmd_identifier_token40] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1747), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_make] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_catch] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), - }, - [371] = { - [sym_cell_path] = STATE(519), - [sym_path] = STATE(491), - [sym_comment] = STATE(371), - [aux_sym_cell_path_repeat1] = STATE(387), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1775), - [aux_sym_cmd_identifier_token3] = ACTIONS(1775), - [aux_sym_cmd_identifier_token4] = ACTIONS(1775), - [aux_sym_cmd_identifier_token5] = ACTIONS(1775), - [aux_sym_cmd_identifier_token6] = ACTIONS(1775), - [aux_sym_cmd_identifier_token7] = ACTIONS(1775), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1775), - [aux_sym_cmd_identifier_token11] = ACTIONS(1775), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1775), - [aux_sym_cmd_identifier_token17] = ACTIONS(1775), - [aux_sym_cmd_identifier_token18] = ACTIONS(1775), - [aux_sym_cmd_identifier_token19] = ACTIONS(1775), - [aux_sym_cmd_identifier_token20] = ACTIONS(1775), - [aux_sym_cmd_identifier_token21] = ACTIONS(1775), - [aux_sym_cmd_identifier_token22] = ACTIONS(1775), - [aux_sym_cmd_identifier_token23] = ACTIONS(1775), - [aux_sym_cmd_identifier_token24] = ACTIONS(1775), - [aux_sym_cmd_identifier_token25] = ACTIONS(1775), - [aux_sym_cmd_identifier_token26] = ACTIONS(1775), - [aux_sym_cmd_identifier_token27] = ACTIONS(1775), - [aux_sym_cmd_identifier_token28] = ACTIONS(1775), - [aux_sym_cmd_identifier_token29] = ACTIONS(1775), - [aux_sym_cmd_identifier_token30] = ACTIONS(1775), - [aux_sym_cmd_identifier_token31] = ACTIONS(1775), - [aux_sym_cmd_identifier_token32] = ACTIONS(1775), - [aux_sym_cmd_identifier_token33] = ACTIONS(1775), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1775), - [aux_sym_cmd_identifier_token36] = ACTIONS(1775), - [aux_sym_cmd_identifier_token37] = ACTIONS(1775), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1775), - [aux_sym_cmd_identifier_token40] = ACTIONS(1775), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_DOLLAR] = ACTIONS(1775), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1775), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1807), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1775), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1775), - [aux_sym__val_number_decimal_token3] = ACTIONS(1775), - [aux_sym__val_number_decimal_token4] = ACTIONS(1775), - [aux_sym__val_number_token1] = ACTIONS(1775), - [aux_sym__val_number_token2] = ACTIONS(1775), - [aux_sym__val_number_token3] = ACTIONS(1775), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym__str_single_quotes] = ACTIONS(1775), - [sym__str_back_ticks] = ACTIONS(1775), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1775), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_alias] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_let_DASHenv] = ACTIONS(1661), + [anon_sym_mut] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [aux_sym_cmd_identifier_token1] = ACTIONS(1661), + [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(1661), + [aux_sym_cmd_identifier_token9] = ACTIONS(1661), + [aux_sym_cmd_identifier_token10] = ACTIONS(1663), + [aux_sym_cmd_identifier_token11] = ACTIONS(1663), + [aux_sym_cmd_identifier_token12] = ACTIONS(1661), + [aux_sym_cmd_identifier_token13] = ACTIONS(1661), + [aux_sym_cmd_identifier_token14] = ACTIONS(1661), + [aux_sym_cmd_identifier_token15] = ACTIONS(1661), + [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(1661), + [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(1661), + [aux_sym_cmd_identifier_token39] = ACTIONS(1663), + [aux_sym_cmd_identifier_token40] = ACTIONS(1663), + [anon_sym_def] = ACTIONS(1661), + [anon_sym_export_DASHenv] = ACTIONS(1661), + [anon_sym_extern] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_use] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_error] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_loop] = ACTIONS(1661), + [anon_sym_make] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_source] = ACTIONS(1661), + [anon_sym_source_DASHenv] = ACTIONS(1661), + [anon_sym_register] = ACTIONS(1661), + [anon_sym_hide] = ACTIONS(1661), + [anon_sym_hide_DASHenv] = ACTIONS(1661), + [anon_sym_overlay] = ACTIONS(1661), + [anon_sym_as] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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(1661), + [aux_sym__val_number_token5] = ACTIONS(1661), + [aux_sym__val_number_token6] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1661), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1775), + [sym_raw_string_begin] = ACTIONS(1663), }, - [372] = { - [sym_cell_path] = STATE(526), - [sym_path] = STATE(491), - [sym_comment] = STATE(372), - [aux_sym_cell_path_repeat1] = STATE(387), - [anon_sym_export] = ACTIONS(1777), - [anon_sym_alias] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_let_DASHenv] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [aux_sym_cmd_identifier_token1] = ACTIONS(1777), + [368] = { + [sym_comment] = STATE(368), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), [aux_sym_cmd_identifier_token2] = ACTIONS(1779), [aux_sym_cmd_identifier_token3] = ACTIONS(1779), [aux_sym_cmd_identifier_token4] = ACTIONS(1779), [aux_sym_cmd_identifier_token5] = ACTIONS(1779), [aux_sym_cmd_identifier_token6] = ACTIONS(1779), [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1777), - [aux_sym_cmd_identifier_token9] = ACTIONS(1777), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), [aux_sym_cmd_identifier_token10] = ACTIONS(1779), [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1777), - [aux_sym_cmd_identifier_token13] = ACTIONS(1777), - [aux_sym_cmd_identifier_token14] = ACTIONS(1777), - [aux_sym_cmd_identifier_token15] = ACTIONS(1777), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), [aux_sym_cmd_identifier_token16] = ACTIONS(1779), [aux_sym_cmd_identifier_token17] = ACTIONS(1779), [aux_sym_cmd_identifier_token18] = ACTIONS(1779), @@ -124205,306 +126293,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1779), [aux_sym_cmd_identifier_token32] = ACTIONS(1779), [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1777), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), [aux_sym_cmd_identifier_token35] = ACTIONS(1779), [aux_sym_cmd_identifier_token36] = ACTIONS(1779), [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1777), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), [aux_sym_cmd_identifier_token39] = ACTIONS(1779), [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1777), - [anon_sym_export_DASHenv] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_module] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), [anon_sym_LPAREN] = ACTIONS(1779), [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_in2] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_make] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_catch] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_source] = ACTIONS(1777), - [anon_sym_source_DASHenv] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_hide] = ACTIONS(1777), - [anon_sym_hide_DASHenv] = ACTIONS(1777), - [anon_sym_overlay] = ACTIONS(1777), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_PLUS2] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(1807), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1785), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), [aux_sym__val_number_decimal_token2] = ACTIONS(1779), [aux_sym__val_number_decimal_token3] = ACTIONS(1779), [aux_sym__val_number_decimal_token4] = ACTIONS(1779), [aux_sym__val_number_token1] = ACTIONS(1779), [aux_sym__val_number_token2] = ACTIONS(1779), [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1777), - [aux_sym__val_number_token5] = ACTIONS(1777), - [aux_sym__val_number_token6] = ACTIONS(1777), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), [anon_sym_DQUOTE] = ACTIONS(1779), [sym__str_single_quotes] = ACTIONS(1779), [sym__str_back_ticks] = ACTIONS(1779), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1781), }, - [373] = { - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [369] = { + [sym_comment] = STATE(369), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(1803), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_raw_string_begin] = ACTIONS(1801), }, - [374] = { - [sym_comment] = STATE(374), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1767), + [anon_sym_alias] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_let_DASHenv] = ACTIONS(1767), + [anon_sym_mut] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [aux_sym_cmd_identifier_token1] = ACTIONS(1767), + [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(1767), + [aux_sym_cmd_identifier_token9] = ACTIONS(1767), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1767), + [aux_sym_cmd_identifier_token13] = ACTIONS(1767), + [aux_sym_cmd_identifier_token14] = ACTIONS(1767), + [aux_sym_cmd_identifier_token15] = ACTIONS(1767), + [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(1767), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [aux_sym_cmd_identifier_token37] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1767), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1767), + [anon_sym_export_DASHenv] = ACTIONS(1767), + [anon_sym_extern] = ACTIONS(1767), + [anon_sym_module] = ACTIONS(1767), + [anon_sym_use] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_loop] = ACTIONS(1767), + [anon_sym_make] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_else] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_catch] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_source] = ACTIONS(1767), + [anon_sym_source_DASHenv] = ACTIONS(1767), + [anon_sym_register] = ACTIONS(1767), + [anon_sym_hide] = ACTIONS(1767), + [anon_sym_hide_DASHenv] = ACTIONS(1767), + [anon_sym_overlay] = ACTIONS(1767), + [anon_sym_as] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1767), + [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), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1767), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1769), }, - [375] = { - [sym_cell_path] = STATE(527), - [sym_path] = STATE(491), - [sym_comment] = STATE(375), - [aux_sym_cell_path_repeat1] = STATE(387), - [anon_sym_export] = ACTIONS(973), - [anon_sym_alias] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_let_DASHenv] = ACTIONS(973), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [aux_sym_cmd_identifier_token1] = ACTIONS(973), + [371] = { + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1807), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [372] = { + [sym_path] = STATE(429), + [sym_comment] = STATE(372), + [aux_sym_cell_path_repeat1] = STATE(372), + [anon_sym_export] = ACTIONS(975), + [anon_sym_alias] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_let_DASHenv] = ACTIONS(975), + [anon_sym_mut] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [aux_sym_cmd_identifier_token1] = ACTIONS(975), [aux_sym_cmd_identifier_token2] = ACTIONS(975), [aux_sym_cmd_identifier_token3] = ACTIONS(975), [aux_sym_cmd_identifier_token4] = ACTIONS(975), [aux_sym_cmd_identifier_token5] = ACTIONS(975), [aux_sym_cmd_identifier_token6] = ACTIONS(975), [aux_sym_cmd_identifier_token7] = ACTIONS(975), - [aux_sym_cmd_identifier_token8] = ACTIONS(973), - [aux_sym_cmd_identifier_token9] = ACTIONS(973), + [aux_sym_cmd_identifier_token8] = ACTIONS(975), + [aux_sym_cmd_identifier_token9] = ACTIONS(975), [aux_sym_cmd_identifier_token10] = ACTIONS(975), [aux_sym_cmd_identifier_token11] = ACTIONS(975), - [aux_sym_cmd_identifier_token12] = ACTIONS(973), - [aux_sym_cmd_identifier_token13] = ACTIONS(973), - [aux_sym_cmd_identifier_token14] = ACTIONS(973), - [aux_sym_cmd_identifier_token15] = ACTIONS(973), + [aux_sym_cmd_identifier_token12] = ACTIONS(975), + [aux_sym_cmd_identifier_token13] = ACTIONS(975), + [aux_sym_cmd_identifier_token14] = ACTIONS(975), + [aux_sym_cmd_identifier_token15] = ACTIONS(975), [aux_sym_cmd_identifier_token16] = ACTIONS(975), [aux_sym_cmd_identifier_token17] = ACTIONS(975), [aux_sym_cmd_identifier_token18] = ACTIONS(975), @@ -124523,725 +126719,1147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(975), [aux_sym_cmd_identifier_token32] = ACTIONS(975), [aux_sym_cmd_identifier_token33] = ACTIONS(975), - [aux_sym_cmd_identifier_token34] = ACTIONS(973), + [aux_sym_cmd_identifier_token34] = ACTIONS(975), [aux_sym_cmd_identifier_token35] = ACTIONS(975), [aux_sym_cmd_identifier_token36] = ACTIONS(975), [aux_sym_cmd_identifier_token37] = ACTIONS(975), - [aux_sym_cmd_identifier_token38] = ACTIONS(973), + [aux_sym_cmd_identifier_token38] = ACTIONS(975), [aux_sym_cmd_identifier_token39] = ACTIONS(975), [aux_sym_cmd_identifier_token40] = ACTIONS(975), - [anon_sym_def] = ACTIONS(973), - [anon_sym_export_DASHenv] = ACTIONS(973), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), + [anon_sym_def] = ACTIONS(975), + [anon_sym_export_DASHenv] = ACTIONS(975), + [anon_sym_extern] = ACTIONS(975), + [anon_sym_module] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), [anon_sym_LPAREN] = ACTIONS(975), [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_make] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), + [anon_sym_error] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_make] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_source] = ACTIONS(973), - [anon_sym_source_DASHenv] = ACTIONS(973), - [anon_sym_register] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_hide_DASHenv] = ACTIONS(973), - [anon_sym_overlay] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(973), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_source] = ACTIONS(975), + [anon_sym_source_DASHenv] = ACTIONS(975), + [anon_sym_register] = ACTIONS(975), + [anon_sym_hide] = ACTIONS(975), + [anon_sym_hide_DASHenv] = ACTIONS(975), + [anon_sym_overlay] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_PLUS2] = ACTIONS(975), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(1807), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), [aux_sym__val_number_decimal_token2] = ACTIONS(975), [aux_sym__val_number_decimal_token3] = ACTIONS(975), [aux_sym__val_number_decimal_token4] = ACTIONS(975), [aux_sym__val_number_token1] = ACTIONS(975), [aux_sym__val_number_token2] = ACTIONS(975), [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(975), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(975), [anon_sym_DQUOTE] = ACTIONS(975), [sym__str_single_quotes] = ACTIONS(975), [sym__str_back_ticks] = ACTIONS(975), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), + [sym__entry_separator] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(977), + }, + [373] = { + [sym_cell_path] = STATE(516), + [sym_path] = STATE(472), + [sym_comment] = STATE(373), + [aux_sym_cell_path_repeat1] = STATE(391), + [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(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(1757), + [aux_sym_cmd_identifier_token9] = ACTIONS(1757), + [aux_sym_cmd_identifier_token10] = ACTIONS(1761), + [aux_sym_cmd_identifier_token11] = ACTIONS(1761), + [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(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), + [aux_sym_cmd_identifier_token24] = ACTIONS(1761), + [aux_sym_cmd_identifier_token25] = ACTIONS(1761), + [aux_sym_cmd_identifier_token26] = ACTIONS(1761), + [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_token31] = ACTIONS(1761), + [aux_sym_cmd_identifier_token32] = ACTIONS(1761), + [aux_sym_cmd_identifier_token33] = ACTIONS(1761), + [aux_sym_cmd_identifier_token34] = ACTIONS(1757), + [aux_sym_cmd_identifier_token35] = ACTIONS(1761), + [aux_sym_cmd_identifier_token36] = ACTIONS(1761), + [aux_sym_cmd_identifier_token37] = ACTIONS(1761), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1761), + [aux_sym_cmd_identifier_token40] = ACTIONS(1761), + [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_LPAREN] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_error] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_in2] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_make] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_catch] = 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_as] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1761), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1761), + [aux_sym__val_number_decimal_token3] = ACTIONS(1761), + [aux_sym__val_number_decimal_token4] = ACTIONS(1761), + [aux_sym__val_number_token1] = ACTIONS(1761), + [aux_sym__val_number_token2] = ACTIONS(1761), + [aux_sym__val_number_token3] = ACTIONS(1761), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1761), + [sym__str_single_quotes] = ACTIONS(1761), + [sym__str_back_ticks] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1761), + }, + [374] = { + [sym_comment] = STATE(374), + [anon_sym_export] = ACTIONS(1669), + [anon_sym_alias] = ACTIONS(1669), + [anon_sym_let] = ACTIONS(1669), + [anon_sym_let_DASHenv] = ACTIONS(1669), + [anon_sym_mut] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [aux_sym_cmd_identifier_token1] = ACTIONS(1669), + [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(1669), + [aux_sym_cmd_identifier_token9] = ACTIONS(1669), + [aux_sym_cmd_identifier_token10] = ACTIONS(1671), + [aux_sym_cmd_identifier_token11] = ACTIONS(1671), + [aux_sym_cmd_identifier_token12] = ACTIONS(1669), + [aux_sym_cmd_identifier_token13] = ACTIONS(1669), + [aux_sym_cmd_identifier_token14] = ACTIONS(1669), + [aux_sym_cmd_identifier_token15] = ACTIONS(1669), + [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(1669), + [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(1669), + [aux_sym_cmd_identifier_token39] = ACTIONS(1671), + [aux_sym_cmd_identifier_token40] = ACTIONS(1671), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_export_DASHenv] = ACTIONS(1669), + [anon_sym_extern] = ACTIONS(1669), + [anon_sym_module] = ACTIONS(1669), + [anon_sym_use] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_error] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_loop] = ACTIONS(1669), + [anon_sym_make] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_else] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_catch] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_source] = ACTIONS(1669), + [anon_sym_source_DASHenv] = ACTIONS(1669), + [anon_sym_register] = ACTIONS(1669), + [anon_sym_hide] = ACTIONS(1669), + [anon_sym_hide_DASHenv] = ACTIONS(1669), + [anon_sym_overlay] = ACTIONS(1669), + [anon_sym_as] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1669), + [aux_sym__val_number_token5] = ACTIONS(1669), + [aux_sym__val_number_token6] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1669), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), + }, + [375] = { + [sym_path] = STATE(429), + [sym_comment] = STATE(375), + [aux_sym_cell_path_repeat1] = STATE(372), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_register] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [sym__entry_separator] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(984), }, [376] = { [sym_comment] = STATE(376), - [anon_sym_export] = ACTIONS(1645), - [anon_sym_alias] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_let_DASHenv] = ACTIONS(1645), - [anon_sym_mut] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [aux_sym_cmd_identifier_token1] = ACTIONS(1645), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1645), - [aux_sym_cmd_identifier_token9] = ACTIONS(1645), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1645), - [aux_sym_cmd_identifier_token13] = ACTIONS(1645), - [aux_sym_cmd_identifier_token14] = ACTIONS(1645), - [aux_sym_cmd_identifier_token15] = ACTIONS(1645), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1647), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1647), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1647), - [aux_sym_cmd_identifier_token32] = ACTIONS(1647), - [aux_sym_cmd_identifier_token33] = ACTIONS(1647), - [aux_sym_cmd_identifier_token34] = ACTIONS(1645), - [aux_sym_cmd_identifier_token35] = ACTIONS(1647), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [aux_sym_cmd_identifier_token37] = ACTIONS(1647), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1647), - [aux_sym_cmd_identifier_token40] = ACTIONS(1647), - [anon_sym_def] = ACTIONS(1645), - [anon_sym_export_DASHenv] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_module] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_make] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_source] = ACTIONS(1645), - [anon_sym_source_DASHenv] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_hide_DASHenv] = ACTIONS(1645), - [anon_sym_overlay] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1645), - [aux_sym__val_number_token5] = ACTIONS(1645), - [aux_sym__val_number_token6] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1647), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), + [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(1713), + [aux_sym_cmd_identifier_token3] = ACTIONS(1713), + [aux_sym_cmd_identifier_token4] = ACTIONS(1713), + [aux_sym_cmd_identifier_token5] = ACTIONS(1713), + [aux_sym_cmd_identifier_token6] = ACTIONS(1713), + [aux_sym_cmd_identifier_token7] = ACTIONS(1713), + [aux_sym_cmd_identifier_token8] = ACTIONS(1711), + [aux_sym_cmd_identifier_token9] = ACTIONS(1711), + [aux_sym_cmd_identifier_token10] = ACTIONS(1713), + [aux_sym_cmd_identifier_token11] = ACTIONS(1713), + [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(1713), + [aux_sym_cmd_identifier_token17] = ACTIONS(1713), + [aux_sym_cmd_identifier_token18] = ACTIONS(1713), + [aux_sym_cmd_identifier_token19] = ACTIONS(1713), + [aux_sym_cmd_identifier_token20] = ACTIONS(1713), + [aux_sym_cmd_identifier_token21] = ACTIONS(1713), + [aux_sym_cmd_identifier_token22] = ACTIONS(1713), + [aux_sym_cmd_identifier_token23] = ACTIONS(1713), + [aux_sym_cmd_identifier_token24] = ACTIONS(1713), + [aux_sym_cmd_identifier_token25] = ACTIONS(1713), + [aux_sym_cmd_identifier_token26] = ACTIONS(1713), + [aux_sym_cmd_identifier_token27] = ACTIONS(1713), + [aux_sym_cmd_identifier_token28] = ACTIONS(1713), + [aux_sym_cmd_identifier_token29] = ACTIONS(1713), + [aux_sym_cmd_identifier_token30] = ACTIONS(1713), + [aux_sym_cmd_identifier_token31] = ACTIONS(1713), + [aux_sym_cmd_identifier_token32] = ACTIONS(1713), + [aux_sym_cmd_identifier_token33] = ACTIONS(1713), + [aux_sym_cmd_identifier_token34] = ACTIONS(1711), + [aux_sym_cmd_identifier_token35] = ACTIONS(1713), + [aux_sym_cmd_identifier_token36] = ACTIONS(1713), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_in2] = 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_as] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [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), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1713), }, [377] = { - [sym_path] = STATE(440), [sym_comment] = STATE(377), - [aux_sym_cell_path_repeat1] = STATE(378), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(988), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(1812), + [aux_sym__immediate_decimal_token2] = ACTIONS(1814), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, [378] = { - [sym_path] = STATE(440), [sym_comment] = STATE(378), - [aux_sym_cell_path_repeat1] = STATE(378), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [aux_sym_cmd_identifier_token1] = ACTIONS(979), - [aux_sym_cmd_identifier_token2] = ACTIONS(979), - [aux_sym_cmd_identifier_token3] = ACTIONS(979), - [aux_sym_cmd_identifier_token4] = ACTIONS(979), - [aux_sym_cmd_identifier_token5] = ACTIONS(979), - [aux_sym_cmd_identifier_token6] = ACTIONS(979), - [aux_sym_cmd_identifier_token7] = ACTIONS(979), - [aux_sym_cmd_identifier_token8] = ACTIONS(979), - [aux_sym_cmd_identifier_token9] = ACTIONS(979), - [aux_sym_cmd_identifier_token10] = ACTIONS(979), - [aux_sym_cmd_identifier_token11] = ACTIONS(979), - [aux_sym_cmd_identifier_token12] = ACTIONS(979), - [aux_sym_cmd_identifier_token13] = ACTIONS(979), - [aux_sym_cmd_identifier_token14] = ACTIONS(979), - [aux_sym_cmd_identifier_token15] = ACTIONS(979), - [aux_sym_cmd_identifier_token16] = ACTIONS(979), - [aux_sym_cmd_identifier_token17] = ACTIONS(979), - [aux_sym_cmd_identifier_token18] = ACTIONS(979), - [aux_sym_cmd_identifier_token19] = ACTIONS(979), - [aux_sym_cmd_identifier_token20] = ACTIONS(979), - [aux_sym_cmd_identifier_token21] = ACTIONS(979), - [aux_sym_cmd_identifier_token22] = ACTIONS(979), - [aux_sym_cmd_identifier_token23] = ACTIONS(979), - [aux_sym_cmd_identifier_token24] = ACTIONS(979), - [aux_sym_cmd_identifier_token25] = ACTIONS(979), - [aux_sym_cmd_identifier_token26] = ACTIONS(979), - [aux_sym_cmd_identifier_token27] = ACTIONS(979), - [aux_sym_cmd_identifier_token28] = ACTIONS(979), - [aux_sym_cmd_identifier_token29] = ACTIONS(979), - [aux_sym_cmd_identifier_token30] = ACTIONS(979), - [aux_sym_cmd_identifier_token31] = ACTIONS(979), - [aux_sym_cmd_identifier_token32] = ACTIONS(979), - [aux_sym_cmd_identifier_token33] = ACTIONS(979), - [aux_sym_cmd_identifier_token34] = ACTIONS(979), - [aux_sym_cmd_identifier_token35] = ACTIONS(979), - [aux_sym_cmd_identifier_token36] = ACTIONS(979), - [aux_sym_cmd_identifier_token37] = ACTIONS(979), - [aux_sym_cmd_identifier_token38] = ACTIONS(979), - [aux_sym_cmd_identifier_token39] = ACTIONS(979), - [aux_sym_cmd_identifier_token40] = ACTIONS(979), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(979), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(979), - [aux_sym__val_number_decimal_token3] = ACTIONS(979), - [aux_sym__val_number_decimal_token4] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(979), - [sym__entry_separator] = ACTIONS(981), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(981), + [sym_raw_string_begin] = ACTIONS(1781), }, [379] = { [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(1816), - [aux_sym__immediate_decimal_token2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [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(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [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(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(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [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), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1773), }, [380] = { [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1008), + [anon_sym_alias] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_let_DASHenv] = ACTIONS(1008), + [anon_sym_mut] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [aux_sym_cmd_identifier_token1] = ACTIONS(1008), + [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(1008), + [aux_sym_cmd_identifier_token9] = ACTIONS(1008), + [aux_sym_cmd_identifier_token10] = ACTIONS(1008), + [aux_sym_cmd_identifier_token11] = ACTIONS(1008), + [aux_sym_cmd_identifier_token12] = ACTIONS(1008), + [aux_sym_cmd_identifier_token13] = ACTIONS(1008), + [aux_sym_cmd_identifier_token14] = ACTIONS(1008), + [aux_sym_cmd_identifier_token15] = ACTIONS(1008), + [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(1008), + [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(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1008), + [anon_sym_export_DASHenv] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym_module] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_make] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_catch] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_source] = ACTIONS(1008), + [anon_sym_source_DASHenv] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_hide] = ACTIONS(1008), + [anon_sym_hide_DASHenv] = ACTIONS(1008), + [anon_sym_overlay] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [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_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [sym__entry_separator] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_raw_string_begin] = ACTIONS(1010), }, [381] = { [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), + [sym_raw_string_begin] = ACTIONS(1801), }, [382] = { [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1818), + [aux_sym_cmd_identifier_token3] = ACTIONS(1818), + [aux_sym_cmd_identifier_token4] = ACTIONS(1818), + [aux_sym_cmd_identifier_token5] = ACTIONS(1818), + [aux_sym_cmd_identifier_token6] = ACTIONS(1818), + [aux_sym_cmd_identifier_token7] = ACTIONS(1818), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1818), + [aux_sym_cmd_identifier_token11] = ACTIONS(1818), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1818), + [aux_sym_cmd_identifier_token17] = ACTIONS(1818), + [aux_sym_cmd_identifier_token18] = ACTIONS(1818), + [aux_sym_cmd_identifier_token19] = ACTIONS(1818), + [aux_sym_cmd_identifier_token20] = ACTIONS(1818), + [aux_sym_cmd_identifier_token21] = ACTIONS(1818), + [aux_sym_cmd_identifier_token22] = ACTIONS(1818), + [aux_sym_cmd_identifier_token23] = ACTIONS(1818), + [aux_sym_cmd_identifier_token24] = ACTIONS(1818), + [aux_sym_cmd_identifier_token25] = ACTIONS(1818), + [aux_sym_cmd_identifier_token26] = ACTIONS(1818), + [aux_sym_cmd_identifier_token27] = ACTIONS(1818), + [aux_sym_cmd_identifier_token28] = ACTIONS(1818), + [aux_sym_cmd_identifier_token29] = ACTIONS(1818), + [aux_sym_cmd_identifier_token30] = ACTIONS(1818), + [aux_sym_cmd_identifier_token31] = ACTIONS(1818), + [aux_sym_cmd_identifier_token32] = ACTIONS(1818), + [aux_sym_cmd_identifier_token33] = ACTIONS(1818), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1818), + [aux_sym_cmd_identifier_token36] = ACTIONS(1818), + [aux_sym_cmd_identifier_token37] = ACTIONS(1818), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1818), + [aux_sym_cmd_identifier_token40] = ACTIONS(1818), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1818), + [aux_sym__val_number_decimal_token3] = ACTIONS(1818), + [aux_sym__val_number_decimal_token4] = ACTIONS(1818), + [aux_sym__val_number_token1] = ACTIONS(1818), + [aux_sym__val_number_token2] = ACTIONS(1818), + [aux_sym__val_number_token3] = ACTIONS(1818), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym__str_single_quotes] = ACTIONS(1818), + [sym__str_back_ticks] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), + [sym__entry_separator] = ACTIONS(1820), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), [aux_sym_cmd_identifier_token2] = ACTIONS(1801), [aux_sym_cmd_identifier_token3] = ACTIONS(1801), [aux_sym_cmd_identifier_token4] = ACTIONS(1801), [aux_sym_cmd_identifier_token5] = ACTIONS(1801), [aux_sym_cmd_identifier_token6] = ACTIONS(1801), [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), [aux_sym_cmd_identifier_token10] = ACTIONS(1801), [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), [aux_sym_cmd_identifier_token16] = ACTIONS(1801), [aux_sym_cmd_identifier_token17] = ACTIONS(1801), [aux_sym_cmd_identifier_token18] = ACTIONS(1801), @@ -125260,72 +127878,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1801), [aux_sym_cmd_identifier_token32] = ACTIONS(1801), [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), [aux_sym_cmd_identifier_token35] = ACTIONS(1801), [aux_sym_cmd_identifier_token36] = ACTIONS(1801), [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), [aux_sym_cmd_identifier_token39] = ACTIONS(1801), [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(1822), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), [aux_sym__val_number_decimal_token2] = ACTIONS(1801), [aux_sym__val_number_decimal_token3] = ACTIONS(1801), [aux_sym__val_number_decimal_token4] = ACTIONS(1801), [aux_sym__val_number_token1] = ACTIONS(1801), [aux_sym__val_number_token2] = ACTIONS(1801), [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), [anon_sym_DQUOTE] = ACTIONS(1801), [sym__str_single_quotes] = ACTIONS(1801), [sym__str_back_ticks] = ACTIONS(1801), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, - [383] = { - [sym_comment] = STATE(383), + [384] = { + [sym_comment] = STATE(384), [anon_sym_export] = ACTIONS(1000), [anon_sym_alias] = ACTIONS(1000), [anon_sym_let] = ACTIONS(1000), @@ -125429,113 +128047,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1002), }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(1824), - [aux_sym_cmd_identifier_token3] = ACTIONS(1824), - [aux_sym_cmd_identifier_token4] = ACTIONS(1824), - [aux_sym_cmd_identifier_token5] = ACTIONS(1824), - [aux_sym_cmd_identifier_token6] = ACTIONS(1824), - [aux_sym_cmd_identifier_token7] = ACTIONS(1824), - [aux_sym_cmd_identifier_token8] = ACTIONS(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1824), - [aux_sym_cmd_identifier_token11] = ACTIONS(1824), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(1824), - [aux_sym_cmd_identifier_token17] = ACTIONS(1824), - [aux_sym_cmd_identifier_token18] = ACTIONS(1824), - [aux_sym_cmd_identifier_token19] = ACTIONS(1824), - [aux_sym_cmd_identifier_token20] = ACTIONS(1824), - [aux_sym_cmd_identifier_token21] = ACTIONS(1824), - [aux_sym_cmd_identifier_token22] = ACTIONS(1824), - [aux_sym_cmd_identifier_token23] = ACTIONS(1824), - [aux_sym_cmd_identifier_token24] = ACTIONS(1824), - [aux_sym_cmd_identifier_token25] = ACTIONS(1824), - [aux_sym_cmd_identifier_token26] = ACTIONS(1824), - [aux_sym_cmd_identifier_token27] = ACTIONS(1824), - [aux_sym_cmd_identifier_token28] = ACTIONS(1824), - [aux_sym_cmd_identifier_token29] = ACTIONS(1824), - [aux_sym_cmd_identifier_token30] = ACTIONS(1824), - [aux_sym_cmd_identifier_token31] = ACTIONS(1824), - [aux_sym_cmd_identifier_token32] = ACTIONS(1824), - [aux_sym_cmd_identifier_token33] = ACTIONS(1824), - [aux_sym_cmd_identifier_token34] = ACTIONS(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1824), - [aux_sym_cmd_identifier_token36] = ACTIONS(1824), - [aux_sym_cmd_identifier_token37] = ACTIONS(1824), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1824), - [aux_sym_cmd_identifier_token40] = ACTIONS(1824), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1824), - [aux_sym__val_number_decimal_token3] = ACTIONS(1824), - [aux_sym__val_number_decimal_token4] = ACTIONS(1824), - [aux_sym__val_number_token1] = ACTIONS(1824), - [aux_sym__val_number_token2] = ACTIONS(1824), - [aux_sym__val_number_token3] = ACTIONS(1824), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym__str_single_quotes] = ACTIONS(1824), - [sym__str_back_ticks] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), - [sym__entry_separator] = ACTIONS(1826), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1826), - }, [385] = { [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [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(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [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(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(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(1824), + [aux_sym__immediate_decimal_token2] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [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), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [386] = { + [sym_comment] = STATE(386), [anon_sym_export] = ACTIONS(996), [anon_sym_alias] = ACTIONS(996), [anon_sym_let] = ACTIONS(996), @@ -125639,115 +128257,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(998), }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(1828), - [anon_sym_alias] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_let_DASHenv] = ACTIONS(1828), - [anon_sym_mut] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [aux_sym_cmd_identifier_token1] = ACTIONS(1828), - [aux_sym_cmd_identifier_token2] = ACTIONS(1828), - [aux_sym_cmd_identifier_token3] = ACTIONS(1828), - [aux_sym_cmd_identifier_token4] = ACTIONS(1828), - [aux_sym_cmd_identifier_token5] = ACTIONS(1828), - [aux_sym_cmd_identifier_token6] = ACTIONS(1828), - [aux_sym_cmd_identifier_token7] = ACTIONS(1828), - [aux_sym_cmd_identifier_token8] = ACTIONS(1828), - [aux_sym_cmd_identifier_token9] = ACTIONS(1828), - [aux_sym_cmd_identifier_token10] = ACTIONS(1828), - [aux_sym_cmd_identifier_token11] = ACTIONS(1828), - [aux_sym_cmd_identifier_token12] = ACTIONS(1828), - [aux_sym_cmd_identifier_token13] = ACTIONS(1828), - [aux_sym_cmd_identifier_token14] = ACTIONS(1828), - [aux_sym_cmd_identifier_token15] = ACTIONS(1828), - [aux_sym_cmd_identifier_token16] = ACTIONS(1828), - [aux_sym_cmd_identifier_token17] = ACTIONS(1828), - [aux_sym_cmd_identifier_token18] = ACTIONS(1828), - [aux_sym_cmd_identifier_token19] = ACTIONS(1828), - [aux_sym_cmd_identifier_token20] = ACTIONS(1828), - [aux_sym_cmd_identifier_token21] = ACTIONS(1828), - [aux_sym_cmd_identifier_token22] = ACTIONS(1828), - [aux_sym_cmd_identifier_token23] = ACTIONS(1828), - [aux_sym_cmd_identifier_token24] = ACTIONS(1828), - [aux_sym_cmd_identifier_token25] = ACTIONS(1828), - [aux_sym_cmd_identifier_token26] = ACTIONS(1828), - [aux_sym_cmd_identifier_token27] = ACTIONS(1828), - [aux_sym_cmd_identifier_token28] = ACTIONS(1828), - [aux_sym_cmd_identifier_token29] = ACTIONS(1828), - [aux_sym_cmd_identifier_token30] = ACTIONS(1828), - [aux_sym_cmd_identifier_token31] = ACTIONS(1828), - [aux_sym_cmd_identifier_token32] = ACTIONS(1828), - [aux_sym_cmd_identifier_token33] = ACTIONS(1828), - [aux_sym_cmd_identifier_token34] = ACTIONS(1828), - [aux_sym_cmd_identifier_token35] = ACTIONS(1828), - [aux_sym_cmd_identifier_token36] = ACTIONS(1828), - [aux_sym_cmd_identifier_token37] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1828), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1828), - [anon_sym_export_DASHenv] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_module] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1828), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_in2] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_make] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_do] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [anon_sym_catch] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_source] = ACTIONS(1828), - [anon_sym_source_DASHenv] = ACTIONS(1828), - [anon_sym_register] = ACTIONS(1828), - [anon_sym_hide] = ACTIONS(1828), - [anon_sym_hide_DASHenv] = ACTIONS(1828), - [anon_sym_overlay] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_PLUS2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT_DOT2] = ACTIONS(1832), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1834), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1834), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), - [sym__entry_separator] = ACTIONS(1836), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1836), - }, [387] = { - [sym_path] = STATE(491), [sym_comment] = STATE(387), - [aux_sym_cell_path_repeat1] = STATE(388), + [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(1828), + [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(992), + }, + [388] = { + [sym_comment] = STATE(388), [anon_sym_export] = ACTIONS(986), [anon_sym_alias] = ACTIONS(986), [anon_sym_let] = ACTIONS(986), @@ -125755,52 +128371,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(986), [anon_sym_const] = ACTIONS(986), [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), [aux_sym_cmd_identifier_token8] = ACTIONS(986), [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), [aux_sym_cmd_identifier_token12] = ACTIONS(986), [aux_sym_cmd_identifier_token13] = ACTIONS(986), [aux_sym_cmd_identifier_token14] = ACTIONS(986), [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), + [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(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), [anon_sym_def] = ACTIONS(986), [anon_sym_export_DASHenv] = ACTIONS(986), [anon_sym_extern] = ACTIONS(986), [anon_sym_module] = ACTIONS(986), [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), [anon_sym_error] = ACTIONS(986), [anon_sym_DASH2] = ACTIONS(986), [anon_sym_break] = ACTIONS(986), @@ -125814,7 +128430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(986), [anon_sym_else] = ACTIONS(986), [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(986), [anon_sym_try] = ACTIONS(986), [anon_sym_catch] = ACTIONS(986), [anon_sym_return] = ACTIONS(986), @@ -125825,137 +128441,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(986), [anon_sym_overlay] = ACTIONS(986), [anon_sym_as] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(986), [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(986), [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), + [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_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [388] = { - [sym_path] = STATE(491), - [sym_comment] = STATE(388), - [aux_sym_cell_path_repeat1] = STATE(388), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [aux_sym_cmd_identifier_token1] = ACTIONS(979), - [aux_sym_cmd_identifier_token2] = ACTIONS(981), - [aux_sym_cmd_identifier_token3] = ACTIONS(981), - [aux_sym_cmd_identifier_token4] = ACTIONS(981), - [aux_sym_cmd_identifier_token5] = ACTIONS(981), - [aux_sym_cmd_identifier_token6] = ACTIONS(981), - [aux_sym_cmd_identifier_token7] = ACTIONS(981), - [aux_sym_cmd_identifier_token8] = ACTIONS(979), - [aux_sym_cmd_identifier_token9] = ACTIONS(979), - [aux_sym_cmd_identifier_token10] = ACTIONS(981), - [aux_sym_cmd_identifier_token11] = ACTIONS(981), - [aux_sym_cmd_identifier_token12] = ACTIONS(979), - [aux_sym_cmd_identifier_token13] = ACTIONS(979), - [aux_sym_cmd_identifier_token14] = ACTIONS(979), - [aux_sym_cmd_identifier_token15] = ACTIONS(979), - [aux_sym_cmd_identifier_token16] = ACTIONS(981), - [aux_sym_cmd_identifier_token17] = ACTIONS(981), - [aux_sym_cmd_identifier_token18] = ACTIONS(981), - [aux_sym_cmd_identifier_token19] = ACTIONS(981), - [aux_sym_cmd_identifier_token20] = ACTIONS(981), - [aux_sym_cmd_identifier_token21] = ACTIONS(981), - [aux_sym_cmd_identifier_token22] = ACTIONS(981), - [aux_sym_cmd_identifier_token23] = ACTIONS(981), - [aux_sym_cmd_identifier_token24] = ACTIONS(981), - [aux_sym_cmd_identifier_token25] = ACTIONS(981), - [aux_sym_cmd_identifier_token26] = ACTIONS(981), - [aux_sym_cmd_identifier_token27] = ACTIONS(981), - [aux_sym_cmd_identifier_token28] = ACTIONS(981), - [aux_sym_cmd_identifier_token29] = ACTIONS(981), - [aux_sym_cmd_identifier_token30] = ACTIONS(981), - [aux_sym_cmd_identifier_token31] = ACTIONS(981), - [aux_sym_cmd_identifier_token32] = ACTIONS(981), - [aux_sym_cmd_identifier_token33] = ACTIONS(981), - [aux_sym_cmd_identifier_token34] = ACTIONS(979), - [aux_sym_cmd_identifier_token35] = ACTIONS(981), - [aux_sym_cmd_identifier_token36] = ACTIONS(981), - [aux_sym_cmd_identifier_token37] = ACTIONS(981), - [aux_sym_cmd_identifier_token38] = ACTIONS(979), - [aux_sym_cmd_identifier_token39] = ACTIONS(981), - [aux_sym_cmd_identifier_token40] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(981), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1840), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [sym__entry_separator] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(988), }, [389] = { [sym_comment] = STATE(389), + [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(1830), + [aux_sym_cmd_identifier_token25] = ACTIONS(1830), + [aux_sym_cmd_identifier_token26] = ACTIONS(1830), + [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(1830), + [aux_sym_cmd_identifier_token32] = ACTIONS(1830), + [aux_sym_cmd_identifier_token33] = ACTIONS(1830), + [aux_sym_cmd_identifier_token34] = ACTIONS(1830), + [aux_sym_cmd_identifier_token35] = ACTIONS(1830), + [aux_sym_cmd_identifier_token36] = ACTIONS(1830), + [aux_sym_cmd_identifier_token37] = ACTIONS(1830), + [aux_sym_cmd_identifier_token38] = ACTIONS(1830), + [aux_sym_cmd_identifier_token39] = ACTIONS(1830), + [aux_sym_cmd_identifier_token40] = ACTIONS(1830), + [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_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_error] = ACTIONS(1830), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_in2] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_make] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_catch] = 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_as] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1830), + [anon_sym_DOT_DOT2] = ACTIONS(1834), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1836), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1836), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1830), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1830), + [aux_sym__val_number_decimal_token3] = ACTIONS(1830), + [aux_sym__val_number_decimal_token4] = ACTIONS(1830), + [aux_sym__val_number_token1] = ACTIONS(1830), + [aux_sym__val_number_token2] = ACTIONS(1830), + [aux_sym__val_number_token3] = ACTIONS(1830), + [aux_sym__val_number_token4] = ACTIONS(1830), + [aux_sym__val_number_token5] = ACTIONS(1830), + [aux_sym__val_number_token6] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym__str_single_quotes] = ACTIONS(1830), + [sym__str_back_ticks] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1830), + [sym__entry_separator] = ACTIONS(1838), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1838), + }, + [390] = { + [sym_comment] = STATE(390), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_alias] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_let_DASHenv] = ACTIONS(1840), + [anon_sym_mut] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [aux_sym_cmd_identifier_token1] = ACTIONS(1840), + [aux_sym_cmd_identifier_token2] = ACTIONS(1840), + [aux_sym_cmd_identifier_token3] = ACTIONS(1840), + [aux_sym_cmd_identifier_token4] = ACTIONS(1840), + [aux_sym_cmd_identifier_token5] = ACTIONS(1840), + [aux_sym_cmd_identifier_token6] = ACTIONS(1840), + [aux_sym_cmd_identifier_token7] = ACTIONS(1840), + [aux_sym_cmd_identifier_token8] = ACTIONS(1840), + [aux_sym_cmd_identifier_token9] = ACTIONS(1840), + [aux_sym_cmd_identifier_token10] = ACTIONS(1840), + [aux_sym_cmd_identifier_token11] = ACTIONS(1840), + [aux_sym_cmd_identifier_token12] = ACTIONS(1840), + [aux_sym_cmd_identifier_token13] = ACTIONS(1840), + [aux_sym_cmd_identifier_token14] = ACTIONS(1840), + [aux_sym_cmd_identifier_token15] = ACTIONS(1840), + [aux_sym_cmd_identifier_token16] = ACTIONS(1840), + [aux_sym_cmd_identifier_token17] = ACTIONS(1840), + [aux_sym_cmd_identifier_token18] = ACTIONS(1840), + [aux_sym_cmd_identifier_token19] = ACTIONS(1840), + [aux_sym_cmd_identifier_token20] = ACTIONS(1840), + [aux_sym_cmd_identifier_token21] = ACTIONS(1840), + [aux_sym_cmd_identifier_token22] = ACTIONS(1840), + [aux_sym_cmd_identifier_token23] = ACTIONS(1840), + [aux_sym_cmd_identifier_token24] = ACTIONS(1840), + [aux_sym_cmd_identifier_token25] = ACTIONS(1840), + [aux_sym_cmd_identifier_token26] = ACTIONS(1840), + [aux_sym_cmd_identifier_token27] = ACTIONS(1840), + [aux_sym_cmd_identifier_token28] = ACTIONS(1840), + [aux_sym_cmd_identifier_token29] = ACTIONS(1840), + [aux_sym_cmd_identifier_token30] = ACTIONS(1840), + [aux_sym_cmd_identifier_token31] = ACTIONS(1840), + [aux_sym_cmd_identifier_token32] = ACTIONS(1840), + [aux_sym_cmd_identifier_token33] = ACTIONS(1840), + [aux_sym_cmd_identifier_token34] = ACTIONS(1840), + [aux_sym_cmd_identifier_token35] = ACTIONS(1840), + [aux_sym_cmd_identifier_token36] = ACTIONS(1840), + [aux_sym_cmd_identifier_token37] = ACTIONS(1840), + [aux_sym_cmd_identifier_token38] = ACTIONS(1840), + [aux_sym_cmd_identifier_token39] = ACTIONS(1840), + [aux_sym_cmd_identifier_token40] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1840), + [anon_sym_export_DASHenv] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_error] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_in2] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_make] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_catch] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_source] = ACTIONS(1840), + [anon_sym_source_DASHenv] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_hide] = ACTIONS(1840), + [anon_sym_hide_DASHenv] = ACTIONS(1840), + [anon_sym_overlay] = ACTIONS(1840), + [anon_sym_as] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1840), + [anon_sym_DOT_DOT2] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1840), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1840), + [aux_sym__val_number_decimal_token3] = ACTIONS(1840), + [aux_sym__val_number_decimal_token4] = ACTIONS(1840), + [aux_sym__val_number_token1] = ACTIONS(1840), + [aux_sym__val_number_token2] = ACTIONS(1840), + [aux_sym__val_number_token3] = ACTIONS(1840), + [aux_sym__val_number_token4] = ACTIONS(1840), + [aux_sym__val_number_token5] = ACTIONS(1840), + [aux_sym__val_number_token6] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym__str_single_quotes] = ACTIONS(1840), + [sym__str_back_ticks] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1840), + [sym__entry_separator] = ACTIONS(1848), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1848), + }, + [391] = { + [sym_path] = STATE(472), + [sym_comment] = STATE(391), + [aux_sym_cell_path_repeat1] = STATE(396), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [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(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [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(982), + [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(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_register] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), + }, + [392] = { + [sym_comment] = STATE(392), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_let] = ACTIONS(1004), @@ -126059,1078 +128887,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1006), }, - [390] = { - [sym_comment] = STATE(390), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [aux_sym_cmd_identifier_token37] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in2] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT2] = ACTIONS(1847), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [sym__entry_separator] = ACTIONS(1851), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1851), - }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [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(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [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(1008), - [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(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [sym__entry_separator] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [392] = { - [sym_cell_path] = STATE(591), - [sym_path] = STATE(528), - [sym_comment] = STATE(392), - [aux_sym_cell_path_repeat1] = STATE(429), - [anon_sym_export] = ACTIONS(973), - [anon_sym_alias] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_let_DASHenv] = ACTIONS(973), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [aux_sym_cmd_identifier_token1] = ACTIONS(973), - [aux_sym_cmd_identifier_token2] = ACTIONS(975), - [aux_sym_cmd_identifier_token3] = ACTIONS(975), - [aux_sym_cmd_identifier_token4] = ACTIONS(975), - [aux_sym_cmd_identifier_token5] = ACTIONS(975), - [aux_sym_cmd_identifier_token6] = ACTIONS(975), - [aux_sym_cmd_identifier_token7] = ACTIONS(975), - [aux_sym_cmd_identifier_token8] = ACTIONS(973), - [aux_sym_cmd_identifier_token9] = ACTIONS(973), - [aux_sym_cmd_identifier_token10] = ACTIONS(975), - [aux_sym_cmd_identifier_token11] = ACTIONS(975), - [aux_sym_cmd_identifier_token12] = ACTIONS(973), - [aux_sym_cmd_identifier_token13] = ACTIONS(973), - [aux_sym_cmd_identifier_token14] = ACTIONS(973), - [aux_sym_cmd_identifier_token15] = ACTIONS(973), - [aux_sym_cmd_identifier_token16] = ACTIONS(975), - [aux_sym_cmd_identifier_token17] = ACTIONS(975), - [aux_sym_cmd_identifier_token18] = ACTIONS(975), - [aux_sym_cmd_identifier_token19] = ACTIONS(975), - [aux_sym_cmd_identifier_token20] = ACTIONS(975), - [aux_sym_cmd_identifier_token21] = ACTIONS(975), - [aux_sym_cmd_identifier_token22] = ACTIONS(975), - [aux_sym_cmd_identifier_token23] = ACTIONS(975), - [aux_sym_cmd_identifier_token24] = ACTIONS(975), - [aux_sym_cmd_identifier_token25] = ACTIONS(975), - [aux_sym_cmd_identifier_token26] = ACTIONS(975), - [aux_sym_cmd_identifier_token27] = ACTIONS(975), - [aux_sym_cmd_identifier_token28] = ACTIONS(975), - [aux_sym_cmd_identifier_token29] = ACTIONS(975), - [aux_sym_cmd_identifier_token30] = ACTIONS(975), - [aux_sym_cmd_identifier_token31] = ACTIONS(975), - [aux_sym_cmd_identifier_token32] = ACTIONS(975), - [aux_sym_cmd_identifier_token33] = ACTIONS(975), - [aux_sym_cmd_identifier_token34] = ACTIONS(973), - [aux_sym_cmd_identifier_token35] = ACTIONS(975), - [aux_sym_cmd_identifier_token36] = ACTIONS(975), - [aux_sym_cmd_identifier_token37] = ACTIONS(975), - [aux_sym_cmd_identifier_token38] = ACTIONS(973), - [aux_sym_cmd_identifier_token39] = ACTIONS(975), - [aux_sym_cmd_identifier_token40] = ACTIONS(975), - [anon_sym_def] = ACTIONS(973), - [anon_sym_export_DASHenv] = ACTIONS(973), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_make] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_source] = ACTIONS(973), - [anon_sym_source_DASHenv] = ACTIONS(973), - [anon_sym_register] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_hide_DASHenv] = ACTIONS(973), - [anon_sym_overlay] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(975), - [aux_sym_record_entry_token1] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), - }, [393] = { + [sym_cell_path] = STATE(580), + [sym_path] = STATE(529), [sym_comment] = STATE(393), - [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(1855), - [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(992), + [aux_sym_cell_path_repeat1] = STATE(420), + [anon_sym_export] = ACTIONS(969), + [anon_sym_alias] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_let_DASHenv] = ACTIONS(969), + [anon_sym_mut] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [aux_sym_cmd_identifier_token1] = ACTIONS(969), + [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(969), + [aux_sym_cmd_identifier_token9] = ACTIONS(969), + [aux_sym_cmd_identifier_token10] = ACTIONS(971), + [aux_sym_cmd_identifier_token11] = ACTIONS(971), + [aux_sym_cmd_identifier_token12] = ACTIONS(969), + [aux_sym_cmd_identifier_token13] = ACTIONS(969), + [aux_sym_cmd_identifier_token14] = ACTIONS(969), + [aux_sym_cmd_identifier_token15] = ACTIONS(969), + [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(969), + [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(969), + [aux_sym_cmd_identifier_token39] = ACTIONS(971), + [aux_sym_cmd_identifier_token40] = ACTIONS(971), + [anon_sym_def] = ACTIONS(969), + [anon_sym_export_DASHenv] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_error] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_make] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_source] = ACTIONS(969), + [anon_sym_source_DASHenv] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_hide_DASHenv] = ACTIONS(969), + [anon_sym_overlay] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [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), + [aux_sym_record_entry_token1] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), }, [394] = { [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_alias] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_let_DASHenv] = ACTIONS(1012), - [anon_sym_mut] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [aux_sym_cmd_identifier_token1] = ACTIONS(1012), - [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(1012), - [aux_sym_cmd_identifier_token9] = ACTIONS(1012), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1012), - [aux_sym_cmd_identifier_token13] = ACTIONS(1012), - [aux_sym_cmd_identifier_token14] = ACTIONS(1012), - [aux_sym_cmd_identifier_token15] = ACTIONS(1012), - [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(1012), - [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(1012), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1012), - [anon_sym_export_DASHenv] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_error] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_make] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_catch] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_source] = ACTIONS(1012), - [anon_sym_source_DASHenv] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_hide] = ACTIONS(1012), - [anon_sym_hide_DASHenv] = ACTIONS(1012), - [anon_sym_overlay] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(1857), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [sym__entry_separator] = ACTIONS(1014), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1854), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1014), + [sym_raw_string_begin] = ACTIONS(1781), }, [395] = { [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(1859), - [aux_sym__immediate_decimal_token2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1807), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, [396] = { + [sym_path] = STATE(472), [sym_comment] = STATE(396), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [aux_sym_cell_path_repeat1] = STATE(396), + [anon_sym_export] = ACTIONS(975), + [anon_sym_alias] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_let_DASHenv] = ACTIONS(975), + [anon_sym_mut] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [aux_sym_cmd_identifier_token1] = ACTIONS(975), + [aux_sym_cmd_identifier_token2] = ACTIONS(977), + [aux_sym_cmd_identifier_token3] = ACTIONS(977), + [aux_sym_cmd_identifier_token4] = ACTIONS(977), + [aux_sym_cmd_identifier_token5] = ACTIONS(977), + [aux_sym_cmd_identifier_token6] = ACTIONS(977), + [aux_sym_cmd_identifier_token7] = ACTIONS(977), + [aux_sym_cmd_identifier_token8] = ACTIONS(975), + [aux_sym_cmd_identifier_token9] = ACTIONS(975), + [aux_sym_cmd_identifier_token10] = ACTIONS(977), + [aux_sym_cmd_identifier_token11] = ACTIONS(977), + [aux_sym_cmd_identifier_token12] = ACTIONS(975), + [aux_sym_cmd_identifier_token13] = ACTIONS(975), + [aux_sym_cmd_identifier_token14] = ACTIONS(975), + [aux_sym_cmd_identifier_token15] = ACTIONS(975), + [aux_sym_cmd_identifier_token16] = ACTIONS(977), + [aux_sym_cmd_identifier_token17] = ACTIONS(977), + [aux_sym_cmd_identifier_token18] = ACTIONS(977), + [aux_sym_cmd_identifier_token19] = ACTIONS(977), + [aux_sym_cmd_identifier_token20] = ACTIONS(977), + [aux_sym_cmd_identifier_token21] = ACTIONS(977), + [aux_sym_cmd_identifier_token22] = ACTIONS(977), + [aux_sym_cmd_identifier_token23] = ACTIONS(977), + [aux_sym_cmd_identifier_token24] = ACTIONS(977), + [aux_sym_cmd_identifier_token25] = ACTIONS(977), + [aux_sym_cmd_identifier_token26] = ACTIONS(977), + [aux_sym_cmd_identifier_token27] = ACTIONS(977), + [aux_sym_cmd_identifier_token28] = ACTIONS(977), + [aux_sym_cmd_identifier_token29] = ACTIONS(977), + [aux_sym_cmd_identifier_token30] = ACTIONS(977), + [aux_sym_cmd_identifier_token31] = ACTIONS(977), + [aux_sym_cmd_identifier_token32] = ACTIONS(977), + [aux_sym_cmd_identifier_token33] = ACTIONS(977), + [aux_sym_cmd_identifier_token34] = ACTIONS(975), + [aux_sym_cmd_identifier_token35] = ACTIONS(977), + [aux_sym_cmd_identifier_token36] = ACTIONS(977), + [aux_sym_cmd_identifier_token37] = ACTIONS(977), + [aux_sym_cmd_identifier_token38] = ACTIONS(975), + [aux_sym_cmd_identifier_token39] = ACTIONS(977), + [aux_sym_cmd_identifier_token40] = ACTIONS(977), + [anon_sym_def] = ACTIONS(975), + [anon_sym_export_DASHenv] = ACTIONS(975), + [anon_sym_extern] = ACTIONS(975), + [anon_sym_module] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_error] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_make] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_source] = ACTIONS(975), + [anon_sym_source_DASHenv] = ACTIONS(975), + [anon_sym_register] = ACTIONS(975), + [anon_sym_hide] = ACTIONS(975), + [anon_sym_hide_DASHenv] = ACTIONS(975), + [anon_sym_overlay] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1858), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(975), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(977), }, [397] = { + [sym_cell_path] = STATE(690), + [sym_path] = STATE(595), [sym_comment] = STATE(397), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_alias] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_let_DASHenv] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [aux_sym_cmd_identifier_token1] = ACTIONS(1861), + [aux_sym_cmd_identifier_token2] = ACTIONS(1861), + [aux_sym_cmd_identifier_token3] = ACTIONS(1861), + [aux_sym_cmd_identifier_token4] = ACTIONS(1861), + [aux_sym_cmd_identifier_token5] = ACTIONS(1861), + [aux_sym_cmd_identifier_token6] = ACTIONS(1861), + [aux_sym_cmd_identifier_token7] = ACTIONS(1861), + [aux_sym_cmd_identifier_token8] = ACTIONS(1861), + [aux_sym_cmd_identifier_token9] = ACTIONS(1861), + [aux_sym_cmd_identifier_token10] = ACTIONS(1861), + [aux_sym_cmd_identifier_token11] = ACTIONS(1861), + [aux_sym_cmd_identifier_token12] = ACTIONS(1861), + [aux_sym_cmd_identifier_token13] = ACTIONS(1861), + [aux_sym_cmd_identifier_token14] = ACTIONS(1861), + [aux_sym_cmd_identifier_token15] = ACTIONS(1861), + [aux_sym_cmd_identifier_token16] = ACTIONS(1861), + [aux_sym_cmd_identifier_token17] = ACTIONS(1861), + [aux_sym_cmd_identifier_token18] = ACTIONS(1861), + [aux_sym_cmd_identifier_token19] = ACTIONS(1861), + [aux_sym_cmd_identifier_token20] = ACTIONS(1861), + [aux_sym_cmd_identifier_token21] = ACTIONS(1861), + [aux_sym_cmd_identifier_token22] = ACTIONS(1861), + [aux_sym_cmd_identifier_token23] = ACTIONS(1861), + [aux_sym_cmd_identifier_token24] = ACTIONS(1861), + [aux_sym_cmd_identifier_token25] = ACTIONS(1861), + [aux_sym_cmd_identifier_token26] = ACTIONS(1861), + [aux_sym_cmd_identifier_token27] = ACTIONS(1861), + [aux_sym_cmd_identifier_token28] = ACTIONS(1861), + [aux_sym_cmd_identifier_token29] = ACTIONS(1861), + [aux_sym_cmd_identifier_token30] = ACTIONS(1861), + [aux_sym_cmd_identifier_token31] = ACTIONS(1861), + [aux_sym_cmd_identifier_token32] = ACTIONS(1861), + [aux_sym_cmd_identifier_token33] = ACTIONS(1861), + [aux_sym_cmd_identifier_token34] = ACTIONS(1861), + [aux_sym_cmd_identifier_token35] = ACTIONS(1861), + [aux_sym_cmd_identifier_token36] = ACTIONS(1861), + [aux_sym_cmd_identifier_token37] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_export_DASHenv] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_make] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_catch] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_source] = ACTIONS(1861), + [anon_sym_source_DASHenv] = ACTIONS(1861), + [anon_sym_register] = ACTIONS(1861), + [anon_sym_hide] = ACTIONS(1861), + [anon_sym_hide_DASHenv] = ACTIONS(1861), + [anon_sym_overlay] = ACTIONS(1861), + [anon_sym_as] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [sym__entry_separator] = ACTIONS(1865), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_raw_string_begin] = ACTIONS(1865), }, [398] = { [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [399] = { - [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [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(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [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(1004), - [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(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [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(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [400] = { - [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), [aux_sym_cmd_identifier_token2] = ACTIONS(1801), [aux_sym_cmd_identifier_token3] = ACTIONS(1801), [aux_sym_cmd_identifier_token4] = ACTIONS(1801), [aux_sym_cmd_identifier_token5] = ACTIONS(1801), [aux_sym_cmd_identifier_token6] = ACTIONS(1801), [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), [aux_sym_cmd_identifier_token10] = ACTIONS(1801), [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), [aux_sym_cmd_identifier_token16] = ACTIONS(1801), [aux_sym_cmd_identifier_token17] = ACTIONS(1801), [aux_sym_cmd_identifier_token18] = ACTIONS(1801), @@ -127149,386 +129452,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1801), [aux_sym_cmd_identifier_token32] = ACTIONS(1801), [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), [aux_sym_cmd_identifier_token35] = ACTIONS(1801), [aux_sym_cmd_identifier_token36] = ACTIONS(1801), [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), [aux_sym_cmd_identifier_token39] = ACTIONS(1801), [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(1865), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), [aux_sym__val_number_decimal_token2] = ACTIONS(1801), [aux_sym__val_number_decimal_token3] = ACTIONS(1801), [aux_sym__val_number_decimal_token4] = ACTIONS(1801), [aux_sym__val_number_token1] = ACTIONS(1801), [aux_sym__val_number_token2] = ACTIONS(1801), [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), [anon_sym_DQUOTE] = ACTIONS(1801), [sym__str_single_quotes] = ACTIONS(1801), [sym__str_back_ticks] = ACTIONS(1801), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, - [401] = { - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), + [399] = { + [sym_comment] = STATE(399), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1820), + [aux_sym_cmd_identifier_token3] = ACTIONS(1820), + [aux_sym_cmd_identifier_token4] = ACTIONS(1820), + [aux_sym_cmd_identifier_token5] = ACTIONS(1820), + [aux_sym_cmd_identifier_token6] = ACTIONS(1820), + [aux_sym_cmd_identifier_token7] = ACTIONS(1820), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1820), + [aux_sym_cmd_identifier_token11] = ACTIONS(1820), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1820), + [aux_sym_cmd_identifier_token17] = ACTIONS(1820), + [aux_sym_cmd_identifier_token18] = ACTIONS(1820), + [aux_sym_cmd_identifier_token19] = ACTIONS(1820), + [aux_sym_cmd_identifier_token20] = ACTIONS(1820), + [aux_sym_cmd_identifier_token21] = ACTIONS(1820), + [aux_sym_cmd_identifier_token22] = ACTIONS(1820), + [aux_sym_cmd_identifier_token23] = ACTIONS(1820), + [aux_sym_cmd_identifier_token24] = ACTIONS(1820), + [aux_sym_cmd_identifier_token25] = ACTIONS(1820), + [aux_sym_cmd_identifier_token26] = ACTIONS(1820), + [aux_sym_cmd_identifier_token27] = ACTIONS(1820), + [aux_sym_cmd_identifier_token28] = ACTIONS(1820), + [aux_sym_cmd_identifier_token29] = ACTIONS(1820), + [aux_sym_cmd_identifier_token30] = ACTIONS(1820), + [aux_sym_cmd_identifier_token31] = ACTIONS(1820), + [aux_sym_cmd_identifier_token32] = ACTIONS(1820), + [aux_sym_cmd_identifier_token33] = ACTIONS(1820), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1820), + [aux_sym_cmd_identifier_token36] = ACTIONS(1820), + [aux_sym_cmd_identifier_token37] = ACTIONS(1820), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1820), + [aux_sym_cmd_identifier_token40] = ACTIONS(1820), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [400] = { + [sym_comment] = STATE(400), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), [aux_sym__immediate_decimal_token1] = ACTIONS(1867), [aux_sym__immediate_decimal_token2] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [401] = { + [sym_cell_path] = STATE(679), + [sym_path] = STATE(595), + [sym_comment] = STATE(401), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [aux_sym_cmd_identifier_token37] = ACTIONS(1871), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1871), + [aux_sym_cmd_identifier_token40] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1871), + [aux_sym__val_number_decimal_token3] = ACTIONS(1871), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1871), + [aux_sym__val_number_token2] = ACTIONS(1871), + [aux_sym__val_number_token3] = ACTIONS(1871), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [sym__entry_separator] = ACTIONS(1873), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), + [sym_raw_string_begin] = ACTIONS(1873), }, [402] = { + [sym_cell_path] = STATE(691), + [sym_path] = STATE(595), [sym_comment] = STATE(402), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1871), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1875), + [aux_sym_cmd_identifier_token3] = ACTIONS(1875), + [aux_sym_cmd_identifier_token4] = ACTIONS(1875), + [aux_sym_cmd_identifier_token5] = ACTIONS(1875), + [aux_sym_cmd_identifier_token6] = ACTIONS(1875), + [aux_sym_cmd_identifier_token7] = ACTIONS(1875), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1875), + [aux_sym_cmd_identifier_token11] = ACTIONS(1875), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1875), + [aux_sym_cmd_identifier_token17] = ACTIONS(1875), + [aux_sym_cmd_identifier_token18] = ACTIONS(1875), + [aux_sym_cmd_identifier_token19] = ACTIONS(1875), + [aux_sym_cmd_identifier_token20] = ACTIONS(1875), + [aux_sym_cmd_identifier_token21] = ACTIONS(1875), + [aux_sym_cmd_identifier_token22] = ACTIONS(1875), + [aux_sym_cmd_identifier_token23] = ACTIONS(1875), + [aux_sym_cmd_identifier_token24] = ACTIONS(1875), + [aux_sym_cmd_identifier_token25] = ACTIONS(1875), + [aux_sym_cmd_identifier_token26] = ACTIONS(1875), + [aux_sym_cmd_identifier_token27] = ACTIONS(1875), + [aux_sym_cmd_identifier_token28] = ACTIONS(1875), + [aux_sym_cmd_identifier_token29] = ACTIONS(1875), + [aux_sym_cmd_identifier_token30] = ACTIONS(1875), + [aux_sym_cmd_identifier_token31] = ACTIONS(1875), + [aux_sym_cmd_identifier_token32] = ACTIONS(1875), + [aux_sym_cmd_identifier_token33] = ACTIONS(1875), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1875), + [aux_sym_cmd_identifier_token36] = ACTIONS(1875), + [aux_sym_cmd_identifier_token37] = ACTIONS(1875), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1875), + [aux_sym_cmd_identifier_token40] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1875), + [aux_sym__val_number_decimal_token3] = ACTIONS(1875), + [aux_sym__val_number_decimal_token4] = ACTIONS(1875), + [aux_sym__val_number_token1] = ACTIONS(1875), + [aux_sym__val_number_token2] = ACTIONS(1875), + [aux_sym__val_number_token3] = ACTIONS(1875), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), + [sym__entry_separator] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1877), }, [403] = { + [sym_cell_path] = STATE(652), + [sym_path] = STATE(595), [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1875), - [aux_sym__immediate_decimal_token2] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [404] = { - [sym_cell_path] = STATE(661), - [sym_path] = STATE(605), - [sym_comment] = STATE(404), - [aux_sym_cell_path_repeat1] = STATE(489), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1879), [anon_sym_alias] = ACTIONS(1879), [anon_sym_let] = ACTIONS(1879), @@ -127608,7 +130015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1879), [anon_sym_PLUS2] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), [aux_sym__val_number_decimal_token1] = ACTIONS(1879), [aux_sym__val_number_decimal_token2] = ACTIONS(1879), @@ -127624,639 +130031,847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1879), [sym__str_back_ticks] = ACTIONS(1879), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1883), + [sym__entry_separator] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [404] = { + [sym_cell_path] = STATE(611), + [sym_path] = STATE(595), + [sym_comment] = STATE(404), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1883), + [aux_sym_cmd_identifier_token3] = ACTIONS(1883), + [aux_sym_cmd_identifier_token4] = ACTIONS(1883), + [aux_sym_cmd_identifier_token5] = ACTIONS(1883), + [aux_sym_cmd_identifier_token6] = ACTIONS(1883), + [aux_sym_cmd_identifier_token7] = ACTIONS(1883), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1883), + [aux_sym_cmd_identifier_token11] = ACTIONS(1883), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1883), + [aux_sym_cmd_identifier_token17] = ACTIONS(1883), + [aux_sym_cmd_identifier_token18] = ACTIONS(1883), + [aux_sym_cmd_identifier_token19] = ACTIONS(1883), + [aux_sym_cmd_identifier_token20] = ACTIONS(1883), + [aux_sym_cmd_identifier_token21] = ACTIONS(1883), + [aux_sym_cmd_identifier_token22] = ACTIONS(1883), + [aux_sym_cmd_identifier_token23] = ACTIONS(1883), + [aux_sym_cmd_identifier_token24] = ACTIONS(1883), + [aux_sym_cmd_identifier_token25] = ACTIONS(1883), + [aux_sym_cmd_identifier_token26] = ACTIONS(1883), + [aux_sym_cmd_identifier_token27] = ACTIONS(1883), + [aux_sym_cmd_identifier_token28] = ACTIONS(1883), + [aux_sym_cmd_identifier_token29] = ACTIONS(1883), + [aux_sym_cmd_identifier_token30] = ACTIONS(1883), + [aux_sym_cmd_identifier_token31] = ACTIONS(1883), + [aux_sym_cmd_identifier_token32] = ACTIONS(1883), + [aux_sym_cmd_identifier_token33] = ACTIONS(1883), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token36] = ACTIONS(1883), + [aux_sym_cmd_identifier_token37] = ACTIONS(1883), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1883), + [aux_sym_cmd_identifier_token40] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in2] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1883), + [aux_sym__val_number_decimal_token3] = ACTIONS(1883), + [aux_sym__val_number_decimal_token4] = ACTIONS(1883), + [aux_sym__val_number_token1] = ACTIONS(1883), + [aux_sym__val_number_token2] = ACTIONS(1883), + [aux_sym__val_number_token3] = ACTIONS(1883), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), + [sym__entry_separator] = ACTIONS(1885), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1883), + [sym_raw_string_begin] = ACTIONS(1885), }, [405] = { - [sym_cell_path] = STATE(622), - [sym_path] = STATE(605), + [sym_cell_path] = STATE(612), + [sym_path] = STATE(595), [sym_comment] = STATE(405), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_alias] = ACTIONS(1885), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_let_DASHenv] = ACTIONS(1885), - [anon_sym_mut] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [aux_sym_cmd_identifier_token1] = ACTIONS(1885), - [aux_sym_cmd_identifier_token2] = ACTIONS(1885), - [aux_sym_cmd_identifier_token3] = ACTIONS(1885), - [aux_sym_cmd_identifier_token4] = ACTIONS(1885), - [aux_sym_cmd_identifier_token5] = ACTIONS(1885), - [aux_sym_cmd_identifier_token6] = ACTIONS(1885), - [aux_sym_cmd_identifier_token7] = ACTIONS(1885), - [aux_sym_cmd_identifier_token8] = ACTIONS(1885), - [aux_sym_cmd_identifier_token9] = ACTIONS(1885), - [aux_sym_cmd_identifier_token10] = ACTIONS(1885), - [aux_sym_cmd_identifier_token11] = ACTIONS(1885), - [aux_sym_cmd_identifier_token12] = ACTIONS(1885), - [aux_sym_cmd_identifier_token13] = ACTIONS(1885), - [aux_sym_cmd_identifier_token14] = ACTIONS(1885), - [aux_sym_cmd_identifier_token15] = ACTIONS(1885), - [aux_sym_cmd_identifier_token16] = ACTIONS(1885), - [aux_sym_cmd_identifier_token17] = ACTIONS(1885), - [aux_sym_cmd_identifier_token18] = ACTIONS(1885), - [aux_sym_cmd_identifier_token19] = ACTIONS(1885), - [aux_sym_cmd_identifier_token20] = ACTIONS(1885), - [aux_sym_cmd_identifier_token21] = ACTIONS(1885), - [aux_sym_cmd_identifier_token22] = ACTIONS(1885), - [aux_sym_cmd_identifier_token23] = ACTIONS(1885), - [aux_sym_cmd_identifier_token24] = ACTIONS(1885), - [aux_sym_cmd_identifier_token25] = ACTIONS(1885), - [aux_sym_cmd_identifier_token26] = ACTIONS(1885), - [aux_sym_cmd_identifier_token27] = ACTIONS(1885), - [aux_sym_cmd_identifier_token28] = ACTIONS(1885), - [aux_sym_cmd_identifier_token29] = ACTIONS(1885), - [aux_sym_cmd_identifier_token30] = ACTIONS(1885), - [aux_sym_cmd_identifier_token31] = ACTIONS(1885), - [aux_sym_cmd_identifier_token32] = ACTIONS(1885), - [aux_sym_cmd_identifier_token33] = ACTIONS(1885), - [aux_sym_cmd_identifier_token34] = ACTIONS(1885), - [aux_sym_cmd_identifier_token35] = ACTIONS(1885), - [aux_sym_cmd_identifier_token36] = ACTIONS(1885), - [aux_sym_cmd_identifier_token37] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1885), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1885), - [anon_sym_export_DASHenv] = ACTIONS(1885), - [anon_sym_extern] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_use] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_in2] = ACTIONS(1885), - [anon_sym_loop] = ACTIONS(1885), - [anon_sym_make] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_do] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1885), - [anon_sym_catch] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_source] = ACTIONS(1885), - [anon_sym_source_DASHenv] = ACTIONS(1885), - [anon_sym_register] = ACTIONS(1885), - [anon_sym_hide] = ACTIONS(1885), - [anon_sym_hide_DASHenv] = ACTIONS(1885), - [anon_sym_overlay] = ACTIONS(1885), - [anon_sym_as] = ACTIONS(1885), - [anon_sym_PLUS2] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1885), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1885), - [aux_sym__val_number_token5] = ACTIONS(1885), - [aux_sym__val_number_token6] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [sym__entry_separator] = ACTIONS(1887), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [aux_sym_cmd_identifier_token1] = ACTIONS(1887), + [aux_sym_cmd_identifier_token2] = ACTIONS(1887), + [aux_sym_cmd_identifier_token3] = ACTIONS(1887), + [aux_sym_cmd_identifier_token4] = ACTIONS(1887), + [aux_sym_cmd_identifier_token5] = ACTIONS(1887), + [aux_sym_cmd_identifier_token6] = ACTIONS(1887), + [aux_sym_cmd_identifier_token7] = ACTIONS(1887), + [aux_sym_cmd_identifier_token8] = ACTIONS(1887), + [aux_sym_cmd_identifier_token9] = ACTIONS(1887), + [aux_sym_cmd_identifier_token10] = ACTIONS(1887), + [aux_sym_cmd_identifier_token11] = ACTIONS(1887), + [aux_sym_cmd_identifier_token12] = ACTIONS(1887), + [aux_sym_cmd_identifier_token13] = ACTIONS(1887), + [aux_sym_cmd_identifier_token14] = ACTIONS(1887), + [aux_sym_cmd_identifier_token15] = ACTIONS(1887), + [aux_sym_cmd_identifier_token16] = ACTIONS(1887), + [aux_sym_cmd_identifier_token17] = ACTIONS(1887), + [aux_sym_cmd_identifier_token18] = ACTIONS(1887), + [aux_sym_cmd_identifier_token19] = ACTIONS(1887), + [aux_sym_cmd_identifier_token20] = ACTIONS(1887), + [aux_sym_cmd_identifier_token21] = ACTIONS(1887), + [aux_sym_cmd_identifier_token22] = ACTIONS(1887), + [aux_sym_cmd_identifier_token23] = ACTIONS(1887), + [aux_sym_cmd_identifier_token24] = ACTIONS(1887), + [aux_sym_cmd_identifier_token25] = ACTIONS(1887), + [aux_sym_cmd_identifier_token26] = ACTIONS(1887), + [aux_sym_cmd_identifier_token27] = ACTIONS(1887), + [aux_sym_cmd_identifier_token28] = ACTIONS(1887), + [aux_sym_cmd_identifier_token29] = ACTIONS(1887), + [aux_sym_cmd_identifier_token30] = ACTIONS(1887), + [aux_sym_cmd_identifier_token31] = ACTIONS(1887), + [aux_sym_cmd_identifier_token32] = ACTIONS(1887), + [aux_sym_cmd_identifier_token33] = ACTIONS(1887), + [aux_sym_cmd_identifier_token34] = ACTIONS(1887), + [aux_sym_cmd_identifier_token35] = ACTIONS(1887), + [aux_sym_cmd_identifier_token36] = ACTIONS(1887), + [aux_sym_cmd_identifier_token37] = ACTIONS(1887), + [aux_sym_cmd_identifier_token38] = ACTIONS(1887), + [aux_sym_cmd_identifier_token39] = ACTIONS(1887), + [aux_sym_cmd_identifier_token40] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_make] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_catch] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), + [sym__entry_separator] = ACTIONS(1889), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1887), + [sym_raw_string_begin] = ACTIONS(1889), }, [406] = { - [sym_cell_path] = STATE(630), - [sym_path] = STATE(605), + [sym_cell_path] = STATE(613), + [sym_path] = STATE(595), [sym_comment] = STATE(406), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_alias] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_let_DASHenv] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [aux_sym_cmd_identifier_token1] = ACTIONS(1889), - [aux_sym_cmd_identifier_token2] = ACTIONS(1889), - [aux_sym_cmd_identifier_token3] = ACTIONS(1889), - [aux_sym_cmd_identifier_token4] = ACTIONS(1889), - [aux_sym_cmd_identifier_token5] = ACTIONS(1889), - [aux_sym_cmd_identifier_token6] = ACTIONS(1889), - [aux_sym_cmd_identifier_token7] = ACTIONS(1889), - [aux_sym_cmd_identifier_token8] = ACTIONS(1889), - [aux_sym_cmd_identifier_token9] = ACTIONS(1889), - [aux_sym_cmd_identifier_token10] = ACTIONS(1889), - [aux_sym_cmd_identifier_token11] = ACTIONS(1889), - [aux_sym_cmd_identifier_token12] = ACTIONS(1889), - [aux_sym_cmd_identifier_token13] = ACTIONS(1889), - [aux_sym_cmd_identifier_token14] = ACTIONS(1889), - [aux_sym_cmd_identifier_token15] = ACTIONS(1889), - [aux_sym_cmd_identifier_token16] = ACTIONS(1889), - [aux_sym_cmd_identifier_token17] = ACTIONS(1889), - [aux_sym_cmd_identifier_token18] = ACTIONS(1889), - [aux_sym_cmd_identifier_token19] = ACTIONS(1889), - [aux_sym_cmd_identifier_token20] = ACTIONS(1889), - [aux_sym_cmd_identifier_token21] = ACTIONS(1889), - [aux_sym_cmd_identifier_token22] = ACTIONS(1889), - [aux_sym_cmd_identifier_token23] = ACTIONS(1889), - [aux_sym_cmd_identifier_token24] = ACTIONS(1889), - [aux_sym_cmd_identifier_token25] = ACTIONS(1889), - [aux_sym_cmd_identifier_token26] = ACTIONS(1889), - [aux_sym_cmd_identifier_token27] = ACTIONS(1889), - [aux_sym_cmd_identifier_token28] = ACTIONS(1889), - [aux_sym_cmd_identifier_token29] = ACTIONS(1889), - [aux_sym_cmd_identifier_token30] = ACTIONS(1889), - [aux_sym_cmd_identifier_token31] = ACTIONS(1889), - [aux_sym_cmd_identifier_token32] = ACTIONS(1889), - [aux_sym_cmd_identifier_token33] = ACTIONS(1889), - [aux_sym_cmd_identifier_token34] = ACTIONS(1889), - [aux_sym_cmd_identifier_token35] = ACTIONS(1889), - [aux_sym_cmd_identifier_token36] = ACTIONS(1889), - [aux_sym_cmd_identifier_token37] = ACTIONS(1889), - [aux_sym_cmd_identifier_token38] = ACTIONS(1889), - [aux_sym_cmd_identifier_token39] = ACTIONS(1889), - [aux_sym_cmd_identifier_token40] = ACTIONS(1889), - [anon_sym_def] = ACTIONS(1889), - [anon_sym_export_DASHenv] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_error] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_in2] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_make] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_catch] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_source] = ACTIONS(1889), - [anon_sym_source_DASHenv] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_hide] = ACTIONS(1889), - [anon_sym_hide_DASHenv] = ACTIONS(1889), - [anon_sym_overlay] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1889), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), - [sym__entry_separator] = ACTIONS(1891), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(1891), + [aux_sym_cmd_identifier_token3] = ACTIONS(1891), + [aux_sym_cmd_identifier_token4] = ACTIONS(1891), + [aux_sym_cmd_identifier_token5] = ACTIONS(1891), + [aux_sym_cmd_identifier_token6] = ACTIONS(1891), + [aux_sym_cmd_identifier_token7] = ACTIONS(1891), + [aux_sym_cmd_identifier_token8] = ACTIONS(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1891), + [aux_sym_cmd_identifier_token11] = ACTIONS(1891), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(1891), + [aux_sym_cmd_identifier_token17] = ACTIONS(1891), + [aux_sym_cmd_identifier_token18] = ACTIONS(1891), + [aux_sym_cmd_identifier_token19] = ACTIONS(1891), + [aux_sym_cmd_identifier_token20] = ACTIONS(1891), + [aux_sym_cmd_identifier_token21] = ACTIONS(1891), + [aux_sym_cmd_identifier_token22] = ACTIONS(1891), + [aux_sym_cmd_identifier_token23] = ACTIONS(1891), + [aux_sym_cmd_identifier_token24] = ACTIONS(1891), + [aux_sym_cmd_identifier_token25] = ACTIONS(1891), + [aux_sym_cmd_identifier_token26] = ACTIONS(1891), + [aux_sym_cmd_identifier_token27] = ACTIONS(1891), + [aux_sym_cmd_identifier_token28] = ACTIONS(1891), + [aux_sym_cmd_identifier_token29] = ACTIONS(1891), + [aux_sym_cmd_identifier_token30] = ACTIONS(1891), + [aux_sym_cmd_identifier_token31] = ACTIONS(1891), + [aux_sym_cmd_identifier_token32] = ACTIONS(1891), + [aux_sym_cmd_identifier_token33] = ACTIONS(1891), + [aux_sym_cmd_identifier_token34] = ACTIONS(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1891), + [aux_sym_cmd_identifier_token36] = ACTIONS(1891), + [aux_sym_cmd_identifier_token37] = ACTIONS(1891), + [aux_sym_cmd_identifier_token38] = ACTIONS(1891), + [aux_sym_cmd_identifier_token39] = ACTIONS(1891), + [aux_sym_cmd_identifier_token40] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in2] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1891), + [aux_sym__val_number_decimal_token3] = ACTIONS(1891), + [aux_sym__val_number_decimal_token4] = ACTIONS(1891), + [aux_sym__val_number_token1] = ACTIONS(1891), + [aux_sym__val_number_token2] = ACTIONS(1891), + [aux_sym__val_number_token3] = ACTIONS(1891), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), + [sym__entry_separator] = ACTIONS(1893), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1891), + [sym_raw_string_begin] = ACTIONS(1893), }, [407] = { - [sym_cell_path] = STATE(634), - [sym_path] = STATE(605), + [sym_cell_path] = STATE(614), + [sym_path] = STATE(595), [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(489), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_in2] = 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_as] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1881), - [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), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = 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), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(1895), + [aux_sym_cmd_identifier_token3] = ACTIONS(1895), + [aux_sym_cmd_identifier_token4] = ACTIONS(1895), + [aux_sym_cmd_identifier_token5] = ACTIONS(1895), + [aux_sym_cmd_identifier_token6] = ACTIONS(1895), + [aux_sym_cmd_identifier_token7] = ACTIONS(1895), + [aux_sym_cmd_identifier_token8] = ACTIONS(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(1895), + [aux_sym_cmd_identifier_token17] = ACTIONS(1895), + [aux_sym_cmd_identifier_token18] = ACTIONS(1895), + [aux_sym_cmd_identifier_token19] = ACTIONS(1895), + [aux_sym_cmd_identifier_token20] = ACTIONS(1895), + [aux_sym_cmd_identifier_token21] = ACTIONS(1895), + [aux_sym_cmd_identifier_token22] = ACTIONS(1895), + [aux_sym_cmd_identifier_token23] = ACTIONS(1895), + [aux_sym_cmd_identifier_token24] = ACTIONS(1895), + [aux_sym_cmd_identifier_token25] = ACTIONS(1895), + [aux_sym_cmd_identifier_token26] = ACTIONS(1895), + [aux_sym_cmd_identifier_token27] = ACTIONS(1895), + [aux_sym_cmd_identifier_token28] = ACTIONS(1895), + [aux_sym_cmd_identifier_token29] = ACTIONS(1895), + [aux_sym_cmd_identifier_token30] = ACTIONS(1895), + [aux_sym_cmd_identifier_token31] = ACTIONS(1895), + [aux_sym_cmd_identifier_token32] = ACTIONS(1895), + [aux_sym_cmd_identifier_token33] = ACTIONS(1895), + [aux_sym_cmd_identifier_token34] = ACTIONS(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1895), + [aux_sym_cmd_identifier_token36] = ACTIONS(1895), + [aux_sym_cmd_identifier_token37] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [sym__entry_separator] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1895), + [sym_raw_string_begin] = ACTIONS(1897), }, [408] = { - [sym_cell_path] = STATE(635), - [sym_path] = STATE(605), [sym_comment] = STATE(408), - [aux_sym_cell_path_repeat1] = STATE(489), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in2] = 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_as] = ACTIONS(1897), - [anon_sym_PLUS2] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(1881), - [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), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1899), - }, - [409] = { - [sym_cell_path] = STATE(646), - [sym_path] = STATE(605), - [sym_comment] = STATE(409), - [aux_sym_cell_path_repeat1] = STATE(489), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in2] = 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_as] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(1881), - [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), - [aux_sym__val_number_token4] = ACTIONS(1901), - [aux_sym__val_number_token5] = ACTIONS(1901), - [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1903), - }, - [410] = { - [sym_cell_path] = STATE(648), - [sym_path] = STATE(605), - [sym_comment] = STATE(410), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [aux_sym_cmd_identifier_token37] = ACTIONS(1905), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1905), - [aux_sym_cmd_identifier_token40] = ACTIONS(1905), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in2] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [aux_sym__val_number_token4] = ACTIONS(1905), - [aux_sym__val_number_token5] = ACTIONS(1905), - [aux_sym__val_number_token6] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [sym__entry_separator] = ACTIONS(1907), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [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(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [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(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(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [aux_sym__immediate_decimal_token1] = ACTIONS(1899), + [aux_sym__immediate_decimal_token2] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [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), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1907), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [409] = { + [sym_comment] = STATE(409), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [410] = { + [sym_cell_path] = STATE(615), + [sym_path] = STATE(595), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_alias] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_let_DASHenv] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [aux_sym_cmd_identifier_token1] = ACTIONS(1903), + [aux_sym_cmd_identifier_token2] = ACTIONS(1903), + [aux_sym_cmd_identifier_token3] = ACTIONS(1903), + [aux_sym_cmd_identifier_token4] = ACTIONS(1903), + [aux_sym_cmd_identifier_token5] = ACTIONS(1903), + [aux_sym_cmd_identifier_token6] = ACTIONS(1903), + [aux_sym_cmd_identifier_token7] = ACTIONS(1903), + [aux_sym_cmd_identifier_token8] = ACTIONS(1903), + [aux_sym_cmd_identifier_token9] = ACTIONS(1903), + [aux_sym_cmd_identifier_token10] = ACTIONS(1903), + [aux_sym_cmd_identifier_token11] = ACTIONS(1903), + [aux_sym_cmd_identifier_token12] = ACTIONS(1903), + [aux_sym_cmd_identifier_token13] = ACTIONS(1903), + [aux_sym_cmd_identifier_token14] = ACTIONS(1903), + [aux_sym_cmd_identifier_token15] = ACTIONS(1903), + [aux_sym_cmd_identifier_token16] = ACTIONS(1903), + [aux_sym_cmd_identifier_token17] = ACTIONS(1903), + [aux_sym_cmd_identifier_token18] = ACTIONS(1903), + [aux_sym_cmd_identifier_token19] = ACTIONS(1903), + [aux_sym_cmd_identifier_token20] = ACTIONS(1903), + [aux_sym_cmd_identifier_token21] = ACTIONS(1903), + [aux_sym_cmd_identifier_token22] = ACTIONS(1903), + [aux_sym_cmd_identifier_token23] = ACTIONS(1903), + [aux_sym_cmd_identifier_token24] = ACTIONS(1903), + [aux_sym_cmd_identifier_token25] = ACTIONS(1903), + [aux_sym_cmd_identifier_token26] = ACTIONS(1903), + [aux_sym_cmd_identifier_token27] = ACTIONS(1903), + [aux_sym_cmd_identifier_token28] = ACTIONS(1903), + [aux_sym_cmd_identifier_token29] = ACTIONS(1903), + [aux_sym_cmd_identifier_token30] = ACTIONS(1903), + [aux_sym_cmd_identifier_token31] = ACTIONS(1903), + [aux_sym_cmd_identifier_token32] = ACTIONS(1903), + [aux_sym_cmd_identifier_token33] = ACTIONS(1903), + [aux_sym_cmd_identifier_token34] = ACTIONS(1903), + [aux_sym_cmd_identifier_token35] = ACTIONS(1903), + [aux_sym_cmd_identifier_token36] = ACTIONS(1903), + [aux_sym_cmd_identifier_token37] = ACTIONS(1903), + [aux_sym_cmd_identifier_token38] = ACTIONS(1903), + [aux_sym_cmd_identifier_token39] = ACTIONS(1903), + [aux_sym_cmd_identifier_token40] = ACTIONS(1903), + [anon_sym_def] = ACTIONS(1903), + [anon_sym_export_DASHenv] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_use] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1903), + [anon_sym_error] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_in2] = ACTIONS(1903), + [anon_sym_loop] = ACTIONS(1903), + [anon_sym_make] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_else] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_catch] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_source] = ACTIONS(1903), + [anon_sym_source_DASHenv] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_hide] = ACTIONS(1903), + [anon_sym_hide_DASHenv] = ACTIONS(1903), + [anon_sym_overlay] = ACTIONS(1903), + [anon_sym_as] = ACTIONS(1903), + [anon_sym_PLUS2] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1903), + [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), + [aux_sym__val_number_token4] = ACTIONS(1903), + [aux_sym__val_number_token5] = ACTIONS(1903), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1905), }, [411] = { - [sym_cell_path] = STATE(650), - [sym_path] = STATE(605), [sym_comment] = STATE(411), - [aux_sym_cell_path_repeat1] = STATE(489), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [412] = { + [sym_cell_path] = STATE(616), + [sym_path] = STATE(595), + [sym_comment] = STATE(412), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1909), [anon_sym_alias] = ACTIONS(1909), [anon_sym_let] = ACTIONS(1909), @@ -128336,7 +130951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1909), [anon_sym_PLUS2] = ACTIONS(1909), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), [aux_sym__val_number_decimal_token1] = ACTIONS(1909), [aux_sym__val_number_decimal_token2] = ACTIONS(1909), @@ -128356,115 +130971,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1911), }, - [412] = { - [sym_cell_path] = STATE(671), - [sym_path] = STATE(605), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(489), - [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(1881), - [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(1915), - }, [413] = { - [sym_cell_path] = STATE(651), - [sym_path] = STATE(605), [sym_comment] = STATE(413), - [aux_sym_cell_path_repeat1] = STATE(489), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [414] = { + [sym_cell_path] = STATE(617), + [sym_path] = STATE(595), + [sym_comment] = STATE(414), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1917), [anon_sym_alias] = ACTIONS(1917), [anon_sym_let] = ACTIONS(1917), @@ -128544,7 +131159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1917), [anon_sym_PLUS2] = ACTIONS(1917), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), [aux_sym__val_number_decimal_token1] = ACTIONS(1917), [aux_sym__val_number_decimal_token2] = ACTIONS(1917), @@ -128564,115 +131179,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1919), }, - [414] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(605), - [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [aux_sym_cmd_identifier_token1] = ACTIONS(1921), - [aux_sym_cmd_identifier_token2] = ACTIONS(1921), - [aux_sym_cmd_identifier_token3] = ACTIONS(1921), - [aux_sym_cmd_identifier_token4] = ACTIONS(1921), - [aux_sym_cmd_identifier_token5] = ACTIONS(1921), - [aux_sym_cmd_identifier_token6] = ACTIONS(1921), - [aux_sym_cmd_identifier_token7] = ACTIONS(1921), - [aux_sym_cmd_identifier_token8] = ACTIONS(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1921), - [aux_sym_cmd_identifier_token11] = ACTIONS(1921), - [aux_sym_cmd_identifier_token12] = ACTIONS(1921), - [aux_sym_cmd_identifier_token13] = ACTIONS(1921), - [aux_sym_cmd_identifier_token14] = ACTIONS(1921), - [aux_sym_cmd_identifier_token15] = ACTIONS(1921), - [aux_sym_cmd_identifier_token16] = ACTIONS(1921), - [aux_sym_cmd_identifier_token17] = ACTIONS(1921), - [aux_sym_cmd_identifier_token18] = ACTIONS(1921), - [aux_sym_cmd_identifier_token19] = ACTIONS(1921), - [aux_sym_cmd_identifier_token20] = ACTIONS(1921), - [aux_sym_cmd_identifier_token21] = ACTIONS(1921), - [aux_sym_cmd_identifier_token22] = ACTIONS(1921), - [aux_sym_cmd_identifier_token23] = ACTIONS(1921), - [aux_sym_cmd_identifier_token24] = ACTIONS(1921), - [aux_sym_cmd_identifier_token25] = ACTIONS(1921), - [aux_sym_cmd_identifier_token26] = ACTIONS(1921), - [aux_sym_cmd_identifier_token27] = ACTIONS(1921), - [aux_sym_cmd_identifier_token28] = ACTIONS(1921), - [aux_sym_cmd_identifier_token29] = ACTIONS(1921), - [aux_sym_cmd_identifier_token30] = ACTIONS(1921), - [aux_sym_cmd_identifier_token31] = ACTIONS(1921), - [aux_sym_cmd_identifier_token32] = ACTIONS(1921), - [aux_sym_cmd_identifier_token33] = ACTIONS(1921), - [aux_sym_cmd_identifier_token34] = ACTIONS(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1921), - [aux_sym_cmd_identifier_token36] = ACTIONS(1921), - [aux_sym_cmd_identifier_token37] = ACTIONS(1921), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1921), - [aux_sym_cmd_identifier_token40] = ACTIONS(1921), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in2] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1921), - [aux_sym__val_number_decimal_token3] = ACTIONS(1921), - [aux_sym__val_number_decimal_token4] = ACTIONS(1921), - [aux_sym__val_number_token1] = ACTIONS(1921), - [aux_sym__val_number_token2] = ACTIONS(1921), - [aux_sym__val_number_token3] = ACTIONS(1921), - [aux_sym__val_number_token4] = ACTIONS(1921), - [aux_sym__val_number_token5] = ACTIONS(1921), - [aux_sym__val_number_token6] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), - [sym__entry_separator] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1923), - }, [415] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(605), [sym_comment] = STATE(415), - [aux_sym_cell_path_repeat1] = STATE(489), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1921), + [aux_sym__immediate_decimal_token2] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [416] = { + [sym_cell_path] = STATE(618), + [sym_path] = STATE(595), + [sym_comment] = STATE(416), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1925), [anon_sym_alias] = ACTIONS(1925), [anon_sym_let] = ACTIONS(1925), @@ -128752,7 +131367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1925), [anon_sym_PLUS2] = ACTIONS(1925), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), [aux_sym__val_number_decimal_token1] = ACTIONS(1925), [aux_sym__val_number_decimal_token2] = ACTIONS(1925), @@ -128772,11 +131387,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1927), }, - [416] = { - [sym_cell_path] = STATE(655), - [sym_path] = STATE(605), - [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(489), + [417] = { + [sym_cell_path] = STATE(619), + [sym_path] = STATE(595), + [sym_comment] = STATE(417), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1929), [anon_sym_alias] = ACTIONS(1929), [anon_sym_let] = ACTIONS(1929), @@ -128856,7 +131471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1929), [anon_sym_PLUS2] = ACTIONS(1929), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), [aux_sym__val_number_decimal_token1] = ACTIONS(1929), [aux_sym__val_number_decimal_token2] = ACTIONS(1929), @@ -128876,11 +131491,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1931), }, - [417] = { - [sym_cell_path] = STATE(657), - [sym_path] = STATE(605), - [sym_comment] = STATE(417), - [aux_sym_cell_path_repeat1] = STATE(489), + [418] = { + [sym_cell_path] = STATE(620), + [sym_path] = STATE(595), + [sym_comment] = STATE(418), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1933), [anon_sym_alias] = ACTIONS(1933), [anon_sym_let] = ACTIONS(1933), @@ -128960,7 +131575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1933), [anon_sym_PLUS2] = ACTIONS(1933), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), [aux_sym__val_number_decimal_token1] = ACTIONS(1933), [aux_sym__val_number_decimal_token2] = ACTIONS(1933), @@ -128980,11 +131595,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1935), }, - [418] = { - [sym_cell_path] = STATE(610), - [sym_path] = STATE(605), - [sym_comment] = STATE(418), - [aux_sym_cell_path_repeat1] = STATE(489), + [419] = { + [sym_cell_path] = STATE(621), + [sym_path] = STATE(595), + [sym_comment] = STATE(419), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1937), [anon_sym_alias] = ACTIONS(1937), [anon_sym_let] = ACTIONS(1937), @@ -129064,7 +131679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1937), [anon_sym_PLUS2] = ACTIONS(1937), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), [aux_sym__val_number_decimal_token1] = ACTIONS(1937), [aux_sym__val_number_decimal_token2] = ACTIONS(1937), @@ -129084,11 +131699,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1939), }, - [419] = { - [sym_cell_path] = STATE(658), - [sym_path] = STATE(605), - [sym_comment] = STATE(419), - [aux_sym_cell_path_repeat1] = STATE(489), + [420] = { + [sym_path] = STATE(529), + [sym_comment] = STATE(420), + [aux_sym_cell_path_repeat1] = STATE(448), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [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(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [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(982), + [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(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_register] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(1852), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [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), + [aux_sym_record_entry_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), + }, + [421] = { + [sym_cell_path] = STATE(678), + [sym_path] = STATE(595), + [sym_comment] = STATE(421), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1941), [anon_sym_alias] = ACTIONS(1941), [anon_sym_let] = ACTIONS(1941), @@ -129168,7 +131887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1941), [anon_sym_PLUS2] = ACTIONS(1941), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), [aux_sym__val_number_decimal_token1] = ACTIONS(1941), [aux_sym__val_number_decimal_token2] = ACTIONS(1941), @@ -129188,11 +131907,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1943), }, - [420] = { - [sym_cell_path] = STATE(659), - [sym_path] = STATE(605), - [sym_comment] = STATE(420), - [aux_sym_cell_path_repeat1] = STATE(489), + [422] = { + [sym_cell_path] = STATE(608), + [sym_path] = STATE(595), + [sym_comment] = STATE(422), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1945), [anon_sym_alias] = ACTIONS(1945), [anon_sym_let] = ACTIONS(1945), @@ -129272,7 +131991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1945), [anon_sym_PLUS2] = ACTIONS(1945), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), [aux_sym__val_number_decimal_token1] = ACTIONS(1945), [aux_sym__val_number_decimal_token2] = ACTIONS(1945), @@ -129292,11 +132011,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1947), }, - [421] = { - [sym_cell_path] = STATE(660), - [sym_path] = STATE(605), - [sym_comment] = STATE(421), - [aux_sym_cell_path_repeat1] = STATE(489), + [423] = { + [sym_cell_path] = STATE(656), + [sym_path] = STATE(595), + [sym_comment] = STATE(423), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1949), [anon_sym_alias] = ACTIONS(1949), [anon_sym_let] = ACTIONS(1949), @@ -129376,7 +132095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1949), [anon_sym_PLUS2] = ACTIONS(1949), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), [aux_sym__val_number_decimal_token1] = ACTIONS(1949), [aux_sym__val_number_decimal_token2] = ACTIONS(1949), @@ -129396,11 +132115,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1951), }, - [422] = { - [sym_cell_path] = STATE(662), - [sym_path] = STATE(605), - [sym_comment] = STATE(422), - [aux_sym_cell_path_repeat1] = STATE(489), + [424] = { + [sym_cell_path] = STATE(664), + [sym_path] = STATE(595), + [sym_comment] = STATE(424), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(969), + [anon_sym_alias] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_let_DASHenv] = ACTIONS(969), + [anon_sym_mut] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [aux_sym_cmd_identifier_token1] = ACTIONS(969), + [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(969), + [aux_sym_cmd_identifier_token9] = ACTIONS(969), + [aux_sym_cmd_identifier_token10] = ACTIONS(969), + [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token12] = ACTIONS(969), + [aux_sym_cmd_identifier_token13] = ACTIONS(969), + [aux_sym_cmd_identifier_token14] = ACTIONS(969), + [aux_sym_cmd_identifier_token15] = ACTIONS(969), + [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(969), + [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(969), + [aux_sym_cmd_identifier_token39] = ACTIONS(969), + [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [anon_sym_def] = ACTIONS(969), + [anon_sym_export_DASHenv] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_error] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_make] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_try] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_source] = ACTIONS(969), + [anon_sym_source_DASHenv] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_hide_DASHenv] = ACTIONS(969), + [anon_sym_overlay] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), + [sym__entry_separator] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(971), + }, + [425] = { + [sym_cell_path] = STATE(675), + [sym_path] = STATE(595), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1953), [anon_sym_alias] = ACTIONS(1953), [anon_sym_let] = ACTIONS(1953), @@ -129480,7 +132303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1953), [anon_sym_PLUS2] = ACTIONS(1953), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), [aux_sym__val_number_decimal_token1] = ACTIONS(1953), [aux_sym__val_number_decimal_token2] = ACTIONS(1953), @@ -129500,115 +132323,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1955), }, - [423] = { - [sym_comment] = STATE(423), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [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(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [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(1000), - [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(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [424] = { - [sym_cell_path] = STATE(664), - [sym_path] = STATE(605), - [sym_comment] = STATE(424), - [aux_sym_cell_path_repeat1] = STATE(489), + [426] = { + [sym_cell_path] = STATE(687), + [sym_path] = STATE(595), + [sym_comment] = STATE(426), + [aux_sym_cell_path_repeat1] = STATE(470), [anon_sym_export] = ACTIONS(1957), [anon_sym_alias] = ACTIONS(1957), [anon_sym_let] = ACTIONS(1957), @@ -129688,7 +132407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1957), [anon_sym_PLUS2] = ACTIONS(1957), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), [aux_sym__val_number_decimal_token1] = ACTIONS(1957), [aux_sym__val_number_decimal_token2] = ACTIONS(1957), @@ -129708,1256 +132427,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1959), }, - [425] = { - [sym_cell_path] = STATE(665), - [sym_path] = STATE(605), - [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [aux_sym_cmd_identifier_token37] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in2] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_PLUS2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [aux_sym__val_number_token4] = ACTIONS(1961), - [aux_sym__val_number_token5] = ACTIONS(1961), - [aux_sym__val_number_token6] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [sym__entry_separator] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1963), - }, - [426] = { - [sym_cell_path] = STATE(667), - [sym_path] = STATE(605), - [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [aux_sym_cmd_identifier_token37] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [sym__entry_separator] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1967), - }, [427] = { - [sym_cell_path] = STATE(668), - [sym_path] = STATE(605), [sym_comment] = STATE(427), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [aux_sym_cmd_identifier_token37] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1969), - [aux_sym_cmd_identifier_token40] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), - [sym__entry_separator] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1008), + [anon_sym_alias] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_let_DASHenv] = ACTIONS(1008), + [anon_sym_mut] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [aux_sym_cmd_identifier_token1] = ACTIONS(1008), + [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(1008), + [aux_sym_cmd_identifier_token9] = ACTIONS(1008), + [aux_sym_cmd_identifier_token10] = ACTIONS(1010), + [aux_sym_cmd_identifier_token11] = ACTIONS(1010), + [aux_sym_cmd_identifier_token12] = ACTIONS(1008), + [aux_sym_cmd_identifier_token13] = ACTIONS(1008), + [aux_sym_cmd_identifier_token14] = ACTIONS(1008), + [aux_sym_cmd_identifier_token15] = ACTIONS(1008), + [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(1008), + [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(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1010), + [aux_sym_cmd_identifier_token40] = ACTIONS(1010), + [anon_sym_def] = ACTIONS(1008), + [anon_sym_export_DASHenv] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym_module] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_make] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_catch] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_source] = ACTIONS(1008), + [anon_sym_source_DASHenv] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_hide] = ACTIONS(1008), + [anon_sym_hide_DASHenv] = ACTIONS(1008), + [anon_sym_overlay] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(1961), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [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(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1010), }, [428] = { - [sym_expr_parenthesized] = STATE(4304), - [sym__spread_parenthesized] = STATE(4743), - [sym_val_range] = STATE(4744), - [sym__val_range] = STATE(7850), - [sym__val_range_with_end] = STATE(7616), - [sym__value] = STATE(4744), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(4451), - [sym__spread_variable] = STATE(4745), - [sym_val_variable] = STATE(4233), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(4046), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym__spread_list] = STATE(4743), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym__cmd_arg] = STATE(4746), - [sym_redirection] = STATE(4747), - [sym_short_flag] = STATE(4749), - [sym_long_flag] = STATE(4749), - [sym_unquoted] = STATE(4472), - [sym__unquoted_with_expr] = STATE(4759), - [sym__unquoted_anonymous_prefix] = STATE(7251), [sym_comment] = STATE(428), - [sym__newline] = ACTIONS(1973), - [sym__space] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_DOT_DOT_LT] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2001), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2005), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2025), - [anon_sym_err_GT] = ACTIONS(2027), - [anon_sym_out_GT] = ACTIONS(2027), - [anon_sym_e_GT] = ACTIONS(2027), - [anon_sym_o_GT] = ACTIONS(2027), - [anon_sym_err_PLUSout_GT] = ACTIONS(2027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2027), - [anon_sym_o_PLUSe_GT] = ACTIONS(2027), - [anon_sym_e_PLUSo_GT] = ACTIONS(2027), - [anon_sym_err_GT_GT] = ACTIONS(2027), - [anon_sym_out_GT_GT] = ACTIONS(2027), - [anon_sym_e_GT_GT] = ACTIONS(2027), - [anon_sym_o_GT_GT] = ACTIONS(2027), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2027), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2027), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2027), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2027), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2031), - }, - [429] = { - [sym_path] = STATE(528), - [sym_comment] = STATE(429), - [aux_sym_cell_path_repeat1] = STATE(430), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [430] = { - [sym_path] = STATE(528), - [sym_comment] = STATE(430), - [aux_sym_cell_path_repeat1] = STATE(430), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [aux_sym_cmd_identifier_token1] = ACTIONS(979), - [aux_sym_cmd_identifier_token2] = ACTIONS(981), - [aux_sym_cmd_identifier_token3] = ACTIONS(981), - [aux_sym_cmd_identifier_token4] = ACTIONS(981), - [aux_sym_cmd_identifier_token5] = ACTIONS(981), - [aux_sym_cmd_identifier_token6] = ACTIONS(981), - [aux_sym_cmd_identifier_token7] = ACTIONS(981), - [aux_sym_cmd_identifier_token8] = ACTIONS(979), - [aux_sym_cmd_identifier_token9] = ACTIONS(979), - [aux_sym_cmd_identifier_token10] = ACTIONS(981), - [aux_sym_cmd_identifier_token11] = ACTIONS(981), - [aux_sym_cmd_identifier_token12] = ACTIONS(979), - [aux_sym_cmd_identifier_token13] = ACTIONS(979), - [aux_sym_cmd_identifier_token14] = ACTIONS(979), - [aux_sym_cmd_identifier_token15] = ACTIONS(979), - [aux_sym_cmd_identifier_token16] = ACTIONS(981), - [aux_sym_cmd_identifier_token17] = ACTIONS(981), - [aux_sym_cmd_identifier_token18] = ACTIONS(981), - [aux_sym_cmd_identifier_token19] = ACTIONS(981), - [aux_sym_cmd_identifier_token20] = ACTIONS(981), - [aux_sym_cmd_identifier_token21] = ACTIONS(981), - [aux_sym_cmd_identifier_token22] = ACTIONS(981), - [aux_sym_cmd_identifier_token23] = ACTIONS(981), - [aux_sym_cmd_identifier_token24] = ACTIONS(981), - [aux_sym_cmd_identifier_token25] = ACTIONS(981), - [aux_sym_cmd_identifier_token26] = ACTIONS(981), - [aux_sym_cmd_identifier_token27] = ACTIONS(981), - [aux_sym_cmd_identifier_token28] = ACTIONS(981), - [aux_sym_cmd_identifier_token29] = ACTIONS(981), - [aux_sym_cmd_identifier_token30] = ACTIONS(981), - [aux_sym_cmd_identifier_token31] = ACTIONS(981), - [aux_sym_cmd_identifier_token32] = ACTIONS(981), - [aux_sym_cmd_identifier_token33] = ACTIONS(981), - [aux_sym_cmd_identifier_token34] = ACTIONS(979), - [aux_sym_cmd_identifier_token35] = ACTIONS(981), - [aux_sym_cmd_identifier_token36] = ACTIONS(981), - [aux_sym_cmd_identifier_token37] = ACTIONS(981), - [aux_sym_cmd_identifier_token38] = ACTIONS(979), - [aux_sym_cmd_identifier_token39] = ACTIONS(981), - [aux_sym_cmd_identifier_token40] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(981), - [aux_sym_record_entry_token1] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), - }, - [431] = { - [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [432] = { - [sym_cell_path] = STATE(675), - [sym_path] = STATE(605), - [sym_comment] = STATE(432), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(2036), - [anon_sym_alias] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_let_DASHenv] = ACTIONS(2036), - [anon_sym_mut] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [aux_sym_cmd_identifier_token1] = ACTIONS(2036), - [aux_sym_cmd_identifier_token2] = ACTIONS(2036), - [aux_sym_cmd_identifier_token3] = ACTIONS(2036), - [aux_sym_cmd_identifier_token4] = ACTIONS(2036), - [aux_sym_cmd_identifier_token5] = ACTIONS(2036), - [aux_sym_cmd_identifier_token6] = ACTIONS(2036), - [aux_sym_cmd_identifier_token7] = ACTIONS(2036), - [aux_sym_cmd_identifier_token8] = ACTIONS(2036), - [aux_sym_cmd_identifier_token9] = ACTIONS(2036), - [aux_sym_cmd_identifier_token10] = ACTIONS(2036), - [aux_sym_cmd_identifier_token11] = ACTIONS(2036), - [aux_sym_cmd_identifier_token12] = ACTIONS(2036), - [aux_sym_cmd_identifier_token13] = ACTIONS(2036), - [aux_sym_cmd_identifier_token14] = ACTIONS(2036), - [aux_sym_cmd_identifier_token15] = ACTIONS(2036), - [aux_sym_cmd_identifier_token16] = ACTIONS(2036), - [aux_sym_cmd_identifier_token17] = ACTIONS(2036), - [aux_sym_cmd_identifier_token18] = ACTIONS(2036), - [aux_sym_cmd_identifier_token19] = ACTIONS(2036), - [aux_sym_cmd_identifier_token20] = ACTIONS(2036), - [aux_sym_cmd_identifier_token21] = ACTIONS(2036), - [aux_sym_cmd_identifier_token22] = ACTIONS(2036), - [aux_sym_cmd_identifier_token23] = ACTIONS(2036), - [aux_sym_cmd_identifier_token24] = ACTIONS(2036), - [aux_sym_cmd_identifier_token25] = ACTIONS(2036), - [aux_sym_cmd_identifier_token26] = ACTIONS(2036), - [aux_sym_cmd_identifier_token27] = ACTIONS(2036), - [aux_sym_cmd_identifier_token28] = ACTIONS(2036), - [aux_sym_cmd_identifier_token29] = ACTIONS(2036), - [aux_sym_cmd_identifier_token30] = ACTIONS(2036), - [aux_sym_cmd_identifier_token31] = ACTIONS(2036), - [aux_sym_cmd_identifier_token32] = ACTIONS(2036), - [aux_sym_cmd_identifier_token33] = ACTIONS(2036), - [aux_sym_cmd_identifier_token34] = ACTIONS(2036), - [aux_sym_cmd_identifier_token35] = ACTIONS(2036), - [aux_sym_cmd_identifier_token36] = ACTIONS(2036), - [aux_sym_cmd_identifier_token37] = ACTIONS(2036), - [aux_sym_cmd_identifier_token38] = ACTIONS(2036), - [aux_sym_cmd_identifier_token39] = ACTIONS(2036), - [aux_sym_cmd_identifier_token40] = ACTIONS(2036), - [anon_sym_def] = ACTIONS(2036), - [anon_sym_export_DASHenv] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_module] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [anon_sym_error] = ACTIONS(2036), - [anon_sym_DASH2] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_in2] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_make] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_do] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_else] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [anon_sym_catch] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_source] = ACTIONS(2036), - [anon_sym_source_DASHenv] = ACTIONS(2036), - [anon_sym_register] = ACTIONS(2036), - [anon_sym_hide] = ACTIONS(2036), - [anon_sym_hide_DASHenv] = ACTIONS(2036), - [anon_sym_overlay] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_PLUS2] = ACTIONS(2036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), - [aux_sym__val_number_decimal_token1] = ACTIONS(2036), - [aux_sym__val_number_decimal_token2] = ACTIONS(2036), - [aux_sym__val_number_decimal_token3] = ACTIONS(2036), - [aux_sym__val_number_decimal_token4] = ACTIONS(2036), - [aux_sym__val_number_token1] = ACTIONS(2036), - [aux_sym__val_number_token2] = ACTIONS(2036), - [aux_sym__val_number_token3] = ACTIONS(2036), - [aux_sym__val_number_token4] = ACTIONS(2036), - [aux_sym__val_number_token5] = ACTIONS(2036), - [aux_sym__val_number_token6] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym__str_single_quotes] = ACTIONS(2036), - [sym__str_back_ticks] = ACTIONS(2036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), - [sym__entry_separator] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2038), - }, - [433] = { - [sym_cell_path] = STATE(676), - [sym_path] = STATE(605), - [sym_comment] = STATE(433), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(2040), - [anon_sym_alias] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_let_DASHenv] = ACTIONS(2040), - [anon_sym_mut] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [aux_sym_cmd_identifier_token1] = ACTIONS(2040), - [aux_sym_cmd_identifier_token2] = ACTIONS(2040), - [aux_sym_cmd_identifier_token3] = ACTIONS(2040), - [aux_sym_cmd_identifier_token4] = ACTIONS(2040), - [aux_sym_cmd_identifier_token5] = ACTIONS(2040), - [aux_sym_cmd_identifier_token6] = ACTIONS(2040), - [aux_sym_cmd_identifier_token7] = ACTIONS(2040), - [aux_sym_cmd_identifier_token8] = ACTIONS(2040), - [aux_sym_cmd_identifier_token9] = ACTIONS(2040), - [aux_sym_cmd_identifier_token10] = ACTIONS(2040), - [aux_sym_cmd_identifier_token11] = ACTIONS(2040), - [aux_sym_cmd_identifier_token12] = ACTIONS(2040), - [aux_sym_cmd_identifier_token13] = ACTIONS(2040), - [aux_sym_cmd_identifier_token14] = ACTIONS(2040), - [aux_sym_cmd_identifier_token15] = ACTIONS(2040), - [aux_sym_cmd_identifier_token16] = ACTIONS(2040), - [aux_sym_cmd_identifier_token17] = ACTIONS(2040), - [aux_sym_cmd_identifier_token18] = ACTIONS(2040), - [aux_sym_cmd_identifier_token19] = ACTIONS(2040), - [aux_sym_cmd_identifier_token20] = ACTIONS(2040), - [aux_sym_cmd_identifier_token21] = ACTIONS(2040), - [aux_sym_cmd_identifier_token22] = ACTIONS(2040), - [aux_sym_cmd_identifier_token23] = ACTIONS(2040), - [aux_sym_cmd_identifier_token24] = ACTIONS(2040), - [aux_sym_cmd_identifier_token25] = ACTIONS(2040), - [aux_sym_cmd_identifier_token26] = ACTIONS(2040), - [aux_sym_cmd_identifier_token27] = ACTIONS(2040), - [aux_sym_cmd_identifier_token28] = ACTIONS(2040), - [aux_sym_cmd_identifier_token29] = ACTIONS(2040), - [aux_sym_cmd_identifier_token30] = ACTIONS(2040), - [aux_sym_cmd_identifier_token31] = ACTIONS(2040), - [aux_sym_cmd_identifier_token32] = ACTIONS(2040), - [aux_sym_cmd_identifier_token33] = ACTIONS(2040), - [aux_sym_cmd_identifier_token34] = ACTIONS(2040), - [aux_sym_cmd_identifier_token35] = ACTIONS(2040), - [aux_sym_cmd_identifier_token36] = ACTIONS(2040), - [aux_sym_cmd_identifier_token37] = ACTIONS(2040), - [aux_sym_cmd_identifier_token38] = ACTIONS(2040), - [aux_sym_cmd_identifier_token39] = ACTIONS(2040), - [aux_sym_cmd_identifier_token40] = ACTIONS(2040), - [anon_sym_def] = ACTIONS(2040), - [anon_sym_export_DASHenv] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_module] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(2040), - [anon_sym_error] = ACTIONS(2040), - [anon_sym_DASH2] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_in2] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_make] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [anon_sym_catch] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_source] = ACTIONS(2040), - [anon_sym_source_DASHenv] = ACTIONS(2040), - [anon_sym_register] = ACTIONS(2040), - [anon_sym_hide] = ACTIONS(2040), - [anon_sym_hide_DASHenv] = ACTIONS(2040), - [anon_sym_overlay] = ACTIONS(2040), - [anon_sym_as] = ACTIONS(2040), - [anon_sym_PLUS2] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2040), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2040), - [aux_sym__val_number_decimal_token1] = ACTIONS(2040), - [aux_sym__val_number_decimal_token2] = ACTIONS(2040), - [aux_sym__val_number_decimal_token3] = ACTIONS(2040), - [aux_sym__val_number_decimal_token4] = ACTIONS(2040), - [aux_sym__val_number_token1] = ACTIONS(2040), - [aux_sym__val_number_token2] = ACTIONS(2040), - [aux_sym__val_number_token3] = ACTIONS(2040), - [aux_sym__val_number_token4] = ACTIONS(2040), - [aux_sym__val_number_token5] = ACTIONS(2040), - [aux_sym__val_number_token6] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym__str_single_quotes] = ACTIONS(2040), - [sym__str_back_ticks] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2040), - [sym__entry_separator] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2042), - }, - [434] = { - [sym_cell_path] = STATE(682), - [sym_path] = STATE(605), - [sym_comment] = STATE(434), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(973), - [anon_sym_alias] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_let_DASHenv] = ACTIONS(973), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [aux_sym_cmd_identifier_token1] = ACTIONS(973), - [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(973), - [aux_sym_cmd_identifier_token9] = ACTIONS(973), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(973), - [aux_sym_cmd_identifier_token13] = ACTIONS(973), - [aux_sym_cmd_identifier_token14] = ACTIONS(973), - [aux_sym_cmd_identifier_token15] = ACTIONS(973), - [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(973), - [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(973), - [aux_sym_cmd_identifier_token39] = ACTIONS(973), - [aux_sym_cmd_identifier_token40] = ACTIONS(973), - [anon_sym_def] = ACTIONS(973), - [anon_sym_export_DASHenv] = ACTIONS(973), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_error] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_make] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_try] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_source] = ACTIONS(973), - [anon_sym_source_DASHenv] = ACTIONS(973), - [anon_sym_register] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_hide_DASHenv] = ACTIONS(973), - [anon_sym_overlay] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [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_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(973), - [sym__entry_separator] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(975), - }, - [435] = { - [sym_cell_path] = STATE(677), - [sym_path] = STATE(605), - [sym_comment] = STATE(435), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(2044), - [anon_sym_alias] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_let_DASHenv] = ACTIONS(2044), - [anon_sym_mut] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [aux_sym_cmd_identifier_token1] = ACTIONS(2044), - [aux_sym_cmd_identifier_token2] = ACTIONS(2044), - [aux_sym_cmd_identifier_token3] = ACTIONS(2044), - [aux_sym_cmd_identifier_token4] = ACTIONS(2044), - [aux_sym_cmd_identifier_token5] = ACTIONS(2044), - [aux_sym_cmd_identifier_token6] = ACTIONS(2044), - [aux_sym_cmd_identifier_token7] = ACTIONS(2044), - [aux_sym_cmd_identifier_token8] = ACTIONS(2044), - [aux_sym_cmd_identifier_token9] = ACTIONS(2044), - [aux_sym_cmd_identifier_token10] = ACTIONS(2044), - [aux_sym_cmd_identifier_token11] = ACTIONS(2044), - [aux_sym_cmd_identifier_token12] = ACTIONS(2044), - [aux_sym_cmd_identifier_token13] = ACTIONS(2044), - [aux_sym_cmd_identifier_token14] = ACTIONS(2044), - [aux_sym_cmd_identifier_token15] = ACTIONS(2044), - [aux_sym_cmd_identifier_token16] = ACTIONS(2044), - [aux_sym_cmd_identifier_token17] = ACTIONS(2044), - [aux_sym_cmd_identifier_token18] = ACTIONS(2044), - [aux_sym_cmd_identifier_token19] = ACTIONS(2044), - [aux_sym_cmd_identifier_token20] = ACTIONS(2044), - [aux_sym_cmd_identifier_token21] = ACTIONS(2044), - [aux_sym_cmd_identifier_token22] = ACTIONS(2044), - [aux_sym_cmd_identifier_token23] = ACTIONS(2044), - [aux_sym_cmd_identifier_token24] = ACTIONS(2044), - [aux_sym_cmd_identifier_token25] = ACTIONS(2044), - [aux_sym_cmd_identifier_token26] = ACTIONS(2044), - [aux_sym_cmd_identifier_token27] = ACTIONS(2044), - [aux_sym_cmd_identifier_token28] = ACTIONS(2044), - [aux_sym_cmd_identifier_token29] = ACTIONS(2044), - [aux_sym_cmd_identifier_token30] = ACTIONS(2044), - [aux_sym_cmd_identifier_token31] = ACTIONS(2044), - [aux_sym_cmd_identifier_token32] = ACTIONS(2044), - [aux_sym_cmd_identifier_token33] = ACTIONS(2044), - [aux_sym_cmd_identifier_token34] = ACTIONS(2044), - [aux_sym_cmd_identifier_token35] = ACTIONS(2044), - [aux_sym_cmd_identifier_token36] = ACTIONS(2044), - [aux_sym_cmd_identifier_token37] = ACTIONS(2044), - [aux_sym_cmd_identifier_token38] = ACTIONS(2044), - [aux_sym_cmd_identifier_token39] = ACTIONS(2044), - [aux_sym_cmd_identifier_token40] = ACTIONS(2044), - [anon_sym_def] = ACTIONS(2044), - [anon_sym_export_DASHenv] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_module] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_error] = ACTIONS(2044), - [anon_sym_DASH2] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_in2] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_make] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_do] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_else] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [anon_sym_catch] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_source] = ACTIONS(2044), - [anon_sym_source_DASHenv] = ACTIONS(2044), - [anon_sym_register] = ACTIONS(2044), - [anon_sym_hide] = ACTIONS(2044), - [anon_sym_hide_DASHenv] = ACTIONS(2044), - [anon_sym_overlay] = ACTIONS(2044), - [anon_sym_as] = ACTIONS(2044), - [anon_sym_PLUS2] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2044), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2044), - [aux_sym__val_number_decimal_token2] = ACTIONS(2044), - [aux_sym__val_number_decimal_token3] = ACTIONS(2044), - [aux_sym__val_number_decimal_token4] = ACTIONS(2044), - [aux_sym__val_number_token1] = ACTIONS(2044), - [aux_sym__val_number_token2] = ACTIONS(2044), - [aux_sym__val_number_token3] = ACTIONS(2044), - [aux_sym__val_number_token4] = ACTIONS(2044), - [aux_sym__val_number_token5] = ACTIONS(2044), - [aux_sym__val_number_token6] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2044), - [sym__str_single_quotes] = ACTIONS(2044), - [sym__str_back_ticks] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2044), - [sym__entry_separator] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2046), - }, - [436] = { - [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(2048), - [aux_sym__immediate_decimal_token2] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [437] = { - [sym_comment] = STATE(437), [anon_sym_export] = ACTIONS(990), [anon_sym_alias] = ACTIONS(990), [anon_sym_let] = ACTIONS(990), @@ -131035,7 +132610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(990), [anon_sym_overlay] = ACTIONS(990), [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(2052), + [anon_sym_QMARK2] = ACTIONS(1963), [anon_sym_PLUS2] = ACTIONS(990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), [anon_sym_DOT_DOT2] = ACTIONS(990), @@ -131060,320 +132635,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(992), }, - [438] = { - [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_alias] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_let_DASHenv] = ACTIONS(1012), - [anon_sym_mut] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [aux_sym_cmd_identifier_token1] = ACTIONS(1012), - [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(1012), - [aux_sym_cmd_identifier_token9] = ACTIONS(1012), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1012), - [aux_sym_cmd_identifier_token13] = ACTIONS(1012), - [aux_sym_cmd_identifier_token14] = ACTIONS(1012), - [aux_sym_cmd_identifier_token15] = ACTIONS(1012), - [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(1012), - [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(1012), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1012), - [anon_sym_export_DASHenv] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_make] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_catch] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_source] = ACTIONS(1012), - [anon_sym_source_DASHenv] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_hide] = ACTIONS(1012), - [anon_sym_hide_DASHenv] = ACTIONS(1012), - [anon_sym_overlay] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(2054), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), - }, - [439] = { - [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [aux_sym_cmd_identifier_token37] = ACTIONS(1851), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in2] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT_DOT2] = ACTIONS(2056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1851), - }, - [440] = { - [sym_comment] = STATE(440), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1026), - [aux_sym_cmd_identifier_token3] = ACTIONS(1026), - [aux_sym_cmd_identifier_token4] = ACTIONS(1026), - [aux_sym_cmd_identifier_token5] = ACTIONS(1026), - [aux_sym_cmd_identifier_token6] = ACTIONS(1026), - [aux_sym_cmd_identifier_token7] = ACTIONS(1026), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1026), - [aux_sym_cmd_identifier_token11] = ACTIONS(1026), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1026), - [aux_sym_cmd_identifier_token17] = ACTIONS(1026), - [aux_sym_cmd_identifier_token18] = ACTIONS(1026), - [aux_sym_cmd_identifier_token19] = ACTIONS(1026), - [aux_sym_cmd_identifier_token20] = ACTIONS(1026), - [aux_sym_cmd_identifier_token21] = ACTIONS(1026), - [aux_sym_cmd_identifier_token22] = ACTIONS(1026), - [aux_sym_cmd_identifier_token23] = ACTIONS(1026), - [aux_sym_cmd_identifier_token24] = ACTIONS(1026), - [aux_sym_cmd_identifier_token25] = ACTIONS(1026), - [aux_sym_cmd_identifier_token26] = ACTIONS(1026), - [aux_sym_cmd_identifier_token27] = ACTIONS(1026), - [aux_sym_cmd_identifier_token28] = ACTIONS(1026), - [aux_sym_cmd_identifier_token29] = ACTIONS(1026), - [aux_sym_cmd_identifier_token30] = ACTIONS(1026), - [aux_sym_cmd_identifier_token31] = ACTIONS(1026), - [aux_sym_cmd_identifier_token32] = ACTIONS(1026), - [aux_sym_cmd_identifier_token33] = ACTIONS(1026), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1026), - [aux_sym_cmd_identifier_token36] = ACTIONS(1026), - [aux_sym_cmd_identifier_token37] = ACTIONS(1026), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1026), - [aux_sym_cmd_identifier_token40] = ACTIONS(1026), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym__str_single_quotes] = ACTIONS(1026), - [sym__str_back_ticks] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), - [sym__entry_separator] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), - }, - [441] = { - [sym_comment] = STATE(441), + [429] = { + [sym_comment] = STATE(429), [anon_sym_export] = ACTIONS(1022), [anon_sym_alias] = ACTIONS(1022), [anon_sym_let] = ACTIONS(1022), @@ -131476,8 +132739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1024), }, - [442] = { - [sym_comment] = STATE(442), + [430] = { + [sym_comment] = STATE(430), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -131580,632 +132843,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1020), }, - [443] = { - [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [444] = { - [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(1828), - [anon_sym_alias] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_let_DASHenv] = ACTIONS(1828), - [anon_sym_mut] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [aux_sym_cmd_identifier_token1] = ACTIONS(1828), - [aux_sym_cmd_identifier_token2] = ACTIONS(1836), - [aux_sym_cmd_identifier_token3] = ACTIONS(1836), - [aux_sym_cmd_identifier_token4] = ACTIONS(1836), - [aux_sym_cmd_identifier_token5] = ACTIONS(1836), - [aux_sym_cmd_identifier_token6] = ACTIONS(1836), - [aux_sym_cmd_identifier_token7] = ACTIONS(1836), - [aux_sym_cmd_identifier_token8] = ACTIONS(1828), - [aux_sym_cmd_identifier_token9] = ACTIONS(1828), - [aux_sym_cmd_identifier_token10] = ACTIONS(1836), - [aux_sym_cmd_identifier_token11] = ACTIONS(1836), - [aux_sym_cmd_identifier_token12] = ACTIONS(1828), - [aux_sym_cmd_identifier_token13] = ACTIONS(1828), - [aux_sym_cmd_identifier_token14] = ACTIONS(1828), - [aux_sym_cmd_identifier_token15] = ACTIONS(1828), - [aux_sym_cmd_identifier_token16] = ACTIONS(1836), - [aux_sym_cmd_identifier_token17] = ACTIONS(1836), - [aux_sym_cmd_identifier_token18] = ACTIONS(1836), - [aux_sym_cmd_identifier_token19] = ACTIONS(1836), - [aux_sym_cmd_identifier_token20] = ACTIONS(1836), - [aux_sym_cmd_identifier_token21] = ACTIONS(1836), - [aux_sym_cmd_identifier_token22] = ACTIONS(1836), - [aux_sym_cmd_identifier_token23] = ACTIONS(1836), - [aux_sym_cmd_identifier_token24] = ACTIONS(1836), - [aux_sym_cmd_identifier_token25] = ACTIONS(1836), - [aux_sym_cmd_identifier_token26] = ACTIONS(1836), - [aux_sym_cmd_identifier_token27] = ACTIONS(1836), - [aux_sym_cmd_identifier_token28] = ACTIONS(1836), - [aux_sym_cmd_identifier_token29] = ACTIONS(1836), - [aux_sym_cmd_identifier_token30] = ACTIONS(1836), - [aux_sym_cmd_identifier_token31] = ACTIONS(1836), - [aux_sym_cmd_identifier_token32] = ACTIONS(1836), - [aux_sym_cmd_identifier_token33] = ACTIONS(1836), - [aux_sym_cmd_identifier_token34] = ACTIONS(1828), - [aux_sym_cmd_identifier_token35] = ACTIONS(1836), - [aux_sym_cmd_identifier_token36] = ACTIONS(1836), - [aux_sym_cmd_identifier_token37] = ACTIONS(1836), - [aux_sym_cmd_identifier_token38] = ACTIONS(1828), - [aux_sym_cmd_identifier_token39] = ACTIONS(1836), - [aux_sym_cmd_identifier_token40] = ACTIONS(1836), - [anon_sym_def] = ACTIONS(1828), - [anon_sym_export_DASHenv] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_module] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_error] = ACTIONS(1828), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_in2] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_make] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_do] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1828), - [anon_sym_catch] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_source] = ACTIONS(1828), - [anon_sym_source_DASHenv] = ACTIONS(1828), - [anon_sym_register] = ACTIONS(1828), - [anon_sym_hide] = ACTIONS(1828), - [anon_sym_hide_DASHenv] = ACTIONS(1828), - [anon_sym_overlay] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_PLUS2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1836), - [anon_sym_DOT_DOT2] = ACTIONS(2060), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2062), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2062), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1836), - [aux_sym__val_number_decimal_token3] = ACTIONS(1836), - [aux_sym__val_number_decimal_token4] = ACTIONS(1836), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__str_single_quotes] = ACTIONS(1836), - [sym__str_back_ticks] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1836), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1836), - }, - [445] = { - [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [431] = { + [sym_comment] = STATE(431), + [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), }, - [446] = { - [sym_comment] = STATE(446), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), + [432] = { + [sym_comment] = STATE(432), + [anon_sym_export] = ACTIONS(1000), + [anon_sym_alias] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_let_DASHenv] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [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(1000), + [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1000), + [aux_sym_cmd_identifier_token13] = ACTIONS(1000), + [aux_sym_cmd_identifier_token14] = ACTIONS(1000), + [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [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(1000), + [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(1000), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1000), + [anon_sym_export_DASHenv] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_use] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_loop] = ACTIONS(1000), + [anon_sym_make] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_source] = ACTIONS(1000), + [anon_sym_source_DASHenv] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_hide_DASHenv] = ACTIONS(1000), + [anon_sym_overlay] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [447] = { - [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [aux_sym_cmd_identifier_token37] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), + [sym_raw_string_begin] = ACTIONS(1002), }, - [448] = { - [sym_comment] = STATE(448), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [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(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [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(1008), - [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(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [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), + [433] = { + [sym_comment] = STATE(433), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [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(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [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(1004), + [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(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_QMARK2] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [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(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [sym_raw_string_begin] = ACTIONS(1006), }, - [449] = { - [sym_comment] = STATE(449), + [434] = { + [sym_comment] = STATE(434), [anon_sym_export] = ACTIONS(996), [anon_sym_alias] = ACTIONS(996), [anon_sym_let] = ACTIONS(996), @@ -132308,321 +133259,1673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(998), }, - [450] = { - [sym_cell_path] = STATE(663), - [sym_path] = STATE(605), - [sym_comment] = STATE(450), - [aux_sym_cell_path_repeat1] = STATE(489), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2064), - [aux_sym_cmd_identifier_token3] = ACTIONS(2064), - [aux_sym_cmd_identifier_token4] = ACTIONS(2064), - [aux_sym_cmd_identifier_token5] = ACTIONS(2064), - [aux_sym_cmd_identifier_token6] = ACTIONS(2064), - [aux_sym_cmd_identifier_token7] = ACTIONS(2064), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2064), - [aux_sym_cmd_identifier_token11] = ACTIONS(2064), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2064), - [aux_sym_cmd_identifier_token17] = ACTIONS(2064), - [aux_sym_cmd_identifier_token18] = ACTIONS(2064), - [aux_sym_cmd_identifier_token19] = ACTIONS(2064), - [aux_sym_cmd_identifier_token20] = ACTIONS(2064), - [aux_sym_cmd_identifier_token21] = ACTIONS(2064), - [aux_sym_cmd_identifier_token22] = ACTIONS(2064), - [aux_sym_cmd_identifier_token23] = ACTIONS(2064), - [aux_sym_cmd_identifier_token24] = ACTIONS(2064), - [aux_sym_cmd_identifier_token25] = ACTIONS(2064), - [aux_sym_cmd_identifier_token26] = ACTIONS(2064), - [aux_sym_cmd_identifier_token27] = ACTIONS(2064), - [aux_sym_cmd_identifier_token28] = ACTIONS(2064), - [aux_sym_cmd_identifier_token29] = ACTIONS(2064), - [aux_sym_cmd_identifier_token30] = ACTIONS(2064), - [aux_sym_cmd_identifier_token31] = ACTIONS(2064), - [aux_sym_cmd_identifier_token32] = ACTIONS(2064), - [aux_sym_cmd_identifier_token33] = ACTIONS(2064), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2064), - [aux_sym_cmd_identifier_token36] = ACTIONS(2064), - [aux_sym_cmd_identifier_token37] = ACTIONS(2064), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2064), - [aux_sym_cmd_identifier_token40] = ACTIONS(2064), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2064), - [aux_sym__val_number_decimal_token3] = ACTIONS(2064), - [aux_sym__val_number_decimal_token4] = ACTIONS(2064), - [aux_sym__val_number_token1] = ACTIONS(2064), - [aux_sym__val_number_token2] = ACTIONS(2064), - [aux_sym__val_number_token3] = ACTIONS(2064), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym__str_single_quotes] = ACTIONS(2064), - [sym__str_back_ticks] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), - [sym__entry_separator] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2066), - }, - [451] = { - [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [452] = { - [sym_cell_path] = STATE(703), - [sym_path] = STATE(679), - [sym_comment] = STATE(452), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [aux_sym_cmd_identifier_token37] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [435] = { + [sym_comment] = STATE(435), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), + [sym_raw_string_begin] = ACTIONS(988), }, - [453] = { - [sym_cell_path] = STATE(704), - [sym_path] = STATE(679), - [sym_comment] = STATE(453), - [aux_sym_cell_path_repeat1] = STATE(564), + [436] = { + [sym_comment] = STATE(436), + [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(1838), + [aux_sym_cmd_identifier_token3] = ACTIONS(1838), + [aux_sym_cmd_identifier_token4] = ACTIONS(1838), + [aux_sym_cmd_identifier_token5] = ACTIONS(1838), + [aux_sym_cmd_identifier_token6] = ACTIONS(1838), + [aux_sym_cmd_identifier_token7] = ACTIONS(1838), + [aux_sym_cmd_identifier_token8] = ACTIONS(1830), + [aux_sym_cmd_identifier_token9] = ACTIONS(1830), + [aux_sym_cmd_identifier_token10] = ACTIONS(1838), + [aux_sym_cmd_identifier_token11] = ACTIONS(1838), + [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(1838), + [aux_sym_cmd_identifier_token17] = ACTIONS(1838), + [aux_sym_cmd_identifier_token18] = ACTIONS(1838), + [aux_sym_cmd_identifier_token19] = ACTIONS(1838), + [aux_sym_cmd_identifier_token20] = ACTIONS(1838), + [aux_sym_cmd_identifier_token21] = ACTIONS(1838), + [aux_sym_cmd_identifier_token22] = ACTIONS(1838), + [aux_sym_cmd_identifier_token23] = ACTIONS(1838), + [aux_sym_cmd_identifier_token24] = ACTIONS(1838), + [aux_sym_cmd_identifier_token25] = ACTIONS(1838), + [aux_sym_cmd_identifier_token26] = ACTIONS(1838), + [aux_sym_cmd_identifier_token27] = ACTIONS(1838), + [aux_sym_cmd_identifier_token28] = ACTIONS(1838), + [aux_sym_cmd_identifier_token29] = ACTIONS(1838), + [aux_sym_cmd_identifier_token30] = ACTIONS(1838), + [aux_sym_cmd_identifier_token31] = ACTIONS(1838), + [aux_sym_cmd_identifier_token32] = ACTIONS(1838), + [aux_sym_cmd_identifier_token33] = ACTIONS(1838), + [aux_sym_cmd_identifier_token34] = ACTIONS(1830), + [aux_sym_cmd_identifier_token35] = ACTIONS(1838), + [aux_sym_cmd_identifier_token36] = ACTIONS(1838), + [aux_sym_cmd_identifier_token37] = ACTIONS(1838), + [aux_sym_cmd_identifier_token38] = ACTIONS(1830), + [aux_sym_cmd_identifier_token39] = ACTIONS(1838), + [aux_sym_cmd_identifier_token40] = ACTIONS(1838), + [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_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1838), + [anon_sym_error] = ACTIONS(1830), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_in2] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_make] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_catch] = 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_as] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1838), + [anon_sym_DOT_DOT2] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1967), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1830), + [aux_sym__val_number_token5] = ACTIONS(1830), + [aux_sym__val_number_token6] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1838), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1838), + }, + [437] = { + [sym_expr_parenthesized] = STATE(4520), + [sym__spread_parenthesized] = STATE(4974), + [sym_val_range] = STATE(4975), + [sym__val_range] = STATE(8671), + [sym__val_range_with_end] = STATE(8119), + [sym__value] = STATE(4975), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(4583), + [sym__spread_variable] = STATE(4976), + [sym_val_variable] = STATE(4532), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(4283), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym__spread_list] = STATE(4974), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym__cmd_arg] = STATE(5057), + [sym_redirection] = STATE(4979), + [sym_short_flag] = STATE(4980), + [sym_long_flag] = STATE(4980), + [sym_unquoted] = STATE(4666), + [sym__unquoted_with_expr] = STATE(4984), + [sym__unquoted_anonymous_prefix] = STATE(7799), + [sym_comment] = STATE(437), + [sym__newline] = ACTIONS(1969), + [sym__space] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_err_GT_PIPE] = ACTIONS(1969), + [anon_sym_out_GT_PIPE] = ACTIONS(1969), + [anon_sym_e_GT_PIPE] = ACTIONS(1969), + [anon_sym_o_GT_PIPE] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DASH2] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT] = ACTIONS(1989), + [anon_sym_null] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2005), + [aux_sym__val_number_token5] = ACTIONS(2005), + [aux_sym__val_number_token6] = ACTIONS(2005), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2021), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [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(2025), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2027), + }, + [438] = { + [sym_comment] = STATE(438), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_alias] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_let_DASHenv] = ACTIONS(1840), + [anon_sym_mut] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [aux_sym_cmd_identifier_token1] = ACTIONS(1840), + [aux_sym_cmd_identifier_token2] = ACTIONS(1848), + [aux_sym_cmd_identifier_token3] = ACTIONS(1848), + [aux_sym_cmd_identifier_token4] = ACTIONS(1848), + [aux_sym_cmd_identifier_token5] = ACTIONS(1848), + [aux_sym_cmd_identifier_token6] = ACTIONS(1848), + [aux_sym_cmd_identifier_token7] = ACTIONS(1848), + [aux_sym_cmd_identifier_token8] = ACTIONS(1840), + [aux_sym_cmd_identifier_token9] = ACTIONS(1840), + [aux_sym_cmd_identifier_token10] = ACTIONS(1848), + [aux_sym_cmd_identifier_token11] = ACTIONS(1848), + [aux_sym_cmd_identifier_token12] = ACTIONS(1840), + [aux_sym_cmd_identifier_token13] = ACTIONS(1840), + [aux_sym_cmd_identifier_token14] = ACTIONS(1840), + [aux_sym_cmd_identifier_token15] = ACTIONS(1840), + [aux_sym_cmd_identifier_token16] = ACTIONS(1848), + [aux_sym_cmd_identifier_token17] = ACTIONS(1848), + [aux_sym_cmd_identifier_token18] = ACTIONS(1848), + [aux_sym_cmd_identifier_token19] = ACTIONS(1848), + [aux_sym_cmd_identifier_token20] = ACTIONS(1848), + [aux_sym_cmd_identifier_token21] = ACTIONS(1848), + [aux_sym_cmd_identifier_token22] = ACTIONS(1848), + [aux_sym_cmd_identifier_token23] = ACTIONS(1848), + [aux_sym_cmd_identifier_token24] = ACTIONS(1848), + [aux_sym_cmd_identifier_token25] = ACTIONS(1848), + [aux_sym_cmd_identifier_token26] = ACTIONS(1848), + [aux_sym_cmd_identifier_token27] = ACTIONS(1848), + [aux_sym_cmd_identifier_token28] = ACTIONS(1848), + [aux_sym_cmd_identifier_token29] = ACTIONS(1848), + [aux_sym_cmd_identifier_token30] = ACTIONS(1848), + [aux_sym_cmd_identifier_token31] = ACTIONS(1848), + [aux_sym_cmd_identifier_token32] = ACTIONS(1848), + [aux_sym_cmd_identifier_token33] = ACTIONS(1848), + [aux_sym_cmd_identifier_token34] = ACTIONS(1840), + [aux_sym_cmd_identifier_token35] = ACTIONS(1848), + [aux_sym_cmd_identifier_token36] = ACTIONS(1848), + [aux_sym_cmd_identifier_token37] = ACTIONS(1848), + [aux_sym_cmd_identifier_token38] = ACTIONS(1840), + [aux_sym_cmd_identifier_token39] = ACTIONS(1848), + [aux_sym_cmd_identifier_token40] = ACTIONS(1848), + [anon_sym_def] = ACTIONS(1840), + [anon_sym_export_DASHenv] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_error] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_in2] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_make] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_catch] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_source] = ACTIONS(1840), + [anon_sym_source_DASHenv] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_hide] = ACTIONS(1840), + [anon_sym_hide_DASHenv] = ACTIONS(1840), + [anon_sym_overlay] = ACTIONS(1840), + [anon_sym_as] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), + [anon_sym_DOT_DOT2] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1840), + [aux_sym__val_number_token5] = ACTIONS(1840), + [aux_sym__val_number_token6] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1848), + }, + [439] = { + [sym_cell_path] = STATE(668), + [sym_path] = STATE(595), + [sym_comment] = STATE(439), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(2033), + [anon_sym_alias] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_let_DASHenv] = ACTIONS(2033), + [anon_sym_mut] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [aux_sym_cmd_identifier_token1] = ACTIONS(2033), + [aux_sym_cmd_identifier_token2] = ACTIONS(2033), + [aux_sym_cmd_identifier_token3] = ACTIONS(2033), + [aux_sym_cmd_identifier_token4] = ACTIONS(2033), + [aux_sym_cmd_identifier_token5] = ACTIONS(2033), + [aux_sym_cmd_identifier_token6] = ACTIONS(2033), + [aux_sym_cmd_identifier_token7] = ACTIONS(2033), + [aux_sym_cmd_identifier_token8] = ACTIONS(2033), + [aux_sym_cmd_identifier_token9] = ACTIONS(2033), + [aux_sym_cmd_identifier_token10] = ACTIONS(2033), + [aux_sym_cmd_identifier_token11] = ACTIONS(2033), + [aux_sym_cmd_identifier_token12] = ACTIONS(2033), + [aux_sym_cmd_identifier_token13] = ACTIONS(2033), + [aux_sym_cmd_identifier_token14] = ACTIONS(2033), + [aux_sym_cmd_identifier_token15] = ACTIONS(2033), + [aux_sym_cmd_identifier_token16] = ACTIONS(2033), + [aux_sym_cmd_identifier_token17] = ACTIONS(2033), + [aux_sym_cmd_identifier_token18] = ACTIONS(2033), + [aux_sym_cmd_identifier_token19] = ACTIONS(2033), + [aux_sym_cmd_identifier_token20] = ACTIONS(2033), + [aux_sym_cmd_identifier_token21] = ACTIONS(2033), + [aux_sym_cmd_identifier_token22] = ACTIONS(2033), + [aux_sym_cmd_identifier_token23] = ACTIONS(2033), + [aux_sym_cmd_identifier_token24] = ACTIONS(2033), + [aux_sym_cmd_identifier_token25] = ACTIONS(2033), + [aux_sym_cmd_identifier_token26] = ACTIONS(2033), + [aux_sym_cmd_identifier_token27] = ACTIONS(2033), + [aux_sym_cmd_identifier_token28] = ACTIONS(2033), + [aux_sym_cmd_identifier_token29] = ACTIONS(2033), + [aux_sym_cmd_identifier_token30] = ACTIONS(2033), + [aux_sym_cmd_identifier_token31] = ACTIONS(2033), + [aux_sym_cmd_identifier_token32] = ACTIONS(2033), + [aux_sym_cmd_identifier_token33] = ACTIONS(2033), + [aux_sym_cmd_identifier_token34] = ACTIONS(2033), + [aux_sym_cmd_identifier_token35] = ACTIONS(2033), + [aux_sym_cmd_identifier_token36] = ACTIONS(2033), + [aux_sym_cmd_identifier_token37] = ACTIONS(2033), + [aux_sym_cmd_identifier_token38] = ACTIONS(2033), + [aux_sym_cmd_identifier_token39] = ACTIONS(2033), + [aux_sym_cmd_identifier_token40] = ACTIONS(2033), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_export_DASHenv] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_error] = ACTIONS(2033), + [anon_sym_DASH2] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_in2] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_make] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_catch] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_source] = ACTIONS(2033), + [anon_sym_source_DASHenv] = ACTIONS(2033), + [anon_sym_register] = ACTIONS(2033), + [anon_sym_hide] = ACTIONS(2033), + [anon_sym_hide_DASHenv] = ACTIONS(2033), + [anon_sym_overlay] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_PLUS2] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2033), + [aux_sym__val_number_decimal_token3] = ACTIONS(2033), + [aux_sym__val_number_decimal_token4] = ACTIONS(2033), + [aux_sym__val_number_token1] = ACTIONS(2033), + [aux_sym__val_number_token2] = ACTIONS(2033), + [aux_sym__val_number_token3] = ACTIONS(2033), + [aux_sym__val_number_token4] = ACTIONS(2033), + [aux_sym__val_number_token5] = ACTIONS(2033), + [aux_sym__val_number_token6] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2033), + [sym__str_single_quotes] = ACTIONS(2033), + [sym__str_back_ticks] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), + [sym__entry_separator] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2035), + }, + [440] = { + [sym_cell_path] = STATE(685), + [sym_path] = STATE(595), + [sym_comment] = STATE(440), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(2037), + [anon_sym_alias] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_let_DASHenv] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [aux_sym_cmd_identifier_token1] = ACTIONS(2037), + [aux_sym_cmd_identifier_token2] = ACTIONS(2037), + [aux_sym_cmd_identifier_token3] = ACTIONS(2037), + [aux_sym_cmd_identifier_token4] = ACTIONS(2037), + [aux_sym_cmd_identifier_token5] = ACTIONS(2037), + [aux_sym_cmd_identifier_token6] = ACTIONS(2037), + [aux_sym_cmd_identifier_token7] = ACTIONS(2037), + [aux_sym_cmd_identifier_token8] = ACTIONS(2037), + [aux_sym_cmd_identifier_token9] = ACTIONS(2037), + [aux_sym_cmd_identifier_token10] = ACTIONS(2037), + [aux_sym_cmd_identifier_token11] = ACTIONS(2037), + [aux_sym_cmd_identifier_token12] = ACTIONS(2037), + [aux_sym_cmd_identifier_token13] = ACTIONS(2037), + [aux_sym_cmd_identifier_token14] = ACTIONS(2037), + [aux_sym_cmd_identifier_token15] = ACTIONS(2037), + [aux_sym_cmd_identifier_token16] = ACTIONS(2037), + [aux_sym_cmd_identifier_token17] = ACTIONS(2037), + [aux_sym_cmd_identifier_token18] = ACTIONS(2037), + [aux_sym_cmd_identifier_token19] = ACTIONS(2037), + [aux_sym_cmd_identifier_token20] = ACTIONS(2037), + [aux_sym_cmd_identifier_token21] = ACTIONS(2037), + [aux_sym_cmd_identifier_token22] = ACTIONS(2037), + [aux_sym_cmd_identifier_token23] = ACTIONS(2037), + [aux_sym_cmd_identifier_token24] = ACTIONS(2037), + [aux_sym_cmd_identifier_token25] = ACTIONS(2037), + [aux_sym_cmd_identifier_token26] = ACTIONS(2037), + [aux_sym_cmd_identifier_token27] = ACTIONS(2037), + [aux_sym_cmd_identifier_token28] = ACTIONS(2037), + [aux_sym_cmd_identifier_token29] = ACTIONS(2037), + [aux_sym_cmd_identifier_token30] = ACTIONS(2037), + [aux_sym_cmd_identifier_token31] = ACTIONS(2037), + [aux_sym_cmd_identifier_token32] = ACTIONS(2037), + [aux_sym_cmd_identifier_token33] = ACTIONS(2037), + [aux_sym_cmd_identifier_token34] = ACTIONS(2037), + [aux_sym_cmd_identifier_token35] = ACTIONS(2037), + [aux_sym_cmd_identifier_token36] = ACTIONS(2037), + [aux_sym_cmd_identifier_token37] = ACTIONS(2037), + [aux_sym_cmd_identifier_token38] = ACTIONS(2037), + [aux_sym_cmd_identifier_token39] = ACTIONS(2037), + [aux_sym_cmd_identifier_token40] = ACTIONS(2037), + [anon_sym_def] = ACTIONS(2037), + [anon_sym_export_DASHenv] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_module] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_error] = ACTIONS(2037), + [anon_sym_DASH2] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_in2] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_make] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_do] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_else] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [anon_sym_catch] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_source] = ACTIONS(2037), + [anon_sym_source_DASHenv] = ACTIONS(2037), + [anon_sym_register] = ACTIONS(2037), + [anon_sym_hide] = ACTIONS(2037), + [anon_sym_hide_DASHenv] = ACTIONS(2037), + [anon_sym_overlay] = ACTIONS(2037), + [anon_sym_as] = ACTIONS(2037), + [anon_sym_PLUS2] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2037), + [aux_sym__val_number_decimal_token1] = ACTIONS(2037), + [aux_sym__val_number_decimal_token2] = ACTIONS(2037), + [aux_sym__val_number_decimal_token3] = ACTIONS(2037), + [aux_sym__val_number_decimal_token4] = ACTIONS(2037), + [aux_sym__val_number_token1] = ACTIONS(2037), + [aux_sym__val_number_token2] = ACTIONS(2037), + [aux_sym__val_number_token3] = ACTIONS(2037), + [aux_sym__val_number_token4] = ACTIONS(2037), + [aux_sym__val_number_token5] = ACTIONS(2037), + [aux_sym__val_number_token6] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym__str_single_quotes] = ACTIONS(2037), + [sym__str_back_ticks] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2037), + [sym__entry_separator] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2039), + }, + [441] = { + [sym_cell_path] = STATE(669), + [sym_path] = STATE(595), + [sym_comment] = STATE(441), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(2041), + [anon_sym_alias] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_let_DASHenv] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [aux_sym_cmd_identifier_token1] = ACTIONS(2041), + [aux_sym_cmd_identifier_token2] = ACTIONS(2041), + [aux_sym_cmd_identifier_token3] = ACTIONS(2041), + [aux_sym_cmd_identifier_token4] = ACTIONS(2041), + [aux_sym_cmd_identifier_token5] = ACTIONS(2041), + [aux_sym_cmd_identifier_token6] = ACTIONS(2041), + [aux_sym_cmd_identifier_token7] = ACTIONS(2041), + [aux_sym_cmd_identifier_token8] = ACTIONS(2041), + [aux_sym_cmd_identifier_token9] = ACTIONS(2041), + [aux_sym_cmd_identifier_token10] = ACTIONS(2041), + [aux_sym_cmd_identifier_token11] = ACTIONS(2041), + [aux_sym_cmd_identifier_token12] = ACTIONS(2041), + [aux_sym_cmd_identifier_token13] = ACTIONS(2041), + [aux_sym_cmd_identifier_token14] = ACTIONS(2041), + [aux_sym_cmd_identifier_token15] = ACTIONS(2041), + [aux_sym_cmd_identifier_token16] = ACTIONS(2041), + [aux_sym_cmd_identifier_token17] = ACTIONS(2041), + [aux_sym_cmd_identifier_token18] = ACTIONS(2041), + [aux_sym_cmd_identifier_token19] = ACTIONS(2041), + [aux_sym_cmd_identifier_token20] = ACTIONS(2041), + [aux_sym_cmd_identifier_token21] = ACTIONS(2041), + [aux_sym_cmd_identifier_token22] = ACTIONS(2041), + [aux_sym_cmd_identifier_token23] = ACTIONS(2041), + [aux_sym_cmd_identifier_token24] = ACTIONS(2041), + [aux_sym_cmd_identifier_token25] = ACTIONS(2041), + [aux_sym_cmd_identifier_token26] = ACTIONS(2041), + [aux_sym_cmd_identifier_token27] = ACTIONS(2041), + [aux_sym_cmd_identifier_token28] = ACTIONS(2041), + [aux_sym_cmd_identifier_token29] = ACTIONS(2041), + [aux_sym_cmd_identifier_token30] = ACTIONS(2041), + [aux_sym_cmd_identifier_token31] = ACTIONS(2041), + [aux_sym_cmd_identifier_token32] = ACTIONS(2041), + [aux_sym_cmd_identifier_token33] = ACTIONS(2041), + [aux_sym_cmd_identifier_token34] = ACTIONS(2041), + [aux_sym_cmd_identifier_token35] = ACTIONS(2041), + [aux_sym_cmd_identifier_token36] = ACTIONS(2041), + [aux_sym_cmd_identifier_token37] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [anon_sym_def] = ACTIONS(2041), + [anon_sym_export_DASHenv] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_module] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2041), + [anon_sym_DASH2] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_in2] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_make] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [anon_sym_catch] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_source] = ACTIONS(2041), + [anon_sym_source_DASHenv] = ACTIONS(2041), + [anon_sym_register] = ACTIONS(2041), + [anon_sym_hide] = ACTIONS(2041), + [anon_sym_hide_DASHenv] = ACTIONS(2041), + [anon_sym_overlay] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_PLUS2] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2041), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [aux_sym__val_number_token4] = ACTIONS(2041), + [aux_sym__val_number_token5] = ACTIONS(2041), + [aux_sym__val_number_token6] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), + [sym__entry_separator] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2043), + }, + [442] = { + [sym_comment] = STATE(442), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [443] = { + [sym_cell_path] = STATE(689), + [sym_path] = STATE(595), + [sym_comment] = STATE(443), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(2045), + [anon_sym_alias] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_let_DASHenv] = ACTIONS(2045), + [anon_sym_mut] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [aux_sym_cmd_identifier_token1] = ACTIONS(2045), + [aux_sym_cmd_identifier_token2] = ACTIONS(2045), + [aux_sym_cmd_identifier_token3] = ACTIONS(2045), + [aux_sym_cmd_identifier_token4] = ACTIONS(2045), + [aux_sym_cmd_identifier_token5] = ACTIONS(2045), + [aux_sym_cmd_identifier_token6] = ACTIONS(2045), + [aux_sym_cmd_identifier_token7] = ACTIONS(2045), + [aux_sym_cmd_identifier_token8] = ACTIONS(2045), + [aux_sym_cmd_identifier_token9] = ACTIONS(2045), + [aux_sym_cmd_identifier_token10] = ACTIONS(2045), + [aux_sym_cmd_identifier_token11] = ACTIONS(2045), + [aux_sym_cmd_identifier_token12] = ACTIONS(2045), + [aux_sym_cmd_identifier_token13] = ACTIONS(2045), + [aux_sym_cmd_identifier_token14] = ACTIONS(2045), + [aux_sym_cmd_identifier_token15] = ACTIONS(2045), + [aux_sym_cmd_identifier_token16] = ACTIONS(2045), + [aux_sym_cmd_identifier_token17] = ACTIONS(2045), + [aux_sym_cmd_identifier_token18] = ACTIONS(2045), + [aux_sym_cmd_identifier_token19] = ACTIONS(2045), + [aux_sym_cmd_identifier_token20] = ACTIONS(2045), + [aux_sym_cmd_identifier_token21] = ACTIONS(2045), + [aux_sym_cmd_identifier_token22] = ACTIONS(2045), + [aux_sym_cmd_identifier_token23] = ACTIONS(2045), + [aux_sym_cmd_identifier_token24] = ACTIONS(2045), + [aux_sym_cmd_identifier_token25] = ACTIONS(2045), + [aux_sym_cmd_identifier_token26] = ACTIONS(2045), + [aux_sym_cmd_identifier_token27] = ACTIONS(2045), + [aux_sym_cmd_identifier_token28] = ACTIONS(2045), + [aux_sym_cmd_identifier_token29] = ACTIONS(2045), + [aux_sym_cmd_identifier_token30] = ACTIONS(2045), + [aux_sym_cmd_identifier_token31] = ACTIONS(2045), + [aux_sym_cmd_identifier_token32] = ACTIONS(2045), + [aux_sym_cmd_identifier_token33] = ACTIONS(2045), + [aux_sym_cmd_identifier_token34] = ACTIONS(2045), + [aux_sym_cmd_identifier_token35] = ACTIONS(2045), + [aux_sym_cmd_identifier_token36] = ACTIONS(2045), + [aux_sym_cmd_identifier_token37] = ACTIONS(2045), + [aux_sym_cmd_identifier_token38] = ACTIONS(2045), + [aux_sym_cmd_identifier_token39] = ACTIONS(2045), + [aux_sym_cmd_identifier_token40] = ACTIONS(2045), + [anon_sym_def] = ACTIONS(2045), + [anon_sym_export_DASHenv] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_module] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2045), + [anon_sym_error] = ACTIONS(2045), + [anon_sym_DASH2] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_in2] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_make] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_do] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_else] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2045), + [anon_sym_catch] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_source] = ACTIONS(2045), + [anon_sym_source_DASHenv] = ACTIONS(2045), + [anon_sym_register] = ACTIONS(2045), + [anon_sym_hide] = ACTIONS(2045), + [anon_sym_hide_DASHenv] = ACTIONS(2045), + [anon_sym_overlay] = ACTIONS(2045), + [anon_sym_as] = ACTIONS(2045), + [anon_sym_PLUS2] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2045), + [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), + [aux_sym__val_number_token4] = ACTIONS(2045), + [aux_sym__val_number_token5] = ACTIONS(2045), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2047), + }, + [444] = { + [sym_cell_path] = STATE(670), + [sym_path] = STATE(595), + [sym_comment] = STATE(444), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(2049), + [anon_sym_alias] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_let_DASHenv] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [aux_sym_cmd_identifier_token1] = ACTIONS(2049), + [aux_sym_cmd_identifier_token2] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2049), + [aux_sym_cmd_identifier_token4] = ACTIONS(2049), + [aux_sym_cmd_identifier_token5] = ACTIONS(2049), + [aux_sym_cmd_identifier_token6] = ACTIONS(2049), + [aux_sym_cmd_identifier_token7] = ACTIONS(2049), + [aux_sym_cmd_identifier_token8] = ACTIONS(2049), + [aux_sym_cmd_identifier_token9] = ACTIONS(2049), + [aux_sym_cmd_identifier_token10] = ACTIONS(2049), + [aux_sym_cmd_identifier_token11] = ACTIONS(2049), + [aux_sym_cmd_identifier_token12] = ACTIONS(2049), + [aux_sym_cmd_identifier_token13] = ACTIONS(2049), + [aux_sym_cmd_identifier_token14] = ACTIONS(2049), + [aux_sym_cmd_identifier_token15] = ACTIONS(2049), + [aux_sym_cmd_identifier_token16] = ACTIONS(2049), + [aux_sym_cmd_identifier_token17] = ACTIONS(2049), + [aux_sym_cmd_identifier_token18] = ACTIONS(2049), + [aux_sym_cmd_identifier_token19] = ACTIONS(2049), + [aux_sym_cmd_identifier_token20] = ACTIONS(2049), + [aux_sym_cmd_identifier_token21] = ACTIONS(2049), + [aux_sym_cmd_identifier_token22] = ACTIONS(2049), + [aux_sym_cmd_identifier_token23] = ACTIONS(2049), + [aux_sym_cmd_identifier_token24] = ACTIONS(2049), + [aux_sym_cmd_identifier_token25] = ACTIONS(2049), + [aux_sym_cmd_identifier_token26] = ACTIONS(2049), + [aux_sym_cmd_identifier_token27] = ACTIONS(2049), + [aux_sym_cmd_identifier_token28] = ACTIONS(2049), + [aux_sym_cmd_identifier_token29] = ACTIONS(2049), + [aux_sym_cmd_identifier_token30] = ACTIONS(2049), + [aux_sym_cmd_identifier_token31] = ACTIONS(2049), + [aux_sym_cmd_identifier_token32] = ACTIONS(2049), + [aux_sym_cmd_identifier_token33] = ACTIONS(2049), + [aux_sym_cmd_identifier_token34] = ACTIONS(2049), + [aux_sym_cmd_identifier_token35] = ACTIONS(2049), + [aux_sym_cmd_identifier_token36] = ACTIONS(2049), + [aux_sym_cmd_identifier_token37] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2049), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2049), + [anon_sym_export_DASHenv] = ACTIONS(2049), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_module] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2049), + [anon_sym_DASH2] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_in2] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_make] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_do] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_else] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [anon_sym_catch] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_source] = ACTIONS(2049), + [anon_sym_source_DASHenv] = ACTIONS(2049), + [anon_sym_register] = ACTIONS(2049), + [anon_sym_hide] = ACTIONS(2049), + [anon_sym_hide_DASHenv] = ACTIONS(2049), + [anon_sym_overlay] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_PLUS2] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2049), + [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), + [aux_sym__val_number_token4] = ACTIONS(2049), + [aux_sym__val_number_token5] = ACTIONS(2049), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2051), + }, + [445] = { + [sym_cell_path] = STATE(677), + [sym_path] = STATE(595), + [sym_comment] = STATE(445), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(2053), + [anon_sym_alias] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_let_DASHenv] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [aux_sym_cmd_identifier_token1] = ACTIONS(2053), + [aux_sym_cmd_identifier_token2] = ACTIONS(2053), + [aux_sym_cmd_identifier_token3] = ACTIONS(2053), + [aux_sym_cmd_identifier_token4] = ACTIONS(2053), + [aux_sym_cmd_identifier_token5] = ACTIONS(2053), + [aux_sym_cmd_identifier_token6] = ACTIONS(2053), + [aux_sym_cmd_identifier_token7] = ACTIONS(2053), + [aux_sym_cmd_identifier_token8] = ACTIONS(2053), + [aux_sym_cmd_identifier_token9] = ACTIONS(2053), + [aux_sym_cmd_identifier_token10] = ACTIONS(2053), + [aux_sym_cmd_identifier_token11] = ACTIONS(2053), + [aux_sym_cmd_identifier_token12] = ACTIONS(2053), + [aux_sym_cmd_identifier_token13] = ACTIONS(2053), + [aux_sym_cmd_identifier_token14] = ACTIONS(2053), + [aux_sym_cmd_identifier_token15] = ACTIONS(2053), + [aux_sym_cmd_identifier_token16] = ACTIONS(2053), + [aux_sym_cmd_identifier_token17] = ACTIONS(2053), + [aux_sym_cmd_identifier_token18] = ACTIONS(2053), + [aux_sym_cmd_identifier_token19] = ACTIONS(2053), + [aux_sym_cmd_identifier_token20] = ACTIONS(2053), + [aux_sym_cmd_identifier_token21] = ACTIONS(2053), + [aux_sym_cmd_identifier_token22] = ACTIONS(2053), + [aux_sym_cmd_identifier_token23] = ACTIONS(2053), + [aux_sym_cmd_identifier_token24] = ACTIONS(2053), + [aux_sym_cmd_identifier_token25] = ACTIONS(2053), + [aux_sym_cmd_identifier_token26] = ACTIONS(2053), + [aux_sym_cmd_identifier_token27] = ACTIONS(2053), + [aux_sym_cmd_identifier_token28] = ACTIONS(2053), + [aux_sym_cmd_identifier_token29] = ACTIONS(2053), + [aux_sym_cmd_identifier_token30] = ACTIONS(2053), + [aux_sym_cmd_identifier_token31] = ACTIONS(2053), + [aux_sym_cmd_identifier_token32] = ACTIONS(2053), + [aux_sym_cmd_identifier_token33] = ACTIONS(2053), + [aux_sym_cmd_identifier_token34] = ACTIONS(2053), + [aux_sym_cmd_identifier_token35] = ACTIONS(2053), + [aux_sym_cmd_identifier_token36] = ACTIONS(2053), + [aux_sym_cmd_identifier_token37] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2053), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2053), + [anon_sym_export_DASHenv] = ACTIONS(2053), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_module] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_error] = ACTIONS(2053), + [anon_sym_DASH2] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_in2] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_make] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_else] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_source] = ACTIONS(2053), + [anon_sym_source_DASHenv] = ACTIONS(2053), + [anon_sym_register] = ACTIONS(2053), + [anon_sym_hide] = ACTIONS(2053), + [anon_sym_hide_DASHenv] = ACTIONS(2053), + [anon_sym_overlay] = ACTIONS(2053), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_PLUS2] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2053), + [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), + [aux_sym__val_number_token4] = ACTIONS(2053), + [aux_sym__val_number_token5] = ACTIONS(2053), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2055), + }, + [446] = { + [sym_comment] = STATE(446), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [447] = { + [sym_cell_path] = STATE(649), + [sym_path] = STATE(595), + [sym_comment] = STATE(447), + [aux_sym_cell_path_repeat1] = STATE(470), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_alias] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_let_DASHenv] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [aux_sym_cmd_identifier_token1] = ACTIONS(2057), + [aux_sym_cmd_identifier_token2] = ACTIONS(2057), + [aux_sym_cmd_identifier_token3] = ACTIONS(2057), + [aux_sym_cmd_identifier_token4] = ACTIONS(2057), + [aux_sym_cmd_identifier_token5] = ACTIONS(2057), + [aux_sym_cmd_identifier_token6] = ACTIONS(2057), + [aux_sym_cmd_identifier_token7] = ACTIONS(2057), + [aux_sym_cmd_identifier_token8] = ACTIONS(2057), + [aux_sym_cmd_identifier_token9] = ACTIONS(2057), + [aux_sym_cmd_identifier_token10] = ACTIONS(2057), + [aux_sym_cmd_identifier_token11] = ACTIONS(2057), + [aux_sym_cmd_identifier_token12] = ACTIONS(2057), + [aux_sym_cmd_identifier_token13] = ACTIONS(2057), + [aux_sym_cmd_identifier_token14] = ACTIONS(2057), + [aux_sym_cmd_identifier_token15] = ACTIONS(2057), + [aux_sym_cmd_identifier_token16] = ACTIONS(2057), + [aux_sym_cmd_identifier_token17] = ACTIONS(2057), + [aux_sym_cmd_identifier_token18] = ACTIONS(2057), + [aux_sym_cmd_identifier_token19] = ACTIONS(2057), + [aux_sym_cmd_identifier_token20] = ACTIONS(2057), + [aux_sym_cmd_identifier_token21] = ACTIONS(2057), + [aux_sym_cmd_identifier_token22] = ACTIONS(2057), + [aux_sym_cmd_identifier_token23] = ACTIONS(2057), + [aux_sym_cmd_identifier_token24] = ACTIONS(2057), + [aux_sym_cmd_identifier_token25] = ACTIONS(2057), + [aux_sym_cmd_identifier_token26] = ACTIONS(2057), + [aux_sym_cmd_identifier_token27] = ACTIONS(2057), + [aux_sym_cmd_identifier_token28] = ACTIONS(2057), + [aux_sym_cmd_identifier_token29] = ACTIONS(2057), + [aux_sym_cmd_identifier_token30] = ACTIONS(2057), + [aux_sym_cmd_identifier_token31] = ACTIONS(2057), + [aux_sym_cmd_identifier_token32] = ACTIONS(2057), + [aux_sym_cmd_identifier_token33] = ACTIONS(2057), + [aux_sym_cmd_identifier_token34] = ACTIONS(2057), + [aux_sym_cmd_identifier_token35] = ACTIONS(2057), + [aux_sym_cmd_identifier_token36] = ACTIONS(2057), + [aux_sym_cmd_identifier_token37] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2057), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [anon_sym_def] = ACTIONS(2057), + [anon_sym_export_DASHenv] = ACTIONS(2057), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2057), + [anon_sym_error] = ACTIONS(2057), + [anon_sym_DASH2] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_in2] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_make] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_source] = ACTIONS(2057), + [anon_sym_source_DASHenv] = ACTIONS(2057), + [anon_sym_register] = ACTIONS(2057), + [anon_sym_hide] = ACTIONS(2057), + [anon_sym_hide_DASHenv] = ACTIONS(2057), + [anon_sym_overlay] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_PLUS2] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [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), + [aux_sym__val_number_token4] = ACTIONS(2057), + [aux_sym__val_number_token5] = ACTIONS(2057), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2059), + }, + [448] = { + [sym_path] = STATE(529), + [sym_comment] = STATE(448), + [aux_sym_cell_path_repeat1] = STATE(448), + [anon_sym_export] = ACTIONS(975), + [anon_sym_alias] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_let_DASHenv] = ACTIONS(975), + [anon_sym_mut] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [aux_sym_cmd_identifier_token1] = ACTIONS(975), + [aux_sym_cmd_identifier_token2] = ACTIONS(977), + [aux_sym_cmd_identifier_token3] = ACTIONS(977), + [aux_sym_cmd_identifier_token4] = ACTIONS(977), + [aux_sym_cmd_identifier_token5] = ACTIONS(977), + [aux_sym_cmd_identifier_token6] = ACTIONS(977), + [aux_sym_cmd_identifier_token7] = ACTIONS(977), + [aux_sym_cmd_identifier_token8] = ACTIONS(975), + [aux_sym_cmd_identifier_token9] = ACTIONS(975), + [aux_sym_cmd_identifier_token10] = ACTIONS(977), + [aux_sym_cmd_identifier_token11] = ACTIONS(977), + [aux_sym_cmd_identifier_token12] = ACTIONS(975), + [aux_sym_cmd_identifier_token13] = ACTIONS(975), + [aux_sym_cmd_identifier_token14] = ACTIONS(975), + [aux_sym_cmd_identifier_token15] = ACTIONS(975), + [aux_sym_cmd_identifier_token16] = ACTIONS(977), + [aux_sym_cmd_identifier_token17] = ACTIONS(977), + [aux_sym_cmd_identifier_token18] = ACTIONS(977), + [aux_sym_cmd_identifier_token19] = ACTIONS(977), + [aux_sym_cmd_identifier_token20] = ACTIONS(977), + [aux_sym_cmd_identifier_token21] = ACTIONS(977), + [aux_sym_cmd_identifier_token22] = ACTIONS(977), + [aux_sym_cmd_identifier_token23] = ACTIONS(977), + [aux_sym_cmd_identifier_token24] = ACTIONS(977), + [aux_sym_cmd_identifier_token25] = ACTIONS(977), + [aux_sym_cmd_identifier_token26] = ACTIONS(977), + [aux_sym_cmd_identifier_token27] = ACTIONS(977), + [aux_sym_cmd_identifier_token28] = ACTIONS(977), + [aux_sym_cmd_identifier_token29] = ACTIONS(977), + [aux_sym_cmd_identifier_token30] = ACTIONS(977), + [aux_sym_cmd_identifier_token31] = ACTIONS(977), + [aux_sym_cmd_identifier_token32] = ACTIONS(977), + [aux_sym_cmd_identifier_token33] = ACTIONS(977), + [aux_sym_cmd_identifier_token34] = ACTIONS(975), + [aux_sym_cmd_identifier_token35] = ACTIONS(977), + [aux_sym_cmd_identifier_token36] = ACTIONS(977), + [aux_sym_cmd_identifier_token37] = ACTIONS(977), + [aux_sym_cmd_identifier_token38] = ACTIONS(975), + [aux_sym_cmd_identifier_token39] = ACTIONS(977), + [aux_sym_cmd_identifier_token40] = ACTIONS(977), + [anon_sym_def] = ACTIONS(975), + [anon_sym_export_DASHenv] = ACTIONS(975), + [anon_sym_extern] = ACTIONS(975), + [anon_sym_module] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_error] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_make] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_source] = ACTIONS(975), + [anon_sym_source_DASHenv] = ACTIONS(975), + [anon_sym_register] = ACTIONS(975), + [anon_sym_hide] = ACTIONS(975), + [anon_sym_hide_DASHenv] = ACTIONS(975), + [anon_sym_overlay] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(975), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), + [aux_sym_record_entry_token1] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(977), + }, + [449] = { + [sym_comment] = STATE(449), + [anon_sym_export] = ACTIONS(2064), + [anon_sym_alias] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_let_DASHenv] = ACTIONS(2064), + [anon_sym_mut] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [aux_sym_cmd_identifier_token1] = ACTIONS(2064), + [aux_sym_cmd_identifier_token2] = ACTIONS(2064), + [aux_sym_cmd_identifier_token3] = ACTIONS(2064), + [aux_sym_cmd_identifier_token4] = ACTIONS(2064), + [aux_sym_cmd_identifier_token5] = ACTIONS(2064), + [aux_sym_cmd_identifier_token6] = ACTIONS(2064), + [aux_sym_cmd_identifier_token7] = ACTIONS(2064), + [aux_sym_cmd_identifier_token8] = ACTIONS(2064), + [aux_sym_cmd_identifier_token9] = ACTIONS(2064), + [aux_sym_cmd_identifier_token10] = ACTIONS(2064), + [aux_sym_cmd_identifier_token11] = ACTIONS(2064), + [aux_sym_cmd_identifier_token12] = ACTIONS(2064), + [aux_sym_cmd_identifier_token13] = ACTIONS(2064), + [aux_sym_cmd_identifier_token14] = ACTIONS(2064), + [aux_sym_cmd_identifier_token15] = ACTIONS(2064), + [aux_sym_cmd_identifier_token16] = ACTIONS(2064), + [aux_sym_cmd_identifier_token17] = ACTIONS(2064), + [aux_sym_cmd_identifier_token18] = ACTIONS(2064), + [aux_sym_cmd_identifier_token19] = ACTIONS(2064), + [aux_sym_cmd_identifier_token20] = ACTIONS(2064), + [aux_sym_cmd_identifier_token21] = ACTIONS(2064), + [aux_sym_cmd_identifier_token22] = ACTIONS(2064), + [aux_sym_cmd_identifier_token23] = ACTIONS(2064), + [aux_sym_cmd_identifier_token24] = ACTIONS(2064), + [aux_sym_cmd_identifier_token25] = ACTIONS(2064), + [aux_sym_cmd_identifier_token26] = ACTIONS(2064), + [aux_sym_cmd_identifier_token27] = ACTIONS(2064), + [aux_sym_cmd_identifier_token28] = ACTIONS(2064), + [aux_sym_cmd_identifier_token29] = ACTIONS(2064), + [aux_sym_cmd_identifier_token30] = ACTIONS(2064), + [aux_sym_cmd_identifier_token31] = ACTIONS(2064), + [aux_sym_cmd_identifier_token32] = ACTIONS(2064), + [aux_sym_cmd_identifier_token33] = ACTIONS(2064), + [aux_sym_cmd_identifier_token34] = ACTIONS(2064), + [aux_sym_cmd_identifier_token35] = ACTIONS(2064), + [aux_sym_cmd_identifier_token36] = ACTIONS(2064), + [aux_sym_cmd_identifier_token37] = ACTIONS(2064), + [aux_sym_cmd_identifier_token38] = ACTIONS(2064), + [aux_sym_cmd_identifier_token39] = ACTIONS(2064), + [aux_sym_cmd_identifier_token40] = ACTIONS(2064), + [anon_sym_def] = ACTIONS(2064), + [anon_sym_export_DASHenv] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2064), + [anon_sym_error] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_in2] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_make] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_source] = ACTIONS(2064), + [anon_sym_source_DASHenv] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_hide] = ACTIONS(2064), + [anon_sym_hide_DASHenv] = ACTIONS(2064), + [anon_sym_overlay] = ACTIONS(2064), + [anon_sym_as] = ACTIONS(2064), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), + [anon_sym_DOT_DOT2] = ACTIONS(2066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2064), + [aux_sym__val_number_decimal_token2] = ACTIONS(2064), + [aux_sym__val_number_decimal_token3] = ACTIONS(2064), + [aux_sym__val_number_decimal_token4] = ACTIONS(2064), + [aux_sym__val_number_token1] = ACTIONS(2064), + [aux_sym__val_number_token2] = ACTIONS(2064), + [aux_sym__val_number_token3] = ACTIONS(2064), + [aux_sym__val_number_token4] = ACTIONS(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2064), + [sym__str_single_quotes] = ACTIONS(2064), + [sym__str_back_ticks] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), + [sym__entry_separator] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2070), + }, + [450] = { + [sym_comment] = STATE(450), + [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_DOT2] = ACTIONS(2074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2076), + [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(2078), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [451] = { + [sym_cell_path] = STATE(727), + [sym_path] = STATE(659), + [sym_comment] = STATE(451), + [aux_sym_cell_path_repeat1] = STATE(521), [anon_sym_export] = ACTIONS(1949), [anon_sym_alias] = ACTIONS(1949), [anon_sym_let] = ACTIONS(1949), @@ -132702,7 +135005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1949), [anon_sym_PLUS2] = ACTIONS(1949), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2080), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), [aux_sym__val_number_decimal_token1] = ACTIONS(1949), [aux_sym__val_number_decimal_token2] = ACTIONS(1951), @@ -132721,11 +135024,526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1951), }, + [452] = { + [sym_comment] = STATE(452), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [aux_sym_cmd_identifier_token37] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), + [anon_sym_DOT_DOT2] = ACTIONS(2066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym__str_single_quotes] = ACTIONS(1034), + [sym__str_back_ticks] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), + [sym__entry_separator] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1036), + }, + [453] = { + [sym_comment] = STATE(453), + [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_DOT2] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), + [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(2084), + }, [454] = { - [sym_cell_path] = STATE(705), - [sym_path] = STATE(679), [sym_comment] = STATE(454), - [aux_sym_cell_path_repeat1] = STATE(564), + [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_DOT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), + [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(2088), + }, + [455] = { + [sym_comment] = STATE(455), + [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_DOT2] = ACTIONS(2092), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2094), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2094), + [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(2096), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2096), + }, + [456] = { + [sym_comment] = STATE(456), + [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_DOT2] = ACTIONS(2100), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2102), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2102), + [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(2104), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2104), + }, + [457] = { + [sym_cell_path] = STATE(702), + [sym_path] = STATE(659), + [sym_comment] = STATE(457), + [aux_sym_cell_path_repeat1] = STATE(521), [anon_sym_export] = ACTIONS(1953), [anon_sym_alias] = ACTIONS(1953), [anon_sym_let] = ACTIONS(1953), @@ -132805,7 +135623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1953), [anon_sym_PLUS2] = ACTIONS(1953), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2080), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), [aux_sym__val_number_decimal_token1] = ACTIONS(1953), [aux_sym__val_number_decimal_token2] = ACTIONS(1955), @@ -132824,2377 +135642,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1955), }, - [455] = { - [sym_cell_path] = STATE(707), - [sym_path] = STATE(679), - [sym_comment] = STATE(455), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), - }, - [456] = { - [sym_comment] = STATE(456), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [457] = { - [sym_cell_path] = STATE(708), - [sym_path] = STATE(679), - [sym_comment] = STATE(457), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [aux_sym_cmd_identifier_token37] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in2] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_PLUS2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1961), - [aux_sym__val_number_token5] = ACTIONS(1961), - [aux_sym__val_number_token6] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), - }, [458] = { - [sym_cell_path] = STATE(709), - [sym_path] = STATE(679), [sym_comment] = STATE(458), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1967), - [aux_sym_cmd_identifier_token3] = ACTIONS(1967), - [aux_sym_cmd_identifier_token4] = ACTIONS(1967), - [aux_sym_cmd_identifier_token5] = ACTIONS(1967), - [aux_sym_cmd_identifier_token6] = ACTIONS(1967), - [aux_sym_cmd_identifier_token7] = ACTIONS(1967), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1967), - [aux_sym_cmd_identifier_token11] = ACTIONS(1967), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1967), - [aux_sym_cmd_identifier_token17] = ACTIONS(1967), - [aux_sym_cmd_identifier_token18] = ACTIONS(1967), - [aux_sym_cmd_identifier_token19] = ACTIONS(1967), - [aux_sym_cmd_identifier_token20] = ACTIONS(1967), - [aux_sym_cmd_identifier_token21] = ACTIONS(1967), - [aux_sym_cmd_identifier_token22] = ACTIONS(1967), - [aux_sym_cmd_identifier_token23] = ACTIONS(1967), - [aux_sym_cmd_identifier_token24] = ACTIONS(1967), - [aux_sym_cmd_identifier_token25] = ACTIONS(1967), - [aux_sym_cmd_identifier_token26] = ACTIONS(1967), - [aux_sym_cmd_identifier_token27] = ACTIONS(1967), - [aux_sym_cmd_identifier_token28] = ACTIONS(1967), - [aux_sym_cmd_identifier_token29] = ACTIONS(1967), - [aux_sym_cmd_identifier_token30] = ACTIONS(1967), - [aux_sym_cmd_identifier_token31] = ACTIONS(1967), - [aux_sym_cmd_identifier_token32] = ACTIONS(1967), - [aux_sym_cmd_identifier_token33] = ACTIONS(1967), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1967), - [aux_sym_cmd_identifier_token36] = ACTIONS(1967), - [aux_sym_cmd_identifier_token37] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(1008), + [anon_sym_alias] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_let_DASHenv] = ACTIONS(1008), + [anon_sym_mut] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [aux_sym_cmd_identifier_token1] = ACTIONS(1008), + [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(1008), + [aux_sym_cmd_identifier_token9] = ACTIONS(1008), + [aux_sym_cmd_identifier_token10] = ACTIONS(1010), + [aux_sym_cmd_identifier_token11] = ACTIONS(1010), + [aux_sym_cmd_identifier_token12] = ACTIONS(1008), + [aux_sym_cmd_identifier_token13] = ACTIONS(1008), + [aux_sym_cmd_identifier_token14] = ACTIONS(1008), + [aux_sym_cmd_identifier_token15] = ACTIONS(1008), + [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(1008), + [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(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1010), + [aux_sym_cmd_identifier_token40] = ACTIONS(1010), + [anon_sym_def] = ACTIONS(1008), + [anon_sym_export_DASHenv] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym_module] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_error] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_make] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_catch] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_source] = ACTIONS(1008), + [anon_sym_source_DASHenv] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_hide] = ACTIONS(1008), + [anon_sym_hide_DASHenv] = ACTIONS(1008), + [anon_sym_overlay] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [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(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [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), + [aux_sym_record_entry_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1010), }, [459] = { - [sym_cell_path] = STATE(710), - [sym_path] = STATE(679), [sym_comment] = STATE(459), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1971), - [aux_sym_cmd_identifier_token3] = ACTIONS(1971), - [aux_sym_cmd_identifier_token4] = ACTIONS(1971), - [aux_sym_cmd_identifier_token5] = ACTIONS(1971), - [aux_sym_cmd_identifier_token6] = ACTIONS(1971), - [aux_sym_cmd_identifier_token7] = ACTIONS(1971), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1971), - [aux_sym_cmd_identifier_token11] = ACTIONS(1971), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1971), - [aux_sym_cmd_identifier_token17] = ACTIONS(1971), - [aux_sym_cmd_identifier_token18] = ACTIONS(1971), - [aux_sym_cmd_identifier_token19] = ACTIONS(1971), - [aux_sym_cmd_identifier_token20] = ACTIONS(1971), - [aux_sym_cmd_identifier_token21] = ACTIONS(1971), - [aux_sym_cmd_identifier_token22] = ACTIONS(1971), - [aux_sym_cmd_identifier_token23] = ACTIONS(1971), - [aux_sym_cmd_identifier_token24] = ACTIONS(1971), - [aux_sym_cmd_identifier_token25] = ACTIONS(1971), - [aux_sym_cmd_identifier_token26] = ACTIONS(1971), - [aux_sym_cmd_identifier_token27] = ACTIONS(1971), - [aux_sym_cmd_identifier_token28] = ACTIONS(1971), - [aux_sym_cmd_identifier_token29] = ACTIONS(1971), - [aux_sym_cmd_identifier_token30] = ACTIONS(1971), - [aux_sym_cmd_identifier_token31] = ACTIONS(1971), - [aux_sym_cmd_identifier_token32] = ACTIONS(1971), - [aux_sym_cmd_identifier_token33] = ACTIONS(1971), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1971), - [aux_sym_cmd_identifier_token36] = ACTIONS(1971), - [aux_sym_cmd_identifier_token37] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1971), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [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(2108), + [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(251), + [sym_raw_string_begin] = ACTIONS(992), }, [460] = { [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(2070), - [anon_sym_alias] = ACTIONS(2070), - [anon_sym_let] = ACTIONS(2070), - [anon_sym_let_DASHenv] = ACTIONS(2070), - [anon_sym_mut] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [aux_sym_cmd_identifier_token1] = ACTIONS(2070), - [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(2070), - [aux_sym_cmd_identifier_token9] = ACTIONS(2070), - [aux_sym_cmd_identifier_token10] = ACTIONS(2070), - [aux_sym_cmd_identifier_token11] = ACTIONS(2070), - [aux_sym_cmd_identifier_token12] = ACTIONS(2070), - [aux_sym_cmd_identifier_token13] = ACTIONS(2070), - [aux_sym_cmd_identifier_token14] = ACTIONS(2070), - [aux_sym_cmd_identifier_token15] = ACTIONS(2070), - [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(2070), - [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(2070), - [aux_sym_cmd_identifier_token39] = ACTIONS(2070), - [aux_sym_cmd_identifier_token40] = ACTIONS(2070), - [anon_sym_def] = ACTIONS(2070), - [anon_sym_export_DASHenv] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_module] = ACTIONS(2070), - [anon_sym_use] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_error] = ACTIONS(2070), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_in2] = ACTIONS(2070), - [anon_sym_loop] = ACTIONS(2070), - [anon_sym_make] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2070), - [anon_sym_catch] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_source] = ACTIONS(2070), - [anon_sym_source_DASHenv] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_hide] = ACTIONS(2070), - [anon_sym_hide_DASHenv] = ACTIONS(2070), - [anon_sym_overlay] = ACTIONS(2070), - [anon_sym_as] = ACTIONS(2070), - [anon_sym_PLUS2] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), - [anon_sym_DOT_DOT2] = ACTIONS(2072), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2074), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2074), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2070), - [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_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), - [sym__entry_separator] = ACTIONS(2076), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [aux_sym__immediate_decimal_token2] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2076), + [sym_raw_string_begin] = ACTIONS(1801), }, [461] = { [sym_comment] = STATE(461), - [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_DOT2] = ACTIONS(2080), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2082), - [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(2084), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [aux_sym_cmd_identifier_token37] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [aux_sym__val_number_token4] = ACTIONS(1052), + [aux_sym__val_number_token5] = ACTIONS(1052), + [aux_sym__val_number_token6] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [sym__entry_separator] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2084), + [sym_raw_string_begin] = ACTIONS(1054), }, [462] = { [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [463] = { - [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [464] = { - [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(1824), - [aux_sym_cmd_identifier_token3] = ACTIONS(1824), - [aux_sym_cmd_identifier_token4] = ACTIONS(1824), - [aux_sym_cmd_identifier_token5] = ACTIONS(1824), - [aux_sym_cmd_identifier_token6] = ACTIONS(1824), - [aux_sym_cmd_identifier_token7] = ACTIONS(1824), - [aux_sym_cmd_identifier_token8] = ACTIONS(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1824), - [aux_sym_cmd_identifier_token11] = ACTIONS(1824), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(1824), - [aux_sym_cmd_identifier_token17] = ACTIONS(1824), - [aux_sym_cmd_identifier_token18] = ACTIONS(1824), - [aux_sym_cmd_identifier_token19] = ACTIONS(1824), - [aux_sym_cmd_identifier_token20] = ACTIONS(1824), - [aux_sym_cmd_identifier_token21] = ACTIONS(1824), - [aux_sym_cmd_identifier_token22] = ACTIONS(1824), - [aux_sym_cmd_identifier_token23] = ACTIONS(1824), - [aux_sym_cmd_identifier_token24] = ACTIONS(1824), - [aux_sym_cmd_identifier_token25] = ACTIONS(1824), - [aux_sym_cmd_identifier_token26] = ACTIONS(1824), - [aux_sym_cmd_identifier_token27] = ACTIONS(1824), - [aux_sym_cmd_identifier_token28] = ACTIONS(1824), - [aux_sym_cmd_identifier_token29] = ACTIONS(1824), - [aux_sym_cmd_identifier_token30] = ACTIONS(1824), - [aux_sym_cmd_identifier_token31] = ACTIONS(1824), - [aux_sym_cmd_identifier_token32] = ACTIONS(1824), - [aux_sym_cmd_identifier_token33] = ACTIONS(1824), - [aux_sym_cmd_identifier_token34] = ACTIONS(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1824), - [aux_sym_cmd_identifier_token36] = ACTIONS(1824), - [aux_sym_cmd_identifier_token37] = ACTIONS(1824), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1824), - [aux_sym_cmd_identifier_token40] = ACTIONS(1824), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1824), - [aux_sym__val_number_decimal_token3] = ACTIONS(1824), - [aux_sym__val_number_decimal_token4] = ACTIONS(1824), - [aux_sym__val_number_token1] = ACTIONS(1824), - [aux_sym__val_number_token2] = ACTIONS(1824), - [aux_sym__val_number_token3] = ACTIONS(1824), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym__str_single_quotes] = ACTIONS(1824), - [sym__str_back_ticks] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), - [sym__entry_separator] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1826), - }, - [465] = { - [sym_cell_path] = STATE(713), - [sym_path] = STATE(679), - [sym_comment] = STATE(465), - [aux_sym_cell_path_repeat1] = STATE(564), - [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(2068), - [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(251), - [sym_raw_string_begin] = ACTIONS(1915), - }, - [466] = { - [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(2088), - [anon_sym_alias] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_let_DASHenv] = ACTIONS(2088), - [anon_sym_mut] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [aux_sym_cmd_identifier_token1] = ACTIONS(2088), - [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(2088), - [aux_sym_cmd_identifier_token9] = ACTIONS(2088), - [aux_sym_cmd_identifier_token10] = ACTIONS(2088), - [aux_sym_cmd_identifier_token11] = ACTIONS(2088), - [aux_sym_cmd_identifier_token12] = ACTIONS(2088), - [aux_sym_cmd_identifier_token13] = ACTIONS(2088), - [aux_sym_cmd_identifier_token14] = ACTIONS(2088), - [aux_sym_cmd_identifier_token15] = ACTIONS(2088), - [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(2088), - [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(2088), - [aux_sym_cmd_identifier_token39] = ACTIONS(2088), - [aux_sym_cmd_identifier_token40] = ACTIONS(2088), - [anon_sym_def] = ACTIONS(2088), - [anon_sym_export_DASHenv] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_module] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_error] = ACTIONS(2088), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_in2] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_make] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_do] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_else] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [anon_sym_catch] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_source] = ACTIONS(2088), - [anon_sym_source_DASHenv] = ACTIONS(2088), - [anon_sym_register] = ACTIONS(2088), - [anon_sym_hide] = ACTIONS(2088), - [anon_sym_hide_DASHenv] = ACTIONS(2088), - [anon_sym_overlay] = ACTIONS(2088), - [anon_sym_as] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), - [anon_sym_DOT_DOT2] = ACTIONS(2090), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2092), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2092), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2088), - [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(2088), - [aux_sym__val_number_token5] = ACTIONS(2088), - [aux_sym__val_number_token6] = ACTIONS(2088), - [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), - [sym__entry_separator] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2094), - }, - [467] = { - [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [468] = { - [sym_comment] = STATE(468), - [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_DOT2] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2100), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2100), - [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), - }, - [469] = { - [sym_comment] = STATE(469), - [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_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [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), - }, - [470] = { - [sym_comment] = STATE(470), - [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_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [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(2112), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2112), - }, - [471] = { - [sym_cell_path] = STATE(725), - [sym_path] = STATE(679), - [sym_comment] = STATE(471), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_alias] = ACTIONS(1885), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_let_DASHenv] = ACTIONS(1885), - [anon_sym_mut] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [aux_sym_cmd_identifier_token1] = ACTIONS(1885), - [aux_sym_cmd_identifier_token2] = ACTIONS(1887), - [aux_sym_cmd_identifier_token3] = ACTIONS(1887), - [aux_sym_cmd_identifier_token4] = ACTIONS(1887), - [aux_sym_cmd_identifier_token5] = ACTIONS(1887), - [aux_sym_cmd_identifier_token6] = ACTIONS(1887), - [aux_sym_cmd_identifier_token7] = ACTIONS(1887), - [aux_sym_cmd_identifier_token8] = ACTIONS(1885), - [aux_sym_cmd_identifier_token9] = ACTIONS(1885), - [aux_sym_cmd_identifier_token10] = ACTIONS(1887), - [aux_sym_cmd_identifier_token11] = ACTIONS(1887), - [aux_sym_cmd_identifier_token12] = ACTIONS(1885), - [aux_sym_cmd_identifier_token13] = ACTIONS(1885), - [aux_sym_cmd_identifier_token14] = ACTIONS(1885), - [aux_sym_cmd_identifier_token15] = ACTIONS(1885), - [aux_sym_cmd_identifier_token16] = ACTIONS(1887), - [aux_sym_cmd_identifier_token17] = ACTIONS(1887), - [aux_sym_cmd_identifier_token18] = ACTIONS(1887), - [aux_sym_cmd_identifier_token19] = ACTIONS(1887), - [aux_sym_cmd_identifier_token20] = ACTIONS(1887), - [aux_sym_cmd_identifier_token21] = ACTIONS(1887), - [aux_sym_cmd_identifier_token22] = ACTIONS(1887), - [aux_sym_cmd_identifier_token23] = ACTIONS(1887), - [aux_sym_cmd_identifier_token24] = ACTIONS(1887), - [aux_sym_cmd_identifier_token25] = ACTIONS(1887), - [aux_sym_cmd_identifier_token26] = ACTIONS(1887), - [aux_sym_cmd_identifier_token27] = ACTIONS(1887), - [aux_sym_cmd_identifier_token28] = ACTIONS(1887), - [aux_sym_cmd_identifier_token29] = ACTIONS(1887), - [aux_sym_cmd_identifier_token30] = ACTIONS(1887), - [aux_sym_cmd_identifier_token31] = ACTIONS(1887), - [aux_sym_cmd_identifier_token32] = ACTIONS(1887), - [aux_sym_cmd_identifier_token33] = ACTIONS(1887), - [aux_sym_cmd_identifier_token34] = ACTIONS(1885), - [aux_sym_cmd_identifier_token35] = ACTIONS(1887), - [aux_sym_cmd_identifier_token36] = ACTIONS(1887), - [aux_sym_cmd_identifier_token37] = ACTIONS(1887), - [aux_sym_cmd_identifier_token38] = ACTIONS(1885), - [aux_sym_cmd_identifier_token39] = ACTIONS(1887), - [aux_sym_cmd_identifier_token40] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1885), - [anon_sym_export_DASHenv] = ACTIONS(1885), - [anon_sym_extern] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_use] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_error] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_in2] = ACTIONS(1885), - [anon_sym_loop] = ACTIONS(1885), - [anon_sym_make] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_do] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1885), - [anon_sym_catch] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_source] = ACTIONS(1885), - [anon_sym_source_DASHenv] = ACTIONS(1885), - [anon_sym_register] = ACTIONS(1885), - [anon_sym_hide] = ACTIONS(1885), - [anon_sym_hide_DASHenv] = ACTIONS(1885), - [anon_sym_overlay] = ACTIONS(1885), - [anon_sym_as] = ACTIONS(1885), - [anon_sym_PLUS2] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), - [aux_sym__val_number_decimal_token1] = ACTIONS(1885), - [aux_sym__val_number_decimal_token2] = ACTIONS(1887), - [aux_sym__val_number_decimal_token3] = ACTIONS(1887), - [aux_sym__val_number_decimal_token4] = ACTIONS(1887), - [aux_sym__val_number_token1] = ACTIONS(1887), - [aux_sym__val_number_token2] = ACTIONS(1887), - [aux_sym__val_number_token3] = ACTIONS(1887), - [aux_sym__val_number_token4] = ACTIONS(1885), - [aux_sym__val_number_token5] = ACTIONS(1885), - [aux_sym__val_number_token6] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym__str_single_quotes] = ACTIONS(1887), - [sym__str_back_ticks] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1887), - }, - [472] = { - [sym_cell_path] = STATE(729), - [sym_path] = STATE(679), - [sym_comment] = STATE(472), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_alias] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_let_DASHenv] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [aux_sym_cmd_identifier_token1] = ACTIONS(1889), - [aux_sym_cmd_identifier_token2] = ACTIONS(1891), - [aux_sym_cmd_identifier_token3] = ACTIONS(1891), - [aux_sym_cmd_identifier_token4] = ACTIONS(1891), - [aux_sym_cmd_identifier_token5] = ACTIONS(1891), - [aux_sym_cmd_identifier_token6] = ACTIONS(1891), - [aux_sym_cmd_identifier_token7] = ACTIONS(1891), - [aux_sym_cmd_identifier_token8] = ACTIONS(1889), - [aux_sym_cmd_identifier_token9] = ACTIONS(1889), - [aux_sym_cmd_identifier_token10] = ACTIONS(1891), - [aux_sym_cmd_identifier_token11] = ACTIONS(1891), - [aux_sym_cmd_identifier_token12] = ACTIONS(1889), - [aux_sym_cmd_identifier_token13] = ACTIONS(1889), - [aux_sym_cmd_identifier_token14] = ACTIONS(1889), - [aux_sym_cmd_identifier_token15] = ACTIONS(1889), - [aux_sym_cmd_identifier_token16] = ACTIONS(1891), - [aux_sym_cmd_identifier_token17] = ACTIONS(1891), - [aux_sym_cmd_identifier_token18] = ACTIONS(1891), - [aux_sym_cmd_identifier_token19] = ACTIONS(1891), - [aux_sym_cmd_identifier_token20] = ACTIONS(1891), - [aux_sym_cmd_identifier_token21] = ACTIONS(1891), - [aux_sym_cmd_identifier_token22] = ACTIONS(1891), - [aux_sym_cmd_identifier_token23] = ACTIONS(1891), - [aux_sym_cmd_identifier_token24] = ACTIONS(1891), - [aux_sym_cmd_identifier_token25] = ACTIONS(1891), - [aux_sym_cmd_identifier_token26] = ACTIONS(1891), - [aux_sym_cmd_identifier_token27] = ACTIONS(1891), - [aux_sym_cmd_identifier_token28] = ACTIONS(1891), - [aux_sym_cmd_identifier_token29] = ACTIONS(1891), - [aux_sym_cmd_identifier_token30] = ACTIONS(1891), - [aux_sym_cmd_identifier_token31] = ACTIONS(1891), - [aux_sym_cmd_identifier_token32] = ACTIONS(1891), - [aux_sym_cmd_identifier_token33] = ACTIONS(1891), - [aux_sym_cmd_identifier_token34] = ACTIONS(1889), - [aux_sym_cmd_identifier_token35] = ACTIONS(1891), - [aux_sym_cmd_identifier_token36] = ACTIONS(1891), - [aux_sym_cmd_identifier_token37] = ACTIONS(1891), - [aux_sym_cmd_identifier_token38] = ACTIONS(1889), - [aux_sym_cmd_identifier_token39] = ACTIONS(1891), - [aux_sym_cmd_identifier_token40] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1889), - [anon_sym_export_DASHenv] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_in2] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_make] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_catch] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_source] = ACTIONS(1889), - [anon_sym_source_DASHenv] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_hide] = ACTIONS(1889), - [anon_sym_hide_DASHenv] = ACTIONS(1889), - [anon_sym_overlay] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1889), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1891), - }, - [473] = { - [sym_comment] = STATE(473), - [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(2114), - [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(251), - [sym_raw_string_begin] = ACTIONS(992), - }, - [474] = { - [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_alias] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_let_DASHenv] = ACTIONS(1012), - [anon_sym_mut] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [aux_sym_cmd_identifier_token1] = ACTIONS(1012), - [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(1012), - [aux_sym_cmd_identifier_token9] = ACTIONS(1012), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1012), - [aux_sym_cmd_identifier_token13] = ACTIONS(1012), - [aux_sym_cmd_identifier_token14] = ACTIONS(1012), - [aux_sym_cmd_identifier_token15] = ACTIONS(1012), - [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(1012), - [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(1012), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1012), - [anon_sym_export_DASHenv] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_make] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_catch] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_source] = ACTIONS(1012), - [anon_sym_source_DASHenv] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_hide] = ACTIONS(1012), - [anon_sym_hide_DASHenv] = ACTIONS(1012), - [anon_sym_overlay] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), - }, - [475] = { - [sym_cell_path] = STATE(715), - [sym_path] = STATE(679), - [sym_comment] = STATE(475), - [aux_sym_cell_path_repeat1] = STATE(564), - [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(1895), - [aux_sym_cmd_identifier_token3] = ACTIONS(1895), - [aux_sym_cmd_identifier_token4] = ACTIONS(1895), - [aux_sym_cmd_identifier_token5] = ACTIONS(1895), - [aux_sym_cmd_identifier_token6] = ACTIONS(1895), - [aux_sym_cmd_identifier_token7] = ACTIONS(1895), - [aux_sym_cmd_identifier_token8] = ACTIONS(1893), - [aux_sym_cmd_identifier_token9] = ACTIONS(1893), - [aux_sym_cmd_identifier_token10] = ACTIONS(1895), - [aux_sym_cmd_identifier_token11] = ACTIONS(1895), - [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(1895), - [aux_sym_cmd_identifier_token17] = ACTIONS(1895), - [aux_sym_cmd_identifier_token18] = ACTIONS(1895), - [aux_sym_cmd_identifier_token19] = ACTIONS(1895), - [aux_sym_cmd_identifier_token20] = ACTIONS(1895), - [aux_sym_cmd_identifier_token21] = ACTIONS(1895), - [aux_sym_cmd_identifier_token22] = ACTIONS(1895), - [aux_sym_cmd_identifier_token23] = ACTIONS(1895), - [aux_sym_cmd_identifier_token24] = ACTIONS(1895), - [aux_sym_cmd_identifier_token25] = ACTIONS(1895), - [aux_sym_cmd_identifier_token26] = ACTIONS(1895), - [aux_sym_cmd_identifier_token27] = ACTIONS(1895), - [aux_sym_cmd_identifier_token28] = ACTIONS(1895), - [aux_sym_cmd_identifier_token29] = ACTIONS(1895), - [aux_sym_cmd_identifier_token30] = ACTIONS(1895), - [aux_sym_cmd_identifier_token31] = ACTIONS(1895), - [aux_sym_cmd_identifier_token32] = ACTIONS(1895), - [aux_sym_cmd_identifier_token33] = ACTIONS(1895), - [aux_sym_cmd_identifier_token34] = ACTIONS(1893), - [aux_sym_cmd_identifier_token35] = ACTIONS(1895), - [aux_sym_cmd_identifier_token36] = ACTIONS(1895), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_in2] = 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_as] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(2068), - [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), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = ACTIONS(1893), - [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_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1895), - }, - [476] = { - [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), - [aux_sym_cmd_identifier_token37] = ACTIONS(1056), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1056), - [aux_sym_cmd_identifier_token40] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1056), - [aux_sym__val_number_decimal_token4] = ACTIONS(1056), - [aux_sym__val_number_token1] = ACTIONS(1056), - [aux_sym__val_number_token2] = ACTIONS(1056), - [aux_sym__val_number_token3] = ACTIONS(1056), - [aux_sym__val_number_token4] = ACTIONS(1056), - [aux_sym__val_number_token5] = ACTIONS(1056), - [aux_sym__val_number_token6] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym__str_single_quotes] = ACTIONS(1056), - [sym__str_back_ticks] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), - [sym__entry_separator] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1058), - }, - [477] = { - [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [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(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [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(1008), - [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(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(1000), + [anon_sym_alias] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_let_DASHenv] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [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(1000), + [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1000), + [aux_sym_cmd_identifier_token13] = ACTIONS(1000), + [aux_sym_cmd_identifier_token14] = ACTIONS(1000), + [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [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(1000), + [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(1000), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1000), + [anon_sym_export_DASHenv] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_use] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_loop] = ACTIONS(1000), + [anon_sym_make] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_source] = ACTIONS(1000), + [anon_sym_source_DASHenv] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_hide_DASHenv] = ACTIONS(1000), + [anon_sym_overlay] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [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), + [aux_sym_record_entry_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [sym_raw_string_begin] = ACTIONS(1002), }, - [478] = { - [sym_comment] = STATE(478), + [463] = { + [sym_comment] = STATE(463), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_let] = ACTIONS(1004), @@ -135296,8 +136260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1006), }, - [479] = { - [sym_comment] = STATE(479), + [464] = { + [sym_comment] = STATE(464), [anon_sym_export] = ACTIONS(996), [anon_sym_alias] = ACTIONS(996), [anon_sym_let] = ACTIONS(996), @@ -135399,937 +136363,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(998), }, - [480] = { - [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [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(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [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(1000), - [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(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [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), - [aux_sym_record_entry_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [481] = { - [sym_cell_path] = STATE(744), - [sym_path] = STATE(679), - [sym_comment] = STATE(481), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(973), - [anon_sym_alias] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_let_DASHenv] = ACTIONS(973), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [aux_sym_cmd_identifier_token1] = ACTIONS(973), - [aux_sym_cmd_identifier_token2] = ACTIONS(975), - [aux_sym_cmd_identifier_token3] = ACTIONS(975), - [aux_sym_cmd_identifier_token4] = ACTIONS(975), - [aux_sym_cmd_identifier_token5] = ACTIONS(975), - [aux_sym_cmd_identifier_token6] = ACTIONS(975), - [aux_sym_cmd_identifier_token7] = ACTIONS(975), - [aux_sym_cmd_identifier_token8] = ACTIONS(973), - [aux_sym_cmd_identifier_token9] = ACTIONS(973), - [aux_sym_cmd_identifier_token10] = ACTIONS(975), - [aux_sym_cmd_identifier_token11] = ACTIONS(975), - [aux_sym_cmd_identifier_token12] = ACTIONS(973), - [aux_sym_cmd_identifier_token13] = ACTIONS(973), - [aux_sym_cmd_identifier_token14] = ACTIONS(973), - [aux_sym_cmd_identifier_token15] = ACTIONS(973), - [aux_sym_cmd_identifier_token16] = ACTIONS(975), - [aux_sym_cmd_identifier_token17] = ACTIONS(975), - [aux_sym_cmd_identifier_token18] = ACTIONS(975), - [aux_sym_cmd_identifier_token19] = ACTIONS(975), - [aux_sym_cmd_identifier_token20] = ACTIONS(975), - [aux_sym_cmd_identifier_token21] = ACTIONS(975), - [aux_sym_cmd_identifier_token22] = ACTIONS(975), - [aux_sym_cmd_identifier_token23] = ACTIONS(975), - [aux_sym_cmd_identifier_token24] = ACTIONS(975), - [aux_sym_cmd_identifier_token25] = ACTIONS(975), - [aux_sym_cmd_identifier_token26] = ACTIONS(975), - [aux_sym_cmd_identifier_token27] = ACTIONS(975), - [aux_sym_cmd_identifier_token28] = ACTIONS(975), - [aux_sym_cmd_identifier_token29] = ACTIONS(975), - [aux_sym_cmd_identifier_token30] = ACTIONS(975), - [aux_sym_cmd_identifier_token31] = ACTIONS(975), - [aux_sym_cmd_identifier_token32] = ACTIONS(975), - [aux_sym_cmd_identifier_token33] = ACTIONS(975), - [aux_sym_cmd_identifier_token34] = ACTIONS(973), - [aux_sym_cmd_identifier_token35] = ACTIONS(975), - [aux_sym_cmd_identifier_token36] = ACTIONS(975), - [aux_sym_cmd_identifier_token37] = ACTIONS(975), - [aux_sym_cmd_identifier_token38] = ACTIONS(973), - [aux_sym_cmd_identifier_token39] = ACTIONS(975), - [aux_sym_cmd_identifier_token40] = ACTIONS(975), - [anon_sym_def] = ACTIONS(973), - [anon_sym_export_DASHenv] = ACTIONS(973), - [anon_sym_extern] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_make] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(973), - [anon_sym_catch] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_source] = ACTIONS(973), - [anon_sym_source_DASHenv] = ACTIONS(973), - [anon_sym_register] = ACTIONS(973), - [anon_sym_hide] = ACTIONS(973), - [anon_sym_hide_DASHenv] = ACTIONS(973), - [anon_sym_overlay] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), - }, - [482] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(679), - [sym_comment] = STATE(482), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(2036), - [anon_sym_alias] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_let_DASHenv] = ACTIONS(2036), - [anon_sym_mut] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [aux_sym_cmd_identifier_token1] = ACTIONS(2036), - [aux_sym_cmd_identifier_token2] = ACTIONS(2038), - [aux_sym_cmd_identifier_token3] = ACTIONS(2038), - [aux_sym_cmd_identifier_token4] = ACTIONS(2038), - [aux_sym_cmd_identifier_token5] = ACTIONS(2038), - [aux_sym_cmd_identifier_token6] = ACTIONS(2038), - [aux_sym_cmd_identifier_token7] = ACTIONS(2038), - [aux_sym_cmd_identifier_token8] = ACTIONS(2036), - [aux_sym_cmd_identifier_token9] = ACTIONS(2036), - [aux_sym_cmd_identifier_token10] = ACTIONS(2038), - [aux_sym_cmd_identifier_token11] = ACTIONS(2038), - [aux_sym_cmd_identifier_token12] = ACTIONS(2036), - [aux_sym_cmd_identifier_token13] = ACTIONS(2036), - [aux_sym_cmd_identifier_token14] = ACTIONS(2036), - [aux_sym_cmd_identifier_token15] = ACTIONS(2036), - [aux_sym_cmd_identifier_token16] = ACTIONS(2038), - [aux_sym_cmd_identifier_token17] = ACTIONS(2038), - [aux_sym_cmd_identifier_token18] = ACTIONS(2038), - [aux_sym_cmd_identifier_token19] = ACTIONS(2038), - [aux_sym_cmd_identifier_token20] = ACTIONS(2038), - [aux_sym_cmd_identifier_token21] = ACTIONS(2038), - [aux_sym_cmd_identifier_token22] = ACTIONS(2038), - [aux_sym_cmd_identifier_token23] = ACTIONS(2038), - [aux_sym_cmd_identifier_token24] = ACTIONS(2038), - [aux_sym_cmd_identifier_token25] = ACTIONS(2038), - [aux_sym_cmd_identifier_token26] = ACTIONS(2038), - [aux_sym_cmd_identifier_token27] = ACTIONS(2038), - [aux_sym_cmd_identifier_token28] = ACTIONS(2038), - [aux_sym_cmd_identifier_token29] = ACTIONS(2038), - [aux_sym_cmd_identifier_token30] = ACTIONS(2038), - [aux_sym_cmd_identifier_token31] = ACTIONS(2038), - [aux_sym_cmd_identifier_token32] = ACTIONS(2038), - [aux_sym_cmd_identifier_token33] = ACTIONS(2038), - [aux_sym_cmd_identifier_token34] = ACTIONS(2036), - [aux_sym_cmd_identifier_token35] = ACTIONS(2038), - [aux_sym_cmd_identifier_token36] = ACTIONS(2038), - [aux_sym_cmd_identifier_token37] = ACTIONS(2038), - [aux_sym_cmd_identifier_token38] = ACTIONS(2036), - [aux_sym_cmd_identifier_token39] = ACTIONS(2038), - [aux_sym_cmd_identifier_token40] = ACTIONS(2038), - [anon_sym_def] = ACTIONS(2036), - [anon_sym_export_DASHenv] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_module] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_DOLLAR] = ACTIONS(2038), - [anon_sym_error] = ACTIONS(2036), - [anon_sym_DASH2] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_in2] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_make] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_do] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_else] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_try] = ACTIONS(2036), - [anon_sym_catch] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_source] = ACTIONS(2036), - [anon_sym_source_DASHenv] = ACTIONS(2036), - [anon_sym_register] = ACTIONS(2036), - [anon_sym_hide] = ACTIONS(2036), - [anon_sym_hide_DASHenv] = ACTIONS(2036), - [anon_sym_overlay] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_PLUS2] = ACTIONS(2036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2038), - [aux_sym__val_number_decimal_token1] = ACTIONS(2036), - [aux_sym__val_number_decimal_token2] = ACTIONS(2038), - [aux_sym__val_number_decimal_token3] = ACTIONS(2038), - [aux_sym__val_number_decimal_token4] = ACTIONS(2038), - [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(2036), - [aux_sym__val_number_token5] = ACTIONS(2036), - [aux_sym__val_number_token6] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2038), - [sym__str_single_quotes] = ACTIONS(2038), - [sym__str_back_ticks] = ACTIONS(2038), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2038), - }, - [483] = { - [sym_cell_path] = STATE(737), - [sym_path] = STATE(679), - [sym_comment] = STATE(483), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(2040), - [anon_sym_alias] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_let_DASHenv] = ACTIONS(2040), - [anon_sym_mut] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [aux_sym_cmd_identifier_token1] = ACTIONS(2040), - [aux_sym_cmd_identifier_token2] = ACTIONS(2042), - [aux_sym_cmd_identifier_token3] = ACTIONS(2042), - [aux_sym_cmd_identifier_token4] = ACTIONS(2042), - [aux_sym_cmd_identifier_token5] = ACTIONS(2042), - [aux_sym_cmd_identifier_token6] = ACTIONS(2042), - [aux_sym_cmd_identifier_token7] = ACTIONS(2042), - [aux_sym_cmd_identifier_token8] = ACTIONS(2040), - [aux_sym_cmd_identifier_token9] = ACTIONS(2040), - [aux_sym_cmd_identifier_token10] = ACTIONS(2042), - [aux_sym_cmd_identifier_token11] = ACTIONS(2042), - [aux_sym_cmd_identifier_token12] = ACTIONS(2040), - [aux_sym_cmd_identifier_token13] = ACTIONS(2040), - [aux_sym_cmd_identifier_token14] = ACTIONS(2040), - [aux_sym_cmd_identifier_token15] = ACTIONS(2040), - [aux_sym_cmd_identifier_token16] = ACTIONS(2042), - [aux_sym_cmd_identifier_token17] = ACTIONS(2042), - [aux_sym_cmd_identifier_token18] = ACTIONS(2042), - [aux_sym_cmd_identifier_token19] = ACTIONS(2042), - [aux_sym_cmd_identifier_token20] = ACTIONS(2042), - [aux_sym_cmd_identifier_token21] = ACTIONS(2042), - [aux_sym_cmd_identifier_token22] = ACTIONS(2042), - [aux_sym_cmd_identifier_token23] = ACTIONS(2042), - [aux_sym_cmd_identifier_token24] = ACTIONS(2042), - [aux_sym_cmd_identifier_token25] = ACTIONS(2042), - [aux_sym_cmd_identifier_token26] = ACTIONS(2042), - [aux_sym_cmd_identifier_token27] = ACTIONS(2042), - [aux_sym_cmd_identifier_token28] = ACTIONS(2042), - [aux_sym_cmd_identifier_token29] = ACTIONS(2042), - [aux_sym_cmd_identifier_token30] = ACTIONS(2042), - [aux_sym_cmd_identifier_token31] = ACTIONS(2042), - [aux_sym_cmd_identifier_token32] = ACTIONS(2042), - [aux_sym_cmd_identifier_token33] = ACTIONS(2042), - [aux_sym_cmd_identifier_token34] = ACTIONS(2040), - [aux_sym_cmd_identifier_token35] = ACTIONS(2042), - [aux_sym_cmd_identifier_token36] = ACTIONS(2042), - [aux_sym_cmd_identifier_token37] = ACTIONS(2042), - [aux_sym_cmd_identifier_token38] = ACTIONS(2040), - [aux_sym_cmd_identifier_token39] = ACTIONS(2042), - [aux_sym_cmd_identifier_token40] = ACTIONS(2042), - [anon_sym_def] = ACTIONS(2040), - [anon_sym_export_DASHenv] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_module] = ACTIONS(2040), - [anon_sym_use] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2042), - [anon_sym_error] = ACTIONS(2040), - [anon_sym_DASH2] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_in2] = ACTIONS(2040), - [anon_sym_loop] = ACTIONS(2040), - [anon_sym_make] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2042), - [anon_sym_try] = ACTIONS(2040), - [anon_sym_catch] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_source] = ACTIONS(2040), - [anon_sym_source_DASHenv] = ACTIONS(2040), - [anon_sym_register] = ACTIONS(2040), - [anon_sym_hide] = ACTIONS(2040), - [anon_sym_hide_DASHenv] = ACTIONS(2040), - [anon_sym_overlay] = ACTIONS(2040), - [anon_sym_as] = ACTIONS(2040), - [anon_sym_PLUS2] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2042), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2042), - [aux_sym__val_number_decimal_token1] = ACTIONS(2040), - [aux_sym__val_number_decimal_token2] = ACTIONS(2042), - [aux_sym__val_number_decimal_token3] = ACTIONS(2042), - [aux_sym__val_number_decimal_token4] = ACTIONS(2042), - [aux_sym__val_number_token1] = ACTIONS(2042), - [aux_sym__val_number_token2] = ACTIONS(2042), - [aux_sym__val_number_token3] = ACTIONS(2042), - [aux_sym__val_number_token4] = ACTIONS(2040), - [aux_sym__val_number_token5] = ACTIONS(2040), - [aux_sym__val_number_token6] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2042), - [sym__str_single_quotes] = ACTIONS(2042), - [sym__str_back_ticks] = ACTIONS(2042), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2042), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2042), - }, - [484] = { - [sym_expr_parenthesized] = STATE(4418), - [sym__spread_parenthesized] = STATE(4803), - [sym_val_range] = STATE(4939), - [sym__val_range] = STATE(7833), - [sym__val_range_with_end] = STATE(7538), - [sym__value] = STATE(4939), - [sym_val_nothing] = STATE(4902), - [sym_val_bool] = STATE(4543), - [sym__spread_variable] = STATE(4951), - [sym_val_variable] = STATE(4356), - [sym_val_number] = STATE(4902), - [sym__val_number_decimal] = STATE(4080), - [sym__val_number] = STATE(4970), - [sym_val_duration] = STATE(4902), - [sym_val_filesize] = STATE(4902), - [sym_val_binary] = STATE(4902), - [sym_val_string] = STATE(4902), - [sym__raw_str] = STATE(4591), - [sym__str_double_quotes] = STATE(4591), - [sym_val_interpolated] = STATE(4902), - [sym__inter_single_quotes] = STATE(4933), - [sym__inter_double_quotes] = STATE(4935), - [sym_val_list] = STATE(4902), - [sym__spread_list] = STATE(4803), - [sym_val_record] = STATE(4902), - [sym_val_table] = STATE(4902), - [sym_val_closure] = STATE(4902), - [sym__cmd_arg] = STATE(4953), - [sym_redirection] = STATE(4963), - [sym_short_flag] = STATE(4969), - [sym_long_flag] = STATE(4969), - [sym_unquoted] = STATE(4619), - [sym__unquoted_with_expr] = STATE(4989), - [sym__unquoted_anonymous_prefix] = STATE(7200), - [sym_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1975), - [sym__newline] = ACTIONS(1973), - [sym__space] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_err_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_GT_PIPE] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_DASH2] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_DOT_DOT] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2132), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2134), - [anon_sym_DOT_DOT_LT] = ACTIONS(2134), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_true] = ACTIONS(2138), - [anon_sym_false] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2140), - [aux_sym__val_number_decimal_token1] = ACTIONS(2142), - [aux_sym__val_number_decimal_token2] = ACTIONS(2142), - [aux_sym__val_number_decimal_token3] = ACTIONS(2144), - [aux_sym__val_number_decimal_token4] = ACTIONS(2146), - [aux_sym__val_number_token1] = ACTIONS(2148), - [aux_sym__val_number_token2] = ACTIONS(2148), - [aux_sym__val_number_token3] = ACTIONS(2148), - [aux_sym__val_number_token4] = ACTIONS(2150), - [aux_sym__val_number_token5] = ACTIONS(2150), - [aux_sym__val_number_token6] = ACTIONS(2150), - [anon_sym_0b] = ACTIONS(2152), - [anon_sym_0o] = ACTIONS(2154), - [anon_sym_0x] = ACTIONS(2154), - [sym_val_date] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym__str_single_quotes] = ACTIONS(2160), - [sym__str_back_ticks] = ACTIONS(2160), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2162), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2164), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2166), - [anon_sym_err_GT] = ACTIONS(2168), - [anon_sym_out_GT] = ACTIONS(2168), - [anon_sym_e_GT] = ACTIONS(2168), - [anon_sym_o_GT] = ACTIONS(2168), - [anon_sym_err_PLUSout_GT] = ACTIONS(2168), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), - [anon_sym_o_PLUSe_GT] = ACTIONS(2168), - [anon_sym_e_PLUSo_GT] = ACTIONS(2168), - [anon_sym_err_GT_GT] = ACTIONS(2168), - [anon_sym_out_GT_GT] = ACTIONS(2168), - [anon_sym_e_GT_GT] = ACTIONS(2168), - [anon_sym_o_GT_GT] = ACTIONS(2168), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2168), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2168), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2168), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2168), - [aux_sym_unquoted_token1] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2172), - }, - [485] = { - [sym_cell_path] = STATE(738), - [sym_path] = STATE(679), - [sym_comment] = STATE(485), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(2044), - [anon_sym_alias] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_let_DASHenv] = ACTIONS(2044), - [anon_sym_mut] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [aux_sym_cmd_identifier_token1] = ACTIONS(2044), - [aux_sym_cmd_identifier_token2] = ACTIONS(2046), - [aux_sym_cmd_identifier_token3] = ACTIONS(2046), - [aux_sym_cmd_identifier_token4] = ACTIONS(2046), - [aux_sym_cmd_identifier_token5] = ACTIONS(2046), - [aux_sym_cmd_identifier_token6] = ACTIONS(2046), - [aux_sym_cmd_identifier_token7] = ACTIONS(2046), - [aux_sym_cmd_identifier_token8] = ACTIONS(2044), - [aux_sym_cmd_identifier_token9] = ACTIONS(2044), - [aux_sym_cmd_identifier_token10] = ACTIONS(2046), - [aux_sym_cmd_identifier_token11] = ACTIONS(2046), - [aux_sym_cmd_identifier_token12] = ACTIONS(2044), - [aux_sym_cmd_identifier_token13] = ACTIONS(2044), - [aux_sym_cmd_identifier_token14] = ACTIONS(2044), - [aux_sym_cmd_identifier_token15] = ACTIONS(2044), - [aux_sym_cmd_identifier_token16] = ACTIONS(2046), - [aux_sym_cmd_identifier_token17] = ACTIONS(2046), - [aux_sym_cmd_identifier_token18] = ACTIONS(2046), - [aux_sym_cmd_identifier_token19] = ACTIONS(2046), - [aux_sym_cmd_identifier_token20] = ACTIONS(2046), - [aux_sym_cmd_identifier_token21] = ACTIONS(2046), - [aux_sym_cmd_identifier_token22] = ACTIONS(2046), - [aux_sym_cmd_identifier_token23] = ACTIONS(2046), - [aux_sym_cmd_identifier_token24] = ACTIONS(2046), - [aux_sym_cmd_identifier_token25] = ACTIONS(2046), - [aux_sym_cmd_identifier_token26] = ACTIONS(2046), - [aux_sym_cmd_identifier_token27] = ACTIONS(2046), - [aux_sym_cmd_identifier_token28] = ACTIONS(2046), - [aux_sym_cmd_identifier_token29] = ACTIONS(2046), - [aux_sym_cmd_identifier_token30] = ACTIONS(2046), - [aux_sym_cmd_identifier_token31] = ACTIONS(2046), - [aux_sym_cmd_identifier_token32] = ACTIONS(2046), - [aux_sym_cmd_identifier_token33] = ACTIONS(2046), - [aux_sym_cmd_identifier_token34] = ACTIONS(2044), - [aux_sym_cmd_identifier_token35] = ACTIONS(2046), - [aux_sym_cmd_identifier_token36] = ACTIONS(2046), - [aux_sym_cmd_identifier_token37] = ACTIONS(2046), - [aux_sym_cmd_identifier_token38] = ACTIONS(2044), - [aux_sym_cmd_identifier_token39] = ACTIONS(2046), - [aux_sym_cmd_identifier_token40] = ACTIONS(2046), - [anon_sym_def] = ACTIONS(2044), - [anon_sym_export_DASHenv] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_module] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2046), - [anon_sym_error] = ACTIONS(2044), - [anon_sym_DASH2] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_in2] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_make] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_do] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_else] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_try] = ACTIONS(2044), - [anon_sym_catch] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_source] = ACTIONS(2044), - [anon_sym_source_DASHenv] = ACTIONS(2044), - [anon_sym_register] = ACTIONS(2044), - [anon_sym_hide] = ACTIONS(2044), - [anon_sym_hide_DASHenv] = ACTIONS(2044), - [anon_sym_overlay] = ACTIONS(2044), - [anon_sym_as] = ACTIONS(2044), - [anon_sym_PLUS2] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2046), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2046), - [aux_sym__val_number_decimal_token1] = ACTIONS(2044), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2046), - [aux_sym__val_number_decimal_token4] = ACTIONS(2046), - [aux_sym__val_number_token1] = ACTIONS(2046), - [aux_sym__val_number_token2] = ACTIONS(2046), - [aux_sym__val_number_token3] = ACTIONS(2046), - [aux_sym__val_number_token4] = ACTIONS(2044), - [aux_sym__val_number_token5] = ACTIONS(2044), - [aux_sym__val_number_token6] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2046), - [sym__str_single_quotes] = ACTIONS(2046), - [sym__str_back_ticks] = ACTIONS(2046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2046), - }, - [486] = { - [sym_expr_parenthesized] = STATE(4304), - [sym__spread_parenthesized] = STATE(4743), - [sym_val_range] = STATE(4744), - [sym__val_range] = STATE(7850), - [sym__val_range_with_end] = STATE(7616), - [sym__value] = STATE(4744), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(4451), - [sym__spread_variable] = STATE(4745), - [sym_val_variable] = STATE(4233), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(4046), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym__spread_list] = STATE(4743), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym__cmd_arg] = STATE(4802), - [sym_redirection] = STATE(4747), - [sym_short_flag] = STATE(4749), - [sym_long_flag] = STATE(4749), - [sym_unquoted] = STATE(4472), - [sym__unquoted_with_expr] = STATE(4759), - [sym__unquoted_anonymous_prefix] = STATE(7251), - [sym_comment] = STATE(486), - [sym__newline] = ACTIONS(2174), - [sym__space] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_err_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_GT_PIPE] = ACTIONS(2174), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2174), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2174), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2174), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), - [anon_sym_DOT_DOT_LT] = ACTIONS(1993), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2001), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2005), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2021), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2025), - [anon_sym_err_GT] = ACTIONS(2027), - [anon_sym_out_GT] = ACTIONS(2027), - [anon_sym_e_GT] = ACTIONS(2027), - [anon_sym_o_GT] = ACTIONS(2027), - [anon_sym_err_PLUSout_GT] = ACTIONS(2027), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2027), - [anon_sym_o_PLUSe_GT] = ACTIONS(2027), - [anon_sym_e_PLUSo_GT] = ACTIONS(2027), - [anon_sym_err_GT_GT] = ACTIONS(2027), - [anon_sym_out_GT_GT] = ACTIONS(2027), - [anon_sym_e_GT_GT] = ACTIONS(2027), - [anon_sym_o_GT_GT] = ACTIONS(2027), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2027), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2027), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2027), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2027), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2031), - }, - [487] = { - [sym_cell_path] = STATE(720), - [sym_path] = STATE(679), - [sym_comment] = STATE(487), - [aux_sym_cell_path_repeat1] = STATE(564), - [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(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1897), - [aux_sym_cmd_identifier_token9] = ACTIONS(1897), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [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(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1897), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in2] = 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_as] = ACTIONS(1897), - [anon_sym_PLUS2] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(2068), - [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), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = ACTIONS(1897), - [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_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1899), - }, - [488] = { - [sym_cell_path] = STATE(719), - [sym_path] = STATE(679), - [sym_comment] = STATE(488), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1883), - [aux_sym_cmd_identifier_token3] = ACTIONS(1883), - [aux_sym_cmd_identifier_token4] = ACTIONS(1883), - [aux_sym_cmd_identifier_token5] = ACTIONS(1883), - [aux_sym_cmd_identifier_token6] = ACTIONS(1883), - [aux_sym_cmd_identifier_token7] = ACTIONS(1883), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1883), - [aux_sym_cmd_identifier_token11] = ACTIONS(1883), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1883), - [aux_sym_cmd_identifier_token17] = ACTIONS(1883), - [aux_sym_cmd_identifier_token18] = ACTIONS(1883), - [aux_sym_cmd_identifier_token19] = ACTIONS(1883), - [aux_sym_cmd_identifier_token20] = ACTIONS(1883), - [aux_sym_cmd_identifier_token21] = ACTIONS(1883), - [aux_sym_cmd_identifier_token22] = ACTIONS(1883), - [aux_sym_cmd_identifier_token23] = ACTIONS(1883), - [aux_sym_cmd_identifier_token24] = ACTIONS(1883), - [aux_sym_cmd_identifier_token25] = ACTIONS(1883), - [aux_sym_cmd_identifier_token26] = ACTIONS(1883), - [aux_sym_cmd_identifier_token27] = ACTIONS(1883), - [aux_sym_cmd_identifier_token28] = ACTIONS(1883), - [aux_sym_cmd_identifier_token29] = ACTIONS(1883), - [aux_sym_cmd_identifier_token30] = ACTIONS(1883), - [aux_sym_cmd_identifier_token31] = ACTIONS(1883), - [aux_sym_cmd_identifier_token32] = ACTIONS(1883), - [aux_sym_cmd_identifier_token33] = ACTIONS(1883), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1883), - [aux_sym_cmd_identifier_token36] = ACTIONS(1883), - [aux_sym_cmd_identifier_token37] = ACTIONS(1883), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1883), - [aux_sym_cmd_identifier_token40] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in2] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS2] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [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), - [aux_sym__val_number_token4] = ACTIONS(1879), - [aux_sym__val_number_token5] = ACTIONS(1879), - [aux_sym__val_number_token6] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1883), - [sym__str_single_quotes] = ACTIONS(1883), - [sym__str_back_ticks] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1883), - }, - [489] = { - [sym_path] = STATE(605), - [sym_comment] = STATE(489), - [aux_sym_cell_path_repeat1] = STATE(490), + [465] = { + [sym_comment] = STATE(465), [anon_sym_export] = ACTIONS(986), [anon_sym_alias] = ACTIONS(986), [anon_sym_let] = ACTIONS(986), @@ -136337,52 +136372,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(986), [anon_sym_const] = ACTIONS(986), [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), [aux_sym_cmd_identifier_token8] = ACTIONS(986), [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), [aux_sym_cmd_identifier_token12] = ACTIONS(986), [aux_sym_cmd_identifier_token13] = ACTIONS(986), [aux_sym_cmd_identifier_token14] = ACTIONS(986), [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [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_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = ACTIONS(988), [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), [anon_sym_def] = ACTIONS(986), [anon_sym_export_DASHenv] = ACTIONS(986), [anon_sym_extern] = ACTIONS(986), [anon_sym_module] = ACTIONS(986), [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), [anon_sym_error] = ACTIONS(986), [anon_sym_DASH2] = ACTIONS(986), [anon_sym_break] = ACTIONS(986), @@ -136396,7 +136432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(986), [anon_sym_else] = ACTIONS(986), [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), [anon_sym_try] = ACTIONS(986), [anon_sym_catch] = ACTIONS(986), [anon_sym_return] = ACTIONS(986), @@ -136407,545 +136443,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(986), [anon_sym_overlay] = ACTIONS(986), [anon_sym_as] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(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_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), [aux_sym__val_number_token4] = ACTIONS(986), [aux_sym__val_number_token5] = ACTIONS(986), [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [aux_sym_record_entry_token1] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(988), }, - [490] = { - [sym_path] = STATE(605), - [sym_comment] = STATE(490), - [aux_sym_cell_path_repeat1] = STATE(490), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [aux_sym_cmd_identifier_token1] = ACTIONS(979), - [aux_sym_cmd_identifier_token2] = ACTIONS(979), - [aux_sym_cmd_identifier_token3] = ACTIONS(979), - [aux_sym_cmd_identifier_token4] = ACTIONS(979), - [aux_sym_cmd_identifier_token5] = ACTIONS(979), - [aux_sym_cmd_identifier_token6] = ACTIONS(979), - [aux_sym_cmd_identifier_token7] = ACTIONS(979), - [aux_sym_cmd_identifier_token8] = ACTIONS(979), - [aux_sym_cmd_identifier_token9] = ACTIONS(979), - [aux_sym_cmd_identifier_token10] = ACTIONS(979), - [aux_sym_cmd_identifier_token11] = ACTIONS(979), - [aux_sym_cmd_identifier_token12] = ACTIONS(979), - [aux_sym_cmd_identifier_token13] = ACTIONS(979), - [aux_sym_cmd_identifier_token14] = ACTIONS(979), - [aux_sym_cmd_identifier_token15] = ACTIONS(979), - [aux_sym_cmd_identifier_token16] = ACTIONS(979), - [aux_sym_cmd_identifier_token17] = ACTIONS(979), - [aux_sym_cmd_identifier_token18] = ACTIONS(979), - [aux_sym_cmd_identifier_token19] = ACTIONS(979), - [aux_sym_cmd_identifier_token20] = ACTIONS(979), - [aux_sym_cmd_identifier_token21] = ACTIONS(979), - [aux_sym_cmd_identifier_token22] = ACTIONS(979), - [aux_sym_cmd_identifier_token23] = ACTIONS(979), - [aux_sym_cmd_identifier_token24] = ACTIONS(979), - [aux_sym_cmd_identifier_token25] = ACTIONS(979), - [aux_sym_cmd_identifier_token26] = ACTIONS(979), - [aux_sym_cmd_identifier_token27] = ACTIONS(979), - [aux_sym_cmd_identifier_token28] = ACTIONS(979), - [aux_sym_cmd_identifier_token29] = ACTIONS(979), - [aux_sym_cmd_identifier_token30] = ACTIONS(979), - [aux_sym_cmd_identifier_token31] = ACTIONS(979), - [aux_sym_cmd_identifier_token32] = ACTIONS(979), - [aux_sym_cmd_identifier_token33] = ACTIONS(979), - [aux_sym_cmd_identifier_token34] = ACTIONS(979), - [aux_sym_cmd_identifier_token35] = ACTIONS(979), - [aux_sym_cmd_identifier_token36] = ACTIONS(979), - [aux_sym_cmd_identifier_token37] = ACTIONS(979), - [aux_sym_cmd_identifier_token38] = ACTIONS(979), - [aux_sym_cmd_identifier_token39] = ACTIONS(979), - [aux_sym_cmd_identifier_token40] = ACTIONS(979), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(979), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(979), - [aux_sym__val_number_decimal_token3] = ACTIONS(979), - [aux_sym__val_number_decimal_token4] = ACTIONS(979), - [aux_sym__val_number_token1] = ACTIONS(979), - [aux_sym__val_number_token2] = ACTIONS(979), - [aux_sym__val_number_token3] = ACTIONS(979), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [sym__str_single_quotes] = ACTIONS(979), - [sym__str_back_ticks] = ACTIONS(979), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(979), - [sym__entry_separator] = ACTIONS(981), + [466] = { + [sym_cell_path] = STATE(707), + [sym_path] = STATE(659), + [sym_comment] = STATE(466), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(969), + [anon_sym_alias] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_let_DASHenv] = ACTIONS(969), + [anon_sym_mut] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [aux_sym_cmd_identifier_token1] = ACTIONS(969), + [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(969), + [aux_sym_cmd_identifier_token9] = ACTIONS(969), + [aux_sym_cmd_identifier_token10] = ACTIONS(971), + [aux_sym_cmd_identifier_token11] = ACTIONS(971), + [aux_sym_cmd_identifier_token12] = ACTIONS(969), + [aux_sym_cmd_identifier_token13] = ACTIONS(969), + [aux_sym_cmd_identifier_token14] = ACTIONS(969), + [aux_sym_cmd_identifier_token15] = ACTIONS(969), + [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(969), + [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(969), + [aux_sym_cmd_identifier_token39] = ACTIONS(971), + [aux_sym_cmd_identifier_token40] = ACTIONS(971), + [anon_sym_def] = ACTIONS(969), + [anon_sym_export_DASHenv] = ACTIONS(969), + [anon_sym_extern] = ACTIONS(969), + [anon_sym_module] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_error] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_make] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_do] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_source] = ACTIONS(969), + [anon_sym_source_DASHenv] = ACTIONS(969), + [anon_sym_register] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_hide_DASHenv] = ACTIONS(969), + [anon_sym_overlay] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), + }, + [467] = { + [sym_expr_parenthesized] = STATE(4520), + [sym__spread_parenthesized] = STATE(4974), + [sym_val_range] = STATE(4975), + [sym__val_range] = STATE(8671), + [sym__val_range_with_end] = STATE(8119), + [sym__value] = STATE(4975), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(4583), + [sym__spread_variable] = STATE(4976), + [sym_val_variable] = STATE(4532), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(4283), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym__spread_list] = STATE(4974), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym__cmd_arg] = STATE(5207), + [sym_redirection] = STATE(4979), + [sym_short_flag] = STATE(4980), + [sym_long_flag] = STATE(4980), + [sym_unquoted] = STATE(4666), + [sym__unquoted_with_expr] = STATE(4984), + [sym__unquoted_anonymous_prefix] = STATE(7799), + [sym_comment] = STATE(467), + [sym__newline] = ACTIONS(2112), + [sym__space] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_err_GT_PIPE] = ACTIONS(2112), + [anon_sym_out_GT_PIPE] = ACTIONS(2112), + [anon_sym_e_GT_PIPE] = ACTIONS(2112), + [anon_sym_o_GT_PIPE] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(2112), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DASH2] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT] = ACTIONS(1989), + [anon_sym_null] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2005), + [aux_sym__val_number_token5] = ACTIONS(2005), + [aux_sym__val_number_token6] = ACTIONS(2005), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2021), + [anon_sym_err_GT] = ACTIONS(2023), + [anon_sym_out_GT] = ACTIONS(2023), + [anon_sym_e_GT] = ACTIONS(2023), + [anon_sym_o_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT] = ACTIONS(2023), + [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(2025), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(981), + [sym_raw_string_begin] = ACTIONS(2027), }, - [491] = { - [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [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(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [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(1026), - [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(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [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(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [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), + [468] = { + [sym_cell_path] = STATE(708), + [sym_path] = STATE(659), + [sym_comment] = STATE(468), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1959), + [aux_sym_cmd_identifier_token3] = ACTIONS(1959), + [aux_sym_cmd_identifier_token4] = ACTIONS(1959), + [aux_sym_cmd_identifier_token5] = ACTIONS(1959), + [aux_sym_cmd_identifier_token6] = ACTIONS(1959), + [aux_sym_cmd_identifier_token7] = ACTIONS(1959), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1959), + [aux_sym_cmd_identifier_token11] = ACTIONS(1959), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1959), + [aux_sym_cmd_identifier_token17] = ACTIONS(1959), + [aux_sym_cmd_identifier_token18] = ACTIONS(1959), + [aux_sym_cmd_identifier_token19] = ACTIONS(1959), + [aux_sym_cmd_identifier_token20] = ACTIONS(1959), + [aux_sym_cmd_identifier_token21] = ACTIONS(1959), + [aux_sym_cmd_identifier_token22] = ACTIONS(1959), + [aux_sym_cmd_identifier_token23] = ACTIONS(1959), + [aux_sym_cmd_identifier_token24] = ACTIONS(1959), + [aux_sym_cmd_identifier_token25] = ACTIONS(1959), + [aux_sym_cmd_identifier_token26] = ACTIONS(1959), + [aux_sym_cmd_identifier_token27] = ACTIONS(1959), + [aux_sym_cmd_identifier_token28] = ACTIONS(1959), + [aux_sym_cmd_identifier_token29] = ACTIONS(1959), + [aux_sym_cmd_identifier_token30] = ACTIONS(1959), + [aux_sym_cmd_identifier_token31] = ACTIONS(1959), + [aux_sym_cmd_identifier_token32] = ACTIONS(1959), + [aux_sym_cmd_identifier_token33] = ACTIONS(1959), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1959), + [aux_sym_cmd_identifier_token36] = ACTIONS(1959), + [aux_sym_cmd_identifier_token37] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1959), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1028), + [sym_raw_string_begin] = ACTIONS(1959), }, - [492] = { - [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_alias] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_let_DASHenv] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [aux_sym_cmd_identifier_token1] = ACTIONS(2181), - [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(2181), - [aux_sym_cmd_identifier_token9] = ACTIONS(2181), - [aux_sym_cmd_identifier_token10] = ACTIONS(2181), - [aux_sym_cmd_identifier_token11] = ACTIONS(2181), - [aux_sym_cmd_identifier_token12] = ACTIONS(2181), - [aux_sym_cmd_identifier_token13] = ACTIONS(2181), - [aux_sym_cmd_identifier_token14] = ACTIONS(2181), - [aux_sym_cmd_identifier_token15] = ACTIONS(2181), - [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(2181), - [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(2181), - [aux_sym_cmd_identifier_token39] = ACTIONS(2181), - [aux_sym_cmd_identifier_token40] = ACTIONS(2181), - [anon_sym_def] = ACTIONS(2181), - [anon_sym_export_DASHenv] = ACTIONS(2181), - [anon_sym_extern] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2181), - [anon_sym_error] = ACTIONS(2181), - [anon_sym_DASH2] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_in2] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_make] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_catch] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_source] = ACTIONS(2181), - [anon_sym_source_DASHenv] = ACTIONS(2181), - [anon_sym_register] = ACTIONS(2181), - [anon_sym_hide] = ACTIONS(2181), - [anon_sym_hide_DASHenv] = ACTIONS(2181), - [anon_sym_overlay] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_PLUS2] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2181), - [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(2181), - [aux_sym__val_number_decimal_token1] = ACTIONS(2181), - [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_DQUOTE] = ACTIONS(2181), - [sym__str_single_quotes] = ACTIONS(2181), - [sym__str_back_ticks] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2181), - [sym__entry_separator] = ACTIONS(2187), + [469] = { + [sym_comment] = STATE(469), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2187), + [sym_raw_string_begin] = ACTIONS(1781), }, - [493] = { - [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(2189), - [aux_sym__immediate_decimal_token2] = ACTIONS(2191), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [470] = { + [sym_path] = STATE(595), + [sym_comment] = STATE(470), + [aux_sym_cell_path_repeat1] = STATE(471), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_register] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [sym__entry_separator] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(984), }, - [494] = { - [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1777), - [anon_sym_alias] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_let_DASHenv] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [aux_sym_cmd_identifier_token1] = ACTIONS(1777), - [aux_sym_cmd_identifier_token2] = ACTIONS(1777), - [aux_sym_cmd_identifier_token3] = ACTIONS(1777), - [aux_sym_cmd_identifier_token4] = ACTIONS(1777), - [aux_sym_cmd_identifier_token5] = ACTIONS(1777), - [aux_sym_cmd_identifier_token6] = ACTIONS(1777), - [aux_sym_cmd_identifier_token7] = ACTIONS(1777), - [aux_sym_cmd_identifier_token8] = ACTIONS(1777), - [aux_sym_cmd_identifier_token9] = ACTIONS(1777), - [aux_sym_cmd_identifier_token10] = ACTIONS(1777), - [aux_sym_cmd_identifier_token11] = ACTIONS(1777), - [aux_sym_cmd_identifier_token12] = ACTIONS(1777), - [aux_sym_cmd_identifier_token13] = ACTIONS(1777), - [aux_sym_cmd_identifier_token14] = ACTIONS(1777), - [aux_sym_cmd_identifier_token15] = ACTIONS(1777), - [aux_sym_cmd_identifier_token16] = ACTIONS(1777), - [aux_sym_cmd_identifier_token17] = ACTIONS(1777), - [aux_sym_cmd_identifier_token18] = ACTIONS(1777), - [aux_sym_cmd_identifier_token19] = ACTIONS(1777), - [aux_sym_cmd_identifier_token20] = ACTIONS(1777), - [aux_sym_cmd_identifier_token21] = ACTIONS(1777), - [aux_sym_cmd_identifier_token22] = ACTIONS(1777), - [aux_sym_cmd_identifier_token23] = ACTIONS(1777), - [aux_sym_cmd_identifier_token24] = ACTIONS(1777), - [aux_sym_cmd_identifier_token25] = ACTIONS(1777), - [aux_sym_cmd_identifier_token26] = ACTIONS(1777), - [aux_sym_cmd_identifier_token27] = ACTIONS(1777), - [aux_sym_cmd_identifier_token28] = ACTIONS(1777), - [aux_sym_cmd_identifier_token29] = ACTIONS(1777), - [aux_sym_cmd_identifier_token30] = ACTIONS(1777), - [aux_sym_cmd_identifier_token31] = ACTIONS(1777), - [aux_sym_cmd_identifier_token32] = ACTIONS(1777), - [aux_sym_cmd_identifier_token33] = ACTIONS(1777), - [aux_sym_cmd_identifier_token34] = ACTIONS(1777), - [aux_sym_cmd_identifier_token35] = ACTIONS(1777), - [aux_sym_cmd_identifier_token36] = ACTIONS(1777), - [aux_sym_cmd_identifier_token37] = ACTIONS(1777), - [aux_sym_cmd_identifier_token38] = ACTIONS(1777), - [aux_sym_cmd_identifier_token39] = ACTIONS(1777), - [aux_sym_cmd_identifier_token40] = ACTIONS(1777), - [anon_sym_def] = ACTIONS(1777), - [anon_sym_export_DASHenv] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_module] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_DOLLAR] = ACTIONS(1777), - [anon_sym_error] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_in2] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_make] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_catch] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_source] = ACTIONS(1777), - [anon_sym_source_DASHenv] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_hide] = ACTIONS(1777), - [anon_sym_hide_DASHenv] = ACTIONS(1777), - [anon_sym_overlay] = ACTIONS(1777), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_PLUS2] = ACTIONS(1777), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1777), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1777), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), - [aux_sym__val_number_decimal_token2] = ACTIONS(1777), - [aux_sym__val_number_decimal_token3] = ACTIONS(1777), - [aux_sym__val_number_decimal_token4] = ACTIONS(1777), - [aux_sym__val_number_token1] = ACTIONS(1777), - [aux_sym__val_number_token2] = ACTIONS(1777), - [aux_sym__val_number_token3] = ACTIONS(1777), - [aux_sym__val_number_token4] = ACTIONS(1777), - [aux_sym__val_number_token5] = ACTIONS(1777), - [aux_sym__val_number_token6] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [sym__str_single_quotes] = ACTIONS(1777), - [sym__str_back_ticks] = ACTIONS(1777), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1777), - [sym__entry_separator] = ACTIONS(1779), + [471] = { + [sym_path] = STATE(595), + [sym_comment] = STATE(471), + [aux_sym_cell_path_repeat1] = STATE(471), + [anon_sym_export] = ACTIONS(975), + [anon_sym_alias] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_let_DASHenv] = ACTIONS(975), + [anon_sym_mut] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [aux_sym_cmd_identifier_token1] = ACTIONS(975), + [aux_sym_cmd_identifier_token2] = ACTIONS(975), + [aux_sym_cmd_identifier_token3] = ACTIONS(975), + [aux_sym_cmd_identifier_token4] = ACTIONS(975), + [aux_sym_cmd_identifier_token5] = ACTIONS(975), + [aux_sym_cmd_identifier_token6] = ACTIONS(975), + [aux_sym_cmd_identifier_token7] = ACTIONS(975), + [aux_sym_cmd_identifier_token8] = ACTIONS(975), + [aux_sym_cmd_identifier_token9] = ACTIONS(975), + [aux_sym_cmd_identifier_token10] = ACTIONS(975), + [aux_sym_cmd_identifier_token11] = ACTIONS(975), + [aux_sym_cmd_identifier_token12] = ACTIONS(975), + [aux_sym_cmd_identifier_token13] = ACTIONS(975), + [aux_sym_cmd_identifier_token14] = ACTIONS(975), + [aux_sym_cmd_identifier_token15] = ACTIONS(975), + [aux_sym_cmd_identifier_token16] = ACTIONS(975), + [aux_sym_cmd_identifier_token17] = ACTIONS(975), + [aux_sym_cmd_identifier_token18] = ACTIONS(975), + [aux_sym_cmd_identifier_token19] = ACTIONS(975), + [aux_sym_cmd_identifier_token20] = ACTIONS(975), + [aux_sym_cmd_identifier_token21] = ACTIONS(975), + [aux_sym_cmd_identifier_token22] = ACTIONS(975), + [aux_sym_cmd_identifier_token23] = ACTIONS(975), + [aux_sym_cmd_identifier_token24] = ACTIONS(975), + [aux_sym_cmd_identifier_token25] = ACTIONS(975), + [aux_sym_cmd_identifier_token26] = ACTIONS(975), + [aux_sym_cmd_identifier_token27] = ACTIONS(975), + [aux_sym_cmd_identifier_token28] = ACTIONS(975), + [aux_sym_cmd_identifier_token29] = ACTIONS(975), + [aux_sym_cmd_identifier_token30] = ACTIONS(975), + [aux_sym_cmd_identifier_token31] = ACTIONS(975), + [aux_sym_cmd_identifier_token32] = ACTIONS(975), + [aux_sym_cmd_identifier_token33] = ACTIONS(975), + [aux_sym_cmd_identifier_token34] = ACTIONS(975), + [aux_sym_cmd_identifier_token35] = ACTIONS(975), + [aux_sym_cmd_identifier_token36] = ACTIONS(975), + [aux_sym_cmd_identifier_token37] = ACTIONS(975), + [aux_sym_cmd_identifier_token38] = ACTIONS(975), + [aux_sym_cmd_identifier_token39] = ACTIONS(975), + [aux_sym_cmd_identifier_token40] = ACTIONS(975), + [anon_sym_def] = ACTIONS(975), + [anon_sym_export_DASHenv] = ACTIONS(975), + [anon_sym_extern] = ACTIONS(975), + [anon_sym_module] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_error] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_make] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_source] = ACTIONS(975), + [anon_sym_source_DASHenv] = ACTIONS(975), + [anon_sym_register] = ACTIONS(975), + [anon_sym_hide] = ACTIONS(975), + [anon_sym_hide_DASHenv] = ACTIONS(975), + [anon_sym_overlay] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(2116), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(975), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(975), + [aux_sym__val_number_decimal_token3] = ACTIONS(975), + [aux_sym__val_number_decimal_token4] = ACTIONS(975), + [aux_sym__val_number_token1] = ACTIONS(975), + [aux_sym__val_number_token2] = ACTIONS(975), + [aux_sym__val_number_token3] = ACTIONS(975), + [aux_sym__val_number_token4] = ACTIONS(975), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym__str_single_quotes] = ACTIONS(975), + [sym__str_back_ticks] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(975), + [sym__entry_separator] = ACTIONS(977), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1779), + [sym_raw_string_begin] = ACTIONS(977), }, - [495] = { - [sym_comment] = STATE(495), + [472] = { + [sym_comment] = STATE(472), [anon_sym_export] = ACTIONS(1022), [anon_sym_alias] = ACTIONS(1022), [anon_sym_let] = ACTIONS(1022), @@ -137047,8 +137187,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1024), }, - [496] = { - [sym_comment] = STATE(496), + [473] = { + [sym_comment] = STATE(473), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(2119), + [aux_sym__immediate_decimal_token2] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [474] = { + [sym_comment] = STATE(474), + [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(1763), + [aux_sym_cmd_identifier_token26] = ACTIONS(1763), + [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(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), + [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(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_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), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), + [sym__entry_separator] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1765), + }, + [475] = { + [sym_comment] = STATE(475), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [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(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [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(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(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [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), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [476] = { + [sym_cell_path] = STATE(760), + [sym_path] = STATE(659), + [sym_comment] = STATE(476), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(2033), + [anon_sym_alias] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_let_DASHenv] = ACTIONS(2033), + [anon_sym_mut] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [aux_sym_cmd_identifier_token1] = ACTIONS(2033), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2033), + [aux_sym_cmd_identifier_token9] = ACTIONS(2033), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2033), + [aux_sym_cmd_identifier_token13] = ACTIONS(2033), + [aux_sym_cmd_identifier_token14] = ACTIONS(2033), + [aux_sym_cmd_identifier_token15] = ACTIONS(2033), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2033), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [aux_sym_cmd_identifier_token37] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2033), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_export_DASHenv] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2033), + [anon_sym_DASH2] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_in2] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_make] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_catch] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_source] = ACTIONS(2033), + [anon_sym_source_DASHenv] = ACTIONS(2033), + [anon_sym_register] = ACTIONS(2033), + [anon_sym_hide] = ACTIONS(2033), + [anon_sym_hide_DASHenv] = ACTIONS(2033), + [anon_sym_overlay] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_PLUS2] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [aux_sym__val_number_token4] = ACTIONS(2033), + [aux_sym__val_number_token5] = ACTIONS(2033), + [aux_sym__val_number_token6] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2035), + }, + [477] = { + [sym_comment] = STATE(477), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -137150,841 +137702,1871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [497] = { - [sym_comment] = STATE(497), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in2] = 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_as] = ACTIONS(1038), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [498] = { - [sym_cell_path] = STATE(764), - [sym_path] = STATE(679), - [sym_comment] = STATE(498), - [aux_sym_cell_path_repeat1] = STATE(564), - [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(1903), - [aux_sym_cmd_identifier_token3] = ACTIONS(1903), - [aux_sym_cmd_identifier_token4] = ACTIONS(1903), - [aux_sym_cmd_identifier_token5] = ACTIONS(1903), - [aux_sym_cmd_identifier_token6] = ACTIONS(1903), - [aux_sym_cmd_identifier_token7] = ACTIONS(1903), - [aux_sym_cmd_identifier_token8] = ACTIONS(1901), - [aux_sym_cmd_identifier_token9] = ACTIONS(1901), - [aux_sym_cmd_identifier_token10] = ACTIONS(1903), - [aux_sym_cmd_identifier_token11] = ACTIONS(1903), - [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(1903), - [aux_sym_cmd_identifier_token17] = ACTIONS(1903), - [aux_sym_cmd_identifier_token18] = ACTIONS(1903), - [aux_sym_cmd_identifier_token19] = ACTIONS(1903), - [aux_sym_cmd_identifier_token20] = ACTIONS(1903), - [aux_sym_cmd_identifier_token21] = ACTIONS(1903), - [aux_sym_cmd_identifier_token22] = ACTIONS(1903), - [aux_sym_cmd_identifier_token23] = ACTIONS(1903), - [aux_sym_cmd_identifier_token24] = ACTIONS(1903), - [aux_sym_cmd_identifier_token25] = ACTIONS(1903), - [aux_sym_cmd_identifier_token26] = ACTIONS(1903), - [aux_sym_cmd_identifier_token27] = ACTIONS(1903), - [aux_sym_cmd_identifier_token28] = ACTIONS(1903), - [aux_sym_cmd_identifier_token29] = ACTIONS(1903), - [aux_sym_cmd_identifier_token30] = ACTIONS(1903), - [aux_sym_cmd_identifier_token31] = ACTIONS(1903), - [aux_sym_cmd_identifier_token32] = ACTIONS(1903), - [aux_sym_cmd_identifier_token33] = ACTIONS(1903), - [aux_sym_cmd_identifier_token34] = ACTIONS(1901), - [aux_sym_cmd_identifier_token35] = ACTIONS(1903), - [aux_sym_cmd_identifier_token36] = ACTIONS(1903), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in2] = 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_as] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(2068), - [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), - [aux_sym__val_number_token4] = ACTIONS(1901), - [aux_sym__val_number_token5] = ACTIONS(1901), - [aux_sym__val_number_token6] = ACTIONS(1901), - [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), + [478] = { + [sym_comment] = STATE(478), + [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(251), - [sym_raw_string_begin] = ACTIONS(1903), + [sym_raw_string_begin] = ACTIONS(1016), }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_alias] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_let_DASHenv] = ACTIONS(2193), - [anon_sym_mut] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [aux_sym_cmd_identifier_token1] = ACTIONS(2193), - [aux_sym_cmd_identifier_token2] = ACTIONS(2193), - [aux_sym_cmd_identifier_token3] = ACTIONS(2193), - [aux_sym_cmd_identifier_token4] = ACTIONS(2193), - [aux_sym_cmd_identifier_token5] = ACTIONS(2193), - [aux_sym_cmd_identifier_token6] = ACTIONS(2193), - [aux_sym_cmd_identifier_token7] = ACTIONS(2193), - [aux_sym_cmd_identifier_token8] = ACTIONS(2193), - [aux_sym_cmd_identifier_token9] = ACTIONS(2193), - [aux_sym_cmd_identifier_token10] = ACTIONS(2193), - [aux_sym_cmd_identifier_token11] = ACTIONS(2193), - [aux_sym_cmd_identifier_token12] = ACTIONS(2193), - [aux_sym_cmd_identifier_token13] = ACTIONS(2193), - [aux_sym_cmd_identifier_token14] = ACTIONS(2193), - [aux_sym_cmd_identifier_token15] = ACTIONS(2193), - [aux_sym_cmd_identifier_token16] = ACTIONS(2193), - [aux_sym_cmd_identifier_token17] = ACTIONS(2193), - [aux_sym_cmd_identifier_token18] = ACTIONS(2193), - [aux_sym_cmd_identifier_token19] = ACTIONS(2193), - [aux_sym_cmd_identifier_token20] = ACTIONS(2193), - [aux_sym_cmd_identifier_token21] = ACTIONS(2193), - [aux_sym_cmd_identifier_token22] = ACTIONS(2193), - [aux_sym_cmd_identifier_token23] = ACTIONS(2193), - [aux_sym_cmd_identifier_token24] = ACTIONS(2193), - [aux_sym_cmd_identifier_token25] = ACTIONS(2193), - [aux_sym_cmd_identifier_token26] = ACTIONS(2193), - [aux_sym_cmd_identifier_token27] = ACTIONS(2193), - [aux_sym_cmd_identifier_token28] = ACTIONS(2193), - [aux_sym_cmd_identifier_token29] = ACTIONS(2193), - [aux_sym_cmd_identifier_token30] = ACTIONS(2193), - [aux_sym_cmd_identifier_token31] = ACTIONS(2193), - [aux_sym_cmd_identifier_token32] = ACTIONS(2193), - [aux_sym_cmd_identifier_token33] = ACTIONS(2193), - [aux_sym_cmd_identifier_token34] = ACTIONS(2193), - [aux_sym_cmd_identifier_token35] = ACTIONS(2193), - [aux_sym_cmd_identifier_token36] = ACTIONS(2193), - [aux_sym_cmd_identifier_token37] = ACTIONS(2193), - [aux_sym_cmd_identifier_token38] = ACTIONS(2193), - [aux_sym_cmd_identifier_token39] = ACTIONS(2193), - [aux_sym_cmd_identifier_token40] = ACTIONS(2193), - [anon_sym_def] = ACTIONS(2193), - [anon_sym_export_DASHenv] = ACTIONS(2193), - [anon_sym_extern] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_DOLLAR] = ACTIONS(2193), - [anon_sym_error] = ACTIONS(2193), - [anon_sym_DASH2] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_in2] = ACTIONS(2193), - [anon_sym_loop] = ACTIONS(2193), - [anon_sym_make] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_catch] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_source] = ACTIONS(2193), - [anon_sym_source_DASHenv] = ACTIONS(2193), - [anon_sym_register] = ACTIONS(2193), - [anon_sym_hide] = ACTIONS(2193), - [anon_sym_hide_DASHenv] = ACTIONS(2193), - [anon_sym_overlay] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_PLUS2] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2193), - [anon_sym_DOT_DOT2] = ACTIONS(2193), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2195), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2193), - [aux_sym__val_number_decimal_token1] = ACTIONS(2193), - [aux_sym__val_number_decimal_token2] = ACTIONS(2193), - [aux_sym__val_number_decimal_token3] = ACTIONS(2193), - [aux_sym__val_number_decimal_token4] = ACTIONS(2193), - [aux_sym__val_number_token1] = ACTIONS(2193), - [aux_sym__val_number_token2] = ACTIONS(2193), - [aux_sym__val_number_token3] = ACTIONS(2193), - [aux_sym__val_number_token4] = ACTIONS(2193), - [aux_sym__val_number_token5] = ACTIONS(2193), - [aux_sym__val_number_token6] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2193), - [sym__str_single_quotes] = ACTIONS(2193), - [sym__str_back_ticks] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2193), - [sym__entry_separator] = ACTIONS(2195), + [479] = { + [sym_comment] = STATE(479), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2195), + [sym_raw_string_begin] = ACTIONS(1801), }, - [500] = { - [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), + [480] = { + [sym_comment] = STATE(480), + [anon_sym_export] = ACTIONS(2123), + [anon_sym_alias] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_let_DASHenv] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [aux_sym_cmd_identifier_token1] = ACTIONS(2123), + [aux_sym_cmd_identifier_token2] = ACTIONS(2123), + [aux_sym_cmd_identifier_token3] = ACTIONS(2123), + [aux_sym_cmd_identifier_token4] = ACTIONS(2123), + [aux_sym_cmd_identifier_token5] = ACTIONS(2123), + [aux_sym_cmd_identifier_token6] = ACTIONS(2123), + [aux_sym_cmd_identifier_token7] = ACTIONS(2123), + [aux_sym_cmd_identifier_token8] = ACTIONS(2123), + [aux_sym_cmd_identifier_token9] = ACTIONS(2123), + [aux_sym_cmd_identifier_token10] = ACTIONS(2123), + [aux_sym_cmd_identifier_token11] = ACTIONS(2123), + [aux_sym_cmd_identifier_token12] = ACTIONS(2123), + [aux_sym_cmd_identifier_token13] = ACTIONS(2123), + [aux_sym_cmd_identifier_token14] = ACTIONS(2123), + [aux_sym_cmd_identifier_token15] = ACTIONS(2123), + [aux_sym_cmd_identifier_token16] = ACTIONS(2123), + [aux_sym_cmd_identifier_token17] = ACTIONS(2123), + [aux_sym_cmd_identifier_token18] = ACTIONS(2123), + [aux_sym_cmd_identifier_token19] = ACTIONS(2123), + [aux_sym_cmd_identifier_token20] = ACTIONS(2123), + [aux_sym_cmd_identifier_token21] = ACTIONS(2123), + [aux_sym_cmd_identifier_token22] = ACTIONS(2123), + [aux_sym_cmd_identifier_token23] = ACTIONS(2123), + [aux_sym_cmd_identifier_token24] = ACTIONS(2123), + [aux_sym_cmd_identifier_token25] = ACTIONS(2123), + [aux_sym_cmd_identifier_token26] = ACTIONS(2123), + [aux_sym_cmd_identifier_token27] = ACTIONS(2123), + [aux_sym_cmd_identifier_token28] = ACTIONS(2123), + [aux_sym_cmd_identifier_token29] = ACTIONS(2123), + [aux_sym_cmd_identifier_token30] = ACTIONS(2123), + [aux_sym_cmd_identifier_token31] = ACTIONS(2123), + [aux_sym_cmd_identifier_token32] = ACTIONS(2123), + [aux_sym_cmd_identifier_token33] = ACTIONS(2123), + [aux_sym_cmd_identifier_token34] = ACTIONS(2123), + [aux_sym_cmd_identifier_token35] = ACTIONS(2123), + [aux_sym_cmd_identifier_token36] = ACTIONS(2123), + [aux_sym_cmd_identifier_token37] = ACTIONS(2123), + [aux_sym_cmd_identifier_token38] = ACTIONS(2123), + [aux_sym_cmd_identifier_token39] = ACTIONS(2123), + [aux_sym_cmd_identifier_token40] = ACTIONS(2123), + [anon_sym_def] = ACTIONS(2123), + [anon_sym_export_DASHenv] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_module] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2123), + [anon_sym_error] = ACTIONS(2123), + [anon_sym_DASH2] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_in2] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_make] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_do] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2123), + [anon_sym_catch] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_source] = ACTIONS(2123), + [anon_sym_source_DASHenv] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2123), + [anon_sym_hide] = ACTIONS(2123), + [anon_sym_hide_DASHenv] = ACTIONS(2123), + [anon_sym_overlay] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_PLUS2] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2123), + [anon_sym_DOT_DOT2] = ACTIONS(2123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2123), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [aux_sym__val_number_decimal_token2] = ACTIONS(2123), + [aux_sym__val_number_decimal_token3] = ACTIONS(2123), + [aux_sym__val_number_decimal_token4] = ACTIONS(2123), + [aux_sym__val_number_token1] = ACTIONS(2123), + [aux_sym__val_number_token2] = ACTIONS(2123), + [aux_sym__val_number_token3] = ACTIONS(2123), + [aux_sym__val_number_token4] = ACTIONS(2123), + [aux_sym__val_number_token5] = ACTIONS(2123), + [aux_sym__val_number_token6] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym__str_single_quotes] = ACTIONS(2123), + [sym__str_back_ticks] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2123), + [sym__entry_separator] = ACTIONS(2125), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), + [sym_raw_string_begin] = ACTIONS(2125), }, - [501] = { - [sym_cell_path] = STATE(765), - [sym_path] = STATE(679), - [sym_comment] = STATE(501), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1907), - [aux_sym_cmd_identifier_token11] = ACTIONS(1907), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1905), - [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(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1907), - [aux_sym_cmd_identifier_token40] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in2] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [aux_sym__val_number_token4] = ACTIONS(1905), - [aux_sym__val_number_token5] = ACTIONS(1905), - [aux_sym__val_number_token6] = ACTIONS(1905), - [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), + [481] = { + [sym_cell_path] = STATE(693), + [sym_path] = STATE(659), + [sym_comment] = STATE(481), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(2053), + [anon_sym_alias] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_let_DASHenv] = ACTIONS(2053), + [anon_sym_mut] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [aux_sym_cmd_identifier_token1] = ACTIONS(2053), + [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(2053), + [aux_sym_cmd_identifier_token9] = ACTIONS(2053), + [aux_sym_cmd_identifier_token10] = ACTIONS(2055), + [aux_sym_cmd_identifier_token11] = ACTIONS(2055), + [aux_sym_cmd_identifier_token12] = ACTIONS(2053), + [aux_sym_cmd_identifier_token13] = ACTIONS(2053), + [aux_sym_cmd_identifier_token14] = ACTIONS(2053), + [aux_sym_cmd_identifier_token15] = ACTIONS(2053), + [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(2053), + [aux_sym_cmd_identifier_token35] = ACTIONS(2055), + [aux_sym_cmd_identifier_token36] = ACTIONS(2055), + [aux_sym_cmd_identifier_token37] = ACTIONS(2055), + [aux_sym_cmd_identifier_token38] = ACTIONS(2053), + [aux_sym_cmd_identifier_token39] = ACTIONS(2055), + [aux_sym_cmd_identifier_token40] = ACTIONS(2055), + [anon_sym_def] = ACTIONS(2053), + [anon_sym_export_DASHenv] = ACTIONS(2053), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_module] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_error] = ACTIONS(2053), + [anon_sym_DASH2] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_in2] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_make] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_do] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_else] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2053), + [anon_sym_catch] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_source] = ACTIONS(2053), + [anon_sym_source_DASHenv] = ACTIONS(2053), + [anon_sym_register] = ACTIONS(2053), + [anon_sym_hide] = ACTIONS(2053), + [anon_sym_hide_DASHenv] = ACTIONS(2053), + [anon_sym_overlay] = ACTIONS(2053), + [anon_sym_as] = ACTIONS(2053), + [anon_sym_PLUS2] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2053), + [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), + [aux_sym__val_number_token4] = ACTIONS(2053), + [aux_sym__val_number_token5] = ACTIONS(2053), + [aux_sym__val_number_token6] = ACTIONS(2053), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2055), + }, + [482] = { + [sym_cell_path] = STATE(767), + [sym_path] = STATE(659), + [sym_comment] = STATE(482), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1941), + [anon_sym_alias] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_let_DASHenv] = ACTIONS(1941), + [anon_sym_mut] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [aux_sym_cmd_identifier_token1] = ACTIONS(1941), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1941), + [aux_sym_cmd_identifier_token9] = ACTIONS(1941), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1941), + [aux_sym_cmd_identifier_token13] = ACTIONS(1941), + [aux_sym_cmd_identifier_token14] = ACTIONS(1941), + [aux_sym_cmd_identifier_token15] = ACTIONS(1941), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1941), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [aux_sym_cmd_identifier_token37] = ACTIONS(1943), + [aux_sym_cmd_identifier_token38] = ACTIONS(1941), + [aux_sym_cmd_identifier_token39] = ACTIONS(1943), + [aux_sym_cmd_identifier_token40] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1941), + [anon_sym_export_DASHenv] = ACTIONS(1941), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_module] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1943), + [anon_sym_error] = ACTIONS(1941), + [anon_sym_DASH2] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_in2] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_make] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_else] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1941), + [anon_sym_catch] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_source] = ACTIONS(1941), + [anon_sym_source_DASHenv] = ACTIONS(1941), + [anon_sym_register] = ACTIONS(1941), + [anon_sym_hide] = ACTIONS(1941), + [anon_sym_hide_DASHenv] = ACTIONS(1941), + [anon_sym_overlay] = ACTIONS(1941), + [anon_sym_as] = ACTIONS(1941), + [anon_sym_PLUS2] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), + [aux_sym__val_number_decimal_token1] = ACTIONS(1941), + [aux_sym__val_number_decimal_token2] = ACTIONS(1943), + [aux_sym__val_number_decimal_token3] = ACTIONS(1943), + [aux_sym__val_number_decimal_token4] = ACTIONS(1943), + [aux_sym__val_number_token1] = ACTIONS(1943), + [aux_sym__val_number_token2] = ACTIONS(1943), + [aux_sym__val_number_token3] = ACTIONS(1943), + [aux_sym__val_number_token4] = ACTIONS(1941), + [aux_sym__val_number_token5] = ACTIONS(1941), + [aux_sym__val_number_token6] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym__str_single_quotes] = ACTIONS(1943), + [sym__str_back_ticks] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1907), + [sym_raw_string_begin] = ACTIONS(1943), }, - [502] = { - [sym_cell_path] = STATE(740), - [sym_path] = STATE(679), - [sym_comment] = STATE(502), - [aux_sym_cell_path_repeat1] = STATE(564), - [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(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(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1911), - [aux_sym_cmd_identifier_token11] = ACTIONS(1911), - [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(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(1909), - [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(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_DASH2] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in2] = 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_as] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(2068), - [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), - [aux_sym__val_number_token4] = ACTIONS(1909), - [aux_sym__val_number_token5] = ACTIONS(1909), - [aux_sym__val_number_token6] = ACTIONS(1909), - [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), + [483] = { + [sym_comment] = STATE(483), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1818), + [aux_sym_cmd_identifier_token3] = ACTIONS(1818), + [aux_sym_cmd_identifier_token4] = ACTIONS(1818), + [aux_sym_cmd_identifier_token5] = ACTIONS(1818), + [aux_sym_cmd_identifier_token6] = ACTIONS(1818), + [aux_sym_cmd_identifier_token7] = ACTIONS(1818), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1818), + [aux_sym_cmd_identifier_token11] = ACTIONS(1818), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1818), + [aux_sym_cmd_identifier_token17] = ACTIONS(1818), + [aux_sym_cmd_identifier_token18] = ACTIONS(1818), + [aux_sym_cmd_identifier_token19] = ACTIONS(1818), + [aux_sym_cmd_identifier_token20] = ACTIONS(1818), + [aux_sym_cmd_identifier_token21] = ACTIONS(1818), + [aux_sym_cmd_identifier_token22] = ACTIONS(1818), + [aux_sym_cmd_identifier_token23] = ACTIONS(1818), + [aux_sym_cmd_identifier_token24] = ACTIONS(1818), + [aux_sym_cmd_identifier_token25] = ACTIONS(1818), + [aux_sym_cmd_identifier_token26] = ACTIONS(1818), + [aux_sym_cmd_identifier_token27] = ACTIONS(1818), + [aux_sym_cmd_identifier_token28] = ACTIONS(1818), + [aux_sym_cmd_identifier_token29] = ACTIONS(1818), + [aux_sym_cmd_identifier_token30] = ACTIONS(1818), + [aux_sym_cmd_identifier_token31] = ACTIONS(1818), + [aux_sym_cmd_identifier_token32] = ACTIONS(1818), + [aux_sym_cmd_identifier_token33] = ACTIONS(1818), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1818), + [aux_sym_cmd_identifier_token36] = ACTIONS(1818), + [aux_sym_cmd_identifier_token37] = ACTIONS(1818), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1818), + [aux_sym_cmd_identifier_token40] = ACTIONS(1818), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1818), + [aux_sym__val_number_decimal_token3] = ACTIONS(1818), + [aux_sym__val_number_decimal_token4] = ACTIONS(1818), + [aux_sym__val_number_token1] = ACTIONS(1818), + [aux_sym__val_number_token2] = ACTIONS(1818), + [aux_sym__val_number_token3] = ACTIONS(1818), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym__str_single_quotes] = ACTIONS(1818), + [sym__str_back_ticks] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), + [sym__entry_separator] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [484] = { + [sym_comment] = STATE(484), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(2127), + [aux_sym__immediate_decimal_token2] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1911), + [sym_raw_string_begin] = ACTIONS(1781), }, - [503] = { - [sym_cell_path] = STATE(696), - [sym_path] = STATE(679), - [sym_comment] = STATE(503), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1919), - [aux_sym_cmd_identifier_token3] = ACTIONS(1919), - [aux_sym_cmd_identifier_token4] = ACTIONS(1919), - [aux_sym_cmd_identifier_token5] = ACTIONS(1919), - [aux_sym_cmd_identifier_token6] = ACTIONS(1919), - [aux_sym_cmd_identifier_token7] = ACTIONS(1919), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1919), - [aux_sym_cmd_identifier_token11] = ACTIONS(1919), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1919), - [aux_sym_cmd_identifier_token17] = ACTIONS(1919), - [aux_sym_cmd_identifier_token18] = ACTIONS(1919), - [aux_sym_cmd_identifier_token19] = ACTIONS(1919), - [aux_sym_cmd_identifier_token20] = ACTIONS(1919), - [aux_sym_cmd_identifier_token21] = ACTIONS(1919), - [aux_sym_cmd_identifier_token22] = ACTIONS(1919), - [aux_sym_cmd_identifier_token23] = ACTIONS(1919), - [aux_sym_cmd_identifier_token24] = ACTIONS(1919), - [aux_sym_cmd_identifier_token25] = ACTIONS(1919), - [aux_sym_cmd_identifier_token26] = ACTIONS(1919), - [aux_sym_cmd_identifier_token27] = ACTIONS(1919), - [aux_sym_cmd_identifier_token28] = ACTIONS(1919), - [aux_sym_cmd_identifier_token29] = ACTIONS(1919), - [aux_sym_cmd_identifier_token30] = ACTIONS(1919), - [aux_sym_cmd_identifier_token31] = ACTIONS(1919), - [aux_sym_cmd_identifier_token32] = ACTIONS(1919), - [aux_sym_cmd_identifier_token33] = ACTIONS(1919), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1919), - [aux_sym_cmd_identifier_token36] = ACTIONS(1919), - [aux_sym_cmd_identifier_token37] = ACTIONS(1919), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1919), - [aux_sym_cmd_identifier_token40] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [485] = { + [sym_comment] = STATE(485), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), + [sym_raw_string_begin] = ACTIONS(1781), }, - [504] = { - [sym_cell_path] = STATE(697), - [sym_path] = STATE(679), - [sym_comment] = STATE(504), - [aux_sym_cell_path_repeat1] = STATE(564), - [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(1923), - [aux_sym_cmd_identifier_token3] = ACTIONS(1923), - [aux_sym_cmd_identifier_token4] = ACTIONS(1923), - [aux_sym_cmd_identifier_token5] = ACTIONS(1923), - [aux_sym_cmd_identifier_token6] = ACTIONS(1923), - [aux_sym_cmd_identifier_token7] = ACTIONS(1923), - [aux_sym_cmd_identifier_token8] = ACTIONS(1921), - [aux_sym_cmd_identifier_token9] = ACTIONS(1921), - [aux_sym_cmd_identifier_token10] = ACTIONS(1923), - [aux_sym_cmd_identifier_token11] = ACTIONS(1923), - [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(1923), - [aux_sym_cmd_identifier_token17] = ACTIONS(1923), - [aux_sym_cmd_identifier_token18] = ACTIONS(1923), - [aux_sym_cmd_identifier_token19] = ACTIONS(1923), - [aux_sym_cmd_identifier_token20] = ACTIONS(1923), - [aux_sym_cmd_identifier_token21] = ACTIONS(1923), - [aux_sym_cmd_identifier_token22] = ACTIONS(1923), - [aux_sym_cmd_identifier_token23] = ACTIONS(1923), - [aux_sym_cmd_identifier_token24] = ACTIONS(1923), - [aux_sym_cmd_identifier_token25] = ACTIONS(1923), - [aux_sym_cmd_identifier_token26] = ACTIONS(1923), - [aux_sym_cmd_identifier_token27] = ACTIONS(1923), - [aux_sym_cmd_identifier_token28] = ACTIONS(1923), - [aux_sym_cmd_identifier_token29] = ACTIONS(1923), - [aux_sym_cmd_identifier_token30] = ACTIONS(1923), - [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(1921), - [aux_sym_cmd_identifier_token35] = ACTIONS(1923), - [aux_sym_cmd_identifier_token36] = ACTIONS(1923), - [aux_sym_cmd_identifier_token37] = ACTIONS(1923), - [aux_sym_cmd_identifier_token38] = ACTIONS(1921), - [aux_sym_cmd_identifier_token39] = ACTIONS(1923), - [aux_sym_cmd_identifier_token40] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_in2] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_make] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_catch] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_as] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1923), - [aux_sym__val_number_decimal_token1] = ACTIONS(1921), - [aux_sym__val_number_decimal_token2] = ACTIONS(1923), - [aux_sym__val_number_decimal_token3] = ACTIONS(1923), - [aux_sym__val_number_decimal_token4] = ACTIONS(1923), - [aux_sym__val_number_token1] = ACTIONS(1923), - [aux_sym__val_number_token2] = ACTIONS(1923), - [aux_sym__val_number_token3] = ACTIONS(1923), - [aux_sym__val_number_token4] = ACTIONS(1921), - [aux_sym__val_number_token5] = ACTIONS(1921), - [aux_sym__val_number_token6] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym__str_single_quotes] = ACTIONS(1923), - [sym__str_back_ticks] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1923), + [486] = { + [sym_cell_path] = STATE(768), + [sym_path] = STATE(659), + [sym_comment] = STATE(486), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1873), + [aux_sym_cmd_identifier_token3] = ACTIONS(1873), + [aux_sym_cmd_identifier_token4] = ACTIONS(1873), + [aux_sym_cmd_identifier_token5] = ACTIONS(1873), + [aux_sym_cmd_identifier_token6] = ACTIONS(1873), + [aux_sym_cmd_identifier_token7] = ACTIONS(1873), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1873), + [aux_sym_cmd_identifier_token11] = ACTIONS(1873), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1873), + [aux_sym_cmd_identifier_token17] = ACTIONS(1873), + [aux_sym_cmd_identifier_token18] = ACTIONS(1873), + [aux_sym_cmd_identifier_token19] = ACTIONS(1873), + [aux_sym_cmd_identifier_token20] = ACTIONS(1873), + [aux_sym_cmd_identifier_token21] = ACTIONS(1873), + [aux_sym_cmd_identifier_token22] = ACTIONS(1873), + [aux_sym_cmd_identifier_token23] = ACTIONS(1873), + [aux_sym_cmd_identifier_token24] = ACTIONS(1873), + [aux_sym_cmd_identifier_token25] = ACTIONS(1873), + [aux_sym_cmd_identifier_token26] = ACTIONS(1873), + [aux_sym_cmd_identifier_token27] = ACTIONS(1873), + [aux_sym_cmd_identifier_token28] = ACTIONS(1873), + [aux_sym_cmd_identifier_token29] = ACTIONS(1873), + [aux_sym_cmd_identifier_token30] = ACTIONS(1873), + [aux_sym_cmd_identifier_token31] = ACTIONS(1873), + [aux_sym_cmd_identifier_token32] = ACTIONS(1873), + [aux_sym_cmd_identifier_token33] = ACTIONS(1873), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1873), + [aux_sym_cmd_identifier_token36] = ACTIONS(1873), + [aux_sym_cmd_identifier_token37] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1873), }, - [505] = { - [sym_cell_path] = STATE(698), - [sym_path] = STATE(679), - [sym_comment] = STATE(505), - [aux_sym_cell_path_repeat1] = STATE(564), - [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), + [487] = { + [sym_cell_path] = STATE(769), + [sym_path] = STATE(659), + [sym_comment] = STATE(487), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1877), + [aux_sym_cmd_identifier_token3] = ACTIONS(1877), + [aux_sym_cmd_identifier_token4] = ACTIONS(1877), + [aux_sym_cmd_identifier_token5] = ACTIONS(1877), + [aux_sym_cmd_identifier_token6] = ACTIONS(1877), + [aux_sym_cmd_identifier_token7] = ACTIONS(1877), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1877), + [aux_sym_cmd_identifier_token11] = ACTIONS(1877), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1877), + [aux_sym_cmd_identifier_token17] = ACTIONS(1877), + [aux_sym_cmd_identifier_token18] = ACTIONS(1877), + [aux_sym_cmd_identifier_token19] = ACTIONS(1877), + [aux_sym_cmd_identifier_token20] = ACTIONS(1877), + [aux_sym_cmd_identifier_token21] = ACTIONS(1877), + [aux_sym_cmd_identifier_token22] = ACTIONS(1877), + [aux_sym_cmd_identifier_token23] = ACTIONS(1877), + [aux_sym_cmd_identifier_token24] = ACTIONS(1877), + [aux_sym_cmd_identifier_token25] = ACTIONS(1877), + [aux_sym_cmd_identifier_token26] = ACTIONS(1877), + [aux_sym_cmd_identifier_token27] = ACTIONS(1877), + [aux_sym_cmd_identifier_token28] = ACTIONS(1877), + [aux_sym_cmd_identifier_token29] = ACTIONS(1877), + [aux_sym_cmd_identifier_token30] = ACTIONS(1877), + [aux_sym_cmd_identifier_token31] = ACTIONS(1877), + [aux_sym_cmd_identifier_token32] = ACTIONS(1877), + [aux_sym_cmd_identifier_token33] = ACTIONS(1877), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1877), + [aux_sym_cmd_identifier_token36] = ACTIONS(1877), + [aux_sym_cmd_identifier_token37] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1877), + }, + [488] = { + [sym_cell_path] = STATE(770), + [sym_path] = STATE(659), + [sym_comment] = STATE(488), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1881), + [aux_sym_cmd_identifier_token11] = ACTIONS(1881), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1881), + [aux_sym_cmd_identifier_token25] = ACTIONS(1881), + [aux_sym_cmd_identifier_token26] = ACTIONS(1881), + [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(1881), + [aux_sym_cmd_identifier_token32] = ACTIONS(1881), + [aux_sym_cmd_identifier_token33] = ACTIONS(1881), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1881), + [aux_sym_cmd_identifier_token36] = ACTIONS(1881), + [aux_sym_cmd_identifier_token37] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [489] = { + [sym_cell_path] = STATE(694), + [sym_path] = STATE(659), + [sym_comment] = STATE(489), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1885), + [aux_sym_cmd_identifier_token3] = ACTIONS(1885), + [aux_sym_cmd_identifier_token4] = ACTIONS(1885), + [aux_sym_cmd_identifier_token5] = ACTIONS(1885), + [aux_sym_cmd_identifier_token6] = ACTIONS(1885), + [aux_sym_cmd_identifier_token7] = ACTIONS(1885), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1885), + [aux_sym_cmd_identifier_token11] = ACTIONS(1885), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1885), + [aux_sym_cmd_identifier_token17] = ACTIONS(1885), + [aux_sym_cmd_identifier_token18] = ACTIONS(1885), + [aux_sym_cmd_identifier_token19] = ACTIONS(1885), + [aux_sym_cmd_identifier_token20] = ACTIONS(1885), + [aux_sym_cmd_identifier_token21] = ACTIONS(1885), + [aux_sym_cmd_identifier_token22] = ACTIONS(1885), + [aux_sym_cmd_identifier_token23] = ACTIONS(1885), + [aux_sym_cmd_identifier_token24] = ACTIONS(1885), + [aux_sym_cmd_identifier_token25] = ACTIONS(1885), + [aux_sym_cmd_identifier_token26] = ACTIONS(1885), + [aux_sym_cmd_identifier_token27] = ACTIONS(1885), + [aux_sym_cmd_identifier_token28] = ACTIONS(1885), + [aux_sym_cmd_identifier_token29] = ACTIONS(1885), + [aux_sym_cmd_identifier_token30] = ACTIONS(1885), + [aux_sym_cmd_identifier_token31] = ACTIONS(1885), + [aux_sym_cmd_identifier_token32] = ACTIONS(1885), + [aux_sym_cmd_identifier_token33] = ACTIONS(1885), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1885), + [aux_sym_cmd_identifier_token36] = ACTIONS(1885), + [aux_sym_cmd_identifier_token37] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in2] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1885), + }, + [490] = { + [sym_cell_path] = STATE(703), + [sym_path] = STATE(659), + [sym_comment] = STATE(490), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [aux_sym_cmd_identifier_token1] = ACTIONS(1887), + [aux_sym_cmd_identifier_token2] = ACTIONS(1889), + [aux_sym_cmd_identifier_token3] = ACTIONS(1889), + [aux_sym_cmd_identifier_token4] = ACTIONS(1889), + [aux_sym_cmd_identifier_token5] = ACTIONS(1889), + [aux_sym_cmd_identifier_token6] = ACTIONS(1889), + [aux_sym_cmd_identifier_token7] = ACTIONS(1889), + [aux_sym_cmd_identifier_token8] = ACTIONS(1887), + [aux_sym_cmd_identifier_token9] = ACTIONS(1887), + [aux_sym_cmd_identifier_token10] = ACTIONS(1889), + [aux_sym_cmd_identifier_token11] = ACTIONS(1889), + [aux_sym_cmd_identifier_token12] = ACTIONS(1887), + [aux_sym_cmd_identifier_token13] = ACTIONS(1887), + [aux_sym_cmd_identifier_token14] = ACTIONS(1887), + [aux_sym_cmd_identifier_token15] = ACTIONS(1887), + [aux_sym_cmd_identifier_token16] = ACTIONS(1889), + [aux_sym_cmd_identifier_token17] = ACTIONS(1889), + [aux_sym_cmd_identifier_token18] = ACTIONS(1889), + [aux_sym_cmd_identifier_token19] = ACTIONS(1889), + [aux_sym_cmd_identifier_token20] = ACTIONS(1889), + [aux_sym_cmd_identifier_token21] = ACTIONS(1889), + [aux_sym_cmd_identifier_token22] = ACTIONS(1889), + [aux_sym_cmd_identifier_token23] = ACTIONS(1889), + [aux_sym_cmd_identifier_token24] = ACTIONS(1889), + [aux_sym_cmd_identifier_token25] = ACTIONS(1889), + [aux_sym_cmd_identifier_token26] = ACTIONS(1889), + [aux_sym_cmd_identifier_token27] = ACTIONS(1889), + [aux_sym_cmd_identifier_token28] = ACTIONS(1889), + [aux_sym_cmd_identifier_token29] = ACTIONS(1889), + [aux_sym_cmd_identifier_token30] = ACTIONS(1889), + [aux_sym_cmd_identifier_token31] = ACTIONS(1889), + [aux_sym_cmd_identifier_token32] = ACTIONS(1889), + [aux_sym_cmd_identifier_token33] = ACTIONS(1889), + [aux_sym_cmd_identifier_token34] = ACTIONS(1887), + [aux_sym_cmd_identifier_token35] = ACTIONS(1889), + [aux_sym_cmd_identifier_token36] = ACTIONS(1889), + [aux_sym_cmd_identifier_token37] = ACTIONS(1889), + [aux_sym_cmd_identifier_token38] = ACTIONS(1887), + [aux_sym_cmd_identifier_token39] = ACTIONS(1889), + [aux_sym_cmd_identifier_token40] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_make] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_catch] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1889), + }, + [491] = { + [sym_cell_path] = STATE(766), + [sym_path] = STATE(659), + [sym_comment] = STATE(491), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1893), + [aux_sym_cmd_identifier_token36] = ACTIONS(1893), + [aux_sym_cmd_identifier_token37] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1891), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in2] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1893), + }, + [492] = { + [sym_cell_path] = STATE(771), + [sym_path] = STATE(659), + [sym_comment] = STATE(492), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [aux_sym_cmd_identifier_token37] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [493] = { + [sym_cell_path] = STATE(737), + [sym_path] = STATE(659), + [sym_comment] = STATE(493), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_alias] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_let_DASHenv] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [aux_sym_cmd_identifier_token1] = ACTIONS(1903), + [aux_sym_cmd_identifier_token2] = ACTIONS(1905), + [aux_sym_cmd_identifier_token3] = ACTIONS(1905), + [aux_sym_cmd_identifier_token4] = ACTIONS(1905), + [aux_sym_cmd_identifier_token5] = ACTIONS(1905), + [aux_sym_cmd_identifier_token6] = ACTIONS(1905), + [aux_sym_cmd_identifier_token7] = ACTIONS(1905), + [aux_sym_cmd_identifier_token8] = ACTIONS(1903), + [aux_sym_cmd_identifier_token9] = ACTIONS(1903), + [aux_sym_cmd_identifier_token10] = ACTIONS(1905), + [aux_sym_cmd_identifier_token11] = ACTIONS(1905), + [aux_sym_cmd_identifier_token12] = ACTIONS(1903), + [aux_sym_cmd_identifier_token13] = ACTIONS(1903), + [aux_sym_cmd_identifier_token14] = ACTIONS(1903), + [aux_sym_cmd_identifier_token15] = ACTIONS(1903), + [aux_sym_cmd_identifier_token16] = ACTIONS(1905), + [aux_sym_cmd_identifier_token17] = ACTIONS(1905), + [aux_sym_cmd_identifier_token18] = ACTIONS(1905), + [aux_sym_cmd_identifier_token19] = ACTIONS(1905), + [aux_sym_cmd_identifier_token20] = ACTIONS(1905), + [aux_sym_cmd_identifier_token21] = ACTIONS(1905), + [aux_sym_cmd_identifier_token22] = ACTIONS(1905), + [aux_sym_cmd_identifier_token23] = ACTIONS(1905), + [aux_sym_cmd_identifier_token24] = ACTIONS(1905), + [aux_sym_cmd_identifier_token25] = ACTIONS(1905), + [aux_sym_cmd_identifier_token26] = ACTIONS(1905), + [aux_sym_cmd_identifier_token27] = ACTIONS(1905), + [aux_sym_cmd_identifier_token28] = ACTIONS(1905), + [aux_sym_cmd_identifier_token29] = ACTIONS(1905), + [aux_sym_cmd_identifier_token30] = ACTIONS(1905), + [aux_sym_cmd_identifier_token31] = ACTIONS(1905), + [aux_sym_cmd_identifier_token32] = ACTIONS(1905), + [aux_sym_cmd_identifier_token33] = ACTIONS(1905), + [aux_sym_cmd_identifier_token34] = ACTIONS(1903), + [aux_sym_cmd_identifier_token35] = ACTIONS(1905), + [aux_sym_cmd_identifier_token36] = ACTIONS(1905), + [aux_sym_cmd_identifier_token37] = ACTIONS(1905), + [aux_sym_cmd_identifier_token38] = ACTIONS(1903), + [aux_sym_cmd_identifier_token39] = ACTIONS(1905), + [aux_sym_cmd_identifier_token40] = ACTIONS(1905), + [anon_sym_def] = ACTIONS(1903), + [anon_sym_export_DASHenv] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_use] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1905), + [anon_sym_error] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_in2] = ACTIONS(1903), + [anon_sym_loop] = ACTIONS(1903), + [anon_sym_make] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_else] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_catch] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_source] = ACTIONS(1903), + [anon_sym_source_DASHenv] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_hide] = ACTIONS(1903), + [anon_sym_hide_DASHenv] = ACTIONS(1903), + [anon_sym_overlay] = ACTIONS(1903), + [anon_sym_as] = ACTIONS(1903), + [anon_sym_PLUS2] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), + [aux_sym__val_number_decimal_token1] = ACTIONS(1903), + [aux_sym__val_number_decimal_token2] = ACTIONS(1905), + [aux_sym__val_number_decimal_token3] = ACTIONS(1905), + [aux_sym__val_number_decimal_token4] = ACTIONS(1905), + [aux_sym__val_number_token1] = ACTIONS(1905), + [aux_sym__val_number_token2] = ACTIONS(1905), + [aux_sym__val_number_token3] = ACTIONS(1905), + [aux_sym__val_number_token4] = ACTIONS(1903), + [aux_sym__val_number_token5] = ACTIONS(1903), + [aux_sym__val_number_token6] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1905), + }, + [494] = { + [sym_cell_path] = STATE(742), + [sym_path] = STATE(659), + [sym_comment] = STATE(494), + [aux_sym_cell_path_repeat1] = STATE(521), + [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(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(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1911), + [aux_sym_cmd_identifier_token11] = ACTIONS(1911), + [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(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(1909), + [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(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_DASH2] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in2] = 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_as] = ACTIONS(1909), + [anon_sym_PLUS2] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(2080), + [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), + [aux_sym__val_number_token4] = ACTIONS(1909), + [aux_sym__val_number_token5] = ACTIONS(1909), + [aux_sym__val_number_token6] = ACTIONS(1909), + [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(251), + [sym_raw_string_begin] = ACTIONS(1911), + }, + [495] = { + [sym_cell_path] = STATE(754), + [sym_path] = STATE(659), + [sym_comment] = STATE(495), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_alias] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_let_DASHenv] = ACTIONS(1917), + [anon_sym_mut] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [aux_sym_cmd_identifier_token1] = ACTIONS(1917), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1917), + [aux_sym_cmd_identifier_token9] = ACTIONS(1917), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1917), + [aux_sym_cmd_identifier_token13] = ACTIONS(1917), + [aux_sym_cmd_identifier_token14] = ACTIONS(1917), + [aux_sym_cmd_identifier_token15] = ACTIONS(1917), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1917), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1917), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1917), + [anon_sym_export_DASHenv] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_in2] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_make] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_catch] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_source] = ACTIONS(1917), + [anon_sym_source_DASHenv] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_hide] = ACTIONS(1917), + [anon_sym_hide_DASHenv] = ACTIONS(1917), + [anon_sym_overlay] = ACTIONS(1917), + [anon_sym_as] = ACTIONS(1917), + [anon_sym_PLUS2] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1917), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1917), + [aux_sym__val_number_token5] = ACTIONS(1917), + [aux_sym__val_number_token6] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1919), + }, + [496] = { + [sym_cell_path] = STATE(755), + [sym_path] = STATE(659), + [sym_comment] = STATE(496), + [aux_sym_cell_path_repeat1] = STATE(521), + [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), @@ -138058,7 +139640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1925), [anon_sym_PLUS2] = ACTIONS(1925), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2080), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), [aux_sym__val_number_decimal_token1] = ACTIONS(1925), [aux_sym__val_number_decimal_token2] = ACTIONS(1927), @@ -138077,11 +139659,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1927), }, - [506] = { - [sym_cell_path] = STATE(699), - [sym_path] = STATE(679), - [sym_comment] = STATE(506), - [aux_sym_cell_path_repeat1] = STATE(564), + [497] = { + [sym_cell_path] = STATE(720), + [sym_path] = STATE(659), + [sym_comment] = STATE(497), + [aux_sym_cell_path_repeat1] = STATE(521), [anon_sym_export] = ACTIONS(1929), [anon_sym_alias] = ACTIONS(1929), [anon_sym_let] = ACTIONS(1929), @@ -138161,7 +139743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1929), [anon_sym_PLUS2] = ACTIONS(1929), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2080), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), [aux_sym__val_number_decimal_token1] = ACTIONS(1929), [aux_sym__val_number_decimal_token2] = ACTIONS(1931), @@ -138180,11 +139762,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1931), }, - [507] = { - [sym_cell_path] = STATE(700), - [sym_path] = STATE(679), - [sym_comment] = STATE(507), - [aux_sym_cell_path_repeat1] = STATE(564), + [498] = { + [sym_cell_path] = STATE(740), + [sym_path] = STATE(659), + [sym_comment] = STATE(498), + [aux_sym_cell_path_repeat1] = STATE(521), [anon_sym_export] = ACTIONS(1933), [anon_sym_alias] = ACTIONS(1933), [anon_sym_let] = ACTIONS(1933), @@ -138264,7 +139846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1933), [anon_sym_PLUS2] = ACTIONS(1933), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2080), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), [aux_sym__val_number_decimal_token1] = ACTIONS(1933), [aux_sym__val_number_decimal_token2] = ACTIONS(1935), @@ -138283,11 +139865,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1935), }, - [508] = { - [sym_cell_path] = STATE(701), - [sym_path] = STATE(679), - [sym_comment] = STATE(508), - [aux_sym_cell_path_repeat1] = STATE(564), + [499] = { + [sym_cell_path] = STATE(750), + [sym_path] = STATE(659), + [sym_comment] = STATE(499), + [aux_sym_cell_path_repeat1] = STATE(521), [anon_sym_export] = ACTIONS(1937), [anon_sym_alias] = ACTIONS(1937), [anon_sym_let] = ACTIONS(1937), @@ -138367,7 +139949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1937), [anon_sym_PLUS2] = ACTIONS(1937), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(2068), + [anon_sym_DOT] = ACTIONS(2080), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), [aux_sym__val_number_decimal_token1] = ACTIONS(1937), [aux_sym__val_number_decimal_token2] = ACTIONS(1939), @@ -138386,646 +139968,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1939), }, - [509] = { - [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [510] = { - [sym_cell_path] = STATE(702), - [sym_path] = STATE(679), - [sym_comment] = STATE(510), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [aux_sym_cmd_identifier_token37] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), - }, - [511] = { - [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(2197), - [aux_sym__immediate_decimal_token2] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [512] = { - [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_alias] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_let_DASHenv] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [aux_sym_cmd_identifier_token1] = ACTIONS(2201), - [aux_sym_cmd_identifier_token2] = ACTIONS(2201), - [aux_sym_cmd_identifier_token3] = ACTIONS(2201), - [aux_sym_cmd_identifier_token4] = ACTIONS(2201), - [aux_sym_cmd_identifier_token5] = ACTIONS(2201), - [aux_sym_cmd_identifier_token6] = ACTIONS(2201), - [aux_sym_cmd_identifier_token7] = ACTIONS(2201), - [aux_sym_cmd_identifier_token8] = ACTIONS(2201), - [aux_sym_cmd_identifier_token9] = ACTIONS(2201), - [aux_sym_cmd_identifier_token10] = ACTIONS(2201), - [aux_sym_cmd_identifier_token11] = ACTIONS(2201), - [aux_sym_cmd_identifier_token12] = ACTIONS(2201), - [aux_sym_cmd_identifier_token13] = ACTIONS(2201), - [aux_sym_cmd_identifier_token14] = ACTIONS(2201), - [aux_sym_cmd_identifier_token15] = ACTIONS(2201), - [aux_sym_cmd_identifier_token16] = ACTIONS(2201), - [aux_sym_cmd_identifier_token17] = ACTIONS(2201), - [aux_sym_cmd_identifier_token18] = ACTIONS(2201), - [aux_sym_cmd_identifier_token19] = ACTIONS(2201), - [aux_sym_cmd_identifier_token20] = ACTIONS(2201), - [aux_sym_cmd_identifier_token21] = ACTIONS(2201), - [aux_sym_cmd_identifier_token22] = ACTIONS(2201), - [aux_sym_cmd_identifier_token23] = ACTIONS(2201), - [aux_sym_cmd_identifier_token24] = ACTIONS(2201), - [aux_sym_cmd_identifier_token25] = ACTIONS(2201), - [aux_sym_cmd_identifier_token26] = ACTIONS(2201), - [aux_sym_cmd_identifier_token27] = ACTIONS(2201), - [aux_sym_cmd_identifier_token28] = ACTIONS(2201), - [aux_sym_cmd_identifier_token29] = ACTIONS(2201), - [aux_sym_cmd_identifier_token30] = ACTIONS(2201), - [aux_sym_cmd_identifier_token31] = ACTIONS(2201), - [aux_sym_cmd_identifier_token32] = ACTIONS(2201), - [aux_sym_cmd_identifier_token33] = ACTIONS(2201), - [aux_sym_cmd_identifier_token34] = ACTIONS(2201), - [aux_sym_cmd_identifier_token35] = ACTIONS(2201), - [aux_sym_cmd_identifier_token36] = ACTIONS(2201), - [aux_sym_cmd_identifier_token37] = ACTIONS(2201), - [aux_sym_cmd_identifier_token38] = ACTIONS(2201), - [aux_sym_cmd_identifier_token39] = ACTIONS(2201), - [aux_sym_cmd_identifier_token40] = ACTIONS(2201), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_export_DASHenv] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_error] = ACTIONS(2201), - [anon_sym_DASH2] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_in2] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_make] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_source] = ACTIONS(2201), - [anon_sym_source_DASHenv] = ACTIONS(2201), - [anon_sym_register] = ACTIONS(2201), - [anon_sym_hide] = ACTIONS(2201), - [anon_sym_hide_DASHenv] = ACTIONS(2201), - [anon_sym_overlay] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_PLUS2] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2201), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2201), - [aux_sym__val_number_decimal_token1] = ACTIONS(2201), - [aux_sym__val_number_decimal_token2] = ACTIONS(2201), - [aux_sym__val_number_decimal_token3] = ACTIONS(2201), - [aux_sym__val_number_decimal_token4] = ACTIONS(2201), - [aux_sym__val_number_token1] = ACTIONS(2201), - [aux_sym__val_number_token2] = ACTIONS(2201), - [aux_sym__val_number_token3] = ACTIONS(2201), - [aux_sym__val_number_token4] = ACTIONS(2201), - [aux_sym__val_number_token5] = ACTIONS(2201), - [aux_sym__val_number_token6] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [sym__str_single_quotes] = ACTIONS(2201), - [sym__str_back_ticks] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2201), - [sym__entry_separator] = ACTIONS(2203), + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [aux_sym_cmd_identifier_token1] = ACTIONS(2131), + [aux_sym_cmd_identifier_token2] = ACTIONS(2131), + [aux_sym_cmd_identifier_token3] = ACTIONS(2131), + [aux_sym_cmd_identifier_token4] = ACTIONS(2131), + [aux_sym_cmd_identifier_token5] = ACTIONS(2131), + [aux_sym_cmd_identifier_token6] = ACTIONS(2131), + [aux_sym_cmd_identifier_token7] = ACTIONS(2131), + [aux_sym_cmd_identifier_token8] = ACTIONS(2131), + [aux_sym_cmd_identifier_token9] = ACTIONS(2131), + [aux_sym_cmd_identifier_token10] = ACTIONS(2131), + [aux_sym_cmd_identifier_token11] = ACTIONS(2131), + [aux_sym_cmd_identifier_token12] = ACTIONS(2131), + [aux_sym_cmd_identifier_token13] = ACTIONS(2131), + [aux_sym_cmd_identifier_token14] = ACTIONS(2131), + [aux_sym_cmd_identifier_token15] = ACTIONS(2131), + [aux_sym_cmd_identifier_token16] = ACTIONS(2131), + [aux_sym_cmd_identifier_token17] = ACTIONS(2131), + [aux_sym_cmd_identifier_token18] = ACTIONS(2131), + [aux_sym_cmd_identifier_token19] = ACTIONS(2131), + [aux_sym_cmd_identifier_token20] = ACTIONS(2131), + [aux_sym_cmd_identifier_token21] = ACTIONS(2131), + [aux_sym_cmd_identifier_token22] = ACTIONS(2131), + [aux_sym_cmd_identifier_token23] = ACTIONS(2131), + [aux_sym_cmd_identifier_token24] = ACTIONS(2131), + [aux_sym_cmd_identifier_token25] = ACTIONS(2131), + [aux_sym_cmd_identifier_token26] = ACTIONS(2131), + [aux_sym_cmd_identifier_token27] = ACTIONS(2131), + [aux_sym_cmd_identifier_token28] = ACTIONS(2131), + [aux_sym_cmd_identifier_token29] = ACTIONS(2131), + [aux_sym_cmd_identifier_token30] = ACTIONS(2131), + [aux_sym_cmd_identifier_token31] = ACTIONS(2131), + [aux_sym_cmd_identifier_token32] = ACTIONS(2131), + [aux_sym_cmd_identifier_token33] = ACTIONS(2131), + [aux_sym_cmd_identifier_token34] = ACTIONS(2131), + [aux_sym_cmd_identifier_token35] = ACTIONS(2131), + [aux_sym_cmd_identifier_token36] = ACTIONS(2131), + [aux_sym_cmd_identifier_token37] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_DASH2] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_in2] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_make] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_catch] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_PLUS2] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), + [anon_sym_DOT_DOT2] = ACTIONS(2133), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), + [sym__entry_separator] = ACTIONS(2137), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2203), - }, - [513] = { - [sym_cell_path] = STATE(706), - [sym_path] = STATE(679), - [sym_comment] = STATE(513), - [aux_sym_cell_path_repeat1] = STATE(564), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2066), - [aux_sym_cmd_identifier_token3] = ACTIONS(2066), - [aux_sym_cmd_identifier_token4] = ACTIONS(2066), - [aux_sym_cmd_identifier_token5] = ACTIONS(2066), - [aux_sym_cmd_identifier_token6] = ACTIONS(2066), - [aux_sym_cmd_identifier_token7] = ACTIONS(2066), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2066), - [aux_sym_cmd_identifier_token11] = ACTIONS(2066), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2066), - [aux_sym_cmd_identifier_token17] = ACTIONS(2066), - [aux_sym_cmd_identifier_token18] = ACTIONS(2066), - [aux_sym_cmd_identifier_token19] = ACTIONS(2066), - [aux_sym_cmd_identifier_token20] = ACTIONS(2066), - [aux_sym_cmd_identifier_token21] = ACTIONS(2066), - [aux_sym_cmd_identifier_token22] = ACTIONS(2066), - [aux_sym_cmd_identifier_token23] = ACTIONS(2066), - [aux_sym_cmd_identifier_token24] = ACTIONS(2066), - [aux_sym_cmd_identifier_token25] = ACTIONS(2066), - [aux_sym_cmd_identifier_token26] = ACTIONS(2066), - [aux_sym_cmd_identifier_token27] = ACTIONS(2066), - [aux_sym_cmd_identifier_token28] = ACTIONS(2066), - [aux_sym_cmd_identifier_token29] = ACTIONS(2066), - [aux_sym_cmd_identifier_token30] = ACTIONS(2066), - [aux_sym_cmd_identifier_token31] = ACTIONS(2066), - [aux_sym_cmd_identifier_token32] = ACTIONS(2066), - [aux_sym_cmd_identifier_token33] = ACTIONS(2066), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2066), - [aux_sym_cmd_identifier_token36] = ACTIONS(2066), - [aux_sym_cmd_identifier_token37] = ACTIONS(2066), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2066), - [aux_sym_cmd_identifier_token40] = ACTIONS(2066), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2066), - [aux_sym__val_number_decimal_token3] = ACTIONS(2066), - [aux_sym__val_number_decimal_token4] = ACTIONS(2066), - [aux_sym__val_number_token1] = ACTIONS(2066), - [aux_sym__val_number_token2] = ACTIONS(2066), - [aux_sym__val_number_token3] = ACTIONS(2066), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2066), - [sym__str_single_quotes] = ACTIONS(2066), - [sym__str_back_ticks] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2066), - }, - [514] = { - [sym_comment] = STATE(514), - [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] = ACTIONS(1018), - [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(251), - [sym_raw_string_begin] = ACTIONS(1020), + [sym_raw_string_begin] = ACTIONS(2137), }, - [515] = { - [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), + [501] = { + [sym_comment] = STATE(501), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), [aux_sym_cmd_identifier_token2] = ACTIONS(1801), [aux_sym_cmd_identifier_token3] = ACTIONS(1801), [aux_sym_cmd_identifier_token4] = ACTIONS(1801), [aux_sym_cmd_identifier_token5] = ACTIONS(1801), [aux_sym_cmd_identifier_token6] = ACTIONS(1801), [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), [aux_sym_cmd_identifier_token10] = ACTIONS(1801), [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), [aux_sym_cmd_identifier_token16] = ACTIONS(1801), [aux_sym_cmd_identifier_token17] = ACTIONS(1801), [aux_sym_cmd_identifier_token18] = ACTIONS(1801), @@ -139044,396 +140112,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1801), [aux_sym_cmd_identifier_token32] = ACTIONS(1801), [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), [aux_sym_cmd_identifier_token35] = ACTIONS(1801), [aux_sym_cmd_identifier_token36] = ACTIONS(1801), [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), [aux_sym_cmd_identifier_token39] = ACTIONS(1801), [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), [anon_sym_LPAREN] = ACTIONS(1801), [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(2139), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), [aux_sym__val_number_decimal_token2] = ACTIONS(1801), [aux_sym__val_number_decimal_token3] = ACTIONS(1801), [aux_sym__val_number_decimal_token4] = ACTIONS(1801), [aux_sym__val_number_token1] = ACTIONS(1801), [aux_sym__val_number_token2] = ACTIONS(1801), [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), [anon_sym_DQUOTE] = ACTIONS(1801), [sym__str_single_quotes] = ACTIONS(1801), [sym__str_back_ticks] = ACTIONS(1801), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(2205), - [aux_sym__immediate_decimal_token2] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), + [502] = { + [sym_expr_parenthesized] = STATE(4778), + [sym__spread_parenthesized] = STATE(5261), + [sym_val_range] = STATE(5262), + [sym__val_range] = STATE(8417), + [sym__val_range_with_end] = STATE(8052), + [sym__value] = STATE(5262), + [sym_val_nothing] = STATE(5064), + [sym_val_bool] = STATE(4848), + [sym__spread_variable] = STATE(5263), + [sym_val_variable] = STATE(4635), + [sym_val_number] = STATE(5064), + [sym__val_number_decimal] = STATE(4315), + [sym__val_number] = STATE(5141), + [sym_val_duration] = STATE(5064), + [sym_val_filesize] = STATE(5064), + [sym_val_binary] = STATE(5064), + [sym_val_string] = STATE(5064), + [sym__raw_str] = STATE(4801), + [sym__str_double_quotes] = STATE(4801), + [sym_val_interpolated] = STATE(5064), + [sym__inter_single_quotes] = STATE(5066), + [sym__inter_double_quotes] = STATE(5068), + [sym_val_list] = STATE(5064), + [sym__spread_list] = STATE(5261), + [sym_val_record] = STATE(5064), + [sym_val_table] = STATE(5064), + [sym_val_closure] = STATE(5064), + [sym__cmd_arg] = STATE(5264), + [sym_redirection] = STATE(5265), + [sym_short_flag] = STATE(5266), + [sym_long_flag] = STATE(5266), + [sym_unquoted] = STATE(4875), + [sym__unquoted_with_expr] = STATE(5268), + [sym__unquoted_anonymous_prefix] = STATE(7443), + [sym_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym__newline] = ACTIONS(1969), + [sym__space] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_err_GT_PIPE] = ACTIONS(1969), + [anon_sym_out_GT_PIPE] = ACTIONS(1969), + [anon_sym_e_GT_PIPE] = ACTIONS(1969), + [anon_sym_o_GT_PIPE] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_DASH2] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), + [anon_sym_DOT_DOT_LT] = ACTIONS(2157), + [anon_sym_null] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2167), + [aux_sym__val_number_decimal_token4] = ACTIONS(2169), + [aux_sym__val_number_token1] = ACTIONS(2171), + [aux_sym__val_number_token2] = ACTIONS(2171), + [aux_sym__val_number_token3] = ACTIONS(2171), + [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(2175), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(2179), + [anon_sym_DQUOTE] = ACTIONS(2181), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2189), + [anon_sym_err_GT] = ACTIONS(2191), + [anon_sym_out_GT] = ACTIONS(2191), + [anon_sym_e_GT] = ACTIONS(2191), + [anon_sym_o_GT] = ACTIONS(2191), + [anon_sym_err_PLUSout_GT] = ACTIONS(2191), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2191), + [anon_sym_o_PLUSe_GT] = ACTIONS(2191), + [anon_sym_e_PLUSo_GT] = ACTIONS(2191), + [anon_sym_err_GT_GT] = ACTIONS(2191), + [anon_sym_out_GT_GT] = ACTIONS(2191), + [anon_sym_e_GT_GT] = ACTIONS(2191), + [anon_sym_o_GT_GT] = ACTIONS(2191), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2191), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2191), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2191), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2191), + [aux_sym_unquoted_token1] = ACTIONS(2193), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_raw_string_begin] = ACTIONS(2195), }, - [517] = { - [sym__expr_parenthesized_immediate] = STATE(7687), - [sym_comment] = STATE(517), - [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_LPAREN2] = ACTIONS(1697), - [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(2112), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2112), + [503] = { + [sym_cell_path] = STATE(738), + [sym_path] = STATE(659), + [sym_comment] = STATE(503), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(2037), + [anon_sym_alias] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_let_DASHenv] = ACTIONS(2037), + [anon_sym_mut] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [aux_sym_cmd_identifier_token1] = ACTIONS(2037), + [aux_sym_cmd_identifier_token2] = ACTIONS(2039), + [aux_sym_cmd_identifier_token3] = ACTIONS(2039), + [aux_sym_cmd_identifier_token4] = ACTIONS(2039), + [aux_sym_cmd_identifier_token5] = ACTIONS(2039), + [aux_sym_cmd_identifier_token6] = ACTIONS(2039), + [aux_sym_cmd_identifier_token7] = ACTIONS(2039), + [aux_sym_cmd_identifier_token8] = ACTIONS(2037), + [aux_sym_cmd_identifier_token9] = ACTIONS(2037), + [aux_sym_cmd_identifier_token10] = ACTIONS(2039), + [aux_sym_cmd_identifier_token11] = ACTIONS(2039), + [aux_sym_cmd_identifier_token12] = ACTIONS(2037), + [aux_sym_cmd_identifier_token13] = ACTIONS(2037), + [aux_sym_cmd_identifier_token14] = ACTIONS(2037), + [aux_sym_cmd_identifier_token15] = ACTIONS(2037), + [aux_sym_cmd_identifier_token16] = ACTIONS(2039), + [aux_sym_cmd_identifier_token17] = ACTIONS(2039), + [aux_sym_cmd_identifier_token18] = ACTIONS(2039), + [aux_sym_cmd_identifier_token19] = ACTIONS(2039), + [aux_sym_cmd_identifier_token20] = ACTIONS(2039), + [aux_sym_cmd_identifier_token21] = ACTIONS(2039), + [aux_sym_cmd_identifier_token22] = ACTIONS(2039), + [aux_sym_cmd_identifier_token23] = ACTIONS(2039), + [aux_sym_cmd_identifier_token24] = ACTIONS(2039), + [aux_sym_cmd_identifier_token25] = ACTIONS(2039), + [aux_sym_cmd_identifier_token26] = ACTIONS(2039), + [aux_sym_cmd_identifier_token27] = ACTIONS(2039), + [aux_sym_cmd_identifier_token28] = ACTIONS(2039), + [aux_sym_cmd_identifier_token29] = ACTIONS(2039), + [aux_sym_cmd_identifier_token30] = ACTIONS(2039), + [aux_sym_cmd_identifier_token31] = ACTIONS(2039), + [aux_sym_cmd_identifier_token32] = ACTIONS(2039), + [aux_sym_cmd_identifier_token33] = ACTIONS(2039), + [aux_sym_cmd_identifier_token34] = ACTIONS(2037), + [aux_sym_cmd_identifier_token35] = ACTIONS(2039), + [aux_sym_cmd_identifier_token36] = ACTIONS(2039), + [aux_sym_cmd_identifier_token37] = ACTIONS(2039), + [aux_sym_cmd_identifier_token38] = ACTIONS(2037), + [aux_sym_cmd_identifier_token39] = ACTIONS(2039), + [aux_sym_cmd_identifier_token40] = ACTIONS(2039), + [anon_sym_def] = ACTIONS(2037), + [anon_sym_export_DASHenv] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_module] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_DOLLAR] = ACTIONS(2039), + [anon_sym_error] = ACTIONS(2037), + [anon_sym_DASH2] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_in2] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_make] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_do] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_else] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2037), + [anon_sym_catch] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_source] = ACTIONS(2037), + [anon_sym_source_DASHenv] = ACTIONS(2037), + [anon_sym_register] = ACTIONS(2037), + [anon_sym_hide] = ACTIONS(2037), + [anon_sym_hide_DASHenv] = ACTIONS(2037), + [anon_sym_overlay] = ACTIONS(2037), + [anon_sym_as] = ACTIONS(2037), + [anon_sym_PLUS2] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2039), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2039), + [aux_sym__val_number_decimal_token1] = ACTIONS(2037), + [aux_sym__val_number_decimal_token2] = ACTIONS(2039), + [aux_sym__val_number_decimal_token3] = ACTIONS(2039), + [aux_sym__val_number_decimal_token4] = ACTIONS(2039), + [aux_sym__val_number_token1] = ACTIONS(2039), + [aux_sym__val_number_token2] = ACTIONS(2039), + [aux_sym__val_number_token3] = ACTIONS(2039), + [aux_sym__val_number_token4] = ACTIONS(2037), + [aux_sym__val_number_token5] = ACTIONS(2037), + [aux_sym__val_number_token6] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2039), + [sym__str_single_quotes] = ACTIONS(2039), + [sym__str_back_ticks] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2039), }, - [518] = { - [sym__expr_parenthesized_immediate] = STATE(7875), - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(2209), - [anon_sym_alias] = ACTIONS(2209), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_let_DASHenv] = ACTIONS(2209), - [anon_sym_mut] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [aux_sym_cmd_identifier_token1] = ACTIONS(2209), - [aux_sym_cmd_identifier_token2] = ACTIONS(2209), - [aux_sym_cmd_identifier_token3] = ACTIONS(2209), - [aux_sym_cmd_identifier_token4] = ACTIONS(2209), - [aux_sym_cmd_identifier_token5] = ACTIONS(2209), - [aux_sym_cmd_identifier_token6] = ACTIONS(2209), - [aux_sym_cmd_identifier_token7] = ACTIONS(2209), - [aux_sym_cmd_identifier_token8] = ACTIONS(2209), - [aux_sym_cmd_identifier_token9] = ACTIONS(2209), - [aux_sym_cmd_identifier_token10] = ACTIONS(2209), - [aux_sym_cmd_identifier_token11] = ACTIONS(2209), - [aux_sym_cmd_identifier_token12] = ACTIONS(2209), - [aux_sym_cmd_identifier_token13] = ACTIONS(2209), - [aux_sym_cmd_identifier_token14] = ACTIONS(2209), - [aux_sym_cmd_identifier_token15] = ACTIONS(2209), - [aux_sym_cmd_identifier_token16] = ACTIONS(2209), - [aux_sym_cmd_identifier_token17] = ACTIONS(2209), - [aux_sym_cmd_identifier_token18] = ACTIONS(2209), - [aux_sym_cmd_identifier_token19] = ACTIONS(2209), - [aux_sym_cmd_identifier_token20] = ACTIONS(2209), - [aux_sym_cmd_identifier_token21] = ACTIONS(2209), - [aux_sym_cmd_identifier_token22] = ACTIONS(2209), - [aux_sym_cmd_identifier_token23] = ACTIONS(2209), - [aux_sym_cmd_identifier_token24] = ACTIONS(2209), - [aux_sym_cmd_identifier_token25] = ACTIONS(2209), - [aux_sym_cmd_identifier_token26] = ACTIONS(2209), - [aux_sym_cmd_identifier_token27] = ACTIONS(2209), - [aux_sym_cmd_identifier_token28] = ACTIONS(2209), - [aux_sym_cmd_identifier_token29] = ACTIONS(2209), - [aux_sym_cmd_identifier_token30] = ACTIONS(2209), - [aux_sym_cmd_identifier_token31] = ACTIONS(2209), - [aux_sym_cmd_identifier_token32] = ACTIONS(2209), - [aux_sym_cmd_identifier_token33] = ACTIONS(2209), - [aux_sym_cmd_identifier_token34] = ACTIONS(2209), - [aux_sym_cmd_identifier_token35] = ACTIONS(2209), - [aux_sym_cmd_identifier_token36] = ACTIONS(2209), - [aux_sym_cmd_identifier_token37] = ACTIONS(2209), - [aux_sym_cmd_identifier_token38] = ACTIONS(2209), - [aux_sym_cmd_identifier_token39] = ACTIONS(2209), - [aux_sym_cmd_identifier_token40] = ACTIONS(2209), - [anon_sym_def] = ACTIONS(2209), - [anon_sym_export_DASHenv] = ACTIONS(2209), - [anon_sym_extern] = ACTIONS(2209), - [anon_sym_module] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2209), - [anon_sym_error] = ACTIONS(2209), - [anon_sym_DASH2] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_in2] = ACTIONS(2209), - [anon_sym_loop] = ACTIONS(2209), - [anon_sym_make] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_catch] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_source] = ACTIONS(2209), - [anon_sym_source_DASHenv] = ACTIONS(2209), - [anon_sym_register] = ACTIONS(2209), - [anon_sym_hide] = ACTIONS(2209), - [anon_sym_hide_DASHenv] = ACTIONS(2209), - [anon_sym_overlay] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2209), - [aux_sym__val_number_decimal_token1] = ACTIONS(2209), - [aux_sym__val_number_decimal_token2] = ACTIONS(2209), - [aux_sym__val_number_decimal_token3] = ACTIONS(2209), - [aux_sym__val_number_decimal_token4] = ACTIONS(2209), - [aux_sym__val_number_token1] = ACTIONS(2209), - [aux_sym__val_number_token2] = ACTIONS(2209), - [aux_sym__val_number_token3] = ACTIONS(2209), - [aux_sym__val_number_token4] = ACTIONS(2209), - [aux_sym__val_number_token5] = ACTIONS(2209), - [aux_sym__val_number_token6] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2209), - [sym__str_single_quotes] = ACTIONS(2209), - [sym__str_back_ticks] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2209), - [sym__entry_separator] = ACTIONS(2211), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2211), + [504] = { + [sym_cell_path] = STATE(744), + [sym_path] = STATE(659), + [sym_comment] = STATE(504), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(2045), + [anon_sym_alias] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_let_DASHenv] = ACTIONS(2045), + [anon_sym_mut] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [aux_sym_cmd_identifier_token1] = ACTIONS(2045), + [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(2045), + [aux_sym_cmd_identifier_token9] = ACTIONS(2045), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2045), + [aux_sym_cmd_identifier_token13] = ACTIONS(2045), + [aux_sym_cmd_identifier_token14] = ACTIONS(2045), + [aux_sym_cmd_identifier_token15] = ACTIONS(2045), + [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(2045), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [aux_sym_cmd_identifier_token37] = ACTIONS(2047), + [aux_sym_cmd_identifier_token38] = ACTIONS(2045), + [aux_sym_cmd_identifier_token39] = ACTIONS(2047), + [aux_sym_cmd_identifier_token40] = ACTIONS(2047), + [anon_sym_def] = ACTIONS(2045), + [anon_sym_export_DASHenv] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_module] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2045), + [anon_sym_DASH2] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_in2] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_make] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_do] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_else] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2045), + [anon_sym_catch] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_source] = ACTIONS(2045), + [anon_sym_source_DASHenv] = ACTIONS(2045), + [anon_sym_register] = ACTIONS(2045), + [anon_sym_hide] = ACTIONS(2045), + [anon_sym_hide_DASHenv] = ACTIONS(2045), + [anon_sym_overlay] = ACTIONS(2045), + [anon_sym_as] = ACTIONS(2045), + [anon_sym_PLUS2] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), + [aux_sym__val_number_decimal_token1] = ACTIONS(2045), + [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), + [aux_sym__val_number_token4] = ACTIONS(2045), + [aux_sym__val_number_token5] = ACTIONS(2045), + [aux_sym__val_number_token6] = ACTIONS(2045), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2047), }, - [519] = { - [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(1777), - [anon_sym_alias] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_let_DASHenv] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [aux_sym_cmd_identifier_token1] = ACTIONS(1777), + [505] = { + [sym_comment] = STATE(505), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), [aux_sym_cmd_identifier_token2] = ACTIONS(1779), [aux_sym_cmd_identifier_token3] = ACTIONS(1779), [aux_sym_cmd_identifier_token4] = ACTIONS(1779), [aux_sym_cmd_identifier_token5] = ACTIONS(1779), [aux_sym_cmd_identifier_token6] = ACTIONS(1779), [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1777), - [aux_sym_cmd_identifier_token9] = ACTIONS(1777), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), [aux_sym_cmd_identifier_token10] = ACTIONS(1779), [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1777), - [aux_sym_cmd_identifier_token13] = ACTIONS(1777), - [aux_sym_cmd_identifier_token14] = ACTIONS(1777), - [aux_sym_cmd_identifier_token15] = ACTIONS(1777), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), [aux_sym_cmd_identifier_token16] = ACTIONS(1779), [aux_sym_cmd_identifier_token17] = ACTIONS(1779), [aux_sym_cmd_identifier_token18] = ACTIONS(1779), @@ -139452,431 +140524,1866 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1779), [aux_sym_cmd_identifier_token32] = ACTIONS(1779), [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1777), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), [aux_sym_cmd_identifier_token35] = ACTIONS(1779), [aux_sym_cmd_identifier_token36] = ACTIONS(1779), [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1777), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), [aux_sym_cmd_identifier_token39] = ACTIONS(1779), [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1777), - [anon_sym_export_DASHenv] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_module] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), [anon_sym_LPAREN] = ACTIONS(1779), [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_in2] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_make] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_catch] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_source] = ACTIONS(1777), - [anon_sym_source_DASHenv] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_hide] = ACTIONS(1777), - [anon_sym_hide_DASHenv] = ACTIONS(1777), - [anon_sym_overlay] = ACTIONS(1777), - [anon_sym_as] = ACTIONS(1777), - [anon_sym_PLUS2] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), + [aux_sym__immediate_decimal_token2] = ACTIONS(1923), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), [aux_sym__val_number_decimal_token2] = ACTIONS(1779), [aux_sym__val_number_decimal_token3] = ACTIONS(1779), [aux_sym__val_number_decimal_token4] = ACTIONS(1779), [aux_sym__val_number_token1] = ACTIONS(1779), [aux_sym__val_number_token2] = ACTIONS(1779), [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1777), - [aux_sym__val_number_token5] = ACTIONS(1777), - [aux_sym__val_number_token6] = ACTIONS(1777), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), [anon_sym_DQUOTE] = ACTIONS(1779), [sym__str_single_quotes] = ACTIONS(1779), [sym__str_back_ticks] = ACTIONS(1779), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1779), - }, - [520] = { - [sym__expr_parenthesized_immediate] = STATE(7875), - [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_alias] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_let_DASHenv] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [aux_sym_cmd_identifier_token1] = ACTIONS(2213), - [aux_sym_cmd_identifier_token2] = ACTIONS(2213), - [aux_sym_cmd_identifier_token3] = ACTIONS(2213), - [aux_sym_cmd_identifier_token4] = ACTIONS(2213), - [aux_sym_cmd_identifier_token5] = ACTIONS(2213), - [aux_sym_cmd_identifier_token6] = ACTIONS(2213), - [aux_sym_cmd_identifier_token7] = ACTIONS(2213), - [aux_sym_cmd_identifier_token8] = ACTIONS(2213), - [aux_sym_cmd_identifier_token9] = ACTIONS(2213), - [aux_sym_cmd_identifier_token10] = ACTIONS(2213), - [aux_sym_cmd_identifier_token11] = ACTIONS(2213), - [aux_sym_cmd_identifier_token12] = ACTIONS(2213), - [aux_sym_cmd_identifier_token13] = ACTIONS(2213), - [aux_sym_cmd_identifier_token14] = ACTIONS(2213), - [aux_sym_cmd_identifier_token15] = ACTIONS(2213), - [aux_sym_cmd_identifier_token16] = ACTIONS(2213), - [aux_sym_cmd_identifier_token17] = ACTIONS(2213), - [aux_sym_cmd_identifier_token18] = ACTIONS(2213), - [aux_sym_cmd_identifier_token19] = ACTIONS(2213), - [aux_sym_cmd_identifier_token20] = ACTIONS(2213), - [aux_sym_cmd_identifier_token21] = ACTIONS(2213), - [aux_sym_cmd_identifier_token22] = ACTIONS(2213), - [aux_sym_cmd_identifier_token23] = ACTIONS(2213), - [aux_sym_cmd_identifier_token24] = ACTIONS(2213), - [aux_sym_cmd_identifier_token25] = ACTIONS(2213), - [aux_sym_cmd_identifier_token26] = ACTIONS(2213), - [aux_sym_cmd_identifier_token27] = ACTIONS(2213), - [aux_sym_cmd_identifier_token28] = ACTIONS(2213), - [aux_sym_cmd_identifier_token29] = ACTIONS(2213), - [aux_sym_cmd_identifier_token30] = ACTIONS(2213), - [aux_sym_cmd_identifier_token31] = ACTIONS(2213), - [aux_sym_cmd_identifier_token32] = ACTIONS(2213), - [aux_sym_cmd_identifier_token33] = ACTIONS(2213), - [aux_sym_cmd_identifier_token34] = ACTIONS(2213), - [aux_sym_cmd_identifier_token35] = ACTIONS(2213), - [aux_sym_cmd_identifier_token36] = ACTIONS(2213), - [aux_sym_cmd_identifier_token37] = ACTIONS(2213), - [aux_sym_cmd_identifier_token38] = ACTIONS(2213), - [aux_sym_cmd_identifier_token39] = ACTIONS(2213), - [aux_sym_cmd_identifier_token40] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2213), - [anon_sym_export_DASHenv] = ACTIONS(2213), - [anon_sym_extern] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_error] = ACTIONS(2213), - [anon_sym_DASH2] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_in2] = ACTIONS(2213), - [anon_sym_loop] = ACTIONS(2213), - [anon_sym_make] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_catch] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_source] = ACTIONS(2213), - [anon_sym_source_DASHenv] = ACTIONS(2213), - [anon_sym_register] = ACTIONS(2213), - [anon_sym_hide] = ACTIONS(2213), - [anon_sym_hide_DASHenv] = ACTIONS(2213), - [anon_sym_overlay] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2213), - [aux_sym__val_number_decimal_token1] = ACTIONS(2213), - [aux_sym__val_number_decimal_token2] = ACTIONS(2213), - [aux_sym__val_number_decimal_token3] = ACTIONS(2213), - [aux_sym__val_number_decimal_token4] = ACTIONS(2213), - [aux_sym__val_number_token1] = ACTIONS(2213), - [aux_sym__val_number_token2] = ACTIONS(2213), - [aux_sym__val_number_token3] = ACTIONS(2213), - [aux_sym__val_number_token4] = ACTIONS(2213), - [aux_sym__val_number_token5] = ACTIONS(2213), - [aux_sym__val_number_token6] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [sym__str_single_quotes] = ACTIONS(2213), - [sym__str_back_ticks] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2213), - [sym__entry_separator] = ACTIONS(2215), + [sym__entry_separator] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2215), + [sym_raw_string_begin] = ACTIONS(1781), }, - [521] = { - [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), - [aux_sym__immediate_decimal_token1] = ACTIONS(2217), - [aux_sym__immediate_decimal_token2] = ACTIONS(2219), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), + [506] = { + [sym_comment] = STATE(506), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2197), + [aux_sym_cmd_identifier_token3] = ACTIONS(2197), + [aux_sym_cmd_identifier_token4] = ACTIONS(2197), + [aux_sym_cmd_identifier_token5] = ACTIONS(2197), + [aux_sym_cmd_identifier_token6] = ACTIONS(2197), + [aux_sym_cmd_identifier_token7] = ACTIONS(2197), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2197), + [aux_sym_cmd_identifier_token11] = ACTIONS(2197), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2197), + [aux_sym_cmd_identifier_token17] = ACTIONS(2197), + [aux_sym_cmd_identifier_token18] = ACTIONS(2197), + [aux_sym_cmd_identifier_token19] = ACTIONS(2197), + [aux_sym_cmd_identifier_token20] = ACTIONS(2197), + [aux_sym_cmd_identifier_token21] = ACTIONS(2197), + [aux_sym_cmd_identifier_token22] = ACTIONS(2197), + [aux_sym_cmd_identifier_token23] = ACTIONS(2197), + [aux_sym_cmd_identifier_token24] = ACTIONS(2197), + [aux_sym_cmd_identifier_token25] = ACTIONS(2197), + [aux_sym_cmd_identifier_token26] = ACTIONS(2197), + [aux_sym_cmd_identifier_token27] = ACTIONS(2197), + [aux_sym_cmd_identifier_token28] = ACTIONS(2197), + [aux_sym_cmd_identifier_token29] = ACTIONS(2197), + [aux_sym_cmd_identifier_token30] = ACTIONS(2197), + [aux_sym_cmd_identifier_token31] = ACTIONS(2197), + [aux_sym_cmd_identifier_token32] = ACTIONS(2197), + [aux_sym_cmd_identifier_token33] = ACTIONS(2197), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2197), + [aux_sym_cmd_identifier_token36] = ACTIONS(2197), + [aux_sym_cmd_identifier_token37] = ACTIONS(2197), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2197), + [aux_sym_cmd_identifier_token40] = ACTIONS(2197), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), + [anon_sym_DOT_DOT2] = ACTIONS(2066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2197), + [aux_sym__val_number_decimal_token3] = ACTIONS(2197), + [aux_sym__val_number_decimal_token4] = ACTIONS(2197), + [aux_sym__val_number_token1] = ACTIONS(2197), + [aux_sym__val_number_token2] = ACTIONS(2197), + [aux_sym__val_number_token3] = ACTIONS(2197), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym__str_single_quotes] = ACTIONS(2197), + [sym__str_back_ticks] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), + [sym__entry_separator] = ACTIONS(2199), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), + [sym_raw_string_begin] = ACTIONS(2199), }, - [522] = { - [sym__expr_parenthesized_immediate] = STATE(7875), - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_alias] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_let_DASHenv] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [aux_sym_cmd_identifier_token1] = ACTIONS(2221), - [aux_sym_cmd_identifier_token2] = ACTIONS(2221), - [aux_sym_cmd_identifier_token3] = ACTIONS(2221), - [aux_sym_cmd_identifier_token4] = ACTIONS(2221), - [aux_sym_cmd_identifier_token5] = ACTIONS(2221), - [aux_sym_cmd_identifier_token6] = ACTIONS(2221), - [aux_sym_cmd_identifier_token7] = ACTIONS(2221), - [aux_sym_cmd_identifier_token8] = ACTIONS(2221), - [aux_sym_cmd_identifier_token9] = ACTIONS(2221), - [aux_sym_cmd_identifier_token10] = ACTIONS(2221), - [aux_sym_cmd_identifier_token11] = ACTIONS(2221), - [aux_sym_cmd_identifier_token12] = ACTIONS(2221), - [aux_sym_cmd_identifier_token13] = ACTIONS(2221), - [aux_sym_cmd_identifier_token14] = ACTIONS(2221), - [aux_sym_cmd_identifier_token15] = ACTIONS(2221), - [aux_sym_cmd_identifier_token16] = ACTIONS(2221), - [aux_sym_cmd_identifier_token17] = ACTIONS(2221), - [aux_sym_cmd_identifier_token18] = ACTIONS(2221), - [aux_sym_cmd_identifier_token19] = ACTIONS(2221), - [aux_sym_cmd_identifier_token20] = ACTIONS(2221), - [aux_sym_cmd_identifier_token21] = ACTIONS(2221), - [aux_sym_cmd_identifier_token22] = ACTIONS(2221), - [aux_sym_cmd_identifier_token23] = ACTIONS(2221), - [aux_sym_cmd_identifier_token24] = ACTIONS(2221), - [aux_sym_cmd_identifier_token25] = ACTIONS(2221), - [aux_sym_cmd_identifier_token26] = ACTIONS(2221), - [aux_sym_cmd_identifier_token27] = ACTIONS(2221), - [aux_sym_cmd_identifier_token28] = ACTIONS(2221), - [aux_sym_cmd_identifier_token29] = ACTIONS(2221), - [aux_sym_cmd_identifier_token30] = ACTIONS(2221), - [aux_sym_cmd_identifier_token31] = ACTIONS(2221), - [aux_sym_cmd_identifier_token32] = ACTIONS(2221), - [aux_sym_cmd_identifier_token33] = ACTIONS(2221), - [aux_sym_cmd_identifier_token34] = ACTIONS(2221), - [aux_sym_cmd_identifier_token35] = ACTIONS(2221), - [aux_sym_cmd_identifier_token36] = ACTIONS(2221), - [aux_sym_cmd_identifier_token37] = ACTIONS(2221), - [aux_sym_cmd_identifier_token38] = ACTIONS(2221), - [aux_sym_cmd_identifier_token39] = ACTIONS(2221), - [aux_sym_cmd_identifier_token40] = ACTIONS(2221), - [anon_sym_def] = ACTIONS(2221), - [anon_sym_export_DASHenv] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2221), - [anon_sym_error] = ACTIONS(2221), - [anon_sym_DASH2] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_in2] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_make] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_source] = ACTIONS(2221), - [anon_sym_source_DASHenv] = ACTIONS(2221), - [anon_sym_register] = ACTIONS(2221), - [anon_sym_hide] = ACTIONS(2221), - [anon_sym_hide_DASHenv] = ACTIONS(2221), - [anon_sym_overlay] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2221), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_decimal_token2] = ACTIONS(2221), - [aux_sym__val_number_decimal_token3] = ACTIONS(2221), - [aux_sym__val_number_decimal_token4] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2221), - [aux_sym__val_number_token2] = ACTIONS(2221), - [aux_sym__val_number_token3] = ACTIONS(2221), - [aux_sym__val_number_token4] = ACTIONS(2221), - [aux_sym__val_number_token5] = ACTIONS(2221), - [aux_sym__val_number_token6] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [sym__str_single_quotes] = ACTIONS(2221), - [sym__str_back_ticks] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2221), - [sym__entry_separator] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2223), + [507] = { + [sym_cell_path] = STATE(695), + [sym_path] = STATE(659), + [sym_comment] = STATE(507), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [aux_sym_cmd_identifier_token37] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in2] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1945), + [aux_sym__val_number_token5] = ACTIONS(1945), + [aux_sym__val_number_token6] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1947), }, - [523] = { - [sym_comment] = STATE(523), - [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), + [508] = { + [sym_cell_path] = STATE(759), + [sym_path] = STATE(659), + [sym_comment] = STATE(508), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_alias] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_let_DASHenv] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [aux_sym_cmd_identifier_token1] = ACTIONS(2057), + [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(2057), + [aux_sym_cmd_identifier_token9] = ACTIONS(2057), + [aux_sym_cmd_identifier_token10] = ACTIONS(2059), + [aux_sym_cmd_identifier_token11] = ACTIONS(2059), + [aux_sym_cmd_identifier_token12] = ACTIONS(2057), + [aux_sym_cmd_identifier_token13] = ACTIONS(2057), + [aux_sym_cmd_identifier_token14] = ACTIONS(2057), + [aux_sym_cmd_identifier_token15] = ACTIONS(2057), + [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(2057), + [aux_sym_cmd_identifier_token35] = ACTIONS(2059), + [aux_sym_cmd_identifier_token36] = ACTIONS(2059), + [aux_sym_cmd_identifier_token37] = ACTIONS(2059), + [aux_sym_cmd_identifier_token38] = ACTIONS(2057), + [aux_sym_cmd_identifier_token39] = ACTIONS(2059), + [aux_sym_cmd_identifier_token40] = ACTIONS(2059), + [anon_sym_def] = ACTIONS(2057), + [anon_sym_export_DASHenv] = ACTIONS(2057), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_error] = ACTIONS(2057), + [anon_sym_DASH2] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_in2] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_make] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_source] = ACTIONS(2057), + [anon_sym_source_DASHenv] = ACTIONS(2057), + [anon_sym_register] = ACTIONS(2057), + [anon_sym_hide] = ACTIONS(2057), + [anon_sym_hide_DASHenv] = ACTIONS(2057), + [anon_sym_overlay] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_PLUS2] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), + [aux_sym__val_number_decimal_token1] = ACTIONS(2057), + [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), + [aux_sym__val_number_token4] = ACTIONS(2057), + [aux_sym__val_number_token5] = ACTIONS(2057), + [aux_sym__val_number_token6] = ACTIONS(2057), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2059), + }, + [509] = { + [sym_cell_path] = STATE(761), + [sym_path] = STATE(659), + [sym_comment] = STATE(509), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_alias] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_let_DASHenv] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [aux_sym_cmd_identifier_token1] = ACTIONS(1861), + [aux_sym_cmd_identifier_token2] = ACTIONS(1865), + [aux_sym_cmd_identifier_token3] = ACTIONS(1865), + [aux_sym_cmd_identifier_token4] = ACTIONS(1865), + [aux_sym_cmd_identifier_token5] = ACTIONS(1865), + [aux_sym_cmd_identifier_token6] = ACTIONS(1865), + [aux_sym_cmd_identifier_token7] = ACTIONS(1865), + [aux_sym_cmd_identifier_token8] = ACTIONS(1861), + [aux_sym_cmd_identifier_token9] = ACTIONS(1861), + [aux_sym_cmd_identifier_token10] = ACTIONS(1865), + [aux_sym_cmd_identifier_token11] = ACTIONS(1865), + [aux_sym_cmd_identifier_token12] = ACTIONS(1861), + [aux_sym_cmd_identifier_token13] = ACTIONS(1861), + [aux_sym_cmd_identifier_token14] = ACTIONS(1861), + [aux_sym_cmd_identifier_token15] = ACTIONS(1861), + [aux_sym_cmd_identifier_token16] = ACTIONS(1865), + [aux_sym_cmd_identifier_token17] = ACTIONS(1865), + [aux_sym_cmd_identifier_token18] = ACTIONS(1865), + [aux_sym_cmd_identifier_token19] = ACTIONS(1865), + [aux_sym_cmd_identifier_token20] = ACTIONS(1865), + [aux_sym_cmd_identifier_token21] = ACTIONS(1865), + [aux_sym_cmd_identifier_token22] = ACTIONS(1865), + [aux_sym_cmd_identifier_token23] = ACTIONS(1865), + [aux_sym_cmd_identifier_token24] = ACTIONS(1865), + [aux_sym_cmd_identifier_token25] = ACTIONS(1865), + [aux_sym_cmd_identifier_token26] = ACTIONS(1865), + [aux_sym_cmd_identifier_token27] = ACTIONS(1865), + [aux_sym_cmd_identifier_token28] = ACTIONS(1865), + [aux_sym_cmd_identifier_token29] = ACTIONS(1865), + [aux_sym_cmd_identifier_token30] = ACTIONS(1865), + [aux_sym_cmd_identifier_token31] = ACTIONS(1865), + [aux_sym_cmd_identifier_token32] = ACTIONS(1865), + [aux_sym_cmd_identifier_token33] = ACTIONS(1865), + [aux_sym_cmd_identifier_token34] = ACTIONS(1861), + [aux_sym_cmd_identifier_token35] = ACTIONS(1865), + [aux_sym_cmd_identifier_token36] = ACTIONS(1865), + [aux_sym_cmd_identifier_token37] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1861), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_export_DASHenv] = ACTIONS(1861), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_use] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1865), + [anon_sym_error] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_loop] = ACTIONS(1861), + [anon_sym_make] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_catch] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_source] = ACTIONS(1861), + [anon_sym_source_DASHenv] = ACTIONS(1861), + [anon_sym_register] = ACTIONS(1861), + [anon_sym_hide] = ACTIONS(1861), + [anon_sym_hide_DASHenv] = ACTIONS(1861), + [anon_sym_overlay] = ACTIONS(1861), + [anon_sym_as] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1861), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [510] = { + [sym_cell_path] = STATE(765), + [sym_path] = STATE(659), + [sym_comment] = STATE(510), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(2041), + [anon_sym_alias] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_let_DASHenv] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [aux_sym_cmd_identifier_token1] = ACTIONS(2041), + [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(2041), + [aux_sym_cmd_identifier_token9] = ACTIONS(2041), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2041), + [aux_sym_cmd_identifier_token13] = ACTIONS(2041), + [aux_sym_cmd_identifier_token14] = ACTIONS(2041), + [aux_sym_cmd_identifier_token15] = ACTIONS(2041), + [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(2041), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [aux_sym_cmd_identifier_token37] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2041), + [anon_sym_export_DASHenv] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_module] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2041), + [anon_sym_DASH2] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_in2] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_make] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2041), + [anon_sym_catch] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_source] = ACTIONS(2041), + [anon_sym_source_DASHenv] = ACTIONS(2041), + [anon_sym_register] = ACTIONS(2041), + [anon_sym_hide] = ACTIONS(2041), + [anon_sym_hide_DASHenv] = ACTIONS(2041), + [anon_sym_overlay] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_PLUS2] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2041), + [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), + [aux_sym__val_number_token4] = ACTIONS(2041), + [aux_sym__val_number_token5] = ACTIONS(2041), + [aux_sym__val_number_token6] = ACTIONS(2041), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2043), + }, + [511] = { + [sym_cell_path] = STATE(764), + [sym_path] = STATE(659), + [sym_comment] = STATE(511), + [aux_sym_cell_path_repeat1] = STATE(521), + [anon_sym_export] = ACTIONS(2049), + [anon_sym_alias] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_let_DASHenv] = ACTIONS(2049), + [anon_sym_mut] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [aux_sym_cmd_identifier_token1] = ACTIONS(2049), + [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(2049), + [aux_sym_cmd_identifier_token9] = ACTIONS(2049), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2049), + [aux_sym_cmd_identifier_token13] = ACTIONS(2049), + [aux_sym_cmd_identifier_token14] = ACTIONS(2049), + [aux_sym_cmd_identifier_token15] = ACTIONS(2049), + [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(2049), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [aux_sym_cmd_identifier_token37] = ACTIONS(2051), + [aux_sym_cmd_identifier_token38] = ACTIONS(2049), + [aux_sym_cmd_identifier_token39] = ACTIONS(2051), + [aux_sym_cmd_identifier_token40] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2049), + [anon_sym_export_DASHenv] = ACTIONS(2049), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_module] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2049), + [anon_sym_DASH2] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_in2] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_make] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_do] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_else] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2049), + [anon_sym_catch] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_source] = ACTIONS(2049), + [anon_sym_source_DASHenv] = ACTIONS(2049), + [anon_sym_register] = ACTIONS(2049), + [anon_sym_hide] = ACTIONS(2049), + [anon_sym_hide_DASHenv] = ACTIONS(2049), + [anon_sym_overlay] = ACTIONS(2049), + [anon_sym_as] = ACTIONS(2049), + [anon_sym_PLUS2] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2049), + [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), + [aux_sym__val_number_token4] = ACTIONS(2049), + [aux_sym__val_number_token5] = ACTIONS(2049), + [aux_sym__val_number_token6] = ACTIONS(2049), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2051), + }, + [512] = { + [sym_comment] = STATE(512), + [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(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(2090), + [aux_sym_cmd_identifier_token9] = ACTIONS(2090), + [aux_sym_cmd_identifier_token10] = ACTIONS(2096), + [aux_sym_cmd_identifier_token11] = ACTIONS(2096), + [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(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(2090), + [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(2090), + [aux_sym_cmd_identifier_token39] = ACTIONS(2096), + [aux_sym_cmd_identifier_token40] = ACTIONS(2096), + [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(2096), + [anon_sym_DOLLAR] = ACTIONS(2096), + [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(2096), + [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(2096), + [anon_sym_DOT_DOT2] = ACTIONS(2201), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2203), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [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(2090), + [aux_sym__val_number_token5] = ACTIONS(2090), + [aux_sym__val_number_token6] = ACTIONS(2090), + [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(251), + [sym_raw_string_begin] = ACTIONS(2096), + }, + [513] = { + [sym_comment] = STATE(513), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [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(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [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(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(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [aux_sym__immediate_decimal_token1] = ACTIONS(2205), + [aux_sym__immediate_decimal_token2] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [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), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [514] = { + [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [515] = { + [sym_comment] = STATE(515), + [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] = ACTIONS(1018), + [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(251), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [516] = { + [sym_comment] = STATE(516), + [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(1765), + [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_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), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1765), + }, + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [518] = { + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1818), + [aux_sym_cmd_identifier_token3] = ACTIONS(1818), + [aux_sym_cmd_identifier_token4] = ACTIONS(1818), + [aux_sym_cmd_identifier_token5] = ACTIONS(1818), + [aux_sym_cmd_identifier_token6] = ACTIONS(1818), + [aux_sym_cmd_identifier_token7] = ACTIONS(1818), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1818), + [aux_sym_cmd_identifier_token11] = ACTIONS(1818), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1818), + [aux_sym_cmd_identifier_token17] = ACTIONS(1818), + [aux_sym_cmd_identifier_token18] = ACTIONS(1818), + [aux_sym_cmd_identifier_token19] = ACTIONS(1818), + [aux_sym_cmd_identifier_token20] = ACTIONS(1818), + [aux_sym_cmd_identifier_token21] = ACTIONS(1818), + [aux_sym_cmd_identifier_token22] = ACTIONS(1818), + [aux_sym_cmd_identifier_token23] = ACTIONS(1818), + [aux_sym_cmd_identifier_token24] = ACTIONS(1818), + [aux_sym_cmd_identifier_token25] = ACTIONS(1818), + [aux_sym_cmd_identifier_token26] = ACTIONS(1818), + [aux_sym_cmd_identifier_token27] = ACTIONS(1818), + [aux_sym_cmd_identifier_token28] = ACTIONS(1818), + [aux_sym_cmd_identifier_token29] = ACTIONS(1818), + [aux_sym_cmd_identifier_token30] = ACTIONS(1818), + [aux_sym_cmd_identifier_token31] = ACTIONS(1818), + [aux_sym_cmd_identifier_token32] = ACTIONS(1818), + [aux_sym_cmd_identifier_token33] = ACTIONS(1818), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1818), + [aux_sym_cmd_identifier_token36] = ACTIONS(1818), + [aux_sym_cmd_identifier_token37] = ACTIONS(1818), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1818), + [aux_sym_cmd_identifier_token40] = ACTIONS(1818), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1818), + [aux_sym__val_number_decimal_token3] = ACTIONS(1818), + [aux_sym__val_number_decimal_token4] = ACTIONS(1818), + [aux_sym__val_number_token1] = ACTIONS(1818), + [aux_sym__val_number_token2] = ACTIONS(1818), + [aux_sym__val_number_token3] = ACTIONS(1818), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym__str_single_quotes] = ACTIONS(1818), + [sym__str_back_ticks] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), + [sym__entry_separator] = ACTIONS(1820), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [519] = { + [sym_comment] = STATE(519), + [anon_sym_export] = ACTIONS(2123), + [anon_sym_alias] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_let_DASHenv] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [aux_sym_cmd_identifier_token1] = ACTIONS(2123), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(2123), + [aux_sym_cmd_identifier_token9] = ACTIONS(2123), + [aux_sym_cmd_identifier_token10] = ACTIONS(2125), + [aux_sym_cmd_identifier_token11] = ACTIONS(2125), + [aux_sym_cmd_identifier_token12] = ACTIONS(2123), + [aux_sym_cmd_identifier_token13] = ACTIONS(2123), + [aux_sym_cmd_identifier_token14] = ACTIONS(2123), + [aux_sym_cmd_identifier_token15] = ACTIONS(2123), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(2123), + [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(2123), + [aux_sym_cmd_identifier_token39] = ACTIONS(2125), + [aux_sym_cmd_identifier_token40] = ACTIONS(2125), + [anon_sym_def] = ACTIONS(2123), + [anon_sym_export_DASHenv] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_module] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2125), + [anon_sym_error] = ACTIONS(2123), + [anon_sym_DASH2] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_in2] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_make] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_do] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_else] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2123), + [anon_sym_catch] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_source] = ACTIONS(2123), + [anon_sym_source_DASHenv] = ACTIONS(2123), + [anon_sym_register] = ACTIONS(2123), + [anon_sym_hide] = ACTIONS(2123), + [anon_sym_hide_DASHenv] = ACTIONS(2123), + [anon_sym_overlay] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_PLUS2] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2125), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [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(2123), + [aux_sym__val_number_token5] = ACTIONS(2123), + [aux_sym__val_number_token6] = ACTIONS(2123), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2125), + }, + [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(251), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [521] = { + [sym_path] = STATE(659), + [sym_comment] = STATE(521), + [aux_sym_cell_path_repeat1] = STATE(526), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [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(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [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(982), + [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(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_register] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), + }, + [522] = { + [sym_comment] = STATE(522), + [anon_sym_export] = ACTIONS(1008), + [anon_sym_alias] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_let_DASHenv] = ACTIONS(1008), + [anon_sym_mut] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [aux_sym_cmd_identifier_token1] = ACTIONS(1008), + [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(1008), + [aux_sym_cmd_identifier_token9] = ACTIONS(1008), + [aux_sym_cmd_identifier_token10] = ACTIONS(1008), + [aux_sym_cmd_identifier_token11] = ACTIONS(1008), + [aux_sym_cmd_identifier_token12] = ACTIONS(1008), + [aux_sym_cmd_identifier_token13] = ACTIONS(1008), + [aux_sym_cmd_identifier_token14] = ACTIONS(1008), + [aux_sym_cmd_identifier_token15] = ACTIONS(1008), + [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(1008), + [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(1008), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1008), + [anon_sym_export_DASHenv] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym_module] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_make] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_catch] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_source] = ACTIONS(1008), + [anon_sym_source_DASHenv] = ACTIONS(1008), + [anon_sym_register] = ACTIONS(1008), + [anon_sym_hide] = ACTIONS(1008), + [anon_sym_hide_DASHenv] = ACTIONS(1008), + [anon_sym_overlay] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(2209), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [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_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [sym__entry_separator] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1010), + }, + [523] = { + [sym_comment] = STATE(523), + [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), @@ -139898,7 +142405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(990), [anon_sym_overlay] = ACTIONS(990), [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(2225), + [anon_sym_QMARK2] = ACTIONS(2211), [anon_sym_PLUS2] = ACTIONS(990), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), [anon_sym_DOT] = ACTIONS(990), @@ -139923,1230 +142430,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [524] = { [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_alias] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_let_DASHenv] = ACTIONS(1012), - [anon_sym_mut] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [aux_sym_cmd_identifier_token1] = ACTIONS(1012), - [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(1012), - [aux_sym_cmd_identifier_token9] = ACTIONS(1012), - [aux_sym_cmd_identifier_token10] = ACTIONS(1012), - [aux_sym_cmd_identifier_token11] = ACTIONS(1012), - [aux_sym_cmd_identifier_token12] = ACTIONS(1012), - [aux_sym_cmd_identifier_token13] = ACTIONS(1012), - [aux_sym_cmd_identifier_token14] = ACTIONS(1012), - [aux_sym_cmd_identifier_token15] = ACTIONS(1012), - [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(1012), - [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(1012), - [aux_sym_cmd_identifier_token39] = ACTIONS(1012), - [aux_sym_cmd_identifier_token40] = ACTIONS(1012), - [anon_sym_def] = ACTIONS(1012), - [anon_sym_export_DASHenv] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_error] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_make] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_catch] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_source] = ACTIONS(1012), - [anon_sym_source_DASHenv] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_hide] = ACTIONS(1012), - [anon_sym_hide_DASHenv] = ACTIONS(1012), - [anon_sym_overlay] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(2227), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1012), - [sym__entry_separator] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1014), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1036), + [aux_sym_cmd_identifier_token3] = ACTIONS(1036), + [aux_sym_cmd_identifier_token4] = ACTIONS(1036), + [aux_sym_cmd_identifier_token5] = ACTIONS(1036), + [aux_sym_cmd_identifier_token6] = ACTIONS(1036), + [aux_sym_cmd_identifier_token7] = ACTIONS(1036), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1036), + [aux_sym_cmd_identifier_token11] = ACTIONS(1036), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1036), + [aux_sym_cmd_identifier_token17] = ACTIONS(1036), + [aux_sym_cmd_identifier_token18] = ACTIONS(1036), + [aux_sym_cmd_identifier_token19] = ACTIONS(1036), + [aux_sym_cmd_identifier_token20] = ACTIONS(1036), + [aux_sym_cmd_identifier_token21] = ACTIONS(1036), + [aux_sym_cmd_identifier_token22] = ACTIONS(1036), + [aux_sym_cmd_identifier_token23] = ACTIONS(1036), + [aux_sym_cmd_identifier_token24] = ACTIONS(1036), + [aux_sym_cmd_identifier_token25] = ACTIONS(1036), + [aux_sym_cmd_identifier_token26] = ACTIONS(1036), + [aux_sym_cmd_identifier_token27] = ACTIONS(1036), + [aux_sym_cmd_identifier_token28] = ACTIONS(1036), + [aux_sym_cmd_identifier_token29] = ACTIONS(1036), + [aux_sym_cmd_identifier_token30] = ACTIONS(1036), + [aux_sym_cmd_identifier_token31] = ACTIONS(1036), + [aux_sym_cmd_identifier_token32] = ACTIONS(1036), + [aux_sym_cmd_identifier_token33] = ACTIONS(1036), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1036), + [aux_sym_cmd_identifier_token36] = ACTIONS(1036), + [aux_sym_cmd_identifier_token37] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2215), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1036), }, [525] = { [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [aux_sym_cmd_identifier_token1] = ACTIONS(2229), - [aux_sym_cmd_identifier_token2] = ACTIONS(2229), - [aux_sym_cmd_identifier_token3] = ACTIONS(2229), - [aux_sym_cmd_identifier_token4] = ACTIONS(2229), - [aux_sym_cmd_identifier_token5] = ACTIONS(2229), - [aux_sym_cmd_identifier_token6] = ACTIONS(2229), - [aux_sym_cmd_identifier_token7] = ACTIONS(2229), - [aux_sym_cmd_identifier_token8] = ACTIONS(2229), - [aux_sym_cmd_identifier_token9] = ACTIONS(2229), - [aux_sym_cmd_identifier_token10] = ACTIONS(2229), - [aux_sym_cmd_identifier_token11] = ACTIONS(2229), - [aux_sym_cmd_identifier_token12] = ACTIONS(2229), - [aux_sym_cmd_identifier_token13] = ACTIONS(2229), - [aux_sym_cmd_identifier_token14] = ACTIONS(2229), - [aux_sym_cmd_identifier_token15] = ACTIONS(2229), - [aux_sym_cmd_identifier_token16] = ACTIONS(2229), - [aux_sym_cmd_identifier_token17] = ACTIONS(2229), - [aux_sym_cmd_identifier_token18] = ACTIONS(2229), - [aux_sym_cmd_identifier_token19] = ACTIONS(2229), - [aux_sym_cmd_identifier_token20] = ACTIONS(2229), - [aux_sym_cmd_identifier_token21] = ACTIONS(2229), - [aux_sym_cmd_identifier_token22] = ACTIONS(2229), - [aux_sym_cmd_identifier_token23] = ACTIONS(2229), - [aux_sym_cmd_identifier_token24] = ACTIONS(2229), - [aux_sym_cmd_identifier_token25] = ACTIONS(2229), - [aux_sym_cmd_identifier_token26] = ACTIONS(2229), - [aux_sym_cmd_identifier_token27] = ACTIONS(2229), - [aux_sym_cmd_identifier_token28] = ACTIONS(2229), - [aux_sym_cmd_identifier_token29] = ACTIONS(2229), - [aux_sym_cmd_identifier_token30] = ACTIONS(2229), - [aux_sym_cmd_identifier_token31] = ACTIONS(2229), - [aux_sym_cmd_identifier_token32] = ACTIONS(2229), - [aux_sym_cmd_identifier_token33] = ACTIONS(2229), - [aux_sym_cmd_identifier_token34] = ACTIONS(2229), - [aux_sym_cmd_identifier_token35] = ACTIONS(2229), - [aux_sym_cmd_identifier_token36] = ACTIONS(2229), - [aux_sym_cmd_identifier_token37] = ACTIONS(2229), - [aux_sym_cmd_identifier_token38] = ACTIONS(2229), - [aux_sym_cmd_identifier_token39] = ACTIONS(2229), - [aux_sym_cmd_identifier_token40] = ACTIONS(2229), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_in2] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_make] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_catch] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [aux_sym__val_number_token4] = ACTIONS(2229), - [aux_sym__val_number_token5] = ACTIONS(2229), - [aux_sym__val_number_token6] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [sym__str_single_quotes] = ACTIONS(2229), - [sym__str_back_ticks] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2229), - [sym__entry_separator] = ACTIONS(2233), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1820), + [aux_sym_cmd_identifier_token3] = ACTIONS(1820), + [aux_sym_cmd_identifier_token4] = ACTIONS(1820), + [aux_sym_cmd_identifier_token5] = ACTIONS(1820), + [aux_sym_cmd_identifier_token6] = ACTIONS(1820), + [aux_sym_cmd_identifier_token7] = ACTIONS(1820), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1820), + [aux_sym_cmd_identifier_token11] = ACTIONS(1820), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1820), + [aux_sym_cmd_identifier_token17] = ACTIONS(1820), + [aux_sym_cmd_identifier_token18] = ACTIONS(1820), + [aux_sym_cmd_identifier_token19] = ACTIONS(1820), + [aux_sym_cmd_identifier_token20] = ACTIONS(1820), + [aux_sym_cmd_identifier_token21] = ACTIONS(1820), + [aux_sym_cmd_identifier_token22] = ACTIONS(1820), + [aux_sym_cmd_identifier_token23] = ACTIONS(1820), + [aux_sym_cmd_identifier_token24] = ACTIONS(1820), + [aux_sym_cmd_identifier_token25] = ACTIONS(1820), + [aux_sym_cmd_identifier_token26] = ACTIONS(1820), + [aux_sym_cmd_identifier_token27] = ACTIONS(1820), + [aux_sym_cmd_identifier_token28] = ACTIONS(1820), + [aux_sym_cmd_identifier_token29] = ACTIONS(1820), + [aux_sym_cmd_identifier_token30] = ACTIONS(1820), + [aux_sym_cmd_identifier_token31] = ACTIONS(1820), + [aux_sym_cmd_identifier_token32] = ACTIONS(1820), + [aux_sym_cmd_identifier_token33] = ACTIONS(1820), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1820), + [aux_sym_cmd_identifier_token36] = ACTIONS(1820), + [aux_sym_cmd_identifier_token37] = ACTIONS(1820), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1820), + [aux_sym_cmd_identifier_token40] = ACTIONS(1820), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), }, [526] = { + [sym_path] = STATE(659), [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(2193), - [anon_sym_alias] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_let_DASHenv] = ACTIONS(2193), - [anon_sym_mut] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [aux_sym_cmd_identifier_token1] = ACTIONS(2193), - [aux_sym_cmd_identifier_token2] = ACTIONS(2195), - [aux_sym_cmd_identifier_token3] = ACTIONS(2195), - [aux_sym_cmd_identifier_token4] = ACTIONS(2195), - [aux_sym_cmd_identifier_token5] = ACTIONS(2195), - [aux_sym_cmd_identifier_token6] = ACTIONS(2195), - [aux_sym_cmd_identifier_token7] = ACTIONS(2195), - [aux_sym_cmd_identifier_token8] = ACTIONS(2193), - [aux_sym_cmd_identifier_token9] = ACTIONS(2193), - [aux_sym_cmd_identifier_token10] = ACTIONS(2195), - [aux_sym_cmd_identifier_token11] = ACTIONS(2195), - [aux_sym_cmd_identifier_token12] = ACTIONS(2193), - [aux_sym_cmd_identifier_token13] = ACTIONS(2193), - [aux_sym_cmd_identifier_token14] = ACTIONS(2193), - [aux_sym_cmd_identifier_token15] = ACTIONS(2193), - [aux_sym_cmd_identifier_token16] = ACTIONS(2195), - [aux_sym_cmd_identifier_token17] = ACTIONS(2195), - [aux_sym_cmd_identifier_token18] = ACTIONS(2195), - [aux_sym_cmd_identifier_token19] = ACTIONS(2195), - [aux_sym_cmd_identifier_token20] = ACTIONS(2195), - [aux_sym_cmd_identifier_token21] = ACTIONS(2195), - [aux_sym_cmd_identifier_token22] = ACTIONS(2195), - [aux_sym_cmd_identifier_token23] = ACTIONS(2195), - [aux_sym_cmd_identifier_token24] = ACTIONS(2195), - [aux_sym_cmd_identifier_token25] = ACTIONS(2195), - [aux_sym_cmd_identifier_token26] = ACTIONS(2195), - [aux_sym_cmd_identifier_token27] = ACTIONS(2195), - [aux_sym_cmd_identifier_token28] = ACTIONS(2195), - [aux_sym_cmd_identifier_token29] = ACTIONS(2195), - [aux_sym_cmd_identifier_token30] = ACTIONS(2195), - [aux_sym_cmd_identifier_token31] = ACTIONS(2195), - [aux_sym_cmd_identifier_token32] = ACTIONS(2195), - [aux_sym_cmd_identifier_token33] = ACTIONS(2195), - [aux_sym_cmd_identifier_token34] = ACTIONS(2193), - [aux_sym_cmd_identifier_token35] = ACTIONS(2195), - [aux_sym_cmd_identifier_token36] = ACTIONS(2195), - [aux_sym_cmd_identifier_token37] = ACTIONS(2195), - [aux_sym_cmd_identifier_token38] = ACTIONS(2193), - [aux_sym_cmd_identifier_token39] = ACTIONS(2195), - [aux_sym_cmd_identifier_token40] = ACTIONS(2195), - [anon_sym_def] = ACTIONS(2193), - [anon_sym_export_DASHenv] = ACTIONS(2193), - [anon_sym_extern] = ACTIONS(2193), - [anon_sym_module] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2195), - [anon_sym_error] = ACTIONS(2193), - [anon_sym_DASH2] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_in2] = ACTIONS(2193), - [anon_sym_loop] = ACTIONS(2193), - [anon_sym_make] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_do] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_else] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_catch] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_source] = ACTIONS(2193), - [anon_sym_source_DASHenv] = ACTIONS(2193), - [anon_sym_register] = ACTIONS(2193), - [anon_sym_hide] = ACTIONS(2193), - [anon_sym_hide_DASHenv] = ACTIONS(2193), - [anon_sym_overlay] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_PLUS2] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2195), - [anon_sym_DOT_DOT2] = ACTIONS(2193), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2195), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2195), - [aux_sym__val_number_decimal_token1] = ACTIONS(2193), - [aux_sym__val_number_decimal_token2] = ACTIONS(2195), - [aux_sym__val_number_decimal_token3] = ACTIONS(2195), - [aux_sym__val_number_decimal_token4] = ACTIONS(2195), - [aux_sym__val_number_token1] = ACTIONS(2195), - [aux_sym__val_number_token2] = ACTIONS(2195), - [aux_sym__val_number_token3] = ACTIONS(2195), - [aux_sym__val_number_token4] = ACTIONS(2193), - [aux_sym__val_number_token5] = ACTIONS(2193), - [aux_sym__val_number_token6] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2195), + [aux_sym_cell_path_repeat1] = STATE(526), + [anon_sym_export] = ACTIONS(975), + [anon_sym_alias] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_let_DASHenv] = ACTIONS(975), + [anon_sym_mut] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [aux_sym_cmd_identifier_token1] = ACTIONS(975), + [aux_sym_cmd_identifier_token2] = ACTIONS(977), + [aux_sym_cmd_identifier_token3] = ACTIONS(977), + [aux_sym_cmd_identifier_token4] = ACTIONS(977), + [aux_sym_cmd_identifier_token5] = ACTIONS(977), + [aux_sym_cmd_identifier_token6] = ACTIONS(977), + [aux_sym_cmd_identifier_token7] = ACTIONS(977), + [aux_sym_cmd_identifier_token8] = ACTIONS(975), + [aux_sym_cmd_identifier_token9] = ACTIONS(975), + [aux_sym_cmd_identifier_token10] = ACTIONS(977), + [aux_sym_cmd_identifier_token11] = ACTIONS(977), + [aux_sym_cmd_identifier_token12] = ACTIONS(975), + [aux_sym_cmd_identifier_token13] = ACTIONS(975), + [aux_sym_cmd_identifier_token14] = ACTIONS(975), + [aux_sym_cmd_identifier_token15] = ACTIONS(975), + [aux_sym_cmd_identifier_token16] = ACTIONS(977), + [aux_sym_cmd_identifier_token17] = ACTIONS(977), + [aux_sym_cmd_identifier_token18] = ACTIONS(977), + [aux_sym_cmd_identifier_token19] = ACTIONS(977), + [aux_sym_cmd_identifier_token20] = ACTIONS(977), + [aux_sym_cmd_identifier_token21] = ACTIONS(977), + [aux_sym_cmd_identifier_token22] = ACTIONS(977), + [aux_sym_cmd_identifier_token23] = ACTIONS(977), + [aux_sym_cmd_identifier_token24] = ACTIONS(977), + [aux_sym_cmd_identifier_token25] = ACTIONS(977), + [aux_sym_cmd_identifier_token26] = ACTIONS(977), + [aux_sym_cmd_identifier_token27] = ACTIONS(977), + [aux_sym_cmd_identifier_token28] = ACTIONS(977), + [aux_sym_cmd_identifier_token29] = ACTIONS(977), + [aux_sym_cmd_identifier_token30] = ACTIONS(977), + [aux_sym_cmd_identifier_token31] = ACTIONS(977), + [aux_sym_cmd_identifier_token32] = ACTIONS(977), + [aux_sym_cmd_identifier_token33] = ACTIONS(977), + [aux_sym_cmd_identifier_token34] = ACTIONS(975), + [aux_sym_cmd_identifier_token35] = ACTIONS(977), + [aux_sym_cmd_identifier_token36] = ACTIONS(977), + [aux_sym_cmd_identifier_token37] = ACTIONS(977), + [aux_sym_cmd_identifier_token38] = ACTIONS(975), + [aux_sym_cmd_identifier_token39] = ACTIONS(977), + [aux_sym_cmd_identifier_token40] = ACTIONS(977), + [anon_sym_def] = ACTIONS(975), + [anon_sym_export_DASHenv] = ACTIONS(975), + [anon_sym_extern] = ACTIONS(975), + [anon_sym_module] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_error] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_make] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_source] = ACTIONS(975), + [anon_sym_source_DASHenv] = ACTIONS(975), + [anon_sym_register] = ACTIONS(975), + [anon_sym_hide] = ACTIONS(975), + [anon_sym_hide_DASHenv] = ACTIONS(975), + [anon_sym_overlay] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(975), + [aux_sym__val_number_token5] = ACTIONS(975), + [aux_sym__val_number_token6] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2195), + [sym_raw_string_begin] = ACTIONS(977), }, [527] = { [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [aux_sym_cmd_identifier_token37] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [aux_sym__val_number_token4] = ACTIONS(1056), - [aux_sym__val_number_token5] = ACTIONS(1056), - [aux_sym__val_number_token6] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1058), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [aux_sym_cmd_identifier_token37] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym__str_single_quotes] = ACTIONS(1034), + [sym__str_back_ticks] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), + [sym__entry_separator] = ACTIONS(1036), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1036), }, [528] = { [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [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(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [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(1026), - [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(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_COMMA] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [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(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [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(1028), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1028), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [aux_sym_cmd_identifier_token37] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1052), + [aux_sym__val_number_token5] = ACTIONS(1052), + [aux_sym__val_number_token6] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1054), }, [529] = { [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(1824), - [aux_sym_cmd_identifier_token3] = ACTIONS(1824), - [aux_sym_cmd_identifier_token4] = ACTIONS(1824), - [aux_sym_cmd_identifier_token5] = ACTIONS(1824), - [aux_sym_cmd_identifier_token6] = ACTIONS(1824), - [aux_sym_cmd_identifier_token7] = ACTIONS(1824), - [aux_sym_cmd_identifier_token8] = ACTIONS(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1824), - [aux_sym_cmd_identifier_token11] = ACTIONS(1824), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(1824), - [aux_sym_cmd_identifier_token17] = ACTIONS(1824), - [aux_sym_cmd_identifier_token18] = ACTIONS(1824), - [aux_sym_cmd_identifier_token19] = ACTIONS(1824), - [aux_sym_cmd_identifier_token20] = ACTIONS(1824), - [aux_sym_cmd_identifier_token21] = ACTIONS(1824), - [aux_sym_cmd_identifier_token22] = ACTIONS(1824), - [aux_sym_cmd_identifier_token23] = ACTIONS(1824), - [aux_sym_cmd_identifier_token24] = ACTIONS(1824), - [aux_sym_cmd_identifier_token25] = ACTIONS(1824), - [aux_sym_cmd_identifier_token26] = ACTIONS(1824), - [aux_sym_cmd_identifier_token27] = ACTIONS(1824), - [aux_sym_cmd_identifier_token28] = ACTIONS(1824), - [aux_sym_cmd_identifier_token29] = ACTIONS(1824), - [aux_sym_cmd_identifier_token30] = ACTIONS(1824), - [aux_sym_cmd_identifier_token31] = ACTIONS(1824), - [aux_sym_cmd_identifier_token32] = ACTIONS(1824), - [aux_sym_cmd_identifier_token33] = ACTIONS(1824), - [aux_sym_cmd_identifier_token34] = ACTIONS(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1824), - [aux_sym_cmd_identifier_token36] = ACTIONS(1824), - [aux_sym_cmd_identifier_token37] = ACTIONS(1824), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1824), - [aux_sym_cmd_identifier_token40] = ACTIONS(1824), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1824), - [aux_sym__val_number_decimal_token3] = ACTIONS(1824), - [aux_sym__val_number_decimal_token4] = ACTIONS(1824), - [aux_sym__val_number_token1] = ACTIONS(1824), - [aux_sym__val_number_token2] = ACTIONS(1824), - [aux_sym__val_number_token3] = ACTIONS(1824), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym__str_single_quotes] = ACTIONS(1824), - [sym__str_back_ticks] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), - [sym__entry_separator] = ACTIONS(1826), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1826), - }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(2088), - [anon_sym_alias] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_let_DASHenv] = ACTIONS(2088), - [anon_sym_mut] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [aux_sym_cmd_identifier_token1] = ACTIONS(2088), - [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(2088), - [aux_sym_cmd_identifier_token9] = ACTIONS(2088), - [aux_sym_cmd_identifier_token10] = ACTIONS(2094), - [aux_sym_cmd_identifier_token11] = ACTIONS(2094), - [aux_sym_cmd_identifier_token12] = ACTIONS(2088), - [aux_sym_cmd_identifier_token13] = ACTIONS(2088), - [aux_sym_cmd_identifier_token14] = ACTIONS(2088), - [aux_sym_cmd_identifier_token15] = ACTIONS(2088), - [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(2088), - [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(2088), - [aux_sym_cmd_identifier_token39] = ACTIONS(2094), - [aux_sym_cmd_identifier_token40] = ACTIONS(2094), - [anon_sym_def] = ACTIONS(2088), - [anon_sym_export_DASHenv] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_module] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_error] = ACTIONS(2088), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_in2] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_make] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_do] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_else] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2088), - [anon_sym_catch] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_source] = ACTIONS(2088), - [anon_sym_source_DASHenv] = ACTIONS(2088), - [anon_sym_register] = ACTIONS(2088), - [anon_sym_hide] = ACTIONS(2088), - [anon_sym_hide_DASHenv] = ACTIONS(2088), - [anon_sym_overlay] = ACTIONS(2088), - [anon_sym_as] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2094), - [anon_sym_DOT_DOT2] = ACTIONS(2235), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2094), - [aux_sym__val_number_decimal_token1] = ACTIONS(2088), - [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(2088), - [aux_sym__val_number_token5] = ACTIONS(2088), - [aux_sym__val_number_token6] = ACTIONS(2088), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2094), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(2239), - [anon_sym_alias] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_let_DASHenv] = ACTIONS(2239), - [anon_sym_mut] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [aux_sym_cmd_identifier_token1] = ACTIONS(2239), - [aux_sym_cmd_identifier_token2] = ACTIONS(2239), - [aux_sym_cmd_identifier_token3] = ACTIONS(2239), - [aux_sym_cmd_identifier_token4] = ACTIONS(2239), - [aux_sym_cmd_identifier_token5] = ACTIONS(2239), - [aux_sym_cmd_identifier_token6] = ACTIONS(2239), - [aux_sym_cmd_identifier_token7] = ACTIONS(2239), - [aux_sym_cmd_identifier_token8] = ACTIONS(2239), - [aux_sym_cmd_identifier_token9] = ACTIONS(2239), - [aux_sym_cmd_identifier_token10] = ACTIONS(2239), - [aux_sym_cmd_identifier_token11] = ACTIONS(2239), - [aux_sym_cmd_identifier_token12] = ACTIONS(2239), - [aux_sym_cmd_identifier_token13] = ACTIONS(2239), - [aux_sym_cmd_identifier_token14] = ACTIONS(2239), - [aux_sym_cmd_identifier_token15] = ACTIONS(2239), - [aux_sym_cmd_identifier_token16] = ACTIONS(2239), - [aux_sym_cmd_identifier_token17] = ACTIONS(2239), - [aux_sym_cmd_identifier_token18] = ACTIONS(2239), - [aux_sym_cmd_identifier_token19] = ACTIONS(2239), - [aux_sym_cmd_identifier_token20] = ACTIONS(2239), - [aux_sym_cmd_identifier_token21] = ACTIONS(2239), - [aux_sym_cmd_identifier_token22] = ACTIONS(2239), - [aux_sym_cmd_identifier_token23] = ACTIONS(2239), - [aux_sym_cmd_identifier_token24] = ACTIONS(2239), - [aux_sym_cmd_identifier_token25] = ACTIONS(2239), - [aux_sym_cmd_identifier_token26] = ACTIONS(2239), - [aux_sym_cmd_identifier_token27] = ACTIONS(2239), - [aux_sym_cmd_identifier_token28] = ACTIONS(2239), - [aux_sym_cmd_identifier_token29] = ACTIONS(2239), - [aux_sym_cmd_identifier_token30] = ACTIONS(2239), - [aux_sym_cmd_identifier_token31] = ACTIONS(2239), - [aux_sym_cmd_identifier_token32] = ACTIONS(2239), - [aux_sym_cmd_identifier_token33] = ACTIONS(2239), - [aux_sym_cmd_identifier_token34] = ACTIONS(2239), - [aux_sym_cmd_identifier_token35] = ACTIONS(2239), - [aux_sym_cmd_identifier_token36] = ACTIONS(2239), - [aux_sym_cmd_identifier_token37] = ACTIONS(2239), - [aux_sym_cmd_identifier_token38] = ACTIONS(2239), - [aux_sym_cmd_identifier_token39] = ACTIONS(2239), - [aux_sym_cmd_identifier_token40] = ACTIONS(2239), - [anon_sym_def] = ACTIONS(2239), - [anon_sym_export_DASHenv] = ACTIONS(2239), - [anon_sym_extern] = ACTIONS(2239), - [anon_sym_module] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_error] = ACTIONS(2239), - [anon_sym_DASH2] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_in2] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_make] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [anon_sym_do] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_else] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_try] = ACTIONS(2239), - [anon_sym_catch] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_source] = ACTIONS(2239), - [anon_sym_source_DASHenv] = ACTIONS(2239), - [anon_sym_register] = ACTIONS(2239), - [anon_sym_hide] = ACTIONS(2239), - [anon_sym_hide_DASHenv] = ACTIONS(2239), - [anon_sym_overlay] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(2241), - [anon_sym_PLUS2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2239), - [aux_sym__val_number_decimal_token1] = ACTIONS(2239), - [aux_sym__val_number_decimal_token2] = ACTIONS(2239), - [aux_sym__val_number_decimal_token3] = ACTIONS(2239), - [aux_sym__val_number_decimal_token4] = ACTIONS(2239), - [aux_sym__val_number_token1] = ACTIONS(2239), - [aux_sym__val_number_token2] = ACTIONS(2239), - [aux_sym__val_number_token3] = ACTIONS(2239), - [aux_sym__val_number_token4] = ACTIONS(2239), - [aux_sym__val_number_token5] = ACTIONS(2239), - [aux_sym__val_number_token6] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2239), - [sym__str_single_quotes] = ACTIONS(2239), - [sym__str_back_ticks] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2239), - [sym__entry_separator] = ACTIONS(2243), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2243), - }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(1828), - [anon_sym_alias] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_let_DASHenv] = ACTIONS(1828), - [anon_sym_mut] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [aux_sym_cmd_identifier_token1] = ACTIONS(1828), - [aux_sym_cmd_identifier_token2] = ACTIONS(1828), - [aux_sym_cmd_identifier_token3] = ACTIONS(1828), - [aux_sym_cmd_identifier_token4] = ACTIONS(1828), - [aux_sym_cmd_identifier_token5] = ACTIONS(1828), - [aux_sym_cmd_identifier_token6] = ACTIONS(1828), - [aux_sym_cmd_identifier_token7] = ACTIONS(1828), - [aux_sym_cmd_identifier_token8] = ACTIONS(1828), - [aux_sym_cmd_identifier_token9] = ACTIONS(1828), - [aux_sym_cmd_identifier_token10] = ACTIONS(1828), - [aux_sym_cmd_identifier_token11] = ACTIONS(1828), - [aux_sym_cmd_identifier_token12] = ACTIONS(1828), - [aux_sym_cmd_identifier_token13] = ACTIONS(1828), - [aux_sym_cmd_identifier_token14] = ACTIONS(1828), - [aux_sym_cmd_identifier_token15] = ACTIONS(1828), - [aux_sym_cmd_identifier_token16] = ACTIONS(1828), - [aux_sym_cmd_identifier_token17] = ACTIONS(1828), - [aux_sym_cmd_identifier_token18] = ACTIONS(1828), - [aux_sym_cmd_identifier_token19] = ACTIONS(1828), - [aux_sym_cmd_identifier_token20] = ACTIONS(1828), - [aux_sym_cmd_identifier_token21] = ACTIONS(1828), - [aux_sym_cmd_identifier_token22] = ACTIONS(1828), - [aux_sym_cmd_identifier_token23] = ACTIONS(1828), - [aux_sym_cmd_identifier_token24] = ACTIONS(1828), - [aux_sym_cmd_identifier_token25] = ACTIONS(1828), - [aux_sym_cmd_identifier_token26] = ACTIONS(1828), - [aux_sym_cmd_identifier_token27] = ACTIONS(1828), - [aux_sym_cmd_identifier_token28] = ACTIONS(1828), - [aux_sym_cmd_identifier_token29] = ACTIONS(1828), - [aux_sym_cmd_identifier_token30] = ACTIONS(1828), - [aux_sym_cmd_identifier_token31] = ACTIONS(1828), - [aux_sym_cmd_identifier_token32] = ACTIONS(1828), - [aux_sym_cmd_identifier_token33] = ACTIONS(1828), - [aux_sym_cmd_identifier_token34] = ACTIONS(1828), - [aux_sym_cmd_identifier_token35] = ACTIONS(1828), - [aux_sym_cmd_identifier_token36] = ACTIONS(1828), - [aux_sym_cmd_identifier_token37] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1828), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1828), - [anon_sym_export_DASHenv] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_module] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1828), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_in2] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_make] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_do] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [anon_sym_catch] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_source] = ACTIONS(1828), - [anon_sym_source_DASHenv] = ACTIONS(1828), - [anon_sym_register] = ACTIONS(1828), - [anon_sym_hide] = ACTIONS(1828), - [anon_sym_hide_DASHenv] = ACTIONS(1828), - [anon_sym_overlay] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_PLUS2] = 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(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), - [sym__entry_separator] = ACTIONS(1836), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1836), - }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(2247), - [anon_sym_alias] = ACTIONS(2247), - [anon_sym_let] = ACTIONS(2247), - [anon_sym_let_DASHenv] = ACTIONS(2247), - [anon_sym_mut] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [aux_sym_cmd_identifier_token1] = ACTIONS(2247), - [aux_sym_cmd_identifier_token2] = ACTIONS(2247), - [aux_sym_cmd_identifier_token3] = ACTIONS(2247), - [aux_sym_cmd_identifier_token4] = ACTIONS(2247), - [aux_sym_cmd_identifier_token5] = ACTIONS(2247), - [aux_sym_cmd_identifier_token6] = ACTIONS(2247), - [aux_sym_cmd_identifier_token7] = ACTIONS(2247), - [aux_sym_cmd_identifier_token8] = ACTIONS(2247), - [aux_sym_cmd_identifier_token9] = ACTIONS(2247), - [aux_sym_cmd_identifier_token10] = ACTIONS(2247), - [aux_sym_cmd_identifier_token11] = ACTIONS(2247), - [aux_sym_cmd_identifier_token12] = ACTIONS(2247), - [aux_sym_cmd_identifier_token13] = ACTIONS(2247), - [aux_sym_cmd_identifier_token14] = ACTIONS(2247), - [aux_sym_cmd_identifier_token15] = ACTIONS(2247), - [aux_sym_cmd_identifier_token16] = ACTIONS(2247), - [aux_sym_cmd_identifier_token17] = ACTIONS(2247), - [aux_sym_cmd_identifier_token18] = ACTIONS(2247), - [aux_sym_cmd_identifier_token19] = ACTIONS(2247), - [aux_sym_cmd_identifier_token20] = ACTIONS(2247), - [aux_sym_cmd_identifier_token21] = ACTIONS(2247), - [aux_sym_cmd_identifier_token22] = ACTIONS(2247), - [aux_sym_cmd_identifier_token23] = ACTIONS(2247), - [aux_sym_cmd_identifier_token24] = ACTIONS(2247), - [aux_sym_cmd_identifier_token25] = ACTIONS(2247), - [aux_sym_cmd_identifier_token26] = ACTIONS(2247), - [aux_sym_cmd_identifier_token27] = ACTIONS(2247), - [aux_sym_cmd_identifier_token28] = ACTIONS(2247), - [aux_sym_cmd_identifier_token29] = ACTIONS(2247), - [aux_sym_cmd_identifier_token30] = ACTIONS(2247), - [aux_sym_cmd_identifier_token31] = ACTIONS(2247), - [aux_sym_cmd_identifier_token32] = ACTIONS(2247), - [aux_sym_cmd_identifier_token33] = ACTIONS(2247), - [aux_sym_cmd_identifier_token34] = ACTIONS(2247), - [aux_sym_cmd_identifier_token35] = ACTIONS(2247), - [aux_sym_cmd_identifier_token36] = ACTIONS(2247), - [aux_sym_cmd_identifier_token37] = ACTIONS(2247), - [aux_sym_cmd_identifier_token38] = ACTIONS(2247), - [aux_sym_cmd_identifier_token39] = ACTIONS(2247), - [aux_sym_cmd_identifier_token40] = ACTIONS(2247), - [anon_sym_def] = ACTIONS(2247), - [anon_sym_export_DASHenv] = ACTIONS(2247), - [anon_sym_extern] = ACTIONS(2247), - [anon_sym_module] = ACTIONS(2247), - [anon_sym_use] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_error] = ACTIONS(2247), - [anon_sym_DASH2] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_in2] = ACTIONS(2247), - [anon_sym_loop] = ACTIONS(2247), - [anon_sym_make] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [anon_sym_do] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_else] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2247), - [anon_sym_catch] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_source] = ACTIONS(2247), - [anon_sym_source_DASHenv] = ACTIONS(2247), - [anon_sym_register] = ACTIONS(2247), - [anon_sym_hide] = ACTIONS(2247), - [anon_sym_hide_DASHenv] = ACTIONS(2247), - [anon_sym_overlay] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_LPAREN2] = ACTIONS(2249), - [anon_sym_PLUS2] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2247), - [aux_sym__val_number_decimal_token1] = ACTIONS(2247), - [aux_sym__val_number_decimal_token2] = ACTIONS(2247), - [aux_sym__val_number_decimal_token3] = ACTIONS(2247), - [aux_sym__val_number_decimal_token4] = ACTIONS(2247), - [aux_sym__val_number_token1] = ACTIONS(2247), - [aux_sym__val_number_token2] = ACTIONS(2247), - [aux_sym__val_number_token3] = ACTIONS(2247), - [aux_sym__val_number_token4] = ACTIONS(2247), - [aux_sym__val_number_token5] = ACTIONS(2247), - [aux_sym__val_number_token6] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2247), - [sym__entry_separator] = ACTIONS(2249), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2249), - }, - [535] = { - [sym_comment] = STATE(535), - [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(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1038), - [aux_sym_cmd_identifier_token9] = ACTIONS(1038), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [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(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1038), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in2] = 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_as] = ACTIONS(1038), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(2251), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2253), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2253), - [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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = ACTIONS(1038), - [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_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [536] = { - [sym_comment] = STATE(536), [anon_sym_export] = ACTIONS(1022), [anon_sym_alias] = ACTIONS(1022), [anon_sym_let] = ACTIONS(1022), @@ -141247,1232 +143040,1232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1024), }, - [537] = { - [sym_comment] = STATE(537), - [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_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [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), + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1801), + [aux_sym_cmd_identifier_token3] = ACTIONS(1801), + [aux_sym_cmd_identifier_token4] = ACTIONS(1801), + [aux_sym_cmd_identifier_token5] = ACTIONS(1801), + [aux_sym_cmd_identifier_token6] = ACTIONS(1801), + [aux_sym_cmd_identifier_token7] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1801), + [aux_sym_cmd_identifier_token11] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1801), + [aux_sym_cmd_identifier_token17] = ACTIONS(1801), + [aux_sym_cmd_identifier_token18] = ACTIONS(1801), + [aux_sym_cmd_identifier_token19] = ACTIONS(1801), + [aux_sym_cmd_identifier_token20] = ACTIONS(1801), + [aux_sym_cmd_identifier_token21] = ACTIONS(1801), + [aux_sym_cmd_identifier_token22] = ACTIONS(1801), + [aux_sym_cmd_identifier_token23] = ACTIONS(1801), + [aux_sym_cmd_identifier_token24] = ACTIONS(1801), + [aux_sym_cmd_identifier_token25] = ACTIONS(1801), + [aux_sym_cmd_identifier_token26] = ACTIONS(1801), + [aux_sym_cmd_identifier_token27] = ACTIONS(1801), + [aux_sym_cmd_identifier_token28] = ACTIONS(1801), + [aux_sym_cmd_identifier_token29] = ACTIONS(1801), + [aux_sym_cmd_identifier_token30] = ACTIONS(1801), + [aux_sym_cmd_identifier_token31] = ACTIONS(1801), + [aux_sym_cmd_identifier_token32] = ACTIONS(1801), + [aux_sym_cmd_identifier_token33] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1801), + [aux_sym_cmd_identifier_token36] = ACTIONS(1801), + [aux_sym_cmd_identifier_token37] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1801), + [aux_sym_cmd_identifier_token40] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), + [sym_raw_string_begin] = ACTIONS(1801), }, - [538] = { - [sym__expr_parenthesized_immediate] = STATE(7687), - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_alias] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_let_DASHenv] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [aux_sym_cmd_identifier_token1] = ACTIONS(2201), - [aux_sym_cmd_identifier_token2] = ACTIONS(2201), - [aux_sym_cmd_identifier_token3] = ACTIONS(2201), - [aux_sym_cmd_identifier_token4] = ACTIONS(2201), - [aux_sym_cmd_identifier_token5] = ACTIONS(2201), - [aux_sym_cmd_identifier_token6] = ACTIONS(2201), - [aux_sym_cmd_identifier_token7] = ACTIONS(2201), - [aux_sym_cmd_identifier_token8] = ACTIONS(2201), - [aux_sym_cmd_identifier_token9] = ACTIONS(2201), - [aux_sym_cmd_identifier_token10] = ACTIONS(2201), - [aux_sym_cmd_identifier_token11] = ACTIONS(2201), - [aux_sym_cmd_identifier_token12] = ACTIONS(2201), - [aux_sym_cmd_identifier_token13] = ACTIONS(2201), - [aux_sym_cmd_identifier_token14] = ACTIONS(2201), - [aux_sym_cmd_identifier_token15] = ACTIONS(2201), - [aux_sym_cmd_identifier_token16] = ACTIONS(2201), - [aux_sym_cmd_identifier_token17] = ACTIONS(2201), - [aux_sym_cmd_identifier_token18] = ACTIONS(2201), - [aux_sym_cmd_identifier_token19] = ACTIONS(2201), - [aux_sym_cmd_identifier_token20] = ACTIONS(2201), - [aux_sym_cmd_identifier_token21] = ACTIONS(2201), - [aux_sym_cmd_identifier_token22] = ACTIONS(2201), - [aux_sym_cmd_identifier_token23] = ACTIONS(2201), - [aux_sym_cmd_identifier_token24] = ACTIONS(2201), - [aux_sym_cmd_identifier_token25] = ACTIONS(2201), - [aux_sym_cmd_identifier_token26] = ACTIONS(2201), - [aux_sym_cmd_identifier_token27] = ACTIONS(2201), - [aux_sym_cmd_identifier_token28] = ACTIONS(2201), - [aux_sym_cmd_identifier_token29] = ACTIONS(2201), - [aux_sym_cmd_identifier_token30] = ACTIONS(2201), - [aux_sym_cmd_identifier_token31] = ACTIONS(2201), - [aux_sym_cmd_identifier_token32] = ACTIONS(2201), - [aux_sym_cmd_identifier_token33] = ACTIONS(2201), - [aux_sym_cmd_identifier_token34] = ACTIONS(2201), - [aux_sym_cmd_identifier_token35] = ACTIONS(2201), - [aux_sym_cmd_identifier_token36] = ACTIONS(2201), - [aux_sym_cmd_identifier_token37] = ACTIONS(2201), - [aux_sym_cmd_identifier_token38] = ACTIONS(2201), - [aux_sym_cmd_identifier_token39] = ACTIONS(2201), - [aux_sym_cmd_identifier_token40] = ACTIONS(2201), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_export_DASHenv] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_error] = ACTIONS(2201), - [anon_sym_DASH2] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_in2] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_make] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_source] = ACTIONS(2201), - [anon_sym_source_DASHenv] = ACTIONS(2201), - [anon_sym_register] = ACTIONS(2201), - [anon_sym_hide] = ACTIONS(2201), - [anon_sym_hide_DASHenv] = ACTIONS(2201), - [anon_sym_overlay] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2201), - [aux_sym__val_number_decimal_token1] = ACTIONS(2201), - [aux_sym__val_number_decimal_token2] = ACTIONS(2201), - [aux_sym__val_number_decimal_token3] = ACTIONS(2201), - [aux_sym__val_number_decimal_token4] = ACTIONS(2201), - [aux_sym__val_number_token1] = ACTIONS(2201), - [aux_sym__val_number_token2] = ACTIONS(2201), - [aux_sym__val_number_token3] = ACTIONS(2201), - [aux_sym__val_number_token4] = ACTIONS(2201), - [aux_sym__val_number_token5] = ACTIONS(2201), - [aux_sym__val_number_token6] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [sym__str_single_quotes] = ACTIONS(2201), - [sym__str_back_ticks] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2201), - [sym__entry_separator] = ACTIONS(2203), + [531] = { + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [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(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [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(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(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = 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(1771), + [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), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2203), - }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_alias] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_let_DASHenv] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [aux_sym_cmd_identifier_token1] = ACTIONS(2201), - [aux_sym_cmd_identifier_token2] = ACTIONS(2203), - [aux_sym_cmd_identifier_token3] = ACTIONS(2203), - [aux_sym_cmd_identifier_token4] = ACTIONS(2203), - [aux_sym_cmd_identifier_token5] = ACTIONS(2203), - [aux_sym_cmd_identifier_token6] = ACTIONS(2203), - [aux_sym_cmd_identifier_token7] = ACTIONS(2203), - [aux_sym_cmd_identifier_token8] = ACTIONS(2201), - [aux_sym_cmd_identifier_token9] = ACTIONS(2201), - [aux_sym_cmd_identifier_token10] = ACTIONS(2203), - [aux_sym_cmd_identifier_token11] = ACTIONS(2203), - [aux_sym_cmd_identifier_token12] = ACTIONS(2201), - [aux_sym_cmd_identifier_token13] = ACTIONS(2201), - [aux_sym_cmd_identifier_token14] = ACTIONS(2201), - [aux_sym_cmd_identifier_token15] = ACTIONS(2201), - [aux_sym_cmd_identifier_token16] = ACTIONS(2203), - [aux_sym_cmd_identifier_token17] = ACTIONS(2203), - [aux_sym_cmd_identifier_token18] = ACTIONS(2203), - [aux_sym_cmd_identifier_token19] = ACTIONS(2203), - [aux_sym_cmd_identifier_token20] = ACTIONS(2203), - [aux_sym_cmd_identifier_token21] = ACTIONS(2203), - [aux_sym_cmd_identifier_token22] = ACTIONS(2203), - [aux_sym_cmd_identifier_token23] = ACTIONS(2203), - [aux_sym_cmd_identifier_token24] = ACTIONS(2203), - [aux_sym_cmd_identifier_token25] = ACTIONS(2203), - [aux_sym_cmd_identifier_token26] = ACTIONS(2203), - [aux_sym_cmd_identifier_token27] = ACTIONS(2203), - [aux_sym_cmd_identifier_token28] = ACTIONS(2203), - [aux_sym_cmd_identifier_token29] = ACTIONS(2203), - [aux_sym_cmd_identifier_token30] = ACTIONS(2203), - [aux_sym_cmd_identifier_token31] = ACTIONS(2203), - [aux_sym_cmd_identifier_token32] = ACTIONS(2203), - [aux_sym_cmd_identifier_token33] = ACTIONS(2203), - [aux_sym_cmd_identifier_token34] = ACTIONS(2201), - [aux_sym_cmd_identifier_token35] = ACTIONS(2203), - [aux_sym_cmd_identifier_token36] = ACTIONS(2203), - [aux_sym_cmd_identifier_token37] = ACTIONS(2203), - [aux_sym_cmd_identifier_token38] = ACTIONS(2201), - [aux_sym_cmd_identifier_token39] = ACTIONS(2203), - [aux_sym_cmd_identifier_token40] = ACTIONS(2203), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_export_DASHenv] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2203), - [anon_sym_error] = ACTIONS(2201), - [anon_sym_DASH2] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_in2] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_make] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_source] = ACTIONS(2201), - [anon_sym_source_DASHenv] = ACTIONS(2201), - [anon_sym_register] = ACTIONS(2201), - [anon_sym_hide] = ACTIONS(2201), - [anon_sym_hide_DASHenv] = ACTIONS(2201), - [anon_sym_overlay] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_PLUS2] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2203), - [anon_sym_DOT_DOT2] = ACTIONS(2251), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2253), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2203), - [aux_sym__val_number_decimal_token1] = ACTIONS(2201), - [aux_sym__val_number_decimal_token2] = ACTIONS(2203), - [aux_sym__val_number_decimal_token3] = ACTIONS(2203), - [aux_sym__val_number_decimal_token4] = ACTIONS(2203), - [aux_sym__val_number_token1] = ACTIONS(2203), - [aux_sym__val_number_token2] = ACTIONS(2203), - [aux_sym__val_number_token3] = ACTIONS(2203), - [aux_sym__val_number_token4] = ACTIONS(2201), - [aux_sym__val_number_token5] = ACTIONS(2201), - [aux_sym__val_number_token6] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2203), - [sym__str_single_quotes] = ACTIONS(2203), - [sym__str_back_ticks] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2203), + [sym_raw_string_begin] = ACTIONS(1773), }, - [541] = { - [sym_comment] = STATE(541), - [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(2112), - [aux_sym_cmd_identifier_token3] = ACTIONS(2112), - [aux_sym_cmd_identifier_token4] = ACTIONS(2112), - [aux_sym_cmd_identifier_token5] = ACTIONS(2112), - [aux_sym_cmd_identifier_token6] = ACTIONS(2112), - [aux_sym_cmd_identifier_token7] = ACTIONS(2112), - [aux_sym_cmd_identifier_token8] = ACTIONS(2106), - [aux_sym_cmd_identifier_token9] = ACTIONS(2106), - [aux_sym_cmd_identifier_token10] = ACTIONS(2112), - [aux_sym_cmd_identifier_token11] = ACTIONS(2112), - [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(2112), - [aux_sym_cmd_identifier_token17] = ACTIONS(2112), - [aux_sym_cmd_identifier_token18] = ACTIONS(2112), - [aux_sym_cmd_identifier_token19] = ACTIONS(2112), - [aux_sym_cmd_identifier_token20] = ACTIONS(2112), - [aux_sym_cmd_identifier_token21] = ACTIONS(2112), - [aux_sym_cmd_identifier_token22] = ACTIONS(2112), - [aux_sym_cmd_identifier_token23] = ACTIONS(2112), - [aux_sym_cmd_identifier_token24] = ACTIONS(2112), - [aux_sym_cmd_identifier_token25] = ACTIONS(2112), - [aux_sym_cmd_identifier_token26] = ACTIONS(2112), - [aux_sym_cmd_identifier_token27] = ACTIONS(2112), - [aux_sym_cmd_identifier_token28] = ACTIONS(2112), - [aux_sym_cmd_identifier_token29] = ACTIONS(2112), - [aux_sym_cmd_identifier_token30] = ACTIONS(2112), - [aux_sym_cmd_identifier_token31] = ACTIONS(2112), - [aux_sym_cmd_identifier_token32] = ACTIONS(2112), - [aux_sym_cmd_identifier_token33] = ACTIONS(2112), - [aux_sym_cmd_identifier_token34] = ACTIONS(2106), - [aux_sym_cmd_identifier_token35] = ACTIONS(2112), - [aux_sym_cmd_identifier_token36] = ACTIONS(2112), - [aux_sym_cmd_identifier_token37] = ACTIONS(2112), - [aux_sym_cmd_identifier_token38] = ACTIONS(2106), - [aux_sym_cmd_identifier_token39] = ACTIONS(2112), - [aux_sym_cmd_identifier_token40] = ACTIONS(2112), - [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(2112), - [anon_sym_DOLLAR] = ACTIONS(2112), - [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(2112), - [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(2112), - [anon_sym_DOT_DOT2] = ACTIONS(2251), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2253), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2112), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_decimal_token2] = ACTIONS(2112), - [aux_sym__val_number_decimal_token3] = ACTIONS(2112), - [aux_sym__val_number_decimal_token4] = ACTIONS(2112), - [aux_sym__val_number_token1] = ACTIONS(2112), - [aux_sym__val_number_token2] = ACTIONS(2112), - [aux_sym__val_number_token3] = ACTIONS(2112), - [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(2112), - [sym__str_single_quotes] = ACTIONS(2112), - [sym__str_back_ticks] = ACTIONS(2112), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2112), - }, - [542] = { - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_alias] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_let_DASHenv] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [aux_sym_cmd_identifier_token1] = ACTIONS(2181), - [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(2181), - [aux_sym_cmd_identifier_token9] = ACTIONS(2181), - [aux_sym_cmd_identifier_token10] = ACTIONS(2187), - [aux_sym_cmd_identifier_token11] = ACTIONS(2187), - [aux_sym_cmd_identifier_token12] = ACTIONS(2181), - [aux_sym_cmd_identifier_token13] = ACTIONS(2181), - [aux_sym_cmd_identifier_token14] = ACTIONS(2181), - [aux_sym_cmd_identifier_token15] = ACTIONS(2181), - [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(2181), - [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(2181), - [aux_sym_cmd_identifier_token39] = ACTIONS(2187), - [aux_sym_cmd_identifier_token40] = ACTIONS(2187), - [anon_sym_def] = ACTIONS(2181), - [anon_sym_export_DASHenv] = ACTIONS(2181), - [anon_sym_extern] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_error] = ACTIONS(2181), - [anon_sym_DASH2] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_in2] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_make] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_catch] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_source] = ACTIONS(2181), - [anon_sym_source_DASHenv] = ACTIONS(2181), - [anon_sym_register] = ACTIONS(2181), - [anon_sym_hide] = ACTIONS(2181), - [anon_sym_hide_DASHenv] = ACTIONS(2181), - [anon_sym_overlay] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_PLUS2] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2187), - [anon_sym_DOT_DOT2] = ACTIONS(2255), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2257), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2187), - [aux_sym__val_number_decimal_token1] = ACTIONS(2181), - [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(2181), - [aux_sym__val_number_token5] = ACTIONS(2181), - [aux_sym__val_number_token6] = ACTIONS(2181), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2187), + [532] = { + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(2070), - [anon_sym_alias] = ACTIONS(2070), - [anon_sym_let] = ACTIONS(2070), - [anon_sym_let_DASHenv] = ACTIONS(2070), - [anon_sym_mut] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [aux_sym_cmd_identifier_token1] = ACTIONS(2070), - [aux_sym_cmd_identifier_token2] = ACTIONS(2076), - [aux_sym_cmd_identifier_token3] = ACTIONS(2076), - [aux_sym_cmd_identifier_token4] = ACTIONS(2076), - [aux_sym_cmd_identifier_token5] = ACTIONS(2076), - [aux_sym_cmd_identifier_token6] = ACTIONS(2076), - [aux_sym_cmd_identifier_token7] = ACTIONS(2076), - [aux_sym_cmd_identifier_token8] = ACTIONS(2070), - [aux_sym_cmd_identifier_token9] = ACTIONS(2070), - [aux_sym_cmd_identifier_token10] = ACTIONS(2076), - [aux_sym_cmd_identifier_token11] = ACTIONS(2076), - [aux_sym_cmd_identifier_token12] = ACTIONS(2070), - [aux_sym_cmd_identifier_token13] = ACTIONS(2070), - [aux_sym_cmd_identifier_token14] = ACTIONS(2070), - [aux_sym_cmd_identifier_token15] = ACTIONS(2070), - [aux_sym_cmd_identifier_token16] = ACTIONS(2076), - [aux_sym_cmd_identifier_token17] = ACTIONS(2076), - [aux_sym_cmd_identifier_token18] = ACTIONS(2076), - [aux_sym_cmd_identifier_token19] = ACTIONS(2076), - [aux_sym_cmd_identifier_token20] = ACTIONS(2076), - [aux_sym_cmd_identifier_token21] = ACTIONS(2076), - [aux_sym_cmd_identifier_token22] = ACTIONS(2076), - [aux_sym_cmd_identifier_token23] = ACTIONS(2076), - [aux_sym_cmd_identifier_token24] = ACTIONS(2076), - [aux_sym_cmd_identifier_token25] = ACTIONS(2076), - [aux_sym_cmd_identifier_token26] = ACTIONS(2076), - [aux_sym_cmd_identifier_token27] = ACTIONS(2076), - [aux_sym_cmd_identifier_token28] = ACTIONS(2076), - [aux_sym_cmd_identifier_token29] = ACTIONS(2076), - [aux_sym_cmd_identifier_token30] = ACTIONS(2076), - [aux_sym_cmd_identifier_token31] = ACTIONS(2076), - [aux_sym_cmd_identifier_token32] = ACTIONS(2076), - [aux_sym_cmd_identifier_token33] = ACTIONS(2076), - [aux_sym_cmd_identifier_token34] = ACTIONS(2070), - [aux_sym_cmd_identifier_token35] = ACTIONS(2076), - [aux_sym_cmd_identifier_token36] = ACTIONS(2076), - [aux_sym_cmd_identifier_token37] = ACTIONS(2076), - [aux_sym_cmd_identifier_token38] = ACTIONS(2070), - [aux_sym_cmd_identifier_token39] = ACTIONS(2076), - [aux_sym_cmd_identifier_token40] = ACTIONS(2076), - [anon_sym_def] = ACTIONS(2070), - [anon_sym_export_DASHenv] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_module] = ACTIONS(2070), - [anon_sym_use] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2076), - [anon_sym_error] = ACTIONS(2070), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_in2] = ACTIONS(2070), - [anon_sym_loop] = ACTIONS(2070), - [anon_sym_make] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2070), - [anon_sym_catch] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_source] = ACTIONS(2070), - [anon_sym_source_DASHenv] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_hide] = ACTIONS(2070), - [anon_sym_hide_DASHenv] = ACTIONS(2070), - [anon_sym_overlay] = ACTIONS(2070), - [anon_sym_as] = ACTIONS(2070), - [anon_sym_PLUS2] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2259), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2261), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2076), - [aux_sym__val_number_decimal_token1] = ACTIONS(2070), - [aux_sym__val_number_decimal_token2] = ACTIONS(2076), - [aux_sym__val_number_decimal_token3] = ACTIONS(2076), - [aux_sym__val_number_decimal_token4] = ACTIONS(2076), - [aux_sym__val_number_token1] = ACTIONS(2076), - [aux_sym__val_number_token2] = ACTIONS(2076), - [aux_sym__val_number_token3] = ACTIONS(2076), - [aux_sym__val_number_token4] = ACTIONS(2070), - [aux_sym__val_number_token5] = ACTIONS(2070), - [aux_sym__val_number_token6] = ACTIONS(2070), - [anon_sym_DQUOTE] = ACTIONS(2076), - [sym__str_single_quotes] = ACTIONS(2076), - [sym__str_back_ticks] = ACTIONS(2076), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2076), + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_alias] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_let_DASHenv] = ACTIONS(2226), + [anon_sym_mut] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [aux_sym_cmd_identifier_token1] = ACTIONS(2226), + [aux_sym_cmd_identifier_token2] = ACTIONS(2226), + [aux_sym_cmd_identifier_token3] = ACTIONS(2226), + [aux_sym_cmd_identifier_token4] = ACTIONS(2226), + [aux_sym_cmd_identifier_token5] = ACTIONS(2226), + [aux_sym_cmd_identifier_token6] = ACTIONS(2226), + [aux_sym_cmd_identifier_token7] = ACTIONS(2226), + [aux_sym_cmd_identifier_token8] = ACTIONS(2226), + [aux_sym_cmd_identifier_token9] = ACTIONS(2226), + [aux_sym_cmd_identifier_token10] = ACTIONS(2226), + [aux_sym_cmd_identifier_token11] = ACTIONS(2226), + [aux_sym_cmd_identifier_token12] = ACTIONS(2226), + [aux_sym_cmd_identifier_token13] = ACTIONS(2226), + [aux_sym_cmd_identifier_token14] = ACTIONS(2226), + [aux_sym_cmd_identifier_token15] = ACTIONS(2226), + [aux_sym_cmd_identifier_token16] = ACTIONS(2226), + [aux_sym_cmd_identifier_token17] = ACTIONS(2226), + [aux_sym_cmd_identifier_token18] = ACTIONS(2226), + [aux_sym_cmd_identifier_token19] = ACTIONS(2226), + [aux_sym_cmd_identifier_token20] = ACTIONS(2226), + [aux_sym_cmd_identifier_token21] = ACTIONS(2226), + [aux_sym_cmd_identifier_token22] = ACTIONS(2226), + [aux_sym_cmd_identifier_token23] = ACTIONS(2226), + [aux_sym_cmd_identifier_token24] = ACTIONS(2226), + [aux_sym_cmd_identifier_token25] = ACTIONS(2226), + [aux_sym_cmd_identifier_token26] = ACTIONS(2226), + [aux_sym_cmd_identifier_token27] = ACTIONS(2226), + [aux_sym_cmd_identifier_token28] = ACTIONS(2226), + [aux_sym_cmd_identifier_token29] = ACTIONS(2226), + [aux_sym_cmd_identifier_token30] = ACTIONS(2226), + [aux_sym_cmd_identifier_token31] = ACTIONS(2226), + [aux_sym_cmd_identifier_token32] = ACTIONS(2226), + [aux_sym_cmd_identifier_token33] = ACTIONS(2226), + [aux_sym_cmd_identifier_token34] = ACTIONS(2226), + [aux_sym_cmd_identifier_token35] = ACTIONS(2226), + [aux_sym_cmd_identifier_token36] = ACTIONS(2226), + [aux_sym_cmd_identifier_token37] = ACTIONS(2226), + [aux_sym_cmd_identifier_token38] = ACTIONS(2226), + [aux_sym_cmd_identifier_token39] = ACTIONS(2226), + [aux_sym_cmd_identifier_token40] = ACTIONS(2226), + [anon_sym_def] = ACTIONS(2226), + [anon_sym_export_DASHenv] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_error] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_in2] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_make] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_catch] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_source] = ACTIONS(2226), + [anon_sym_source_DASHenv] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_hide] = ACTIONS(2226), + [anon_sym_hide_DASHenv] = ACTIONS(2226), + [anon_sym_overlay] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2226), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [aux_sym__val_number_decimal_token2] = ACTIONS(2226), + [aux_sym__val_number_decimal_token3] = ACTIONS(2226), + [aux_sym__val_number_decimal_token4] = ACTIONS(2226), + [aux_sym__val_number_token1] = ACTIONS(2226), + [aux_sym__val_number_token2] = ACTIONS(2226), + [aux_sym__val_number_token3] = ACTIONS(2226), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [sym__str_single_quotes] = ACTIONS(2226), + [sym__str_back_ticks] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2226), + [sym__entry_separator] = ACTIONS(2230), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2230), }, - [544] = { - [sym_path] = STATE(679), - [sym_comment] = STATE(544), - [aux_sym_cell_path_repeat1] = STATE(544), - [anon_sym_export] = ACTIONS(979), - [anon_sym_alias] = ACTIONS(979), - [anon_sym_let] = ACTIONS(979), - [anon_sym_let_DASHenv] = ACTIONS(979), - [anon_sym_mut] = ACTIONS(979), - [anon_sym_const] = ACTIONS(979), - [aux_sym_cmd_identifier_token1] = ACTIONS(979), - [aux_sym_cmd_identifier_token2] = ACTIONS(981), - [aux_sym_cmd_identifier_token3] = ACTIONS(981), - [aux_sym_cmd_identifier_token4] = ACTIONS(981), - [aux_sym_cmd_identifier_token5] = ACTIONS(981), - [aux_sym_cmd_identifier_token6] = ACTIONS(981), - [aux_sym_cmd_identifier_token7] = ACTIONS(981), - [aux_sym_cmd_identifier_token8] = ACTIONS(979), - [aux_sym_cmd_identifier_token9] = ACTIONS(979), - [aux_sym_cmd_identifier_token10] = ACTIONS(981), - [aux_sym_cmd_identifier_token11] = ACTIONS(981), - [aux_sym_cmd_identifier_token12] = ACTIONS(979), - [aux_sym_cmd_identifier_token13] = ACTIONS(979), - [aux_sym_cmd_identifier_token14] = ACTIONS(979), - [aux_sym_cmd_identifier_token15] = ACTIONS(979), - [aux_sym_cmd_identifier_token16] = ACTIONS(981), - [aux_sym_cmd_identifier_token17] = ACTIONS(981), - [aux_sym_cmd_identifier_token18] = ACTIONS(981), - [aux_sym_cmd_identifier_token19] = ACTIONS(981), - [aux_sym_cmd_identifier_token20] = ACTIONS(981), - [aux_sym_cmd_identifier_token21] = ACTIONS(981), - [aux_sym_cmd_identifier_token22] = ACTIONS(981), - [aux_sym_cmd_identifier_token23] = ACTIONS(981), - [aux_sym_cmd_identifier_token24] = ACTIONS(981), - [aux_sym_cmd_identifier_token25] = ACTIONS(981), - [aux_sym_cmd_identifier_token26] = ACTIONS(981), - [aux_sym_cmd_identifier_token27] = ACTIONS(981), - [aux_sym_cmd_identifier_token28] = ACTIONS(981), - [aux_sym_cmd_identifier_token29] = ACTIONS(981), - [aux_sym_cmd_identifier_token30] = ACTIONS(981), - [aux_sym_cmd_identifier_token31] = ACTIONS(981), - [aux_sym_cmd_identifier_token32] = ACTIONS(981), - [aux_sym_cmd_identifier_token33] = ACTIONS(981), - [aux_sym_cmd_identifier_token34] = ACTIONS(979), - [aux_sym_cmd_identifier_token35] = ACTIONS(981), - [aux_sym_cmd_identifier_token36] = ACTIONS(981), - [aux_sym_cmd_identifier_token37] = ACTIONS(981), - [aux_sym_cmd_identifier_token38] = ACTIONS(979), - [aux_sym_cmd_identifier_token39] = ACTIONS(981), - [aux_sym_cmd_identifier_token40] = ACTIONS(981), - [anon_sym_def] = ACTIONS(979), - [anon_sym_export_DASHenv] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_use] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_error] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(979), - [anon_sym_loop] = ACTIONS(979), - [anon_sym_make] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_try] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_return] = ACTIONS(979), - [anon_sym_source] = ACTIONS(979), - [anon_sym_source_DASHenv] = ACTIONS(979), - [anon_sym_register] = ACTIONS(979), - [anon_sym_hide] = ACTIONS(979), - [anon_sym_hide_DASHenv] = ACTIONS(979), - [anon_sym_overlay] = ACTIONS(979), - [anon_sym_as] = ACTIONS(979), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(979), - [aux_sym__val_number_token5] = ACTIONS(979), - [aux_sym__val_number_token6] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1801), }, - [545] = { - [sym_comment] = STATE(545), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in2] = 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_as] = ACTIONS(1038), - [anon_sym_LPAREN2] = ACTIONS(2266), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = 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), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2268), + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_alias] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_let_DASHenv] = ACTIONS(1840), + [anon_sym_mut] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [aux_sym_cmd_identifier_token1] = ACTIONS(1840), + [aux_sym_cmd_identifier_token2] = ACTIONS(1840), + [aux_sym_cmd_identifier_token3] = ACTIONS(1840), + [aux_sym_cmd_identifier_token4] = ACTIONS(1840), + [aux_sym_cmd_identifier_token5] = ACTIONS(1840), + [aux_sym_cmd_identifier_token6] = ACTIONS(1840), + [aux_sym_cmd_identifier_token7] = ACTIONS(1840), + [aux_sym_cmd_identifier_token8] = ACTIONS(1840), + [aux_sym_cmd_identifier_token9] = ACTIONS(1840), + [aux_sym_cmd_identifier_token10] = ACTIONS(1840), + [aux_sym_cmd_identifier_token11] = ACTIONS(1840), + [aux_sym_cmd_identifier_token12] = ACTIONS(1840), + [aux_sym_cmd_identifier_token13] = ACTIONS(1840), + [aux_sym_cmd_identifier_token14] = ACTIONS(1840), + [aux_sym_cmd_identifier_token15] = ACTIONS(1840), + [aux_sym_cmd_identifier_token16] = ACTIONS(1840), + [aux_sym_cmd_identifier_token17] = ACTIONS(1840), + [aux_sym_cmd_identifier_token18] = ACTIONS(1840), + [aux_sym_cmd_identifier_token19] = ACTIONS(1840), + [aux_sym_cmd_identifier_token20] = ACTIONS(1840), + [aux_sym_cmd_identifier_token21] = ACTIONS(1840), + [aux_sym_cmd_identifier_token22] = ACTIONS(1840), + [aux_sym_cmd_identifier_token23] = ACTIONS(1840), + [aux_sym_cmd_identifier_token24] = ACTIONS(1840), + [aux_sym_cmd_identifier_token25] = ACTIONS(1840), + [aux_sym_cmd_identifier_token26] = ACTIONS(1840), + [aux_sym_cmd_identifier_token27] = ACTIONS(1840), + [aux_sym_cmd_identifier_token28] = ACTIONS(1840), + [aux_sym_cmd_identifier_token29] = ACTIONS(1840), + [aux_sym_cmd_identifier_token30] = ACTIONS(1840), + [aux_sym_cmd_identifier_token31] = ACTIONS(1840), + [aux_sym_cmd_identifier_token32] = ACTIONS(1840), + [aux_sym_cmd_identifier_token33] = ACTIONS(1840), + [aux_sym_cmd_identifier_token34] = ACTIONS(1840), + [aux_sym_cmd_identifier_token35] = ACTIONS(1840), + [aux_sym_cmd_identifier_token36] = ACTIONS(1840), + [aux_sym_cmd_identifier_token37] = ACTIONS(1840), + [aux_sym_cmd_identifier_token38] = ACTIONS(1840), + [aux_sym_cmd_identifier_token39] = ACTIONS(1840), + [aux_sym_cmd_identifier_token40] = ACTIONS(1840), + [anon_sym_def] = ACTIONS(1840), + [anon_sym_export_DASHenv] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_error] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_in2] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_make] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_catch] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_source] = ACTIONS(1840), + [anon_sym_source_DASHenv] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_hide] = ACTIONS(1840), + [anon_sym_hide_DASHenv] = ACTIONS(1840), + [anon_sym_overlay] = ACTIONS(1840), + [anon_sym_as] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1840), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1840), + [aux_sym__val_number_decimal_token3] = ACTIONS(1840), + [aux_sym__val_number_decimal_token4] = ACTIONS(1840), + [aux_sym__val_number_token1] = ACTIONS(1840), + [aux_sym__val_number_token2] = ACTIONS(1840), + [aux_sym__val_number_token3] = ACTIONS(1840), + [aux_sym__val_number_token4] = ACTIONS(1840), + [aux_sym__val_number_token5] = ACTIONS(1840), + [aux_sym__val_number_token6] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym__str_single_quotes] = ACTIONS(1840), + [sym__str_back_ticks] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1840), + [sym__entry_separator] = ACTIONS(1848), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), + [sym_raw_string_begin] = ACTIONS(1848), }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [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(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [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(1008), - [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(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [sym__entry_separator] = ACTIONS(1010), + [536] = { + [sym_comment] = STATE(536), + [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), + [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), + [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_DASH2] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_in2] = 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_as] = ACTIONS(2234), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_PLUS2] = 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), + [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(2238), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2240), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1010), + [sym_raw_string_begin] = ACTIONS(2238), }, - [547] = { - [sym__expr_parenthesized_immediate] = STATE(7875), - [sym_comment] = STATE(547), - [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(1697), - [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), + [537] = { + [sym_comment] = STATE(537), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_in2] = 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_as] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2242), + [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), + [aux_sym__val_number_token4] = ACTIONS(2242), + [aux_sym__val_number_token5] = ACTIONS(2242), + [aux_sym__val_number_token6] = 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), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2272), + [sym_raw_string_begin] = ACTIONS(2244), }, - [548] = { - [sym_comment] = STATE(548), - [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(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(2078), - [aux_sym_cmd_identifier_token9] = ACTIONS(2078), - [aux_sym_cmd_identifier_token10] = ACTIONS(2084), - [aux_sym_cmd_identifier_token11] = ACTIONS(2084), - [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(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(2078), - [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(2078), - [aux_sym_cmd_identifier_token39] = ACTIONS(2084), - [aux_sym_cmd_identifier_token40] = ACTIONS(2084), - [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(2084), - [anon_sym_DOLLAR] = ACTIONS(2084), - [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(2084), - [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(2084), - [anon_sym_DOT_DOT2] = ACTIONS(2274), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2276), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2078), - [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(2078), - [aux_sym__val_number_token5] = ACTIONS(2078), - [aux_sym__val_number_token6] = ACTIONS(2078), - [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), + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(1000), + [anon_sym_alias] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_let_DASHenv] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [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(1000), + [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1000), + [aux_sym_cmd_identifier_token13] = ACTIONS(1000), + [aux_sym_cmd_identifier_token14] = ACTIONS(1000), + [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [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(1000), + [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(1000), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(1000), + [anon_sym_export_DASHenv] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_use] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_loop] = ACTIONS(1000), + [anon_sym_make] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_source] = ACTIONS(1000), + [anon_sym_source_DASHenv] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_hide_DASHenv] = ACTIONS(1000), + [anon_sym_overlay] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [sym__entry_separator] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1002), + }, + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [540] = { + [sym_comment] = STATE(540), + [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(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(2098), + [aux_sym_cmd_identifier_token9] = ACTIONS(2098), + [aux_sym_cmd_identifier_token10] = ACTIONS(2104), + [aux_sym_cmd_identifier_token11] = ACTIONS(2104), + [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(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(2098), + [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(2098), + [aux_sym_cmd_identifier_token39] = ACTIONS(2104), + [aux_sym_cmd_identifier_token40] = ACTIONS(2104), + [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(2104), + [anon_sym_DOLLAR] = ACTIONS(2104), + [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(2104), + [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(2104), + [anon_sym_DOT_DOT2] = ACTIONS(2246), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2248), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2104), + [aux_sym__val_number_decimal_token1] = ACTIONS(2098), + [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(2098), + [aux_sym__val_number_token5] = ACTIONS(2098), + [aux_sym__val_number_token6] = ACTIONS(2098), + [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(251), - [sym_raw_string_begin] = ACTIONS(2084), + [sym_raw_string_begin] = ACTIONS(2104), }, - [549] = { - [sym_comment] = STATE(549), + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(2064), + [anon_sym_alias] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_let_DASHenv] = ACTIONS(2064), + [anon_sym_mut] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [aux_sym_cmd_identifier_token1] = ACTIONS(2064), + [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(2064), + [aux_sym_cmd_identifier_token9] = ACTIONS(2064), + [aux_sym_cmd_identifier_token10] = ACTIONS(2070), + [aux_sym_cmd_identifier_token11] = ACTIONS(2070), + [aux_sym_cmd_identifier_token12] = ACTIONS(2064), + [aux_sym_cmd_identifier_token13] = ACTIONS(2064), + [aux_sym_cmd_identifier_token14] = ACTIONS(2064), + [aux_sym_cmd_identifier_token15] = ACTIONS(2064), + [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(2064), + [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(2064), + [aux_sym_cmd_identifier_token39] = ACTIONS(2070), + [aux_sym_cmd_identifier_token40] = ACTIONS(2070), + [anon_sym_def] = ACTIONS(2064), + [anon_sym_export_DASHenv] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_error] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_in2] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_make] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_source] = ACTIONS(2064), + [anon_sym_source_DASHenv] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_hide] = ACTIONS(2064), + [anon_sym_hide_DASHenv] = ACTIONS(2064), + [anon_sym_overlay] = ACTIONS(2064), + [anon_sym_as] = ACTIONS(2064), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), + [anon_sym_DOT_DOT2] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2215), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2064), + [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(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [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(251), + [sym_raw_string_begin] = ACTIONS(2070), + }, + [542] = { + [sym_comment] = STATE(542), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_let] = ACTIONS(1004), @@ -142573,8 +144366,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1006), }, - [550] = { - [sym_comment] = STATE(550), + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2199), + [aux_sym_cmd_identifier_token3] = ACTIONS(2199), + [aux_sym_cmd_identifier_token4] = ACTIONS(2199), + [aux_sym_cmd_identifier_token5] = ACTIONS(2199), + [aux_sym_cmd_identifier_token6] = ACTIONS(2199), + [aux_sym_cmd_identifier_token7] = ACTIONS(2199), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2199), + [aux_sym_cmd_identifier_token11] = ACTIONS(2199), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2199), + [aux_sym_cmd_identifier_token17] = ACTIONS(2199), + [aux_sym_cmd_identifier_token18] = ACTIONS(2199), + [aux_sym_cmd_identifier_token19] = ACTIONS(2199), + [aux_sym_cmd_identifier_token20] = ACTIONS(2199), + [aux_sym_cmd_identifier_token21] = ACTIONS(2199), + [aux_sym_cmd_identifier_token22] = ACTIONS(2199), + [aux_sym_cmd_identifier_token23] = ACTIONS(2199), + [aux_sym_cmd_identifier_token24] = ACTIONS(2199), + [aux_sym_cmd_identifier_token25] = ACTIONS(2199), + [aux_sym_cmd_identifier_token26] = ACTIONS(2199), + [aux_sym_cmd_identifier_token27] = ACTIONS(2199), + [aux_sym_cmd_identifier_token28] = ACTIONS(2199), + [aux_sym_cmd_identifier_token29] = ACTIONS(2199), + [aux_sym_cmd_identifier_token30] = ACTIONS(2199), + [aux_sym_cmd_identifier_token31] = ACTIONS(2199), + [aux_sym_cmd_identifier_token32] = ACTIONS(2199), + [aux_sym_cmd_identifier_token33] = ACTIONS(2199), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2199), + [aux_sym_cmd_identifier_token36] = ACTIONS(2199), + [aux_sym_cmd_identifier_token37] = ACTIONS(2199), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2199), + [aux_sym_cmd_identifier_token40] = ACTIONS(2199), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), + [anon_sym_DOT_DOT2] = ACTIONS(2213), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2215), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2199), + [aux_sym__val_number_decimal_token3] = ACTIONS(2199), + [aux_sym__val_number_decimal_token4] = ACTIONS(2199), + [aux_sym__val_number_token1] = ACTIONS(2199), + [aux_sym__val_number_token2] = ACTIONS(2199), + [aux_sym__val_number_token3] = ACTIONS(2199), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2199), + [sym__str_single_quotes] = ACTIONS(2199), + [sym__str_back_ticks] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2199), + }, + [544] = { + [sym_comment] = STATE(544), [anon_sym_export] = ACTIONS(996), [anon_sym_alias] = ACTIONS(996), [anon_sym_let] = ACTIONS(996), @@ -142675,1336 +144570,722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(998), }, - [551] = { - [sym_comment] = STATE(551), - [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(1830), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2280), - }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [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(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [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(1000), - [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(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [sym__entry_separator] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [555] = { - [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1801), + [aux_sym_cmd_identifier_token3] = ACTIONS(1801), + [aux_sym_cmd_identifier_token4] = ACTIONS(1801), + [aux_sym_cmd_identifier_token5] = ACTIONS(1801), + [aux_sym_cmd_identifier_token6] = ACTIONS(1801), + [aux_sym_cmd_identifier_token7] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1801), + [aux_sym_cmd_identifier_token11] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1801), + [aux_sym_cmd_identifier_token17] = ACTIONS(1801), + [aux_sym_cmd_identifier_token18] = ACTIONS(1801), + [aux_sym_cmd_identifier_token19] = ACTIONS(1801), + [aux_sym_cmd_identifier_token20] = ACTIONS(1801), + [aux_sym_cmd_identifier_token21] = ACTIONS(1801), + [aux_sym_cmd_identifier_token22] = ACTIONS(1801), + [aux_sym_cmd_identifier_token23] = ACTIONS(1801), + [aux_sym_cmd_identifier_token24] = ACTIONS(1801), + [aux_sym_cmd_identifier_token25] = ACTIONS(1801), + [aux_sym_cmd_identifier_token26] = ACTIONS(1801), + [aux_sym_cmd_identifier_token27] = ACTIONS(1801), + [aux_sym_cmd_identifier_token28] = ACTIONS(1801), + [aux_sym_cmd_identifier_token29] = ACTIONS(1801), + [aux_sym_cmd_identifier_token30] = ACTIONS(1801), + [aux_sym_cmd_identifier_token31] = ACTIONS(1801), + [aux_sym_cmd_identifier_token32] = ACTIONS(1801), + [aux_sym_cmd_identifier_token33] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1801), + [aux_sym_cmd_identifier_token36] = ACTIONS(1801), + [aux_sym_cmd_identifier_token37] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1801), + [aux_sym_cmd_identifier_token40] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1843), - [aux_sym_cmd_identifier_token3] = ACTIONS(1843), - [aux_sym_cmd_identifier_token4] = ACTIONS(1843), - [aux_sym_cmd_identifier_token5] = ACTIONS(1843), - [aux_sym_cmd_identifier_token6] = ACTIONS(1843), - [aux_sym_cmd_identifier_token7] = ACTIONS(1843), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1843), - [aux_sym_cmd_identifier_token17] = ACTIONS(1843), - [aux_sym_cmd_identifier_token18] = ACTIONS(1843), - [aux_sym_cmd_identifier_token19] = ACTIONS(1843), - [aux_sym_cmd_identifier_token20] = ACTIONS(1843), - [aux_sym_cmd_identifier_token21] = ACTIONS(1843), - [aux_sym_cmd_identifier_token22] = ACTIONS(1843), - [aux_sym_cmd_identifier_token23] = ACTIONS(1843), - [aux_sym_cmd_identifier_token24] = ACTIONS(1843), - [aux_sym_cmd_identifier_token25] = ACTIONS(1843), - [aux_sym_cmd_identifier_token26] = ACTIONS(1843), - [aux_sym_cmd_identifier_token27] = ACTIONS(1843), - [aux_sym_cmd_identifier_token28] = ACTIONS(1843), - [aux_sym_cmd_identifier_token29] = ACTIONS(1843), - [aux_sym_cmd_identifier_token30] = ACTIONS(1843), - [aux_sym_cmd_identifier_token31] = ACTIONS(1843), - [aux_sym_cmd_identifier_token32] = ACTIONS(1843), - [aux_sym_cmd_identifier_token33] = ACTIONS(1843), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1843), - [aux_sym_cmd_identifier_token36] = ACTIONS(1843), - [aux_sym_cmd_identifier_token37] = ACTIONS(1843), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in2] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1843), - [aux_sym__val_number_decimal_token3] = ACTIONS(1843), - [aux_sym__val_number_decimal_token4] = ACTIONS(1843), - [aux_sym__val_number_token1] = ACTIONS(1843), - [aux_sym__val_number_token2] = ACTIONS(1843), - [aux_sym__val_number_token3] = ACTIONS(1843), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [sym__entry_separator] = ACTIONS(1851), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1851), - }, - [557] = { - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [aux_sym_cmd_identifier_token37] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), + [sym_raw_string_begin] = ACTIONS(1801), }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(2191), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [aux_sym_cmd_identifier_token1] = ACTIONS(2131), + [aux_sym_cmd_identifier_token2] = ACTIONS(2137), + [aux_sym_cmd_identifier_token3] = ACTIONS(2137), + [aux_sym_cmd_identifier_token4] = ACTIONS(2137), + [aux_sym_cmd_identifier_token5] = ACTIONS(2137), + [aux_sym_cmd_identifier_token6] = ACTIONS(2137), + [aux_sym_cmd_identifier_token7] = ACTIONS(2137), + [aux_sym_cmd_identifier_token8] = ACTIONS(2131), + [aux_sym_cmd_identifier_token9] = ACTIONS(2131), + [aux_sym_cmd_identifier_token10] = ACTIONS(2137), + [aux_sym_cmd_identifier_token11] = ACTIONS(2137), + [aux_sym_cmd_identifier_token12] = ACTIONS(2131), + [aux_sym_cmd_identifier_token13] = ACTIONS(2131), + [aux_sym_cmd_identifier_token14] = ACTIONS(2131), + [aux_sym_cmd_identifier_token15] = ACTIONS(2131), + [aux_sym_cmd_identifier_token16] = ACTIONS(2137), + [aux_sym_cmd_identifier_token17] = ACTIONS(2137), + [aux_sym_cmd_identifier_token18] = ACTIONS(2137), + [aux_sym_cmd_identifier_token19] = ACTIONS(2137), + [aux_sym_cmd_identifier_token20] = ACTIONS(2137), + [aux_sym_cmd_identifier_token21] = ACTIONS(2137), + [aux_sym_cmd_identifier_token22] = ACTIONS(2137), + [aux_sym_cmd_identifier_token23] = ACTIONS(2137), + [aux_sym_cmd_identifier_token24] = ACTIONS(2137), + [aux_sym_cmd_identifier_token25] = ACTIONS(2137), + [aux_sym_cmd_identifier_token26] = ACTIONS(2137), + [aux_sym_cmd_identifier_token27] = ACTIONS(2137), + [aux_sym_cmd_identifier_token28] = ACTIONS(2137), + [aux_sym_cmd_identifier_token29] = ACTIONS(2137), + [aux_sym_cmd_identifier_token30] = ACTIONS(2137), + [aux_sym_cmd_identifier_token31] = ACTIONS(2137), + [aux_sym_cmd_identifier_token32] = ACTIONS(2137), + [aux_sym_cmd_identifier_token33] = ACTIONS(2137), + [aux_sym_cmd_identifier_token34] = ACTIONS(2131), + [aux_sym_cmd_identifier_token35] = ACTIONS(2137), + [aux_sym_cmd_identifier_token36] = ACTIONS(2137), + [aux_sym_cmd_identifier_token37] = ACTIONS(2137), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2137), + [aux_sym_cmd_identifier_token40] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2137), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_DASH2] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_in2] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_make] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_catch] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_PLUS2] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2137), + [anon_sym_DOT_DOT2] = ACTIONS(2250), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2252), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2137), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2137), + [aux_sym__val_number_decimal_token3] = ACTIONS(2137), + [aux_sym__val_number_decimal_token4] = ACTIONS(2137), + [aux_sym__val_number_token1] = ACTIONS(2137), + [aux_sym__val_number_token2] = ACTIONS(2137), + [aux_sym__val_number_token3] = ACTIONS(2137), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2137), + [sym__str_single_quotes] = ACTIONS(2137), + [sym__str_back_ticks] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2137), }, - [559] = { - [sym_comment] = STATE(559), - [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(2284), - [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(2286), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2288), + [547] = { + [sym__expr_parenthesized_immediate] = STATE(8113), + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(2064), + [anon_sym_alias] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_let_DASHenv] = ACTIONS(2064), + [anon_sym_mut] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [aux_sym_cmd_identifier_token1] = ACTIONS(2064), + [aux_sym_cmd_identifier_token2] = ACTIONS(2064), + [aux_sym_cmd_identifier_token3] = ACTIONS(2064), + [aux_sym_cmd_identifier_token4] = ACTIONS(2064), + [aux_sym_cmd_identifier_token5] = ACTIONS(2064), + [aux_sym_cmd_identifier_token6] = ACTIONS(2064), + [aux_sym_cmd_identifier_token7] = ACTIONS(2064), + [aux_sym_cmd_identifier_token8] = ACTIONS(2064), + [aux_sym_cmd_identifier_token9] = ACTIONS(2064), + [aux_sym_cmd_identifier_token10] = ACTIONS(2064), + [aux_sym_cmd_identifier_token11] = ACTIONS(2064), + [aux_sym_cmd_identifier_token12] = ACTIONS(2064), + [aux_sym_cmd_identifier_token13] = ACTIONS(2064), + [aux_sym_cmd_identifier_token14] = ACTIONS(2064), + [aux_sym_cmd_identifier_token15] = ACTIONS(2064), + [aux_sym_cmd_identifier_token16] = ACTIONS(2064), + [aux_sym_cmd_identifier_token17] = ACTIONS(2064), + [aux_sym_cmd_identifier_token18] = ACTIONS(2064), + [aux_sym_cmd_identifier_token19] = ACTIONS(2064), + [aux_sym_cmd_identifier_token20] = ACTIONS(2064), + [aux_sym_cmd_identifier_token21] = ACTIONS(2064), + [aux_sym_cmd_identifier_token22] = ACTIONS(2064), + [aux_sym_cmd_identifier_token23] = ACTIONS(2064), + [aux_sym_cmd_identifier_token24] = ACTIONS(2064), + [aux_sym_cmd_identifier_token25] = ACTIONS(2064), + [aux_sym_cmd_identifier_token26] = ACTIONS(2064), + [aux_sym_cmd_identifier_token27] = ACTIONS(2064), + [aux_sym_cmd_identifier_token28] = ACTIONS(2064), + [aux_sym_cmd_identifier_token29] = ACTIONS(2064), + [aux_sym_cmd_identifier_token30] = ACTIONS(2064), + [aux_sym_cmd_identifier_token31] = ACTIONS(2064), + [aux_sym_cmd_identifier_token32] = ACTIONS(2064), + [aux_sym_cmd_identifier_token33] = ACTIONS(2064), + [aux_sym_cmd_identifier_token34] = ACTIONS(2064), + [aux_sym_cmd_identifier_token35] = ACTIONS(2064), + [aux_sym_cmd_identifier_token36] = ACTIONS(2064), + [aux_sym_cmd_identifier_token37] = ACTIONS(2064), + [aux_sym_cmd_identifier_token38] = ACTIONS(2064), + [aux_sym_cmd_identifier_token39] = ACTIONS(2064), + [aux_sym_cmd_identifier_token40] = ACTIONS(2064), + [anon_sym_def] = ACTIONS(2064), + [anon_sym_export_DASHenv] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2064), + [anon_sym_error] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_in2] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_make] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_source] = ACTIONS(2064), + [anon_sym_source_DASHenv] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_hide] = ACTIONS(2064), + [anon_sym_hide_DASHenv] = ACTIONS(2064), + [anon_sym_overlay] = ACTIONS(2064), + [anon_sym_as] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2064), + [aux_sym__val_number_decimal_token2] = ACTIONS(2064), + [aux_sym__val_number_decimal_token3] = ACTIONS(2064), + [aux_sym__val_number_decimal_token4] = ACTIONS(2064), + [aux_sym__val_number_token1] = ACTIONS(2064), + [aux_sym__val_number_token2] = ACTIONS(2064), + [aux_sym__val_number_token3] = ACTIONS(2064), + [aux_sym__val_number_token4] = ACTIONS(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2064), + [sym__str_single_quotes] = ACTIONS(2064), + [sym__str_back_ticks] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), + [sym__entry_separator] = ACTIONS(2070), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2286), + [sym_raw_string_begin] = ACTIONS(2070), }, - [560] = { - [sym_comment] = STATE(560), - [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_DOT2] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2100), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2100), - [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(251), - [sym_raw_string_begin] = ACTIONS(2100), + [548] = { + [sym_comment] = STATE(548), + [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(1830), + [aux_sym_cmd_identifier_token25] = ACTIONS(1830), + [aux_sym_cmd_identifier_token26] = ACTIONS(1830), + [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(1830), + [aux_sym_cmd_identifier_token32] = ACTIONS(1830), + [aux_sym_cmd_identifier_token33] = ACTIONS(1830), + [aux_sym_cmd_identifier_token34] = ACTIONS(1830), + [aux_sym_cmd_identifier_token35] = ACTIONS(1830), + [aux_sym_cmd_identifier_token36] = ACTIONS(1830), + [aux_sym_cmd_identifier_token37] = ACTIONS(1830), + [aux_sym_cmd_identifier_token38] = ACTIONS(1830), + [aux_sym_cmd_identifier_token39] = ACTIONS(1830), + [aux_sym_cmd_identifier_token40] = ACTIONS(1830), + [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_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_error] = ACTIONS(1830), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_in2] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_make] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_catch] = 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_as] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1830), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1830), + [aux_sym__val_number_decimal_token3] = ACTIONS(1830), + [aux_sym__val_number_decimal_token4] = ACTIONS(1830), + [aux_sym__val_number_token1] = ACTIONS(1830), + [aux_sym__val_number_token2] = ACTIONS(1830), + [aux_sym__val_number_token3] = ACTIONS(1830), + [aux_sym__val_number_token4] = ACTIONS(1830), + [aux_sym__val_number_token5] = ACTIONS(1830), + [aux_sym__val_number_token6] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym__str_single_quotes] = ACTIONS(1830), + [sym__str_back_ticks] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1830), + [sym__entry_separator] = ACTIONS(1838), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1838), }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2290), - [anon_sym_alias] = ACTIONS(2290), - [anon_sym_let] = ACTIONS(2290), - [anon_sym_let_DASHenv] = ACTIONS(2290), - [anon_sym_mut] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [aux_sym_cmd_identifier_token1] = ACTIONS(2290), - [aux_sym_cmd_identifier_token2] = ACTIONS(2290), - [aux_sym_cmd_identifier_token3] = ACTIONS(2290), - [aux_sym_cmd_identifier_token4] = ACTIONS(2290), - [aux_sym_cmd_identifier_token5] = ACTIONS(2290), - [aux_sym_cmd_identifier_token6] = ACTIONS(2290), - [aux_sym_cmd_identifier_token7] = ACTIONS(2290), - [aux_sym_cmd_identifier_token8] = ACTIONS(2290), - [aux_sym_cmd_identifier_token9] = ACTIONS(2290), - [aux_sym_cmd_identifier_token10] = ACTIONS(2290), - [aux_sym_cmd_identifier_token11] = ACTIONS(2290), - [aux_sym_cmd_identifier_token12] = ACTIONS(2290), - [aux_sym_cmd_identifier_token13] = ACTIONS(2290), - [aux_sym_cmd_identifier_token14] = ACTIONS(2290), - [aux_sym_cmd_identifier_token15] = ACTIONS(2290), - [aux_sym_cmd_identifier_token16] = ACTIONS(2290), - [aux_sym_cmd_identifier_token17] = ACTIONS(2290), - [aux_sym_cmd_identifier_token18] = ACTIONS(2290), - [aux_sym_cmd_identifier_token19] = ACTIONS(2290), - [aux_sym_cmd_identifier_token20] = ACTIONS(2290), - [aux_sym_cmd_identifier_token21] = ACTIONS(2290), - [aux_sym_cmd_identifier_token22] = ACTIONS(2290), - [aux_sym_cmd_identifier_token23] = ACTIONS(2290), - [aux_sym_cmd_identifier_token24] = ACTIONS(2290), - [aux_sym_cmd_identifier_token25] = ACTIONS(2290), - [aux_sym_cmd_identifier_token26] = ACTIONS(2290), - [aux_sym_cmd_identifier_token27] = ACTIONS(2290), - [aux_sym_cmd_identifier_token28] = ACTIONS(2290), - [aux_sym_cmd_identifier_token29] = ACTIONS(2290), - [aux_sym_cmd_identifier_token30] = ACTIONS(2290), - [aux_sym_cmd_identifier_token31] = ACTIONS(2290), - [aux_sym_cmd_identifier_token32] = ACTIONS(2290), - [aux_sym_cmd_identifier_token33] = ACTIONS(2290), - [aux_sym_cmd_identifier_token34] = ACTIONS(2290), - [aux_sym_cmd_identifier_token35] = ACTIONS(2290), - [aux_sym_cmd_identifier_token36] = ACTIONS(2290), - [aux_sym_cmd_identifier_token37] = ACTIONS(2290), - [aux_sym_cmd_identifier_token38] = ACTIONS(2290), - [aux_sym_cmd_identifier_token39] = ACTIONS(2290), - [aux_sym_cmd_identifier_token40] = ACTIONS(2290), - [anon_sym_def] = ACTIONS(2290), - [anon_sym_export_DASHenv] = ACTIONS(2290), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_module] = ACTIONS(2290), - [anon_sym_use] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_error] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_break] = ACTIONS(2290), - [anon_sym_continue] = ACTIONS(2290), - [anon_sym_for] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_loop] = ACTIONS(2290), - [anon_sym_make] = ACTIONS(2290), - [anon_sym_while] = ACTIONS(2290), - [anon_sym_do] = ACTIONS(2290), - [anon_sym_if] = ACTIONS(2290), - [anon_sym_else] = ACTIONS(2290), - [anon_sym_match] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_try] = ACTIONS(2290), - [anon_sym_catch] = ACTIONS(2290), - [anon_sym_return] = ACTIONS(2290), - [anon_sym_source] = ACTIONS(2290), - [anon_sym_source_DASHenv] = ACTIONS(2290), - [anon_sym_register] = ACTIONS(2290), - [anon_sym_hide] = ACTIONS(2290), - [anon_sym_hide_DASHenv] = ACTIONS(2290), - [anon_sym_overlay] = ACTIONS(2290), - [anon_sym_as] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2290), - [aux_sym__val_number_decimal_token1] = ACTIONS(2290), - [aux_sym__val_number_decimal_token2] = ACTIONS(2290), - [aux_sym__val_number_decimal_token3] = ACTIONS(2290), - [aux_sym__val_number_decimal_token4] = ACTIONS(2290), - [aux_sym__val_number_token1] = ACTIONS(2290), - [aux_sym__val_number_token2] = ACTIONS(2290), - [aux_sym__val_number_token3] = ACTIONS(2290), - [aux_sym__val_number_token4] = ACTIONS(2290), - [aux_sym__val_number_token5] = ACTIONS(2290), - [aux_sym__val_number_token6] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2290), - [sym__str_single_quotes] = ACTIONS(2290), - [sym__str_back_ticks] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2290), - [sym__entry_separator] = ACTIONS(2294), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2296), + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_alias] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_let_DASHenv] = ACTIONS(2254), + [anon_sym_mut] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [aux_sym_cmd_identifier_token1] = ACTIONS(2254), + [aux_sym_cmd_identifier_token2] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2254), + [aux_sym_cmd_identifier_token4] = ACTIONS(2254), + [aux_sym_cmd_identifier_token5] = ACTIONS(2254), + [aux_sym_cmd_identifier_token6] = ACTIONS(2254), + [aux_sym_cmd_identifier_token7] = ACTIONS(2254), + [aux_sym_cmd_identifier_token8] = ACTIONS(2254), + [aux_sym_cmd_identifier_token9] = ACTIONS(2254), + [aux_sym_cmd_identifier_token10] = ACTIONS(2254), + [aux_sym_cmd_identifier_token11] = ACTIONS(2254), + [aux_sym_cmd_identifier_token12] = ACTIONS(2254), + [aux_sym_cmd_identifier_token13] = ACTIONS(2254), + [aux_sym_cmd_identifier_token14] = ACTIONS(2254), + [aux_sym_cmd_identifier_token15] = ACTIONS(2254), + [aux_sym_cmd_identifier_token16] = ACTIONS(2254), + [aux_sym_cmd_identifier_token17] = ACTIONS(2254), + [aux_sym_cmd_identifier_token18] = ACTIONS(2254), + [aux_sym_cmd_identifier_token19] = ACTIONS(2254), + [aux_sym_cmd_identifier_token20] = ACTIONS(2254), + [aux_sym_cmd_identifier_token21] = ACTIONS(2254), + [aux_sym_cmd_identifier_token22] = ACTIONS(2254), + [aux_sym_cmd_identifier_token23] = ACTIONS(2254), + [aux_sym_cmd_identifier_token24] = ACTIONS(2254), + [aux_sym_cmd_identifier_token25] = ACTIONS(2254), + [aux_sym_cmd_identifier_token26] = ACTIONS(2254), + [aux_sym_cmd_identifier_token27] = ACTIONS(2254), + [aux_sym_cmd_identifier_token28] = ACTIONS(2254), + [aux_sym_cmd_identifier_token29] = ACTIONS(2254), + [aux_sym_cmd_identifier_token30] = ACTIONS(2254), + [aux_sym_cmd_identifier_token31] = ACTIONS(2254), + [aux_sym_cmd_identifier_token32] = ACTIONS(2254), + [aux_sym_cmd_identifier_token33] = ACTIONS(2254), + [aux_sym_cmd_identifier_token34] = ACTIONS(2254), + [aux_sym_cmd_identifier_token35] = ACTIONS(2254), + [aux_sym_cmd_identifier_token36] = ACTIONS(2254), + [aux_sym_cmd_identifier_token37] = ACTIONS(2254), + [aux_sym_cmd_identifier_token38] = ACTIONS(2254), + [aux_sym_cmd_identifier_token39] = ACTIONS(2254), + [aux_sym_cmd_identifier_token40] = ACTIONS(2254), + [anon_sym_def] = ACTIONS(2254), + [anon_sym_export_DASHenv] = ACTIONS(2254), + [anon_sym_extern] = ACTIONS(2254), + [anon_sym_module] = ACTIONS(2254), + [anon_sym_use] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_error] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_loop] = ACTIONS(2254), + [anon_sym_make] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_match] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_catch] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_source] = ACTIONS(2254), + [anon_sym_source_DASHenv] = ACTIONS(2254), + [anon_sym_register] = ACTIONS(2254), + [anon_sym_hide] = ACTIONS(2254), + [anon_sym_hide_DASHenv] = ACTIONS(2254), + [anon_sym_overlay] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2256), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym__str_single_quotes] = ACTIONS(2254), + [sym__str_back_ticks] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2254), + [sym__entry_separator] = ACTIONS(2258), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2260), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), + [sym_raw_string_begin] = ACTIONS(2258), }, - [562] = { - [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_alias] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_let_DASHenv] = ACTIONS(2298), - [anon_sym_mut] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [aux_sym_cmd_identifier_token1] = ACTIONS(2298), - [aux_sym_cmd_identifier_token2] = ACTIONS(2298), - [aux_sym_cmd_identifier_token3] = ACTIONS(2298), - [aux_sym_cmd_identifier_token4] = ACTIONS(2298), - [aux_sym_cmd_identifier_token5] = ACTIONS(2298), - [aux_sym_cmd_identifier_token6] = ACTIONS(2298), - [aux_sym_cmd_identifier_token7] = ACTIONS(2298), - [aux_sym_cmd_identifier_token8] = ACTIONS(2298), - [aux_sym_cmd_identifier_token9] = ACTIONS(2298), - [aux_sym_cmd_identifier_token10] = ACTIONS(2298), - [aux_sym_cmd_identifier_token11] = ACTIONS(2298), - [aux_sym_cmd_identifier_token12] = ACTIONS(2298), - [aux_sym_cmd_identifier_token13] = ACTIONS(2298), - [aux_sym_cmd_identifier_token14] = ACTIONS(2298), - [aux_sym_cmd_identifier_token15] = ACTIONS(2298), - [aux_sym_cmd_identifier_token16] = ACTIONS(2298), - [aux_sym_cmd_identifier_token17] = ACTIONS(2298), - [aux_sym_cmd_identifier_token18] = ACTIONS(2298), - [aux_sym_cmd_identifier_token19] = ACTIONS(2298), - [aux_sym_cmd_identifier_token20] = ACTIONS(2298), - [aux_sym_cmd_identifier_token21] = ACTIONS(2298), - [aux_sym_cmd_identifier_token22] = ACTIONS(2298), - [aux_sym_cmd_identifier_token23] = ACTIONS(2298), - [aux_sym_cmd_identifier_token24] = ACTIONS(2298), - [aux_sym_cmd_identifier_token25] = ACTIONS(2298), - [aux_sym_cmd_identifier_token26] = ACTIONS(2298), - [aux_sym_cmd_identifier_token27] = ACTIONS(2298), - [aux_sym_cmd_identifier_token28] = ACTIONS(2298), - [aux_sym_cmd_identifier_token29] = ACTIONS(2298), - [aux_sym_cmd_identifier_token30] = ACTIONS(2298), - [aux_sym_cmd_identifier_token31] = ACTIONS(2298), - [aux_sym_cmd_identifier_token32] = ACTIONS(2298), - [aux_sym_cmd_identifier_token33] = ACTIONS(2298), - [aux_sym_cmd_identifier_token34] = ACTIONS(2298), - [aux_sym_cmd_identifier_token35] = ACTIONS(2298), - [aux_sym_cmd_identifier_token36] = ACTIONS(2298), - [aux_sym_cmd_identifier_token37] = ACTIONS(2298), - [aux_sym_cmd_identifier_token38] = ACTIONS(2298), - [aux_sym_cmd_identifier_token39] = ACTIONS(2298), - [aux_sym_cmd_identifier_token40] = ACTIONS(2298), - [anon_sym_def] = ACTIONS(2298), - [anon_sym_export_DASHenv] = ACTIONS(2298), - [anon_sym_extern] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_use] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_error] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_loop] = ACTIONS(2298), - [anon_sym_make] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_match] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_catch] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_source] = ACTIONS(2298), - [anon_sym_source_DASHenv] = ACTIONS(2298), - [anon_sym_register] = ACTIONS(2298), - [anon_sym_hide] = ACTIONS(2298), - [anon_sym_hide_DASHenv] = ACTIONS(2298), - [anon_sym_overlay] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2298), - [aux_sym__val_number_decimal_token1] = ACTIONS(2298), - [aux_sym__val_number_decimal_token2] = ACTIONS(2298), - [aux_sym__val_number_decimal_token3] = ACTIONS(2298), - [aux_sym__val_number_decimal_token4] = ACTIONS(2298), - [aux_sym__val_number_token1] = ACTIONS(2298), - [aux_sym__val_number_token2] = ACTIONS(2298), - [aux_sym__val_number_token3] = ACTIONS(2298), - [aux_sym__val_number_token4] = ACTIONS(2298), - [aux_sym__val_number_token5] = ACTIONS(2298), - [aux_sym__val_number_token6] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2298), - [sym__str_single_quotes] = ACTIONS(2298), - [sym__str_back_ticks] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2298), - [sym__entry_separator] = ACTIONS(2300), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2296), + [550] = { + [sym__expr_parenthesized_immediate] = STATE(8113), + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2197), + [aux_sym_cmd_identifier_token3] = ACTIONS(2197), + [aux_sym_cmd_identifier_token4] = ACTIONS(2197), + [aux_sym_cmd_identifier_token5] = ACTIONS(2197), + [aux_sym_cmd_identifier_token6] = ACTIONS(2197), + [aux_sym_cmd_identifier_token7] = ACTIONS(2197), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2197), + [aux_sym_cmd_identifier_token11] = ACTIONS(2197), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2197), + [aux_sym_cmd_identifier_token17] = ACTIONS(2197), + [aux_sym_cmd_identifier_token18] = ACTIONS(2197), + [aux_sym_cmd_identifier_token19] = ACTIONS(2197), + [aux_sym_cmd_identifier_token20] = ACTIONS(2197), + [aux_sym_cmd_identifier_token21] = ACTIONS(2197), + [aux_sym_cmd_identifier_token22] = ACTIONS(2197), + [aux_sym_cmd_identifier_token23] = ACTIONS(2197), + [aux_sym_cmd_identifier_token24] = ACTIONS(2197), + [aux_sym_cmd_identifier_token25] = ACTIONS(2197), + [aux_sym_cmd_identifier_token26] = ACTIONS(2197), + [aux_sym_cmd_identifier_token27] = ACTIONS(2197), + [aux_sym_cmd_identifier_token28] = ACTIONS(2197), + [aux_sym_cmd_identifier_token29] = ACTIONS(2197), + [aux_sym_cmd_identifier_token30] = ACTIONS(2197), + [aux_sym_cmd_identifier_token31] = ACTIONS(2197), + [aux_sym_cmd_identifier_token32] = ACTIONS(2197), + [aux_sym_cmd_identifier_token33] = ACTIONS(2197), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2197), + [aux_sym_cmd_identifier_token36] = ACTIONS(2197), + [aux_sym_cmd_identifier_token37] = ACTIONS(2197), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2197), + [aux_sym_cmd_identifier_token40] = ACTIONS(2197), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2197), + [aux_sym__val_number_decimal_token3] = ACTIONS(2197), + [aux_sym__val_number_decimal_token4] = ACTIONS(2197), + [aux_sym__val_number_token1] = ACTIONS(2197), + [aux_sym__val_number_token2] = ACTIONS(2197), + [aux_sym__val_number_token3] = ACTIONS(2197), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym__str_single_quotes] = ACTIONS(2197), + [sym__str_back_ticks] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), + [sym__entry_separator] = ACTIONS(2199), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), + [sym_raw_string_begin] = ACTIONS(2199), }, - [563] = { - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(2302), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), + [551] = { + [sym_comment] = STATE(551), + [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_DOT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), + [anon_sym_DOT_DOT_LT2] = 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(251), - [sym_raw_string_begin] = ACTIONS(1803), + [sym_raw_string_begin] = ACTIONS(2088), }, - [564] = { - [sym_path] = STATE(679), - [sym_comment] = STATE(564), - [aux_sym_cell_path_repeat1] = STATE(544), + [552] = { + [sym_comment] = STATE(552), [anon_sym_export] = ACTIONS(986), [anon_sym_alias] = ACTIONS(986), [anon_sym_let] = ACTIONS(986), @@ -144012,52 +145293,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(986), [anon_sym_const] = ACTIONS(986), [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), [aux_sym_cmd_identifier_token8] = ACTIONS(986), [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), [aux_sym_cmd_identifier_token12] = ACTIONS(986), [aux_sym_cmd_identifier_token13] = ACTIONS(986), [aux_sym_cmd_identifier_token14] = ACTIONS(986), [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), + [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(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), [anon_sym_def] = ACTIONS(986), [anon_sym_export_DASHenv] = ACTIONS(986), [anon_sym_extern] = ACTIONS(986), [anon_sym_module] = ACTIONS(986), [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), [anon_sym_error] = ACTIONS(986), [anon_sym_DASH2] = ACTIONS(986), [anon_sym_break] = ACTIONS(986), @@ -144071,7 +145352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(986), [anon_sym_else] = ACTIONS(986), [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(986), [anon_sym_try] = ACTIONS(986), [anon_sym_catch] = ACTIONS(986), [anon_sym_return] = ACTIONS(986), @@ -144082,939 +145363,1152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(986), [anon_sym_overlay] = ACTIONS(986), [anon_sym_as] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(986), [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), + [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_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [sym__entry_separator] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(988), }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [aux_sym_cmd_identifier_token37] = ACTIONS(1022), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1022), - [aux_sym_cmd_identifier_token40] = ACTIONS(1022), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_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(1022), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1022), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), - [aux_sym__val_number_token1] = ACTIONS(1022), - [aux_sym__val_number_token2] = ACTIONS(1022), - [aux_sym__val_number_token3] = ACTIONS(1022), - [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(1022), - [sym__str_single_quotes] = ACTIONS(1022), - [sym__str_back_ticks] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), - [sym__entry_separator] = ACTIONS(1024), + [553] = { + [sym_comment] = STATE(553), + [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(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(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2078), + [aux_sym_cmd_identifier_token11] = ACTIONS(2078), + [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(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(2072), + [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(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2078), + [aux_sym_cmd_identifier_token40] = ACTIONS(2078), + [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(2078), + [anon_sym_DOLLAR] = ACTIONS(2078), + [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(2078), + [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(2078), + [anon_sym_DOT_DOT2] = ACTIONS(2262), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2264), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2264), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [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(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [554] = { + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(2266), + [anon_sym_alias] = ACTIONS(2266), + [anon_sym_let] = ACTIONS(2266), + [anon_sym_let_DASHenv] = ACTIONS(2266), + [anon_sym_mut] = ACTIONS(2266), + [anon_sym_const] = ACTIONS(2266), + [aux_sym_cmd_identifier_token1] = ACTIONS(2266), + [aux_sym_cmd_identifier_token2] = ACTIONS(2266), + [aux_sym_cmd_identifier_token3] = ACTIONS(2266), + [aux_sym_cmd_identifier_token4] = ACTIONS(2266), + [aux_sym_cmd_identifier_token5] = ACTIONS(2266), + [aux_sym_cmd_identifier_token6] = ACTIONS(2266), + [aux_sym_cmd_identifier_token7] = ACTIONS(2266), + [aux_sym_cmd_identifier_token8] = ACTIONS(2266), + [aux_sym_cmd_identifier_token9] = ACTIONS(2266), + [aux_sym_cmd_identifier_token10] = ACTIONS(2266), + [aux_sym_cmd_identifier_token11] = ACTIONS(2266), + [aux_sym_cmd_identifier_token12] = ACTIONS(2266), + [aux_sym_cmd_identifier_token13] = ACTIONS(2266), + [aux_sym_cmd_identifier_token14] = ACTIONS(2266), + [aux_sym_cmd_identifier_token15] = ACTIONS(2266), + [aux_sym_cmd_identifier_token16] = ACTIONS(2266), + [aux_sym_cmd_identifier_token17] = ACTIONS(2266), + [aux_sym_cmd_identifier_token18] = ACTIONS(2266), + [aux_sym_cmd_identifier_token19] = ACTIONS(2266), + [aux_sym_cmd_identifier_token20] = ACTIONS(2266), + [aux_sym_cmd_identifier_token21] = ACTIONS(2266), + [aux_sym_cmd_identifier_token22] = ACTIONS(2266), + [aux_sym_cmd_identifier_token23] = ACTIONS(2266), + [aux_sym_cmd_identifier_token24] = ACTIONS(2266), + [aux_sym_cmd_identifier_token25] = ACTIONS(2266), + [aux_sym_cmd_identifier_token26] = ACTIONS(2266), + [aux_sym_cmd_identifier_token27] = ACTIONS(2266), + [aux_sym_cmd_identifier_token28] = ACTIONS(2266), + [aux_sym_cmd_identifier_token29] = ACTIONS(2266), + [aux_sym_cmd_identifier_token30] = ACTIONS(2266), + [aux_sym_cmd_identifier_token31] = ACTIONS(2266), + [aux_sym_cmd_identifier_token32] = ACTIONS(2266), + [aux_sym_cmd_identifier_token33] = ACTIONS(2266), + [aux_sym_cmd_identifier_token34] = ACTIONS(2266), + [aux_sym_cmd_identifier_token35] = ACTIONS(2266), + [aux_sym_cmd_identifier_token36] = ACTIONS(2266), + [aux_sym_cmd_identifier_token37] = ACTIONS(2266), + [aux_sym_cmd_identifier_token38] = ACTIONS(2266), + [aux_sym_cmd_identifier_token39] = ACTIONS(2266), + [aux_sym_cmd_identifier_token40] = ACTIONS(2266), + [anon_sym_def] = ACTIONS(2266), + [anon_sym_export_DASHenv] = ACTIONS(2266), + [anon_sym_extern] = ACTIONS(2266), + [anon_sym_module] = ACTIONS(2266), + [anon_sym_use] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2266), + [anon_sym_error] = ACTIONS(2266), + [anon_sym_DASH2] = ACTIONS(2266), + [anon_sym_break] = ACTIONS(2266), + [anon_sym_continue] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2266), + [anon_sym_in2] = ACTIONS(2266), + [anon_sym_loop] = ACTIONS(2266), + [anon_sym_make] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_if] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2266), + [anon_sym_match] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_try] = ACTIONS(2266), + [anon_sym_catch] = ACTIONS(2266), + [anon_sym_return] = ACTIONS(2266), + [anon_sym_source] = ACTIONS(2266), + [anon_sym_source_DASHenv] = ACTIONS(2266), + [anon_sym_register] = ACTIONS(2266), + [anon_sym_hide] = ACTIONS(2266), + [anon_sym_hide_DASHenv] = ACTIONS(2266), + [anon_sym_overlay] = ACTIONS(2266), + [anon_sym_as] = ACTIONS(2266), + [anon_sym_LPAREN2] = ACTIONS(2268), + [anon_sym_PLUS2] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2266), + [aux_sym__val_number_decimal_token1] = ACTIONS(2266), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2266), + [aux_sym__val_number_decimal_token4] = ACTIONS(2266), + [aux_sym__val_number_token1] = ACTIONS(2266), + [aux_sym__val_number_token2] = ACTIONS(2266), + [aux_sym__val_number_token3] = ACTIONS(2266), + [aux_sym__val_number_token4] = ACTIONS(2266), + [aux_sym__val_number_token5] = ACTIONS(2266), + [aux_sym__val_number_token6] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym__str_single_quotes] = ACTIONS(2266), + [sym__str_back_ticks] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2266), + [sym__entry_separator] = ACTIONS(2270), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1024), + [sym_raw_string_begin] = ACTIONS(2270), }, - [566] = { - [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [aux_sym_cmd_identifier_token1] = ACTIONS(2229), - [aux_sym_cmd_identifier_token2] = ACTIONS(2233), - [aux_sym_cmd_identifier_token3] = ACTIONS(2233), - [aux_sym_cmd_identifier_token4] = ACTIONS(2233), - [aux_sym_cmd_identifier_token5] = ACTIONS(2233), - [aux_sym_cmd_identifier_token6] = ACTIONS(2233), - [aux_sym_cmd_identifier_token7] = ACTIONS(2233), - [aux_sym_cmd_identifier_token8] = ACTIONS(2229), - [aux_sym_cmd_identifier_token9] = ACTIONS(2229), - [aux_sym_cmd_identifier_token10] = ACTIONS(2233), - [aux_sym_cmd_identifier_token11] = ACTIONS(2233), - [aux_sym_cmd_identifier_token12] = ACTIONS(2229), - [aux_sym_cmd_identifier_token13] = ACTIONS(2229), - [aux_sym_cmd_identifier_token14] = ACTIONS(2229), - [aux_sym_cmd_identifier_token15] = ACTIONS(2229), - [aux_sym_cmd_identifier_token16] = ACTIONS(2233), - [aux_sym_cmd_identifier_token17] = ACTIONS(2233), - [aux_sym_cmd_identifier_token18] = ACTIONS(2233), - [aux_sym_cmd_identifier_token19] = ACTIONS(2233), - [aux_sym_cmd_identifier_token20] = ACTIONS(2233), - [aux_sym_cmd_identifier_token21] = ACTIONS(2233), - [aux_sym_cmd_identifier_token22] = ACTIONS(2233), - [aux_sym_cmd_identifier_token23] = ACTIONS(2233), - [aux_sym_cmd_identifier_token24] = ACTIONS(2233), - [aux_sym_cmd_identifier_token25] = ACTIONS(2233), - [aux_sym_cmd_identifier_token26] = ACTIONS(2233), - [aux_sym_cmd_identifier_token27] = ACTIONS(2233), - [aux_sym_cmd_identifier_token28] = ACTIONS(2233), - [aux_sym_cmd_identifier_token29] = ACTIONS(2233), - [aux_sym_cmd_identifier_token30] = ACTIONS(2233), - [aux_sym_cmd_identifier_token31] = ACTIONS(2233), - [aux_sym_cmd_identifier_token32] = ACTIONS(2233), - [aux_sym_cmd_identifier_token33] = ACTIONS(2233), - [aux_sym_cmd_identifier_token34] = ACTIONS(2229), - [aux_sym_cmd_identifier_token35] = ACTIONS(2233), - [aux_sym_cmd_identifier_token36] = ACTIONS(2233), - [aux_sym_cmd_identifier_token37] = ACTIONS(2233), - [aux_sym_cmd_identifier_token38] = ACTIONS(2229), - [aux_sym_cmd_identifier_token39] = ACTIONS(2233), - [aux_sym_cmd_identifier_token40] = ACTIONS(2233), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_in2] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_make] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_catch] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2233), - [aux_sym__val_number_decimal_token3] = ACTIONS(2233), - [aux_sym__val_number_decimal_token4] = ACTIONS(2233), - [aux_sym__val_number_token1] = ACTIONS(2233), - [aux_sym__val_number_token2] = ACTIONS(2233), - [aux_sym__val_number_token3] = ACTIONS(2233), - [aux_sym__val_number_token4] = ACTIONS(2229), - [aux_sym__val_number_token5] = ACTIONS(2229), - [aux_sym__val_number_token6] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2233), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2233), + [555] = { + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_alias] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_let_DASHenv] = ACTIONS(2272), + [anon_sym_mut] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [aux_sym_cmd_identifier_token1] = ACTIONS(2272), + [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(2272), + [aux_sym_cmd_identifier_token9] = ACTIONS(2272), + [aux_sym_cmd_identifier_token10] = ACTIONS(2272), + [aux_sym_cmd_identifier_token11] = ACTIONS(2272), + [aux_sym_cmd_identifier_token12] = ACTIONS(2272), + [aux_sym_cmd_identifier_token13] = ACTIONS(2272), + [aux_sym_cmd_identifier_token14] = ACTIONS(2272), + [aux_sym_cmd_identifier_token15] = ACTIONS(2272), + [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(2272), + [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(2272), + [aux_sym_cmd_identifier_token39] = ACTIONS(2272), + [aux_sym_cmd_identifier_token40] = ACTIONS(2272), + [anon_sym_def] = ACTIONS(2272), + [anon_sym_export_DASHenv] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_use] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_error] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_loop] = ACTIONS(2272), + [anon_sym_make] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_match] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_catch] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_source] = ACTIONS(2272), + [anon_sym_source_DASHenv] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_hide] = ACTIONS(2272), + [anon_sym_hide_DASHenv] = ACTIONS(2272), + [anon_sym_overlay] = ACTIONS(2272), + [anon_sym_as] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [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(2272), + [aux_sym__val_number_token5] = ACTIONS(2272), + [aux_sym__val_number_token6] = ACTIONS(2272), + [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), + [sym__entry_separator] = ACTIONS(2274), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2274), }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(2239), - [anon_sym_alias] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_let_DASHenv] = ACTIONS(2239), - [anon_sym_mut] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [aux_sym_cmd_identifier_token1] = ACTIONS(2239), - [aux_sym_cmd_identifier_token2] = ACTIONS(2243), - [aux_sym_cmd_identifier_token3] = ACTIONS(2243), - [aux_sym_cmd_identifier_token4] = ACTIONS(2243), - [aux_sym_cmd_identifier_token5] = ACTIONS(2243), - [aux_sym_cmd_identifier_token6] = ACTIONS(2243), - [aux_sym_cmd_identifier_token7] = ACTIONS(2243), - [aux_sym_cmd_identifier_token8] = ACTIONS(2239), - [aux_sym_cmd_identifier_token9] = ACTIONS(2239), - [aux_sym_cmd_identifier_token10] = ACTIONS(2243), - [aux_sym_cmd_identifier_token11] = ACTIONS(2243), - [aux_sym_cmd_identifier_token12] = ACTIONS(2239), - [aux_sym_cmd_identifier_token13] = ACTIONS(2239), - [aux_sym_cmd_identifier_token14] = ACTIONS(2239), - [aux_sym_cmd_identifier_token15] = ACTIONS(2239), - [aux_sym_cmd_identifier_token16] = ACTIONS(2243), - [aux_sym_cmd_identifier_token17] = ACTIONS(2243), - [aux_sym_cmd_identifier_token18] = ACTIONS(2243), - [aux_sym_cmd_identifier_token19] = ACTIONS(2243), - [aux_sym_cmd_identifier_token20] = ACTIONS(2243), - [aux_sym_cmd_identifier_token21] = ACTIONS(2243), - [aux_sym_cmd_identifier_token22] = ACTIONS(2243), - [aux_sym_cmd_identifier_token23] = ACTIONS(2243), - [aux_sym_cmd_identifier_token24] = ACTIONS(2243), - [aux_sym_cmd_identifier_token25] = ACTIONS(2243), - [aux_sym_cmd_identifier_token26] = ACTIONS(2243), - [aux_sym_cmd_identifier_token27] = ACTIONS(2243), - [aux_sym_cmd_identifier_token28] = ACTIONS(2243), - [aux_sym_cmd_identifier_token29] = ACTIONS(2243), - [aux_sym_cmd_identifier_token30] = ACTIONS(2243), - [aux_sym_cmd_identifier_token31] = ACTIONS(2243), - [aux_sym_cmd_identifier_token32] = ACTIONS(2243), - [aux_sym_cmd_identifier_token33] = ACTIONS(2243), - [aux_sym_cmd_identifier_token34] = ACTIONS(2239), - [aux_sym_cmd_identifier_token35] = ACTIONS(2243), - [aux_sym_cmd_identifier_token36] = ACTIONS(2243), - [aux_sym_cmd_identifier_token37] = ACTIONS(2243), - [aux_sym_cmd_identifier_token38] = ACTIONS(2239), - [aux_sym_cmd_identifier_token39] = ACTIONS(2243), - [aux_sym_cmd_identifier_token40] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2239), - [anon_sym_export_DASHenv] = ACTIONS(2239), - [anon_sym_extern] = ACTIONS(2239), - [anon_sym_module] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_DOLLAR] = ACTIONS(2243), - [anon_sym_error] = ACTIONS(2239), - [anon_sym_DASH2] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_in2] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_make] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [anon_sym_do] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_else] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_try] = ACTIONS(2239), - [anon_sym_catch] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_source] = ACTIONS(2239), - [anon_sym_source_DASHenv] = ACTIONS(2239), - [anon_sym_register] = ACTIONS(2239), - [anon_sym_hide] = ACTIONS(2239), - [anon_sym_hide_DASHenv] = ACTIONS(2239), - [anon_sym_overlay] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(2241), - [anon_sym_PLUS2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2239), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [aux_sym__val_number_token4] = ACTIONS(2239), - [aux_sym__val_number_token5] = ACTIONS(2239), - [aux_sym__val_number_token6] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2243), - [sym__str_single_quotes] = ACTIONS(2243), - [sym__str_back_ticks] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2243), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2243), + [556] = { + [sym_comment] = STATE(556), + [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_DOT2] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), + [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(251), + [sym_raw_string_begin] = ACTIONS(2084), }, - [568] = { - [sym_comment] = STATE(568), - [aux_sym__multiple_types_repeat1] = STATE(575), - [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(2308), + [557] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_alias] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_let_DASHenv] = ACTIONS(2276), + [anon_sym_mut] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [aux_sym_cmd_identifier_token1] = ACTIONS(2276), + [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(2276), + [aux_sym_cmd_identifier_token9] = ACTIONS(2276), + [aux_sym_cmd_identifier_token10] = ACTIONS(2276), + [aux_sym_cmd_identifier_token11] = ACTIONS(2276), + [aux_sym_cmd_identifier_token12] = ACTIONS(2276), + [aux_sym_cmd_identifier_token13] = ACTIONS(2276), + [aux_sym_cmd_identifier_token14] = ACTIONS(2276), + [aux_sym_cmd_identifier_token15] = ACTIONS(2276), + [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(2276), + [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(2276), + [aux_sym_cmd_identifier_token39] = ACTIONS(2276), + [aux_sym_cmd_identifier_token40] = ACTIONS(2276), + [anon_sym_def] = ACTIONS(2276), + [anon_sym_export_DASHenv] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_use] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2276), + [anon_sym_error] = ACTIONS(2276), + [anon_sym_DASH2] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_in2] = ACTIONS(2276), + [anon_sym_loop] = ACTIONS(2276), + [anon_sym_make] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_catch] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_source] = ACTIONS(2276), + [anon_sym_source_DASHenv] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2276), + [anon_sym_hide] = ACTIONS(2276), + [anon_sym_hide_DASHenv] = ACTIONS(2276), + [anon_sym_overlay] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2276), + [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(2276), + [aux_sym__val_number_token5] = ACTIONS(2276), + [aux_sym__val_number_token6] = ACTIONS(2276), + [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), + [sym__entry_separator] = ACTIONS(2278), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2310), + [sym_raw_string_begin] = ACTIONS(2278), }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [558] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_alias] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_let_DASHenv] = ACTIONS(2280), + [anon_sym_mut] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [aux_sym_cmd_identifier_token1] = ACTIONS(2280), + [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(2280), + [aux_sym_cmd_identifier_token9] = ACTIONS(2280), + [aux_sym_cmd_identifier_token10] = ACTIONS(2280), + [aux_sym_cmd_identifier_token11] = ACTIONS(2280), + [aux_sym_cmd_identifier_token12] = ACTIONS(2280), + [aux_sym_cmd_identifier_token13] = ACTIONS(2280), + [aux_sym_cmd_identifier_token14] = ACTIONS(2280), + [aux_sym_cmd_identifier_token15] = ACTIONS(2280), + [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(2280), + [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(2280), + [aux_sym_cmd_identifier_token39] = ACTIONS(2280), + [aux_sym_cmd_identifier_token40] = ACTIONS(2280), + [anon_sym_def] = ACTIONS(2280), + [anon_sym_export_DASHenv] = ACTIONS(2280), + [anon_sym_extern] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_use] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_error] = ACTIONS(2280), + [anon_sym_DASH2] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_in2] = ACTIONS(2280), + [anon_sym_loop] = ACTIONS(2280), + [anon_sym_make] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_match] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_catch] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_source] = ACTIONS(2280), + [anon_sym_source_DASHenv] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2280), + [anon_sym_hide] = ACTIONS(2280), + [anon_sym_hide_DASHenv] = ACTIONS(2280), + [anon_sym_overlay] = ACTIONS(2280), + [anon_sym_as] = ACTIONS(2280), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2280), + [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(2280), + [aux_sym__val_number_token5] = ACTIONS(2280), + [aux_sym__val_number_token6] = ACTIONS(2280), + [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), + [sym__entry_separator] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2282), }, - [570] = { - [sym_comment] = STATE(570), - [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(1036), - [aux_sym_cmd_identifier_token3] = ACTIONS(1036), - [aux_sym_cmd_identifier_token4] = ACTIONS(1036), - [aux_sym_cmd_identifier_token5] = ACTIONS(1036), - [aux_sym_cmd_identifier_token6] = ACTIONS(1036), - [aux_sym_cmd_identifier_token7] = ACTIONS(1036), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1036), - [aux_sym_cmd_identifier_token11] = ACTIONS(1036), - [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(1036), - [aux_sym_cmd_identifier_token17] = ACTIONS(1036), - [aux_sym_cmd_identifier_token18] = ACTIONS(1036), - [aux_sym_cmd_identifier_token19] = ACTIONS(1036), - [aux_sym_cmd_identifier_token20] = ACTIONS(1036), - [aux_sym_cmd_identifier_token21] = ACTIONS(1036), - [aux_sym_cmd_identifier_token22] = ACTIONS(1036), - [aux_sym_cmd_identifier_token23] = ACTIONS(1036), - [aux_sym_cmd_identifier_token24] = ACTIONS(1036), - [aux_sym_cmd_identifier_token25] = ACTIONS(1036), - [aux_sym_cmd_identifier_token26] = ACTIONS(1036), - [aux_sym_cmd_identifier_token27] = ACTIONS(1036), - [aux_sym_cmd_identifier_token28] = ACTIONS(1036), - [aux_sym_cmd_identifier_token29] = ACTIONS(1036), - [aux_sym_cmd_identifier_token30] = ACTIONS(1036), - [aux_sym_cmd_identifier_token31] = ACTIONS(1036), - [aux_sym_cmd_identifier_token32] = ACTIONS(1036), - [aux_sym_cmd_identifier_token33] = ACTIONS(1036), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1036), - [aux_sym_cmd_identifier_token36] = ACTIONS(1036), - [aux_sym_cmd_identifier_token37] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [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(1036), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1036), - [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(1036), - [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(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [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(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [aux_sym_record_entry_token1] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1036), + [559] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_alias] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_let_DASHenv] = ACTIONS(2284), + [anon_sym_mut] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [aux_sym_cmd_identifier_token1] = ACTIONS(2284), + [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(2284), + [aux_sym_cmd_identifier_token9] = ACTIONS(2284), + [aux_sym_cmd_identifier_token10] = ACTIONS(2284), + [aux_sym_cmd_identifier_token11] = ACTIONS(2284), + [aux_sym_cmd_identifier_token12] = ACTIONS(2284), + [aux_sym_cmd_identifier_token13] = ACTIONS(2284), + [aux_sym_cmd_identifier_token14] = ACTIONS(2284), + [aux_sym_cmd_identifier_token15] = ACTIONS(2284), + [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(2284), + [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(2284), + [aux_sym_cmd_identifier_token39] = ACTIONS(2284), + [aux_sym_cmd_identifier_token40] = ACTIONS(2284), + [anon_sym_def] = ACTIONS(2284), + [anon_sym_export_DASHenv] = ACTIONS(2284), + [anon_sym_extern] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_use] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2284), + [anon_sym_error] = ACTIONS(2284), + [anon_sym_DASH2] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_in2] = ACTIONS(2284), + [anon_sym_loop] = ACTIONS(2284), + [anon_sym_make] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_match] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_catch] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_source] = ACTIONS(2284), + [anon_sym_source_DASHenv] = ACTIONS(2284), + [anon_sym_register] = ACTIONS(2284), + [anon_sym_hide] = ACTIONS(2284), + [anon_sym_hide_DASHenv] = ACTIONS(2284), + [anon_sym_overlay] = ACTIONS(2284), + [anon_sym_as] = ACTIONS(2284), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2284), + [aux_sym__val_number_decimal_token1] = ACTIONS(2284), + [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(2284), + [aux_sym__val_number_token5] = ACTIONS(2284), + [aux_sym__val_number_token6] = ACTIONS(2284), + [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), + [sym__entry_separator] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2286), }, - [571] = { - [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [560] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_alias] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_let_DASHenv] = ACTIONS(2288), + [anon_sym_mut] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [aux_sym_cmd_identifier_token1] = ACTIONS(2288), + [aux_sym_cmd_identifier_token2] = ACTIONS(2288), + [aux_sym_cmd_identifier_token3] = ACTIONS(2288), + [aux_sym_cmd_identifier_token4] = ACTIONS(2288), + [aux_sym_cmd_identifier_token5] = ACTIONS(2288), + [aux_sym_cmd_identifier_token6] = ACTIONS(2288), + [aux_sym_cmd_identifier_token7] = ACTIONS(2288), + [aux_sym_cmd_identifier_token8] = ACTIONS(2288), + [aux_sym_cmd_identifier_token9] = ACTIONS(2288), + [aux_sym_cmd_identifier_token10] = ACTIONS(2288), + [aux_sym_cmd_identifier_token11] = ACTIONS(2288), + [aux_sym_cmd_identifier_token12] = ACTIONS(2288), + [aux_sym_cmd_identifier_token13] = ACTIONS(2288), + [aux_sym_cmd_identifier_token14] = ACTIONS(2288), + [aux_sym_cmd_identifier_token15] = ACTIONS(2288), + [aux_sym_cmd_identifier_token16] = ACTIONS(2288), + [aux_sym_cmd_identifier_token17] = ACTIONS(2288), + [aux_sym_cmd_identifier_token18] = ACTIONS(2288), + [aux_sym_cmd_identifier_token19] = ACTIONS(2288), + [aux_sym_cmd_identifier_token20] = ACTIONS(2288), + [aux_sym_cmd_identifier_token21] = ACTIONS(2288), + [aux_sym_cmd_identifier_token22] = ACTIONS(2288), + [aux_sym_cmd_identifier_token23] = ACTIONS(2288), + [aux_sym_cmd_identifier_token24] = ACTIONS(2288), + [aux_sym_cmd_identifier_token25] = ACTIONS(2288), + [aux_sym_cmd_identifier_token26] = ACTIONS(2288), + [aux_sym_cmd_identifier_token27] = ACTIONS(2288), + [aux_sym_cmd_identifier_token28] = ACTIONS(2288), + [aux_sym_cmd_identifier_token29] = ACTIONS(2288), + [aux_sym_cmd_identifier_token30] = ACTIONS(2288), + [aux_sym_cmd_identifier_token31] = ACTIONS(2288), + [aux_sym_cmd_identifier_token32] = ACTIONS(2288), + [aux_sym_cmd_identifier_token33] = ACTIONS(2288), + [aux_sym_cmd_identifier_token34] = ACTIONS(2288), + [aux_sym_cmd_identifier_token35] = ACTIONS(2288), + [aux_sym_cmd_identifier_token36] = ACTIONS(2288), + [aux_sym_cmd_identifier_token37] = ACTIONS(2288), + [aux_sym_cmd_identifier_token38] = ACTIONS(2288), + [aux_sym_cmd_identifier_token39] = ACTIONS(2288), + [aux_sym_cmd_identifier_token40] = ACTIONS(2288), + [anon_sym_def] = ACTIONS(2288), + [anon_sym_export_DASHenv] = ACTIONS(2288), + [anon_sym_extern] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_use] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_error] = ACTIONS(2288), + [anon_sym_DASH2] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_in2] = ACTIONS(2288), + [anon_sym_loop] = ACTIONS(2288), + [anon_sym_make] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_match] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_source] = ACTIONS(2288), + [anon_sym_source_DASHenv] = ACTIONS(2288), + [anon_sym_register] = ACTIONS(2288), + [anon_sym_hide] = ACTIONS(2288), + [anon_sym_hide_DASHenv] = ACTIONS(2288), + [anon_sym_overlay] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2288), + [aux_sym__val_number_decimal_token1] = ACTIONS(2288), + [aux_sym__val_number_decimal_token2] = ACTIONS(2288), + [aux_sym__val_number_decimal_token3] = ACTIONS(2288), + [aux_sym__val_number_decimal_token4] = ACTIONS(2288), + [aux_sym__val_number_token1] = ACTIONS(2288), + [aux_sym__val_number_token2] = ACTIONS(2288), + [aux_sym__val_number_token3] = ACTIONS(2288), + [aux_sym__val_number_token4] = ACTIONS(2288), + [aux_sym__val_number_token5] = ACTIONS(2288), + [aux_sym__val_number_token6] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [sym__str_single_quotes] = ACTIONS(2288), + [sym__str_back_ticks] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2288), + [sym__entry_separator] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2290), }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [561] = { + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_alias] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_let_DASHenv] = ACTIONS(2292), + [anon_sym_mut] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [aux_sym_cmd_identifier_token1] = ACTIONS(2292), + [aux_sym_cmd_identifier_token2] = ACTIONS(2292), + [aux_sym_cmd_identifier_token3] = ACTIONS(2292), + [aux_sym_cmd_identifier_token4] = ACTIONS(2292), + [aux_sym_cmd_identifier_token5] = ACTIONS(2292), + [aux_sym_cmd_identifier_token6] = ACTIONS(2292), + [aux_sym_cmd_identifier_token7] = ACTIONS(2292), + [aux_sym_cmd_identifier_token8] = ACTIONS(2292), + [aux_sym_cmd_identifier_token9] = ACTIONS(2292), + [aux_sym_cmd_identifier_token10] = ACTIONS(2292), + [aux_sym_cmd_identifier_token11] = ACTIONS(2292), + [aux_sym_cmd_identifier_token12] = ACTIONS(2292), + [aux_sym_cmd_identifier_token13] = ACTIONS(2292), + [aux_sym_cmd_identifier_token14] = ACTIONS(2292), + [aux_sym_cmd_identifier_token15] = ACTIONS(2292), + [aux_sym_cmd_identifier_token16] = ACTIONS(2292), + [aux_sym_cmd_identifier_token17] = ACTIONS(2292), + [aux_sym_cmd_identifier_token18] = ACTIONS(2292), + [aux_sym_cmd_identifier_token19] = ACTIONS(2292), + [aux_sym_cmd_identifier_token20] = ACTIONS(2292), + [aux_sym_cmd_identifier_token21] = ACTIONS(2292), + [aux_sym_cmd_identifier_token22] = ACTIONS(2292), + [aux_sym_cmd_identifier_token23] = ACTIONS(2292), + [aux_sym_cmd_identifier_token24] = ACTIONS(2292), + [aux_sym_cmd_identifier_token25] = ACTIONS(2292), + [aux_sym_cmd_identifier_token26] = ACTIONS(2292), + [aux_sym_cmd_identifier_token27] = ACTIONS(2292), + [aux_sym_cmd_identifier_token28] = ACTIONS(2292), + [aux_sym_cmd_identifier_token29] = ACTIONS(2292), + [aux_sym_cmd_identifier_token30] = ACTIONS(2292), + [aux_sym_cmd_identifier_token31] = ACTIONS(2292), + [aux_sym_cmd_identifier_token32] = ACTIONS(2292), + [aux_sym_cmd_identifier_token33] = ACTIONS(2292), + [aux_sym_cmd_identifier_token34] = ACTIONS(2292), + [aux_sym_cmd_identifier_token35] = ACTIONS(2292), + [aux_sym_cmd_identifier_token36] = ACTIONS(2292), + [aux_sym_cmd_identifier_token37] = ACTIONS(2292), + [aux_sym_cmd_identifier_token38] = ACTIONS(2292), + [aux_sym_cmd_identifier_token39] = ACTIONS(2292), + [aux_sym_cmd_identifier_token40] = ACTIONS(2292), + [anon_sym_def] = ACTIONS(2292), + [anon_sym_export_DASHenv] = ACTIONS(2292), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_use] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2292), + [anon_sym_error] = ACTIONS(2292), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_in2] = ACTIONS(2292), + [anon_sym_loop] = ACTIONS(2292), + [anon_sym_make] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_match] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_catch] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_source] = ACTIONS(2292), + [anon_sym_source_DASHenv] = ACTIONS(2292), + [anon_sym_register] = ACTIONS(2292), + [anon_sym_hide] = ACTIONS(2292), + [anon_sym_hide_DASHenv] = ACTIONS(2292), + [anon_sym_overlay] = ACTIONS(2292), + [anon_sym_as] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2292), + [aux_sym__val_number_decimal_token1] = ACTIONS(2292), + [aux_sym__val_number_decimal_token2] = ACTIONS(2292), + [aux_sym__val_number_decimal_token3] = ACTIONS(2292), + [aux_sym__val_number_decimal_token4] = ACTIONS(2292), + [aux_sym__val_number_token1] = ACTIONS(2292), + [aux_sym__val_number_token2] = ACTIONS(2292), + [aux_sym__val_number_token3] = ACTIONS(2292), + [aux_sym__val_number_token4] = ACTIONS(2292), + [aux_sym__val_number_token5] = ACTIONS(2292), + [aux_sym__val_number_token6] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [sym__str_single_quotes] = ACTIONS(2292), + [sym__str_back_ticks] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2292), + [sym__entry_separator] = ACTIONS(2294), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2294), }, - [573] = { - [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [aux_sym_cmd_identifier_token37] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), + [562] = { + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(2296), + [aux_sym__immediate_decimal_token2] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1781), }, - [574] = { - [sym_comment] = STATE(574), - [aux_sym__multiple_types_repeat1] = STATE(575), + [563] = { + [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_alias] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_let_DASHenv] = ACTIONS(2300), + [anon_sym_mut] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [aux_sym_cmd_identifier_token1] = ACTIONS(2300), + [aux_sym_cmd_identifier_token2] = ACTIONS(2300), + [aux_sym_cmd_identifier_token3] = ACTIONS(2300), + [aux_sym_cmd_identifier_token4] = ACTIONS(2300), + [aux_sym_cmd_identifier_token5] = ACTIONS(2300), + [aux_sym_cmd_identifier_token6] = ACTIONS(2300), + [aux_sym_cmd_identifier_token7] = ACTIONS(2300), + [aux_sym_cmd_identifier_token8] = ACTIONS(2300), + [aux_sym_cmd_identifier_token9] = ACTIONS(2300), + [aux_sym_cmd_identifier_token10] = ACTIONS(2300), + [aux_sym_cmd_identifier_token11] = ACTIONS(2300), + [aux_sym_cmd_identifier_token12] = ACTIONS(2300), + [aux_sym_cmd_identifier_token13] = ACTIONS(2300), + [aux_sym_cmd_identifier_token14] = ACTIONS(2300), + [aux_sym_cmd_identifier_token15] = ACTIONS(2300), + [aux_sym_cmd_identifier_token16] = ACTIONS(2300), + [aux_sym_cmd_identifier_token17] = ACTIONS(2300), + [aux_sym_cmd_identifier_token18] = ACTIONS(2300), + [aux_sym_cmd_identifier_token19] = ACTIONS(2300), + [aux_sym_cmd_identifier_token20] = ACTIONS(2300), + [aux_sym_cmd_identifier_token21] = ACTIONS(2300), + [aux_sym_cmd_identifier_token22] = ACTIONS(2300), + [aux_sym_cmd_identifier_token23] = ACTIONS(2300), + [aux_sym_cmd_identifier_token24] = ACTIONS(2300), + [aux_sym_cmd_identifier_token25] = ACTIONS(2300), + [aux_sym_cmd_identifier_token26] = ACTIONS(2300), + [aux_sym_cmd_identifier_token27] = ACTIONS(2300), + [aux_sym_cmd_identifier_token28] = ACTIONS(2300), + [aux_sym_cmd_identifier_token29] = ACTIONS(2300), + [aux_sym_cmd_identifier_token30] = ACTIONS(2300), + [aux_sym_cmd_identifier_token31] = ACTIONS(2300), + [aux_sym_cmd_identifier_token32] = ACTIONS(2300), + [aux_sym_cmd_identifier_token33] = ACTIONS(2300), + [aux_sym_cmd_identifier_token34] = ACTIONS(2300), + [aux_sym_cmd_identifier_token35] = ACTIONS(2300), + [aux_sym_cmd_identifier_token36] = ACTIONS(2300), + [aux_sym_cmd_identifier_token37] = ACTIONS(2300), + [aux_sym_cmd_identifier_token38] = ACTIONS(2300), + [aux_sym_cmd_identifier_token39] = ACTIONS(2300), + [aux_sym_cmd_identifier_token40] = ACTIONS(2300), + [anon_sym_def] = ACTIONS(2300), + [anon_sym_export_DASHenv] = ACTIONS(2300), + [anon_sym_extern] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_use] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_DOLLAR] = ACTIONS(2300), + [anon_sym_error] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_in2] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_make] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_catch] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_source] = ACTIONS(2300), + [anon_sym_source_DASHenv] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2300), + [anon_sym_hide] = ACTIONS(2300), + [anon_sym_hide_DASHenv] = ACTIONS(2300), + [anon_sym_overlay] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_LPAREN2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), + [aux_sym__val_number_decimal_token1] = ACTIONS(2300), + [aux_sym__val_number_decimal_token2] = ACTIONS(2300), + [aux_sym__val_number_decimal_token3] = ACTIONS(2300), + [aux_sym__val_number_decimal_token4] = ACTIONS(2300), + [aux_sym__val_number_token1] = ACTIONS(2300), + [aux_sym__val_number_token2] = ACTIONS(2300), + [aux_sym__val_number_token3] = ACTIONS(2300), + [aux_sym__val_number_token4] = ACTIONS(2300), + [aux_sym__val_number_token5] = ACTIONS(2300), + [aux_sym__val_number_token6] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [sym__str_single_quotes] = ACTIONS(2300), + [sym__str_back_ticks] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), + [sym__entry_separator] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2302), + }, + [564] = { + [sym_comment] = STATE(564), [anon_sym_export] = ACTIONS(2304), [anon_sym_alias] = ACTIONS(2304), [anon_sym_let] = ACTIONS(2304), @@ -145081,7 +146575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2304), [anon_sym_else] = ACTIONS(2304), [anon_sym_match] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2304), [anon_sym_try] = ACTIONS(2304), [anon_sym_catch] = ACTIONS(2304), [anon_sym_return] = ACTIONS(2304), @@ -145105,441 +146599,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(2304), [aux_sym__val_number_token5] = ACTIONS(2304), [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_LBRACK2] = ACTIONS(2306), [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(2308), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2310), - }, - [575] = { - [sym_comment] = STATE(575), - [aux_sym__multiple_types_repeat1] = STATE(575), - [anon_sym_export] = ACTIONS(2316), - [anon_sym_alias] = ACTIONS(2316), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_let_DASHenv] = ACTIONS(2316), - [anon_sym_mut] = ACTIONS(2316), - [anon_sym_const] = ACTIONS(2316), - [aux_sym_cmd_identifier_token1] = ACTIONS(2316), - [aux_sym_cmd_identifier_token2] = ACTIONS(2316), - [aux_sym_cmd_identifier_token3] = ACTIONS(2316), - [aux_sym_cmd_identifier_token4] = ACTIONS(2316), - [aux_sym_cmd_identifier_token5] = ACTIONS(2316), - [aux_sym_cmd_identifier_token6] = ACTIONS(2316), - [aux_sym_cmd_identifier_token7] = ACTIONS(2316), - [aux_sym_cmd_identifier_token8] = ACTIONS(2316), - [aux_sym_cmd_identifier_token9] = ACTIONS(2316), - [aux_sym_cmd_identifier_token10] = ACTIONS(2316), - [aux_sym_cmd_identifier_token11] = ACTIONS(2316), - [aux_sym_cmd_identifier_token12] = ACTIONS(2316), - [aux_sym_cmd_identifier_token13] = ACTIONS(2316), - [aux_sym_cmd_identifier_token14] = ACTIONS(2316), - [aux_sym_cmd_identifier_token15] = ACTIONS(2316), - [aux_sym_cmd_identifier_token16] = ACTIONS(2316), - [aux_sym_cmd_identifier_token17] = ACTIONS(2316), - [aux_sym_cmd_identifier_token18] = ACTIONS(2316), - [aux_sym_cmd_identifier_token19] = ACTIONS(2316), - [aux_sym_cmd_identifier_token20] = ACTIONS(2316), - [aux_sym_cmd_identifier_token21] = ACTIONS(2316), - [aux_sym_cmd_identifier_token22] = ACTIONS(2316), - [aux_sym_cmd_identifier_token23] = ACTIONS(2316), - [aux_sym_cmd_identifier_token24] = ACTIONS(2316), - [aux_sym_cmd_identifier_token25] = ACTIONS(2316), - [aux_sym_cmd_identifier_token26] = ACTIONS(2316), - [aux_sym_cmd_identifier_token27] = ACTIONS(2316), - [aux_sym_cmd_identifier_token28] = ACTIONS(2316), - [aux_sym_cmd_identifier_token29] = ACTIONS(2316), - [aux_sym_cmd_identifier_token30] = ACTIONS(2316), - [aux_sym_cmd_identifier_token31] = ACTIONS(2316), - [aux_sym_cmd_identifier_token32] = ACTIONS(2316), - [aux_sym_cmd_identifier_token33] = ACTIONS(2316), - [aux_sym_cmd_identifier_token34] = ACTIONS(2316), - [aux_sym_cmd_identifier_token35] = ACTIONS(2316), - [aux_sym_cmd_identifier_token36] = ACTIONS(2316), - [aux_sym_cmd_identifier_token37] = ACTIONS(2316), - [aux_sym_cmd_identifier_token38] = ACTIONS(2316), - [aux_sym_cmd_identifier_token39] = ACTIONS(2316), - [aux_sym_cmd_identifier_token40] = ACTIONS(2316), - [anon_sym_def] = ACTIONS(2316), - [anon_sym_export_DASHenv] = ACTIONS(2316), - [anon_sym_extern] = ACTIONS(2316), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_use] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(2316), - [anon_sym_DOLLAR] = ACTIONS(2316), - [anon_sym_error] = ACTIONS(2316), - [anon_sym_DASH2] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_in2] = ACTIONS(2316), - [anon_sym_loop] = ACTIONS(2316), - [anon_sym_make] = ACTIONS(2316), - [anon_sym_while] = ACTIONS(2316), - [anon_sym_do] = ACTIONS(2316), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_else] = ACTIONS(2316), - [anon_sym_match] = ACTIONS(2316), - [anon_sym_RBRACE] = ACTIONS(2316), - [anon_sym_try] = ACTIONS(2316), - [anon_sym_catch] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_source] = ACTIONS(2316), - [anon_sym_source_DASHenv] = ACTIONS(2316), - [anon_sym_register] = ACTIONS(2316), - [anon_sym_hide] = ACTIONS(2316), - [anon_sym_hide_DASHenv] = ACTIONS(2316), - [anon_sym_overlay] = ACTIONS(2316), - [anon_sym_as] = ACTIONS(2316), - [anon_sym_PLUS2] = ACTIONS(2316), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), - [aux_sym__val_number_decimal_token1] = ACTIONS(2316), - [aux_sym__val_number_decimal_token2] = ACTIONS(2316), - [aux_sym__val_number_decimal_token3] = ACTIONS(2316), - [aux_sym__val_number_decimal_token4] = ACTIONS(2316), - [aux_sym__val_number_token1] = ACTIONS(2316), - [aux_sym__val_number_token2] = ACTIONS(2316), - [aux_sym__val_number_token3] = ACTIONS(2316), - [aux_sym__val_number_token4] = ACTIONS(2316), - [aux_sym__val_number_token5] = ACTIONS(2316), - [aux_sym__val_number_token6] = ACTIONS(2316), - [anon_sym_DQUOTE] = ACTIONS(2316), - [sym__str_single_quotes] = ACTIONS(2316), - [sym__str_back_ticks] = ACTIONS(2316), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), - [sym__entry_separator] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2321), + [sym_raw_string_begin] = ACTIONS(2308), }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(2323), - [aux_sym__immediate_decimal_token2] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [577] = { - [sym__expr_parenthesized_immediate] = STATE(7477), - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_alias] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_let_DASHenv] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [aux_sym_cmd_identifier_token1] = ACTIONS(2201), - [aux_sym_cmd_identifier_token2] = ACTIONS(2203), - [aux_sym_cmd_identifier_token3] = ACTIONS(2203), - [aux_sym_cmd_identifier_token4] = ACTIONS(2203), - [aux_sym_cmd_identifier_token5] = ACTIONS(2203), - [aux_sym_cmd_identifier_token6] = ACTIONS(2203), - [aux_sym_cmd_identifier_token7] = ACTIONS(2203), - [aux_sym_cmd_identifier_token8] = ACTIONS(2201), - [aux_sym_cmd_identifier_token9] = ACTIONS(2201), - [aux_sym_cmd_identifier_token10] = ACTIONS(2203), - [aux_sym_cmd_identifier_token11] = ACTIONS(2203), - [aux_sym_cmd_identifier_token12] = ACTIONS(2201), - [aux_sym_cmd_identifier_token13] = ACTIONS(2201), - [aux_sym_cmd_identifier_token14] = ACTIONS(2201), - [aux_sym_cmd_identifier_token15] = ACTIONS(2201), - [aux_sym_cmd_identifier_token16] = ACTIONS(2203), - [aux_sym_cmd_identifier_token17] = ACTIONS(2203), - [aux_sym_cmd_identifier_token18] = ACTIONS(2203), - [aux_sym_cmd_identifier_token19] = ACTIONS(2203), - [aux_sym_cmd_identifier_token20] = ACTIONS(2203), - [aux_sym_cmd_identifier_token21] = ACTIONS(2203), - [aux_sym_cmd_identifier_token22] = ACTIONS(2203), - [aux_sym_cmd_identifier_token23] = ACTIONS(2203), - [aux_sym_cmd_identifier_token24] = ACTIONS(2203), - [aux_sym_cmd_identifier_token25] = ACTIONS(2203), - [aux_sym_cmd_identifier_token26] = ACTIONS(2203), - [aux_sym_cmd_identifier_token27] = ACTIONS(2203), - [aux_sym_cmd_identifier_token28] = ACTIONS(2203), - [aux_sym_cmd_identifier_token29] = ACTIONS(2203), - [aux_sym_cmd_identifier_token30] = ACTIONS(2203), - [aux_sym_cmd_identifier_token31] = ACTIONS(2203), - [aux_sym_cmd_identifier_token32] = ACTIONS(2203), - [aux_sym_cmd_identifier_token33] = ACTIONS(2203), - [aux_sym_cmd_identifier_token34] = ACTIONS(2201), - [aux_sym_cmd_identifier_token35] = ACTIONS(2203), - [aux_sym_cmd_identifier_token36] = ACTIONS(2203), - [aux_sym_cmd_identifier_token37] = ACTIONS(2203), - [aux_sym_cmd_identifier_token38] = ACTIONS(2201), - [aux_sym_cmd_identifier_token39] = ACTIONS(2203), - [aux_sym_cmd_identifier_token40] = ACTIONS(2203), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_export_DASHenv] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2203), - [anon_sym_error] = ACTIONS(2201), - [anon_sym_DASH2] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_in2] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_make] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_source] = ACTIONS(2201), - [anon_sym_source_DASHenv] = ACTIONS(2201), - [anon_sym_register] = ACTIONS(2201), - [anon_sym_hide] = ACTIONS(2201), - [anon_sym_hide_DASHenv] = ACTIONS(2201), - [anon_sym_overlay] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2203), - [aux_sym__val_number_decimal_token1] = ACTIONS(2201), - [aux_sym__val_number_decimal_token2] = ACTIONS(2203), - [aux_sym__val_number_decimal_token3] = ACTIONS(2203), - [aux_sym__val_number_decimal_token4] = ACTIONS(2203), - [aux_sym__val_number_token1] = ACTIONS(2203), - [aux_sym__val_number_token2] = ACTIONS(2203), - [aux_sym__val_number_token3] = ACTIONS(2203), - [aux_sym__val_number_token4] = ACTIONS(2201), - [aux_sym__val_number_token5] = ACTIONS(2201), - [aux_sym__val_number_token6] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2203), - [sym__str_single_quotes] = ACTIONS(2203), - [sym__str_back_ticks] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2203), + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, - [578] = { - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), + [566] = { + [sym_comment] = STATE(566), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [579] = { - [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), [aux_sym_cmd_identifier_token2] = ACTIONS(1801), [aux_sym_cmd_identifier_token3] = ACTIONS(1801), [aux_sym_cmd_identifier_token4] = ACTIONS(1801), [aux_sym_cmd_identifier_token5] = ACTIONS(1801), [aux_sym_cmd_identifier_token6] = ACTIONS(1801), [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), [aux_sym_cmd_identifier_token10] = ACTIONS(1801), [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), [aux_sym_cmd_identifier_token16] = ACTIONS(1801), [aux_sym_cmd_identifier_token17] = ACTIONS(1801), [aux_sym_cmd_identifier_token18] = ACTIONS(1801), @@ -145558,1987 +146851,1684 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1801), [aux_sym_cmd_identifier_token32] = ACTIONS(1801), [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), [aux_sym_cmd_identifier_token35] = ACTIONS(1801), [aux_sym_cmd_identifier_token36] = ACTIONS(1801), [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), [aux_sym_cmd_identifier_token39] = ACTIONS(1801), [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(2327), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), [aux_sym__val_number_decimal_token2] = ACTIONS(1801), [aux_sym__val_number_decimal_token3] = ACTIONS(1801), [aux_sym__val_number_decimal_token4] = ACTIONS(1801), [aux_sym__val_number_token1] = ACTIONS(1801), [aux_sym__val_number_token2] = ACTIONS(1801), [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), [anon_sym_DQUOTE] = ACTIONS(1801), [sym__str_single_quotes] = ACTIONS(1801), [sym__str_back_ticks] = ACTIONS(1801), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(2329), - [aux_sym__immediate_decimal_token2] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [581] = { - [sym__expr_parenthesized_immediate] = STATE(7477), - [sym_comment] = STATE(581), - [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(2112), - [aux_sym_cmd_identifier_token3] = ACTIONS(2112), - [aux_sym_cmd_identifier_token4] = ACTIONS(2112), - [aux_sym_cmd_identifier_token5] = ACTIONS(2112), - [aux_sym_cmd_identifier_token6] = ACTIONS(2112), - [aux_sym_cmd_identifier_token7] = ACTIONS(2112), - [aux_sym_cmd_identifier_token8] = ACTIONS(2106), - [aux_sym_cmd_identifier_token9] = ACTIONS(2106), - [aux_sym_cmd_identifier_token10] = ACTIONS(2112), - [aux_sym_cmd_identifier_token11] = ACTIONS(2112), - [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(2112), - [aux_sym_cmd_identifier_token17] = ACTIONS(2112), - [aux_sym_cmd_identifier_token18] = ACTIONS(2112), - [aux_sym_cmd_identifier_token19] = ACTIONS(2112), - [aux_sym_cmd_identifier_token20] = ACTIONS(2112), - [aux_sym_cmd_identifier_token21] = ACTIONS(2112), - [aux_sym_cmd_identifier_token22] = ACTIONS(2112), - [aux_sym_cmd_identifier_token23] = ACTIONS(2112), - [aux_sym_cmd_identifier_token24] = ACTIONS(2112), - [aux_sym_cmd_identifier_token25] = ACTIONS(2112), - [aux_sym_cmd_identifier_token26] = ACTIONS(2112), - [aux_sym_cmd_identifier_token27] = ACTIONS(2112), - [aux_sym_cmd_identifier_token28] = ACTIONS(2112), - [aux_sym_cmd_identifier_token29] = ACTIONS(2112), - [aux_sym_cmd_identifier_token30] = ACTIONS(2112), - [aux_sym_cmd_identifier_token31] = ACTIONS(2112), - [aux_sym_cmd_identifier_token32] = ACTIONS(2112), - [aux_sym_cmd_identifier_token33] = ACTIONS(2112), - [aux_sym_cmd_identifier_token34] = ACTIONS(2106), - [aux_sym_cmd_identifier_token35] = ACTIONS(2112), - [aux_sym_cmd_identifier_token36] = ACTIONS(2112), - [aux_sym_cmd_identifier_token37] = ACTIONS(2112), - [aux_sym_cmd_identifier_token38] = ACTIONS(2106), - [aux_sym_cmd_identifier_token39] = ACTIONS(2112), - [aux_sym_cmd_identifier_token40] = ACTIONS(2112), - [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(2112), - [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(2112), - [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_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2112), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_decimal_token2] = ACTIONS(2112), - [aux_sym__val_number_decimal_token3] = ACTIONS(2112), - [aux_sym__val_number_decimal_token4] = ACTIONS(2112), - [aux_sym__val_number_token1] = ACTIONS(2112), - [aux_sym__val_number_token2] = ACTIONS(2112), - [aux_sym__val_number_token3] = ACTIONS(2112), - [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(2112), - [sym__str_single_quotes] = ACTIONS(2112), - [sym__str_back_ticks] = ACTIONS(2112), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2112), - }, - [582] = { - [sym_comment] = STATE(582), - [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_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_LBRACK2] = ACTIONS(2335), - [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(2337), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2337), - }, - [583] = { - [sym__expr_parenthesized_immediate] = STATE(7875), - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(2209), - [anon_sym_alias] = ACTIONS(2209), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_let_DASHenv] = ACTIONS(2209), - [anon_sym_mut] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [aux_sym_cmd_identifier_token1] = ACTIONS(2209), - [aux_sym_cmd_identifier_token2] = ACTIONS(2211), - [aux_sym_cmd_identifier_token3] = ACTIONS(2211), - [aux_sym_cmd_identifier_token4] = ACTIONS(2211), - [aux_sym_cmd_identifier_token5] = ACTIONS(2211), - [aux_sym_cmd_identifier_token6] = ACTIONS(2211), - [aux_sym_cmd_identifier_token7] = ACTIONS(2211), - [aux_sym_cmd_identifier_token8] = ACTIONS(2209), - [aux_sym_cmd_identifier_token9] = ACTIONS(2209), - [aux_sym_cmd_identifier_token10] = ACTIONS(2211), - [aux_sym_cmd_identifier_token11] = ACTIONS(2211), - [aux_sym_cmd_identifier_token12] = ACTIONS(2209), - [aux_sym_cmd_identifier_token13] = ACTIONS(2209), - [aux_sym_cmd_identifier_token14] = ACTIONS(2209), - [aux_sym_cmd_identifier_token15] = ACTIONS(2209), - [aux_sym_cmd_identifier_token16] = ACTIONS(2211), - [aux_sym_cmd_identifier_token17] = ACTIONS(2211), - [aux_sym_cmd_identifier_token18] = ACTIONS(2211), - [aux_sym_cmd_identifier_token19] = ACTIONS(2211), - [aux_sym_cmd_identifier_token20] = ACTIONS(2211), - [aux_sym_cmd_identifier_token21] = ACTIONS(2211), - [aux_sym_cmd_identifier_token22] = ACTIONS(2211), - [aux_sym_cmd_identifier_token23] = ACTIONS(2211), - [aux_sym_cmd_identifier_token24] = ACTIONS(2211), - [aux_sym_cmd_identifier_token25] = ACTIONS(2211), - [aux_sym_cmd_identifier_token26] = ACTIONS(2211), - [aux_sym_cmd_identifier_token27] = ACTIONS(2211), - [aux_sym_cmd_identifier_token28] = ACTIONS(2211), - [aux_sym_cmd_identifier_token29] = ACTIONS(2211), - [aux_sym_cmd_identifier_token30] = ACTIONS(2211), - [aux_sym_cmd_identifier_token31] = ACTIONS(2211), - [aux_sym_cmd_identifier_token32] = ACTIONS(2211), - [aux_sym_cmd_identifier_token33] = ACTIONS(2211), - [aux_sym_cmd_identifier_token34] = ACTIONS(2209), - [aux_sym_cmd_identifier_token35] = ACTIONS(2211), - [aux_sym_cmd_identifier_token36] = ACTIONS(2211), - [aux_sym_cmd_identifier_token37] = ACTIONS(2211), - [aux_sym_cmd_identifier_token38] = ACTIONS(2209), - [aux_sym_cmd_identifier_token39] = ACTIONS(2211), - [aux_sym_cmd_identifier_token40] = ACTIONS(2211), - [anon_sym_def] = ACTIONS(2209), - [anon_sym_export_DASHenv] = ACTIONS(2209), - [anon_sym_extern] = ACTIONS(2209), - [anon_sym_module] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2211), - [anon_sym_error] = ACTIONS(2209), - [anon_sym_DASH2] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_in2] = ACTIONS(2209), - [anon_sym_loop] = ACTIONS(2209), - [anon_sym_make] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_catch] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_source] = ACTIONS(2209), - [anon_sym_source_DASHenv] = ACTIONS(2209), - [anon_sym_register] = ACTIONS(2209), - [anon_sym_hide] = ACTIONS(2209), - [anon_sym_hide_DASHenv] = ACTIONS(2209), - [anon_sym_overlay] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2211), - [aux_sym__val_number_decimal_token1] = ACTIONS(2209), - [aux_sym__val_number_decimal_token2] = ACTIONS(2211), - [aux_sym__val_number_decimal_token3] = ACTIONS(2211), - [aux_sym__val_number_decimal_token4] = ACTIONS(2211), - [aux_sym__val_number_token1] = ACTIONS(2211), - [aux_sym__val_number_token2] = ACTIONS(2211), - [aux_sym__val_number_token3] = ACTIONS(2211), - [aux_sym__val_number_token4] = ACTIONS(2209), - [aux_sym__val_number_token5] = ACTIONS(2209), - [aux_sym__val_number_token6] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym__str_single_quotes] = ACTIONS(2211), - [sym__str_back_ticks] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2211), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2211), - }, - [584] = { - [sym__expr_parenthesized_immediate] = STATE(7875), - [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_alias] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_let_DASHenv] = ACTIONS(2213), - [anon_sym_mut] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [aux_sym_cmd_identifier_token1] = ACTIONS(2213), - [aux_sym_cmd_identifier_token2] = ACTIONS(2215), - [aux_sym_cmd_identifier_token3] = ACTIONS(2215), - [aux_sym_cmd_identifier_token4] = ACTIONS(2215), - [aux_sym_cmd_identifier_token5] = ACTIONS(2215), - [aux_sym_cmd_identifier_token6] = ACTIONS(2215), - [aux_sym_cmd_identifier_token7] = ACTIONS(2215), - [aux_sym_cmd_identifier_token8] = ACTIONS(2213), - [aux_sym_cmd_identifier_token9] = ACTIONS(2213), - [aux_sym_cmd_identifier_token10] = ACTIONS(2215), - [aux_sym_cmd_identifier_token11] = ACTIONS(2215), - [aux_sym_cmd_identifier_token12] = ACTIONS(2213), - [aux_sym_cmd_identifier_token13] = ACTIONS(2213), - [aux_sym_cmd_identifier_token14] = ACTIONS(2213), - [aux_sym_cmd_identifier_token15] = ACTIONS(2213), - [aux_sym_cmd_identifier_token16] = ACTIONS(2215), - [aux_sym_cmd_identifier_token17] = ACTIONS(2215), - [aux_sym_cmd_identifier_token18] = ACTIONS(2215), - [aux_sym_cmd_identifier_token19] = ACTIONS(2215), - [aux_sym_cmd_identifier_token20] = ACTIONS(2215), - [aux_sym_cmd_identifier_token21] = ACTIONS(2215), - [aux_sym_cmd_identifier_token22] = ACTIONS(2215), - [aux_sym_cmd_identifier_token23] = ACTIONS(2215), - [aux_sym_cmd_identifier_token24] = ACTIONS(2215), - [aux_sym_cmd_identifier_token25] = ACTIONS(2215), - [aux_sym_cmd_identifier_token26] = ACTIONS(2215), - [aux_sym_cmd_identifier_token27] = ACTIONS(2215), - [aux_sym_cmd_identifier_token28] = ACTIONS(2215), - [aux_sym_cmd_identifier_token29] = ACTIONS(2215), - [aux_sym_cmd_identifier_token30] = ACTIONS(2215), - [aux_sym_cmd_identifier_token31] = ACTIONS(2215), - [aux_sym_cmd_identifier_token32] = ACTIONS(2215), - [aux_sym_cmd_identifier_token33] = ACTIONS(2215), - [aux_sym_cmd_identifier_token34] = ACTIONS(2213), - [aux_sym_cmd_identifier_token35] = ACTIONS(2215), - [aux_sym_cmd_identifier_token36] = ACTIONS(2215), - [aux_sym_cmd_identifier_token37] = ACTIONS(2215), - [aux_sym_cmd_identifier_token38] = ACTIONS(2213), - [aux_sym_cmd_identifier_token39] = ACTIONS(2215), - [aux_sym_cmd_identifier_token40] = ACTIONS(2215), - [anon_sym_def] = ACTIONS(2213), - [anon_sym_export_DASHenv] = ACTIONS(2213), - [anon_sym_extern] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_error] = ACTIONS(2213), - [anon_sym_DASH2] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_in2] = ACTIONS(2213), - [anon_sym_loop] = ACTIONS(2213), - [anon_sym_make] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_catch] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_source] = ACTIONS(2213), - [anon_sym_source_DASHenv] = ACTIONS(2213), - [anon_sym_register] = ACTIONS(2213), - [anon_sym_hide] = ACTIONS(2213), - [anon_sym_hide_DASHenv] = ACTIONS(2213), - [anon_sym_overlay] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2215), - [aux_sym__val_number_decimal_token1] = ACTIONS(2213), - [aux_sym__val_number_decimal_token2] = ACTIONS(2215), - [aux_sym__val_number_decimal_token3] = ACTIONS(2215), - [aux_sym__val_number_decimal_token4] = ACTIONS(2215), - [aux_sym__val_number_token1] = ACTIONS(2215), - [aux_sym__val_number_token2] = ACTIONS(2215), - [aux_sym__val_number_token3] = ACTIONS(2215), - [aux_sym__val_number_token4] = ACTIONS(2213), - [aux_sym__val_number_token5] = ACTIONS(2213), - [aux_sym__val_number_token6] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2215), - [sym__str_single_quotes] = ACTIONS(2215), - [sym__str_back_ticks] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2215), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2215), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(1828), - [anon_sym_alias] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_let_DASHenv] = ACTIONS(1828), - [anon_sym_mut] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [aux_sym_cmd_identifier_token1] = ACTIONS(1828), - [aux_sym_cmd_identifier_token2] = ACTIONS(1836), - [aux_sym_cmd_identifier_token3] = ACTIONS(1836), - [aux_sym_cmd_identifier_token4] = ACTIONS(1836), - [aux_sym_cmd_identifier_token5] = ACTIONS(1836), - [aux_sym_cmd_identifier_token6] = ACTIONS(1836), - [aux_sym_cmd_identifier_token7] = ACTIONS(1836), - [aux_sym_cmd_identifier_token8] = ACTIONS(1828), - [aux_sym_cmd_identifier_token9] = ACTIONS(1828), - [aux_sym_cmd_identifier_token10] = ACTIONS(1836), - [aux_sym_cmd_identifier_token11] = ACTIONS(1836), - [aux_sym_cmd_identifier_token12] = ACTIONS(1828), - [aux_sym_cmd_identifier_token13] = ACTIONS(1828), - [aux_sym_cmd_identifier_token14] = ACTIONS(1828), - [aux_sym_cmd_identifier_token15] = ACTIONS(1828), - [aux_sym_cmd_identifier_token16] = ACTIONS(1836), - [aux_sym_cmd_identifier_token17] = ACTIONS(1836), - [aux_sym_cmd_identifier_token18] = ACTIONS(1836), - [aux_sym_cmd_identifier_token19] = ACTIONS(1836), - [aux_sym_cmd_identifier_token20] = ACTIONS(1836), - [aux_sym_cmd_identifier_token21] = ACTIONS(1836), - [aux_sym_cmd_identifier_token22] = ACTIONS(1836), - [aux_sym_cmd_identifier_token23] = ACTIONS(1836), - [aux_sym_cmd_identifier_token24] = ACTIONS(1836), - [aux_sym_cmd_identifier_token25] = ACTIONS(1836), - [aux_sym_cmd_identifier_token26] = ACTIONS(1836), - [aux_sym_cmd_identifier_token27] = ACTIONS(1836), - [aux_sym_cmd_identifier_token28] = ACTIONS(1836), - [aux_sym_cmd_identifier_token29] = ACTIONS(1836), - [aux_sym_cmd_identifier_token30] = ACTIONS(1836), - [aux_sym_cmd_identifier_token31] = ACTIONS(1836), - [aux_sym_cmd_identifier_token32] = ACTIONS(1836), - [aux_sym_cmd_identifier_token33] = ACTIONS(1836), - [aux_sym_cmd_identifier_token34] = ACTIONS(1828), - [aux_sym_cmd_identifier_token35] = ACTIONS(1836), - [aux_sym_cmd_identifier_token36] = ACTIONS(1836), - [aux_sym_cmd_identifier_token37] = ACTIONS(1836), - [aux_sym_cmd_identifier_token38] = ACTIONS(1828), - [aux_sym_cmd_identifier_token39] = ACTIONS(1836), - [aux_sym_cmd_identifier_token40] = ACTIONS(1836), - [anon_sym_def] = ACTIONS(1828), - [anon_sym_export_DASHenv] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_module] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_error] = ACTIONS(1828), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_in2] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_make] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_do] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1828), - [anon_sym_catch] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_source] = ACTIONS(1828), - [anon_sym_source_DASHenv] = ACTIONS(1828), - [anon_sym_register] = ACTIONS(1828), - [anon_sym_hide] = ACTIONS(1828), - [anon_sym_hide_DASHenv] = ACTIONS(1828), - [anon_sym_overlay] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_PLUS2] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1836), - [aux_sym__val_number_decimal_token3] = ACTIONS(1836), - [aux_sym__val_number_decimal_token4] = ACTIONS(1836), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1828), - [aux_sym__val_number_token5] = ACTIONS(1828), - [aux_sym__val_number_token6] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__str_single_quotes] = ACTIONS(1836), - [sym__str_back_ticks] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1836), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1836), + [568] = { + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1820), + [aux_sym_cmd_identifier_token3] = ACTIONS(1820), + [aux_sym_cmd_identifier_token4] = ACTIONS(1820), + [aux_sym_cmd_identifier_token5] = ACTIONS(1820), + [aux_sym_cmd_identifier_token6] = ACTIONS(1820), + [aux_sym_cmd_identifier_token7] = ACTIONS(1820), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1820), + [aux_sym_cmd_identifier_token11] = ACTIONS(1820), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1820), + [aux_sym_cmd_identifier_token17] = ACTIONS(1820), + [aux_sym_cmd_identifier_token18] = ACTIONS(1820), + [aux_sym_cmd_identifier_token19] = ACTIONS(1820), + [aux_sym_cmd_identifier_token20] = ACTIONS(1820), + [aux_sym_cmd_identifier_token21] = ACTIONS(1820), + [aux_sym_cmd_identifier_token22] = ACTIONS(1820), + [aux_sym_cmd_identifier_token23] = ACTIONS(1820), + [aux_sym_cmd_identifier_token24] = ACTIONS(1820), + [aux_sym_cmd_identifier_token25] = ACTIONS(1820), + [aux_sym_cmd_identifier_token26] = ACTIONS(1820), + [aux_sym_cmd_identifier_token27] = ACTIONS(1820), + [aux_sym_cmd_identifier_token28] = ACTIONS(1820), + [aux_sym_cmd_identifier_token29] = ACTIONS(1820), + [aux_sym_cmd_identifier_token30] = ACTIONS(1820), + [aux_sym_cmd_identifier_token31] = ACTIONS(1820), + [aux_sym_cmd_identifier_token32] = ACTIONS(1820), + [aux_sym_cmd_identifier_token33] = ACTIONS(1820), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1820), + [aux_sym_cmd_identifier_token36] = ACTIONS(1820), + [aux_sym_cmd_identifier_token37] = ACTIONS(1820), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1820), + [aux_sym_cmd_identifier_token40] = ACTIONS(1820), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), }, - [586] = { - [sym__expr_parenthesized_immediate] = STATE(7875), - [sym_comment] = STATE(586), - [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(1697), - [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), + [569] = { + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(2310), + [aux_sym__immediate_decimal_token2] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2272), + [sym_raw_string_begin] = ACTIONS(1773), }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1695), - [anon_sym_alias] = ACTIONS(1695), - [anon_sym_let] = ACTIONS(1695), - [anon_sym_let_DASHenv] = ACTIONS(1695), - [anon_sym_mut] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [aux_sym_cmd_identifier_token1] = ACTIONS(1695), - [aux_sym_cmd_identifier_token2] = ACTIONS(1695), - [aux_sym_cmd_identifier_token3] = ACTIONS(1695), - [aux_sym_cmd_identifier_token4] = ACTIONS(1695), - [aux_sym_cmd_identifier_token5] = ACTIONS(1695), - [aux_sym_cmd_identifier_token6] = ACTIONS(1695), - [aux_sym_cmd_identifier_token7] = ACTIONS(1695), - [aux_sym_cmd_identifier_token8] = ACTIONS(1695), - [aux_sym_cmd_identifier_token9] = ACTIONS(1695), - [aux_sym_cmd_identifier_token10] = ACTIONS(1695), - [aux_sym_cmd_identifier_token11] = ACTIONS(1695), - [aux_sym_cmd_identifier_token12] = ACTIONS(1695), - [aux_sym_cmd_identifier_token13] = ACTIONS(1695), - [aux_sym_cmd_identifier_token14] = ACTIONS(1695), - [aux_sym_cmd_identifier_token15] = ACTIONS(1695), - [aux_sym_cmd_identifier_token16] = ACTIONS(1695), - [aux_sym_cmd_identifier_token17] = ACTIONS(1695), - [aux_sym_cmd_identifier_token18] = ACTIONS(1695), - [aux_sym_cmd_identifier_token19] = ACTIONS(1695), - [aux_sym_cmd_identifier_token20] = ACTIONS(1695), - [aux_sym_cmd_identifier_token21] = ACTIONS(1695), - [aux_sym_cmd_identifier_token22] = ACTIONS(1695), - [aux_sym_cmd_identifier_token23] = ACTIONS(1695), - [aux_sym_cmd_identifier_token24] = ACTIONS(1695), - [aux_sym_cmd_identifier_token25] = ACTIONS(1695), - [aux_sym_cmd_identifier_token26] = ACTIONS(1695), - [aux_sym_cmd_identifier_token27] = ACTIONS(1695), - [aux_sym_cmd_identifier_token28] = ACTIONS(1695), - [aux_sym_cmd_identifier_token29] = ACTIONS(1695), - [aux_sym_cmd_identifier_token30] = ACTIONS(1695), - [aux_sym_cmd_identifier_token31] = ACTIONS(1695), - [aux_sym_cmd_identifier_token32] = ACTIONS(1695), - [aux_sym_cmd_identifier_token33] = ACTIONS(1695), - [aux_sym_cmd_identifier_token34] = ACTIONS(1695), - [aux_sym_cmd_identifier_token35] = ACTIONS(1695), - [aux_sym_cmd_identifier_token36] = ACTIONS(1695), - [aux_sym_cmd_identifier_token37] = ACTIONS(1695), - [aux_sym_cmd_identifier_token38] = ACTIONS(1695), - [aux_sym_cmd_identifier_token39] = ACTIONS(1695), - [aux_sym_cmd_identifier_token40] = ACTIONS(1695), - [anon_sym_def] = ACTIONS(1695), - [anon_sym_export_DASHenv] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_module] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_error] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_loop] = ACTIONS(1695), - [anon_sym_make] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_catch] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_source] = ACTIONS(1695), - [anon_sym_source_DASHenv] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_hide] = ACTIONS(1695), - [anon_sym_hide_DASHenv] = ACTIONS(1695), - [anon_sym_overlay] = ACTIONS(1695), - [anon_sym_as] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1695), - [aux_sym__val_number_decimal_token3] = ACTIONS(1695), - [aux_sym__val_number_decimal_token4] = ACTIONS(1695), - [aux_sym__val_number_token1] = ACTIONS(1695), - [aux_sym__val_number_token2] = ACTIONS(1695), - [aux_sym__val_number_token3] = ACTIONS(1695), - [aux_sym__val_number_token4] = ACTIONS(1695), - [aux_sym__val_number_token5] = ACTIONS(1695), - [aux_sym__val_number_token6] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym__str_single_quotes] = ACTIONS(1695), - [sym__str_back_ticks] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), - [sym__entry_separator] = ACTIONS(1707), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1707), + [570] = { + [sym_comment] = STATE(570), + [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(1838), + [aux_sym_cmd_identifier_token3] = ACTIONS(1838), + [aux_sym_cmd_identifier_token4] = ACTIONS(1838), + [aux_sym_cmd_identifier_token5] = ACTIONS(1838), + [aux_sym_cmd_identifier_token6] = ACTIONS(1838), + [aux_sym_cmd_identifier_token7] = ACTIONS(1838), + [aux_sym_cmd_identifier_token8] = ACTIONS(1830), + [aux_sym_cmd_identifier_token9] = ACTIONS(1830), + [aux_sym_cmd_identifier_token10] = ACTIONS(1838), + [aux_sym_cmd_identifier_token11] = ACTIONS(1838), + [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(1838), + [aux_sym_cmd_identifier_token17] = ACTIONS(1838), + [aux_sym_cmd_identifier_token18] = ACTIONS(1838), + [aux_sym_cmd_identifier_token19] = ACTIONS(1838), + [aux_sym_cmd_identifier_token20] = ACTIONS(1838), + [aux_sym_cmd_identifier_token21] = ACTIONS(1838), + [aux_sym_cmd_identifier_token22] = ACTIONS(1838), + [aux_sym_cmd_identifier_token23] = ACTIONS(1838), + [aux_sym_cmd_identifier_token24] = ACTIONS(1838), + [aux_sym_cmd_identifier_token25] = ACTIONS(1838), + [aux_sym_cmd_identifier_token26] = ACTIONS(1838), + [aux_sym_cmd_identifier_token27] = ACTIONS(1838), + [aux_sym_cmd_identifier_token28] = ACTIONS(1838), + [aux_sym_cmd_identifier_token29] = ACTIONS(1838), + [aux_sym_cmd_identifier_token30] = ACTIONS(1838), + [aux_sym_cmd_identifier_token31] = ACTIONS(1838), + [aux_sym_cmd_identifier_token32] = ACTIONS(1838), + [aux_sym_cmd_identifier_token33] = ACTIONS(1838), + [aux_sym_cmd_identifier_token34] = ACTIONS(1830), + [aux_sym_cmd_identifier_token35] = ACTIONS(1838), + [aux_sym_cmd_identifier_token36] = ACTIONS(1838), + [aux_sym_cmd_identifier_token37] = ACTIONS(1838), + [aux_sym_cmd_identifier_token38] = ACTIONS(1830), + [aux_sym_cmd_identifier_token39] = ACTIONS(1838), + [aux_sym_cmd_identifier_token40] = ACTIONS(1838), + [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_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1838), + [anon_sym_error] = ACTIONS(1830), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_in2] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_make] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_catch] = 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_as] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_PLUS2] = ACTIONS(1830), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [aux_sym__val_number_token4] = ACTIONS(1830), + [aux_sym__val_number_token5] = ACTIONS(1830), + [aux_sym__val_number_token6] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1838), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1838), }, - [588] = { - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2339), - [anon_sym_alias] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_let_DASHenv] = ACTIONS(2339), - [anon_sym_mut] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [aux_sym_cmd_identifier_token1] = ACTIONS(2339), - [aux_sym_cmd_identifier_token2] = ACTIONS(2339), - [aux_sym_cmd_identifier_token3] = ACTIONS(2339), - [aux_sym_cmd_identifier_token4] = ACTIONS(2339), - [aux_sym_cmd_identifier_token5] = ACTIONS(2339), - [aux_sym_cmd_identifier_token6] = ACTIONS(2339), - [aux_sym_cmd_identifier_token7] = ACTIONS(2339), - [aux_sym_cmd_identifier_token8] = ACTIONS(2339), - [aux_sym_cmd_identifier_token9] = ACTIONS(2339), - [aux_sym_cmd_identifier_token10] = ACTIONS(2339), - [aux_sym_cmd_identifier_token11] = ACTIONS(2339), - [aux_sym_cmd_identifier_token12] = ACTIONS(2339), - [aux_sym_cmd_identifier_token13] = ACTIONS(2339), - [aux_sym_cmd_identifier_token14] = ACTIONS(2339), - [aux_sym_cmd_identifier_token15] = ACTIONS(2339), - [aux_sym_cmd_identifier_token16] = ACTIONS(2339), - [aux_sym_cmd_identifier_token17] = ACTIONS(2339), - [aux_sym_cmd_identifier_token18] = ACTIONS(2339), - [aux_sym_cmd_identifier_token19] = ACTIONS(2339), - [aux_sym_cmd_identifier_token20] = ACTIONS(2339), - [aux_sym_cmd_identifier_token21] = ACTIONS(2339), - [aux_sym_cmd_identifier_token22] = ACTIONS(2339), - [aux_sym_cmd_identifier_token23] = ACTIONS(2339), - [aux_sym_cmd_identifier_token24] = ACTIONS(2339), - [aux_sym_cmd_identifier_token25] = ACTIONS(2339), - [aux_sym_cmd_identifier_token26] = ACTIONS(2339), - [aux_sym_cmd_identifier_token27] = ACTIONS(2339), - [aux_sym_cmd_identifier_token28] = ACTIONS(2339), - [aux_sym_cmd_identifier_token29] = ACTIONS(2339), - [aux_sym_cmd_identifier_token30] = ACTIONS(2339), - [aux_sym_cmd_identifier_token31] = ACTIONS(2339), - [aux_sym_cmd_identifier_token32] = ACTIONS(2339), - [aux_sym_cmd_identifier_token33] = ACTIONS(2339), - [aux_sym_cmd_identifier_token34] = ACTIONS(2339), - [aux_sym_cmd_identifier_token35] = ACTIONS(2339), - [aux_sym_cmd_identifier_token36] = ACTIONS(2339), - [aux_sym_cmd_identifier_token37] = ACTIONS(2339), - [aux_sym_cmd_identifier_token38] = ACTIONS(2339), - [aux_sym_cmd_identifier_token39] = ACTIONS(2339), - [aux_sym_cmd_identifier_token40] = ACTIONS(2339), - [anon_sym_def] = ACTIONS(2339), - [anon_sym_export_DASHenv] = ACTIONS(2339), - [anon_sym_extern] = ACTIONS(2339), - [anon_sym_module] = ACTIONS(2339), - [anon_sym_use] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2339), - [anon_sym_error] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_in2] = ACTIONS(2339), - [anon_sym_loop] = ACTIONS(2339), - [anon_sym_make] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_do] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_else] = ACTIONS(2339), - [anon_sym_match] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2339), - [anon_sym_catch] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_source] = ACTIONS(2339), - [anon_sym_source_DASHenv] = ACTIONS(2339), - [anon_sym_register] = ACTIONS(2339), - [anon_sym_hide] = ACTIONS(2339), - [anon_sym_hide_DASHenv] = ACTIONS(2339), - [anon_sym_overlay] = ACTIONS(2339), - [anon_sym_as] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(2341), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2339), - [aux_sym__val_number_decimal_token1] = ACTIONS(2339), - [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), - [aux_sym__val_number_token4] = ACTIONS(2339), - [aux_sym__val_number_token5] = ACTIONS(2339), - [aux_sym__val_number_token6] = 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), - [sym__entry_separator] = ACTIONS(2341), + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [aux_sym__immediate_decimal_token2] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2341), + [sym_raw_string_begin] = ACTIONS(1781), }, - [589] = { - [sym_comment] = STATE(589), - [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_LPAREN2] = ACTIONS(2345), - [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), + [572] = { + [sym_comment] = STATE(572), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [aux_sym__immediate_decimal_token2] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2345), + [sym_raw_string_begin] = ACTIONS(1801), }, - [590] = { - [sym_comment] = STATE(590), - [aux_sym__multiple_types_repeat1] = STATE(568), - [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(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(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(2308), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2351), + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_alias] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_let_DASHenv] = ACTIONS(2292), + [anon_sym_mut] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [aux_sym_cmd_identifier_token1] = ACTIONS(2292), + [aux_sym_cmd_identifier_token2] = ACTIONS(2294), + [aux_sym_cmd_identifier_token3] = ACTIONS(2294), + [aux_sym_cmd_identifier_token4] = ACTIONS(2294), + [aux_sym_cmd_identifier_token5] = ACTIONS(2294), + [aux_sym_cmd_identifier_token6] = ACTIONS(2294), + [aux_sym_cmd_identifier_token7] = ACTIONS(2294), + [aux_sym_cmd_identifier_token8] = ACTIONS(2292), + [aux_sym_cmd_identifier_token9] = ACTIONS(2292), + [aux_sym_cmd_identifier_token10] = ACTIONS(2294), + [aux_sym_cmd_identifier_token11] = ACTIONS(2294), + [aux_sym_cmd_identifier_token12] = ACTIONS(2292), + [aux_sym_cmd_identifier_token13] = ACTIONS(2292), + [aux_sym_cmd_identifier_token14] = ACTIONS(2292), + [aux_sym_cmd_identifier_token15] = ACTIONS(2292), + [aux_sym_cmd_identifier_token16] = ACTIONS(2294), + [aux_sym_cmd_identifier_token17] = ACTIONS(2294), + [aux_sym_cmd_identifier_token18] = ACTIONS(2294), + [aux_sym_cmd_identifier_token19] = ACTIONS(2294), + [aux_sym_cmd_identifier_token20] = ACTIONS(2294), + [aux_sym_cmd_identifier_token21] = ACTIONS(2294), + [aux_sym_cmd_identifier_token22] = ACTIONS(2294), + [aux_sym_cmd_identifier_token23] = ACTIONS(2294), + [aux_sym_cmd_identifier_token24] = ACTIONS(2294), + [aux_sym_cmd_identifier_token25] = ACTIONS(2294), + [aux_sym_cmd_identifier_token26] = ACTIONS(2294), + [aux_sym_cmd_identifier_token27] = ACTIONS(2294), + [aux_sym_cmd_identifier_token28] = ACTIONS(2294), + [aux_sym_cmd_identifier_token29] = ACTIONS(2294), + [aux_sym_cmd_identifier_token30] = ACTIONS(2294), + [aux_sym_cmd_identifier_token31] = ACTIONS(2294), + [aux_sym_cmd_identifier_token32] = ACTIONS(2294), + [aux_sym_cmd_identifier_token33] = ACTIONS(2294), + [aux_sym_cmd_identifier_token34] = ACTIONS(2292), + [aux_sym_cmd_identifier_token35] = ACTIONS(2294), + [aux_sym_cmd_identifier_token36] = ACTIONS(2294), + [aux_sym_cmd_identifier_token37] = ACTIONS(2294), + [aux_sym_cmd_identifier_token38] = ACTIONS(2292), + [aux_sym_cmd_identifier_token39] = ACTIONS(2294), + [aux_sym_cmd_identifier_token40] = ACTIONS(2294), + [anon_sym_def] = ACTIONS(2292), + [anon_sym_export_DASHenv] = ACTIONS(2292), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_use] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [anon_sym_error] = ACTIONS(2292), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_in2] = ACTIONS(2292), + [anon_sym_loop] = ACTIONS(2292), + [anon_sym_make] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_match] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_catch] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_source] = ACTIONS(2292), + [anon_sym_source_DASHenv] = ACTIONS(2292), + [anon_sym_register] = ACTIONS(2292), + [anon_sym_hide] = ACTIONS(2292), + [anon_sym_hide_DASHenv] = ACTIONS(2292), + [anon_sym_overlay] = ACTIONS(2292), + [anon_sym_as] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), + [aux_sym__val_number_decimal_token1] = ACTIONS(2292), + [aux_sym__val_number_decimal_token2] = ACTIONS(2294), + [aux_sym__val_number_decimal_token3] = ACTIONS(2294), + [aux_sym__val_number_decimal_token4] = ACTIONS(2294), + [aux_sym__val_number_token1] = ACTIONS(2294), + [aux_sym__val_number_token2] = ACTIONS(2294), + [aux_sym__val_number_token3] = ACTIONS(2294), + [aux_sym__val_number_token4] = ACTIONS(2292), + [aux_sym__val_number_token5] = ACTIONS(2292), + [aux_sym__val_number_token6] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2294), + [sym__str_single_quotes] = ACTIONS(2294), + [sym__str_back_ticks] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2294), }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [aux_sym_cmd_identifier_token37] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_COMMA] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [aux_sym__val_number_token4] = ACTIONS(1056), - [aux_sym__val_number_token5] = ACTIONS(1056), - [aux_sym__val_number_token6] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [aux_sym_record_entry_token1] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1058), + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(1840), + [anon_sym_alias] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_let_DASHenv] = ACTIONS(1840), + [anon_sym_mut] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [aux_sym_cmd_identifier_token1] = ACTIONS(1840), + [aux_sym_cmd_identifier_token2] = ACTIONS(1848), + [aux_sym_cmd_identifier_token3] = ACTIONS(1848), + [aux_sym_cmd_identifier_token4] = ACTIONS(1848), + [aux_sym_cmd_identifier_token5] = ACTIONS(1848), + [aux_sym_cmd_identifier_token6] = ACTIONS(1848), + [aux_sym_cmd_identifier_token7] = ACTIONS(1848), + [aux_sym_cmd_identifier_token8] = ACTIONS(1840), + [aux_sym_cmd_identifier_token9] = ACTIONS(1840), + [aux_sym_cmd_identifier_token10] = ACTIONS(1848), + [aux_sym_cmd_identifier_token11] = ACTIONS(1848), + [aux_sym_cmd_identifier_token12] = ACTIONS(1840), + [aux_sym_cmd_identifier_token13] = ACTIONS(1840), + [aux_sym_cmd_identifier_token14] = ACTIONS(1840), + [aux_sym_cmd_identifier_token15] = ACTIONS(1840), + [aux_sym_cmd_identifier_token16] = ACTIONS(1848), + [aux_sym_cmd_identifier_token17] = ACTIONS(1848), + [aux_sym_cmd_identifier_token18] = ACTIONS(1848), + [aux_sym_cmd_identifier_token19] = ACTIONS(1848), + [aux_sym_cmd_identifier_token20] = ACTIONS(1848), + [aux_sym_cmd_identifier_token21] = ACTIONS(1848), + [aux_sym_cmd_identifier_token22] = ACTIONS(1848), + [aux_sym_cmd_identifier_token23] = ACTIONS(1848), + [aux_sym_cmd_identifier_token24] = ACTIONS(1848), + [aux_sym_cmd_identifier_token25] = ACTIONS(1848), + [aux_sym_cmd_identifier_token26] = ACTIONS(1848), + [aux_sym_cmd_identifier_token27] = ACTIONS(1848), + [aux_sym_cmd_identifier_token28] = ACTIONS(1848), + [aux_sym_cmd_identifier_token29] = ACTIONS(1848), + [aux_sym_cmd_identifier_token30] = ACTIONS(1848), + [aux_sym_cmd_identifier_token31] = ACTIONS(1848), + [aux_sym_cmd_identifier_token32] = ACTIONS(1848), + [aux_sym_cmd_identifier_token33] = ACTIONS(1848), + [aux_sym_cmd_identifier_token34] = ACTIONS(1840), + [aux_sym_cmd_identifier_token35] = ACTIONS(1848), + [aux_sym_cmd_identifier_token36] = ACTIONS(1848), + [aux_sym_cmd_identifier_token37] = ACTIONS(1848), + [aux_sym_cmd_identifier_token38] = ACTIONS(1840), + [aux_sym_cmd_identifier_token39] = ACTIONS(1848), + [aux_sym_cmd_identifier_token40] = ACTIONS(1848), + [anon_sym_def] = ACTIONS(1840), + [anon_sym_export_DASHenv] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_module] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_error] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_in2] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_make] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_else] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1840), + [anon_sym_catch] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_source] = ACTIONS(1840), + [anon_sym_source_DASHenv] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_hide] = ACTIONS(1840), + [anon_sym_hide_DASHenv] = ACTIONS(1840), + [anon_sym_overlay] = ACTIONS(1840), + [anon_sym_as] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1840), + [aux_sym__val_number_token5] = ACTIONS(1840), + [aux_sym__val_number_token6] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1848), }, - [592] = { - [sym_comment] = STATE(592), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in2] = 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_as] = ACTIONS(1038), - [anon_sym_LPAREN2] = ACTIONS(2266), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LPAREN] = 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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = ACTIONS(1038), - [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__unquoted_in_record_token4] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(2316), + [aux_sym__immediate_decimal_token2] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, - [593] = { - [sym_comment] = STATE(593), - [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(2353), - [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), + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(2266), + [anon_sym_alias] = ACTIONS(2266), + [anon_sym_let] = ACTIONS(2266), + [anon_sym_let_DASHenv] = ACTIONS(2266), + [anon_sym_mut] = ACTIONS(2266), + [anon_sym_const] = ACTIONS(2266), + [aux_sym_cmd_identifier_token1] = ACTIONS(2266), + [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(2266), + [aux_sym_cmd_identifier_token9] = ACTIONS(2266), + [aux_sym_cmd_identifier_token10] = ACTIONS(2270), + [aux_sym_cmd_identifier_token11] = ACTIONS(2270), + [aux_sym_cmd_identifier_token12] = ACTIONS(2266), + [aux_sym_cmd_identifier_token13] = ACTIONS(2266), + [aux_sym_cmd_identifier_token14] = ACTIONS(2266), + [aux_sym_cmd_identifier_token15] = ACTIONS(2266), + [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(2266), + [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(2266), + [aux_sym_cmd_identifier_token39] = ACTIONS(2270), + [aux_sym_cmd_identifier_token40] = ACTIONS(2270), + [anon_sym_def] = ACTIONS(2266), + [anon_sym_export_DASHenv] = ACTIONS(2266), + [anon_sym_extern] = ACTIONS(2266), + [anon_sym_module] = ACTIONS(2266), + [anon_sym_use] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2270), + [anon_sym_error] = ACTIONS(2266), + [anon_sym_DASH2] = ACTIONS(2266), + [anon_sym_break] = ACTIONS(2266), + [anon_sym_continue] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2266), + [anon_sym_in2] = ACTIONS(2266), + [anon_sym_loop] = ACTIONS(2266), + [anon_sym_make] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_if] = ACTIONS(2266), + [anon_sym_else] = ACTIONS(2266), + [anon_sym_match] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2266), + [anon_sym_catch] = ACTIONS(2266), + [anon_sym_return] = ACTIONS(2266), + [anon_sym_source] = ACTIONS(2266), + [anon_sym_source_DASHenv] = ACTIONS(2266), + [anon_sym_register] = ACTIONS(2266), + [anon_sym_hide] = ACTIONS(2266), + [anon_sym_hide_DASHenv] = ACTIONS(2266), + [anon_sym_overlay] = ACTIONS(2266), + [anon_sym_as] = ACTIONS(2266), + [anon_sym_LPAREN2] = ACTIONS(2268), + [anon_sym_PLUS2] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2270), + [aux_sym__val_number_decimal_token1] = ACTIONS(2266), + [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(2266), + [aux_sym__val_number_token5] = ACTIONS(2266), + [aux_sym__val_number_token6] = ACTIONS(2266), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [sym_raw_string_begin] = ACTIONS(2270), }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(1012), - [anon_sym_alias] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_let_DASHenv] = ACTIONS(1012), - [anon_sym_mut] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [aux_sym_cmd_identifier_token1] = ACTIONS(1012), - [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(1012), - [aux_sym_cmd_identifier_token9] = ACTIONS(1012), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1012), - [aux_sym_cmd_identifier_token13] = ACTIONS(1012), - [aux_sym_cmd_identifier_token14] = ACTIONS(1012), - [aux_sym_cmd_identifier_token15] = ACTIONS(1012), - [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(1012), - [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(1012), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1012), - [anon_sym_export_DASHenv] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym_module] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_make] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_do] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_else] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1012), - [anon_sym_catch] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_source] = ACTIONS(1012), - [anon_sym_source_DASHenv] = ACTIONS(1012), - [anon_sym_register] = ACTIONS(1012), - [anon_sym_hide] = ACTIONS(1012), - [anon_sym_hide_DASHenv] = ACTIONS(1012), - [anon_sym_overlay] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(2355), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), + [577] = { + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_alias] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_let_DASHenv] = ACTIONS(2226), + [anon_sym_mut] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [aux_sym_cmd_identifier_token1] = ACTIONS(2226), + [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(2226), + [aux_sym_cmd_identifier_token9] = ACTIONS(2226), + [aux_sym_cmd_identifier_token10] = ACTIONS(2230), + [aux_sym_cmd_identifier_token11] = ACTIONS(2230), + [aux_sym_cmd_identifier_token12] = ACTIONS(2226), + [aux_sym_cmd_identifier_token13] = ACTIONS(2226), + [aux_sym_cmd_identifier_token14] = ACTIONS(2226), + [aux_sym_cmd_identifier_token15] = ACTIONS(2226), + [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(2226), + [aux_sym_cmd_identifier_token35] = ACTIONS(2230), + [aux_sym_cmd_identifier_token36] = ACTIONS(2230), + [aux_sym_cmd_identifier_token37] = ACTIONS(2230), + [aux_sym_cmd_identifier_token38] = ACTIONS(2226), + [aux_sym_cmd_identifier_token39] = ACTIONS(2230), + [aux_sym_cmd_identifier_token40] = ACTIONS(2230), + [anon_sym_def] = ACTIONS(2226), + [anon_sym_export_DASHenv] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_error] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_in2] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_make] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_catch] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_source] = ACTIONS(2226), + [anon_sym_source_DASHenv] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_hide] = ACTIONS(2226), + [anon_sym_hide_DASHenv] = ACTIONS(2226), + [anon_sym_overlay] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [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), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [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), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2230), }, - [595] = { - [sym_comment] = STATE(595), - [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(2286), - [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(2284), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [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(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2288), + [578] = { + [sym_comment] = STATE(578), + [aux_sym__multiple_types_repeat1] = STATE(597), + [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(2322), + [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(2324), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2286), + [sym_raw_string_begin] = ACTIONS(2326), }, - [596] = { - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(2290), - [anon_sym_alias] = ACTIONS(2290), - [anon_sym_let] = ACTIONS(2290), - [anon_sym_let_DASHenv] = ACTIONS(2290), - [anon_sym_mut] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [aux_sym_cmd_identifier_token1] = ACTIONS(2290), - [aux_sym_cmd_identifier_token2] = ACTIONS(2290), - [aux_sym_cmd_identifier_token3] = ACTIONS(2290), - [aux_sym_cmd_identifier_token4] = ACTIONS(2290), - [aux_sym_cmd_identifier_token5] = ACTIONS(2290), - [aux_sym_cmd_identifier_token6] = ACTIONS(2290), - [aux_sym_cmd_identifier_token7] = ACTIONS(2290), - [aux_sym_cmd_identifier_token8] = ACTIONS(2290), - [aux_sym_cmd_identifier_token9] = ACTIONS(2290), - [aux_sym_cmd_identifier_token10] = ACTIONS(2290), - [aux_sym_cmd_identifier_token11] = ACTIONS(2290), - [aux_sym_cmd_identifier_token12] = ACTIONS(2290), - [aux_sym_cmd_identifier_token13] = ACTIONS(2290), - [aux_sym_cmd_identifier_token14] = ACTIONS(2290), - [aux_sym_cmd_identifier_token15] = ACTIONS(2290), - [aux_sym_cmd_identifier_token16] = ACTIONS(2290), - [aux_sym_cmd_identifier_token17] = ACTIONS(2290), - [aux_sym_cmd_identifier_token18] = ACTIONS(2290), - [aux_sym_cmd_identifier_token19] = ACTIONS(2290), - [aux_sym_cmd_identifier_token20] = ACTIONS(2290), - [aux_sym_cmd_identifier_token21] = ACTIONS(2290), - [aux_sym_cmd_identifier_token22] = ACTIONS(2290), - [aux_sym_cmd_identifier_token23] = ACTIONS(2290), - [aux_sym_cmd_identifier_token24] = ACTIONS(2290), - [aux_sym_cmd_identifier_token25] = ACTIONS(2290), - [aux_sym_cmd_identifier_token26] = ACTIONS(2290), - [aux_sym_cmd_identifier_token27] = ACTIONS(2290), - [aux_sym_cmd_identifier_token28] = ACTIONS(2290), - [aux_sym_cmd_identifier_token29] = ACTIONS(2290), - [aux_sym_cmd_identifier_token30] = ACTIONS(2290), - [aux_sym_cmd_identifier_token31] = ACTIONS(2290), - [aux_sym_cmd_identifier_token32] = ACTIONS(2290), - [aux_sym_cmd_identifier_token33] = ACTIONS(2290), - [aux_sym_cmd_identifier_token34] = ACTIONS(2290), - [aux_sym_cmd_identifier_token35] = ACTIONS(2290), - [aux_sym_cmd_identifier_token36] = ACTIONS(2290), - [aux_sym_cmd_identifier_token37] = ACTIONS(2290), - [aux_sym_cmd_identifier_token38] = ACTIONS(2290), - [aux_sym_cmd_identifier_token39] = ACTIONS(2290), - [aux_sym_cmd_identifier_token40] = ACTIONS(2290), - [anon_sym_def] = ACTIONS(2290), - [anon_sym_export_DASHenv] = ACTIONS(2290), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_module] = ACTIONS(2290), - [anon_sym_use] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_error] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_break] = ACTIONS(2290), - [anon_sym_continue] = ACTIONS(2290), - [anon_sym_for] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_loop] = ACTIONS(2290), - [anon_sym_make] = ACTIONS(2290), - [anon_sym_while] = ACTIONS(2290), - [anon_sym_do] = ACTIONS(2290), - [anon_sym_if] = ACTIONS(2290), - [anon_sym_else] = ACTIONS(2290), - [anon_sym_match] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2290), - [anon_sym_catch] = ACTIONS(2290), - [anon_sym_return] = ACTIONS(2290), - [anon_sym_source] = ACTIONS(2290), - [anon_sym_source_DASHenv] = ACTIONS(2290), - [anon_sym_register] = ACTIONS(2290), - [anon_sym_hide] = ACTIONS(2290), - [anon_sym_hide_DASHenv] = ACTIONS(2290), - [anon_sym_overlay] = ACTIONS(2290), - [anon_sym_as] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2290), - [aux_sym__val_number_decimal_token1] = ACTIONS(2290), - [aux_sym__val_number_decimal_token2] = ACTIONS(2290), - [aux_sym__val_number_decimal_token3] = ACTIONS(2290), - [aux_sym__val_number_decimal_token4] = ACTIONS(2290), - [aux_sym__val_number_token1] = ACTIONS(2290), - [aux_sym__val_number_token2] = ACTIONS(2290), - [aux_sym__val_number_token3] = ACTIONS(2290), - [aux_sym__val_number_token4] = ACTIONS(2290), - [aux_sym__val_number_token5] = ACTIONS(2290), - [aux_sym__val_number_token6] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2296), + [579] = { + [sym_comment] = STATE(579), + [aux_sym__multiple_types_repeat1] = STATE(597), + [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(2328), + [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(2324), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), + [sym_raw_string_begin] = ACTIONS(2326), }, - [597] = { - [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(2298), - [anon_sym_alias] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_let_DASHenv] = ACTIONS(2298), - [anon_sym_mut] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [aux_sym_cmd_identifier_token1] = ACTIONS(2298), - [aux_sym_cmd_identifier_token2] = ACTIONS(2298), - [aux_sym_cmd_identifier_token3] = ACTIONS(2298), - [aux_sym_cmd_identifier_token4] = ACTIONS(2298), - [aux_sym_cmd_identifier_token5] = ACTIONS(2298), - [aux_sym_cmd_identifier_token6] = ACTIONS(2298), - [aux_sym_cmd_identifier_token7] = ACTIONS(2298), - [aux_sym_cmd_identifier_token8] = ACTIONS(2298), - [aux_sym_cmd_identifier_token9] = ACTIONS(2298), - [aux_sym_cmd_identifier_token10] = ACTIONS(2298), - [aux_sym_cmd_identifier_token11] = ACTIONS(2298), - [aux_sym_cmd_identifier_token12] = ACTIONS(2298), - [aux_sym_cmd_identifier_token13] = ACTIONS(2298), - [aux_sym_cmd_identifier_token14] = ACTIONS(2298), - [aux_sym_cmd_identifier_token15] = ACTIONS(2298), - [aux_sym_cmd_identifier_token16] = ACTIONS(2298), - [aux_sym_cmd_identifier_token17] = ACTIONS(2298), - [aux_sym_cmd_identifier_token18] = ACTIONS(2298), - [aux_sym_cmd_identifier_token19] = ACTIONS(2298), - [aux_sym_cmd_identifier_token20] = ACTIONS(2298), - [aux_sym_cmd_identifier_token21] = ACTIONS(2298), - [aux_sym_cmd_identifier_token22] = ACTIONS(2298), - [aux_sym_cmd_identifier_token23] = ACTIONS(2298), - [aux_sym_cmd_identifier_token24] = ACTIONS(2298), - [aux_sym_cmd_identifier_token25] = ACTIONS(2298), - [aux_sym_cmd_identifier_token26] = ACTIONS(2298), - [aux_sym_cmd_identifier_token27] = ACTIONS(2298), - [aux_sym_cmd_identifier_token28] = ACTIONS(2298), - [aux_sym_cmd_identifier_token29] = ACTIONS(2298), - [aux_sym_cmd_identifier_token30] = ACTIONS(2298), - [aux_sym_cmd_identifier_token31] = ACTIONS(2298), - [aux_sym_cmd_identifier_token32] = ACTIONS(2298), - [aux_sym_cmd_identifier_token33] = ACTIONS(2298), - [aux_sym_cmd_identifier_token34] = ACTIONS(2298), - [aux_sym_cmd_identifier_token35] = ACTIONS(2298), - [aux_sym_cmd_identifier_token36] = ACTIONS(2298), - [aux_sym_cmd_identifier_token37] = ACTIONS(2298), - [aux_sym_cmd_identifier_token38] = ACTIONS(2298), - [aux_sym_cmd_identifier_token39] = ACTIONS(2298), - [aux_sym_cmd_identifier_token40] = ACTIONS(2298), - [anon_sym_def] = ACTIONS(2298), - [anon_sym_export_DASHenv] = ACTIONS(2298), - [anon_sym_extern] = ACTIONS(2298), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_use] = ACTIONS(2298), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_error] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_loop] = ACTIONS(2298), - [anon_sym_make] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_do] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_else] = ACTIONS(2298), - [anon_sym_match] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2298), - [anon_sym_catch] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_source] = ACTIONS(2298), - [anon_sym_source_DASHenv] = ACTIONS(2298), - [anon_sym_register] = ACTIONS(2298), - [anon_sym_hide] = ACTIONS(2298), - [anon_sym_hide_DASHenv] = ACTIONS(2298), - [anon_sym_overlay] = ACTIONS(2298), - [anon_sym_as] = ACTIONS(2298), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2298), - [aux_sym__val_number_decimal_token1] = ACTIONS(2298), - [aux_sym__val_number_decimal_token2] = ACTIONS(2298), - [aux_sym__val_number_decimal_token3] = ACTIONS(2298), - [aux_sym__val_number_decimal_token4] = ACTIONS(2298), - [aux_sym__val_number_token1] = ACTIONS(2298), - [aux_sym__val_number_token2] = ACTIONS(2298), - [aux_sym__val_number_token3] = ACTIONS(2298), - [aux_sym__val_number_token4] = ACTIONS(2298), - [aux_sym__val_number_token5] = ACTIONS(2298), - [aux_sym__val_number_token6] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2296), + [580] = { + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [aux_sym_cmd_identifier_token37] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_COMMA] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1052), + [aux_sym__val_number_token5] = ACTIONS(1052), + [aux_sym__val_number_token6] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [aux_sym_record_entry_token1] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1054), + }, + [581] = { + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1026), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_let_DASHenv] = ACTIONS(1026), + [anon_sym_mut] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1026), + [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(1026), + [aux_sym_cmd_identifier_token9] = ACTIONS(1026), + [aux_sym_cmd_identifier_token10] = ACTIONS(1032), + [aux_sym_cmd_identifier_token11] = ACTIONS(1032), + [aux_sym_cmd_identifier_token12] = ACTIONS(1026), + [aux_sym_cmd_identifier_token13] = ACTIONS(1026), + [aux_sym_cmd_identifier_token14] = ACTIONS(1026), + [aux_sym_cmd_identifier_token15] = ACTIONS(1026), + [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(1026), + [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(1026), + [aux_sym_cmd_identifier_token39] = ACTIONS(1032), + [aux_sym_cmd_identifier_token40] = ACTIONS(1032), + [anon_sym_def] = ACTIONS(1026), + [anon_sym_export_DASHenv] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_use] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_COMMA] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_error] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(1026), + [anon_sym_make] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_catch] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_source] = ACTIONS(1026), + [anon_sym_source_DASHenv] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_hide] = ACTIONS(1026), + [anon_sym_hide_DASHenv] = ACTIONS(1026), + [anon_sym_overlay] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [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(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [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_record_entry_token1] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1032), + }, + [582] = { + [sym_comment] = STATE(582), + [aux_sym__multiple_types_repeat1] = STATE(597), + [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(2332), + [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(2324), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), + [sym_raw_string_begin] = ACTIONS(2326), }, - [598] = { - [sym_comment] = STATE(598), - [aux_sym__multiple_types_repeat1] = STATE(575), - [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(2357), - [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(2308), + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2334), + [aux_sym_cmd_identifier_token3] = ACTIONS(2334), + [aux_sym_cmd_identifier_token4] = ACTIONS(2334), + [aux_sym_cmd_identifier_token5] = ACTIONS(2334), + [aux_sym_cmd_identifier_token6] = ACTIONS(2334), + [aux_sym_cmd_identifier_token7] = ACTIONS(2334), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2334), + [aux_sym_cmd_identifier_token11] = ACTIONS(2334), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2334), + [aux_sym_cmd_identifier_token17] = ACTIONS(2334), + [aux_sym_cmd_identifier_token18] = ACTIONS(2334), + [aux_sym_cmd_identifier_token19] = ACTIONS(2334), + [aux_sym_cmd_identifier_token20] = ACTIONS(2334), + [aux_sym_cmd_identifier_token21] = ACTIONS(2334), + [aux_sym_cmd_identifier_token22] = ACTIONS(2334), + [aux_sym_cmd_identifier_token23] = ACTIONS(2334), + [aux_sym_cmd_identifier_token24] = ACTIONS(2334), + [aux_sym_cmd_identifier_token25] = ACTIONS(2334), + [aux_sym_cmd_identifier_token26] = ACTIONS(2334), + [aux_sym_cmd_identifier_token27] = ACTIONS(2334), + [aux_sym_cmd_identifier_token28] = ACTIONS(2334), + [aux_sym_cmd_identifier_token29] = ACTIONS(2334), + [aux_sym_cmd_identifier_token30] = ACTIONS(2334), + [aux_sym_cmd_identifier_token31] = ACTIONS(2334), + [aux_sym_cmd_identifier_token32] = ACTIONS(2334), + [aux_sym_cmd_identifier_token33] = ACTIONS(2334), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2334), + [aux_sym_cmd_identifier_token36] = ACTIONS(2334), + [aux_sym_cmd_identifier_token37] = ACTIONS(2334), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2334), + [aux_sym_cmd_identifier_token40] = ACTIONS(2334), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_LPAREN2] = ACTIONS(2336), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [aux_sym__val_number_decimal_token2] = ACTIONS(2334), + [aux_sym__val_number_decimal_token3] = ACTIONS(2334), + [aux_sym__val_number_decimal_token4] = ACTIONS(2334), + [aux_sym__val_number_token1] = ACTIONS(2334), + [aux_sym__val_number_token2] = ACTIONS(2334), + [aux_sym__val_number_token3] = ACTIONS(2334), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [sym__str_single_quotes] = ACTIONS(2334), + [sym__str_back_ticks] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), + [sym__entry_separator] = ACTIONS(2336), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2310), + [sym_raw_string_begin] = ACTIONS(2336), }, - [599] = { - [sym_comment] = STATE(599), + [584] = { + [sym_comment] = STATE(584), [anon_sym_export] = ACTIONS(1008), [anon_sym_alias] = ACTIONS(1008), [anon_sym_let] = ACTIONS(1008), @@ -147616,7 +148606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1008), [anon_sym_overlay] = ACTIONS(1008), [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), + [anon_sym_QMARK2] = ACTIONS(2338), [anon_sym_PLUS2] = ACTIONS(1008), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), [anon_sym_DOT] = ACTIONS(1008), @@ -147638,8 +148628,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1010), }, - [600] = { - [sym_comment] = STATE(600), + [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(2340), + [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(251), + [sym_raw_string_begin] = ACTIONS(992), + }, + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_alias] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_let_DASHenv] = ACTIONS(2254), + [anon_sym_mut] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [aux_sym_cmd_identifier_token1] = ACTIONS(2254), + [aux_sym_cmd_identifier_token2] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2254), + [aux_sym_cmd_identifier_token4] = ACTIONS(2254), + [aux_sym_cmd_identifier_token5] = ACTIONS(2254), + [aux_sym_cmd_identifier_token6] = ACTIONS(2254), + [aux_sym_cmd_identifier_token7] = ACTIONS(2254), + [aux_sym_cmd_identifier_token8] = ACTIONS(2254), + [aux_sym_cmd_identifier_token9] = ACTIONS(2254), + [aux_sym_cmd_identifier_token10] = ACTIONS(2254), + [aux_sym_cmd_identifier_token11] = ACTIONS(2254), + [aux_sym_cmd_identifier_token12] = ACTIONS(2254), + [aux_sym_cmd_identifier_token13] = ACTIONS(2254), + [aux_sym_cmd_identifier_token14] = ACTIONS(2254), + [aux_sym_cmd_identifier_token15] = ACTIONS(2254), + [aux_sym_cmd_identifier_token16] = ACTIONS(2254), + [aux_sym_cmd_identifier_token17] = ACTIONS(2254), + [aux_sym_cmd_identifier_token18] = ACTIONS(2254), + [aux_sym_cmd_identifier_token19] = ACTIONS(2254), + [aux_sym_cmd_identifier_token20] = ACTIONS(2254), + [aux_sym_cmd_identifier_token21] = ACTIONS(2254), + [aux_sym_cmd_identifier_token22] = ACTIONS(2254), + [aux_sym_cmd_identifier_token23] = ACTIONS(2254), + [aux_sym_cmd_identifier_token24] = ACTIONS(2254), + [aux_sym_cmd_identifier_token25] = ACTIONS(2254), + [aux_sym_cmd_identifier_token26] = ACTIONS(2254), + [aux_sym_cmd_identifier_token27] = ACTIONS(2254), + [aux_sym_cmd_identifier_token28] = ACTIONS(2254), + [aux_sym_cmd_identifier_token29] = ACTIONS(2254), + [aux_sym_cmd_identifier_token30] = ACTIONS(2254), + [aux_sym_cmd_identifier_token31] = ACTIONS(2254), + [aux_sym_cmd_identifier_token32] = ACTIONS(2254), + [aux_sym_cmd_identifier_token33] = ACTIONS(2254), + [aux_sym_cmd_identifier_token34] = ACTIONS(2254), + [aux_sym_cmd_identifier_token35] = ACTIONS(2254), + [aux_sym_cmd_identifier_token36] = ACTIONS(2254), + [aux_sym_cmd_identifier_token37] = ACTIONS(2254), + [aux_sym_cmd_identifier_token38] = ACTIONS(2254), + [aux_sym_cmd_identifier_token39] = ACTIONS(2254), + [aux_sym_cmd_identifier_token40] = ACTIONS(2254), + [anon_sym_def] = ACTIONS(2254), + [anon_sym_export_DASHenv] = ACTIONS(2254), + [anon_sym_extern] = ACTIONS(2254), + [anon_sym_module] = ACTIONS(2254), + [anon_sym_use] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_error] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_loop] = ACTIONS(2254), + [anon_sym_make] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_match] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_catch] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_source] = ACTIONS(2254), + [anon_sym_source_DASHenv] = ACTIONS(2254), + [anon_sym_register] = ACTIONS(2254), + [anon_sym_hide] = ACTIONS(2254), + [anon_sym_hide_DASHenv] = ACTIONS(2254), + [anon_sym_overlay] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2256), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym__str_single_quotes] = ACTIONS(2258), + [sym__str_back_ticks] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2258), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2258), + }, + [587] = { + [sym_comment] = STATE(587), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_alias] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_let_DASHenv] = ACTIONS(2272), + [anon_sym_mut] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [aux_sym_cmd_identifier_token1] = ACTIONS(2272), + [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(2272), + [aux_sym_cmd_identifier_token9] = ACTIONS(2272), + [aux_sym_cmd_identifier_token10] = ACTIONS(2272), + [aux_sym_cmd_identifier_token11] = ACTIONS(2272), + [aux_sym_cmd_identifier_token12] = ACTIONS(2272), + [aux_sym_cmd_identifier_token13] = ACTIONS(2272), + [aux_sym_cmd_identifier_token14] = ACTIONS(2272), + [aux_sym_cmd_identifier_token15] = ACTIONS(2272), + [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(2272), + [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(2272), + [aux_sym_cmd_identifier_token39] = ACTIONS(2272), + [aux_sym_cmd_identifier_token40] = ACTIONS(2272), + [anon_sym_def] = ACTIONS(2272), + [anon_sym_export_DASHenv] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_use] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_error] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_loop] = ACTIONS(2272), + [anon_sym_make] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_match] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_catch] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_source] = ACTIONS(2272), + [anon_sym_source_DASHenv] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_hide] = ACTIONS(2272), + [anon_sym_hide_DASHenv] = ACTIONS(2272), + [anon_sym_overlay] = ACTIONS(2272), + [anon_sym_as] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2274), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [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(2272), + [aux_sym__val_number_token5] = ACTIONS(2272), + [aux_sym__val_number_token6] = ACTIONS(2272), + [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), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2274), + }, + [588] = { + [sym_comment] = STATE(588), + [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), + [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), + [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_DASH2] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_in2] = 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(2238), + [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_as] = ACTIONS(2234), + [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(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), + [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_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2238), + }, + [589] = { + [sym_comment] = STATE(589), + [anon_sym_export] = ACTIONS(1000), + [anon_sym_alias] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_let_DASHenv] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [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(1000), + [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1000), + [aux_sym_cmd_identifier_token13] = ACTIONS(1000), + [aux_sym_cmd_identifier_token14] = ACTIONS(1000), + [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [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(1000), + [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(1000), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1000), + [anon_sym_export_DASHenv] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_use] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_loop] = ACTIONS(1000), + [anon_sym_make] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_source] = ACTIONS(1000), + [anon_sym_source_DASHenv] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_hide_DASHenv] = ACTIONS(1000), + [anon_sym_overlay] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1002), + }, + [590] = { + [sym_comment] = STATE(590), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_let] = ACTIONS(1004), @@ -147739,8 +149234,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1006), }, - [601] = { - [sym_comment] = STATE(601), + [591] = { + [sym_comment] = STATE(591), + [aux_sym__multiple_types_repeat1] = STATE(596), + [anon_sym_export] = ACTIONS(2342), + [anon_sym_alias] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_let_DASHenv] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [aux_sym_cmd_identifier_token1] = ACTIONS(2342), + [aux_sym_cmd_identifier_token2] = ACTIONS(2342), + [aux_sym_cmd_identifier_token3] = ACTIONS(2342), + [aux_sym_cmd_identifier_token4] = ACTIONS(2342), + [aux_sym_cmd_identifier_token5] = ACTIONS(2342), + [aux_sym_cmd_identifier_token6] = ACTIONS(2342), + [aux_sym_cmd_identifier_token7] = ACTIONS(2342), + [aux_sym_cmd_identifier_token8] = ACTIONS(2342), + [aux_sym_cmd_identifier_token9] = ACTIONS(2342), + [aux_sym_cmd_identifier_token10] = ACTIONS(2342), + [aux_sym_cmd_identifier_token11] = ACTIONS(2342), + [aux_sym_cmd_identifier_token12] = ACTIONS(2342), + [aux_sym_cmd_identifier_token13] = ACTIONS(2342), + [aux_sym_cmd_identifier_token14] = ACTIONS(2342), + [aux_sym_cmd_identifier_token15] = ACTIONS(2342), + [aux_sym_cmd_identifier_token16] = ACTIONS(2342), + [aux_sym_cmd_identifier_token17] = ACTIONS(2342), + [aux_sym_cmd_identifier_token18] = ACTIONS(2342), + [aux_sym_cmd_identifier_token19] = ACTIONS(2342), + [aux_sym_cmd_identifier_token20] = ACTIONS(2342), + [aux_sym_cmd_identifier_token21] = ACTIONS(2342), + [aux_sym_cmd_identifier_token22] = ACTIONS(2342), + [aux_sym_cmd_identifier_token23] = ACTIONS(2342), + [aux_sym_cmd_identifier_token24] = ACTIONS(2342), + [aux_sym_cmd_identifier_token25] = ACTIONS(2342), + [aux_sym_cmd_identifier_token26] = ACTIONS(2342), + [aux_sym_cmd_identifier_token27] = ACTIONS(2342), + [aux_sym_cmd_identifier_token28] = ACTIONS(2342), + [aux_sym_cmd_identifier_token29] = ACTIONS(2342), + [aux_sym_cmd_identifier_token30] = ACTIONS(2342), + [aux_sym_cmd_identifier_token31] = ACTIONS(2342), + [aux_sym_cmd_identifier_token32] = ACTIONS(2342), + [aux_sym_cmd_identifier_token33] = ACTIONS(2342), + [aux_sym_cmd_identifier_token34] = ACTIONS(2342), + [aux_sym_cmd_identifier_token35] = ACTIONS(2342), + [aux_sym_cmd_identifier_token36] = ACTIONS(2342), + [aux_sym_cmd_identifier_token37] = ACTIONS(2342), + [aux_sym_cmd_identifier_token38] = ACTIONS(2342), + [aux_sym_cmd_identifier_token39] = ACTIONS(2342), + [aux_sym_cmd_identifier_token40] = ACTIONS(2342), + [anon_sym_def] = ACTIONS(2342), + [anon_sym_export_DASHenv] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_module] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_DOLLAR] = ACTIONS(2342), + [anon_sym_error] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_in2] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_make] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_do] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2342), + [anon_sym_catch] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_source] = ACTIONS(2342), + [anon_sym_source_DASHenv] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_hide] = ACTIONS(2342), + [anon_sym_hide_DASHenv] = ACTIONS(2342), + [anon_sym_overlay] = ACTIONS(2342), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2342), + [aux_sym__val_number_decimal_token1] = ACTIONS(2342), + [aux_sym__val_number_decimal_token2] = ACTIONS(2342), + [aux_sym__val_number_decimal_token3] = ACTIONS(2342), + [aux_sym__val_number_decimal_token4] = ACTIONS(2342), + [aux_sym__val_number_token1] = ACTIONS(2342), + [aux_sym__val_number_token2] = ACTIONS(2342), + [aux_sym__val_number_token3] = ACTIONS(2342), + [aux_sym__val_number_token4] = ACTIONS(2342), + [aux_sym__val_number_token5] = ACTIONS(2342), + [aux_sym__val_number_token6] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [sym__str_single_quotes] = ACTIONS(2342), + [sym__str_back_ticks] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), + [sym__entry_separator] = ACTIONS(2324), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2346), + }, + [592] = { + [sym_comment] = STATE(592), [anon_sym_export] = ACTIONS(996), [anon_sym_alias] = ACTIONS(996), [anon_sym_let] = ACTIONS(996), @@ -147840,513 +149436,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(998), }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [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(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [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(1000), - [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(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [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), + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), + [sym_raw_string_begin] = ACTIONS(988), }, - [603] = { - [sym_comment] = STATE(603), - [aux_sym__multiple_types_repeat1] = STATE(575), - [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(2359), - [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(2308), + [594] = { + [sym_comment] = STATE(594), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_in2] = 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_as] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(2244), + [anon_sym_PLUS2] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2244), + [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), + [aux_sym__val_number_token4] = ACTIONS(2242), + [aux_sym__val_number_token5] = ACTIONS(2242), + [aux_sym__val_number_token6] = ACTIONS(2242), + [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), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2310), + [sym_raw_string_begin] = ACTIONS(2244), }, - [604] = { - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(2247), - [anon_sym_alias] = ACTIONS(2247), - [anon_sym_let] = ACTIONS(2247), - [anon_sym_let_DASHenv] = ACTIONS(2247), - [anon_sym_mut] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [aux_sym_cmd_identifier_token1] = ACTIONS(2247), - [aux_sym_cmd_identifier_token2] = ACTIONS(2247), - [aux_sym_cmd_identifier_token3] = ACTIONS(2247), - [aux_sym_cmd_identifier_token4] = ACTIONS(2247), - [aux_sym_cmd_identifier_token5] = ACTIONS(2247), - [aux_sym_cmd_identifier_token6] = ACTIONS(2247), - [aux_sym_cmd_identifier_token7] = ACTIONS(2247), - [aux_sym_cmd_identifier_token8] = ACTIONS(2247), - [aux_sym_cmd_identifier_token9] = ACTIONS(2247), - [aux_sym_cmd_identifier_token10] = ACTIONS(2247), - [aux_sym_cmd_identifier_token11] = ACTIONS(2247), - [aux_sym_cmd_identifier_token12] = ACTIONS(2247), - [aux_sym_cmd_identifier_token13] = ACTIONS(2247), - [aux_sym_cmd_identifier_token14] = ACTIONS(2247), - [aux_sym_cmd_identifier_token15] = ACTIONS(2247), - [aux_sym_cmd_identifier_token16] = ACTIONS(2247), - [aux_sym_cmd_identifier_token17] = ACTIONS(2247), - [aux_sym_cmd_identifier_token18] = ACTIONS(2247), - [aux_sym_cmd_identifier_token19] = ACTIONS(2247), - [aux_sym_cmd_identifier_token20] = ACTIONS(2247), - [aux_sym_cmd_identifier_token21] = ACTIONS(2247), - [aux_sym_cmd_identifier_token22] = ACTIONS(2247), - [aux_sym_cmd_identifier_token23] = ACTIONS(2247), - [aux_sym_cmd_identifier_token24] = ACTIONS(2247), - [aux_sym_cmd_identifier_token25] = ACTIONS(2247), - [aux_sym_cmd_identifier_token26] = ACTIONS(2247), - [aux_sym_cmd_identifier_token27] = ACTIONS(2247), - [aux_sym_cmd_identifier_token28] = ACTIONS(2247), - [aux_sym_cmd_identifier_token29] = ACTIONS(2247), - [aux_sym_cmd_identifier_token30] = ACTIONS(2247), - [aux_sym_cmd_identifier_token31] = ACTIONS(2247), - [aux_sym_cmd_identifier_token32] = ACTIONS(2247), - [aux_sym_cmd_identifier_token33] = ACTIONS(2247), - [aux_sym_cmd_identifier_token34] = ACTIONS(2247), - [aux_sym_cmd_identifier_token35] = ACTIONS(2247), - [aux_sym_cmd_identifier_token36] = ACTIONS(2247), - [aux_sym_cmd_identifier_token37] = ACTIONS(2247), - [aux_sym_cmd_identifier_token38] = ACTIONS(2247), - [aux_sym_cmd_identifier_token39] = ACTIONS(2247), - [aux_sym_cmd_identifier_token40] = ACTIONS(2247), - [anon_sym_def] = ACTIONS(2247), - [anon_sym_export_DASHenv] = ACTIONS(2247), - [anon_sym_extern] = ACTIONS(2247), - [anon_sym_module] = ACTIONS(2247), - [anon_sym_use] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_error] = ACTIONS(2247), - [anon_sym_DASH2] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_in2] = ACTIONS(2247), - [anon_sym_loop] = ACTIONS(2247), - [anon_sym_make] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [anon_sym_do] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_else] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2247), - [anon_sym_catch] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_source] = ACTIONS(2247), - [anon_sym_source_DASHenv] = ACTIONS(2247), - [anon_sym_register] = ACTIONS(2247), - [anon_sym_hide] = ACTIONS(2247), - [anon_sym_hide_DASHenv] = ACTIONS(2247), - [anon_sym_overlay] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_LPAREN2] = ACTIONS(2249), - [anon_sym_PLUS2] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2247), - [aux_sym__val_number_decimal_token1] = ACTIONS(2247), - [aux_sym__val_number_decimal_token2] = ACTIONS(2247), - [aux_sym__val_number_decimal_token3] = ACTIONS(2247), - [aux_sym__val_number_decimal_token4] = ACTIONS(2247), - [aux_sym__val_number_token1] = ACTIONS(2247), - [aux_sym__val_number_token2] = ACTIONS(2247), - [aux_sym__val_number_token3] = ACTIONS(2247), - [aux_sym__val_number_token4] = ACTIONS(2247), - [aux_sym__val_number_token5] = ACTIONS(2247), - [aux_sym__val_number_token6] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym__str_single_quotes] = ACTIONS(2249), - [sym__str_back_ticks] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2249), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2249), + [595] = { + [sym_comment] = STATE(595), + [anon_sym_export] = ACTIONS(1022), + [anon_sym_alias] = ACTIONS(1022), + [anon_sym_let] = ACTIONS(1022), + [anon_sym_let_DASHenv] = ACTIONS(1022), + [anon_sym_mut] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(1022), + [aux_sym_cmd_identifier_token1] = ACTIONS(1022), + [aux_sym_cmd_identifier_token2] = ACTIONS(1022), + [aux_sym_cmd_identifier_token3] = ACTIONS(1022), + [aux_sym_cmd_identifier_token4] = ACTIONS(1022), + [aux_sym_cmd_identifier_token5] = ACTIONS(1022), + [aux_sym_cmd_identifier_token6] = ACTIONS(1022), + [aux_sym_cmd_identifier_token7] = ACTIONS(1022), + [aux_sym_cmd_identifier_token8] = ACTIONS(1022), + [aux_sym_cmd_identifier_token9] = ACTIONS(1022), + [aux_sym_cmd_identifier_token10] = ACTIONS(1022), + [aux_sym_cmd_identifier_token11] = ACTIONS(1022), + [aux_sym_cmd_identifier_token12] = ACTIONS(1022), + [aux_sym_cmd_identifier_token13] = ACTIONS(1022), + [aux_sym_cmd_identifier_token14] = ACTIONS(1022), + [aux_sym_cmd_identifier_token15] = ACTIONS(1022), + [aux_sym_cmd_identifier_token16] = ACTIONS(1022), + [aux_sym_cmd_identifier_token17] = ACTIONS(1022), + [aux_sym_cmd_identifier_token18] = ACTIONS(1022), + [aux_sym_cmd_identifier_token19] = ACTIONS(1022), + [aux_sym_cmd_identifier_token20] = ACTIONS(1022), + [aux_sym_cmd_identifier_token21] = ACTIONS(1022), + [aux_sym_cmd_identifier_token22] = ACTIONS(1022), + [aux_sym_cmd_identifier_token23] = ACTIONS(1022), + [aux_sym_cmd_identifier_token24] = ACTIONS(1022), + [aux_sym_cmd_identifier_token25] = ACTIONS(1022), + [aux_sym_cmd_identifier_token26] = ACTIONS(1022), + [aux_sym_cmd_identifier_token27] = ACTIONS(1022), + [aux_sym_cmd_identifier_token28] = ACTIONS(1022), + [aux_sym_cmd_identifier_token29] = ACTIONS(1022), + [aux_sym_cmd_identifier_token30] = ACTIONS(1022), + [aux_sym_cmd_identifier_token31] = ACTIONS(1022), + [aux_sym_cmd_identifier_token32] = ACTIONS(1022), + [aux_sym_cmd_identifier_token33] = ACTIONS(1022), + [aux_sym_cmd_identifier_token34] = ACTIONS(1022), + [aux_sym_cmd_identifier_token35] = ACTIONS(1022), + [aux_sym_cmd_identifier_token36] = ACTIONS(1022), + [aux_sym_cmd_identifier_token37] = ACTIONS(1022), + [aux_sym_cmd_identifier_token38] = ACTIONS(1022), + [aux_sym_cmd_identifier_token39] = ACTIONS(1022), + [aux_sym_cmd_identifier_token40] = ACTIONS(1022), + [anon_sym_def] = ACTIONS(1022), + [anon_sym_export_DASHenv] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1022), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_use] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_error] = ACTIONS(1022), + [anon_sym_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(1022), + [anon_sym_try] = ACTIONS(1022), + [anon_sym_catch] = ACTIONS(1022), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_source] = ACTIONS(1022), + [anon_sym_source_DASHenv] = ACTIONS(1022), + [anon_sym_register] = ACTIONS(1022), + [anon_sym_hide] = ACTIONS(1022), + [anon_sym_hide_DASHenv] = ACTIONS(1022), + [anon_sym_overlay] = ACTIONS(1022), + [anon_sym_as] = ACTIONS(1022), + [anon_sym_PLUS2] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1022), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1022), + [aux_sym__val_number_token1] = ACTIONS(1022), + [aux_sym__val_number_token2] = ACTIONS(1022), + [aux_sym__val_number_token3] = ACTIONS(1022), + [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(1022), + [sym__str_single_quotes] = ACTIONS(1022), + [sym__str_back_ticks] = ACTIONS(1022), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), + [sym__entry_separator] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1024), }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1026), - [aux_sym_cmd_identifier_token3] = ACTIONS(1026), - [aux_sym_cmd_identifier_token4] = ACTIONS(1026), - [aux_sym_cmd_identifier_token5] = ACTIONS(1026), - [aux_sym_cmd_identifier_token6] = ACTIONS(1026), - [aux_sym_cmd_identifier_token7] = ACTIONS(1026), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1026), - [aux_sym_cmd_identifier_token11] = ACTIONS(1026), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1026), - [aux_sym_cmd_identifier_token17] = ACTIONS(1026), - [aux_sym_cmd_identifier_token18] = ACTIONS(1026), - [aux_sym_cmd_identifier_token19] = ACTIONS(1026), - [aux_sym_cmd_identifier_token20] = ACTIONS(1026), - [aux_sym_cmd_identifier_token21] = ACTIONS(1026), - [aux_sym_cmd_identifier_token22] = ACTIONS(1026), - [aux_sym_cmd_identifier_token23] = ACTIONS(1026), - [aux_sym_cmd_identifier_token24] = ACTIONS(1026), - [aux_sym_cmd_identifier_token25] = ACTIONS(1026), - [aux_sym_cmd_identifier_token26] = ACTIONS(1026), - [aux_sym_cmd_identifier_token27] = ACTIONS(1026), - [aux_sym_cmd_identifier_token28] = ACTIONS(1026), - [aux_sym_cmd_identifier_token29] = ACTIONS(1026), - [aux_sym_cmd_identifier_token30] = ACTIONS(1026), - [aux_sym_cmd_identifier_token31] = ACTIONS(1026), - [aux_sym_cmd_identifier_token32] = ACTIONS(1026), - [aux_sym_cmd_identifier_token33] = ACTIONS(1026), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1026), - [aux_sym_cmd_identifier_token36] = ACTIONS(1026), - [aux_sym_cmd_identifier_token37] = ACTIONS(1026), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1026), - [aux_sym_cmd_identifier_token40] = ACTIONS(1026), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1026), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1026), - [aux_sym__val_number_decimal_token4] = ACTIONS(1026), - [aux_sym__val_number_token1] = ACTIONS(1026), - [aux_sym__val_number_token2] = ACTIONS(1026), - [aux_sym__val_number_token3] = ACTIONS(1026), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym__str_single_quotes] = ACTIONS(1026), - [sym__str_back_ticks] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), - [sym__entry_separator] = ACTIONS(1028), + [596] = { + [sym_comment] = STATE(596), + [aux_sym__multiple_types_repeat1] = STATE(597), + [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(2348), + [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(2324), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1028), + [sym_raw_string_begin] = ACTIONS(2326), }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1851), - [aux_sym_cmd_identifier_token3] = ACTIONS(1851), - [aux_sym_cmd_identifier_token4] = ACTIONS(1851), - [aux_sym_cmd_identifier_token5] = ACTIONS(1851), - [aux_sym_cmd_identifier_token6] = ACTIONS(1851), - [aux_sym_cmd_identifier_token7] = ACTIONS(1851), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1851), - [aux_sym_cmd_identifier_token17] = ACTIONS(1851), - [aux_sym_cmd_identifier_token18] = ACTIONS(1851), - [aux_sym_cmd_identifier_token19] = ACTIONS(1851), - [aux_sym_cmd_identifier_token20] = ACTIONS(1851), - [aux_sym_cmd_identifier_token21] = ACTIONS(1851), - [aux_sym_cmd_identifier_token22] = ACTIONS(1851), - [aux_sym_cmd_identifier_token23] = ACTIONS(1851), - [aux_sym_cmd_identifier_token24] = ACTIONS(1851), - [aux_sym_cmd_identifier_token25] = ACTIONS(1851), - [aux_sym_cmd_identifier_token26] = ACTIONS(1851), - [aux_sym_cmd_identifier_token27] = ACTIONS(1851), - [aux_sym_cmd_identifier_token28] = ACTIONS(1851), - [aux_sym_cmd_identifier_token29] = ACTIONS(1851), - [aux_sym_cmd_identifier_token30] = ACTIONS(1851), - [aux_sym_cmd_identifier_token31] = ACTIONS(1851), - [aux_sym_cmd_identifier_token32] = ACTIONS(1851), - [aux_sym_cmd_identifier_token33] = ACTIONS(1851), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1851), - [aux_sym_cmd_identifier_token36] = ACTIONS(1851), - [aux_sym_cmd_identifier_token37] = ACTIONS(1851), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in2] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1851), + [597] = { + [sym_comment] = STATE(597), + [aux_sym__multiple_types_repeat1] = STATE(597), + [anon_sym_export] = ACTIONS(2350), + [anon_sym_alias] = ACTIONS(2350), + [anon_sym_let] = ACTIONS(2350), + [anon_sym_let_DASHenv] = ACTIONS(2350), + [anon_sym_mut] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [aux_sym_cmd_identifier_token1] = ACTIONS(2350), + [aux_sym_cmd_identifier_token2] = ACTIONS(2350), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), + [aux_sym_cmd_identifier_token6] = ACTIONS(2350), + [aux_sym_cmd_identifier_token7] = ACTIONS(2350), + [aux_sym_cmd_identifier_token8] = ACTIONS(2350), + [aux_sym_cmd_identifier_token9] = ACTIONS(2350), + [aux_sym_cmd_identifier_token10] = ACTIONS(2350), + [aux_sym_cmd_identifier_token11] = ACTIONS(2350), + [aux_sym_cmd_identifier_token12] = ACTIONS(2350), + [aux_sym_cmd_identifier_token13] = ACTIONS(2350), + [aux_sym_cmd_identifier_token14] = ACTIONS(2350), + [aux_sym_cmd_identifier_token15] = ACTIONS(2350), + [aux_sym_cmd_identifier_token16] = ACTIONS(2350), + [aux_sym_cmd_identifier_token17] = ACTIONS(2350), + [aux_sym_cmd_identifier_token18] = ACTIONS(2350), + [aux_sym_cmd_identifier_token19] = ACTIONS(2350), + [aux_sym_cmd_identifier_token20] = ACTIONS(2350), + [aux_sym_cmd_identifier_token21] = ACTIONS(2350), + [aux_sym_cmd_identifier_token22] = ACTIONS(2350), + [aux_sym_cmd_identifier_token23] = ACTIONS(2350), + [aux_sym_cmd_identifier_token24] = ACTIONS(2350), + [aux_sym_cmd_identifier_token25] = ACTIONS(2350), + [aux_sym_cmd_identifier_token26] = ACTIONS(2350), + [aux_sym_cmd_identifier_token27] = ACTIONS(2350), + [aux_sym_cmd_identifier_token28] = ACTIONS(2350), + [aux_sym_cmd_identifier_token29] = ACTIONS(2350), + [aux_sym_cmd_identifier_token30] = ACTIONS(2350), + [aux_sym_cmd_identifier_token31] = ACTIONS(2350), + [aux_sym_cmd_identifier_token32] = ACTIONS(2350), + [aux_sym_cmd_identifier_token33] = ACTIONS(2350), + [aux_sym_cmd_identifier_token34] = ACTIONS(2350), + [aux_sym_cmd_identifier_token35] = ACTIONS(2350), + [aux_sym_cmd_identifier_token36] = ACTIONS(2350), + [aux_sym_cmd_identifier_token37] = ACTIONS(2350), + [aux_sym_cmd_identifier_token38] = ACTIONS(2350), + [aux_sym_cmd_identifier_token39] = ACTIONS(2350), + [aux_sym_cmd_identifier_token40] = ACTIONS(2350), + [anon_sym_def] = ACTIONS(2350), + [anon_sym_export_DASHenv] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym_module] = ACTIONS(2350), + [anon_sym_use] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_DOLLAR] = ACTIONS(2350), + [anon_sym_error] = ACTIONS(2350), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in2] = ACTIONS(2350), + [anon_sym_loop] = ACTIONS(2350), + [anon_sym_make] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_match] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2350), + [anon_sym_catch] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_source] = ACTIONS(2350), + [anon_sym_source_DASHenv] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_hide] = ACTIONS(2350), + [anon_sym_hide_DASHenv] = ACTIONS(2350), + [anon_sym_overlay] = ACTIONS(2350), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), + [aux_sym__val_number_decimal_token1] = ACTIONS(2350), + [aux_sym__val_number_decimal_token2] = ACTIONS(2350), + [aux_sym__val_number_decimal_token3] = ACTIONS(2350), + [aux_sym__val_number_decimal_token4] = ACTIONS(2350), + [aux_sym__val_number_token1] = ACTIONS(2350), + [aux_sym__val_number_token2] = ACTIONS(2350), + [aux_sym__val_number_token3] = ACTIONS(2350), + [aux_sym__val_number_token4] = ACTIONS(2350), + [aux_sym__val_number_token5] = ACTIONS(2350), + [aux_sym__val_number_token6] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [sym__str_single_quotes] = ACTIONS(2350), + [sym__str_back_ticks] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), + [sym__entry_separator] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2355), }, - [607] = { - [sym_comment] = STATE(607), + [598] = { + [sym__expr_parenthesized_immediate] = STATE(7983), + [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(2064), + [anon_sym_alias] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_let_DASHenv] = ACTIONS(2064), + [anon_sym_mut] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [aux_sym_cmd_identifier_token1] = ACTIONS(2064), + [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(2064), + [aux_sym_cmd_identifier_token9] = ACTIONS(2064), + [aux_sym_cmd_identifier_token10] = ACTIONS(2070), + [aux_sym_cmd_identifier_token11] = ACTIONS(2070), + [aux_sym_cmd_identifier_token12] = ACTIONS(2064), + [aux_sym_cmd_identifier_token13] = ACTIONS(2064), + [aux_sym_cmd_identifier_token14] = ACTIONS(2064), + [aux_sym_cmd_identifier_token15] = ACTIONS(2064), + [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(2064), + [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(2064), + [aux_sym_cmd_identifier_token39] = ACTIONS(2070), + [aux_sym_cmd_identifier_token40] = ACTIONS(2070), + [anon_sym_def] = ACTIONS(2064), + [anon_sym_export_DASHenv] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_error] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_in2] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_make] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_source] = ACTIONS(2064), + [anon_sym_source_DASHenv] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_hide] = ACTIONS(2064), + [anon_sym_hide_DASHenv] = ACTIONS(2064), + [anon_sym_overlay] = ACTIONS(2064), + [anon_sym_as] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2064), + [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(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [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(251), + [sym_raw_string_begin] = ACTIONS(2070), + }, + [599] = { + [sym_comment] = STATE(599), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -148446,810 +150143,2016 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1020), }, + [600] = { + [sym_comment] = STATE(600), + [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(1016), + }, + [601] = { + [sym__expr_parenthesized_immediate] = STATE(7983), + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2199), + [aux_sym_cmd_identifier_token3] = ACTIONS(2199), + [aux_sym_cmd_identifier_token4] = ACTIONS(2199), + [aux_sym_cmd_identifier_token5] = ACTIONS(2199), + [aux_sym_cmd_identifier_token6] = ACTIONS(2199), + [aux_sym_cmd_identifier_token7] = ACTIONS(2199), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2199), + [aux_sym_cmd_identifier_token11] = ACTIONS(2199), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2199), + [aux_sym_cmd_identifier_token17] = ACTIONS(2199), + [aux_sym_cmd_identifier_token18] = ACTIONS(2199), + [aux_sym_cmd_identifier_token19] = ACTIONS(2199), + [aux_sym_cmd_identifier_token20] = ACTIONS(2199), + [aux_sym_cmd_identifier_token21] = ACTIONS(2199), + [aux_sym_cmd_identifier_token22] = ACTIONS(2199), + [aux_sym_cmd_identifier_token23] = ACTIONS(2199), + [aux_sym_cmd_identifier_token24] = ACTIONS(2199), + [aux_sym_cmd_identifier_token25] = ACTIONS(2199), + [aux_sym_cmd_identifier_token26] = ACTIONS(2199), + [aux_sym_cmd_identifier_token27] = ACTIONS(2199), + [aux_sym_cmd_identifier_token28] = ACTIONS(2199), + [aux_sym_cmd_identifier_token29] = ACTIONS(2199), + [aux_sym_cmd_identifier_token30] = ACTIONS(2199), + [aux_sym_cmd_identifier_token31] = ACTIONS(2199), + [aux_sym_cmd_identifier_token32] = ACTIONS(2199), + [aux_sym_cmd_identifier_token33] = ACTIONS(2199), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2199), + [aux_sym_cmd_identifier_token36] = ACTIONS(2199), + [aux_sym_cmd_identifier_token37] = ACTIONS(2199), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2199), + [aux_sym_cmd_identifier_token40] = ACTIONS(2199), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2199), + [aux_sym__val_number_decimal_token3] = ACTIONS(2199), + [aux_sym__val_number_decimal_token4] = ACTIONS(2199), + [aux_sym__val_number_token1] = ACTIONS(2199), + [aux_sym__val_number_token2] = ACTIONS(2199), + [aux_sym__val_number_token3] = ACTIONS(2199), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2199), + [sym__str_single_quotes] = ACTIONS(2199), + [sym__str_back_ticks] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2199), + }, + [602] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(2276), + [anon_sym_alias] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_let_DASHenv] = ACTIONS(2276), + [anon_sym_mut] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [aux_sym_cmd_identifier_token1] = ACTIONS(2276), + [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(2276), + [aux_sym_cmd_identifier_token9] = ACTIONS(2276), + [aux_sym_cmd_identifier_token10] = ACTIONS(2278), + [aux_sym_cmd_identifier_token11] = ACTIONS(2278), + [aux_sym_cmd_identifier_token12] = ACTIONS(2276), + [aux_sym_cmd_identifier_token13] = ACTIONS(2276), + [aux_sym_cmd_identifier_token14] = ACTIONS(2276), + [aux_sym_cmd_identifier_token15] = ACTIONS(2276), + [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(2276), + [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(2276), + [aux_sym_cmd_identifier_token39] = ACTIONS(2278), + [aux_sym_cmd_identifier_token40] = ACTIONS(2278), + [anon_sym_def] = ACTIONS(2276), + [anon_sym_export_DASHenv] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym_module] = ACTIONS(2276), + [anon_sym_use] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2278), + [anon_sym_error] = ACTIONS(2276), + [anon_sym_DASH2] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_in2] = ACTIONS(2276), + [anon_sym_loop] = ACTIONS(2276), + [anon_sym_make] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_else] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2276), + [anon_sym_catch] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_source] = ACTIONS(2276), + [anon_sym_source_DASHenv] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2276), + [anon_sym_hide] = ACTIONS(2276), + [anon_sym_hide_DASHenv] = ACTIONS(2276), + [anon_sym_overlay] = ACTIONS(2276), + [anon_sym_as] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2278), + [aux_sym__val_number_decimal_token1] = ACTIONS(2276), + [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(2276), + [aux_sym__val_number_token5] = ACTIONS(2276), + [aux_sym__val_number_token6] = ACTIONS(2276), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2278), + }, + [603] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(603), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_alias] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_let_DASHenv] = ACTIONS(2280), + [anon_sym_mut] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [aux_sym_cmd_identifier_token1] = ACTIONS(2280), + [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(2280), + [aux_sym_cmd_identifier_token9] = ACTIONS(2280), + [aux_sym_cmd_identifier_token10] = ACTIONS(2282), + [aux_sym_cmd_identifier_token11] = ACTIONS(2282), + [aux_sym_cmd_identifier_token12] = ACTIONS(2280), + [aux_sym_cmd_identifier_token13] = ACTIONS(2280), + [aux_sym_cmd_identifier_token14] = ACTIONS(2280), + [aux_sym_cmd_identifier_token15] = ACTIONS(2280), + [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(2280), + [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(2280), + [aux_sym_cmd_identifier_token39] = ACTIONS(2282), + [aux_sym_cmd_identifier_token40] = ACTIONS(2282), + [anon_sym_def] = ACTIONS(2280), + [anon_sym_export_DASHenv] = ACTIONS(2280), + [anon_sym_extern] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_use] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2282), + [anon_sym_error] = ACTIONS(2280), + [anon_sym_DASH2] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_in2] = ACTIONS(2280), + [anon_sym_loop] = ACTIONS(2280), + [anon_sym_make] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_match] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_catch] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_source] = ACTIONS(2280), + [anon_sym_source_DASHenv] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2280), + [anon_sym_hide] = ACTIONS(2280), + [anon_sym_hide_DASHenv] = ACTIONS(2280), + [anon_sym_overlay] = ACTIONS(2280), + [anon_sym_as] = ACTIONS(2280), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2282), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2282), + [aux_sym__val_number_decimal_token1] = ACTIONS(2280), + [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(2280), + [aux_sym__val_number_token5] = ACTIONS(2280), + [aux_sym__val_number_token6] = ACTIONS(2280), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2282), + }, + [604] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(2284), + [anon_sym_alias] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_let_DASHenv] = ACTIONS(2284), + [anon_sym_mut] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [aux_sym_cmd_identifier_token1] = ACTIONS(2284), + [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(2284), + [aux_sym_cmd_identifier_token9] = ACTIONS(2284), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2284), + [aux_sym_cmd_identifier_token13] = ACTIONS(2284), + [aux_sym_cmd_identifier_token14] = ACTIONS(2284), + [aux_sym_cmd_identifier_token15] = ACTIONS(2284), + [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(2284), + [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(2284), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2284), + [anon_sym_export_DASHenv] = ACTIONS(2284), + [anon_sym_extern] = ACTIONS(2284), + [anon_sym_module] = ACTIONS(2284), + [anon_sym_use] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2284), + [anon_sym_DASH2] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_in2] = ACTIONS(2284), + [anon_sym_loop] = ACTIONS(2284), + [anon_sym_make] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_else] = ACTIONS(2284), + [anon_sym_match] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2284), + [anon_sym_catch] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_source] = ACTIONS(2284), + [anon_sym_source_DASHenv] = ACTIONS(2284), + [anon_sym_register] = ACTIONS(2284), + [anon_sym_hide] = ACTIONS(2284), + [anon_sym_hide_DASHenv] = ACTIONS(2284), + [anon_sym_overlay] = ACTIONS(2284), + [anon_sym_as] = ACTIONS(2284), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2284), + [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(2284), + [aux_sym__val_number_token5] = ACTIONS(2284), + [aux_sym__val_number_token6] = ACTIONS(2284), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2286), + }, + [605] = { + [sym__expr_parenthesized_immediate] = STATE(8427), + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_alias] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_let_DASHenv] = ACTIONS(2288), + [anon_sym_mut] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [aux_sym_cmd_identifier_token1] = ACTIONS(2288), + [aux_sym_cmd_identifier_token2] = ACTIONS(2290), + [aux_sym_cmd_identifier_token3] = ACTIONS(2290), + [aux_sym_cmd_identifier_token4] = ACTIONS(2290), + [aux_sym_cmd_identifier_token5] = ACTIONS(2290), + [aux_sym_cmd_identifier_token6] = ACTIONS(2290), + [aux_sym_cmd_identifier_token7] = ACTIONS(2290), + [aux_sym_cmd_identifier_token8] = ACTIONS(2288), + [aux_sym_cmd_identifier_token9] = ACTIONS(2288), + [aux_sym_cmd_identifier_token10] = ACTIONS(2290), + [aux_sym_cmd_identifier_token11] = ACTIONS(2290), + [aux_sym_cmd_identifier_token12] = ACTIONS(2288), + [aux_sym_cmd_identifier_token13] = ACTIONS(2288), + [aux_sym_cmd_identifier_token14] = ACTIONS(2288), + [aux_sym_cmd_identifier_token15] = ACTIONS(2288), + [aux_sym_cmd_identifier_token16] = ACTIONS(2290), + [aux_sym_cmd_identifier_token17] = ACTIONS(2290), + [aux_sym_cmd_identifier_token18] = ACTIONS(2290), + [aux_sym_cmd_identifier_token19] = ACTIONS(2290), + [aux_sym_cmd_identifier_token20] = ACTIONS(2290), + [aux_sym_cmd_identifier_token21] = ACTIONS(2290), + [aux_sym_cmd_identifier_token22] = ACTIONS(2290), + [aux_sym_cmd_identifier_token23] = ACTIONS(2290), + [aux_sym_cmd_identifier_token24] = ACTIONS(2290), + [aux_sym_cmd_identifier_token25] = ACTIONS(2290), + [aux_sym_cmd_identifier_token26] = ACTIONS(2290), + [aux_sym_cmd_identifier_token27] = ACTIONS(2290), + [aux_sym_cmd_identifier_token28] = ACTIONS(2290), + [aux_sym_cmd_identifier_token29] = ACTIONS(2290), + [aux_sym_cmd_identifier_token30] = ACTIONS(2290), + [aux_sym_cmd_identifier_token31] = ACTIONS(2290), + [aux_sym_cmd_identifier_token32] = ACTIONS(2290), + [aux_sym_cmd_identifier_token33] = ACTIONS(2290), + [aux_sym_cmd_identifier_token34] = ACTIONS(2288), + [aux_sym_cmd_identifier_token35] = ACTIONS(2290), + [aux_sym_cmd_identifier_token36] = ACTIONS(2290), + [aux_sym_cmd_identifier_token37] = ACTIONS(2290), + [aux_sym_cmd_identifier_token38] = ACTIONS(2288), + [aux_sym_cmd_identifier_token39] = ACTIONS(2290), + [aux_sym_cmd_identifier_token40] = ACTIONS(2290), + [anon_sym_def] = ACTIONS(2288), + [anon_sym_export_DASHenv] = ACTIONS(2288), + [anon_sym_extern] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_use] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2290), + [anon_sym_error] = ACTIONS(2288), + [anon_sym_DASH2] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_in2] = ACTIONS(2288), + [anon_sym_loop] = ACTIONS(2288), + [anon_sym_make] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_match] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_source] = ACTIONS(2288), + [anon_sym_source_DASHenv] = ACTIONS(2288), + [anon_sym_register] = ACTIONS(2288), + [anon_sym_hide] = ACTIONS(2288), + [anon_sym_hide_DASHenv] = ACTIONS(2288), + [anon_sym_overlay] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2290), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2290), + [aux_sym__val_number_decimal_token1] = ACTIONS(2288), + [aux_sym__val_number_decimal_token2] = ACTIONS(2290), + [aux_sym__val_number_decimal_token3] = ACTIONS(2290), + [aux_sym__val_number_decimal_token4] = ACTIONS(2290), + [aux_sym__val_number_token1] = ACTIONS(2290), + [aux_sym__val_number_token2] = ACTIONS(2290), + [aux_sym__val_number_token3] = ACTIONS(2290), + [aux_sym__val_number_token4] = ACTIONS(2288), + [aux_sym__val_number_token5] = ACTIONS(2288), + [aux_sym__val_number_token6] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2290), + [sym__str_single_quotes] = ACTIONS(2290), + [sym__str_back_ticks] = ACTIONS(2290), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2290), + }, + [606] = { + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [aux_sym_cmd_identifier_token1] = ACTIONS(1687), + [aux_sym_cmd_identifier_token2] = ACTIONS(1687), + [aux_sym_cmd_identifier_token3] = ACTIONS(1687), + [aux_sym_cmd_identifier_token4] = ACTIONS(1687), + [aux_sym_cmd_identifier_token5] = ACTIONS(1687), + [aux_sym_cmd_identifier_token6] = ACTIONS(1687), + [aux_sym_cmd_identifier_token7] = ACTIONS(1687), + [aux_sym_cmd_identifier_token8] = ACTIONS(1687), + [aux_sym_cmd_identifier_token9] = ACTIONS(1687), + [aux_sym_cmd_identifier_token10] = ACTIONS(1687), + [aux_sym_cmd_identifier_token11] = ACTIONS(1687), + [aux_sym_cmd_identifier_token12] = ACTIONS(1687), + [aux_sym_cmd_identifier_token13] = ACTIONS(1687), + [aux_sym_cmd_identifier_token14] = ACTIONS(1687), + [aux_sym_cmd_identifier_token15] = ACTIONS(1687), + [aux_sym_cmd_identifier_token16] = ACTIONS(1687), + [aux_sym_cmd_identifier_token17] = ACTIONS(1687), + [aux_sym_cmd_identifier_token18] = ACTIONS(1687), + [aux_sym_cmd_identifier_token19] = ACTIONS(1687), + [aux_sym_cmd_identifier_token20] = ACTIONS(1687), + [aux_sym_cmd_identifier_token21] = ACTIONS(1687), + [aux_sym_cmd_identifier_token22] = ACTIONS(1687), + [aux_sym_cmd_identifier_token23] = ACTIONS(1687), + [aux_sym_cmd_identifier_token24] = ACTIONS(1687), + [aux_sym_cmd_identifier_token25] = ACTIONS(1687), + [aux_sym_cmd_identifier_token26] = ACTIONS(1687), + [aux_sym_cmd_identifier_token27] = ACTIONS(1687), + [aux_sym_cmd_identifier_token28] = ACTIONS(1687), + [aux_sym_cmd_identifier_token29] = ACTIONS(1687), + [aux_sym_cmd_identifier_token30] = ACTIONS(1687), + [aux_sym_cmd_identifier_token31] = ACTIONS(1687), + [aux_sym_cmd_identifier_token32] = ACTIONS(1687), + [aux_sym_cmd_identifier_token33] = ACTIONS(1687), + [aux_sym_cmd_identifier_token34] = ACTIONS(1687), + [aux_sym_cmd_identifier_token35] = ACTIONS(1687), + [aux_sym_cmd_identifier_token36] = ACTIONS(1687), + [aux_sym_cmd_identifier_token37] = ACTIONS(1687), + [aux_sym_cmd_identifier_token38] = ACTIONS(1687), + [aux_sym_cmd_identifier_token39] = ACTIONS(1687), + [aux_sym_cmd_identifier_token40] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_make] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), + [sym__entry_separator] = ACTIONS(1699), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [607] = { + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [aux_sym_cmd_identifier_token37] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1036), + }, [608] = { [sym_comment] = STATE(608), - [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(1830), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [aux_sym_cmd_identifier_token37] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in2] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [aux_sym__val_number_token4] = ACTIONS(1949), + [aux_sym__val_number_token5] = ACTIONS(1949), + [aux_sym__val_number_token6] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1951), }, [609] = { - [sym__expr_parenthesized_immediate] = STATE(7875), [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_alias] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_let_DASHenv] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [aux_sym_cmd_identifier_token1] = ACTIONS(2221), - [aux_sym_cmd_identifier_token2] = ACTIONS(2223), - [aux_sym_cmd_identifier_token3] = ACTIONS(2223), - [aux_sym_cmd_identifier_token4] = ACTIONS(2223), - [aux_sym_cmd_identifier_token5] = ACTIONS(2223), - [aux_sym_cmd_identifier_token6] = ACTIONS(2223), - [aux_sym_cmd_identifier_token7] = ACTIONS(2223), - [aux_sym_cmd_identifier_token8] = ACTIONS(2221), - [aux_sym_cmd_identifier_token9] = ACTIONS(2221), - [aux_sym_cmd_identifier_token10] = ACTIONS(2223), - [aux_sym_cmd_identifier_token11] = ACTIONS(2223), - [aux_sym_cmd_identifier_token12] = ACTIONS(2221), - [aux_sym_cmd_identifier_token13] = ACTIONS(2221), - [aux_sym_cmd_identifier_token14] = ACTIONS(2221), - [aux_sym_cmd_identifier_token15] = ACTIONS(2221), - [aux_sym_cmd_identifier_token16] = ACTIONS(2223), - [aux_sym_cmd_identifier_token17] = ACTIONS(2223), - [aux_sym_cmd_identifier_token18] = ACTIONS(2223), - [aux_sym_cmd_identifier_token19] = ACTIONS(2223), - [aux_sym_cmd_identifier_token20] = ACTIONS(2223), - [aux_sym_cmd_identifier_token21] = ACTIONS(2223), - [aux_sym_cmd_identifier_token22] = ACTIONS(2223), - [aux_sym_cmd_identifier_token23] = ACTIONS(2223), - [aux_sym_cmd_identifier_token24] = ACTIONS(2223), - [aux_sym_cmd_identifier_token25] = ACTIONS(2223), - [aux_sym_cmd_identifier_token26] = ACTIONS(2223), - [aux_sym_cmd_identifier_token27] = ACTIONS(2223), - [aux_sym_cmd_identifier_token28] = ACTIONS(2223), - [aux_sym_cmd_identifier_token29] = ACTIONS(2223), - [aux_sym_cmd_identifier_token30] = ACTIONS(2223), - [aux_sym_cmd_identifier_token31] = ACTIONS(2223), - [aux_sym_cmd_identifier_token32] = ACTIONS(2223), - [aux_sym_cmd_identifier_token33] = ACTIONS(2223), - [aux_sym_cmd_identifier_token34] = ACTIONS(2221), - [aux_sym_cmd_identifier_token35] = ACTIONS(2223), - [aux_sym_cmd_identifier_token36] = ACTIONS(2223), - [aux_sym_cmd_identifier_token37] = ACTIONS(2223), - [aux_sym_cmd_identifier_token38] = ACTIONS(2221), - [aux_sym_cmd_identifier_token39] = ACTIONS(2223), - [aux_sym_cmd_identifier_token40] = ACTIONS(2223), - [anon_sym_def] = ACTIONS(2221), - [anon_sym_export_DASHenv] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_error] = ACTIONS(2221), - [anon_sym_DASH2] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_in2] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_make] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_source] = ACTIONS(2221), - [anon_sym_source_DASHenv] = ACTIONS(2221), - [anon_sym_register] = ACTIONS(2221), - [anon_sym_hide] = ACTIONS(2221), - [anon_sym_hide_DASHenv] = ACTIONS(2221), - [anon_sym_overlay] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LPAREN2] = ACTIONS(1697), - [anon_sym_PLUS2] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2223), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2223), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_decimal_token2] = ACTIONS(2223), - [aux_sym__val_number_decimal_token3] = ACTIONS(2223), - [aux_sym__val_number_decimal_token4] = ACTIONS(2223), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2221), - [aux_sym__val_number_token5] = ACTIONS(2221), - [aux_sym__val_number_token6] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym__str_single_quotes] = ACTIONS(2223), - [sym__str_back_ticks] = ACTIONS(2223), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, [610] = { [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2064), - [aux_sym_cmd_identifier_token3] = ACTIONS(2064), - [aux_sym_cmd_identifier_token4] = ACTIONS(2064), - [aux_sym_cmd_identifier_token5] = ACTIONS(2064), - [aux_sym_cmd_identifier_token6] = ACTIONS(2064), - [aux_sym_cmd_identifier_token7] = ACTIONS(2064), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2064), - [aux_sym_cmd_identifier_token11] = ACTIONS(2064), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2064), - [aux_sym_cmd_identifier_token17] = ACTIONS(2064), - [aux_sym_cmd_identifier_token18] = ACTIONS(2064), - [aux_sym_cmd_identifier_token19] = ACTIONS(2064), - [aux_sym_cmd_identifier_token20] = ACTIONS(2064), - [aux_sym_cmd_identifier_token21] = ACTIONS(2064), - [aux_sym_cmd_identifier_token22] = ACTIONS(2064), - [aux_sym_cmd_identifier_token23] = ACTIONS(2064), - [aux_sym_cmd_identifier_token24] = ACTIONS(2064), - [aux_sym_cmd_identifier_token25] = ACTIONS(2064), - [aux_sym_cmd_identifier_token26] = ACTIONS(2064), - [aux_sym_cmd_identifier_token27] = ACTIONS(2064), - [aux_sym_cmd_identifier_token28] = ACTIONS(2064), - [aux_sym_cmd_identifier_token29] = ACTIONS(2064), - [aux_sym_cmd_identifier_token30] = ACTIONS(2064), - [aux_sym_cmd_identifier_token31] = ACTIONS(2064), - [aux_sym_cmd_identifier_token32] = ACTIONS(2064), - [aux_sym_cmd_identifier_token33] = ACTIONS(2064), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2064), - [aux_sym_cmd_identifier_token36] = ACTIONS(2064), - [aux_sym_cmd_identifier_token37] = ACTIONS(2064), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2064), - [aux_sym_cmd_identifier_token40] = ACTIONS(2064), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2064), - [aux_sym__val_number_decimal_token3] = ACTIONS(2064), - [aux_sym__val_number_decimal_token4] = ACTIONS(2064), - [aux_sym__val_number_token1] = ACTIONS(2064), - [aux_sym__val_number_token2] = ACTIONS(2064), - [aux_sym__val_number_token3] = ACTIONS(2064), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym__str_single_quotes] = ACTIONS(2064), - [sym__str_back_ticks] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), - [sym__entry_separator] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2066), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1801), + [aux_sym_cmd_identifier_token3] = ACTIONS(1801), + [aux_sym_cmd_identifier_token4] = ACTIONS(1801), + [aux_sym_cmd_identifier_token5] = ACTIONS(1801), + [aux_sym_cmd_identifier_token6] = ACTIONS(1801), + [aux_sym_cmd_identifier_token7] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1801), + [aux_sym_cmd_identifier_token11] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1801), + [aux_sym_cmd_identifier_token17] = ACTIONS(1801), + [aux_sym_cmd_identifier_token18] = ACTIONS(1801), + [aux_sym_cmd_identifier_token19] = ACTIONS(1801), + [aux_sym_cmd_identifier_token20] = ACTIONS(1801), + [aux_sym_cmd_identifier_token21] = ACTIONS(1801), + [aux_sym_cmd_identifier_token22] = ACTIONS(1801), + [aux_sym_cmd_identifier_token23] = ACTIONS(1801), + [aux_sym_cmd_identifier_token24] = ACTIONS(1801), + [aux_sym_cmd_identifier_token25] = ACTIONS(1801), + [aux_sym_cmd_identifier_token26] = ACTIONS(1801), + [aux_sym_cmd_identifier_token27] = ACTIONS(1801), + [aux_sym_cmd_identifier_token28] = ACTIONS(1801), + [aux_sym_cmd_identifier_token29] = ACTIONS(1801), + [aux_sym_cmd_identifier_token30] = ACTIONS(1801), + [aux_sym_cmd_identifier_token31] = ACTIONS(1801), + [aux_sym_cmd_identifier_token32] = ACTIONS(1801), + [aux_sym_cmd_identifier_token33] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1801), + [aux_sym_cmd_identifier_token36] = ACTIONS(1801), + [aux_sym_cmd_identifier_token37] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1801), + [aux_sym_cmd_identifier_token40] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, [611] = { [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [aux_sym_cmd_identifier_token1] = ACTIONS(2361), - [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(2361), - [aux_sym_cmd_identifier_token9] = ACTIONS(2361), - [aux_sym_cmd_identifier_token10] = ACTIONS(2361), - [aux_sym_cmd_identifier_token11] = ACTIONS(2361), - [aux_sym_cmd_identifier_token12] = ACTIONS(2361), - [aux_sym_cmd_identifier_token13] = ACTIONS(2361), - [aux_sym_cmd_identifier_token14] = ACTIONS(2361), - [aux_sym_cmd_identifier_token15] = ACTIONS(2361), - [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(2361), - [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(2361), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_DASH2] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_in2] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_make] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_PLUS2] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2361), - [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(2361), - [aux_sym__val_number_token5] = ACTIONS(2361), - [aux_sym__val_number_token6] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), - [sym__entry_separator] = ACTIONS(2363), + [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(2363), + [sym_raw_string_begin] = ACTIONS(2361), }, [612] = { [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_alias] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_DASHenv] = ACTIONS(2365), - [anon_sym_mut] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [aux_sym_cmd_identifier_token1] = ACTIONS(2365), - [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(2365), - [aux_sym_cmd_identifier_token9] = ACTIONS(2365), - [aux_sym_cmd_identifier_token10] = ACTIONS(2365), - [aux_sym_cmd_identifier_token11] = ACTIONS(2365), - [aux_sym_cmd_identifier_token12] = ACTIONS(2365), - [aux_sym_cmd_identifier_token13] = ACTIONS(2365), - [aux_sym_cmd_identifier_token14] = ACTIONS(2365), - [aux_sym_cmd_identifier_token15] = ACTIONS(2365), - [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(2365), - [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(2365), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2365), - [anon_sym_export_DASHenv] = ACTIONS(2365), - [anon_sym_extern] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_error] = ACTIONS(2365), - [anon_sym_DASH2] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_in2] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_make] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_catch] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_source] = ACTIONS(2365), - [anon_sym_source_DASHenv] = ACTIONS(2365), - [anon_sym_register] = ACTIONS(2365), - [anon_sym_hide] = ACTIONS(2365), - [anon_sym_hide_DASHenv] = ACTIONS(2365), - [anon_sym_overlay] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_PLUS2] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [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(2365), - [aux_sym__val_number_token5] = ACTIONS(2365), - [aux_sym__val_number_token6] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), - [sym__entry_separator] = ACTIONS(2367), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_alias] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_let_DASHenv] = ACTIONS(1917), + [anon_sym_mut] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [aux_sym_cmd_identifier_token1] = ACTIONS(1917), + [aux_sym_cmd_identifier_token2] = ACTIONS(1917), + [aux_sym_cmd_identifier_token3] = ACTIONS(1917), + [aux_sym_cmd_identifier_token4] = ACTIONS(1917), + [aux_sym_cmd_identifier_token5] = ACTIONS(1917), + [aux_sym_cmd_identifier_token6] = ACTIONS(1917), + [aux_sym_cmd_identifier_token7] = ACTIONS(1917), + [aux_sym_cmd_identifier_token8] = ACTIONS(1917), + [aux_sym_cmd_identifier_token9] = ACTIONS(1917), + [aux_sym_cmd_identifier_token10] = ACTIONS(1917), + [aux_sym_cmd_identifier_token11] = ACTIONS(1917), + [aux_sym_cmd_identifier_token12] = ACTIONS(1917), + [aux_sym_cmd_identifier_token13] = ACTIONS(1917), + [aux_sym_cmd_identifier_token14] = ACTIONS(1917), + [aux_sym_cmd_identifier_token15] = ACTIONS(1917), + [aux_sym_cmd_identifier_token16] = ACTIONS(1917), + [aux_sym_cmd_identifier_token17] = ACTIONS(1917), + [aux_sym_cmd_identifier_token18] = ACTIONS(1917), + [aux_sym_cmd_identifier_token19] = ACTIONS(1917), + [aux_sym_cmd_identifier_token20] = ACTIONS(1917), + [aux_sym_cmd_identifier_token21] = ACTIONS(1917), + [aux_sym_cmd_identifier_token22] = ACTIONS(1917), + [aux_sym_cmd_identifier_token23] = ACTIONS(1917), + [aux_sym_cmd_identifier_token24] = ACTIONS(1917), + [aux_sym_cmd_identifier_token25] = ACTIONS(1917), + [aux_sym_cmd_identifier_token26] = ACTIONS(1917), + [aux_sym_cmd_identifier_token27] = ACTIONS(1917), + [aux_sym_cmd_identifier_token28] = ACTIONS(1917), + [aux_sym_cmd_identifier_token29] = ACTIONS(1917), + [aux_sym_cmd_identifier_token30] = ACTIONS(1917), + [aux_sym_cmd_identifier_token31] = ACTIONS(1917), + [aux_sym_cmd_identifier_token32] = ACTIONS(1917), + [aux_sym_cmd_identifier_token33] = ACTIONS(1917), + [aux_sym_cmd_identifier_token34] = ACTIONS(1917), + [aux_sym_cmd_identifier_token35] = ACTIONS(1917), + [aux_sym_cmd_identifier_token36] = ACTIONS(1917), + [aux_sym_cmd_identifier_token37] = ACTIONS(1917), + [aux_sym_cmd_identifier_token38] = ACTIONS(1917), + [aux_sym_cmd_identifier_token39] = ACTIONS(1917), + [aux_sym_cmd_identifier_token40] = ACTIONS(1917), + [anon_sym_def] = ACTIONS(1917), + [anon_sym_export_DASHenv] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_in2] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_make] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_catch] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_source] = ACTIONS(1917), + [anon_sym_source_DASHenv] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_hide] = ACTIONS(1917), + [anon_sym_hide_DASHenv] = ACTIONS(1917), + [anon_sym_overlay] = ACTIONS(1917), + [anon_sym_as] = ACTIONS(1917), + [anon_sym_PLUS2] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), + [aux_sym__val_number_decimal_token1] = ACTIONS(1917), + [aux_sym__val_number_decimal_token2] = ACTIONS(1917), + [aux_sym__val_number_decimal_token3] = ACTIONS(1917), + [aux_sym__val_number_decimal_token4] = ACTIONS(1917), + [aux_sym__val_number_token1] = ACTIONS(1917), + [aux_sym__val_number_token2] = ACTIONS(1917), + [aux_sym__val_number_token3] = ACTIONS(1917), + [aux_sym__val_number_token4] = ACTIONS(1917), + [aux_sym__val_number_token5] = ACTIONS(1917), + [aux_sym__val_number_token6] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), + [sym__entry_separator] = ACTIONS(1919), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2367), + [sym_raw_string_begin] = ACTIONS(1919), }, [613] = { [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_alias] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_let_DASHenv] = ACTIONS(2369), - [anon_sym_mut] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [aux_sym_cmd_identifier_token1] = ACTIONS(2369), - [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(2369), - [aux_sym_cmd_identifier_token9] = ACTIONS(2369), - [aux_sym_cmd_identifier_token10] = ACTIONS(2369), - [aux_sym_cmd_identifier_token11] = ACTIONS(2369), - [aux_sym_cmd_identifier_token12] = ACTIONS(2369), - [aux_sym_cmd_identifier_token13] = ACTIONS(2369), - [aux_sym_cmd_identifier_token14] = ACTIONS(2369), - [aux_sym_cmd_identifier_token15] = ACTIONS(2369), - [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(2369), - [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(2369), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2369), - [anon_sym_export_DASHenv] = ACTIONS(2369), - [anon_sym_extern] = ACTIONS(2369), - [anon_sym_module] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_error] = ACTIONS(2369), - [anon_sym_DASH2] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_in2] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_make] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_catch] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_source] = ACTIONS(2369), - [anon_sym_source_DASHenv] = ACTIONS(2369), - [anon_sym_register] = ACTIONS(2369), - [anon_sym_hide] = ACTIONS(2369), - [anon_sym_hide_DASHenv] = ACTIONS(2369), - [anon_sym_overlay] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_PLUS2] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [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(2369), - [aux_sym__val_number_token5] = ACTIONS(2369), - [aux_sym__val_number_token6] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), - [sym__entry_separator] = ACTIONS(2371), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_alias] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_DASHenv] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [aux_sym_cmd_identifier_token1] = ACTIONS(2363), + [aux_sym_cmd_identifier_token2] = ACTIONS(2363), + [aux_sym_cmd_identifier_token3] = ACTIONS(2363), + [aux_sym_cmd_identifier_token4] = ACTIONS(2363), + [aux_sym_cmd_identifier_token5] = ACTIONS(2363), + [aux_sym_cmd_identifier_token6] = ACTIONS(2363), + [aux_sym_cmd_identifier_token7] = ACTIONS(2363), + [aux_sym_cmd_identifier_token8] = ACTIONS(2363), + [aux_sym_cmd_identifier_token9] = ACTIONS(2363), + [aux_sym_cmd_identifier_token10] = ACTIONS(2363), + [aux_sym_cmd_identifier_token11] = ACTIONS(2363), + [aux_sym_cmd_identifier_token12] = ACTIONS(2363), + [aux_sym_cmd_identifier_token13] = ACTIONS(2363), + [aux_sym_cmd_identifier_token14] = ACTIONS(2363), + [aux_sym_cmd_identifier_token15] = ACTIONS(2363), + [aux_sym_cmd_identifier_token16] = ACTIONS(2363), + [aux_sym_cmd_identifier_token17] = ACTIONS(2363), + [aux_sym_cmd_identifier_token18] = ACTIONS(2363), + [aux_sym_cmd_identifier_token19] = ACTIONS(2363), + [aux_sym_cmd_identifier_token20] = ACTIONS(2363), + [aux_sym_cmd_identifier_token21] = ACTIONS(2363), + [aux_sym_cmd_identifier_token22] = ACTIONS(2363), + [aux_sym_cmd_identifier_token23] = ACTIONS(2363), + [aux_sym_cmd_identifier_token24] = ACTIONS(2363), + [aux_sym_cmd_identifier_token25] = ACTIONS(2363), + [aux_sym_cmd_identifier_token26] = ACTIONS(2363), + [aux_sym_cmd_identifier_token27] = ACTIONS(2363), + [aux_sym_cmd_identifier_token28] = ACTIONS(2363), + [aux_sym_cmd_identifier_token29] = ACTIONS(2363), + [aux_sym_cmd_identifier_token30] = ACTIONS(2363), + [aux_sym_cmd_identifier_token31] = ACTIONS(2363), + [aux_sym_cmd_identifier_token32] = ACTIONS(2363), + [aux_sym_cmd_identifier_token33] = ACTIONS(2363), + [aux_sym_cmd_identifier_token34] = ACTIONS(2363), + [aux_sym_cmd_identifier_token35] = ACTIONS(2363), + [aux_sym_cmd_identifier_token36] = ACTIONS(2363), + [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), + [anon_sym_def] = ACTIONS(2363), + [anon_sym_export_DASHenv] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_error] = ACTIONS(2363), + [anon_sym_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(2363), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_catch] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_source] = ACTIONS(2363), + [anon_sym_source_DASHenv] = ACTIONS(2363), + [anon_sym_register] = ACTIONS(2363), + [anon_sym_hide] = ACTIONS(2363), + [anon_sym_hide_DASHenv] = ACTIONS(2363), + [anon_sym_overlay] = ACTIONS(2363), + [anon_sym_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), + [aux_sym__val_number_decimal_token2] = ACTIONS(2363), + [aux_sym__val_number_decimal_token3] = ACTIONS(2363), + [aux_sym__val_number_decimal_token4] = ACTIONS(2363), + [aux_sym__val_number_token1] = ACTIONS(2363), + [aux_sym__val_number_token2] = ACTIONS(2363), + [aux_sym__val_number_token3] = ACTIONS(2363), + [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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2371), + [sym_raw_string_begin] = ACTIONS(2365), }, [614] = { [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_alias] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_let_DASHenv] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [aux_sym_cmd_identifier_token1] = ACTIONS(2373), - [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(2373), - [aux_sym_cmd_identifier_token9] = ACTIONS(2373), - [aux_sym_cmd_identifier_token10] = ACTIONS(2373), - [aux_sym_cmd_identifier_token11] = ACTIONS(2373), - [aux_sym_cmd_identifier_token12] = ACTIONS(2373), - [aux_sym_cmd_identifier_token13] = ACTIONS(2373), - [aux_sym_cmd_identifier_token14] = ACTIONS(2373), - [aux_sym_cmd_identifier_token15] = ACTIONS(2373), - [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(2373), - [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(2373), - [aux_sym_cmd_identifier_token39] = ACTIONS(2373), - [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_export_DASHenv] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_error] = ACTIONS(2373), - [anon_sym_DASH2] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_in2] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_make] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_catch] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_source] = ACTIONS(2373), - [anon_sym_source_DASHenv] = ACTIONS(2373), - [anon_sym_register] = ACTIONS(2373), - [anon_sym_hide] = ACTIONS(2373), - [anon_sym_hide_DASHenv] = ACTIONS(2373), - [anon_sym_overlay] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_PLUS2] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2373), - [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(2373), - [aux_sym__val_number_token5] = ACTIONS(2373), - [aux_sym__val_number_token6] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym__str_single_quotes] = ACTIONS(2373), - [sym__str_back_ticks] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), - [sym__entry_separator] = ACTIONS(2375), + [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(2375), + [sym_raw_string_begin] = ACTIONS(2369), }, [615] = { [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [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(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1925), + [aux_sym_cmd_identifier_token4] = ACTIONS(1925), + [aux_sym_cmd_identifier_token5] = ACTIONS(1925), + [aux_sym_cmd_identifier_token6] = ACTIONS(1925), + [aux_sym_cmd_identifier_token7] = ACTIONS(1925), + [aux_sym_cmd_identifier_token8] = ACTIONS(1925), + [aux_sym_cmd_identifier_token9] = ACTIONS(1925), + [aux_sym_cmd_identifier_token10] = ACTIONS(1925), + [aux_sym_cmd_identifier_token11] = ACTIONS(1925), + [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(1925), + [aux_sym_cmd_identifier_token17] = ACTIONS(1925), + [aux_sym_cmd_identifier_token18] = ACTIONS(1925), + [aux_sym_cmd_identifier_token19] = ACTIONS(1925), + [aux_sym_cmd_identifier_token20] = ACTIONS(1925), + [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(1925), + [aux_sym_cmd_identifier_token25] = ACTIONS(1925), + [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(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), + [aux_sym_cmd_identifier_token37] = ACTIONS(1925), + [aux_sym_cmd_identifier_token38] = ACTIONS(1925), + [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_LPAREN] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [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(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), + [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(1925), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), + [aux_sym__val_number_decimal_token1] = ACTIONS(1925), + [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), }, [616] = { [sym_comment] = STATE(616), + [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_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(1935), + }, + [617] = { + [sym_comment] = STATE(617), + [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), + }, + [618] = { + [sym_comment] = STATE(618), + [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), + }, + [619] = { + [sym_comment] = STATE(619), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_alias] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_let_DASHenv] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [aux_sym_cmd_identifier_token1] = ACTIONS(1937), + [aux_sym_cmd_identifier_token2] = ACTIONS(1937), + [aux_sym_cmd_identifier_token3] = ACTIONS(1937), + [aux_sym_cmd_identifier_token4] = ACTIONS(1937), + [aux_sym_cmd_identifier_token5] = ACTIONS(1937), + [aux_sym_cmd_identifier_token6] = ACTIONS(1937), + [aux_sym_cmd_identifier_token7] = ACTIONS(1937), + [aux_sym_cmd_identifier_token8] = ACTIONS(1937), + [aux_sym_cmd_identifier_token9] = ACTIONS(1937), + [aux_sym_cmd_identifier_token10] = ACTIONS(1937), + [aux_sym_cmd_identifier_token11] = ACTIONS(1937), + [aux_sym_cmd_identifier_token12] = ACTIONS(1937), + [aux_sym_cmd_identifier_token13] = ACTIONS(1937), + [aux_sym_cmd_identifier_token14] = ACTIONS(1937), + [aux_sym_cmd_identifier_token15] = ACTIONS(1937), + [aux_sym_cmd_identifier_token16] = ACTIONS(1937), + [aux_sym_cmd_identifier_token17] = ACTIONS(1937), + [aux_sym_cmd_identifier_token18] = ACTIONS(1937), + [aux_sym_cmd_identifier_token19] = ACTIONS(1937), + [aux_sym_cmd_identifier_token20] = ACTIONS(1937), + [aux_sym_cmd_identifier_token21] = ACTIONS(1937), + [aux_sym_cmd_identifier_token22] = ACTIONS(1937), + [aux_sym_cmd_identifier_token23] = ACTIONS(1937), + [aux_sym_cmd_identifier_token24] = ACTIONS(1937), + [aux_sym_cmd_identifier_token25] = ACTIONS(1937), + [aux_sym_cmd_identifier_token26] = ACTIONS(1937), + [aux_sym_cmd_identifier_token27] = ACTIONS(1937), + [aux_sym_cmd_identifier_token28] = ACTIONS(1937), + [aux_sym_cmd_identifier_token29] = ACTIONS(1937), + [aux_sym_cmd_identifier_token30] = ACTIONS(1937), + [aux_sym_cmd_identifier_token31] = ACTIONS(1937), + [aux_sym_cmd_identifier_token32] = ACTIONS(1937), + [aux_sym_cmd_identifier_token33] = ACTIONS(1937), + [aux_sym_cmd_identifier_token34] = ACTIONS(1937), + [aux_sym_cmd_identifier_token35] = ACTIONS(1937), + [aux_sym_cmd_identifier_token36] = ACTIONS(1937), + [aux_sym_cmd_identifier_token37] = ACTIONS(1937), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1937), + [aux_sym_cmd_identifier_token40] = ACTIONS(1937), + [anon_sym_def] = ACTIONS(1937), + [anon_sym_export_DASHenv] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_DOLLAR] = ACTIONS(1937), + [anon_sym_error] = ACTIONS(1937), + [anon_sym_DASH2] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_in2] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_make] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_else] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1937), + [anon_sym_catch] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_source] = ACTIONS(1937), + [anon_sym_source_DASHenv] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1937), + [anon_sym_hide] = ACTIONS(1937), + [anon_sym_hide_DASHenv] = ACTIONS(1937), + [anon_sym_overlay] = ACTIONS(1937), + [anon_sym_as] = ACTIONS(1937), + [anon_sym_PLUS2] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1937), + [aux_sym__val_number_decimal_token3] = ACTIONS(1937), + [aux_sym__val_number_decimal_token4] = ACTIONS(1937), + [aux_sym__val_number_token1] = ACTIONS(1937), + [aux_sym__val_number_token2] = ACTIONS(1937), + [aux_sym__val_number_token3] = ACTIONS(1937), + [aux_sym__val_number_token4] = ACTIONS(1937), + [aux_sym__val_number_token5] = ACTIONS(1937), + [aux_sym__val_number_token6] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1937), + [sym__str_single_quotes] = ACTIONS(1937), + [sym__str_back_ticks] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), + [sym__entry_separator] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1939), + }, + [620] = { + [sym_comment] = STATE(620), [anon_sym_export] = ACTIONS(2379), [anon_sym_alias] = ACTIONS(2379), [anon_sym_let] = ACTIONS(2379), @@ -149348,8 +152251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2381), }, - [617] = { - [sym_comment] = STATE(617), + [621] = { + [sym_comment] = STATE(621), [anon_sym_export] = ACTIONS(2383), [anon_sym_alias] = ACTIONS(2383), [anon_sym_let] = ACTIONS(2383), @@ -149448,8 +152351,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2385), }, - [618] = { - [sym_comment] = STATE(618), + [622] = { + [sym_comment] = STATE(622), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [aux_sym_cmd_identifier_token1] = ACTIONS(1687), + [aux_sym_cmd_identifier_token2] = ACTIONS(1687), + [aux_sym_cmd_identifier_token3] = ACTIONS(1687), + [aux_sym_cmd_identifier_token4] = ACTIONS(1687), + [aux_sym_cmd_identifier_token5] = ACTIONS(1687), + [aux_sym_cmd_identifier_token6] = ACTIONS(1687), + [aux_sym_cmd_identifier_token7] = ACTIONS(1687), + [aux_sym_cmd_identifier_token8] = ACTIONS(1687), + [aux_sym_cmd_identifier_token9] = ACTIONS(1687), + [aux_sym_cmd_identifier_token10] = ACTIONS(1687), + [aux_sym_cmd_identifier_token11] = ACTIONS(1687), + [aux_sym_cmd_identifier_token12] = ACTIONS(1687), + [aux_sym_cmd_identifier_token13] = ACTIONS(1687), + [aux_sym_cmd_identifier_token14] = ACTIONS(1687), + [aux_sym_cmd_identifier_token15] = ACTIONS(1687), + [aux_sym_cmd_identifier_token16] = ACTIONS(1687), + [aux_sym_cmd_identifier_token17] = ACTIONS(1687), + [aux_sym_cmd_identifier_token18] = ACTIONS(1687), + [aux_sym_cmd_identifier_token19] = ACTIONS(1687), + [aux_sym_cmd_identifier_token20] = ACTIONS(1687), + [aux_sym_cmd_identifier_token21] = ACTIONS(1687), + [aux_sym_cmd_identifier_token22] = ACTIONS(1687), + [aux_sym_cmd_identifier_token23] = ACTIONS(1687), + [aux_sym_cmd_identifier_token24] = ACTIONS(1687), + [aux_sym_cmd_identifier_token25] = ACTIONS(1687), + [aux_sym_cmd_identifier_token26] = ACTIONS(1687), + [aux_sym_cmd_identifier_token27] = ACTIONS(1687), + [aux_sym_cmd_identifier_token28] = ACTIONS(1687), + [aux_sym_cmd_identifier_token29] = ACTIONS(1687), + [aux_sym_cmd_identifier_token30] = ACTIONS(1687), + [aux_sym_cmd_identifier_token31] = ACTIONS(1687), + [aux_sym_cmd_identifier_token32] = ACTIONS(1687), + [aux_sym_cmd_identifier_token33] = ACTIONS(1687), + [aux_sym_cmd_identifier_token34] = ACTIONS(1687), + [aux_sym_cmd_identifier_token35] = ACTIONS(1687), + [aux_sym_cmd_identifier_token36] = ACTIONS(1687), + [aux_sym_cmd_identifier_token37] = ACTIONS(1687), + [aux_sym_cmd_identifier_token38] = ACTIONS(1687), + [aux_sym_cmd_identifier_token39] = ACTIONS(1687), + [aux_sym_cmd_identifier_token40] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_make] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), + [sym__entry_separator] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [623] = { + [sym_comment] = STATE(623), [anon_sym_export] = ACTIONS(2387), [anon_sym_alias] = ACTIONS(2387), [anon_sym_let] = ACTIONS(2387), @@ -149548,408 +152551,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2389), }, - [619] = { - [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(1695), - [anon_sym_alias] = ACTIONS(1695), - [anon_sym_let] = ACTIONS(1695), - [anon_sym_let_DASHenv] = ACTIONS(1695), - [anon_sym_mut] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [aux_sym_cmd_identifier_token1] = ACTIONS(1695), - [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(1695), - [aux_sym_cmd_identifier_token9] = ACTIONS(1695), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1695), - [aux_sym_cmd_identifier_token13] = ACTIONS(1695), - [aux_sym_cmd_identifier_token14] = ACTIONS(1695), - [aux_sym_cmd_identifier_token15] = ACTIONS(1695), - [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(1695), - [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(1695), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1695), - [anon_sym_export_DASHenv] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_module] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_loop] = ACTIONS(1695), - [anon_sym_make] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_catch] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_source] = ACTIONS(1695), - [anon_sym_source_DASHenv] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_hide] = ACTIONS(1695), - [anon_sym_hide_DASHenv] = ACTIONS(1695), - [anon_sym_overlay] = ACTIONS(1695), - [anon_sym_as] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1695), - [aux_sym__val_number_token5] = ACTIONS(1695), - [aux_sym__val_number_token6] = ACTIONS(1695), - [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), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), + [624] = { + [sym_comment] = STATE(624), + [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_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(2078), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2078), }, - [620] = { - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2339), - [anon_sym_alias] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_let_DASHenv] = ACTIONS(2339), - [anon_sym_mut] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [aux_sym_cmd_identifier_token1] = ACTIONS(2339), - [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(2339), - [aux_sym_cmd_identifier_token9] = ACTIONS(2339), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2339), - [aux_sym_cmd_identifier_token13] = ACTIONS(2339), - [aux_sym_cmd_identifier_token14] = ACTIONS(2339), - [aux_sym_cmd_identifier_token15] = ACTIONS(2339), - [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(2339), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [aux_sym_cmd_identifier_token37] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2339), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2339), - [anon_sym_export_DASHenv] = ACTIONS(2339), - [anon_sym_extern] = ACTIONS(2339), - [anon_sym_module] = ACTIONS(2339), - [anon_sym_use] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_in2] = ACTIONS(2339), - [anon_sym_loop] = ACTIONS(2339), - [anon_sym_make] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_do] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_else] = ACTIONS(2339), - [anon_sym_match] = ACTIONS(2339), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2339), - [anon_sym_catch] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_source] = ACTIONS(2339), - [anon_sym_source_DASHenv] = ACTIONS(2339), - [anon_sym_register] = ACTIONS(2339), - [anon_sym_hide] = ACTIONS(2339), - [anon_sym_hide_DASHenv] = ACTIONS(2339), - [anon_sym_overlay] = ACTIONS(2339), - [anon_sym_as] = ACTIONS(2339), - [anon_sym_LPAREN2] = ACTIONS(2341), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2339), - [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(2339), - [aux_sym__val_number_token5] = ACTIONS(2339), - [aux_sym__val_number_token6] = ACTIONS(2339), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2341), + [625] = { + [sym_comment] = STATE(625), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1779), + [aux_sym_cmd_identifier_token3] = ACTIONS(1779), + [aux_sym_cmd_identifier_token4] = ACTIONS(1779), + [aux_sym_cmd_identifier_token5] = ACTIONS(1779), + [aux_sym_cmd_identifier_token6] = ACTIONS(1779), + [aux_sym_cmd_identifier_token7] = ACTIONS(1779), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1779), + [aux_sym_cmd_identifier_token11] = ACTIONS(1779), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1779), + [aux_sym_cmd_identifier_token17] = ACTIONS(1779), + [aux_sym_cmd_identifier_token18] = ACTIONS(1779), + [aux_sym_cmd_identifier_token19] = ACTIONS(1779), + [aux_sym_cmd_identifier_token20] = ACTIONS(1779), + [aux_sym_cmd_identifier_token21] = ACTIONS(1779), + [aux_sym_cmd_identifier_token22] = ACTIONS(1779), + [aux_sym_cmd_identifier_token23] = ACTIONS(1779), + [aux_sym_cmd_identifier_token24] = ACTIONS(1779), + [aux_sym_cmd_identifier_token25] = ACTIONS(1779), + [aux_sym_cmd_identifier_token26] = ACTIONS(1779), + [aux_sym_cmd_identifier_token27] = ACTIONS(1779), + [aux_sym_cmd_identifier_token28] = ACTIONS(1779), + [aux_sym_cmd_identifier_token29] = ACTIONS(1779), + [aux_sym_cmd_identifier_token30] = ACTIONS(1779), + [aux_sym_cmd_identifier_token31] = ACTIONS(1779), + [aux_sym_cmd_identifier_token32] = ACTIONS(1779), + [aux_sym_cmd_identifier_token33] = ACTIONS(1779), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1779), + [aux_sym_cmd_identifier_token36] = ACTIONS(1779), + [aux_sym_cmd_identifier_token37] = ACTIONS(1779), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1779), + [aux_sym_cmd_identifier_token40] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1779), + [aux_sym__val_number_decimal_token3] = ACTIONS(1779), + [aux_sym__val_number_decimal_token4] = ACTIONS(1779), + [aux_sym__val_number_token1] = ACTIONS(1779), + [aux_sym__val_number_token2] = ACTIONS(1779), + [aux_sym__val_number_token3] = ACTIONS(1779), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [sym__str_single_quotes] = ACTIONS(1779), + [sym__str_back_ticks] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), + [sym__entry_separator] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1781), }, - [621] = { - [sym_comment] = STATE(621), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in2] = 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_as] = ACTIONS(1038), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = 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), + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [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(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [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(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(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = 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(1771), + [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), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(1773), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), + [sym_raw_string_begin] = ACTIONS(1773), }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_alias] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_let_DASHenv] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [aux_sym_cmd_identifier_token1] = ACTIONS(1889), - [aux_sym_cmd_identifier_token2] = ACTIONS(1889), - [aux_sym_cmd_identifier_token3] = ACTIONS(1889), - [aux_sym_cmd_identifier_token4] = ACTIONS(1889), - [aux_sym_cmd_identifier_token5] = ACTIONS(1889), - [aux_sym_cmd_identifier_token6] = ACTIONS(1889), - [aux_sym_cmd_identifier_token7] = ACTIONS(1889), - [aux_sym_cmd_identifier_token8] = ACTIONS(1889), - [aux_sym_cmd_identifier_token9] = ACTIONS(1889), - [aux_sym_cmd_identifier_token10] = ACTIONS(1889), - [aux_sym_cmd_identifier_token11] = ACTIONS(1889), - [aux_sym_cmd_identifier_token12] = ACTIONS(1889), - [aux_sym_cmd_identifier_token13] = ACTIONS(1889), - [aux_sym_cmd_identifier_token14] = ACTIONS(1889), - [aux_sym_cmd_identifier_token15] = ACTIONS(1889), - [aux_sym_cmd_identifier_token16] = ACTIONS(1889), - [aux_sym_cmd_identifier_token17] = ACTIONS(1889), - [aux_sym_cmd_identifier_token18] = ACTIONS(1889), - [aux_sym_cmd_identifier_token19] = ACTIONS(1889), - [aux_sym_cmd_identifier_token20] = ACTIONS(1889), - [aux_sym_cmd_identifier_token21] = ACTIONS(1889), - [aux_sym_cmd_identifier_token22] = ACTIONS(1889), - [aux_sym_cmd_identifier_token23] = ACTIONS(1889), - [aux_sym_cmd_identifier_token24] = ACTIONS(1889), - [aux_sym_cmd_identifier_token25] = ACTIONS(1889), - [aux_sym_cmd_identifier_token26] = ACTIONS(1889), - [aux_sym_cmd_identifier_token27] = ACTIONS(1889), - [aux_sym_cmd_identifier_token28] = ACTIONS(1889), - [aux_sym_cmd_identifier_token29] = ACTIONS(1889), - [aux_sym_cmd_identifier_token30] = ACTIONS(1889), - [aux_sym_cmd_identifier_token31] = ACTIONS(1889), - [aux_sym_cmd_identifier_token32] = ACTIONS(1889), - [aux_sym_cmd_identifier_token33] = ACTIONS(1889), - [aux_sym_cmd_identifier_token34] = ACTIONS(1889), - [aux_sym_cmd_identifier_token35] = ACTIONS(1889), - [aux_sym_cmd_identifier_token36] = ACTIONS(1889), - [aux_sym_cmd_identifier_token37] = ACTIONS(1889), - [aux_sym_cmd_identifier_token38] = ACTIONS(1889), - [aux_sym_cmd_identifier_token39] = ACTIONS(1889), - [aux_sym_cmd_identifier_token40] = ACTIONS(1889), - [anon_sym_def] = ACTIONS(1889), - [anon_sym_export_DASHenv] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_error] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_in2] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_make] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_catch] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_source] = ACTIONS(1889), - [anon_sym_source_DASHenv] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_hide] = ACTIONS(1889), - [anon_sym_hide_DASHenv] = ACTIONS(1889), - [anon_sym_overlay] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1889), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), - [sym__entry_separator] = ACTIONS(1891), + [627] = { + [sym_comment] = STATE(627), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [sym__entry_separator] = ACTIONS(1801), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1891), + [sym_raw_string_begin] = ACTIONS(1801), }, - [623] = { - [sym_comment] = STATE(623), + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1818), + [aux_sym_cmd_identifier_token3] = ACTIONS(1818), + [aux_sym_cmd_identifier_token4] = ACTIONS(1818), + [aux_sym_cmd_identifier_token5] = ACTIONS(1818), + [aux_sym_cmd_identifier_token6] = ACTIONS(1818), + [aux_sym_cmd_identifier_token7] = ACTIONS(1818), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1818), + [aux_sym_cmd_identifier_token11] = ACTIONS(1818), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1818), + [aux_sym_cmd_identifier_token17] = ACTIONS(1818), + [aux_sym_cmd_identifier_token18] = ACTIONS(1818), + [aux_sym_cmd_identifier_token19] = ACTIONS(1818), + [aux_sym_cmd_identifier_token20] = ACTIONS(1818), + [aux_sym_cmd_identifier_token21] = ACTIONS(1818), + [aux_sym_cmd_identifier_token22] = ACTIONS(1818), + [aux_sym_cmd_identifier_token23] = ACTIONS(1818), + [aux_sym_cmd_identifier_token24] = ACTIONS(1818), + [aux_sym_cmd_identifier_token25] = ACTIONS(1818), + [aux_sym_cmd_identifier_token26] = ACTIONS(1818), + [aux_sym_cmd_identifier_token27] = ACTIONS(1818), + [aux_sym_cmd_identifier_token28] = ACTIONS(1818), + [aux_sym_cmd_identifier_token29] = ACTIONS(1818), + [aux_sym_cmd_identifier_token30] = ACTIONS(1818), + [aux_sym_cmd_identifier_token31] = ACTIONS(1818), + [aux_sym_cmd_identifier_token32] = ACTIONS(1818), + [aux_sym_cmd_identifier_token33] = ACTIONS(1818), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1818), + [aux_sym_cmd_identifier_token36] = ACTIONS(1818), + [aux_sym_cmd_identifier_token37] = ACTIONS(1818), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1818), + [aux_sym_cmd_identifier_token40] = ACTIONS(1818), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1818), + [aux_sym__val_number_decimal_token3] = ACTIONS(1818), + [aux_sym__val_number_decimal_token4] = ACTIONS(1818), + [aux_sym__val_number_token1] = ACTIONS(1818), + [aux_sym__val_number_token2] = ACTIONS(1818), + [aux_sym__val_number_token3] = ACTIONS(1818), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym__str_single_quotes] = ACTIONS(1818), + [sym__str_back_ticks] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), + [sym__entry_separator] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [629] = { + [sym_comment] = STATE(629), [anon_sym_export] = ACTIONS(2391), [anon_sym_alias] = ACTIONS(2391), [anon_sym_let] = ACTIONS(2391), @@ -150048,208 +153151,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2393), }, - [624] = { - [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [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(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [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(1785), - [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(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(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_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [sym__entry_separator] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [625] = { - [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(2088), - [anon_sym_alias] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_let_DASHenv] = ACTIONS(2088), - [anon_sym_mut] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [aux_sym_cmd_identifier_token1] = ACTIONS(2088), - [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(2088), - [aux_sym_cmd_identifier_token9] = ACTIONS(2088), - [aux_sym_cmd_identifier_token10] = ACTIONS(2088), - [aux_sym_cmd_identifier_token11] = ACTIONS(2088), - [aux_sym_cmd_identifier_token12] = ACTIONS(2088), - [aux_sym_cmd_identifier_token13] = ACTIONS(2088), - [aux_sym_cmd_identifier_token14] = ACTIONS(2088), - [aux_sym_cmd_identifier_token15] = ACTIONS(2088), - [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(2088), - [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(2088), - [aux_sym_cmd_identifier_token39] = ACTIONS(2088), - [aux_sym_cmd_identifier_token40] = ACTIONS(2088), - [anon_sym_def] = ACTIONS(2088), - [anon_sym_export_DASHenv] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_module] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_error] = ACTIONS(2088), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_in2] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_make] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_do] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_else] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [anon_sym_catch] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_source] = ACTIONS(2088), - [anon_sym_source_DASHenv] = ACTIONS(2088), - [anon_sym_register] = ACTIONS(2088), - [anon_sym_hide] = ACTIONS(2088), - [anon_sym_hide_DASHenv] = ACTIONS(2088), - [anon_sym_overlay] = ACTIONS(2088), - [anon_sym_as] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2088), - [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(2088), - [aux_sym__val_number_token5] = ACTIONS(2088), - [aux_sym__val_number_token6] = ACTIONS(2088), - [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), - [sym__entry_separator] = ACTIONS(2094), + [630] = { + [sym_comment] = STATE(630), + [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(2094), + [sym_raw_string_begin] = ACTIONS(2393), }, - [626] = { - [sym_comment] = STATE(626), + [631] = { + [sym_comment] = STATE(631), [anon_sym_export] = ACTIONS(2395), [anon_sym_alias] = ACTIONS(2395), [anon_sym_let] = ACTIONS(2395), @@ -150348,308 +153351,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2397), }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1793), - [aux_sym_cmd_identifier_token3] = ACTIONS(1793), - [aux_sym_cmd_identifier_token4] = ACTIONS(1793), - [aux_sym_cmd_identifier_token5] = ACTIONS(1793), - [aux_sym_cmd_identifier_token6] = ACTIONS(1793), - [aux_sym_cmd_identifier_token7] = ACTIONS(1793), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1793), - [aux_sym_cmd_identifier_token11] = ACTIONS(1793), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1793), - [aux_sym_cmd_identifier_token17] = ACTIONS(1793), - [aux_sym_cmd_identifier_token18] = ACTIONS(1793), - [aux_sym_cmd_identifier_token19] = ACTIONS(1793), - [aux_sym_cmd_identifier_token20] = ACTIONS(1793), - [aux_sym_cmd_identifier_token21] = ACTIONS(1793), - [aux_sym_cmd_identifier_token22] = ACTIONS(1793), - [aux_sym_cmd_identifier_token23] = ACTIONS(1793), - [aux_sym_cmd_identifier_token24] = ACTIONS(1793), - [aux_sym_cmd_identifier_token25] = ACTIONS(1793), - [aux_sym_cmd_identifier_token26] = ACTIONS(1793), - [aux_sym_cmd_identifier_token27] = ACTIONS(1793), - [aux_sym_cmd_identifier_token28] = ACTIONS(1793), - [aux_sym_cmd_identifier_token29] = ACTIONS(1793), - [aux_sym_cmd_identifier_token30] = ACTIONS(1793), - [aux_sym_cmd_identifier_token31] = ACTIONS(1793), - [aux_sym_cmd_identifier_token32] = ACTIONS(1793), - [aux_sym_cmd_identifier_token33] = ACTIONS(1793), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1793), - [aux_sym_cmd_identifier_token36] = ACTIONS(1793), - [aux_sym_cmd_identifier_token37] = ACTIONS(1793), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1793), - [aux_sym_cmd_identifier_token40] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1793), - [aux_sym__val_number_decimal_token3] = ACTIONS(1793), - [aux_sym__val_number_decimal_token4] = ACTIONS(1793), - [aux_sym__val_number_token1] = ACTIONS(1793), - [aux_sym__val_number_token2] = ACTIONS(1793), - [aux_sym__val_number_token3] = ACTIONS(1793), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1793), - [sym__str_single_quotes] = ACTIONS(1793), - [sym__str_back_ticks] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), - [sym__entry_separator] = ACTIONS(1795), + [632] = { + [sym_comment] = STATE(632), + [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(2096), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1795), + [sym_raw_string_begin] = ACTIONS(2096), }, - [628] = { - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [sym__entry_separator] = ACTIONS(1803), + [633] = { + [sym_comment] = STATE(633), + [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_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(2104), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1803), + [sym_raw_string_begin] = ACTIONS(2104), }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(1824), - [aux_sym_cmd_identifier_token3] = ACTIONS(1824), - [aux_sym_cmd_identifier_token4] = ACTIONS(1824), - [aux_sym_cmd_identifier_token5] = ACTIONS(1824), - [aux_sym_cmd_identifier_token6] = ACTIONS(1824), - [aux_sym_cmd_identifier_token7] = ACTIONS(1824), - [aux_sym_cmd_identifier_token8] = ACTIONS(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1824), - [aux_sym_cmd_identifier_token11] = ACTIONS(1824), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(1824), - [aux_sym_cmd_identifier_token17] = ACTIONS(1824), - [aux_sym_cmd_identifier_token18] = ACTIONS(1824), - [aux_sym_cmd_identifier_token19] = ACTIONS(1824), - [aux_sym_cmd_identifier_token20] = ACTIONS(1824), - [aux_sym_cmd_identifier_token21] = ACTIONS(1824), - [aux_sym_cmd_identifier_token22] = ACTIONS(1824), - [aux_sym_cmd_identifier_token23] = ACTIONS(1824), - [aux_sym_cmd_identifier_token24] = ACTIONS(1824), - [aux_sym_cmd_identifier_token25] = ACTIONS(1824), - [aux_sym_cmd_identifier_token26] = ACTIONS(1824), - [aux_sym_cmd_identifier_token27] = ACTIONS(1824), - [aux_sym_cmd_identifier_token28] = ACTIONS(1824), - [aux_sym_cmd_identifier_token29] = ACTIONS(1824), - [aux_sym_cmd_identifier_token30] = ACTIONS(1824), - [aux_sym_cmd_identifier_token31] = ACTIONS(1824), - [aux_sym_cmd_identifier_token32] = ACTIONS(1824), - [aux_sym_cmd_identifier_token33] = ACTIONS(1824), - [aux_sym_cmd_identifier_token34] = ACTIONS(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1824), - [aux_sym_cmd_identifier_token36] = ACTIONS(1824), - [aux_sym_cmd_identifier_token37] = ACTIONS(1824), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1824), - [aux_sym_cmd_identifier_token40] = ACTIONS(1824), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1824), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1824), - [aux_sym__val_number_decimal_token3] = ACTIONS(1824), - [aux_sym__val_number_decimal_token4] = ACTIONS(1824), - [aux_sym__val_number_token1] = ACTIONS(1824), - [aux_sym__val_number_token2] = ACTIONS(1824), - [aux_sym__val_number_token3] = ACTIONS(1824), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym__str_single_quotes] = ACTIONS(1824), - [sym__str_back_ticks] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1824), - [sym__entry_separator] = ACTIONS(1826), + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [aux_sym_cmd_identifier_token1] = ACTIONS(2131), + [aux_sym_cmd_identifier_token2] = ACTIONS(2131), + [aux_sym_cmd_identifier_token3] = ACTIONS(2131), + [aux_sym_cmd_identifier_token4] = ACTIONS(2131), + [aux_sym_cmd_identifier_token5] = ACTIONS(2131), + [aux_sym_cmd_identifier_token6] = ACTIONS(2131), + [aux_sym_cmd_identifier_token7] = ACTIONS(2131), + [aux_sym_cmd_identifier_token8] = ACTIONS(2131), + [aux_sym_cmd_identifier_token9] = ACTIONS(2131), + [aux_sym_cmd_identifier_token10] = ACTIONS(2131), + [aux_sym_cmd_identifier_token11] = ACTIONS(2131), + [aux_sym_cmd_identifier_token12] = ACTIONS(2131), + [aux_sym_cmd_identifier_token13] = ACTIONS(2131), + [aux_sym_cmd_identifier_token14] = ACTIONS(2131), + [aux_sym_cmd_identifier_token15] = ACTIONS(2131), + [aux_sym_cmd_identifier_token16] = ACTIONS(2131), + [aux_sym_cmd_identifier_token17] = ACTIONS(2131), + [aux_sym_cmd_identifier_token18] = ACTIONS(2131), + [aux_sym_cmd_identifier_token19] = ACTIONS(2131), + [aux_sym_cmd_identifier_token20] = ACTIONS(2131), + [aux_sym_cmd_identifier_token21] = ACTIONS(2131), + [aux_sym_cmd_identifier_token22] = ACTIONS(2131), + [aux_sym_cmd_identifier_token23] = ACTIONS(2131), + [aux_sym_cmd_identifier_token24] = ACTIONS(2131), + [aux_sym_cmd_identifier_token25] = ACTIONS(2131), + [aux_sym_cmd_identifier_token26] = ACTIONS(2131), + [aux_sym_cmd_identifier_token27] = ACTIONS(2131), + [aux_sym_cmd_identifier_token28] = ACTIONS(2131), + [aux_sym_cmd_identifier_token29] = ACTIONS(2131), + [aux_sym_cmd_identifier_token30] = ACTIONS(2131), + [aux_sym_cmd_identifier_token31] = ACTIONS(2131), + [aux_sym_cmd_identifier_token32] = ACTIONS(2131), + [aux_sym_cmd_identifier_token33] = ACTIONS(2131), + [aux_sym_cmd_identifier_token34] = ACTIONS(2131), + [aux_sym_cmd_identifier_token35] = ACTIONS(2131), + [aux_sym_cmd_identifier_token36] = ACTIONS(2131), + [aux_sym_cmd_identifier_token37] = ACTIONS(2131), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2131), + [aux_sym_cmd_identifier_token40] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_DASH2] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_in2] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_make] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_catch] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_PLUS2] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2131), + [aux_sym__val_number_decimal_token3] = ACTIONS(2131), + [aux_sym__val_number_decimal_token4] = ACTIONS(2131), + [aux_sym__val_number_token1] = ACTIONS(2131), + [aux_sym__val_number_token2] = ACTIONS(2131), + [aux_sym__val_number_token3] = ACTIONS(2131), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [sym__str_single_quotes] = ACTIONS(2131), + [sym__str_back_ticks] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), + [sym__entry_separator] = ACTIONS(2137), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1826), + [sym_raw_string_begin] = ACTIONS(2137), }, - [630] = { - [sym_comment] = STATE(630), + [635] = { + [sym_comment] = STATE(635), [anon_sym_export] = ACTIONS(2399), [anon_sym_alias] = ACTIONS(2399), [anon_sym_let] = ACTIONS(2399), @@ -150748,8 +153751,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2401), }, - [631] = { - [sym_comment] = STATE(631), + [636] = { + [sym_comment] = STATE(636), [anon_sym_export] = ACTIONS(2403), [anon_sym_alias] = ACTIONS(2403), [anon_sym_let] = ACTIONS(2403), @@ -150848,8 +153851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2405), }, - [632] = { - [sym_comment] = STATE(632), + [637] = { + [sym_comment] = STATE(637), [anon_sym_export] = ACTIONS(2407), [anon_sym_alias] = ACTIONS(2407), [anon_sym_let] = ACTIONS(2407), @@ -150948,4708 +153951,2108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2409), }, - [633] = { - [sym_comment] = STATE(633), - [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(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(2333), - [aux_sym_cmd_identifier_token9] = ACTIONS(2333), - [aux_sym_cmd_identifier_token10] = ACTIONS(2337), - [aux_sym_cmd_identifier_token11] = ACTIONS(2337), - [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(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(2333), - [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(2333), - [aux_sym_cmd_identifier_token39] = ACTIONS(2337), - [aux_sym_cmd_identifier_token40] = ACTIONS(2337), - [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(2337), - [anon_sym_DOLLAR] = ACTIONS(2337), - [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(2337), - [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_PLUS2] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), - [aux_sym__val_number_decimal_token1] = ACTIONS(2333), - [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(2333), - [aux_sym__val_number_token5] = ACTIONS(2333), - [aux_sym__val_number_token6] = ACTIONS(2333), - [anon_sym_LBRACK2] = ACTIONS(2411), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2337), - }, - [634] = { - [sym_comment] = STATE(634), - [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), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in2] = 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_as] = ACTIONS(1897), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1899), - }, - [635] = { - [sym_comment] = STATE(635), - [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(2415), - }, - [636] = { - [sym_comment] = STATE(636), - [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(2343), - [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_LPAREN2] = ACTIONS(2345), - [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(251), - [sym_raw_string_begin] = ACTIONS(2345), - }, - [637] = { - [sym_comment] = STATE(637), - [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), - }, [638] = { [sym_comment] = STATE(638), - [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_export] = ACTIONS(2411), + [anon_sym_alias] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_DASHenv] = ACTIONS(2411), + [anon_sym_mut] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [aux_sym_cmd_identifier_token1] = ACTIONS(2411), + [aux_sym_cmd_identifier_token2] = ACTIONS(2411), + [aux_sym_cmd_identifier_token3] = ACTIONS(2411), + [aux_sym_cmd_identifier_token4] = ACTIONS(2411), + [aux_sym_cmd_identifier_token5] = ACTIONS(2411), + [aux_sym_cmd_identifier_token6] = ACTIONS(2411), + [aux_sym_cmd_identifier_token7] = ACTIONS(2411), + [aux_sym_cmd_identifier_token8] = ACTIONS(2411), + [aux_sym_cmd_identifier_token9] = ACTIONS(2411), + [aux_sym_cmd_identifier_token10] = ACTIONS(2411), + [aux_sym_cmd_identifier_token11] = ACTIONS(2411), + [aux_sym_cmd_identifier_token12] = ACTIONS(2411), + [aux_sym_cmd_identifier_token13] = ACTIONS(2411), + [aux_sym_cmd_identifier_token14] = ACTIONS(2411), + [aux_sym_cmd_identifier_token15] = ACTIONS(2411), + [aux_sym_cmd_identifier_token16] = ACTIONS(2411), + [aux_sym_cmd_identifier_token17] = ACTIONS(2411), + [aux_sym_cmd_identifier_token18] = ACTIONS(2411), + [aux_sym_cmd_identifier_token19] = ACTIONS(2411), + [aux_sym_cmd_identifier_token20] = ACTIONS(2411), + [aux_sym_cmd_identifier_token21] = ACTIONS(2411), + [aux_sym_cmd_identifier_token22] = ACTIONS(2411), + [aux_sym_cmd_identifier_token23] = ACTIONS(2411), + [aux_sym_cmd_identifier_token24] = ACTIONS(2411), + [aux_sym_cmd_identifier_token25] = ACTIONS(2411), + [aux_sym_cmd_identifier_token26] = ACTIONS(2411), + [aux_sym_cmd_identifier_token27] = ACTIONS(2411), + [aux_sym_cmd_identifier_token28] = ACTIONS(2411), + [aux_sym_cmd_identifier_token29] = ACTIONS(2411), + [aux_sym_cmd_identifier_token30] = ACTIONS(2411), + [aux_sym_cmd_identifier_token31] = ACTIONS(2411), + [aux_sym_cmd_identifier_token32] = ACTIONS(2411), + [aux_sym_cmd_identifier_token33] = ACTIONS(2411), + [aux_sym_cmd_identifier_token34] = ACTIONS(2411), + [aux_sym_cmd_identifier_token35] = ACTIONS(2411), + [aux_sym_cmd_identifier_token36] = ACTIONS(2411), + [aux_sym_cmd_identifier_token37] = ACTIONS(2411), + [aux_sym_cmd_identifier_token38] = ACTIONS(2411), + [aux_sym_cmd_identifier_token39] = ACTIONS(2411), + [aux_sym_cmd_identifier_token40] = ACTIONS(2411), + [anon_sym_def] = ACTIONS(2411), + [anon_sym_export_DASHenv] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym_module] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_error] = ACTIONS(2411), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_in2] = ACTIONS(2411), + [anon_sym_loop] = ACTIONS(2411), + [anon_sym_make] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_source] = ACTIONS(2411), + [anon_sym_source_DASHenv] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_hide] = ACTIONS(2411), + [anon_sym_hide_DASHenv] = ACTIONS(2411), + [anon_sym_overlay] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), + [aux_sym__val_number_decimal_token1] = ACTIONS(2411), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2411), + [aux_sym__val_number_decimal_token4] = ACTIONS(2411), + [aux_sym__val_number_token1] = ACTIONS(2411), + [aux_sym__val_number_token2] = ACTIONS(2411), + [aux_sym__val_number_token3] = ACTIONS(2411), + [aux_sym__val_number_token4] = ACTIONS(2411), + [aux_sym__val_number_token5] = ACTIONS(2411), + [aux_sym__val_number_token6] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [sym__str_single_quotes] = ACTIONS(2411), + [sym__str_back_ticks] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), + [sym__entry_separator] = ACTIONS(2413), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2419), + [sym_raw_string_begin] = ACTIONS(2413), }, [639] = { [sym_comment] = STATE(639), - [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_export] = ACTIONS(2415), + [anon_sym_alias] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_let_DASHenv] = ACTIONS(2415), + [anon_sym_mut] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [aux_sym_cmd_identifier_token1] = ACTIONS(2415), + [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(2415), + [aux_sym_cmd_identifier_token9] = ACTIONS(2415), + [aux_sym_cmd_identifier_token10] = ACTIONS(2415), + [aux_sym_cmd_identifier_token11] = ACTIONS(2415), + [aux_sym_cmd_identifier_token12] = ACTIONS(2415), + [aux_sym_cmd_identifier_token13] = ACTIONS(2415), + [aux_sym_cmd_identifier_token14] = ACTIONS(2415), + [aux_sym_cmd_identifier_token15] = ACTIONS(2415), + [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(2415), + [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(2415), + [aux_sym_cmd_identifier_token39] = ACTIONS(2415), + [aux_sym_cmd_identifier_token40] = ACTIONS(2415), + [anon_sym_def] = ACTIONS(2415), + [anon_sym_export_DASHenv] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym_module] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_error] = ACTIONS(2415), + [anon_sym_DASH2] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_in2] = ACTIONS(2415), + [anon_sym_loop] = ACTIONS(2415), + [anon_sym_make] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_else] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_catch] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_source] = ACTIONS(2415), + [anon_sym_source_DASHenv] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2415), + [anon_sym_hide] = ACTIONS(2415), + [anon_sym_hide_DASHenv] = ACTIONS(2415), + [anon_sym_overlay] = ACTIONS(2415), + [anon_sym_as] = ACTIONS(2415), + [anon_sym_PLUS2] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), + [aux_sym__val_number_decimal_token1] = ACTIONS(2415), + [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(2415), + [aux_sym__val_number_token5] = ACTIONS(2415), + [aux_sym__val_number_token6] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(2415), + [sym__str_single_quotes] = ACTIONS(2415), + [sym__str_back_ticks] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), + [sym__entry_separator] = ACTIONS(2417), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2423), + [sym_raw_string_begin] = ACTIONS(2417), }, [640] = { [sym_comment] = STATE(640), - [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_export] = ACTIONS(2419), + [anon_sym_alias] = ACTIONS(2419), + [anon_sym_let] = ACTIONS(2419), + [anon_sym_let_DASHenv] = ACTIONS(2419), + [anon_sym_mut] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [aux_sym_cmd_identifier_token1] = ACTIONS(2419), + [aux_sym_cmd_identifier_token2] = ACTIONS(2419), + [aux_sym_cmd_identifier_token3] = ACTIONS(2419), + [aux_sym_cmd_identifier_token4] = ACTIONS(2419), + [aux_sym_cmd_identifier_token5] = ACTIONS(2419), + [aux_sym_cmd_identifier_token6] = ACTIONS(2419), + [aux_sym_cmd_identifier_token7] = ACTIONS(2419), + [aux_sym_cmd_identifier_token8] = ACTIONS(2419), + [aux_sym_cmd_identifier_token9] = ACTIONS(2419), + [aux_sym_cmd_identifier_token10] = ACTIONS(2419), + [aux_sym_cmd_identifier_token11] = ACTIONS(2419), + [aux_sym_cmd_identifier_token12] = ACTIONS(2419), + [aux_sym_cmd_identifier_token13] = ACTIONS(2419), + [aux_sym_cmd_identifier_token14] = ACTIONS(2419), + [aux_sym_cmd_identifier_token15] = ACTIONS(2419), + [aux_sym_cmd_identifier_token16] = ACTIONS(2419), + [aux_sym_cmd_identifier_token17] = ACTIONS(2419), + [aux_sym_cmd_identifier_token18] = ACTIONS(2419), + [aux_sym_cmd_identifier_token19] = ACTIONS(2419), + [aux_sym_cmd_identifier_token20] = ACTIONS(2419), + [aux_sym_cmd_identifier_token21] = ACTIONS(2419), + [aux_sym_cmd_identifier_token22] = ACTIONS(2419), + [aux_sym_cmd_identifier_token23] = ACTIONS(2419), + [aux_sym_cmd_identifier_token24] = ACTIONS(2419), + [aux_sym_cmd_identifier_token25] = ACTIONS(2419), + [aux_sym_cmd_identifier_token26] = ACTIONS(2419), + [aux_sym_cmd_identifier_token27] = ACTIONS(2419), + [aux_sym_cmd_identifier_token28] = ACTIONS(2419), + [aux_sym_cmd_identifier_token29] = ACTIONS(2419), + [aux_sym_cmd_identifier_token30] = ACTIONS(2419), + [aux_sym_cmd_identifier_token31] = ACTIONS(2419), + [aux_sym_cmd_identifier_token32] = ACTIONS(2419), + [aux_sym_cmd_identifier_token33] = ACTIONS(2419), + [aux_sym_cmd_identifier_token34] = ACTIONS(2419), + [aux_sym_cmd_identifier_token35] = ACTIONS(2419), + [aux_sym_cmd_identifier_token36] = ACTIONS(2419), + [aux_sym_cmd_identifier_token37] = ACTIONS(2419), + [aux_sym_cmd_identifier_token38] = ACTIONS(2419), + [aux_sym_cmd_identifier_token39] = ACTIONS(2419), + [aux_sym_cmd_identifier_token40] = ACTIONS(2419), + [anon_sym_def] = ACTIONS(2419), + [anon_sym_export_DASHenv] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym_module] = ACTIONS(2419), + [anon_sym_use] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_error] = ACTIONS(2419), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_in2] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_make] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_catch] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_source] = ACTIONS(2419), + [anon_sym_source_DASHenv] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_hide] = ACTIONS(2419), + [anon_sym_hide_DASHenv] = ACTIONS(2419), + [anon_sym_overlay] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2419), + [aux_sym__val_number_decimal_token2] = ACTIONS(2419), + [aux_sym__val_number_decimal_token3] = ACTIONS(2419), + [aux_sym__val_number_decimal_token4] = ACTIONS(2419), + [aux_sym__val_number_token1] = ACTIONS(2419), + [aux_sym__val_number_token2] = ACTIONS(2419), + [aux_sym__val_number_token3] = ACTIONS(2419), + [aux_sym__val_number_token4] = ACTIONS(2419), + [aux_sym__val_number_token5] = ACTIONS(2419), + [aux_sym__val_number_token6] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(2419), + [sym__str_single_quotes] = ACTIONS(2419), + [sym__str_back_ticks] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [sym__entry_separator] = ACTIONS(2421), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2427), + [sym_raw_string_begin] = ACTIONS(2421), }, [641] = { [sym_comment] = STATE(641), - [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_export] = ACTIONS(2423), + [anon_sym_alias] = ACTIONS(2423), + [anon_sym_let] = ACTIONS(2423), + [anon_sym_let_DASHenv] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [aux_sym_cmd_identifier_token1] = ACTIONS(2423), + [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(2423), + [aux_sym_cmd_identifier_token9] = ACTIONS(2423), + [aux_sym_cmd_identifier_token10] = ACTIONS(2423), + [aux_sym_cmd_identifier_token11] = ACTIONS(2423), + [aux_sym_cmd_identifier_token12] = ACTIONS(2423), + [aux_sym_cmd_identifier_token13] = ACTIONS(2423), + [aux_sym_cmd_identifier_token14] = ACTIONS(2423), + [aux_sym_cmd_identifier_token15] = ACTIONS(2423), + [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(2423), + [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(2423), + [aux_sym_cmd_identifier_token39] = ACTIONS(2423), + [aux_sym_cmd_identifier_token40] = ACTIONS(2423), + [anon_sym_def] = ACTIONS(2423), + [anon_sym_export_DASHenv] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_module] = ACTIONS(2423), + [anon_sym_use] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_error] = ACTIONS(2423), + [anon_sym_DASH2] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_in2] = ACTIONS(2423), + [anon_sym_loop] = ACTIONS(2423), + [anon_sym_make] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_do] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_else] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2423), + [anon_sym_catch] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_source] = ACTIONS(2423), + [anon_sym_source_DASHenv] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2423), + [anon_sym_hide] = ACTIONS(2423), + [anon_sym_hide_DASHenv] = ACTIONS(2423), + [anon_sym_overlay] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_PLUS2] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), + [aux_sym__val_number_decimal_token1] = ACTIONS(2423), + [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(2423), + [aux_sym__val_number_token5] = ACTIONS(2423), + [aux_sym__val_number_token6] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2423), + [sym__str_single_quotes] = ACTIONS(2423), + [sym__str_back_ticks] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), + [sym__entry_separator] = ACTIONS(2425), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2431), + [sym_raw_string_begin] = ACTIONS(2425), }, [642] = { [sym_comment] = STATE(642), - [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_export] = ACTIONS(2427), + [anon_sym_alias] = ACTIONS(2427), + [anon_sym_let] = ACTIONS(2427), + [anon_sym_let_DASHenv] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [aux_sym_cmd_identifier_token1] = ACTIONS(2427), + [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(2427), + [aux_sym_cmd_identifier_token9] = ACTIONS(2427), + [aux_sym_cmd_identifier_token10] = ACTIONS(2427), + [aux_sym_cmd_identifier_token11] = ACTIONS(2427), + [aux_sym_cmd_identifier_token12] = ACTIONS(2427), + [aux_sym_cmd_identifier_token13] = ACTIONS(2427), + [aux_sym_cmd_identifier_token14] = ACTIONS(2427), + [aux_sym_cmd_identifier_token15] = ACTIONS(2427), + [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(2427), + [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(2427), + [aux_sym_cmd_identifier_token39] = ACTIONS(2427), + [aux_sym_cmd_identifier_token40] = ACTIONS(2427), + [anon_sym_def] = ACTIONS(2427), + [anon_sym_export_DASHenv] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2427), + [anon_sym_module] = ACTIONS(2427), + [anon_sym_use] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2427), + [anon_sym_DASH2] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_in2] = ACTIONS(2427), + [anon_sym_loop] = ACTIONS(2427), + [anon_sym_make] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_do] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_else] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2427), + [anon_sym_catch] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_source] = ACTIONS(2427), + [anon_sym_source_DASHenv] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2427), + [anon_sym_hide] = ACTIONS(2427), + [anon_sym_hide_DASHenv] = ACTIONS(2427), + [anon_sym_overlay] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_PLUS2] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2427), + [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(2427), + [aux_sym__val_number_token5] = ACTIONS(2427), + [aux_sym__val_number_token6] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), + [sym__entry_separator] = ACTIONS(2429), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2435), + [sym_raw_string_begin] = ACTIONS(2429), }, [643] = { [sym_comment] = STATE(643), - [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_export] = ACTIONS(2431), + [anon_sym_alias] = ACTIONS(2431), + [anon_sym_let] = ACTIONS(2431), + [anon_sym_let_DASHenv] = ACTIONS(2431), + [anon_sym_mut] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [aux_sym_cmd_identifier_token1] = ACTIONS(2431), + [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(2431), + [aux_sym_cmd_identifier_token9] = ACTIONS(2431), + [aux_sym_cmd_identifier_token10] = ACTIONS(2431), + [aux_sym_cmd_identifier_token11] = ACTIONS(2431), + [aux_sym_cmd_identifier_token12] = ACTIONS(2431), + [aux_sym_cmd_identifier_token13] = ACTIONS(2431), + [aux_sym_cmd_identifier_token14] = ACTIONS(2431), + [aux_sym_cmd_identifier_token15] = ACTIONS(2431), + [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(2431), + [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(2431), + [aux_sym_cmd_identifier_token39] = ACTIONS(2431), + [aux_sym_cmd_identifier_token40] = ACTIONS(2431), + [anon_sym_def] = ACTIONS(2431), + [anon_sym_export_DASHenv] = ACTIONS(2431), + [anon_sym_extern] = ACTIONS(2431), + [anon_sym_module] = ACTIONS(2431), + [anon_sym_use] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_error] = ACTIONS(2431), + [anon_sym_DASH2] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_in2] = ACTIONS(2431), + [anon_sym_loop] = ACTIONS(2431), + [anon_sym_make] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [anon_sym_do] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_else] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2431), + [anon_sym_catch] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_source] = ACTIONS(2431), + [anon_sym_source_DASHenv] = ACTIONS(2431), + [anon_sym_register] = ACTIONS(2431), + [anon_sym_hide] = ACTIONS(2431), + [anon_sym_hide_DASHenv] = ACTIONS(2431), + [anon_sym_overlay] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_PLUS2] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2431), + [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(2431), + [aux_sym__val_number_token5] = ACTIONS(2431), + [aux_sym__val_number_token6] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym__str_single_quotes] = ACTIONS(2431), + [sym__str_back_ticks] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), + [sym__entry_separator] = ACTIONS(2433), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2439), + [sym_raw_string_begin] = ACTIONS(2433), }, [644] = { [sym_comment] = STATE(644), - [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_export] = ACTIONS(2435), + [anon_sym_alias] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_let_DASHenv] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [aux_sym_cmd_identifier_token1] = ACTIONS(2435), + [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(2435), + [aux_sym_cmd_identifier_token9] = ACTIONS(2435), + [aux_sym_cmd_identifier_token10] = ACTIONS(2435), + [aux_sym_cmd_identifier_token11] = ACTIONS(2435), + [aux_sym_cmd_identifier_token12] = ACTIONS(2435), + [aux_sym_cmd_identifier_token13] = ACTIONS(2435), + [aux_sym_cmd_identifier_token14] = ACTIONS(2435), + [aux_sym_cmd_identifier_token15] = ACTIONS(2435), + [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(2435), + [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(2435), + [aux_sym_cmd_identifier_token39] = ACTIONS(2435), + [aux_sym_cmd_identifier_token40] = ACTIONS(2435), + [anon_sym_def] = ACTIONS(2435), + [anon_sym_export_DASHenv] = ACTIONS(2435), + [anon_sym_extern] = ACTIONS(2435), + [anon_sym_module] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_error] = ACTIONS(2435), + [anon_sym_DASH2] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_in2] = ACTIONS(2435), + [anon_sym_loop] = ACTIONS(2435), + [anon_sym_make] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [anon_sym_do] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2435), + [anon_sym_catch] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_source] = ACTIONS(2435), + [anon_sym_source_DASHenv] = ACTIONS(2435), + [anon_sym_register] = ACTIONS(2435), + [anon_sym_hide] = ACTIONS(2435), + [anon_sym_hide_DASHenv] = ACTIONS(2435), + [anon_sym_overlay] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_PLUS2] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), + [aux_sym__val_number_decimal_token1] = ACTIONS(2435), + [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(2435), + [aux_sym__val_number_token5] = ACTIONS(2435), + [aux_sym__val_number_token6] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym__str_single_quotes] = ACTIONS(2435), + [sym__str_back_ticks] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), + [sym__entry_separator] = ACTIONS(2437), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2443), + [sym_raw_string_begin] = ACTIONS(2437), }, [645] = { [sym_comment] = STATE(645), - [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_export] = ACTIONS(2439), + [anon_sym_alias] = ACTIONS(2439), + [anon_sym_let] = ACTIONS(2439), + [anon_sym_let_DASHenv] = ACTIONS(2439), + [anon_sym_mut] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [aux_sym_cmd_identifier_token1] = ACTIONS(2439), + [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(2439), + [aux_sym_cmd_identifier_token9] = ACTIONS(2439), + [aux_sym_cmd_identifier_token10] = ACTIONS(2439), + [aux_sym_cmd_identifier_token11] = ACTIONS(2439), + [aux_sym_cmd_identifier_token12] = ACTIONS(2439), + [aux_sym_cmd_identifier_token13] = ACTIONS(2439), + [aux_sym_cmd_identifier_token14] = ACTIONS(2439), + [aux_sym_cmd_identifier_token15] = ACTIONS(2439), + [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(2439), + [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(2439), + [aux_sym_cmd_identifier_token39] = ACTIONS(2439), + [aux_sym_cmd_identifier_token40] = ACTIONS(2439), + [anon_sym_def] = ACTIONS(2439), + [anon_sym_export_DASHenv] = ACTIONS(2439), + [anon_sym_extern] = ACTIONS(2439), + [anon_sym_module] = ACTIONS(2439), + [anon_sym_use] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_error] = ACTIONS(2439), + [anon_sym_DASH2] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_in2] = ACTIONS(2439), + [anon_sym_loop] = ACTIONS(2439), + [anon_sym_make] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [anon_sym_do] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_else] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2439), + [anon_sym_catch] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_source] = ACTIONS(2439), + [anon_sym_source_DASHenv] = ACTIONS(2439), + [anon_sym_register] = ACTIONS(2439), + [anon_sym_hide] = ACTIONS(2439), + [anon_sym_hide_DASHenv] = ACTIONS(2439), + [anon_sym_overlay] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_PLUS2] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [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(2439), + [aux_sym__val_number_token5] = ACTIONS(2439), + [aux_sym__val_number_token6] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym__str_single_quotes] = ACTIONS(2439), + [sym__str_back_ticks] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), + [sym__entry_separator] = ACTIONS(2441), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2447), + [sym_raw_string_begin] = ACTIONS(2441), }, [646] = { [sym_comment] = STATE(646), - [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_export] = ACTIONS(2443), + [anon_sym_alias] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_let_DASHenv] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [aux_sym_cmd_identifier_token1] = ACTIONS(2443), + [aux_sym_cmd_identifier_token2] = ACTIONS(2443), + [aux_sym_cmd_identifier_token3] = ACTIONS(2443), + [aux_sym_cmd_identifier_token4] = ACTIONS(2443), + [aux_sym_cmd_identifier_token5] = ACTIONS(2443), + [aux_sym_cmd_identifier_token6] = ACTIONS(2443), + [aux_sym_cmd_identifier_token7] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2443), + [aux_sym_cmd_identifier_token9] = ACTIONS(2443), + [aux_sym_cmd_identifier_token10] = ACTIONS(2443), + [aux_sym_cmd_identifier_token11] = ACTIONS(2443), + [aux_sym_cmd_identifier_token12] = ACTIONS(2443), + [aux_sym_cmd_identifier_token13] = ACTIONS(2443), + [aux_sym_cmd_identifier_token14] = ACTIONS(2443), + [aux_sym_cmd_identifier_token15] = ACTIONS(2443), + [aux_sym_cmd_identifier_token16] = ACTIONS(2443), + [aux_sym_cmd_identifier_token17] = ACTIONS(2443), + [aux_sym_cmd_identifier_token18] = ACTIONS(2443), + [aux_sym_cmd_identifier_token19] = ACTIONS(2443), + [aux_sym_cmd_identifier_token20] = ACTIONS(2443), + [aux_sym_cmd_identifier_token21] = ACTIONS(2443), + [aux_sym_cmd_identifier_token22] = ACTIONS(2443), + [aux_sym_cmd_identifier_token23] = ACTIONS(2443), + [aux_sym_cmd_identifier_token24] = ACTIONS(2443), + [aux_sym_cmd_identifier_token25] = ACTIONS(2443), + [aux_sym_cmd_identifier_token26] = ACTIONS(2443), + [aux_sym_cmd_identifier_token27] = ACTIONS(2443), + [aux_sym_cmd_identifier_token28] = ACTIONS(2443), + [aux_sym_cmd_identifier_token29] = ACTIONS(2443), + [aux_sym_cmd_identifier_token30] = ACTIONS(2443), + [aux_sym_cmd_identifier_token31] = ACTIONS(2443), + [aux_sym_cmd_identifier_token32] = ACTIONS(2443), + [aux_sym_cmd_identifier_token33] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2443), + [aux_sym_cmd_identifier_token35] = ACTIONS(2443), + [aux_sym_cmd_identifier_token36] = ACTIONS(2443), + [aux_sym_cmd_identifier_token37] = ACTIONS(2443), + [aux_sym_cmd_identifier_token38] = ACTIONS(2443), + [aux_sym_cmd_identifier_token39] = ACTIONS(2443), + [aux_sym_cmd_identifier_token40] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2443), + [anon_sym_export_DASHenv] = ACTIONS(2443), + [anon_sym_extern] = ACTIONS(2443), + [anon_sym_module] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_error] = ACTIONS(2443), + [anon_sym_DASH2] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_in2] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_make] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [anon_sym_do] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2443), + [anon_sym_catch] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_source] = ACTIONS(2443), + [anon_sym_source_DASHenv] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2443), + [anon_sym_hide] = ACTIONS(2443), + [anon_sym_hide_DASHenv] = ACTIONS(2443), + [anon_sym_overlay] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_PLUS2] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), + [aux_sym__val_number_decimal_token1] = ACTIONS(2443), + [aux_sym__val_number_decimal_token2] = ACTIONS(2443), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [aux_sym__val_number_token1] = ACTIONS(2443), + [aux_sym__val_number_token2] = ACTIONS(2443), + [aux_sym__val_number_token3] = ACTIONS(2443), + [aux_sym__val_number_token4] = ACTIONS(2443), + [aux_sym__val_number_token5] = ACTIONS(2443), + [aux_sym__val_number_token6] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym__str_single_quotes] = ACTIONS(2443), + [sym__str_back_ticks] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), + [sym__entry_separator] = ACTIONS(2445), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2451), + [sym_raw_string_begin] = ACTIONS(2445), }, [647] = { [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_alias] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_let_DASHenv] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [aux_sym_cmd_identifier_token1] = ACTIONS(2453), - [aux_sym_cmd_identifier_token2] = ACTIONS(2453), - [aux_sym_cmd_identifier_token3] = ACTIONS(2453), - [aux_sym_cmd_identifier_token4] = ACTIONS(2453), - [aux_sym_cmd_identifier_token5] = ACTIONS(2453), - [aux_sym_cmd_identifier_token6] = ACTIONS(2453), - [aux_sym_cmd_identifier_token7] = ACTIONS(2453), - [aux_sym_cmd_identifier_token8] = ACTIONS(2453), - [aux_sym_cmd_identifier_token9] = ACTIONS(2453), - [aux_sym_cmd_identifier_token10] = ACTIONS(2453), - [aux_sym_cmd_identifier_token11] = ACTIONS(2453), - [aux_sym_cmd_identifier_token12] = ACTIONS(2453), - [aux_sym_cmd_identifier_token13] = ACTIONS(2453), - [aux_sym_cmd_identifier_token14] = ACTIONS(2453), - [aux_sym_cmd_identifier_token15] = ACTIONS(2453), - [aux_sym_cmd_identifier_token16] = ACTIONS(2453), - [aux_sym_cmd_identifier_token17] = ACTIONS(2453), - [aux_sym_cmd_identifier_token18] = ACTIONS(2453), - [aux_sym_cmd_identifier_token19] = ACTIONS(2453), - [aux_sym_cmd_identifier_token20] = ACTIONS(2453), - [aux_sym_cmd_identifier_token21] = ACTIONS(2453), - [aux_sym_cmd_identifier_token22] = ACTIONS(2453), - [aux_sym_cmd_identifier_token23] = ACTIONS(2453), - [aux_sym_cmd_identifier_token24] = ACTIONS(2453), - [aux_sym_cmd_identifier_token25] = ACTIONS(2453), - [aux_sym_cmd_identifier_token26] = ACTIONS(2453), - [aux_sym_cmd_identifier_token27] = ACTIONS(2453), - [aux_sym_cmd_identifier_token28] = ACTIONS(2453), - [aux_sym_cmd_identifier_token29] = ACTIONS(2453), - [aux_sym_cmd_identifier_token30] = ACTIONS(2453), - [aux_sym_cmd_identifier_token31] = ACTIONS(2453), - [aux_sym_cmd_identifier_token32] = ACTIONS(2453), - [aux_sym_cmd_identifier_token33] = ACTIONS(2453), - [aux_sym_cmd_identifier_token34] = ACTIONS(2453), - [aux_sym_cmd_identifier_token35] = ACTIONS(2453), - [aux_sym_cmd_identifier_token36] = ACTIONS(2453), - [aux_sym_cmd_identifier_token37] = ACTIONS(2453), - [aux_sym_cmd_identifier_token38] = ACTIONS(2453), - [aux_sym_cmd_identifier_token39] = ACTIONS(2453), - [aux_sym_cmd_identifier_token40] = ACTIONS(2453), - [anon_sym_def] = ACTIONS(2453), - [anon_sym_export_DASHenv] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_error] = ACTIONS(2453), - [anon_sym_DASH2] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_in2] = ACTIONS(2453), - [anon_sym_loop] = ACTIONS(2453), - [anon_sym_make] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_catch] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_source] = ACTIONS(2453), - [anon_sym_source_DASHenv] = ACTIONS(2453), - [anon_sym_register] = ACTIONS(2453), - [anon_sym_hide] = ACTIONS(2453), - [anon_sym_hide_DASHenv] = ACTIONS(2453), - [anon_sym_overlay] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_PLUS2] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), - [aux_sym__val_number_decimal_token1] = ACTIONS(2453), - [aux_sym__val_number_decimal_token2] = ACTIONS(2453), - [aux_sym__val_number_decimal_token3] = ACTIONS(2453), - [aux_sym__val_number_decimal_token4] = ACTIONS(2453), - [aux_sym__val_number_token1] = ACTIONS(2453), - [aux_sym__val_number_token2] = ACTIONS(2453), - [aux_sym__val_number_token3] = ACTIONS(2453), - [aux_sym__val_number_token4] = ACTIONS(2453), - [aux_sym__val_number_token5] = ACTIONS(2453), - [aux_sym__val_number_token6] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym__str_single_quotes] = ACTIONS(2453), - [sym__str_back_ticks] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), - [sym__entry_separator] = ACTIONS(2455), + [anon_sym_export] = ACTIONS(2447), + [anon_sym_alias] = ACTIONS(2447), + [anon_sym_let] = ACTIONS(2447), + [anon_sym_let_DASHenv] = ACTIONS(2447), + [anon_sym_mut] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [aux_sym_cmd_identifier_token1] = ACTIONS(2447), + [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(2447), + [aux_sym_cmd_identifier_token9] = ACTIONS(2447), + [aux_sym_cmd_identifier_token10] = ACTIONS(2447), + [aux_sym_cmd_identifier_token11] = ACTIONS(2447), + [aux_sym_cmd_identifier_token12] = ACTIONS(2447), + [aux_sym_cmd_identifier_token13] = ACTIONS(2447), + [aux_sym_cmd_identifier_token14] = ACTIONS(2447), + [aux_sym_cmd_identifier_token15] = ACTIONS(2447), + [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(2447), + [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(2447), + [aux_sym_cmd_identifier_token39] = ACTIONS(2447), + [aux_sym_cmd_identifier_token40] = ACTIONS(2447), + [anon_sym_def] = ACTIONS(2447), + [anon_sym_export_DASHenv] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2447), + [anon_sym_module] = ACTIONS(2447), + [anon_sym_use] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2447), + [anon_sym_error] = ACTIONS(2447), + [anon_sym_DASH2] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_in2] = ACTIONS(2447), + [anon_sym_loop] = ACTIONS(2447), + [anon_sym_make] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_do] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_try] = ACTIONS(2447), + [anon_sym_catch] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_source] = ACTIONS(2447), + [anon_sym_source_DASHenv] = ACTIONS(2447), + [anon_sym_register] = ACTIONS(2447), + [anon_sym_hide] = ACTIONS(2447), + [anon_sym_hide_DASHenv] = ACTIONS(2447), + [anon_sym_overlay] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2447), + [anon_sym_PLUS2] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2447), + [aux_sym__val_number_decimal_token1] = ACTIONS(2447), + [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(2447), + [aux_sym__val_number_token5] = ACTIONS(2447), + [aux_sym__val_number_token6] = ACTIONS(2447), + [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), + [sym__entry_separator] = ACTIONS(2449), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2455), + [sym_raw_string_begin] = ACTIONS(2449), }, [648] = { [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1917), - [aux_sym_cmd_identifier_token3] = ACTIONS(1917), - [aux_sym_cmd_identifier_token4] = ACTIONS(1917), - [aux_sym_cmd_identifier_token5] = ACTIONS(1917), - [aux_sym_cmd_identifier_token6] = ACTIONS(1917), - [aux_sym_cmd_identifier_token7] = ACTIONS(1917), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1917), - [aux_sym_cmd_identifier_token11] = ACTIONS(1917), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1917), - [aux_sym_cmd_identifier_token17] = ACTIONS(1917), - [aux_sym_cmd_identifier_token18] = ACTIONS(1917), - [aux_sym_cmd_identifier_token19] = ACTIONS(1917), - [aux_sym_cmd_identifier_token20] = ACTIONS(1917), - [aux_sym_cmd_identifier_token21] = ACTIONS(1917), - [aux_sym_cmd_identifier_token22] = ACTIONS(1917), - [aux_sym_cmd_identifier_token23] = ACTIONS(1917), - [aux_sym_cmd_identifier_token24] = ACTIONS(1917), - [aux_sym_cmd_identifier_token25] = ACTIONS(1917), - [aux_sym_cmd_identifier_token26] = ACTIONS(1917), - [aux_sym_cmd_identifier_token27] = ACTIONS(1917), - [aux_sym_cmd_identifier_token28] = ACTIONS(1917), - [aux_sym_cmd_identifier_token29] = ACTIONS(1917), - [aux_sym_cmd_identifier_token30] = ACTIONS(1917), - [aux_sym_cmd_identifier_token31] = ACTIONS(1917), - [aux_sym_cmd_identifier_token32] = ACTIONS(1917), - [aux_sym_cmd_identifier_token33] = ACTIONS(1917), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1917), - [aux_sym_cmd_identifier_token36] = ACTIONS(1917), - [aux_sym_cmd_identifier_token37] = ACTIONS(1917), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1917), - [aux_sym_cmd_identifier_token40] = ACTIONS(1917), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), - [sym__entry_separator] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1034), + [aux_sym_cmd_identifier_token3] = ACTIONS(1034), + [aux_sym_cmd_identifier_token4] = ACTIONS(1034), + [aux_sym_cmd_identifier_token5] = ACTIONS(1034), + [aux_sym_cmd_identifier_token6] = ACTIONS(1034), + [aux_sym_cmd_identifier_token7] = ACTIONS(1034), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1034), + [aux_sym_cmd_identifier_token11] = ACTIONS(1034), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1034), + [aux_sym_cmd_identifier_token17] = ACTIONS(1034), + [aux_sym_cmd_identifier_token18] = ACTIONS(1034), + [aux_sym_cmd_identifier_token19] = ACTIONS(1034), + [aux_sym_cmd_identifier_token20] = ACTIONS(1034), + [aux_sym_cmd_identifier_token21] = ACTIONS(1034), + [aux_sym_cmd_identifier_token22] = ACTIONS(1034), + [aux_sym_cmd_identifier_token23] = ACTIONS(1034), + [aux_sym_cmd_identifier_token24] = ACTIONS(1034), + [aux_sym_cmd_identifier_token25] = ACTIONS(1034), + [aux_sym_cmd_identifier_token26] = ACTIONS(1034), + [aux_sym_cmd_identifier_token27] = ACTIONS(1034), + [aux_sym_cmd_identifier_token28] = ACTIONS(1034), + [aux_sym_cmd_identifier_token29] = ACTIONS(1034), + [aux_sym_cmd_identifier_token30] = ACTIONS(1034), + [aux_sym_cmd_identifier_token31] = ACTIONS(1034), + [aux_sym_cmd_identifier_token32] = ACTIONS(1034), + [aux_sym_cmd_identifier_token33] = ACTIONS(1034), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1034), + [aux_sym_cmd_identifier_token36] = ACTIONS(1034), + [aux_sym_cmd_identifier_token37] = ACTIONS(1034), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1034), + [aux_sym_cmd_identifier_token40] = ACTIONS(1034), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym__str_single_quotes] = ACTIONS(1034), + [sym__str_back_ticks] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), + [sym__entry_separator] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1919), + [sym_raw_string_begin] = ACTIONS(1036), }, [649] = { [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_alias] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_let_DASHenv] = ACTIONS(2457), - [anon_sym_mut] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [aux_sym_cmd_identifier_token1] = ACTIONS(2457), - [aux_sym_cmd_identifier_token2] = ACTIONS(2457), - [aux_sym_cmd_identifier_token3] = ACTIONS(2457), - [aux_sym_cmd_identifier_token4] = ACTIONS(2457), - [aux_sym_cmd_identifier_token5] = ACTIONS(2457), - [aux_sym_cmd_identifier_token6] = ACTIONS(2457), - [aux_sym_cmd_identifier_token7] = ACTIONS(2457), - [aux_sym_cmd_identifier_token8] = ACTIONS(2457), - [aux_sym_cmd_identifier_token9] = ACTIONS(2457), - [aux_sym_cmd_identifier_token10] = ACTIONS(2457), - [aux_sym_cmd_identifier_token11] = ACTIONS(2457), - [aux_sym_cmd_identifier_token12] = ACTIONS(2457), - [aux_sym_cmd_identifier_token13] = ACTIONS(2457), - [aux_sym_cmd_identifier_token14] = ACTIONS(2457), - [aux_sym_cmd_identifier_token15] = ACTIONS(2457), - [aux_sym_cmd_identifier_token16] = ACTIONS(2457), - [aux_sym_cmd_identifier_token17] = ACTIONS(2457), - [aux_sym_cmd_identifier_token18] = ACTIONS(2457), - [aux_sym_cmd_identifier_token19] = ACTIONS(2457), - [aux_sym_cmd_identifier_token20] = ACTIONS(2457), - [aux_sym_cmd_identifier_token21] = ACTIONS(2457), - [aux_sym_cmd_identifier_token22] = ACTIONS(2457), - [aux_sym_cmd_identifier_token23] = ACTIONS(2457), - [aux_sym_cmd_identifier_token24] = ACTIONS(2457), - [aux_sym_cmd_identifier_token25] = ACTIONS(2457), - [aux_sym_cmd_identifier_token26] = ACTIONS(2457), - [aux_sym_cmd_identifier_token27] = ACTIONS(2457), - [aux_sym_cmd_identifier_token28] = ACTIONS(2457), - [aux_sym_cmd_identifier_token29] = ACTIONS(2457), - [aux_sym_cmd_identifier_token30] = ACTIONS(2457), - [aux_sym_cmd_identifier_token31] = ACTIONS(2457), - [aux_sym_cmd_identifier_token32] = ACTIONS(2457), - [aux_sym_cmd_identifier_token33] = ACTIONS(2457), - [aux_sym_cmd_identifier_token34] = ACTIONS(2457), - [aux_sym_cmd_identifier_token35] = ACTIONS(2457), - [aux_sym_cmd_identifier_token36] = ACTIONS(2457), - [aux_sym_cmd_identifier_token37] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2457), - [aux_sym_cmd_identifier_token39] = ACTIONS(2457), - [aux_sym_cmd_identifier_token40] = ACTIONS(2457), - [anon_sym_def] = ACTIONS(2457), - [anon_sym_export_DASHenv] = ACTIONS(2457), - [anon_sym_extern] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2457), - [anon_sym_error] = ACTIONS(2457), - [anon_sym_DASH2] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_in2] = ACTIONS(2457), - [anon_sym_loop] = ACTIONS(2457), - [anon_sym_make] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_catch] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_source] = ACTIONS(2457), - [anon_sym_source_DASHenv] = ACTIONS(2457), - [anon_sym_register] = ACTIONS(2457), - [anon_sym_hide] = ACTIONS(2457), - [anon_sym_hide_DASHenv] = ACTIONS(2457), - [anon_sym_overlay] = ACTIONS(2457), - [anon_sym_as] = ACTIONS(2457), - [anon_sym_PLUS2] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), - [aux_sym__val_number_decimal_token1] = ACTIONS(2457), - [aux_sym__val_number_decimal_token2] = ACTIONS(2457), - [aux_sym__val_number_decimal_token3] = ACTIONS(2457), - [aux_sym__val_number_decimal_token4] = ACTIONS(2457), - [aux_sym__val_number_token1] = ACTIONS(2457), - [aux_sym__val_number_token2] = ACTIONS(2457), - [aux_sym__val_number_token3] = ACTIONS(2457), - [aux_sym__val_number_token4] = ACTIONS(2457), - [aux_sym__val_number_token5] = ACTIONS(2457), - [aux_sym__val_number_token6] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym__str_single_quotes] = ACTIONS(2457), - [sym__str_back_ticks] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), - [sym__entry_separator] = ACTIONS(2459), + [anon_sym_export] = ACTIONS(2041), + [anon_sym_alias] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_let_DASHenv] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [aux_sym_cmd_identifier_token1] = ACTIONS(2041), + [aux_sym_cmd_identifier_token2] = ACTIONS(2041), + [aux_sym_cmd_identifier_token3] = ACTIONS(2041), + [aux_sym_cmd_identifier_token4] = ACTIONS(2041), + [aux_sym_cmd_identifier_token5] = ACTIONS(2041), + [aux_sym_cmd_identifier_token6] = ACTIONS(2041), + [aux_sym_cmd_identifier_token7] = ACTIONS(2041), + [aux_sym_cmd_identifier_token8] = ACTIONS(2041), + [aux_sym_cmd_identifier_token9] = ACTIONS(2041), + [aux_sym_cmd_identifier_token10] = ACTIONS(2041), + [aux_sym_cmd_identifier_token11] = ACTIONS(2041), + [aux_sym_cmd_identifier_token12] = ACTIONS(2041), + [aux_sym_cmd_identifier_token13] = ACTIONS(2041), + [aux_sym_cmd_identifier_token14] = ACTIONS(2041), + [aux_sym_cmd_identifier_token15] = ACTIONS(2041), + [aux_sym_cmd_identifier_token16] = ACTIONS(2041), + [aux_sym_cmd_identifier_token17] = ACTIONS(2041), + [aux_sym_cmd_identifier_token18] = ACTIONS(2041), + [aux_sym_cmd_identifier_token19] = ACTIONS(2041), + [aux_sym_cmd_identifier_token20] = ACTIONS(2041), + [aux_sym_cmd_identifier_token21] = ACTIONS(2041), + [aux_sym_cmd_identifier_token22] = ACTIONS(2041), + [aux_sym_cmd_identifier_token23] = ACTIONS(2041), + [aux_sym_cmd_identifier_token24] = ACTIONS(2041), + [aux_sym_cmd_identifier_token25] = ACTIONS(2041), + [aux_sym_cmd_identifier_token26] = ACTIONS(2041), + [aux_sym_cmd_identifier_token27] = ACTIONS(2041), + [aux_sym_cmd_identifier_token28] = ACTIONS(2041), + [aux_sym_cmd_identifier_token29] = ACTIONS(2041), + [aux_sym_cmd_identifier_token30] = ACTIONS(2041), + [aux_sym_cmd_identifier_token31] = ACTIONS(2041), + [aux_sym_cmd_identifier_token32] = ACTIONS(2041), + [aux_sym_cmd_identifier_token33] = ACTIONS(2041), + [aux_sym_cmd_identifier_token34] = ACTIONS(2041), + [aux_sym_cmd_identifier_token35] = ACTIONS(2041), + [aux_sym_cmd_identifier_token36] = ACTIONS(2041), + [aux_sym_cmd_identifier_token37] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [anon_sym_def] = ACTIONS(2041), + [anon_sym_export_DASHenv] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_module] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2041), + [anon_sym_DASH2] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_in2] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_make] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [anon_sym_catch] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_source] = ACTIONS(2041), + [anon_sym_source_DASHenv] = ACTIONS(2041), + [anon_sym_register] = ACTIONS(2041), + [anon_sym_hide] = ACTIONS(2041), + [anon_sym_hide_DASHenv] = ACTIONS(2041), + [anon_sym_overlay] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_PLUS2] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2041), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [aux_sym__val_number_token4] = ACTIONS(2041), + [aux_sym__val_number_token5] = ACTIONS(2041), + [aux_sym__val_number_token6] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), + [sym__entry_separator] = ACTIONS(2043), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2459), + [sym_raw_string_begin] = ACTIONS(2043), }, [650] = { [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_alias] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_let_DASHenv] = ACTIONS(2461), - [anon_sym_mut] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [aux_sym_cmd_identifier_token1] = ACTIONS(2461), - [aux_sym_cmd_identifier_token2] = ACTIONS(2461), - [aux_sym_cmd_identifier_token3] = ACTIONS(2461), - [aux_sym_cmd_identifier_token4] = ACTIONS(2461), - [aux_sym_cmd_identifier_token5] = ACTIONS(2461), - [aux_sym_cmd_identifier_token6] = ACTIONS(2461), - [aux_sym_cmd_identifier_token7] = ACTIONS(2461), - [aux_sym_cmd_identifier_token8] = ACTIONS(2461), - [aux_sym_cmd_identifier_token9] = ACTIONS(2461), - [aux_sym_cmd_identifier_token10] = ACTIONS(2461), - [aux_sym_cmd_identifier_token11] = ACTIONS(2461), - [aux_sym_cmd_identifier_token12] = ACTIONS(2461), - [aux_sym_cmd_identifier_token13] = ACTIONS(2461), - [aux_sym_cmd_identifier_token14] = ACTIONS(2461), - [aux_sym_cmd_identifier_token15] = ACTIONS(2461), - [aux_sym_cmd_identifier_token16] = ACTIONS(2461), - [aux_sym_cmd_identifier_token17] = ACTIONS(2461), - [aux_sym_cmd_identifier_token18] = ACTIONS(2461), - [aux_sym_cmd_identifier_token19] = ACTIONS(2461), - [aux_sym_cmd_identifier_token20] = ACTIONS(2461), - [aux_sym_cmd_identifier_token21] = ACTIONS(2461), - [aux_sym_cmd_identifier_token22] = ACTIONS(2461), - [aux_sym_cmd_identifier_token23] = ACTIONS(2461), - [aux_sym_cmd_identifier_token24] = ACTIONS(2461), - [aux_sym_cmd_identifier_token25] = ACTIONS(2461), - [aux_sym_cmd_identifier_token26] = ACTIONS(2461), - [aux_sym_cmd_identifier_token27] = ACTIONS(2461), - [aux_sym_cmd_identifier_token28] = ACTIONS(2461), - [aux_sym_cmd_identifier_token29] = ACTIONS(2461), - [aux_sym_cmd_identifier_token30] = ACTIONS(2461), - [aux_sym_cmd_identifier_token31] = ACTIONS(2461), - [aux_sym_cmd_identifier_token32] = ACTIONS(2461), - [aux_sym_cmd_identifier_token33] = ACTIONS(2461), - [aux_sym_cmd_identifier_token34] = ACTIONS(2461), - [aux_sym_cmd_identifier_token35] = ACTIONS(2461), - [aux_sym_cmd_identifier_token36] = ACTIONS(2461), - [aux_sym_cmd_identifier_token37] = ACTIONS(2461), - [aux_sym_cmd_identifier_token38] = ACTIONS(2461), - [aux_sym_cmd_identifier_token39] = ACTIONS(2461), - [aux_sym_cmd_identifier_token40] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_export_DASHenv] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2461), - [anon_sym_error] = ACTIONS(2461), - [anon_sym_DASH2] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_in2] = ACTIONS(2461), - [anon_sym_loop] = ACTIONS(2461), - [anon_sym_make] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_catch] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_source] = ACTIONS(2461), - [anon_sym_source_DASHenv] = ACTIONS(2461), - [anon_sym_register] = ACTIONS(2461), - [anon_sym_hide] = ACTIONS(2461), - [anon_sym_hide_DASHenv] = ACTIONS(2461), - [anon_sym_overlay] = ACTIONS(2461), - [anon_sym_as] = ACTIONS(2461), - [anon_sym_PLUS2] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2461), - [aux_sym__val_number_decimal_token1] = ACTIONS(2461), - [aux_sym__val_number_decimal_token2] = ACTIONS(2461), - [aux_sym__val_number_decimal_token3] = ACTIONS(2461), - [aux_sym__val_number_decimal_token4] = ACTIONS(2461), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [aux_sym__val_number_token4] = ACTIONS(2461), - [aux_sym__val_number_token5] = ACTIONS(2461), - [aux_sym__val_number_token6] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym__str_single_quotes] = ACTIONS(2461), - [sym__str_back_ticks] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2461), - [sym__entry_separator] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2463), + [aux_sym_shebang_repeat1] = STATE(650), + [anon_sym_export] = ACTIONS(1308), + [anon_sym_alias] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_let_DASHenv] = ACTIONS(1308), + [anon_sym_mut] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [aux_sym_cmd_identifier_token1] = ACTIONS(1308), + [aux_sym_cmd_identifier_token2] = ACTIONS(1310), + [aux_sym_cmd_identifier_token3] = ACTIONS(1310), + [aux_sym_cmd_identifier_token4] = ACTIONS(1310), + [aux_sym_cmd_identifier_token5] = ACTIONS(1310), + [aux_sym_cmd_identifier_token6] = ACTIONS(1310), + [aux_sym_cmd_identifier_token7] = ACTIONS(1310), + [aux_sym_cmd_identifier_token8] = ACTIONS(1308), + [aux_sym_cmd_identifier_token9] = ACTIONS(1308), + [aux_sym_cmd_identifier_token10] = ACTIONS(1310), + [aux_sym_cmd_identifier_token11] = ACTIONS(1310), + [aux_sym_cmd_identifier_token12] = ACTIONS(1308), + [aux_sym_cmd_identifier_token13] = ACTIONS(1308), + [aux_sym_cmd_identifier_token14] = ACTIONS(1308), + [aux_sym_cmd_identifier_token15] = ACTIONS(1308), + [aux_sym_cmd_identifier_token16] = ACTIONS(1310), + [aux_sym_cmd_identifier_token17] = ACTIONS(1310), + [aux_sym_cmd_identifier_token18] = ACTIONS(1310), + [aux_sym_cmd_identifier_token19] = ACTIONS(1310), + [aux_sym_cmd_identifier_token20] = ACTIONS(1310), + [aux_sym_cmd_identifier_token21] = ACTIONS(1310), + [aux_sym_cmd_identifier_token22] = ACTIONS(1310), + [aux_sym_cmd_identifier_token23] = ACTIONS(1310), + [aux_sym_cmd_identifier_token24] = ACTIONS(1310), + [aux_sym_cmd_identifier_token25] = ACTIONS(1310), + [aux_sym_cmd_identifier_token26] = ACTIONS(1310), + [aux_sym_cmd_identifier_token27] = ACTIONS(1310), + [aux_sym_cmd_identifier_token28] = ACTIONS(1310), + [aux_sym_cmd_identifier_token29] = ACTIONS(1310), + [aux_sym_cmd_identifier_token30] = ACTIONS(1310), + [aux_sym_cmd_identifier_token31] = ACTIONS(1310), + [aux_sym_cmd_identifier_token32] = ACTIONS(1310), + [aux_sym_cmd_identifier_token33] = ACTIONS(1310), + [aux_sym_cmd_identifier_token34] = ACTIONS(1308), + [aux_sym_cmd_identifier_token35] = ACTIONS(1310), + [aux_sym_cmd_identifier_token36] = ACTIONS(1310), + [aux_sym_cmd_identifier_token37] = ACTIONS(1310), + [aux_sym_cmd_identifier_token38] = ACTIONS(1308), + [aux_sym_cmd_identifier_token39] = ACTIONS(1310), + [aux_sym_cmd_identifier_token40] = ACTIONS(1310), + [sym__newline] = ACTIONS(2451), + [anon_sym_def] = ACTIONS(1308), + [anon_sym_export_DASHenv] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_module] = ACTIONS(1308), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1310), + [anon_sym_error] = ACTIONS(1308), + [anon_sym_DASH2] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_in2] = ACTIONS(1308), + [anon_sym_loop] = ACTIONS(1308), + [anon_sym_make] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_match] = ACTIONS(1308), + [anon_sym_try] = ACTIONS(1308), + [anon_sym_catch] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_source] = ACTIONS(1308), + [anon_sym_source_DASHenv] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_hide] = ACTIONS(1308), + [anon_sym_hide_DASHenv] = ACTIONS(1308), + [anon_sym_overlay] = ACTIONS(1308), + [anon_sym_as] = ACTIONS(1308), + [anon_sym_PLUS2] = ACTIONS(1308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1310), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1310), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1310), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(1310), + [aux_sym__val_number_token2] = ACTIONS(1310), + [aux_sym__val_number_token3] = ACTIONS(1310), + [aux_sym__val_number_token4] = ACTIONS(1308), + [aux_sym__val_number_token5] = ACTIONS(1308), + [aux_sym__val_number_token6] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym__str_single_quotes] = ACTIONS(1310), + [sym__str_back_ticks] = ACTIONS(1310), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1310), }, [651] = { [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_alias] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_let_DASHenv] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [aux_sym_cmd_identifier_token1] = ACTIONS(2465), - [aux_sym_cmd_identifier_token2] = ACTIONS(2465), - [aux_sym_cmd_identifier_token3] = ACTIONS(2465), - [aux_sym_cmd_identifier_token4] = ACTIONS(2465), - [aux_sym_cmd_identifier_token5] = ACTIONS(2465), - [aux_sym_cmd_identifier_token6] = ACTIONS(2465), - [aux_sym_cmd_identifier_token7] = ACTIONS(2465), - [aux_sym_cmd_identifier_token8] = ACTIONS(2465), - [aux_sym_cmd_identifier_token9] = ACTIONS(2465), - [aux_sym_cmd_identifier_token10] = ACTIONS(2465), - [aux_sym_cmd_identifier_token11] = ACTIONS(2465), - [aux_sym_cmd_identifier_token12] = ACTIONS(2465), - [aux_sym_cmd_identifier_token13] = ACTIONS(2465), - [aux_sym_cmd_identifier_token14] = ACTIONS(2465), - [aux_sym_cmd_identifier_token15] = ACTIONS(2465), - [aux_sym_cmd_identifier_token16] = ACTIONS(2465), - [aux_sym_cmd_identifier_token17] = ACTIONS(2465), - [aux_sym_cmd_identifier_token18] = ACTIONS(2465), - [aux_sym_cmd_identifier_token19] = ACTIONS(2465), - [aux_sym_cmd_identifier_token20] = ACTIONS(2465), - [aux_sym_cmd_identifier_token21] = ACTIONS(2465), - [aux_sym_cmd_identifier_token22] = ACTIONS(2465), - [aux_sym_cmd_identifier_token23] = ACTIONS(2465), - [aux_sym_cmd_identifier_token24] = ACTIONS(2465), - [aux_sym_cmd_identifier_token25] = ACTIONS(2465), - [aux_sym_cmd_identifier_token26] = ACTIONS(2465), - [aux_sym_cmd_identifier_token27] = ACTIONS(2465), - [aux_sym_cmd_identifier_token28] = ACTIONS(2465), - [aux_sym_cmd_identifier_token29] = ACTIONS(2465), - [aux_sym_cmd_identifier_token30] = ACTIONS(2465), - [aux_sym_cmd_identifier_token31] = ACTIONS(2465), - [aux_sym_cmd_identifier_token32] = ACTIONS(2465), - [aux_sym_cmd_identifier_token33] = ACTIONS(2465), - [aux_sym_cmd_identifier_token34] = ACTIONS(2465), - [aux_sym_cmd_identifier_token35] = ACTIONS(2465), - [aux_sym_cmd_identifier_token36] = ACTIONS(2465), - [aux_sym_cmd_identifier_token37] = ACTIONS(2465), - [aux_sym_cmd_identifier_token38] = ACTIONS(2465), - [aux_sym_cmd_identifier_token39] = ACTIONS(2465), - [aux_sym_cmd_identifier_token40] = ACTIONS(2465), - [anon_sym_def] = ACTIONS(2465), - [anon_sym_export_DASHenv] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_DOLLAR] = ACTIONS(2465), - [anon_sym_error] = ACTIONS(2465), - [anon_sym_DASH2] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_in2] = ACTIONS(2465), - [anon_sym_loop] = ACTIONS(2465), - [anon_sym_make] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_catch] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_source] = ACTIONS(2465), - [anon_sym_source_DASHenv] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_hide] = ACTIONS(2465), - [anon_sym_hide_DASHenv] = ACTIONS(2465), - [anon_sym_overlay] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_PLUS2] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2465), - [aux_sym__val_number_decimal_token2] = ACTIONS(2465), - [aux_sym__val_number_decimal_token3] = ACTIONS(2465), - [aux_sym__val_number_decimal_token4] = ACTIONS(2465), - [aux_sym__val_number_token1] = ACTIONS(2465), - [aux_sym__val_number_token2] = ACTIONS(2465), - [aux_sym__val_number_token3] = ACTIONS(2465), - [aux_sym__val_number_token4] = ACTIONS(2465), - [aux_sym__val_number_token5] = ACTIONS(2465), - [aux_sym__val_number_token6] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym__str_single_quotes] = ACTIONS(2465), - [sym__str_back_ticks] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2465), - [sym__entry_separator] = ACTIONS(2467), + [aux_sym__multiple_types_repeat1] = STATE(597), + [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_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(2324), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2467), + [sym_raw_string_begin] = ACTIONS(2326), }, [652] = { [sym_comment] = STATE(652), - [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_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_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(1895), + [aux_sym_cmd_identifier_token3] = ACTIONS(1895), + [aux_sym_cmd_identifier_token4] = ACTIONS(1895), + [aux_sym_cmd_identifier_token5] = ACTIONS(1895), + [aux_sym_cmd_identifier_token6] = ACTIONS(1895), + [aux_sym_cmd_identifier_token7] = ACTIONS(1895), + [aux_sym_cmd_identifier_token8] = ACTIONS(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(1895), + [aux_sym_cmd_identifier_token17] = ACTIONS(1895), + [aux_sym_cmd_identifier_token18] = ACTIONS(1895), + [aux_sym_cmd_identifier_token19] = ACTIONS(1895), + [aux_sym_cmd_identifier_token20] = ACTIONS(1895), + [aux_sym_cmd_identifier_token21] = ACTIONS(1895), + [aux_sym_cmd_identifier_token22] = ACTIONS(1895), + [aux_sym_cmd_identifier_token23] = ACTIONS(1895), + [aux_sym_cmd_identifier_token24] = ACTIONS(1895), + [aux_sym_cmd_identifier_token25] = ACTIONS(1895), + [aux_sym_cmd_identifier_token26] = ACTIONS(1895), + [aux_sym_cmd_identifier_token27] = ACTIONS(1895), + [aux_sym_cmd_identifier_token28] = ACTIONS(1895), + [aux_sym_cmd_identifier_token29] = ACTIONS(1895), + [aux_sym_cmd_identifier_token30] = ACTIONS(1895), + [aux_sym_cmd_identifier_token31] = ACTIONS(1895), + [aux_sym_cmd_identifier_token32] = ACTIONS(1895), + [aux_sym_cmd_identifier_token33] = ACTIONS(1895), + [aux_sym_cmd_identifier_token34] = ACTIONS(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1895), + [aux_sym_cmd_identifier_token36] = ACTIONS(1895), + [aux_sym_cmd_identifier_token37] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [sym__entry_separator] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1935), + [sym_raw_string_begin] = ACTIONS(1897), }, [653] = { [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1941), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [aux_sym_cmd_identifier_token6] = ACTIONS(1941), - [aux_sym_cmd_identifier_token7] = ACTIONS(1941), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1941), - [aux_sym_cmd_identifier_token11] = ACTIONS(1941), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1941), - [aux_sym_cmd_identifier_token17] = ACTIONS(1941), - [aux_sym_cmd_identifier_token18] = ACTIONS(1941), - [aux_sym_cmd_identifier_token19] = ACTIONS(1941), - [aux_sym_cmd_identifier_token20] = ACTIONS(1941), - [aux_sym_cmd_identifier_token21] = ACTIONS(1941), - [aux_sym_cmd_identifier_token22] = ACTIONS(1941), - [aux_sym_cmd_identifier_token23] = ACTIONS(1941), - [aux_sym_cmd_identifier_token24] = ACTIONS(1941), - [aux_sym_cmd_identifier_token25] = ACTIONS(1941), - [aux_sym_cmd_identifier_token26] = ACTIONS(1941), - [aux_sym_cmd_identifier_token27] = ACTIONS(1941), - [aux_sym_cmd_identifier_token28] = ACTIONS(1941), - [aux_sym_cmd_identifier_token29] = ACTIONS(1941), - [aux_sym_cmd_identifier_token30] = ACTIONS(1941), - [aux_sym_cmd_identifier_token31] = ACTIONS(1941), - [aux_sym_cmd_identifier_token32] = ACTIONS(1941), - [aux_sym_cmd_identifier_token33] = ACTIONS(1941), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1941), - [aux_sym_cmd_identifier_token36] = ACTIONS(1941), - [aux_sym_cmd_identifier_token37] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [sym__entry_separator] = ACTIONS(1943), + [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(1943), + [sym_raw_string_begin] = ACTIONS(2088), }, [654] = { [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in2] = 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_as] = ACTIONS(2454), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2454), + [aux_sym__val_number_token5] = ACTIONS(2454), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2456), }, [655] = { [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [aux_sym_cmd_identifier_token37] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [sym__entry_separator] = ACTIONS(1947), + [anon_sym_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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in2] = 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_as] = ACTIONS(2458), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2458), + [aux_sym__val_number_token5] = ACTIONS(2458), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1947), + [sym_raw_string_begin] = ACTIONS(2460), }, [656] = { [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_alias] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_let_DASHenv] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [aux_sym_cmd_identifier_token1] = ACTIONS(2201), - [aux_sym_cmd_identifier_token2] = ACTIONS(2201), - [aux_sym_cmd_identifier_token3] = ACTIONS(2201), - [aux_sym_cmd_identifier_token4] = ACTIONS(2201), - [aux_sym_cmd_identifier_token5] = ACTIONS(2201), - [aux_sym_cmd_identifier_token6] = ACTIONS(2201), - [aux_sym_cmd_identifier_token7] = ACTIONS(2201), - [aux_sym_cmd_identifier_token8] = ACTIONS(2201), - [aux_sym_cmd_identifier_token9] = ACTIONS(2201), - [aux_sym_cmd_identifier_token10] = ACTIONS(2201), - [aux_sym_cmd_identifier_token11] = ACTIONS(2201), - [aux_sym_cmd_identifier_token12] = ACTIONS(2201), - [aux_sym_cmd_identifier_token13] = ACTIONS(2201), - [aux_sym_cmd_identifier_token14] = ACTIONS(2201), - [aux_sym_cmd_identifier_token15] = ACTIONS(2201), - [aux_sym_cmd_identifier_token16] = ACTIONS(2201), - [aux_sym_cmd_identifier_token17] = ACTIONS(2201), - [aux_sym_cmd_identifier_token18] = ACTIONS(2201), - [aux_sym_cmd_identifier_token19] = ACTIONS(2201), - [aux_sym_cmd_identifier_token20] = ACTIONS(2201), - [aux_sym_cmd_identifier_token21] = ACTIONS(2201), - [aux_sym_cmd_identifier_token22] = ACTIONS(2201), - [aux_sym_cmd_identifier_token23] = ACTIONS(2201), - [aux_sym_cmd_identifier_token24] = ACTIONS(2201), - [aux_sym_cmd_identifier_token25] = ACTIONS(2201), - [aux_sym_cmd_identifier_token26] = ACTIONS(2201), - [aux_sym_cmd_identifier_token27] = ACTIONS(2201), - [aux_sym_cmd_identifier_token28] = ACTIONS(2201), - [aux_sym_cmd_identifier_token29] = ACTIONS(2201), - [aux_sym_cmd_identifier_token30] = ACTIONS(2201), - [aux_sym_cmd_identifier_token31] = ACTIONS(2201), - [aux_sym_cmd_identifier_token32] = ACTIONS(2201), - [aux_sym_cmd_identifier_token33] = ACTIONS(2201), - [aux_sym_cmd_identifier_token34] = ACTIONS(2201), - [aux_sym_cmd_identifier_token35] = ACTIONS(2201), - [aux_sym_cmd_identifier_token36] = ACTIONS(2201), - [aux_sym_cmd_identifier_token37] = ACTIONS(2201), - [aux_sym_cmd_identifier_token38] = ACTIONS(2201), - [aux_sym_cmd_identifier_token39] = ACTIONS(2201), - [aux_sym_cmd_identifier_token40] = ACTIONS(2201), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_export_DASHenv] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_error] = ACTIONS(2201), - [anon_sym_DASH2] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_in2] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_make] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_source] = ACTIONS(2201), - [anon_sym_source_DASHenv] = ACTIONS(2201), - [anon_sym_register] = ACTIONS(2201), - [anon_sym_hide] = ACTIONS(2201), - [anon_sym_hide_DASHenv] = ACTIONS(2201), - [anon_sym_overlay] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_PLUS2] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2201), - [aux_sym__val_number_decimal_token1] = ACTIONS(2201), - [aux_sym__val_number_decimal_token2] = ACTIONS(2201), - [aux_sym__val_number_decimal_token3] = ACTIONS(2201), - [aux_sym__val_number_decimal_token4] = ACTIONS(2201), - [aux_sym__val_number_token1] = ACTIONS(2201), - [aux_sym__val_number_token2] = ACTIONS(2201), - [aux_sym__val_number_token3] = ACTIONS(2201), - [aux_sym__val_number_token4] = ACTIONS(2201), - [aux_sym__val_number_token5] = ACTIONS(2201), - [aux_sym__val_number_token6] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2201), - [sym__str_single_quotes] = ACTIONS(2201), - [sym__str_back_ticks] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2201), - [sym__entry_separator] = ACTIONS(2203), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in2] = 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_as] = ACTIONS(2462), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2462), + [aux_sym__val_number_token5] = ACTIONS(2462), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2203), + [sym_raw_string_begin] = ACTIONS(2464), }, [657] = { [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2469), - [aux_sym_cmd_identifier_token3] = ACTIONS(2469), - [aux_sym_cmd_identifier_token4] = ACTIONS(2469), - [aux_sym_cmd_identifier_token5] = ACTIONS(2469), - [aux_sym_cmd_identifier_token6] = ACTIONS(2469), - [aux_sym_cmd_identifier_token7] = ACTIONS(2469), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2469), - [aux_sym_cmd_identifier_token11] = ACTIONS(2469), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2469), - [aux_sym_cmd_identifier_token17] = ACTIONS(2469), - [aux_sym_cmd_identifier_token18] = ACTIONS(2469), - [aux_sym_cmd_identifier_token19] = ACTIONS(2469), - [aux_sym_cmd_identifier_token20] = ACTIONS(2469), - [aux_sym_cmd_identifier_token21] = ACTIONS(2469), - [aux_sym_cmd_identifier_token22] = ACTIONS(2469), - [aux_sym_cmd_identifier_token23] = ACTIONS(2469), - [aux_sym_cmd_identifier_token24] = ACTIONS(2469), - [aux_sym_cmd_identifier_token25] = ACTIONS(2469), - [aux_sym_cmd_identifier_token26] = ACTIONS(2469), - [aux_sym_cmd_identifier_token27] = ACTIONS(2469), - [aux_sym_cmd_identifier_token28] = ACTIONS(2469), - [aux_sym_cmd_identifier_token29] = ACTIONS(2469), - [aux_sym_cmd_identifier_token30] = ACTIONS(2469), - [aux_sym_cmd_identifier_token31] = ACTIONS(2469), - [aux_sym_cmd_identifier_token32] = ACTIONS(2469), - [aux_sym_cmd_identifier_token33] = ACTIONS(2469), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2469), - [aux_sym_cmd_identifier_token36] = ACTIONS(2469), - [aux_sym_cmd_identifier_token37] = ACTIONS(2469), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2469), - [aux_sym_cmd_identifier_token40] = ACTIONS(2469), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in2] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2469), - [aux_sym__val_number_decimal_token3] = ACTIONS(2469), - [aux_sym__val_number_decimal_token4] = ACTIONS(2469), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2469), - [aux_sym__val_number_token5] = ACTIONS(2469), - [aux_sym__val_number_token6] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym__str_single_quotes] = ACTIONS(2469), - [sym__str_back_ticks] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), - [sym__entry_separator] = ACTIONS(2471), + [anon_sym_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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in2] = 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_as] = ACTIONS(2466), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2466), + [aux_sym__val_number_token5] = ACTIONS(2466), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2471), + [sym_raw_string_begin] = ACTIONS(2468), }, [658] = { [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(2473), - [anon_sym_alias] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_DASHenv] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [aux_sym_cmd_identifier_token1] = ACTIONS(2473), - [aux_sym_cmd_identifier_token2] = ACTIONS(2473), - [aux_sym_cmd_identifier_token3] = ACTIONS(2473), - [aux_sym_cmd_identifier_token4] = ACTIONS(2473), - [aux_sym_cmd_identifier_token5] = ACTIONS(2473), - [aux_sym_cmd_identifier_token6] = ACTIONS(2473), - [aux_sym_cmd_identifier_token7] = ACTIONS(2473), - [aux_sym_cmd_identifier_token8] = ACTIONS(2473), - [aux_sym_cmd_identifier_token9] = ACTIONS(2473), - [aux_sym_cmd_identifier_token10] = ACTIONS(2473), - [aux_sym_cmd_identifier_token11] = ACTIONS(2473), - [aux_sym_cmd_identifier_token12] = ACTIONS(2473), - [aux_sym_cmd_identifier_token13] = ACTIONS(2473), - [aux_sym_cmd_identifier_token14] = ACTIONS(2473), - [aux_sym_cmd_identifier_token15] = ACTIONS(2473), - [aux_sym_cmd_identifier_token16] = ACTIONS(2473), - [aux_sym_cmd_identifier_token17] = ACTIONS(2473), - [aux_sym_cmd_identifier_token18] = ACTIONS(2473), - [aux_sym_cmd_identifier_token19] = ACTIONS(2473), - [aux_sym_cmd_identifier_token20] = ACTIONS(2473), - [aux_sym_cmd_identifier_token21] = ACTIONS(2473), - [aux_sym_cmd_identifier_token22] = ACTIONS(2473), - [aux_sym_cmd_identifier_token23] = ACTIONS(2473), - [aux_sym_cmd_identifier_token24] = ACTIONS(2473), - [aux_sym_cmd_identifier_token25] = ACTIONS(2473), - [aux_sym_cmd_identifier_token26] = ACTIONS(2473), - [aux_sym_cmd_identifier_token27] = ACTIONS(2473), - [aux_sym_cmd_identifier_token28] = ACTIONS(2473), - [aux_sym_cmd_identifier_token29] = ACTIONS(2473), - [aux_sym_cmd_identifier_token30] = ACTIONS(2473), - [aux_sym_cmd_identifier_token31] = ACTIONS(2473), - [aux_sym_cmd_identifier_token32] = ACTIONS(2473), - [aux_sym_cmd_identifier_token33] = ACTIONS(2473), - [aux_sym_cmd_identifier_token34] = ACTIONS(2473), - [aux_sym_cmd_identifier_token35] = ACTIONS(2473), - [aux_sym_cmd_identifier_token36] = ACTIONS(2473), - [aux_sym_cmd_identifier_token37] = ACTIONS(2473), - [aux_sym_cmd_identifier_token38] = ACTIONS(2473), - [aux_sym_cmd_identifier_token39] = ACTIONS(2473), - [aux_sym_cmd_identifier_token40] = ACTIONS(2473), - [anon_sym_def] = ACTIONS(2473), - [anon_sym_export_DASHenv] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_error] = ACTIONS(2473), - [anon_sym_DASH2] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_in2] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2473), - [anon_sym_make] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_catch] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_source] = ACTIONS(2473), - [anon_sym_source_DASHenv] = ACTIONS(2473), - [anon_sym_register] = ACTIONS(2473), - [anon_sym_hide] = ACTIONS(2473), - [anon_sym_hide_DASHenv] = ACTIONS(2473), - [anon_sym_overlay] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_PLUS2] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), - [aux_sym__val_number_decimal_token1] = ACTIONS(2473), - [aux_sym__val_number_decimal_token2] = ACTIONS(2473), - [aux_sym__val_number_decimal_token3] = ACTIONS(2473), - [aux_sym__val_number_decimal_token4] = ACTIONS(2473), - [aux_sym__val_number_token1] = ACTIONS(2473), - [aux_sym__val_number_token2] = ACTIONS(2473), - [aux_sym__val_number_token3] = ACTIONS(2473), - [aux_sym__val_number_token4] = ACTIONS(2473), - [aux_sym__val_number_token5] = ACTIONS(2473), - [aux_sym__val_number_token6] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym__str_single_quotes] = ACTIONS(2473), - [sym__str_back_ticks] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2473), - [sym__entry_separator] = ACTIONS(2475), + [anon_sym_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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in2] = 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_as] = ACTIONS(2470), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2470), + [aux_sym__val_number_token5] = ACTIONS(2470), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2475), + [sym_raw_string_begin] = ACTIONS(2472), }, [659] = { [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(2477), - [anon_sym_alias] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), - [anon_sym_let_DASHenv] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [aux_sym_cmd_identifier_token1] = ACTIONS(2477), - [aux_sym_cmd_identifier_token2] = ACTIONS(2477), - [aux_sym_cmd_identifier_token3] = ACTIONS(2477), - [aux_sym_cmd_identifier_token4] = ACTIONS(2477), - [aux_sym_cmd_identifier_token5] = ACTIONS(2477), - [aux_sym_cmd_identifier_token6] = ACTIONS(2477), - [aux_sym_cmd_identifier_token7] = ACTIONS(2477), - [aux_sym_cmd_identifier_token8] = ACTIONS(2477), - [aux_sym_cmd_identifier_token9] = ACTIONS(2477), - [aux_sym_cmd_identifier_token10] = ACTIONS(2477), - [aux_sym_cmd_identifier_token11] = ACTIONS(2477), - [aux_sym_cmd_identifier_token12] = ACTIONS(2477), - [aux_sym_cmd_identifier_token13] = ACTIONS(2477), - [aux_sym_cmd_identifier_token14] = ACTIONS(2477), - [aux_sym_cmd_identifier_token15] = ACTIONS(2477), - [aux_sym_cmd_identifier_token16] = ACTIONS(2477), - [aux_sym_cmd_identifier_token17] = ACTIONS(2477), - [aux_sym_cmd_identifier_token18] = ACTIONS(2477), - [aux_sym_cmd_identifier_token19] = ACTIONS(2477), - [aux_sym_cmd_identifier_token20] = ACTIONS(2477), - [aux_sym_cmd_identifier_token21] = ACTIONS(2477), - [aux_sym_cmd_identifier_token22] = ACTIONS(2477), - [aux_sym_cmd_identifier_token23] = ACTIONS(2477), - [aux_sym_cmd_identifier_token24] = ACTIONS(2477), - [aux_sym_cmd_identifier_token25] = ACTIONS(2477), - [aux_sym_cmd_identifier_token26] = ACTIONS(2477), - [aux_sym_cmd_identifier_token27] = ACTIONS(2477), - [aux_sym_cmd_identifier_token28] = ACTIONS(2477), - [aux_sym_cmd_identifier_token29] = ACTIONS(2477), - [aux_sym_cmd_identifier_token30] = ACTIONS(2477), - [aux_sym_cmd_identifier_token31] = ACTIONS(2477), - [aux_sym_cmd_identifier_token32] = ACTIONS(2477), - [aux_sym_cmd_identifier_token33] = ACTIONS(2477), - [aux_sym_cmd_identifier_token34] = ACTIONS(2477), - [aux_sym_cmd_identifier_token35] = ACTIONS(2477), - [aux_sym_cmd_identifier_token36] = ACTIONS(2477), - [aux_sym_cmd_identifier_token37] = ACTIONS(2477), - [aux_sym_cmd_identifier_token38] = ACTIONS(2477), - [aux_sym_cmd_identifier_token39] = ACTIONS(2477), - [aux_sym_cmd_identifier_token40] = ACTIONS(2477), - [anon_sym_def] = ACTIONS(2477), - [anon_sym_export_DASHenv] = ACTIONS(2477), - [anon_sym_extern] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2477), - [anon_sym_error] = ACTIONS(2477), - [anon_sym_DASH2] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_in2] = ACTIONS(2477), - [anon_sym_loop] = ACTIONS(2477), - [anon_sym_make] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_catch] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_source] = ACTIONS(2477), - [anon_sym_source_DASHenv] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2477), - [anon_sym_hide] = ACTIONS(2477), - [anon_sym_hide_DASHenv] = ACTIONS(2477), - [anon_sym_overlay] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_PLUS2] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), - [aux_sym__val_number_decimal_token1] = ACTIONS(2477), - [aux_sym__val_number_decimal_token2] = ACTIONS(2477), - [aux_sym__val_number_decimal_token3] = ACTIONS(2477), - [aux_sym__val_number_decimal_token4] = ACTIONS(2477), - [aux_sym__val_number_token1] = ACTIONS(2477), - [aux_sym__val_number_token2] = ACTIONS(2477), - [aux_sym__val_number_token3] = ACTIONS(2477), - [aux_sym__val_number_token4] = ACTIONS(2477), - [aux_sym__val_number_token5] = ACTIONS(2477), - [aux_sym__val_number_token6] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2477), - [sym__str_back_ticks] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), - [sym__entry_separator] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2479), - }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [aux_sym_cmd_identifier_token37] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_decimal_token4] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [sym__entry_separator] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1959), - }, - [661] = { - [sym_comment] = STATE(661), - [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(1915), - }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [aux_sym_cmd_identifier_token37] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [sym__entry_separator] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1967), - }, - [663] = { - [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(2481), - [anon_sym_alias] = ACTIONS(2481), - [anon_sym_let] = ACTIONS(2481), - [anon_sym_let_DASHenv] = ACTIONS(2481), - [anon_sym_mut] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [aux_sym_cmd_identifier_token1] = ACTIONS(2481), - [aux_sym_cmd_identifier_token2] = ACTIONS(2481), - [aux_sym_cmd_identifier_token3] = ACTIONS(2481), - [aux_sym_cmd_identifier_token4] = ACTIONS(2481), - [aux_sym_cmd_identifier_token5] = ACTIONS(2481), - [aux_sym_cmd_identifier_token6] = ACTIONS(2481), - [aux_sym_cmd_identifier_token7] = ACTIONS(2481), - [aux_sym_cmd_identifier_token8] = ACTIONS(2481), - [aux_sym_cmd_identifier_token9] = ACTIONS(2481), - [aux_sym_cmd_identifier_token10] = ACTIONS(2481), - [aux_sym_cmd_identifier_token11] = ACTIONS(2481), - [aux_sym_cmd_identifier_token12] = ACTIONS(2481), - [aux_sym_cmd_identifier_token13] = ACTIONS(2481), - [aux_sym_cmd_identifier_token14] = ACTIONS(2481), - [aux_sym_cmd_identifier_token15] = ACTIONS(2481), - [aux_sym_cmd_identifier_token16] = ACTIONS(2481), - [aux_sym_cmd_identifier_token17] = ACTIONS(2481), - [aux_sym_cmd_identifier_token18] = ACTIONS(2481), - [aux_sym_cmd_identifier_token19] = ACTIONS(2481), - [aux_sym_cmd_identifier_token20] = ACTIONS(2481), - [aux_sym_cmd_identifier_token21] = ACTIONS(2481), - [aux_sym_cmd_identifier_token22] = ACTIONS(2481), - [aux_sym_cmd_identifier_token23] = ACTIONS(2481), - [aux_sym_cmd_identifier_token24] = ACTIONS(2481), - [aux_sym_cmd_identifier_token25] = ACTIONS(2481), - [aux_sym_cmd_identifier_token26] = ACTIONS(2481), - [aux_sym_cmd_identifier_token27] = ACTIONS(2481), - [aux_sym_cmd_identifier_token28] = ACTIONS(2481), - [aux_sym_cmd_identifier_token29] = ACTIONS(2481), - [aux_sym_cmd_identifier_token30] = ACTIONS(2481), - [aux_sym_cmd_identifier_token31] = ACTIONS(2481), - [aux_sym_cmd_identifier_token32] = ACTIONS(2481), - [aux_sym_cmd_identifier_token33] = ACTIONS(2481), - [aux_sym_cmd_identifier_token34] = ACTIONS(2481), - [aux_sym_cmd_identifier_token35] = ACTIONS(2481), - [aux_sym_cmd_identifier_token36] = ACTIONS(2481), - [aux_sym_cmd_identifier_token37] = ACTIONS(2481), - [aux_sym_cmd_identifier_token38] = ACTIONS(2481), - [aux_sym_cmd_identifier_token39] = ACTIONS(2481), - [aux_sym_cmd_identifier_token40] = ACTIONS(2481), - [anon_sym_def] = ACTIONS(2481), - [anon_sym_export_DASHenv] = ACTIONS(2481), - [anon_sym_extern] = ACTIONS(2481), - [anon_sym_module] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2481), - [anon_sym_error] = ACTIONS(2481), - [anon_sym_DASH2] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_in2] = ACTIONS(2481), - [anon_sym_loop] = ACTIONS(2481), - [anon_sym_make] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_catch] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_source] = ACTIONS(2481), - [anon_sym_source_DASHenv] = ACTIONS(2481), - [anon_sym_register] = ACTIONS(2481), - [anon_sym_hide] = ACTIONS(2481), - [anon_sym_hide_DASHenv] = ACTIONS(2481), - [anon_sym_overlay] = ACTIONS(2481), - [anon_sym_as] = ACTIONS(2481), - [anon_sym_PLUS2] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2481), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2481), - [aux_sym__val_number_decimal_token3] = ACTIONS(2481), - [aux_sym__val_number_decimal_token4] = ACTIONS(2481), - [aux_sym__val_number_token1] = ACTIONS(2481), - [aux_sym__val_number_token2] = ACTIONS(2481), - [aux_sym__val_number_token3] = ACTIONS(2481), - [aux_sym__val_number_token4] = ACTIONS(2481), - [aux_sym__val_number_token5] = ACTIONS(2481), - [aux_sym__val_number_token6] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym__str_single_quotes] = ACTIONS(2481), - [sym__str_back_ticks] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2481), - [sym__entry_separator] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2483), - }, - [664] = { - [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2485), - [anon_sym_let_DASHenv] = ACTIONS(2485), - [anon_sym_mut] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [aux_sym_cmd_identifier_token2] = ACTIONS(2485), - [aux_sym_cmd_identifier_token3] = ACTIONS(2485), - [aux_sym_cmd_identifier_token4] = ACTIONS(2485), - [aux_sym_cmd_identifier_token5] = ACTIONS(2485), - [aux_sym_cmd_identifier_token6] = ACTIONS(2485), - [aux_sym_cmd_identifier_token7] = ACTIONS(2485), - [aux_sym_cmd_identifier_token8] = ACTIONS(2485), - [aux_sym_cmd_identifier_token9] = ACTIONS(2485), - [aux_sym_cmd_identifier_token10] = ACTIONS(2485), - [aux_sym_cmd_identifier_token11] = ACTIONS(2485), - [aux_sym_cmd_identifier_token12] = ACTIONS(2485), - [aux_sym_cmd_identifier_token13] = ACTIONS(2485), - [aux_sym_cmd_identifier_token14] = ACTIONS(2485), - [aux_sym_cmd_identifier_token15] = ACTIONS(2485), - [aux_sym_cmd_identifier_token16] = ACTIONS(2485), - [aux_sym_cmd_identifier_token17] = ACTIONS(2485), - [aux_sym_cmd_identifier_token18] = ACTIONS(2485), - [aux_sym_cmd_identifier_token19] = ACTIONS(2485), - [aux_sym_cmd_identifier_token20] = ACTIONS(2485), - [aux_sym_cmd_identifier_token21] = ACTIONS(2485), - [aux_sym_cmd_identifier_token22] = ACTIONS(2485), - [aux_sym_cmd_identifier_token23] = ACTIONS(2485), - [aux_sym_cmd_identifier_token24] = ACTIONS(2485), - [aux_sym_cmd_identifier_token25] = ACTIONS(2485), - [aux_sym_cmd_identifier_token26] = ACTIONS(2485), - [aux_sym_cmd_identifier_token27] = ACTIONS(2485), - [aux_sym_cmd_identifier_token28] = ACTIONS(2485), - [aux_sym_cmd_identifier_token29] = ACTIONS(2485), - [aux_sym_cmd_identifier_token30] = ACTIONS(2485), - [aux_sym_cmd_identifier_token31] = ACTIONS(2485), - [aux_sym_cmd_identifier_token32] = ACTIONS(2485), - [aux_sym_cmd_identifier_token33] = ACTIONS(2485), - [aux_sym_cmd_identifier_token34] = ACTIONS(2485), - [aux_sym_cmd_identifier_token35] = ACTIONS(2485), - [aux_sym_cmd_identifier_token36] = ACTIONS(2485), - [aux_sym_cmd_identifier_token37] = ACTIONS(2485), - [aux_sym_cmd_identifier_token38] = ACTIONS(2485), - [aux_sym_cmd_identifier_token39] = ACTIONS(2485), - [aux_sym_cmd_identifier_token40] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2485), - [anon_sym_export_DASHenv] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(2485), - [anon_sym_module] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_error] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_in2] = ACTIONS(2485), - [anon_sym_loop] = ACTIONS(2485), - [anon_sym_make] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_catch] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_source] = ACTIONS(2485), - [anon_sym_source_DASHenv] = ACTIONS(2485), - [anon_sym_register] = ACTIONS(2485), - [anon_sym_hide] = ACTIONS(2485), - [anon_sym_hide_DASHenv] = ACTIONS(2485), - [anon_sym_overlay] = ACTIONS(2485), - [anon_sym_as] = ACTIONS(2485), - [anon_sym_PLUS2] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2485), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2485), - [aux_sym__val_number_token1] = ACTIONS(2485), - [aux_sym__val_number_token2] = ACTIONS(2485), - [aux_sym__val_number_token3] = ACTIONS(2485), - [aux_sym__val_number_token4] = ACTIONS(2485), - [aux_sym__val_number_token5] = ACTIONS(2485), - [aux_sym__val_number_token6] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym__str_single_quotes] = ACTIONS(2485), - [sym__str_back_ticks] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), - [sym__entry_separator] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), - }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [aux_sym_cmd_identifier_token37] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1969), - [aux_sym_cmd_identifier_token40] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), - [sym__entry_separator] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1971), - }, - [666] = { - [sym_comment] = STATE(666), - [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(2112), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2112), - }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2489), - [aux_sym_cmd_identifier_token3] = ACTIONS(2489), - [aux_sym_cmd_identifier_token4] = ACTIONS(2489), - [aux_sym_cmd_identifier_token5] = ACTIONS(2489), - [aux_sym_cmd_identifier_token6] = ACTIONS(2489), - [aux_sym_cmd_identifier_token7] = ACTIONS(2489), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2489), - [aux_sym_cmd_identifier_token11] = ACTIONS(2489), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2489), - [aux_sym_cmd_identifier_token17] = ACTIONS(2489), - [aux_sym_cmd_identifier_token18] = ACTIONS(2489), - [aux_sym_cmd_identifier_token19] = ACTIONS(2489), - [aux_sym_cmd_identifier_token20] = ACTIONS(2489), - [aux_sym_cmd_identifier_token21] = ACTIONS(2489), - [aux_sym_cmd_identifier_token22] = ACTIONS(2489), - [aux_sym_cmd_identifier_token23] = ACTIONS(2489), - [aux_sym_cmd_identifier_token24] = ACTIONS(2489), - [aux_sym_cmd_identifier_token25] = ACTIONS(2489), - [aux_sym_cmd_identifier_token26] = ACTIONS(2489), - [aux_sym_cmd_identifier_token27] = ACTIONS(2489), - [aux_sym_cmd_identifier_token28] = ACTIONS(2489), - [aux_sym_cmd_identifier_token29] = ACTIONS(2489), - [aux_sym_cmd_identifier_token30] = ACTIONS(2489), - [aux_sym_cmd_identifier_token31] = ACTIONS(2489), - [aux_sym_cmd_identifier_token32] = ACTIONS(2489), - [aux_sym_cmd_identifier_token33] = ACTIONS(2489), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2489), - [aux_sym_cmd_identifier_token36] = ACTIONS(2489), - [aux_sym_cmd_identifier_token37] = ACTIONS(2489), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2489), - [aux_sym_cmd_identifier_token40] = ACTIONS(2489), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_DASH2] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in2] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_PLUS2] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2489), - [aux_sym__val_number_decimal_token3] = ACTIONS(2489), - [aux_sym__val_number_decimal_token4] = ACTIONS(2489), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [aux_sym__val_number_token4] = ACTIONS(2489), - [aux_sym__val_number_token5] = ACTIONS(2489), - [aux_sym__val_number_token6] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym__str_single_quotes] = ACTIONS(2489), - [sym__str_back_ticks] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), - [sym__entry_separator] = ACTIONS(2491), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2491), - }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2493), - [aux_sym_cmd_identifier_token2] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [aux_sym_cmd_identifier_token6] = ACTIONS(2493), - [aux_sym_cmd_identifier_token7] = ACTIONS(2493), - [aux_sym_cmd_identifier_token8] = ACTIONS(2493), - [aux_sym_cmd_identifier_token9] = ACTIONS(2493), - [aux_sym_cmd_identifier_token10] = ACTIONS(2493), - [aux_sym_cmd_identifier_token11] = ACTIONS(2493), - [aux_sym_cmd_identifier_token12] = ACTIONS(2493), - [aux_sym_cmd_identifier_token13] = ACTIONS(2493), - [aux_sym_cmd_identifier_token14] = ACTIONS(2493), - [aux_sym_cmd_identifier_token15] = ACTIONS(2493), - [aux_sym_cmd_identifier_token16] = ACTIONS(2493), - [aux_sym_cmd_identifier_token17] = ACTIONS(2493), - [aux_sym_cmd_identifier_token18] = ACTIONS(2493), - [aux_sym_cmd_identifier_token19] = ACTIONS(2493), - [aux_sym_cmd_identifier_token20] = ACTIONS(2493), - [aux_sym_cmd_identifier_token21] = ACTIONS(2493), - [aux_sym_cmd_identifier_token22] = ACTIONS(2493), - [aux_sym_cmd_identifier_token23] = ACTIONS(2493), - [aux_sym_cmd_identifier_token24] = ACTIONS(2493), - [aux_sym_cmd_identifier_token25] = ACTIONS(2493), - [aux_sym_cmd_identifier_token26] = ACTIONS(2493), - [aux_sym_cmd_identifier_token27] = ACTIONS(2493), - [aux_sym_cmd_identifier_token28] = ACTIONS(2493), - [aux_sym_cmd_identifier_token29] = ACTIONS(2493), - [aux_sym_cmd_identifier_token30] = ACTIONS(2493), - [aux_sym_cmd_identifier_token31] = ACTIONS(2493), - [aux_sym_cmd_identifier_token32] = ACTIONS(2493), - [aux_sym_cmd_identifier_token33] = ACTIONS(2493), - [aux_sym_cmd_identifier_token34] = ACTIONS(2493), - [aux_sym_cmd_identifier_token35] = ACTIONS(2493), - [aux_sym_cmd_identifier_token36] = ACTIONS(2493), - [aux_sym_cmd_identifier_token37] = ACTIONS(2493), - [aux_sym_cmd_identifier_token38] = ACTIONS(2493), - [aux_sym_cmd_identifier_token39] = ACTIONS(2493), - [aux_sym_cmd_identifier_token40] = ACTIONS(2493), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_DASH2] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_in2] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_make] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2493), - [anon_sym_PLUS2] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2493), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [aux_sym__val_number_token4] = ACTIONS(2493), - [aux_sym__val_number_token5] = ACTIONS(2493), - [aux_sym__val_number_token6] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym__str_single_quotes] = ACTIONS(2493), - [sym__str_back_ticks] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), - [sym__entry_separator] = ACTIONS(2495), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2495), - }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(1695), - [anon_sym_alias] = ACTIONS(1695), - [anon_sym_let] = ACTIONS(1695), - [anon_sym_let_DASHenv] = ACTIONS(1695), - [anon_sym_mut] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [aux_sym_cmd_identifier_token1] = ACTIONS(1695), - [aux_sym_cmd_identifier_token2] = ACTIONS(1695), - [aux_sym_cmd_identifier_token3] = ACTIONS(1695), - [aux_sym_cmd_identifier_token4] = ACTIONS(1695), - [aux_sym_cmd_identifier_token5] = ACTIONS(1695), - [aux_sym_cmd_identifier_token6] = ACTIONS(1695), - [aux_sym_cmd_identifier_token7] = ACTIONS(1695), - [aux_sym_cmd_identifier_token8] = ACTIONS(1695), - [aux_sym_cmd_identifier_token9] = ACTIONS(1695), - [aux_sym_cmd_identifier_token10] = ACTIONS(1695), - [aux_sym_cmd_identifier_token11] = ACTIONS(1695), - [aux_sym_cmd_identifier_token12] = ACTIONS(1695), - [aux_sym_cmd_identifier_token13] = ACTIONS(1695), - [aux_sym_cmd_identifier_token14] = ACTIONS(1695), - [aux_sym_cmd_identifier_token15] = ACTIONS(1695), - [aux_sym_cmd_identifier_token16] = ACTIONS(1695), - [aux_sym_cmd_identifier_token17] = ACTIONS(1695), - [aux_sym_cmd_identifier_token18] = ACTIONS(1695), - [aux_sym_cmd_identifier_token19] = ACTIONS(1695), - [aux_sym_cmd_identifier_token20] = ACTIONS(1695), - [aux_sym_cmd_identifier_token21] = ACTIONS(1695), - [aux_sym_cmd_identifier_token22] = ACTIONS(1695), - [aux_sym_cmd_identifier_token23] = ACTIONS(1695), - [aux_sym_cmd_identifier_token24] = ACTIONS(1695), - [aux_sym_cmd_identifier_token25] = ACTIONS(1695), - [aux_sym_cmd_identifier_token26] = ACTIONS(1695), - [aux_sym_cmd_identifier_token27] = ACTIONS(1695), - [aux_sym_cmd_identifier_token28] = ACTIONS(1695), - [aux_sym_cmd_identifier_token29] = ACTIONS(1695), - [aux_sym_cmd_identifier_token30] = ACTIONS(1695), - [aux_sym_cmd_identifier_token31] = ACTIONS(1695), - [aux_sym_cmd_identifier_token32] = ACTIONS(1695), - [aux_sym_cmd_identifier_token33] = ACTIONS(1695), - [aux_sym_cmd_identifier_token34] = ACTIONS(1695), - [aux_sym_cmd_identifier_token35] = ACTIONS(1695), - [aux_sym_cmd_identifier_token36] = ACTIONS(1695), - [aux_sym_cmd_identifier_token37] = ACTIONS(1695), - [aux_sym_cmd_identifier_token38] = ACTIONS(1695), - [aux_sym_cmd_identifier_token39] = ACTIONS(1695), - [aux_sym_cmd_identifier_token40] = ACTIONS(1695), - [anon_sym_def] = ACTIONS(1695), - [anon_sym_export_DASHenv] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_module] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_error] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_loop] = ACTIONS(1695), - [anon_sym_make] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_catch] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_source] = ACTIONS(1695), - [anon_sym_source_DASHenv] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_hide] = ACTIONS(1695), - [anon_sym_hide_DASHenv] = ACTIONS(1695), - [anon_sym_overlay] = ACTIONS(1695), - [anon_sym_as] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1695), - [aux_sym__val_number_decimal_token3] = ACTIONS(1695), - [aux_sym__val_number_decimal_token4] = ACTIONS(1695), - [aux_sym__val_number_token1] = ACTIONS(1695), - [aux_sym__val_number_token2] = ACTIONS(1695), - [aux_sym__val_number_token3] = ACTIONS(1695), - [aux_sym__val_number_token4] = ACTIONS(1695), - [aux_sym__val_number_token5] = ACTIONS(1695), - [aux_sym__val_number_token6] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym__str_single_quotes] = ACTIONS(1695), - [sym__str_back_ticks] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), - [sym__entry_separator] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2497), - [aux_sym_cmd_identifier_token3] = ACTIONS(2497), - [aux_sym_cmd_identifier_token4] = ACTIONS(2497), - [aux_sym_cmd_identifier_token5] = ACTIONS(2497), - [aux_sym_cmd_identifier_token6] = ACTIONS(2497), - [aux_sym_cmd_identifier_token7] = ACTIONS(2497), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2497), - [aux_sym_cmd_identifier_token11] = ACTIONS(2497), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2497), - [aux_sym_cmd_identifier_token17] = ACTIONS(2497), - [aux_sym_cmd_identifier_token18] = ACTIONS(2497), - [aux_sym_cmd_identifier_token19] = ACTIONS(2497), - [aux_sym_cmd_identifier_token20] = ACTIONS(2497), - [aux_sym_cmd_identifier_token21] = ACTIONS(2497), - [aux_sym_cmd_identifier_token22] = ACTIONS(2497), - [aux_sym_cmd_identifier_token23] = ACTIONS(2497), - [aux_sym_cmd_identifier_token24] = ACTIONS(2497), - [aux_sym_cmd_identifier_token25] = ACTIONS(2497), - [aux_sym_cmd_identifier_token26] = ACTIONS(2497), - [aux_sym_cmd_identifier_token27] = ACTIONS(2497), - [aux_sym_cmd_identifier_token28] = ACTIONS(2497), - [aux_sym_cmd_identifier_token29] = ACTIONS(2497), - [aux_sym_cmd_identifier_token30] = ACTIONS(2497), - [aux_sym_cmd_identifier_token31] = ACTIONS(2497), - [aux_sym_cmd_identifier_token32] = ACTIONS(2497), - [aux_sym_cmd_identifier_token33] = ACTIONS(2497), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2497), - [aux_sym_cmd_identifier_token36] = ACTIONS(2497), - [aux_sym_cmd_identifier_token37] = ACTIONS(2497), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2497), - [aux_sym_cmd_identifier_token40] = ACTIONS(2497), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_DASH2] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in2] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_PLUS2] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2497), - [aux_sym__val_number_decimal_token3] = ACTIONS(2497), - [aux_sym__val_number_decimal_token4] = ACTIONS(2497), - [aux_sym__val_number_token1] = ACTIONS(2497), - [aux_sym__val_number_token2] = ACTIONS(2497), - [aux_sym__val_number_token3] = ACTIONS(2497), - [aux_sym__val_number_token4] = ACTIONS(2497), - [aux_sym__val_number_token5] = ACTIONS(2497), - [aux_sym__val_number_token6] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2497), - [sym__str_back_ticks] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), - [sym__entry_separator] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2499), - }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2501), - [aux_sym_cmd_identifier_token4] = ACTIONS(2501), - [aux_sym_cmd_identifier_token5] = ACTIONS(2501), - [aux_sym_cmd_identifier_token6] = ACTIONS(2501), - [aux_sym_cmd_identifier_token7] = ACTIONS(2501), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2501), - [aux_sym_cmd_identifier_token11] = ACTIONS(2501), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2501), - [aux_sym_cmd_identifier_token17] = ACTIONS(2501), - [aux_sym_cmd_identifier_token18] = ACTIONS(2501), - [aux_sym_cmd_identifier_token19] = ACTIONS(2501), - [aux_sym_cmd_identifier_token20] = ACTIONS(2501), - [aux_sym_cmd_identifier_token21] = ACTIONS(2501), - [aux_sym_cmd_identifier_token22] = ACTIONS(2501), - [aux_sym_cmd_identifier_token23] = ACTIONS(2501), - [aux_sym_cmd_identifier_token24] = ACTIONS(2501), - [aux_sym_cmd_identifier_token25] = ACTIONS(2501), - [aux_sym_cmd_identifier_token26] = ACTIONS(2501), - [aux_sym_cmd_identifier_token27] = ACTIONS(2501), - [aux_sym_cmd_identifier_token28] = ACTIONS(2501), - [aux_sym_cmd_identifier_token29] = ACTIONS(2501), - [aux_sym_cmd_identifier_token30] = ACTIONS(2501), - [aux_sym_cmd_identifier_token31] = ACTIONS(2501), - [aux_sym_cmd_identifier_token32] = ACTIONS(2501), - [aux_sym_cmd_identifier_token33] = ACTIONS(2501), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2501), - [aux_sym_cmd_identifier_token36] = ACTIONS(2501), - [aux_sym_cmd_identifier_token37] = ACTIONS(2501), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2501), - [aux_sym_cmd_identifier_token40] = ACTIONS(2501), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2501), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in2] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2501), - [aux_sym__val_number_decimal_token4] = ACTIONS(2501), - [aux_sym__val_number_token1] = ACTIONS(2501), - [aux_sym__val_number_token2] = ACTIONS(2501), - [aux_sym__val_number_token3] = ACTIONS(2501), - [aux_sym__val_number_token4] = ACTIONS(2501), - [aux_sym__val_number_token5] = ACTIONS(2501), - [aux_sym__val_number_token6] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym__str_single_quotes] = ACTIONS(2501), - [sym__str_back_ticks] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), - [sym__entry_separator] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2503), - }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_let_DASHenv] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2505), - [aux_sym_cmd_identifier_token2] = ACTIONS(2505), - [aux_sym_cmd_identifier_token3] = ACTIONS(2505), - [aux_sym_cmd_identifier_token4] = ACTIONS(2505), - [aux_sym_cmd_identifier_token5] = ACTIONS(2505), - [aux_sym_cmd_identifier_token6] = ACTIONS(2505), - [aux_sym_cmd_identifier_token7] = ACTIONS(2505), - [aux_sym_cmd_identifier_token8] = ACTIONS(2505), - [aux_sym_cmd_identifier_token9] = ACTIONS(2505), - [aux_sym_cmd_identifier_token10] = ACTIONS(2505), - [aux_sym_cmd_identifier_token11] = ACTIONS(2505), - [aux_sym_cmd_identifier_token12] = ACTIONS(2505), - [aux_sym_cmd_identifier_token13] = ACTIONS(2505), - [aux_sym_cmd_identifier_token14] = ACTIONS(2505), - [aux_sym_cmd_identifier_token15] = ACTIONS(2505), - [aux_sym_cmd_identifier_token16] = ACTIONS(2505), - [aux_sym_cmd_identifier_token17] = ACTIONS(2505), - [aux_sym_cmd_identifier_token18] = ACTIONS(2505), - [aux_sym_cmd_identifier_token19] = ACTIONS(2505), - [aux_sym_cmd_identifier_token20] = ACTIONS(2505), - [aux_sym_cmd_identifier_token21] = ACTIONS(2505), - [aux_sym_cmd_identifier_token22] = ACTIONS(2505), - [aux_sym_cmd_identifier_token23] = ACTIONS(2505), - [aux_sym_cmd_identifier_token24] = ACTIONS(2505), - [aux_sym_cmd_identifier_token25] = ACTIONS(2505), - [aux_sym_cmd_identifier_token26] = ACTIONS(2505), - [aux_sym_cmd_identifier_token27] = ACTIONS(2505), - [aux_sym_cmd_identifier_token28] = ACTIONS(2505), - [aux_sym_cmd_identifier_token29] = ACTIONS(2505), - [aux_sym_cmd_identifier_token30] = ACTIONS(2505), - [aux_sym_cmd_identifier_token31] = ACTIONS(2505), - [aux_sym_cmd_identifier_token32] = ACTIONS(2505), - [aux_sym_cmd_identifier_token33] = ACTIONS(2505), - [aux_sym_cmd_identifier_token34] = ACTIONS(2505), - [aux_sym_cmd_identifier_token35] = ACTIONS(2505), - [aux_sym_cmd_identifier_token36] = ACTIONS(2505), - [aux_sym_cmd_identifier_token37] = ACTIONS(2505), - [aux_sym_cmd_identifier_token38] = ACTIONS(2505), - [aux_sym_cmd_identifier_token39] = ACTIONS(2505), - [aux_sym_cmd_identifier_token40] = ACTIONS(2505), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2505), - [anon_sym_error] = ACTIONS(2505), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_in2] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_make] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_source] = ACTIONS(2505), - [anon_sym_source_DASHenv] = ACTIONS(2505), - [anon_sym_register] = ACTIONS(2505), - [anon_sym_hide] = ACTIONS(2505), - [anon_sym_hide_DASHenv] = ACTIONS(2505), - [anon_sym_overlay] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2505), - [aux_sym__val_number_decimal_token1] = ACTIONS(2505), - [aux_sym__val_number_decimal_token2] = ACTIONS(2505), - [aux_sym__val_number_decimal_token3] = ACTIONS(2505), - [aux_sym__val_number_decimal_token4] = ACTIONS(2505), - [aux_sym__val_number_token1] = ACTIONS(2505), - [aux_sym__val_number_token2] = ACTIONS(2505), - [aux_sym__val_number_token3] = ACTIONS(2505), - [aux_sym__val_number_token4] = ACTIONS(2505), - [aux_sym__val_number_token5] = ACTIONS(2505), - [aux_sym__val_number_token6] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym__str_single_quotes] = ACTIONS(2505), - [sym__str_back_ticks] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2505), - [sym__entry_separator] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2507), - }, - [673] = { - [sym_comment] = STATE(673), - [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_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), - }, - [674] = { - [sym_comment] = STATE(674), - [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_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), - }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(2044), - [anon_sym_alias] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_let_DASHenv] = ACTIONS(2044), - [anon_sym_mut] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [aux_sym_cmd_identifier_token1] = ACTIONS(2044), - [aux_sym_cmd_identifier_token2] = ACTIONS(2044), - [aux_sym_cmd_identifier_token3] = ACTIONS(2044), - [aux_sym_cmd_identifier_token4] = ACTIONS(2044), - [aux_sym_cmd_identifier_token5] = ACTIONS(2044), - [aux_sym_cmd_identifier_token6] = ACTIONS(2044), - [aux_sym_cmd_identifier_token7] = ACTIONS(2044), - [aux_sym_cmd_identifier_token8] = ACTIONS(2044), - [aux_sym_cmd_identifier_token9] = ACTIONS(2044), - [aux_sym_cmd_identifier_token10] = ACTIONS(2044), - [aux_sym_cmd_identifier_token11] = ACTIONS(2044), - [aux_sym_cmd_identifier_token12] = ACTIONS(2044), - [aux_sym_cmd_identifier_token13] = ACTIONS(2044), - [aux_sym_cmd_identifier_token14] = ACTIONS(2044), - [aux_sym_cmd_identifier_token15] = ACTIONS(2044), - [aux_sym_cmd_identifier_token16] = ACTIONS(2044), - [aux_sym_cmd_identifier_token17] = ACTIONS(2044), - [aux_sym_cmd_identifier_token18] = ACTIONS(2044), - [aux_sym_cmd_identifier_token19] = ACTIONS(2044), - [aux_sym_cmd_identifier_token20] = ACTIONS(2044), - [aux_sym_cmd_identifier_token21] = ACTIONS(2044), - [aux_sym_cmd_identifier_token22] = ACTIONS(2044), - [aux_sym_cmd_identifier_token23] = ACTIONS(2044), - [aux_sym_cmd_identifier_token24] = ACTIONS(2044), - [aux_sym_cmd_identifier_token25] = ACTIONS(2044), - [aux_sym_cmd_identifier_token26] = ACTIONS(2044), - [aux_sym_cmd_identifier_token27] = ACTIONS(2044), - [aux_sym_cmd_identifier_token28] = ACTIONS(2044), - [aux_sym_cmd_identifier_token29] = ACTIONS(2044), - [aux_sym_cmd_identifier_token30] = ACTIONS(2044), - [aux_sym_cmd_identifier_token31] = ACTIONS(2044), - [aux_sym_cmd_identifier_token32] = ACTIONS(2044), - [aux_sym_cmd_identifier_token33] = ACTIONS(2044), - [aux_sym_cmd_identifier_token34] = ACTIONS(2044), - [aux_sym_cmd_identifier_token35] = ACTIONS(2044), - [aux_sym_cmd_identifier_token36] = ACTIONS(2044), - [aux_sym_cmd_identifier_token37] = ACTIONS(2044), - [aux_sym_cmd_identifier_token38] = ACTIONS(2044), - [aux_sym_cmd_identifier_token39] = ACTIONS(2044), - [aux_sym_cmd_identifier_token40] = ACTIONS(2044), - [anon_sym_def] = ACTIONS(2044), - [anon_sym_export_DASHenv] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_module] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_error] = ACTIONS(2044), - [anon_sym_DASH2] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_in2] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_make] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_do] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_else] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [anon_sym_catch] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_source] = ACTIONS(2044), - [anon_sym_source_DASHenv] = ACTIONS(2044), - [anon_sym_register] = ACTIONS(2044), - [anon_sym_hide] = ACTIONS(2044), - [anon_sym_hide_DASHenv] = ACTIONS(2044), - [anon_sym_overlay] = ACTIONS(2044), - [anon_sym_as] = ACTIONS(2044), - [anon_sym_PLUS2] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), - [aux_sym__val_number_decimal_token1] = ACTIONS(2044), - [aux_sym__val_number_decimal_token2] = ACTIONS(2044), - [aux_sym__val_number_decimal_token3] = ACTIONS(2044), - [aux_sym__val_number_decimal_token4] = ACTIONS(2044), - [aux_sym__val_number_token1] = ACTIONS(2044), - [aux_sym__val_number_token2] = ACTIONS(2044), - [aux_sym__val_number_token3] = ACTIONS(2044), - [aux_sym__val_number_token4] = ACTIONS(2044), - [aux_sym__val_number_token5] = ACTIONS(2044), - [aux_sym__val_number_token6] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2044), - [sym__str_single_quotes] = ACTIONS(2044), - [sym__str_back_ticks] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2044), - [sym__entry_separator] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2046), - }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_alias] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_let_DASHenv] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [aux_sym_cmd_identifier_token1] = ACTIONS(2509), - [aux_sym_cmd_identifier_token2] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2509), - [aux_sym_cmd_identifier_token4] = ACTIONS(2509), - [aux_sym_cmd_identifier_token5] = ACTIONS(2509), - [aux_sym_cmd_identifier_token6] = ACTIONS(2509), - [aux_sym_cmd_identifier_token7] = ACTIONS(2509), - [aux_sym_cmd_identifier_token8] = ACTIONS(2509), - [aux_sym_cmd_identifier_token9] = ACTIONS(2509), - [aux_sym_cmd_identifier_token10] = ACTIONS(2509), - [aux_sym_cmd_identifier_token11] = ACTIONS(2509), - [aux_sym_cmd_identifier_token12] = ACTIONS(2509), - [aux_sym_cmd_identifier_token13] = ACTIONS(2509), - [aux_sym_cmd_identifier_token14] = ACTIONS(2509), - [aux_sym_cmd_identifier_token15] = ACTIONS(2509), - [aux_sym_cmd_identifier_token16] = ACTIONS(2509), - [aux_sym_cmd_identifier_token17] = ACTIONS(2509), - [aux_sym_cmd_identifier_token18] = ACTIONS(2509), - [aux_sym_cmd_identifier_token19] = ACTIONS(2509), - [aux_sym_cmd_identifier_token20] = ACTIONS(2509), - [aux_sym_cmd_identifier_token21] = ACTIONS(2509), - [aux_sym_cmd_identifier_token22] = ACTIONS(2509), - [aux_sym_cmd_identifier_token23] = ACTIONS(2509), - [aux_sym_cmd_identifier_token24] = ACTIONS(2509), - [aux_sym_cmd_identifier_token25] = ACTIONS(2509), - [aux_sym_cmd_identifier_token26] = ACTIONS(2509), - [aux_sym_cmd_identifier_token27] = ACTIONS(2509), - [aux_sym_cmd_identifier_token28] = ACTIONS(2509), - [aux_sym_cmd_identifier_token29] = ACTIONS(2509), - [aux_sym_cmd_identifier_token30] = ACTIONS(2509), - [aux_sym_cmd_identifier_token31] = ACTIONS(2509), - [aux_sym_cmd_identifier_token32] = ACTIONS(2509), - [aux_sym_cmd_identifier_token33] = ACTIONS(2509), - [aux_sym_cmd_identifier_token34] = ACTIONS(2509), - [aux_sym_cmd_identifier_token35] = ACTIONS(2509), - [aux_sym_cmd_identifier_token36] = ACTIONS(2509), - [aux_sym_cmd_identifier_token37] = ACTIONS(2509), - [aux_sym_cmd_identifier_token38] = ACTIONS(2509), - [aux_sym_cmd_identifier_token39] = ACTIONS(2509), - [aux_sym_cmd_identifier_token40] = ACTIONS(2509), - [anon_sym_def] = ACTIONS(2509), - [anon_sym_export_DASHenv] = ACTIONS(2509), - [anon_sym_extern] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_DOLLAR] = ACTIONS(2509), - [anon_sym_error] = ACTIONS(2509), - [anon_sym_DASH2] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_in2] = ACTIONS(2509), - [anon_sym_loop] = ACTIONS(2509), - [anon_sym_make] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_catch] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_source] = ACTIONS(2509), - [anon_sym_source_DASHenv] = ACTIONS(2509), - [anon_sym_register] = ACTIONS(2509), - [anon_sym_hide] = ACTIONS(2509), - [anon_sym_hide_DASHenv] = ACTIONS(2509), - [anon_sym_overlay] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_PLUS2] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2509), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2509), - [aux_sym__val_number_decimal_token3] = ACTIONS(2509), - [aux_sym__val_number_decimal_token4] = ACTIONS(2509), - [aux_sym__val_number_token1] = ACTIONS(2509), - [aux_sym__val_number_token2] = ACTIONS(2509), - [aux_sym__val_number_token3] = ACTIONS(2509), - [aux_sym__val_number_token4] = ACTIONS(2509), - [aux_sym__val_number_token5] = ACTIONS(2509), - [aux_sym__val_number_token6] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym__str_single_quotes] = ACTIONS(2509), - [sym__str_back_ticks] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2509), - [sym__entry_separator] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2511), - }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_alias] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_let_DASHenv] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [aux_sym_cmd_identifier_token1] = ACTIONS(2513), - [aux_sym_cmd_identifier_token2] = ACTIONS(2513), - [aux_sym_cmd_identifier_token3] = ACTIONS(2513), - [aux_sym_cmd_identifier_token4] = ACTIONS(2513), - [aux_sym_cmd_identifier_token5] = ACTIONS(2513), - [aux_sym_cmd_identifier_token6] = ACTIONS(2513), - [aux_sym_cmd_identifier_token7] = ACTIONS(2513), - [aux_sym_cmd_identifier_token8] = ACTIONS(2513), - [aux_sym_cmd_identifier_token9] = ACTIONS(2513), - [aux_sym_cmd_identifier_token10] = ACTIONS(2513), - [aux_sym_cmd_identifier_token11] = ACTIONS(2513), - [aux_sym_cmd_identifier_token12] = ACTIONS(2513), - [aux_sym_cmd_identifier_token13] = ACTIONS(2513), - [aux_sym_cmd_identifier_token14] = ACTIONS(2513), - [aux_sym_cmd_identifier_token15] = ACTIONS(2513), - [aux_sym_cmd_identifier_token16] = ACTIONS(2513), - [aux_sym_cmd_identifier_token17] = ACTIONS(2513), - [aux_sym_cmd_identifier_token18] = ACTIONS(2513), - [aux_sym_cmd_identifier_token19] = ACTIONS(2513), - [aux_sym_cmd_identifier_token20] = ACTIONS(2513), - [aux_sym_cmd_identifier_token21] = ACTIONS(2513), - [aux_sym_cmd_identifier_token22] = ACTIONS(2513), - [aux_sym_cmd_identifier_token23] = ACTIONS(2513), - [aux_sym_cmd_identifier_token24] = ACTIONS(2513), - [aux_sym_cmd_identifier_token25] = ACTIONS(2513), - [aux_sym_cmd_identifier_token26] = ACTIONS(2513), - [aux_sym_cmd_identifier_token27] = ACTIONS(2513), - [aux_sym_cmd_identifier_token28] = ACTIONS(2513), - [aux_sym_cmd_identifier_token29] = ACTIONS(2513), - [aux_sym_cmd_identifier_token30] = ACTIONS(2513), - [aux_sym_cmd_identifier_token31] = ACTIONS(2513), - [aux_sym_cmd_identifier_token32] = ACTIONS(2513), - [aux_sym_cmd_identifier_token33] = ACTIONS(2513), - [aux_sym_cmd_identifier_token34] = ACTIONS(2513), - [aux_sym_cmd_identifier_token35] = ACTIONS(2513), - [aux_sym_cmd_identifier_token36] = ACTIONS(2513), - [aux_sym_cmd_identifier_token37] = ACTIONS(2513), - [aux_sym_cmd_identifier_token38] = ACTIONS(2513), - [aux_sym_cmd_identifier_token39] = ACTIONS(2513), - [aux_sym_cmd_identifier_token40] = ACTIONS(2513), - [anon_sym_def] = ACTIONS(2513), - [anon_sym_export_DASHenv] = ACTIONS(2513), - [anon_sym_extern] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2513), - [anon_sym_error] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_in2] = ACTIONS(2513), - [anon_sym_loop] = ACTIONS(2513), - [anon_sym_make] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_catch] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_source] = ACTIONS(2513), - [anon_sym_source_DASHenv] = ACTIONS(2513), - [anon_sym_register] = ACTIONS(2513), - [anon_sym_hide] = ACTIONS(2513), - [anon_sym_hide_DASHenv] = ACTIONS(2513), - [anon_sym_overlay] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2513), - [aux_sym__val_number_decimal_token1] = ACTIONS(2513), - [aux_sym__val_number_decimal_token2] = ACTIONS(2513), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), - [aux_sym__val_number_token1] = ACTIONS(2513), - [aux_sym__val_number_token2] = ACTIONS(2513), - [aux_sym__val_number_token3] = ACTIONS(2513), - [aux_sym__val_number_token4] = ACTIONS(2513), - [aux_sym__val_number_token5] = ACTIONS(2513), - [aux_sym__val_number_token6] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym__str_single_quotes] = ACTIONS(2513), - [sym__str_back_ticks] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2513), - [sym__entry_separator] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2515), - }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_alias] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_let_DASHenv] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [aux_sym_cmd_identifier_token1] = ACTIONS(2181), - [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(2181), - [aux_sym_cmd_identifier_token9] = ACTIONS(2181), - [aux_sym_cmd_identifier_token10] = ACTIONS(2181), - [aux_sym_cmd_identifier_token11] = ACTIONS(2181), - [aux_sym_cmd_identifier_token12] = ACTIONS(2181), - [aux_sym_cmd_identifier_token13] = ACTIONS(2181), - [aux_sym_cmd_identifier_token14] = ACTIONS(2181), - [aux_sym_cmd_identifier_token15] = ACTIONS(2181), - [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(2181), - [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(2181), - [aux_sym_cmd_identifier_token39] = ACTIONS(2181), - [aux_sym_cmd_identifier_token40] = ACTIONS(2181), - [anon_sym_def] = ACTIONS(2181), - [anon_sym_export_DASHenv] = ACTIONS(2181), - [anon_sym_extern] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2181), - [anon_sym_error] = ACTIONS(2181), - [anon_sym_DASH2] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_in2] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_make] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_catch] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_source] = ACTIONS(2181), - [anon_sym_source_DASHenv] = ACTIONS(2181), - [anon_sym_register] = ACTIONS(2181), - [anon_sym_hide] = ACTIONS(2181), - [anon_sym_hide_DASHenv] = ACTIONS(2181), - [anon_sym_overlay] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_PLUS2] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2181), - [aux_sym__val_number_decimal_token1] = ACTIONS(2181), - [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_DQUOTE] = ACTIONS(2181), - [sym__str_single_quotes] = ACTIONS(2181), - [sym__str_back_ticks] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2181), - [sym__entry_separator] = ACTIONS(2187), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2187), - }, - [679] = { - [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [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(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [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(1026), - [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(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [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(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1028), - }, - [680] = { - [sym_comment] = STATE(680), [anon_sym_export] = ACTIONS(1022), [anon_sym_alias] = ACTIONS(1022), [anon_sym_let] = ACTIONS(1022), @@ -155748,8 +156151,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1024), }, - [681] = { - [sym_comment] = STATE(681), + [660] = { + [sym_comment] = STATE(660), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in2] = 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_as] = ACTIONS(2474), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2474), + [aux_sym__val_number_token5] = ACTIONS(2474), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2476), + }, + [661] = { + [sym_comment] = STATE(661), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in2] = 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_as] = ACTIONS(2478), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2478), + [aux_sym__val_number_token5] = ACTIONS(2478), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2480), + }, + [662] = { + [sym_comment] = STATE(662), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -155848,408 +156451,2408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [682] = { - [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(1056), - [aux_sym_cmd_identifier_token3] = ACTIONS(1056), - [aux_sym_cmd_identifier_token4] = ACTIONS(1056), - [aux_sym_cmd_identifier_token5] = ACTIONS(1056), - [aux_sym_cmd_identifier_token6] = ACTIONS(1056), - [aux_sym_cmd_identifier_token7] = ACTIONS(1056), - [aux_sym_cmd_identifier_token8] = ACTIONS(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1056), - [aux_sym_cmd_identifier_token11] = ACTIONS(1056), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(1056), - [aux_sym_cmd_identifier_token17] = ACTIONS(1056), - [aux_sym_cmd_identifier_token18] = ACTIONS(1056), - [aux_sym_cmd_identifier_token19] = ACTIONS(1056), - [aux_sym_cmd_identifier_token20] = ACTIONS(1056), - [aux_sym_cmd_identifier_token21] = ACTIONS(1056), - [aux_sym_cmd_identifier_token22] = ACTIONS(1056), - [aux_sym_cmd_identifier_token23] = ACTIONS(1056), - [aux_sym_cmd_identifier_token24] = ACTIONS(1056), - [aux_sym_cmd_identifier_token25] = ACTIONS(1056), - [aux_sym_cmd_identifier_token26] = ACTIONS(1056), - [aux_sym_cmd_identifier_token27] = ACTIONS(1056), - [aux_sym_cmd_identifier_token28] = ACTIONS(1056), - [aux_sym_cmd_identifier_token29] = ACTIONS(1056), - [aux_sym_cmd_identifier_token30] = ACTIONS(1056), - [aux_sym_cmd_identifier_token31] = ACTIONS(1056), - [aux_sym_cmd_identifier_token32] = ACTIONS(1056), - [aux_sym_cmd_identifier_token33] = ACTIONS(1056), - [aux_sym_cmd_identifier_token34] = ACTIONS(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1056), - [aux_sym_cmd_identifier_token36] = ACTIONS(1056), - [aux_sym_cmd_identifier_token37] = ACTIONS(1056), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1056), - [aux_sym_cmd_identifier_token40] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1056), - [aux_sym__val_number_decimal_token4] = ACTIONS(1056), - [aux_sym__val_number_token1] = ACTIONS(1056), - [aux_sym__val_number_token2] = ACTIONS(1056), - [aux_sym__val_number_token3] = ACTIONS(1056), - [aux_sym__val_number_token4] = ACTIONS(1056), - [aux_sym__val_number_token5] = ACTIONS(1056), - [aux_sym__val_number_token6] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym__str_single_quotes] = ACTIONS(1056), - [sym__str_back_ticks] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), - [sym__entry_separator] = ACTIONS(1058), + [663] = { + [sym_comment] = STATE(663), + [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(251), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(1052), + [aux_sym_cmd_identifier_token3] = ACTIONS(1052), + [aux_sym_cmd_identifier_token4] = ACTIONS(1052), + [aux_sym_cmd_identifier_token5] = ACTIONS(1052), + [aux_sym_cmd_identifier_token6] = ACTIONS(1052), + [aux_sym_cmd_identifier_token7] = ACTIONS(1052), + [aux_sym_cmd_identifier_token8] = ACTIONS(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1052), + [aux_sym_cmd_identifier_token11] = ACTIONS(1052), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(1052), + [aux_sym_cmd_identifier_token17] = ACTIONS(1052), + [aux_sym_cmd_identifier_token18] = ACTIONS(1052), + [aux_sym_cmd_identifier_token19] = ACTIONS(1052), + [aux_sym_cmd_identifier_token20] = ACTIONS(1052), + [aux_sym_cmd_identifier_token21] = ACTIONS(1052), + [aux_sym_cmd_identifier_token22] = ACTIONS(1052), + [aux_sym_cmd_identifier_token23] = ACTIONS(1052), + [aux_sym_cmd_identifier_token24] = ACTIONS(1052), + [aux_sym_cmd_identifier_token25] = ACTIONS(1052), + [aux_sym_cmd_identifier_token26] = ACTIONS(1052), + [aux_sym_cmd_identifier_token27] = ACTIONS(1052), + [aux_sym_cmd_identifier_token28] = ACTIONS(1052), + [aux_sym_cmd_identifier_token29] = ACTIONS(1052), + [aux_sym_cmd_identifier_token30] = ACTIONS(1052), + [aux_sym_cmd_identifier_token31] = ACTIONS(1052), + [aux_sym_cmd_identifier_token32] = ACTIONS(1052), + [aux_sym_cmd_identifier_token33] = ACTIONS(1052), + [aux_sym_cmd_identifier_token34] = ACTIONS(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1052), + [aux_sym_cmd_identifier_token36] = ACTIONS(1052), + [aux_sym_cmd_identifier_token37] = ACTIONS(1052), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1052), + [aux_sym_cmd_identifier_token40] = ACTIONS(1052), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1052), + [aux_sym__val_number_decimal_token3] = ACTIONS(1052), + [aux_sym__val_number_decimal_token4] = ACTIONS(1052), + [aux_sym__val_number_token1] = ACTIONS(1052), + [aux_sym__val_number_token2] = ACTIONS(1052), + [aux_sym__val_number_token3] = ACTIONS(1052), + [aux_sym__val_number_token4] = ACTIONS(1052), + [aux_sym__val_number_token5] = ACTIONS(1052), + [aux_sym__val_number_token6] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1052), + [sym__str_single_quotes] = ACTIONS(1052), + [sym__str_back_ticks] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), + [sym__entry_separator] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1058), + [sym_raw_string_begin] = ACTIONS(1054), }, - [683] = { - [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(2070), - [anon_sym_alias] = ACTIONS(2070), - [anon_sym_let] = ACTIONS(2070), - [anon_sym_let_DASHenv] = ACTIONS(2070), - [anon_sym_mut] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [aux_sym_cmd_identifier_token1] = ACTIONS(2070), - [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(2070), - [aux_sym_cmd_identifier_token9] = ACTIONS(2070), - [aux_sym_cmd_identifier_token10] = ACTIONS(2070), - [aux_sym_cmd_identifier_token11] = ACTIONS(2070), - [aux_sym_cmd_identifier_token12] = ACTIONS(2070), - [aux_sym_cmd_identifier_token13] = ACTIONS(2070), - [aux_sym_cmd_identifier_token14] = ACTIONS(2070), - [aux_sym_cmd_identifier_token15] = ACTIONS(2070), - [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(2070), - [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(2070), - [aux_sym_cmd_identifier_token39] = ACTIONS(2070), - [aux_sym_cmd_identifier_token40] = ACTIONS(2070), - [anon_sym_def] = ACTIONS(2070), - [anon_sym_export_DASHenv] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_module] = ACTIONS(2070), - [anon_sym_use] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_error] = ACTIONS(2070), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_in2] = ACTIONS(2070), - [anon_sym_loop] = ACTIONS(2070), - [anon_sym_make] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2070), - [anon_sym_catch] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_source] = ACTIONS(2070), - [anon_sym_source_DASHenv] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_hide] = ACTIONS(2070), - [anon_sym_hide_DASHenv] = ACTIONS(2070), - [anon_sym_overlay] = ACTIONS(2070), - [anon_sym_as] = ACTIONS(2070), - [anon_sym_PLUS2] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2070), - [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_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), - [sym__entry_separator] = ACTIONS(2076), + [665] = { + [sym_comment] = STATE(665), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in2] = 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_as] = ACTIONS(2482), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2482), + [aux_sym__val_number_token5] = ACTIONS(2482), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2076), + [sym_raw_string_begin] = ACTIONS(2484), }, - [684] = { + [666] = { + [sym_comment] = STATE(666), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in2] = 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_as] = ACTIONS(2486), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2486), + [aux_sym__val_number_token5] = ACTIONS(2486), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2488), + }, + [667] = { + [sym_comment] = STATE(667), + [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_LBRACK2] = ACTIONS(2490), + [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(251), + [sym_raw_string_begin] = ACTIONS(2308), + }, + [668] = { + [sym_comment] = STATE(668), + [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(2494), + }, + [669] = { + [sym_comment] = STATE(669), + [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(2498), + }, + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(1941), + [anon_sym_alias] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_let_DASHenv] = ACTIONS(1941), + [anon_sym_mut] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [aux_sym_cmd_identifier_token1] = ACTIONS(1941), + [aux_sym_cmd_identifier_token2] = ACTIONS(1941), + [aux_sym_cmd_identifier_token3] = ACTIONS(1941), + [aux_sym_cmd_identifier_token4] = ACTIONS(1941), + [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [aux_sym_cmd_identifier_token6] = ACTIONS(1941), + [aux_sym_cmd_identifier_token7] = ACTIONS(1941), + [aux_sym_cmd_identifier_token8] = ACTIONS(1941), + [aux_sym_cmd_identifier_token9] = ACTIONS(1941), + [aux_sym_cmd_identifier_token10] = ACTIONS(1941), + [aux_sym_cmd_identifier_token11] = ACTIONS(1941), + [aux_sym_cmd_identifier_token12] = ACTIONS(1941), + [aux_sym_cmd_identifier_token13] = ACTIONS(1941), + [aux_sym_cmd_identifier_token14] = ACTIONS(1941), + [aux_sym_cmd_identifier_token15] = ACTIONS(1941), + [aux_sym_cmd_identifier_token16] = ACTIONS(1941), + [aux_sym_cmd_identifier_token17] = ACTIONS(1941), + [aux_sym_cmd_identifier_token18] = ACTIONS(1941), + [aux_sym_cmd_identifier_token19] = ACTIONS(1941), + [aux_sym_cmd_identifier_token20] = ACTIONS(1941), + [aux_sym_cmd_identifier_token21] = ACTIONS(1941), + [aux_sym_cmd_identifier_token22] = ACTIONS(1941), + [aux_sym_cmd_identifier_token23] = ACTIONS(1941), + [aux_sym_cmd_identifier_token24] = ACTIONS(1941), + [aux_sym_cmd_identifier_token25] = ACTIONS(1941), + [aux_sym_cmd_identifier_token26] = ACTIONS(1941), + [aux_sym_cmd_identifier_token27] = ACTIONS(1941), + [aux_sym_cmd_identifier_token28] = ACTIONS(1941), + [aux_sym_cmd_identifier_token29] = ACTIONS(1941), + [aux_sym_cmd_identifier_token30] = ACTIONS(1941), + [aux_sym_cmd_identifier_token31] = ACTIONS(1941), + [aux_sym_cmd_identifier_token32] = ACTIONS(1941), + [aux_sym_cmd_identifier_token33] = ACTIONS(1941), + [aux_sym_cmd_identifier_token34] = ACTIONS(1941), + [aux_sym_cmd_identifier_token35] = ACTIONS(1941), + [aux_sym_cmd_identifier_token36] = ACTIONS(1941), + [aux_sym_cmd_identifier_token37] = ACTIONS(1941), + [aux_sym_cmd_identifier_token38] = ACTIONS(1941), + [aux_sym_cmd_identifier_token39] = ACTIONS(1941), + [aux_sym_cmd_identifier_token40] = ACTIONS(1941), + [anon_sym_def] = ACTIONS(1941), + [anon_sym_export_DASHenv] = ACTIONS(1941), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_module] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1941), + [anon_sym_error] = ACTIONS(1941), + [anon_sym_DASH2] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_in2] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_make] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_else] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1941), + [anon_sym_catch] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_source] = ACTIONS(1941), + [anon_sym_source_DASHenv] = ACTIONS(1941), + [anon_sym_register] = ACTIONS(1941), + [anon_sym_hide] = ACTIONS(1941), + [anon_sym_hide_DASHenv] = ACTIONS(1941), + [anon_sym_overlay] = ACTIONS(1941), + [anon_sym_as] = ACTIONS(1941), + [anon_sym_PLUS2] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), + [aux_sym__val_number_decimal_token1] = ACTIONS(1941), + [aux_sym__val_number_decimal_token2] = ACTIONS(1941), + [aux_sym__val_number_decimal_token3] = ACTIONS(1941), + [aux_sym__val_number_decimal_token4] = ACTIONS(1941), + [aux_sym__val_number_token1] = ACTIONS(1941), + [aux_sym__val_number_token2] = ACTIONS(1941), + [aux_sym__val_number_token3] = ACTIONS(1941), + [aux_sym__val_number_token4] = ACTIONS(1941), + [aux_sym__val_number_token5] = ACTIONS(1941), + [aux_sym__val_number_token6] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym__str_single_quotes] = ACTIONS(1941), + [sym__str_back_ticks] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), + [sym__entry_separator] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1943), + }, + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(1000), + [anon_sym_alias] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_let_DASHenv] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [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(1000), + [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1000), + [aux_sym_cmd_identifier_token13] = ACTIONS(1000), + [aux_sym_cmd_identifier_token14] = ACTIONS(1000), + [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [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(1000), + [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(1000), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(1000), + [anon_sym_export_DASHenv] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_use] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_loop] = ACTIONS(1000), + [anon_sym_make] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_source] = ACTIONS(1000), + [anon_sym_source_DASHenv] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_hide_DASHenv] = ACTIONS(1000), + [anon_sym_overlay] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [sym__entry_separator] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1002), + }, + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [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(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [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(1004), + [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(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [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_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [sym__entry_separator] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1006), + }, + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(996), + [anon_sym_alias] = ACTIONS(996), + [anon_sym_let] = ACTIONS(996), + [anon_sym_let_DASHenv] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [aux_sym_cmd_identifier_token1] = ACTIONS(996), + [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(996), + [aux_sym_cmd_identifier_token9] = ACTIONS(996), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(996), + [aux_sym_cmd_identifier_token13] = ACTIONS(996), + [aux_sym_cmd_identifier_token14] = ACTIONS(996), + [aux_sym_cmd_identifier_token15] = ACTIONS(996), + [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(996), + [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(996), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(996), + [anon_sym_export_DASHenv] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_use] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_loop] = ACTIONS(996), + [anon_sym_make] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(996), + [anon_sym_catch] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_source] = ACTIONS(996), + [anon_sym_source_DASHenv] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_hide] = ACTIONS(996), + [anon_sym_hide_DASHenv] = ACTIONS(996), + [anon_sym_overlay] = ACTIONS(996), + [anon_sym_as] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(996), + [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_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [sym__entry_separator] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(998), + }, + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [sym__entry_separator] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(988), + }, + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1957), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [aux_sym_cmd_identifier_token6] = ACTIONS(1957), + [aux_sym_cmd_identifier_token7] = ACTIONS(1957), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1957), + [aux_sym_cmd_identifier_token11] = ACTIONS(1957), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1957), + [aux_sym_cmd_identifier_token17] = ACTIONS(1957), + [aux_sym_cmd_identifier_token18] = ACTIONS(1957), + [aux_sym_cmd_identifier_token19] = ACTIONS(1957), + [aux_sym_cmd_identifier_token20] = ACTIONS(1957), + [aux_sym_cmd_identifier_token21] = ACTIONS(1957), + [aux_sym_cmd_identifier_token22] = ACTIONS(1957), + [aux_sym_cmd_identifier_token23] = ACTIONS(1957), + [aux_sym_cmd_identifier_token24] = ACTIONS(1957), + [aux_sym_cmd_identifier_token25] = ACTIONS(1957), + [aux_sym_cmd_identifier_token26] = ACTIONS(1957), + [aux_sym_cmd_identifier_token27] = ACTIONS(1957), + [aux_sym_cmd_identifier_token28] = ACTIONS(1957), + [aux_sym_cmd_identifier_token29] = ACTIONS(1957), + [aux_sym_cmd_identifier_token30] = ACTIONS(1957), + [aux_sym_cmd_identifier_token31] = ACTIONS(1957), + [aux_sym_cmd_identifier_token32] = ACTIONS(1957), + [aux_sym_cmd_identifier_token33] = ACTIONS(1957), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1957), + [aux_sym_cmd_identifier_token36] = ACTIONS(1957), + [aux_sym_cmd_identifier_token37] = ACTIONS(1957), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1957), + [aux_sym_cmd_identifier_token40] = ACTIONS(1957), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1957), + [aux_sym__val_number_decimal_token4] = ACTIONS(1957), + [aux_sym__val_number_token1] = ACTIONS(1957), + [aux_sym__val_number_token2] = ACTIONS(1957), + [aux_sym__val_number_token3] = ACTIONS(1957), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [sym__str_single_quotes] = ACTIONS(1957), + [sym__str_back_ticks] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), + [sym__entry_separator] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1959), + }, + [676] = { + [sym_comment] = STATE(676), + [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(2502), + }, + [677] = { + [sym_comment] = STATE(677), + [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(2506), + }, + [678] = { + [sym_comment] = STATE(678), + [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(2510), + }, + [679] = { + [sym_comment] = STATE(679), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1883), + [aux_sym_cmd_identifier_token3] = ACTIONS(1883), + [aux_sym_cmd_identifier_token4] = ACTIONS(1883), + [aux_sym_cmd_identifier_token5] = ACTIONS(1883), + [aux_sym_cmd_identifier_token6] = ACTIONS(1883), + [aux_sym_cmd_identifier_token7] = ACTIONS(1883), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1883), + [aux_sym_cmd_identifier_token11] = ACTIONS(1883), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1883), + [aux_sym_cmd_identifier_token17] = ACTIONS(1883), + [aux_sym_cmd_identifier_token18] = ACTIONS(1883), + [aux_sym_cmd_identifier_token19] = ACTIONS(1883), + [aux_sym_cmd_identifier_token20] = ACTIONS(1883), + [aux_sym_cmd_identifier_token21] = ACTIONS(1883), + [aux_sym_cmd_identifier_token22] = ACTIONS(1883), + [aux_sym_cmd_identifier_token23] = ACTIONS(1883), + [aux_sym_cmd_identifier_token24] = ACTIONS(1883), + [aux_sym_cmd_identifier_token25] = ACTIONS(1883), + [aux_sym_cmd_identifier_token26] = ACTIONS(1883), + [aux_sym_cmd_identifier_token27] = ACTIONS(1883), + [aux_sym_cmd_identifier_token28] = ACTIONS(1883), + [aux_sym_cmd_identifier_token29] = ACTIONS(1883), + [aux_sym_cmd_identifier_token30] = ACTIONS(1883), + [aux_sym_cmd_identifier_token31] = ACTIONS(1883), + [aux_sym_cmd_identifier_token32] = ACTIONS(1883), + [aux_sym_cmd_identifier_token33] = ACTIONS(1883), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token36] = ACTIONS(1883), + [aux_sym_cmd_identifier_token37] = ACTIONS(1883), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1883), + [aux_sym_cmd_identifier_token40] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in2] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1883), + [aux_sym__val_number_decimal_token3] = ACTIONS(1883), + [aux_sym__val_number_decimal_token4] = ACTIONS(1883), + [aux_sym__val_number_token1] = ACTIONS(1883), + [aux_sym__val_number_token2] = ACTIONS(1883), + [aux_sym__val_number_token3] = ACTIONS(1883), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), + [sym__entry_separator] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1885), + }, + [680] = { + [sym_comment] = STATE(680), + [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(2514), + }, + [681] = { + [sym_comment] = STATE(681), + [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), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in2] = 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_as] = ACTIONS(2516), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2516), + [aux_sym__val_number_token5] = ACTIONS(2516), + [aux_sym__val_number_token6] = 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_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2518), + }, + [682] = { + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [aux_sym_cmd_identifier_token1] = ACTIONS(1687), + [aux_sym_cmd_identifier_token2] = ACTIONS(1699), + [aux_sym_cmd_identifier_token3] = ACTIONS(1699), + [aux_sym_cmd_identifier_token4] = ACTIONS(1699), + [aux_sym_cmd_identifier_token5] = ACTIONS(1699), + [aux_sym_cmd_identifier_token6] = ACTIONS(1699), + [aux_sym_cmd_identifier_token7] = ACTIONS(1699), + [aux_sym_cmd_identifier_token8] = ACTIONS(1687), + [aux_sym_cmd_identifier_token9] = ACTIONS(1687), + [aux_sym_cmd_identifier_token10] = ACTIONS(1699), + [aux_sym_cmd_identifier_token11] = ACTIONS(1699), + [aux_sym_cmd_identifier_token12] = ACTIONS(1687), + [aux_sym_cmd_identifier_token13] = ACTIONS(1687), + [aux_sym_cmd_identifier_token14] = ACTIONS(1687), + [aux_sym_cmd_identifier_token15] = ACTIONS(1687), + [aux_sym_cmd_identifier_token16] = ACTIONS(1699), + [aux_sym_cmd_identifier_token17] = ACTIONS(1699), + [aux_sym_cmd_identifier_token18] = ACTIONS(1699), + [aux_sym_cmd_identifier_token19] = ACTIONS(1699), + [aux_sym_cmd_identifier_token20] = ACTIONS(1699), + [aux_sym_cmd_identifier_token21] = ACTIONS(1699), + [aux_sym_cmd_identifier_token22] = ACTIONS(1699), + [aux_sym_cmd_identifier_token23] = ACTIONS(1699), + [aux_sym_cmd_identifier_token24] = ACTIONS(1699), + [aux_sym_cmd_identifier_token25] = ACTIONS(1699), + [aux_sym_cmd_identifier_token26] = ACTIONS(1699), + [aux_sym_cmd_identifier_token27] = ACTIONS(1699), + [aux_sym_cmd_identifier_token28] = ACTIONS(1699), + [aux_sym_cmd_identifier_token29] = ACTIONS(1699), + [aux_sym_cmd_identifier_token30] = ACTIONS(1699), + [aux_sym_cmd_identifier_token31] = ACTIONS(1699), + [aux_sym_cmd_identifier_token32] = ACTIONS(1699), + [aux_sym_cmd_identifier_token33] = ACTIONS(1699), + [aux_sym_cmd_identifier_token34] = ACTIONS(1687), + [aux_sym_cmd_identifier_token35] = ACTIONS(1699), + [aux_sym_cmd_identifier_token36] = ACTIONS(1699), + [aux_sym_cmd_identifier_token37] = ACTIONS(1699), + [aux_sym_cmd_identifier_token38] = ACTIONS(1687), + [aux_sym_cmd_identifier_token39] = ACTIONS(1699), + [aux_sym_cmd_identifier_token40] = ACTIONS(1699), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1699), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_make] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2336), + [aux_sym_cmd_identifier_token3] = ACTIONS(2336), + [aux_sym_cmd_identifier_token4] = ACTIONS(2336), + [aux_sym_cmd_identifier_token5] = ACTIONS(2336), + [aux_sym_cmd_identifier_token6] = ACTIONS(2336), + [aux_sym_cmd_identifier_token7] = ACTIONS(2336), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2336), + [aux_sym_cmd_identifier_token11] = ACTIONS(2336), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2336), + [aux_sym_cmd_identifier_token17] = ACTIONS(2336), + [aux_sym_cmd_identifier_token18] = ACTIONS(2336), + [aux_sym_cmd_identifier_token19] = ACTIONS(2336), + [aux_sym_cmd_identifier_token20] = ACTIONS(2336), + [aux_sym_cmd_identifier_token21] = ACTIONS(2336), + [aux_sym_cmd_identifier_token22] = ACTIONS(2336), + [aux_sym_cmd_identifier_token23] = ACTIONS(2336), + [aux_sym_cmd_identifier_token24] = ACTIONS(2336), + [aux_sym_cmd_identifier_token25] = ACTIONS(2336), + [aux_sym_cmd_identifier_token26] = ACTIONS(2336), + [aux_sym_cmd_identifier_token27] = ACTIONS(2336), + [aux_sym_cmd_identifier_token28] = ACTIONS(2336), + [aux_sym_cmd_identifier_token29] = ACTIONS(2336), + [aux_sym_cmd_identifier_token30] = ACTIONS(2336), + [aux_sym_cmd_identifier_token31] = ACTIONS(2336), + [aux_sym_cmd_identifier_token32] = ACTIONS(2336), + [aux_sym_cmd_identifier_token33] = ACTIONS(2336), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2336), + [aux_sym_cmd_identifier_token36] = ACTIONS(2336), + [aux_sym_cmd_identifier_token37] = ACTIONS(2336), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2336), + [aux_sym_cmd_identifier_token40] = ACTIONS(2336), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2336), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_LPAREN2] = ACTIONS(2336), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [aux_sym__val_number_decimal_token2] = ACTIONS(2336), + [aux_sym__val_number_decimal_token3] = ACTIONS(2336), + [aux_sym__val_number_decimal_token4] = ACTIONS(2336), + [aux_sym__val_number_token1] = ACTIONS(2336), + [aux_sym__val_number_token2] = ACTIONS(2336), + [aux_sym__val_number_token3] = ACTIONS(2336), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2336), + [sym__str_single_quotes] = ACTIONS(2336), + [sym__str_back_ticks] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2336), + }, + [684] = { [sym_comment] = STATE(684), - [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_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(2084), + [anon_sym_export] = ACTIONS(2064), + [anon_sym_alias] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_let_DASHenv] = ACTIONS(2064), + [anon_sym_mut] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [aux_sym_cmd_identifier_token1] = ACTIONS(2064), + [aux_sym_cmd_identifier_token2] = ACTIONS(2064), + [aux_sym_cmd_identifier_token3] = ACTIONS(2064), + [aux_sym_cmd_identifier_token4] = ACTIONS(2064), + [aux_sym_cmd_identifier_token5] = ACTIONS(2064), + [aux_sym_cmd_identifier_token6] = ACTIONS(2064), + [aux_sym_cmd_identifier_token7] = ACTIONS(2064), + [aux_sym_cmd_identifier_token8] = ACTIONS(2064), + [aux_sym_cmd_identifier_token9] = ACTIONS(2064), + [aux_sym_cmd_identifier_token10] = ACTIONS(2064), + [aux_sym_cmd_identifier_token11] = ACTIONS(2064), + [aux_sym_cmd_identifier_token12] = ACTIONS(2064), + [aux_sym_cmd_identifier_token13] = ACTIONS(2064), + [aux_sym_cmd_identifier_token14] = ACTIONS(2064), + [aux_sym_cmd_identifier_token15] = ACTIONS(2064), + [aux_sym_cmd_identifier_token16] = ACTIONS(2064), + [aux_sym_cmd_identifier_token17] = ACTIONS(2064), + [aux_sym_cmd_identifier_token18] = ACTIONS(2064), + [aux_sym_cmd_identifier_token19] = ACTIONS(2064), + [aux_sym_cmd_identifier_token20] = ACTIONS(2064), + [aux_sym_cmd_identifier_token21] = ACTIONS(2064), + [aux_sym_cmd_identifier_token22] = ACTIONS(2064), + [aux_sym_cmd_identifier_token23] = ACTIONS(2064), + [aux_sym_cmd_identifier_token24] = ACTIONS(2064), + [aux_sym_cmd_identifier_token25] = ACTIONS(2064), + [aux_sym_cmd_identifier_token26] = ACTIONS(2064), + [aux_sym_cmd_identifier_token27] = ACTIONS(2064), + [aux_sym_cmd_identifier_token28] = ACTIONS(2064), + [aux_sym_cmd_identifier_token29] = ACTIONS(2064), + [aux_sym_cmd_identifier_token30] = ACTIONS(2064), + [aux_sym_cmd_identifier_token31] = ACTIONS(2064), + [aux_sym_cmd_identifier_token32] = ACTIONS(2064), + [aux_sym_cmd_identifier_token33] = ACTIONS(2064), + [aux_sym_cmd_identifier_token34] = ACTIONS(2064), + [aux_sym_cmd_identifier_token35] = ACTIONS(2064), + [aux_sym_cmd_identifier_token36] = ACTIONS(2064), + [aux_sym_cmd_identifier_token37] = ACTIONS(2064), + [aux_sym_cmd_identifier_token38] = ACTIONS(2064), + [aux_sym_cmd_identifier_token39] = ACTIONS(2064), + [aux_sym_cmd_identifier_token40] = ACTIONS(2064), + [anon_sym_def] = ACTIONS(2064), + [anon_sym_export_DASHenv] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2064), + [anon_sym_error] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_in2] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_make] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_source] = ACTIONS(2064), + [anon_sym_source_DASHenv] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_hide] = ACTIONS(2064), + [anon_sym_hide_DASHenv] = ACTIONS(2064), + [anon_sym_overlay] = ACTIONS(2064), + [anon_sym_as] = ACTIONS(2064), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2064), + [aux_sym__val_number_decimal_token2] = ACTIONS(2064), + [aux_sym__val_number_decimal_token3] = ACTIONS(2064), + [aux_sym__val_number_decimal_token4] = ACTIONS(2064), + [aux_sym__val_number_token1] = ACTIONS(2064), + [aux_sym__val_number_token2] = ACTIONS(2064), + [aux_sym__val_number_token3] = ACTIONS(2064), + [aux_sym__val_number_token4] = ACTIONS(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2064), + [sym__str_single_quotes] = ACTIONS(2064), + [sym__str_back_ticks] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), + [sym__entry_separator] = ACTIONS(2070), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2084), + [sym_raw_string_begin] = ACTIONS(2070), }, [685] = { [sym_comment] = STATE(685), - [aux_sym_shebang_repeat1] = STATE(685), - [anon_sym_export] = ACTIONS(1312), - [anon_sym_alias] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_let_DASHenv] = ACTIONS(1312), - [anon_sym_mut] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [aux_sym_cmd_identifier_token1] = ACTIONS(1312), - [aux_sym_cmd_identifier_token2] = ACTIONS(1314), - [aux_sym_cmd_identifier_token3] = ACTIONS(1314), - [aux_sym_cmd_identifier_token4] = ACTIONS(1314), - [aux_sym_cmd_identifier_token5] = ACTIONS(1314), - [aux_sym_cmd_identifier_token6] = ACTIONS(1314), - [aux_sym_cmd_identifier_token7] = ACTIONS(1314), - [aux_sym_cmd_identifier_token8] = ACTIONS(1312), - [aux_sym_cmd_identifier_token9] = ACTIONS(1312), - [aux_sym_cmd_identifier_token10] = ACTIONS(1314), - [aux_sym_cmd_identifier_token11] = ACTIONS(1314), - [aux_sym_cmd_identifier_token12] = ACTIONS(1312), - [aux_sym_cmd_identifier_token13] = ACTIONS(1312), - [aux_sym_cmd_identifier_token14] = ACTIONS(1312), - [aux_sym_cmd_identifier_token15] = ACTIONS(1312), - [aux_sym_cmd_identifier_token16] = ACTIONS(1314), - [aux_sym_cmd_identifier_token17] = ACTIONS(1314), - [aux_sym_cmd_identifier_token18] = ACTIONS(1314), - [aux_sym_cmd_identifier_token19] = ACTIONS(1314), - [aux_sym_cmd_identifier_token20] = ACTIONS(1314), - [aux_sym_cmd_identifier_token21] = ACTIONS(1314), - [aux_sym_cmd_identifier_token22] = ACTIONS(1314), - [aux_sym_cmd_identifier_token23] = ACTIONS(1314), - [aux_sym_cmd_identifier_token24] = ACTIONS(1314), - [aux_sym_cmd_identifier_token25] = ACTIONS(1314), - [aux_sym_cmd_identifier_token26] = ACTIONS(1314), - [aux_sym_cmd_identifier_token27] = ACTIONS(1314), - [aux_sym_cmd_identifier_token28] = ACTIONS(1314), - [aux_sym_cmd_identifier_token29] = ACTIONS(1314), - [aux_sym_cmd_identifier_token30] = ACTIONS(1314), - [aux_sym_cmd_identifier_token31] = ACTIONS(1314), - [aux_sym_cmd_identifier_token32] = ACTIONS(1314), - [aux_sym_cmd_identifier_token33] = ACTIONS(1314), - [aux_sym_cmd_identifier_token34] = ACTIONS(1312), - [aux_sym_cmd_identifier_token35] = ACTIONS(1314), - [aux_sym_cmd_identifier_token36] = ACTIONS(1314), - [aux_sym_cmd_identifier_token37] = ACTIONS(1314), - [aux_sym_cmd_identifier_token38] = ACTIONS(1312), - [aux_sym_cmd_identifier_token39] = ACTIONS(1314), - [aux_sym_cmd_identifier_token40] = ACTIONS(1314), - [sym__newline] = ACTIONS(2517), - [anon_sym_def] = ACTIONS(1312), - [anon_sym_export_DASHenv] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1314), - [anon_sym_error] = ACTIONS(1312), - [anon_sym_DASH2] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_in2] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_make] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_catch] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_source] = ACTIONS(1312), - [anon_sym_source_DASHenv] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_hide] = ACTIONS(1312), - [anon_sym_hide_DASHenv] = ACTIONS(1312), - [anon_sym_overlay] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_PLUS2] = ACTIONS(1312), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1314), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1314), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_decimal_token4] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1314), + [anon_sym_export] = ACTIONS(2045), + [anon_sym_alias] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_let_DASHenv] = ACTIONS(2045), + [anon_sym_mut] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [aux_sym_cmd_identifier_token1] = ACTIONS(2045), + [aux_sym_cmd_identifier_token2] = ACTIONS(2045), + [aux_sym_cmd_identifier_token3] = ACTIONS(2045), + [aux_sym_cmd_identifier_token4] = ACTIONS(2045), + [aux_sym_cmd_identifier_token5] = ACTIONS(2045), + [aux_sym_cmd_identifier_token6] = ACTIONS(2045), + [aux_sym_cmd_identifier_token7] = ACTIONS(2045), + [aux_sym_cmd_identifier_token8] = ACTIONS(2045), + [aux_sym_cmd_identifier_token9] = ACTIONS(2045), + [aux_sym_cmd_identifier_token10] = ACTIONS(2045), + [aux_sym_cmd_identifier_token11] = ACTIONS(2045), + [aux_sym_cmd_identifier_token12] = ACTIONS(2045), + [aux_sym_cmd_identifier_token13] = ACTIONS(2045), + [aux_sym_cmd_identifier_token14] = ACTIONS(2045), + [aux_sym_cmd_identifier_token15] = ACTIONS(2045), + [aux_sym_cmd_identifier_token16] = ACTIONS(2045), + [aux_sym_cmd_identifier_token17] = ACTIONS(2045), + [aux_sym_cmd_identifier_token18] = ACTIONS(2045), + [aux_sym_cmd_identifier_token19] = ACTIONS(2045), + [aux_sym_cmd_identifier_token20] = ACTIONS(2045), + [aux_sym_cmd_identifier_token21] = ACTIONS(2045), + [aux_sym_cmd_identifier_token22] = ACTIONS(2045), + [aux_sym_cmd_identifier_token23] = ACTIONS(2045), + [aux_sym_cmd_identifier_token24] = ACTIONS(2045), + [aux_sym_cmd_identifier_token25] = ACTIONS(2045), + [aux_sym_cmd_identifier_token26] = ACTIONS(2045), + [aux_sym_cmd_identifier_token27] = ACTIONS(2045), + [aux_sym_cmd_identifier_token28] = ACTIONS(2045), + [aux_sym_cmd_identifier_token29] = ACTIONS(2045), + [aux_sym_cmd_identifier_token30] = ACTIONS(2045), + [aux_sym_cmd_identifier_token31] = ACTIONS(2045), + [aux_sym_cmd_identifier_token32] = ACTIONS(2045), + [aux_sym_cmd_identifier_token33] = ACTIONS(2045), + [aux_sym_cmd_identifier_token34] = ACTIONS(2045), + [aux_sym_cmd_identifier_token35] = ACTIONS(2045), + [aux_sym_cmd_identifier_token36] = ACTIONS(2045), + [aux_sym_cmd_identifier_token37] = ACTIONS(2045), + [aux_sym_cmd_identifier_token38] = ACTIONS(2045), + [aux_sym_cmd_identifier_token39] = ACTIONS(2045), + [aux_sym_cmd_identifier_token40] = ACTIONS(2045), + [anon_sym_def] = ACTIONS(2045), + [anon_sym_export_DASHenv] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_module] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2045), + [anon_sym_error] = ACTIONS(2045), + [anon_sym_DASH2] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_in2] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_make] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_do] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_else] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2045), + [anon_sym_catch] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_source] = ACTIONS(2045), + [anon_sym_source_DASHenv] = ACTIONS(2045), + [anon_sym_register] = ACTIONS(2045), + [anon_sym_hide] = ACTIONS(2045), + [anon_sym_hide_DASHenv] = ACTIONS(2045), + [anon_sym_overlay] = ACTIONS(2045), + [anon_sym_as] = ACTIONS(2045), + [anon_sym_PLUS2] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2045), + [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), + [aux_sym__val_number_token4] = ACTIONS(2045), + [aux_sym__val_number_token5] = ACTIONS(2045), + [aux_sym__val_number_token6] = 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), + [sym__entry_separator] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2047), }, [686] = { [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2197), + [aux_sym_cmd_identifier_token3] = ACTIONS(2197), + [aux_sym_cmd_identifier_token4] = ACTIONS(2197), + [aux_sym_cmd_identifier_token5] = ACTIONS(2197), + [aux_sym_cmd_identifier_token6] = ACTIONS(2197), + [aux_sym_cmd_identifier_token7] = ACTIONS(2197), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2197), + [aux_sym_cmd_identifier_token11] = ACTIONS(2197), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2197), + [aux_sym_cmd_identifier_token17] = ACTIONS(2197), + [aux_sym_cmd_identifier_token18] = ACTIONS(2197), + [aux_sym_cmd_identifier_token19] = ACTIONS(2197), + [aux_sym_cmd_identifier_token20] = ACTIONS(2197), + [aux_sym_cmd_identifier_token21] = ACTIONS(2197), + [aux_sym_cmd_identifier_token22] = ACTIONS(2197), + [aux_sym_cmd_identifier_token23] = ACTIONS(2197), + [aux_sym_cmd_identifier_token24] = ACTIONS(2197), + [aux_sym_cmd_identifier_token25] = ACTIONS(2197), + [aux_sym_cmd_identifier_token26] = ACTIONS(2197), + [aux_sym_cmd_identifier_token27] = ACTIONS(2197), + [aux_sym_cmd_identifier_token28] = ACTIONS(2197), + [aux_sym_cmd_identifier_token29] = ACTIONS(2197), + [aux_sym_cmd_identifier_token30] = ACTIONS(2197), + [aux_sym_cmd_identifier_token31] = ACTIONS(2197), + [aux_sym_cmd_identifier_token32] = ACTIONS(2197), + [aux_sym_cmd_identifier_token33] = ACTIONS(2197), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2197), + [aux_sym_cmd_identifier_token36] = ACTIONS(2197), + [aux_sym_cmd_identifier_token37] = ACTIONS(2197), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2197), + [aux_sym_cmd_identifier_token40] = ACTIONS(2197), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2197), + [aux_sym__val_number_decimal_token3] = ACTIONS(2197), + [aux_sym__val_number_decimal_token4] = ACTIONS(2197), + [aux_sym__val_number_token1] = ACTIONS(2197), + [aux_sym__val_number_token2] = ACTIONS(2197), + [aux_sym__val_number_token3] = ACTIONS(2197), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [sym__str_single_quotes] = ACTIONS(2197), + [sym__str_back_ticks] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), + [sym__entry_separator] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2199), + }, + [687] = { + [sym_comment] = STATE(687), [anon_sym_export] = ACTIONS(2520), [anon_sym_alias] = ACTIONS(2520), [anon_sym_let] = ACTIONS(2520), @@ -156348,8 +158951,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2522), }, - [687] = { - [sym_comment] = STATE(687), + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_alias] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_let_DASHenv] = ACTIONS(2300), + [anon_sym_mut] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [aux_sym_cmd_identifier_token1] = ACTIONS(2300), + [aux_sym_cmd_identifier_token2] = ACTIONS(2302), + [aux_sym_cmd_identifier_token3] = ACTIONS(2302), + [aux_sym_cmd_identifier_token4] = ACTIONS(2302), + [aux_sym_cmd_identifier_token5] = ACTIONS(2302), + [aux_sym_cmd_identifier_token6] = ACTIONS(2302), + [aux_sym_cmd_identifier_token7] = ACTIONS(2302), + [aux_sym_cmd_identifier_token8] = ACTIONS(2300), + [aux_sym_cmd_identifier_token9] = ACTIONS(2300), + [aux_sym_cmd_identifier_token10] = ACTIONS(2302), + [aux_sym_cmd_identifier_token11] = ACTIONS(2302), + [aux_sym_cmd_identifier_token12] = ACTIONS(2300), + [aux_sym_cmd_identifier_token13] = ACTIONS(2300), + [aux_sym_cmd_identifier_token14] = ACTIONS(2300), + [aux_sym_cmd_identifier_token15] = ACTIONS(2300), + [aux_sym_cmd_identifier_token16] = ACTIONS(2302), + [aux_sym_cmd_identifier_token17] = ACTIONS(2302), + [aux_sym_cmd_identifier_token18] = ACTIONS(2302), + [aux_sym_cmd_identifier_token19] = ACTIONS(2302), + [aux_sym_cmd_identifier_token20] = ACTIONS(2302), + [aux_sym_cmd_identifier_token21] = ACTIONS(2302), + [aux_sym_cmd_identifier_token22] = ACTIONS(2302), + [aux_sym_cmd_identifier_token23] = ACTIONS(2302), + [aux_sym_cmd_identifier_token24] = ACTIONS(2302), + [aux_sym_cmd_identifier_token25] = ACTIONS(2302), + [aux_sym_cmd_identifier_token26] = ACTIONS(2302), + [aux_sym_cmd_identifier_token27] = ACTIONS(2302), + [aux_sym_cmd_identifier_token28] = ACTIONS(2302), + [aux_sym_cmd_identifier_token29] = ACTIONS(2302), + [aux_sym_cmd_identifier_token30] = ACTIONS(2302), + [aux_sym_cmd_identifier_token31] = ACTIONS(2302), + [aux_sym_cmd_identifier_token32] = ACTIONS(2302), + [aux_sym_cmd_identifier_token33] = ACTIONS(2302), + [aux_sym_cmd_identifier_token34] = ACTIONS(2300), + [aux_sym_cmd_identifier_token35] = ACTIONS(2302), + [aux_sym_cmd_identifier_token36] = ACTIONS(2302), + [aux_sym_cmd_identifier_token37] = ACTIONS(2302), + [aux_sym_cmd_identifier_token38] = ACTIONS(2300), + [aux_sym_cmd_identifier_token39] = ACTIONS(2302), + [aux_sym_cmd_identifier_token40] = ACTIONS(2302), + [anon_sym_def] = ACTIONS(2300), + [anon_sym_export_DASHenv] = ACTIONS(2300), + [anon_sym_extern] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_use] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_DOLLAR] = ACTIONS(2302), + [anon_sym_error] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_in2] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_make] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_catch] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_source] = ACTIONS(2300), + [anon_sym_source_DASHenv] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2300), + [anon_sym_hide] = ACTIONS(2300), + [anon_sym_hide_DASHenv] = ACTIONS(2300), + [anon_sym_overlay] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_LPAREN2] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), + [aux_sym__val_number_decimal_token1] = ACTIONS(2300), + [aux_sym__val_number_decimal_token2] = ACTIONS(2302), + [aux_sym__val_number_decimal_token3] = ACTIONS(2302), + [aux_sym__val_number_decimal_token4] = ACTIONS(2302), + [aux_sym__val_number_token1] = ACTIONS(2302), + [aux_sym__val_number_token2] = ACTIONS(2302), + [aux_sym__val_number_token3] = ACTIONS(2302), + [aux_sym__val_number_token4] = ACTIONS(2300), + [aux_sym__val_number_token5] = ACTIONS(2300), + [aux_sym__val_number_token6] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2302), + [sym__str_single_quotes] = ACTIONS(2302), + [sym__str_back_ticks] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2302), + }, + [689] = { + [sym_comment] = STATE(689), [anon_sym_export] = ACTIONS(2524), [anon_sym_alias] = ACTIONS(2524), [anon_sym_let] = ACTIONS(2524), @@ -156448,8 +159151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2526), }, - [688] = { - [sym_comment] = STATE(688), + [690] = { + [sym_comment] = STATE(690), [anon_sym_export] = ACTIONS(2528), [anon_sym_alias] = ACTIONS(2528), [anon_sym_let] = ACTIONS(2528), @@ -156548,1499 +159251,1099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2530), }, - [689] = { - [sym_comment] = STATE(689), - [aux_sym__multiple_types_repeat1] = STATE(575), - [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_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(2308), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2310), - }, - [690] = { - [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [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(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [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(1008), - [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(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [sym__entry_separator] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1010), - }, [691] = { [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [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(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [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(1004), - [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(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [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_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [sym__entry_separator] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(1891), + [aux_sym_cmd_identifier_token3] = ACTIONS(1891), + [aux_sym_cmd_identifier_token4] = ACTIONS(1891), + [aux_sym_cmd_identifier_token5] = ACTIONS(1891), + [aux_sym_cmd_identifier_token6] = ACTIONS(1891), + [aux_sym_cmd_identifier_token7] = ACTIONS(1891), + [aux_sym_cmd_identifier_token8] = ACTIONS(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1891), + [aux_sym_cmd_identifier_token11] = ACTIONS(1891), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(1891), + [aux_sym_cmd_identifier_token17] = ACTIONS(1891), + [aux_sym_cmd_identifier_token18] = ACTIONS(1891), + [aux_sym_cmd_identifier_token19] = ACTIONS(1891), + [aux_sym_cmd_identifier_token20] = ACTIONS(1891), + [aux_sym_cmd_identifier_token21] = ACTIONS(1891), + [aux_sym_cmd_identifier_token22] = ACTIONS(1891), + [aux_sym_cmd_identifier_token23] = ACTIONS(1891), + [aux_sym_cmd_identifier_token24] = ACTIONS(1891), + [aux_sym_cmd_identifier_token25] = ACTIONS(1891), + [aux_sym_cmd_identifier_token26] = ACTIONS(1891), + [aux_sym_cmd_identifier_token27] = ACTIONS(1891), + [aux_sym_cmd_identifier_token28] = ACTIONS(1891), + [aux_sym_cmd_identifier_token29] = ACTIONS(1891), + [aux_sym_cmd_identifier_token30] = ACTIONS(1891), + [aux_sym_cmd_identifier_token31] = ACTIONS(1891), + [aux_sym_cmd_identifier_token32] = ACTIONS(1891), + [aux_sym_cmd_identifier_token33] = ACTIONS(1891), + [aux_sym_cmd_identifier_token34] = ACTIONS(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1891), + [aux_sym_cmd_identifier_token36] = ACTIONS(1891), + [aux_sym_cmd_identifier_token37] = ACTIONS(1891), + [aux_sym_cmd_identifier_token38] = ACTIONS(1891), + [aux_sym_cmd_identifier_token39] = ACTIONS(1891), + [aux_sym_cmd_identifier_token40] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in2] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1891), + [aux_sym__val_number_decimal_token3] = ACTIONS(1891), + [aux_sym__val_number_decimal_token4] = ACTIONS(1891), + [aux_sym__val_number_token1] = ACTIONS(1891), + [aux_sym__val_number_token2] = ACTIONS(1891), + [aux_sym__val_number_token3] = ACTIONS(1891), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), + [sym__entry_separator] = ACTIONS(1893), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1006), + [sym_raw_string_begin] = ACTIONS(1893), }, [692] = { [sym_comment] = STATE(692), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [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(996), - [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(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [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_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [sym__entry_separator] = ACTIONS(998), + [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_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(998), + [sym_raw_string_begin] = ACTIONS(2084), }, [693] = { [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [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(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [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(1000), - [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(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [sym__entry_separator] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1002), + [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(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(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), + [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(2504), + [aux_sym_cmd_identifier_token35] = ACTIONS(2506), + [aux_sym_cmd_identifier_token36] = 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(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(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(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(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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2506), }, [694] = { [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(2532), - [anon_sym_alias] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_let_DASHenv] = ACTIONS(2532), - [anon_sym_mut] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [aux_sym_cmd_identifier_token1] = ACTIONS(2532), - [aux_sym_cmd_identifier_token2] = ACTIONS(2532), - [aux_sym_cmd_identifier_token3] = ACTIONS(2532), - [aux_sym_cmd_identifier_token4] = ACTIONS(2532), - [aux_sym_cmd_identifier_token5] = ACTIONS(2532), - [aux_sym_cmd_identifier_token6] = ACTIONS(2532), - [aux_sym_cmd_identifier_token7] = ACTIONS(2532), - [aux_sym_cmd_identifier_token8] = ACTIONS(2532), - [aux_sym_cmd_identifier_token9] = ACTIONS(2532), - [aux_sym_cmd_identifier_token10] = ACTIONS(2532), - [aux_sym_cmd_identifier_token11] = ACTIONS(2532), - [aux_sym_cmd_identifier_token12] = ACTIONS(2532), - [aux_sym_cmd_identifier_token13] = ACTIONS(2532), - [aux_sym_cmd_identifier_token14] = ACTIONS(2532), - [aux_sym_cmd_identifier_token15] = ACTIONS(2532), - [aux_sym_cmd_identifier_token16] = ACTIONS(2532), - [aux_sym_cmd_identifier_token17] = ACTIONS(2532), - [aux_sym_cmd_identifier_token18] = ACTIONS(2532), - [aux_sym_cmd_identifier_token19] = ACTIONS(2532), - [aux_sym_cmd_identifier_token20] = ACTIONS(2532), - [aux_sym_cmd_identifier_token21] = ACTIONS(2532), - [aux_sym_cmd_identifier_token22] = ACTIONS(2532), - [aux_sym_cmd_identifier_token23] = ACTIONS(2532), - [aux_sym_cmd_identifier_token24] = ACTIONS(2532), - [aux_sym_cmd_identifier_token25] = ACTIONS(2532), - [aux_sym_cmd_identifier_token26] = ACTIONS(2532), - [aux_sym_cmd_identifier_token27] = ACTIONS(2532), - [aux_sym_cmd_identifier_token28] = ACTIONS(2532), - [aux_sym_cmd_identifier_token29] = ACTIONS(2532), - [aux_sym_cmd_identifier_token30] = ACTIONS(2532), - [aux_sym_cmd_identifier_token31] = ACTIONS(2532), - [aux_sym_cmd_identifier_token32] = ACTIONS(2532), - [aux_sym_cmd_identifier_token33] = ACTIONS(2532), - [aux_sym_cmd_identifier_token34] = ACTIONS(2532), - [aux_sym_cmd_identifier_token35] = ACTIONS(2532), - [aux_sym_cmd_identifier_token36] = ACTIONS(2532), - [aux_sym_cmd_identifier_token37] = ACTIONS(2532), - [aux_sym_cmd_identifier_token38] = ACTIONS(2532), - [aux_sym_cmd_identifier_token39] = ACTIONS(2532), - [aux_sym_cmd_identifier_token40] = ACTIONS(2532), - [anon_sym_def] = ACTIONS(2532), - [anon_sym_export_DASHenv] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_module] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_DOLLAR] = ACTIONS(2532), - [anon_sym_error] = ACTIONS(2532), - [anon_sym_DASH2] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_in2] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_make] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_do] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_catch] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_source] = ACTIONS(2532), - [anon_sym_source_DASHenv] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_hide] = ACTIONS(2532), - [anon_sym_hide_DASHenv] = ACTIONS(2532), - [anon_sym_overlay] = ACTIONS(2532), - [anon_sym_as] = ACTIONS(2532), - [anon_sym_PLUS2] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2532), - [aux_sym__val_number_decimal_token1] = ACTIONS(2532), - [aux_sym__val_number_decimal_token2] = ACTIONS(2532), - [aux_sym__val_number_decimal_token3] = ACTIONS(2532), - [aux_sym__val_number_decimal_token4] = ACTIONS(2532), - [aux_sym__val_number_token1] = ACTIONS(2532), - [aux_sym__val_number_token2] = ACTIONS(2532), - [aux_sym__val_number_token3] = ACTIONS(2532), - [aux_sym__val_number_token4] = ACTIONS(2532), - [aux_sym__val_number_token5] = ACTIONS(2532), - [aux_sym__val_number_token6] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [sym__str_single_quotes] = ACTIONS(2532), - [sym__str_back_ticks] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2532), - [sym__entry_separator] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2534), + [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(251), + [sym_raw_string_begin] = ACTIONS(2361), }, [695] = { [sym_comment] = STATE(695), - [anon_sym_export] = ACTIONS(2044), - [anon_sym_alias] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_let_DASHenv] = ACTIONS(2044), - [anon_sym_mut] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [aux_sym_cmd_identifier_token1] = ACTIONS(2044), - [aux_sym_cmd_identifier_token2] = ACTIONS(2046), - [aux_sym_cmd_identifier_token3] = ACTIONS(2046), - [aux_sym_cmd_identifier_token4] = ACTIONS(2046), - [aux_sym_cmd_identifier_token5] = ACTIONS(2046), - [aux_sym_cmd_identifier_token6] = ACTIONS(2046), - [aux_sym_cmd_identifier_token7] = ACTIONS(2046), - [aux_sym_cmd_identifier_token8] = ACTIONS(2044), - [aux_sym_cmd_identifier_token9] = ACTIONS(2044), - [aux_sym_cmd_identifier_token10] = ACTIONS(2046), - [aux_sym_cmd_identifier_token11] = ACTIONS(2046), - [aux_sym_cmd_identifier_token12] = ACTIONS(2044), - [aux_sym_cmd_identifier_token13] = ACTIONS(2044), - [aux_sym_cmd_identifier_token14] = ACTIONS(2044), - [aux_sym_cmd_identifier_token15] = ACTIONS(2044), - [aux_sym_cmd_identifier_token16] = ACTIONS(2046), - [aux_sym_cmd_identifier_token17] = ACTIONS(2046), - [aux_sym_cmd_identifier_token18] = ACTIONS(2046), - [aux_sym_cmd_identifier_token19] = ACTIONS(2046), - [aux_sym_cmd_identifier_token20] = ACTIONS(2046), - [aux_sym_cmd_identifier_token21] = ACTIONS(2046), - [aux_sym_cmd_identifier_token22] = ACTIONS(2046), - [aux_sym_cmd_identifier_token23] = ACTIONS(2046), - [aux_sym_cmd_identifier_token24] = ACTIONS(2046), - [aux_sym_cmd_identifier_token25] = ACTIONS(2046), - [aux_sym_cmd_identifier_token26] = ACTIONS(2046), - [aux_sym_cmd_identifier_token27] = ACTIONS(2046), - [aux_sym_cmd_identifier_token28] = ACTIONS(2046), - [aux_sym_cmd_identifier_token29] = ACTIONS(2046), - [aux_sym_cmd_identifier_token30] = ACTIONS(2046), - [aux_sym_cmd_identifier_token31] = ACTIONS(2046), - [aux_sym_cmd_identifier_token32] = ACTIONS(2046), - [aux_sym_cmd_identifier_token33] = ACTIONS(2046), - [aux_sym_cmd_identifier_token34] = ACTIONS(2044), - [aux_sym_cmd_identifier_token35] = ACTIONS(2046), - [aux_sym_cmd_identifier_token36] = ACTIONS(2046), - [aux_sym_cmd_identifier_token37] = ACTIONS(2046), - [aux_sym_cmd_identifier_token38] = ACTIONS(2044), - [aux_sym_cmd_identifier_token39] = ACTIONS(2046), - [aux_sym_cmd_identifier_token40] = ACTIONS(2046), - [anon_sym_def] = ACTIONS(2044), - [anon_sym_export_DASHenv] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_module] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2046), - [anon_sym_error] = ACTIONS(2044), - [anon_sym_DASH2] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_in2] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_make] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_do] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_else] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_try] = ACTIONS(2044), - [anon_sym_catch] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_source] = ACTIONS(2044), - [anon_sym_source_DASHenv] = ACTIONS(2044), - [anon_sym_register] = ACTIONS(2044), - [anon_sym_hide] = ACTIONS(2044), - [anon_sym_hide_DASHenv] = ACTIONS(2044), - [anon_sym_overlay] = ACTIONS(2044), - [anon_sym_as] = ACTIONS(2044), - [anon_sym_PLUS2] = ACTIONS(2044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2046), - [aux_sym__val_number_decimal_token1] = ACTIONS(2044), - [aux_sym__val_number_decimal_token2] = ACTIONS(2046), - [aux_sym__val_number_decimal_token3] = ACTIONS(2046), - [aux_sym__val_number_decimal_token4] = ACTIONS(2046), - [aux_sym__val_number_token1] = ACTIONS(2046), - [aux_sym__val_number_token2] = ACTIONS(2046), - [aux_sym__val_number_token3] = ACTIONS(2046), - [aux_sym__val_number_token4] = ACTIONS(2044), - [aux_sym__val_number_token5] = ACTIONS(2044), - [aux_sym__val_number_token6] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2046), - [sym__str_single_quotes] = ACTIONS(2046), - [sym__str_back_ticks] = ACTIONS(2046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2046), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1951), + [aux_sym_cmd_identifier_token3] = ACTIONS(1951), + [aux_sym_cmd_identifier_token4] = ACTIONS(1951), + [aux_sym_cmd_identifier_token5] = ACTIONS(1951), + [aux_sym_cmd_identifier_token6] = ACTIONS(1951), + [aux_sym_cmd_identifier_token7] = ACTIONS(1951), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1951), + [aux_sym_cmd_identifier_token11] = ACTIONS(1951), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1951), + [aux_sym_cmd_identifier_token17] = ACTIONS(1951), + [aux_sym_cmd_identifier_token18] = ACTIONS(1951), + [aux_sym_cmd_identifier_token19] = ACTIONS(1951), + [aux_sym_cmd_identifier_token20] = ACTIONS(1951), + [aux_sym_cmd_identifier_token21] = ACTIONS(1951), + [aux_sym_cmd_identifier_token22] = ACTIONS(1951), + [aux_sym_cmd_identifier_token23] = ACTIONS(1951), + [aux_sym_cmd_identifier_token24] = ACTIONS(1951), + [aux_sym_cmd_identifier_token25] = ACTIONS(1951), + [aux_sym_cmd_identifier_token26] = ACTIONS(1951), + [aux_sym_cmd_identifier_token27] = ACTIONS(1951), + [aux_sym_cmd_identifier_token28] = ACTIONS(1951), + [aux_sym_cmd_identifier_token29] = ACTIONS(1951), + [aux_sym_cmd_identifier_token30] = ACTIONS(1951), + [aux_sym_cmd_identifier_token31] = ACTIONS(1951), + [aux_sym_cmd_identifier_token32] = ACTIONS(1951), + [aux_sym_cmd_identifier_token33] = ACTIONS(1951), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1951), + [aux_sym_cmd_identifier_token36] = ACTIONS(1951), + [aux_sym_cmd_identifier_token37] = ACTIONS(1951), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1951), + [aux_sym_cmd_identifier_token40] = ACTIONS(1951), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1951), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in2] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [aux_sym__val_number_token4] = ACTIONS(1949), + [aux_sym__val_number_token5] = ACTIONS(1949), + [aux_sym__val_number_token6] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1951), }, [696] = { [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_alias] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_let_DASHenv] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [aux_sym_cmd_identifier_token1] = ACTIONS(2465), - [aux_sym_cmd_identifier_token2] = ACTIONS(2467), - [aux_sym_cmd_identifier_token3] = ACTIONS(2467), - [aux_sym_cmd_identifier_token4] = ACTIONS(2467), - [aux_sym_cmd_identifier_token5] = ACTIONS(2467), - [aux_sym_cmd_identifier_token6] = ACTIONS(2467), - [aux_sym_cmd_identifier_token7] = ACTIONS(2467), - [aux_sym_cmd_identifier_token8] = ACTIONS(2465), - [aux_sym_cmd_identifier_token9] = ACTIONS(2465), - [aux_sym_cmd_identifier_token10] = ACTIONS(2467), - [aux_sym_cmd_identifier_token11] = ACTIONS(2467), - [aux_sym_cmd_identifier_token12] = ACTIONS(2465), - [aux_sym_cmd_identifier_token13] = ACTIONS(2465), - [aux_sym_cmd_identifier_token14] = ACTIONS(2465), - [aux_sym_cmd_identifier_token15] = ACTIONS(2465), - [aux_sym_cmd_identifier_token16] = ACTIONS(2467), - [aux_sym_cmd_identifier_token17] = ACTIONS(2467), - [aux_sym_cmd_identifier_token18] = ACTIONS(2467), - [aux_sym_cmd_identifier_token19] = ACTIONS(2467), - [aux_sym_cmd_identifier_token20] = ACTIONS(2467), - [aux_sym_cmd_identifier_token21] = ACTIONS(2467), - [aux_sym_cmd_identifier_token22] = ACTIONS(2467), - [aux_sym_cmd_identifier_token23] = ACTIONS(2467), - [aux_sym_cmd_identifier_token24] = ACTIONS(2467), - [aux_sym_cmd_identifier_token25] = ACTIONS(2467), - [aux_sym_cmd_identifier_token26] = ACTIONS(2467), - [aux_sym_cmd_identifier_token27] = ACTIONS(2467), - [aux_sym_cmd_identifier_token28] = ACTIONS(2467), - [aux_sym_cmd_identifier_token29] = ACTIONS(2467), - [aux_sym_cmd_identifier_token30] = ACTIONS(2467), - [aux_sym_cmd_identifier_token31] = ACTIONS(2467), - [aux_sym_cmd_identifier_token32] = ACTIONS(2467), - [aux_sym_cmd_identifier_token33] = ACTIONS(2467), - [aux_sym_cmd_identifier_token34] = ACTIONS(2465), - [aux_sym_cmd_identifier_token35] = ACTIONS(2467), - [aux_sym_cmd_identifier_token36] = ACTIONS(2467), - [aux_sym_cmd_identifier_token37] = ACTIONS(2467), - [aux_sym_cmd_identifier_token38] = ACTIONS(2465), - [aux_sym_cmd_identifier_token39] = ACTIONS(2467), - [aux_sym_cmd_identifier_token40] = ACTIONS(2467), - [anon_sym_def] = ACTIONS(2465), - [anon_sym_export_DASHenv] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_error] = ACTIONS(2465), - [anon_sym_DASH2] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_in2] = ACTIONS(2465), - [anon_sym_loop] = ACTIONS(2465), - [anon_sym_make] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_catch] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_source] = ACTIONS(2465), - [anon_sym_source_DASHenv] = ACTIONS(2465), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_hide] = ACTIONS(2465), - [anon_sym_hide_DASHenv] = ACTIONS(2465), - [anon_sym_overlay] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_PLUS2] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), - [aux_sym__val_number_decimal_token1] = ACTIONS(2465), - [aux_sym__val_number_decimal_token2] = ACTIONS(2467), - [aux_sym__val_number_decimal_token3] = ACTIONS(2467), - [aux_sym__val_number_decimal_token4] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2467), - [aux_sym__val_number_token2] = ACTIONS(2467), - [aux_sym__val_number_token3] = ACTIONS(2467), - [aux_sym__val_number_token4] = ACTIONS(2465), - [aux_sym__val_number_token5] = ACTIONS(2465), - [aux_sym__val_number_token6] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym__str_single_quotes] = ACTIONS(2467), - [sym__str_back_ticks] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2467), + [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(251), + [sym_raw_string_begin] = ACTIONS(2389), }, [697] = { [sym_comment] = STATE(697), - [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_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_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_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(251), - [sym_raw_string_begin] = ACTIONS(1935), + [sym_raw_string_begin] = ACTIONS(2084), }, [698] = { [sym_comment] = STATE(698), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [aux_sym_cmd_identifier_token37] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), + [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(251), - [sym_raw_string_begin] = ACTIONS(1943), + [sym_raw_string_begin] = ACTIONS(2088), }, [699] = { [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [aux_sym_cmd_identifier_token37] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), + [anon_sym_export] = ACTIONS(2342), + [anon_sym_alias] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_let_DASHenv] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [aux_sym_cmd_identifier_token1] = ACTIONS(2342), + [aux_sym_cmd_identifier_token2] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token8] = ACTIONS(2342), + [aux_sym_cmd_identifier_token9] = ACTIONS(2342), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [aux_sym_cmd_identifier_token12] = ACTIONS(2342), + [aux_sym_cmd_identifier_token13] = ACTIONS(2342), + [aux_sym_cmd_identifier_token14] = ACTIONS(2342), + [aux_sym_cmd_identifier_token15] = ACTIONS(2342), + [aux_sym_cmd_identifier_token16] = ACTIONS(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token34] = ACTIONS(2342), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2342), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [anon_sym_def] = ACTIONS(2342), + [anon_sym_export_DASHenv] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_module] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_error] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_in2] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_make] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_do] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2342), + [anon_sym_catch] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_source] = ACTIONS(2342), + [anon_sym_source_DASHenv] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_hide] = ACTIONS(2342), + [anon_sym_hide_DASHenv] = ACTIONS(2342), + [anon_sym_overlay] = ACTIONS(2342), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2342), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [aux_sym__val_number_token4] = ACTIONS(2342), + [aux_sym__val_number_token5] = ACTIONS(2342), + [aux_sym__val_number_token6] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2346), }, [700] = { [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2471), - [aux_sym_cmd_identifier_token3] = ACTIONS(2471), - [aux_sym_cmd_identifier_token4] = ACTIONS(2471), - [aux_sym_cmd_identifier_token5] = ACTIONS(2471), - [aux_sym_cmd_identifier_token6] = ACTIONS(2471), - [aux_sym_cmd_identifier_token7] = ACTIONS(2471), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2471), - [aux_sym_cmd_identifier_token11] = ACTIONS(2471), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2471), - [aux_sym_cmd_identifier_token17] = ACTIONS(2471), - [aux_sym_cmd_identifier_token18] = ACTIONS(2471), - [aux_sym_cmd_identifier_token19] = ACTIONS(2471), - [aux_sym_cmd_identifier_token20] = ACTIONS(2471), - [aux_sym_cmd_identifier_token21] = ACTIONS(2471), - [aux_sym_cmd_identifier_token22] = ACTIONS(2471), - [aux_sym_cmd_identifier_token23] = ACTIONS(2471), - [aux_sym_cmd_identifier_token24] = ACTIONS(2471), - [aux_sym_cmd_identifier_token25] = ACTIONS(2471), - [aux_sym_cmd_identifier_token26] = ACTIONS(2471), - [aux_sym_cmd_identifier_token27] = ACTIONS(2471), - [aux_sym_cmd_identifier_token28] = ACTIONS(2471), - [aux_sym_cmd_identifier_token29] = ACTIONS(2471), - [aux_sym_cmd_identifier_token30] = ACTIONS(2471), - [aux_sym_cmd_identifier_token31] = ACTIONS(2471), - [aux_sym_cmd_identifier_token32] = ACTIONS(2471), - [aux_sym_cmd_identifier_token33] = ACTIONS(2471), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2471), - [aux_sym_cmd_identifier_token36] = ACTIONS(2471), - [aux_sym_cmd_identifier_token37] = ACTIONS(2471), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2471), - [aux_sym_cmd_identifier_token40] = ACTIONS(2471), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2471), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in2] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2471), - [aux_sym__val_number_decimal_token3] = ACTIONS(2471), - [aux_sym__val_number_decimal_token4] = ACTIONS(2471), - [aux_sym__val_number_token1] = ACTIONS(2471), - [aux_sym__val_number_token2] = ACTIONS(2471), - [aux_sym__val_number_token3] = ACTIONS(2471), - [aux_sym__val_number_token4] = ACTIONS(2469), - [aux_sym__val_number_token5] = ACTIONS(2469), - [aux_sym__val_number_token6] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym__str_single_quotes] = ACTIONS(2471), - [sym__str_back_ticks] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2471), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [aux_sym_cmd_identifier_token1] = ACTIONS(1799), + [aux_sym_cmd_identifier_token2] = ACTIONS(1801), + [aux_sym_cmd_identifier_token3] = ACTIONS(1801), + [aux_sym_cmd_identifier_token4] = ACTIONS(1801), + [aux_sym_cmd_identifier_token5] = ACTIONS(1801), + [aux_sym_cmd_identifier_token6] = ACTIONS(1801), + [aux_sym_cmd_identifier_token7] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1799), + [aux_sym_cmd_identifier_token9] = ACTIONS(1799), + [aux_sym_cmd_identifier_token10] = ACTIONS(1801), + [aux_sym_cmd_identifier_token11] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1799), + [aux_sym_cmd_identifier_token13] = ACTIONS(1799), + [aux_sym_cmd_identifier_token14] = ACTIONS(1799), + [aux_sym_cmd_identifier_token15] = ACTIONS(1799), + [aux_sym_cmd_identifier_token16] = ACTIONS(1801), + [aux_sym_cmd_identifier_token17] = ACTIONS(1801), + [aux_sym_cmd_identifier_token18] = ACTIONS(1801), + [aux_sym_cmd_identifier_token19] = ACTIONS(1801), + [aux_sym_cmd_identifier_token20] = ACTIONS(1801), + [aux_sym_cmd_identifier_token21] = ACTIONS(1801), + [aux_sym_cmd_identifier_token22] = ACTIONS(1801), + [aux_sym_cmd_identifier_token23] = ACTIONS(1801), + [aux_sym_cmd_identifier_token24] = ACTIONS(1801), + [aux_sym_cmd_identifier_token25] = ACTIONS(1801), + [aux_sym_cmd_identifier_token26] = ACTIONS(1801), + [aux_sym_cmd_identifier_token27] = ACTIONS(1801), + [aux_sym_cmd_identifier_token28] = ACTIONS(1801), + [aux_sym_cmd_identifier_token29] = ACTIONS(1801), + [aux_sym_cmd_identifier_token30] = ACTIONS(1801), + [aux_sym_cmd_identifier_token31] = ACTIONS(1801), + [aux_sym_cmd_identifier_token32] = ACTIONS(1801), + [aux_sym_cmd_identifier_token33] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1799), + [aux_sym_cmd_identifier_token35] = ACTIONS(1801), + [aux_sym_cmd_identifier_token36] = ACTIONS(1801), + [aux_sym_cmd_identifier_token37] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1799), + [aux_sym_cmd_identifier_token39] = ACTIONS(1801), + [aux_sym_cmd_identifier_token40] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_make] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, [701] = { [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2066), - [aux_sym_cmd_identifier_token3] = ACTIONS(2066), - [aux_sym_cmd_identifier_token4] = ACTIONS(2066), - [aux_sym_cmd_identifier_token5] = ACTIONS(2066), - [aux_sym_cmd_identifier_token6] = ACTIONS(2066), - [aux_sym_cmd_identifier_token7] = ACTIONS(2066), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2066), - [aux_sym_cmd_identifier_token11] = ACTIONS(2066), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2066), - [aux_sym_cmd_identifier_token17] = ACTIONS(2066), - [aux_sym_cmd_identifier_token18] = ACTIONS(2066), - [aux_sym_cmd_identifier_token19] = ACTIONS(2066), - [aux_sym_cmd_identifier_token20] = ACTIONS(2066), - [aux_sym_cmd_identifier_token21] = ACTIONS(2066), - [aux_sym_cmd_identifier_token22] = ACTIONS(2066), - [aux_sym_cmd_identifier_token23] = ACTIONS(2066), - [aux_sym_cmd_identifier_token24] = ACTIONS(2066), - [aux_sym_cmd_identifier_token25] = ACTIONS(2066), - [aux_sym_cmd_identifier_token26] = ACTIONS(2066), - [aux_sym_cmd_identifier_token27] = ACTIONS(2066), - [aux_sym_cmd_identifier_token28] = ACTIONS(2066), - [aux_sym_cmd_identifier_token29] = ACTIONS(2066), - [aux_sym_cmd_identifier_token30] = ACTIONS(2066), - [aux_sym_cmd_identifier_token31] = ACTIONS(2066), - [aux_sym_cmd_identifier_token32] = ACTIONS(2066), - [aux_sym_cmd_identifier_token33] = ACTIONS(2066), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2066), - [aux_sym_cmd_identifier_token36] = ACTIONS(2066), - [aux_sym_cmd_identifier_token37] = ACTIONS(2066), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2066), - [aux_sym_cmd_identifier_token40] = ACTIONS(2066), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2066), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2066), - [aux_sym__val_number_decimal_token3] = ACTIONS(2066), - [aux_sym__val_number_decimal_token4] = ACTIONS(2066), - [aux_sym__val_number_token1] = ACTIONS(2066), - [aux_sym__val_number_token2] = ACTIONS(2066), - [aux_sym__val_number_token3] = ACTIONS(2066), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2066), - [sym__str_single_quotes] = ACTIONS(2066), - [sym__str_back_ticks] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2066), + [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(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(2454), + [aux_sym_cmd_identifier_token9] = ACTIONS(2454), + [aux_sym_cmd_identifier_token10] = ACTIONS(2456), + [aux_sym_cmd_identifier_token11] = ACTIONS(2456), + [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(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(2454), + [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(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_DASH2] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_in2] = 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_as] = ACTIONS(2454), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2454), + [aux_sym__val_number_token5] = ACTIONS(2454), + [aux_sym__val_number_token6] = ACTIONS(2454), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2456), }, [702] = { [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(2473), - [anon_sym_alias] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_DASHenv] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [aux_sym_cmd_identifier_token1] = ACTIONS(2473), - [aux_sym_cmd_identifier_token2] = ACTIONS(2475), - [aux_sym_cmd_identifier_token3] = ACTIONS(2475), - [aux_sym_cmd_identifier_token4] = ACTIONS(2475), - [aux_sym_cmd_identifier_token5] = ACTIONS(2475), - [aux_sym_cmd_identifier_token6] = ACTIONS(2475), - [aux_sym_cmd_identifier_token7] = ACTIONS(2475), - [aux_sym_cmd_identifier_token8] = ACTIONS(2473), - [aux_sym_cmd_identifier_token9] = ACTIONS(2473), - [aux_sym_cmd_identifier_token10] = ACTIONS(2475), - [aux_sym_cmd_identifier_token11] = ACTIONS(2475), - [aux_sym_cmd_identifier_token12] = ACTIONS(2473), - [aux_sym_cmd_identifier_token13] = ACTIONS(2473), - [aux_sym_cmd_identifier_token14] = ACTIONS(2473), - [aux_sym_cmd_identifier_token15] = ACTIONS(2473), - [aux_sym_cmd_identifier_token16] = ACTIONS(2475), - [aux_sym_cmd_identifier_token17] = ACTIONS(2475), - [aux_sym_cmd_identifier_token18] = ACTIONS(2475), - [aux_sym_cmd_identifier_token19] = ACTIONS(2475), - [aux_sym_cmd_identifier_token20] = ACTIONS(2475), - [aux_sym_cmd_identifier_token21] = ACTIONS(2475), - [aux_sym_cmd_identifier_token22] = ACTIONS(2475), - [aux_sym_cmd_identifier_token23] = ACTIONS(2475), - [aux_sym_cmd_identifier_token24] = ACTIONS(2475), - [aux_sym_cmd_identifier_token25] = ACTIONS(2475), - [aux_sym_cmd_identifier_token26] = ACTIONS(2475), - [aux_sym_cmd_identifier_token27] = ACTIONS(2475), - [aux_sym_cmd_identifier_token28] = ACTIONS(2475), - [aux_sym_cmd_identifier_token29] = ACTIONS(2475), - [aux_sym_cmd_identifier_token30] = ACTIONS(2475), - [aux_sym_cmd_identifier_token31] = ACTIONS(2475), - [aux_sym_cmd_identifier_token32] = ACTIONS(2475), - [aux_sym_cmd_identifier_token33] = ACTIONS(2475), - [aux_sym_cmd_identifier_token34] = ACTIONS(2473), - [aux_sym_cmd_identifier_token35] = ACTIONS(2475), - [aux_sym_cmd_identifier_token36] = ACTIONS(2475), - [aux_sym_cmd_identifier_token37] = ACTIONS(2475), - [aux_sym_cmd_identifier_token38] = ACTIONS(2473), - [aux_sym_cmd_identifier_token39] = ACTIONS(2475), - [aux_sym_cmd_identifier_token40] = ACTIONS(2475), - [anon_sym_def] = ACTIONS(2473), - [anon_sym_export_DASHenv] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_error] = ACTIONS(2473), - [anon_sym_DASH2] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_in2] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2473), - [anon_sym_make] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_catch] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_source] = ACTIONS(2473), - [anon_sym_source_DASHenv] = ACTIONS(2473), - [anon_sym_register] = ACTIONS(2473), - [anon_sym_hide] = ACTIONS(2473), - [anon_sym_hide_DASHenv] = ACTIONS(2473), - [anon_sym_overlay] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_PLUS2] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), - [aux_sym__val_number_decimal_token1] = ACTIONS(2473), - [aux_sym__val_number_decimal_token2] = ACTIONS(2475), - [aux_sym__val_number_decimal_token3] = ACTIONS(2475), - [aux_sym__val_number_decimal_token4] = ACTIONS(2475), - [aux_sym__val_number_token1] = ACTIONS(2475), - [aux_sym__val_number_token2] = ACTIONS(2475), - [aux_sym__val_number_token3] = ACTIONS(2475), - [aux_sym__val_number_token4] = ACTIONS(2473), - [aux_sym__val_number_token5] = ACTIONS(2473), - [aux_sym__val_number_token6] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2475), - [sym__str_single_quotes] = ACTIONS(2475), - [sym__str_back_ticks] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2475), - }, - [703] = { - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(2477), - [anon_sym_alias] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), - [anon_sym_let_DASHenv] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [aux_sym_cmd_identifier_token1] = ACTIONS(2477), - [aux_sym_cmd_identifier_token2] = ACTIONS(2479), - [aux_sym_cmd_identifier_token3] = ACTIONS(2479), - [aux_sym_cmd_identifier_token4] = ACTIONS(2479), - [aux_sym_cmd_identifier_token5] = ACTIONS(2479), - [aux_sym_cmd_identifier_token6] = ACTIONS(2479), - [aux_sym_cmd_identifier_token7] = ACTIONS(2479), - [aux_sym_cmd_identifier_token8] = ACTIONS(2477), - [aux_sym_cmd_identifier_token9] = ACTIONS(2477), - [aux_sym_cmd_identifier_token10] = ACTIONS(2479), - [aux_sym_cmd_identifier_token11] = ACTIONS(2479), - [aux_sym_cmd_identifier_token12] = ACTIONS(2477), - [aux_sym_cmd_identifier_token13] = ACTIONS(2477), - [aux_sym_cmd_identifier_token14] = ACTIONS(2477), - [aux_sym_cmd_identifier_token15] = ACTIONS(2477), - [aux_sym_cmd_identifier_token16] = ACTIONS(2479), - [aux_sym_cmd_identifier_token17] = ACTIONS(2479), - [aux_sym_cmd_identifier_token18] = ACTIONS(2479), - [aux_sym_cmd_identifier_token19] = ACTIONS(2479), - [aux_sym_cmd_identifier_token20] = ACTIONS(2479), - [aux_sym_cmd_identifier_token21] = ACTIONS(2479), - [aux_sym_cmd_identifier_token22] = ACTIONS(2479), - [aux_sym_cmd_identifier_token23] = ACTIONS(2479), - [aux_sym_cmd_identifier_token24] = ACTIONS(2479), - [aux_sym_cmd_identifier_token25] = ACTIONS(2479), - [aux_sym_cmd_identifier_token26] = ACTIONS(2479), - [aux_sym_cmd_identifier_token27] = ACTIONS(2479), - [aux_sym_cmd_identifier_token28] = ACTIONS(2479), - [aux_sym_cmd_identifier_token29] = ACTIONS(2479), - [aux_sym_cmd_identifier_token30] = ACTIONS(2479), - [aux_sym_cmd_identifier_token31] = ACTIONS(2479), - [aux_sym_cmd_identifier_token32] = ACTIONS(2479), - [aux_sym_cmd_identifier_token33] = ACTIONS(2479), - [aux_sym_cmd_identifier_token34] = ACTIONS(2477), - [aux_sym_cmd_identifier_token35] = ACTIONS(2479), - [aux_sym_cmd_identifier_token36] = ACTIONS(2479), - [aux_sym_cmd_identifier_token37] = ACTIONS(2479), - [aux_sym_cmd_identifier_token38] = ACTIONS(2477), - [aux_sym_cmd_identifier_token39] = ACTIONS(2479), - [aux_sym_cmd_identifier_token40] = ACTIONS(2479), - [anon_sym_def] = ACTIONS(2477), - [anon_sym_export_DASHenv] = ACTIONS(2477), - [anon_sym_extern] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_error] = ACTIONS(2477), - [anon_sym_DASH2] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_in2] = ACTIONS(2477), - [anon_sym_loop] = ACTIONS(2477), - [anon_sym_make] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_catch] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_source] = ACTIONS(2477), - [anon_sym_source_DASHenv] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2477), - [anon_sym_hide] = ACTIONS(2477), - [anon_sym_hide_DASHenv] = ACTIONS(2477), - [anon_sym_overlay] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_PLUS2] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2477), - [aux_sym__val_number_decimal_token2] = ACTIONS(2479), - [aux_sym__val_number_decimal_token3] = ACTIONS(2479), - [aux_sym__val_number_decimal_token4] = ACTIONS(2479), - [aux_sym__val_number_token1] = ACTIONS(2479), - [aux_sym__val_number_token2] = ACTIONS(2479), - [aux_sym__val_number_token3] = ACTIONS(2479), - [aux_sym__val_number_token4] = ACTIONS(2477), - [aux_sym__val_number_token5] = ACTIONS(2477), - [aux_sym__val_number_token6] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2479), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2479), - }, - [704] = { - [sym_comment] = STATE(704), [anon_sym_export] = ACTIONS(1957), [anon_sym_alias] = ACTIONS(1957), [anon_sym_let] = ACTIONS(1957), @@ -158138,2087 +160441,2186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1959), }, + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_alias] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_let_DASHenv] = ACTIONS(1917), + [anon_sym_mut] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [aux_sym_cmd_identifier_token1] = ACTIONS(1917), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1917), + [aux_sym_cmd_identifier_token9] = ACTIONS(1917), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1917), + [aux_sym_cmd_identifier_token13] = ACTIONS(1917), + [aux_sym_cmd_identifier_token14] = ACTIONS(1917), + [aux_sym_cmd_identifier_token15] = ACTIONS(1917), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1917), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1917), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1917), + [anon_sym_export_DASHenv] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_in2] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_make] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_catch] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_source] = ACTIONS(1917), + [anon_sym_source_DASHenv] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_hide] = ACTIONS(1917), + [anon_sym_hide_DASHenv] = ACTIONS(1917), + [anon_sym_overlay] = ACTIONS(1917), + [anon_sym_as] = ACTIONS(1917), + [anon_sym_PLUS2] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1917), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1917), + [aux_sym__val_number_token5] = ACTIONS(1917), + [aux_sym__val_number_token6] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1919), + }, + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(1818), + [anon_sym_alias] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_let_DASHenv] = ACTIONS(1818), + [anon_sym_mut] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [aux_sym_cmd_identifier_token1] = ACTIONS(1818), + [aux_sym_cmd_identifier_token2] = ACTIONS(1820), + [aux_sym_cmd_identifier_token3] = ACTIONS(1820), + [aux_sym_cmd_identifier_token4] = ACTIONS(1820), + [aux_sym_cmd_identifier_token5] = ACTIONS(1820), + [aux_sym_cmd_identifier_token6] = ACTIONS(1820), + [aux_sym_cmd_identifier_token7] = ACTIONS(1820), + [aux_sym_cmd_identifier_token8] = ACTIONS(1818), + [aux_sym_cmd_identifier_token9] = ACTIONS(1818), + [aux_sym_cmd_identifier_token10] = ACTIONS(1820), + [aux_sym_cmd_identifier_token11] = ACTIONS(1820), + [aux_sym_cmd_identifier_token12] = ACTIONS(1818), + [aux_sym_cmd_identifier_token13] = ACTIONS(1818), + [aux_sym_cmd_identifier_token14] = ACTIONS(1818), + [aux_sym_cmd_identifier_token15] = ACTIONS(1818), + [aux_sym_cmd_identifier_token16] = ACTIONS(1820), + [aux_sym_cmd_identifier_token17] = ACTIONS(1820), + [aux_sym_cmd_identifier_token18] = ACTIONS(1820), + [aux_sym_cmd_identifier_token19] = ACTIONS(1820), + [aux_sym_cmd_identifier_token20] = ACTIONS(1820), + [aux_sym_cmd_identifier_token21] = ACTIONS(1820), + [aux_sym_cmd_identifier_token22] = ACTIONS(1820), + [aux_sym_cmd_identifier_token23] = ACTIONS(1820), + [aux_sym_cmd_identifier_token24] = ACTIONS(1820), + [aux_sym_cmd_identifier_token25] = ACTIONS(1820), + [aux_sym_cmd_identifier_token26] = ACTIONS(1820), + [aux_sym_cmd_identifier_token27] = ACTIONS(1820), + [aux_sym_cmd_identifier_token28] = ACTIONS(1820), + [aux_sym_cmd_identifier_token29] = ACTIONS(1820), + [aux_sym_cmd_identifier_token30] = ACTIONS(1820), + [aux_sym_cmd_identifier_token31] = ACTIONS(1820), + [aux_sym_cmd_identifier_token32] = ACTIONS(1820), + [aux_sym_cmd_identifier_token33] = ACTIONS(1820), + [aux_sym_cmd_identifier_token34] = ACTIONS(1818), + [aux_sym_cmd_identifier_token35] = ACTIONS(1820), + [aux_sym_cmd_identifier_token36] = ACTIONS(1820), + [aux_sym_cmd_identifier_token37] = ACTIONS(1820), + [aux_sym_cmd_identifier_token38] = ACTIONS(1818), + [aux_sym_cmd_identifier_token39] = ACTIONS(1820), + [aux_sym_cmd_identifier_token40] = ACTIONS(1820), + [anon_sym_def] = ACTIONS(1818), + [anon_sym_export_DASHenv] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_error] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_in2] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_make] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_do] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_source] = ACTIONS(1818), + [anon_sym_source_DASHenv] = ACTIONS(1818), + [anon_sym_register] = ACTIONS(1818), + [anon_sym_hide] = ACTIONS(1818), + [anon_sym_hide_DASHenv] = ACTIONS(1818), + [anon_sym_overlay] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1818), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1818), + [aux_sym__val_number_token5] = ACTIONS(1818), + [aux_sym__val_number_token6] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), + }, [705] = { [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1967), - [aux_sym_cmd_identifier_token3] = ACTIONS(1967), - [aux_sym_cmd_identifier_token4] = ACTIONS(1967), - [aux_sym_cmd_identifier_token5] = ACTIONS(1967), - [aux_sym_cmd_identifier_token6] = ACTIONS(1967), - [aux_sym_cmd_identifier_token7] = ACTIONS(1967), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1967), - [aux_sym_cmd_identifier_token11] = ACTIONS(1967), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1967), - [aux_sym_cmd_identifier_token17] = ACTIONS(1967), - [aux_sym_cmd_identifier_token18] = ACTIONS(1967), - [aux_sym_cmd_identifier_token19] = ACTIONS(1967), - [aux_sym_cmd_identifier_token20] = ACTIONS(1967), - [aux_sym_cmd_identifier_token21] = ACTIONS(1967), - [aux_sym_cmd_identifier_token22] = ACTIONS(1967), - [aux_sym_cmd_identifier_token23] = ACTIONS(1967), - [aux_sym_cmd_identifier_token24] = ACTIONS(1967), - [aux_sym_cmd_identifier_token25] = ACTIONS(1967), - [aux_sym_cmd_identifier_token26] = ACTIONS(1967), - [aux_sym_cmd_identifier_token27] = ACTIONS(1967), - [aux_sym_cmd_identifier_token28] = ACTIONS(1967), - [aux_sym_cmd_identifier_token29] = ACTIONS(1967), - [aux_sym_cmd_identifier_token30] = ACTIONS(1967), - [aux_sym_cmd_identifier_token31] = ACTIONS(1967), - [aux_sym_cmd_identifier_token32] = ACTIONS(1967), - [aux_sym_cmd_identifier_token33] = ACTIONS(1967), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1967), - [aux_sym_cmd_identifier_token36] = ACTIONS(1967), - [aux_sym_cmd_identifier_token37] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(2431), + [anon_sym_alias] = ACTIONS(2431), + [anon_sym_let] = ACTIONS(2431), + [anon_sym_let_DASHenv] = ACTIONS(2431), + [anon_sym_mut] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [aux_sym_cmd_identifier_token1] = ACTIONS(2431), + [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(2431), + [aux_sym_cmd_identifier_token9] = ACTIONS(2431), + [aux_sym_cmd_identifier_token10] = ACTIONS(2433), + [aux_sym_cmd_identifier_token11] = ACTIONS(2433), + [aux_sym_cmd_identifier_token12] = ACTIONS(2431), + [aux_sym_cmd_identifier_token13] = ACTIONS(2431), + [aux_sym_cmd_identifier_token14] = ACTIONS(2431), + [aux_sym_cmd_identifier_token15] = ACTIONS(2431), + [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(2431), + [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(2431), + [aux_sym_cmd_identifier_token39] = ACTIONS(2433), + [aux_sym_cmd_identifier_token40] = ACTIONS(2433), + [anon_sym_def] = ACTIONS(2431), + [anon_sym_export_DASHenv] = ACTIONS(2431), + [anon_sym_extern] = ACTIONS(2431), + [anon_sym_module] = ACTIONS(2431), + [anon_sym_use] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_error] = ACTIONS(2431), + [anon_sym_DASH2] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_in2] = ACTIONS(2431), + [anon_sym_loop] = ACTIONS(2431), + [anon_sym_make] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [anon_sym_do] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_else] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2431), + [anon_sym_catch] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_source] = ACTIONS(2431), + [anon_sym_source_DASHenv] = ACTIONS(2431), + [anon_sym_register] = ACTIONS(2431), + [anon_sym_hide] = ACTIONS(2431), + [anon_sym_hide_DASHenv] = ACTIONS(2431), + [anon_sym_overlay] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_PLUS2] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), + [aux_sym__val_number_decimal_token1] = ACTIONS(2431), + [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(2431), + [aux_sym__val_number_token5] = ACTIONS(2431), + [aux_sym__val_number_token6] = ACTIONS(2431), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2433), }, [706] = { [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2481), - [anon_sym_alias] = ACTIONS(2481), - [anon_sym_let] = ACTIONS(2481), - [anon_sym_let_DASHenv] = ACTIONS(2481), - [anon_sym_mut] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [aux_sym_cmd_identifier_token1] = ACTIONS(2481), - [aux_sym_cmd_identifier_token2] = ACTIONS(2483), - [aux_sym_cmd_identifier_token3] = ACTIONS(2483), - [aux_sym_cmd_identifier_token4] = ACTIONS(2483), - [aux_sym_cmd_identifier_token5] = ACTIONS(2483), - [aux_sym_cmd_identifier_token6] = ACTIONS(2483), - [aux_sym_cmd_identifier_token7] = ACTIONS(2483), - [aux_sym_cmd_identifier_token8] = ACTIONS(2481), - [aux_sym_cmd_identifier_token9] = ACTIONS(2481), - [aux_sym_cmd_identifier_token10] = ACTIONS(2483), - [aux_sym_cmd_identifier_token11] = ACTIONS(2483), - [aux_sym_cmd_identifier_token12] = ACTIONS(2481), - [aux_sym_cmd_identifier_token13] = ACTIONS(2481), - [aux_sym_cmd_identifier_token14] = ACTIONS(2481), - [aux_sym_cmd_identifier_token15] = ACTIONS(2481), - [aux_sym_cmd_identifier_token16] = ACTIONS(2483), - [aux_sym_cmd_identifier_token17] = ACTIONS(2483), - [aux_sym_cmd_identifier_token18] = ACTIONS(2483), - [aux_sym_cmd_identifier_token19] = ACTIONS(2483), - [aux_sym_cmd_identifier_token20] = ACTIONS(2483), - [aux_sym_cmd_identifier_token21] = ACTIONS(2483), - [aux_sym_cmd_identifier_token22] = ACTIONS(2483), - [aux_sym_cmd_identifier_token23] = ACTIONS(2483), - [aux_sym_cmd_identifier_token24] = ACTIONS(2483), - [aux_sym_cmd_identifier_token25] = ACTIONS(2483), - [aux_sym_cmd_identifier_token26] = ACTIONS(2483), - [aux_sym_cmd_identifier_token27] = ACTIONS(2483), - [aux_sym_cmd_identifier_token28] = ACTIONS(2483), - [aux_sym_cmd_identifier_token29] = ACTIONS(2483), - [aux_sym_cmd_identifier_token30] = ACTIONS(2483), - [aux_sym_cmd_identifier_token31] = ACTIONS(2483), - [aux_sym_cmd_identifier_token32] = ACTIONS(2483), - [aux_sym_cmd_identifier_token33] = ACTIONS(2483), - [aux_sym_cmd_identifier_token34] = ACTIONS(2481), - [aux_sym_cmd_identifier_token35] = ACTIONS(2483), - [aux_sym_cmd_identifier_token36] = ACTIONS(2483), - [aux_sym_cmd_identifier_token37] = ACTIONS(2483), - [aux_sym_cmd_identifier_token38] = ACTIONS(2481), - [aux_sym_cmd_identifier_token39] = ACTIONS(2483), - [aux_sym_cmd_identifier_token40] = ACTIONS(2483), - [anon_sym_def] = ACTIONS(2481), - [anon_sym_export_DASHenv] = ACTIONS(2481), - [anon_sym_extern] = ACTIONS(2481), - [anon_sym_module] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_error] = ACTIONS(2481), - [anon_sym_DASH2] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_in2] = ACTIONS(2481), - [anon_sym_loop] = ACTIONS(2481), - [anon_sym_make] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_catch] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_source] = ACTIONS(2481), - [anon_sym_source_DASHenv] = ACTIONS(2481), - [anon_sym_register] = ACTIONS(2481), - [anon_sym_hide] = ACTIONS(2481), - [anon_sym_hide_DASHenv] = ACTIONS(2481), - [anon_sym_overlay] = ACTIONS(2481), - [anon_sym_as] = ACTIONS(2481), - [anon_sym_PLUS2] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2483), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2483), - [aux_sym__val_number_decimal_token4] = ACTIONS(2483), - [aux_sym__val_number_token1] = ACTIONS(2483), - [aux_sym__val_number_token2] = ACTIONS(2483), - [aux_sym__val_number_token3] = ACTIONS(2483), - [aux_sym__val_number_token4] = ACTIONS(2481), - [aux_sym__val_number_token5] = ACTIONS(2481), - [aux_sym__val_number_token6] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2483), - [sym__str_single_quotes] = ACTIONS(2483), - [sym__str_back_ticks] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2483), + [anon_sym_export] = ACTIONS(2532), + [anon_sym_alias] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_let_DASHenv] = ACTIONS(2532), + [anon_sym_mut] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [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(2532), + [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(2532), + [aux_sym_cmd_identifier_token13] = ACTIONS(2532), + [aux_sym_cmd_identifier_token14] = ACTIONS(2532), + [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), + [anon_sym_def] = ACTIONS(2532), + [anon_sym_export_DASHenv] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), + [anon_sym_use] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_DOLLAR] = ACTIONS(2534), + [anon_sym_error] = ACTIONS(2532), + [anon_sym_DASH2] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_in2] = ACTIONS(2532), + [anon_sym_loop] = ACTIONS(2532), + [anon_sym_make] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_catch] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_source] = ACTIONS(2532), + [anon_sym_source_DASHenv] = ACTIONS(2532), + [anon_sym_register] = ACTIONS(2532), + [anon_sym_hide] = ACTIONS(2532), + [anon_sym_hide_DASHenv] = ACTIONS(2532), + [anon_sym_overlay] = ACTIONS(2532), + [anon_sym_as] = ACTIONS(2532), + [anon_sym_PLUS2] = ACTIONS(2532), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2534), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2534), + [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_DQUOTE] = ACTIONS(2534), + [sym__str_single_quotes] = ACTIONS(2534), + [sym__str_back_ticks] = ACTIONS(2534), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2534), }, [707] = { [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2485), - [anon_sym_let_DASHenv] = ACTIONS(2485), - [anon_sym_mut] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [aux_sym_cmd_identifier_token2] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [aux_sym_cmd_identifier_token6] = ACTIONS(2487), - [aux_sym_cmd_identifier_token7] = ACTIONS(2487), - [aux_sym_cmd_identifier_token8] = ACTIONS(2485), - [aux_sym_cmd_identifier_token9] = ACTIONS(2485), - [aux_sym_cmd_identifier_token10] = ACTIONS(2487), - [aux_sym_cmd_identifier_token11] = ACTIONS(2487), - [aux_sym_cmd_identifier_token12] = ACTIONS(2485), - [aux_sym_cmd_identifier_token13] = ACTIONS(2485), - [aux_sym_cmd_identifier_token14] = ACTIONS(2485), - [aux_sym_cmd_identifier_token15] = ACTIONS(2485), - [aux_sym_cmd_identifier_token16] = ACTIONS(2487), - [aux_sym_cmd_identifier_token17] = ACTIONS(2487), - [aux_sym_cmd_identifier_token18] = ACTIONS(2487), - [aux_sym_cmd_identifier_token19] = ACTIONS(2487), - [aux_sym_cmd_identifier_token20] = ACTIONS(2487), - [aux_sym_cmd_identifier_token21] = ACTIONS(2487), - [aux_sym_cmd_identifier_token22] = ACTIONS(2487), - [aux_sym_cmd_identifier_token23] = ACTIONS(2487), - [aux_sym_cmd_identifier_token24] = ACTIONS(2487), - [aux_sym_cmd_identifier_token25] = ACTIONS(2487), - [aux_sym_cmd_identifier_token26] = ACTIONS(2487), - [aux_sym_cmd_identifier_token27] = ACTIONS(2487), - [aux_sym_cmd_identifier_token28] = ACTIONS(2487), - [aux_sym_cmd_identifier_token29] = ACTIONS(2487), - [aux_sym_cmd_identifier_token30] = ACTIONS(2487), - [aux_sym_cmd_identifier_token31] = ACTIONS(2487), - [aux_sym_cmd_identifier_token32] = ACTIONS(2487), - [aux_sym_cmd_identifier_token33] = ACTIONS(2487), - [aux_sym_cmd_identifier_token34] = ACTIONS(2485), - [aux_sym_cmd_identifier_token35] = ACTIONS(2487), - [aux_sym_cmd_identifier_token36] = ACTIONS(2487), - [aux_sym_cmd_identifier_token37] = ACTIONS(2487), - [aux_sym_cmd_identifier_token38] = ACTIONS(2485), - [aux_sym_cmd_identifier_token39] = ACTIONS(2487), - [aux_sym_cmd_identifier_token40] = ACTIONS(2487), - [anon_sym_def] = ACTIONS(2485), - [anon_sym_export_DASHenv] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(2485), - [anon_sym_module] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_error] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_in2] = ACTIONS(2485), - [anon_sym_loop] = ACTIONS(2485), - [anon_sym_make] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_catch] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_source] = ACTIONS(2485), - [anon_sym_source_DASHenv] = ACTIONS(2485), - [anon_sym_register] = ACTIONS(2485), - [anon_sym_hide] = ACTIONS(2485), - [anon_sym_hide_DASHenv] = ACTIONS(2485), - [anon_sym_overlay] = ACTIONS(2485), - [anon_sym_as] = ACTIONS(2485), - [anon_sym_PLUS2] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [aux_sym__val_number_token4] = ACTIONS(2485), - [aux_sym__val_number_token5] = ACTIONS(2485), - [aux_sym__val_number_token6] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2487), - [sym__str_single_quotes] = ACTIONS(2487), - [sym__str_back_ticks] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2487), + [anon_sym_export] = ACTIONS(1052), + [anon_sym_alias] = ACTIONS(1052), + [anon_sym_let] = ACTIONS(1052), + [anon_sym_let_DASHenv] = ACTIONS(1052), + [anon_sym_mut] = ACTIONS(1052), + [anon_sym_const] = ACTIONS(1052), + [aux_sym_cmd_identifier_token1] = ACTIONS(1052), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token9] = ACTIONS(1052), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1052), + [aux_sym_cmd_identifier_token13] = ACTIONS(1052), + [aux_sym_cmd_identifier_token14] = ACTIONS(1052), + [aux_sym_cmd_identifier_token15] = ACTIONS(1052), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1052), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [aux_sym_cmd_identifier_token37] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1052), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1052), + [anon_sym_export_DASHenv] = ACTIONS(1052), + [anon_sym_extern] = ACTIONS(1052), + [anon_sym_module] = ACTIONS(1052), + [anon_sym_use] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_break] = ACTIONS(1052), + [anon_sym_continue] = ACTIONS(1052), + [anon_sym_for] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1052), + [anon_sym_loop] = ACTIONS(1052), + [anon_sym_make] = ACTIONS(1052), + [anon_sym_while] = ACTIONS(1052), + [anon_sym_do] = ACTIONS(1052), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_else] = ACTIONS(1052), + [anon_sym_match] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1052), + [anon_sym_catch] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_source] = ACTIONS(1052), + [anon_sym_source_DASHenv] = ACTIONS(1052), + [anon_sym_register] = ACTIONS(1052), + [anon_sym_hide] = ACTIONS(1052), + [anon_sym_hide_DASHenv] = ACTIONS(1052), + [anon_sym_overlay] = ACTIONS(1052), + [anon_sym_as] = ACTIONS(1052), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1052), + [aux_sym__val_number_token5] = ACTIONS(1052), + [aux_sym__val_number_token6] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1054), }, [708] = { [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1971), - [aux_sym_cmd_identifier_token3] = ACTIONS(1971), - [aux_sym_cmd_identifier_token4] = ACTIONS(1971), - [aux_sym_cmd_identifier_token5] = ACTIONS(1971), - [aux_sym_cmd_identifier_token6] = ACTIONS(1971), - [aux_sym_cmd_identifier_token7] = ACTIONS(1971), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1971), - [aux_sym_cmd_identifier_token11] = ACTIONS(1971), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1971), - [aux_sym_cmd_identifier_token17] = ACTIONS(1971), - [aux_sym_cmd_identifier_token18] = ACTIONS(1971), - [aux_sym_cmd_identifier_token19] = ACTIONS(1971), - [aux_sym_cmd_identifier_token20] = ACTIONS(1971), - [aux_sym_cmd_identifier_token21] = ACTIONS(1971), - [aux_sym_cmd_identifier_token22] = ACTIONS(1971), - [aux_sym_cmd_identifier_token23] = ACTIONS(1971), - [aux_sym_cmd_identifier_token24] = ACTIONS(1971), - [aux_sym_cmd_identifier_token25] = ACTIONS(1971), - [aux_sym_cmd_identifier_token26] = ACTIONS(1971), - [aux_sym_cmd_identifier_token27] = ACTIONS(1971), - [aux_sym_cmd_identifier_token28] = ACTIONS(1971), - [aux_sym_cmd_identifier_token29] = ACTIONS(1971), - [aux_sym_cmd_identifier_token30] = ACTIONS(1971), - [aux_sym_cmd_identifier_token31] = ACTIONS(1971), - [aux_sym_cmd_identifier_token32] = ACTIONS(1971), - [aux_sym_cmd_identifier_token33] = ACTIONS(1971), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1971), - [aux_sym_cmd_identifier_token36] = ACTIONS(1971), - [aux_sym_cmd_identifier_token37] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1971), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [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(2522), + [aux_sym_cmd_identifier_token3] = ACTIONS(2522), + [aux_sym_cmd_identifier_token4] = ACTIONS(2522), + [aux_sym_cmd_identifier_token5] = ACTIONS(2522), + [aux_sym_cmd_identifier_token6] = ACTIONS(2522), + [aux_sym_cmd_identifier_token7] = ACTIONS(2522), + [aux_sym_cmd_identifier_token8] = ACTIONS(2520), + [aux_sym_cmd_identifier_token9] = ACTIONS(2520), + [aux_sym_cmd_identifier_token10] = ACTIONS(2522), + [aux_sym_cmd_identifier_token11] = ACTIONS(2522), + [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(2522), + [aux_sym_cmd_identifier_token17] = ACTIONS(2522), + [aux_sym_cmd_identifier_token18] = ACTIONS(2522), + [aux_sym_cmd_identifier_token19] = ACTIONS(2522), + [aux_sym_cmd_identifier_token20] = ACTIONS(2522), + [aux_sym_cmd_identifier_token21] = ACTIONS(2522), + [aux_sym_cmd_identifier_token22] = ACTIONS(2522), + [aux_sym_cmd_identifier_token23] = ACTIONS(2522), + [aux_sym_cmd_identifier_token24] = ACTIONS(2522), + [aux_sym_cmd_identifier_token25] = ACTIONS(2522), + [aux_sym_cmd_identifier_token26] = ACTIONS(2522), + [aux_sym_cmd_identifier_token27] = ACTIONS(2522), + [aux_sym_cmd_identifier_token28] = ACTIONS(2522), + [aux_sym_cmd_identifier_token29] = ACTIONS(2522), + [aux_sym_cmd_identifier_token30] = ACTIONS(2522), + [aux_sym_cmd_identifier_token31] = ACTIONS(2522), + [aux_sym_cmd_identifier_token32] = ACTIONS(2522), + [aux_sym_cmd_identifier_token33] = ACTIONS(2522), + [aux_sym_cmd_identifier_token34] = ACTIONS(2520), + [aux_sym_cmd_identifier_token35] = ACTIONS(2522), + [aux_sym_cmd_identifier_token36] = ACTIONS(2522), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in2] = 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_as] = ACTIONS(2520), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2520), + [aux_sym__val_number_token5] = ACTIONS(2520), + [aux_sym__val_number_token6] = ACTIONS(2520), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2522), }, [709] = { [sym_comment] = STATE(709), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2491), - [aux_sym_cmd_identifier_token4] = ACTIONS(2491), - [aux_sym_cmd_identifier_token5] = ACTIONS(2491), - [aux_sym_cmd_identifier_token6] = ACTIONS(2491), - [aux_sym_cmd_identifier_token7] = ACTIONS(2491), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2491), - [aux_sym_cmd_identifier_token11] = ACTIONS(2491), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2491), - [aux_sym_cmd_identifier_token17] = ACTIONS(2491), - [aux_sym_cmd_identifier_token18] = ACTIONS(2491), - [aux_sym_cmd_identifier_token19] = ACTIONS(2491), - [aux_sym_cmd_identifier_token20] = ACTIONS(2491), - [aux_sym_cmd_identifier_token21] = ACTIONS(2491), - [aux_sym_cmd_identifier_token22] = ACTIONS(2491), - [aux_sym_cmd_identifier_token23] = ACTIONS(2491), - [aux_sym_cmd_identifier_token24] = ACTIONS(2491), - [aux_sym_cmd_identifier_token25] = ACTIONS(2491), - [aux_sym_cmd_identifier_token26] = ACTIONS(2491), - [aux_sym_cmd_identifier_token27] = ACTIONS(2491), - [aux_sym_cmd_identifier_token28] = ACTIONS(2491), - [aux_sym_cmd_identifier_token29] = ACTIONS(2491), - [aux_sym_cmd_identifier_token30] = ACTIONS(2491), - [aux_sym_cmd_identifier_token31] = ACTIONS(2491), - [aux_sym_cmd_identifier_token32] = ACTIONS(2491), - [aux_sym_cmd_identifier_token33] = ACTIONS(2491), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2491), - [aux_sym_cmd_identifier_token36] = ACTIONS(2491), - [aux_sym_cmd_identifier_token37] = ACTIONS(2491), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2491), - [aux_sym_cmd_identifier_token40] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_DASH2] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in2] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_PLUS2] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2491), - [aux_sym__val_number_decimal_token3] = ACTIONS(2491), - [aux_sym__val_number_decimal_token4] = ACTIONS(2491), - [aux_sym__val_number_token1] = ACTIONS(2491), - [aux_sym__val_number_token2] = ACTIONS(2491), - [aux_sym__val_number_token3] = ACTIONS(2491), - [aux_sym__val_number_token4] = ACTIONS(2489), - [aux_sym__val_number_token5] = ACTIONS(2489), - [aux_sym__val_number_token6] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2491), - [sym__str_single_quotes] = ACTIONS(2491), - [sym__str_back_ticks] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2491), + [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(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(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2078), + [aux_sym_cmd_identifier_token11] = ACTIONS(2078), + [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(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(2072), + [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(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2078), + [aux_sym_cmd_identifier_token40] = ACTIONS(2078), + [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(2078), + [anon_sym_DOLLAR] = ACTIONS(2078), + [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(2078), + [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(2078), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [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(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), }, [710] = { [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2493), - [aux_sym_cmd_identifier_token2] = ACTIONS(2495), - [aux_sym_cmd_identifier_token3] = ACTIONS(2495), - [aux_sym_cmd_identifier_token4] = ACTIONS(2495), - [aux_sym_cmd_identifier_token5] = ACTIONS(2495), - [aux_sym_cmd_identifier_token6] = ACTIONS(2495), - [aux_sym_cmd_identifier_token7] = ACTIONS(2495), - [aux_sym_cmd_identifier_token8] = ACTIONS(2493), - [aux_sym_cmd_identifier_token9] = ACTIONS(2493), - [aux_sym_cmd_identifier_token10] = ACTIONS(2495), - [aux_sym_cmd_identifier_token11] = ACTIONS(2495), - [aux_sym_cmd_identifier_token12] = ACTIONS(2493), - [aux_sym_cmd_identifier_token13] = ACTIONS(2493), - [aux_sym_cmd_identifier_token14] = ACTIONS(2493), - [aux_sym_cmd_identifier_token15] = ACTIONS(2493), - [aux_sym_cmd_identifier_token16] = ACTIONS(2495), - [aux_sym_cmd_identifier_token17] = ACTIONS(2495), - [aux_sym_cmd_identifier_token18] = ACTIONS(2495), - [aux_sym_cmd_identifier_token19] = ACTIONS(2495), - [aux_sym_cmd_identifier_token20] = ACTIONS(2495), - [aux_sym_cmd_identifier_token21] = ACTIONS(2495), - [aux_sym_cmd_identifier_token22] = ACTIONS(2495), - [aux_sym_cmd_identifier_token23] = ACTIONS(2495), - [aux_sym_cmd_identifier_token24] = ACTIONS(2495), - [aux_sym_cmd_identifier_token25] = ACTIONS(2495), - [aux_sym_cmd_identifier_token26] = ACTIONS(2495), - [aux_sym_cmd_identifier_token27] = ACTIONS(2495), - [aux_sym_cmd_identifier_token28] = ACTIONS(2495), - [aux_sym_cmd_identifier_token29] = ACTIONS(2495), - [aux_sym_cmd_identifier_token30] = ACTIONS(2495), - [aux_sym_cmd_identifier_token31] = ACTIONS(2495), - [aux_sym_cmd_identifier_token32] = ACTIONS(2495), - [aux_sym_cmd_identifier_token33] = ACTIONS(2495), - [aux_sym_cmd_identifier_token34] = ACTIONS(2493), - [aux_sym_cmd_identifier_token35] = ACTIONS(2495), - [aux_sym_cmd_identifier_token36] = ACTIONS(2495), - [aux_sym_cmd_identifier_token37] = ACTIONS(2495), - [aux_sym_cmd_identifier_token38] = ACTIONS(2493), - [aux_sym_cmd_identifier_token39] = ACTIONS(2495), - [aux_sym_cmd_identifier_token40] = ACTIONS(2495), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_DOLLAR] = ACTIONS(2495), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_DASH2] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_in2] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_make] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2493), - [anon_sym_PLUS2] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2495), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2495), - [aux_sym__val_number_decimal_token1] = ACTIONS(2493), - [aux_sym__val_number_decimal_token2] = ACTIONS(2495), - [aux_sym__val_number_decimal_token3] = ACTIONS(2495), - [aux_sym__val_number_decimal_token4] = ACTIONS(2495), - [aux_sym__val_number_token1] = ACTIONS(2495), - [aux_sym__val_number_token2] = ACTIONS(2495), - [aux_sym__val_number_token3] = ACTIONS(2495), - [aux_sym__val_number_token4] = ACTIONS(2493), - [aux_sym__val_number_token5] = ACTIONS(2493), - [aux_sym__val_number_token6] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2495), - [sym__str_single_quotes] = ACTIONS(2495), - [sym__str_back_ticks] = ACTIONS(2495), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2495), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2495), + [anon_sym_export] = ACTIONS(1000), + [anon_sym_alias] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_let_DASHenv] = ACTIONS(1000), + [anon_sym_mut] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [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(1000), + [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1000), + [aux_sym_cmd_identifier_token13] = ACTIONS(1000), + [aux_sym_cmd_identifier_token14] = ACTIONS(1000), + [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [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(1000), + [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(1000), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1000), + [anon_sym_export_DASHenv] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_use] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_loop] = ACTIONS(1000), + [anon_sym_make] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_catch] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_source] = ACTIONS(1000), + [anon_sym_source_DASHenv] = ACTIONS(1000), + [anon_sym_register] = ACTIONS(1000), + [anon_sym_hide] = ACTIONS(1000), + [anon_sym_hide_DASHenv] = ACTIONS(1000), + [anon_sym_overlay] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1002), }, [711] = { [sym_comment] = STATE(711), - [anon_sym_export] = ACTIONS(1695), - [anon_sym_alias] = ACTIONS(1695), - [anon_sym_let] = ACTIONS(1695), - [anon_sym_let_DASHenv] = ACTIONS(1695), - [anon_sym_mut] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [aux_sym_cmd_identifier_token1] = ACTIONS(1695), - [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(1695), - [aux_sym_cmd_identifier_token9] = ACTIONS(1695), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1695), - [aux_sym_cmd_identifier_token13] = ACTIONS(1695), - [aux_sym_cmd_identifier_token14] = ACTIONS(1695), - [aux_sym_cmd_identifier_token15] = ACTIONS(1695), - [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(1695), - [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(1695), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1695), - [anon_sym_export_DASHenv] = ACTIONS(1695), - [anon_sym_extern] = ACTIONS(1695), - [anon_sym_module] = ACTIONS(1695), - [anon_sym_use] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1707), - [anon_sym_error] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_loop] = ACTIONS(1695), - [anon_sym_make] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_else] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_catch] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_source] = ACTIONS(1695), - [anon_sym_source_DASHenv] = ACTIONS(1695), - [anon_sym_register] = ACTIONS(1695), - [anon_sym_hide] = ACTIONS(1695), - [anon_sym_hide_DASHenv] = ACTIONS(1695), - [anon_sym_overlay] = ACTIONS(1695), - [anon_sym_as] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1695), - [aux_sym__val_number_token5] = ACTIONS(1695), - [aux_sym__val_number_token6] = ACTIONS(1695), - [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(251), - [sym_raw_string_begin] = ACTIONS(1707), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [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(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1006), + [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [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(1004), + [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(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1006), + [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [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(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1006), }, [712] = { [sym_comment] = STATE(712), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2499), - [aux_sym_cmd_identifier_token3] = ACTIONS(2499), - [aux_sym_cmd_identifier_token4] = ACTIONS(2499), - [aux_sym_cmd_identifier_token5] = ACTIONS(2499), - [aux_sym_cmd_identifier_token6] = ACTIONS(2499), - [aux_sym_cmd_identifier_token7] = ACTIONS(2499), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2499), - [aux_sym_cmd_identifier_token11] = ACTIONS(2499), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2499), - [aux_sym_cmd_identifier_token17] = ACTIONS(2499), - [aux_sym_cmd_identifier_token18] = ACTIONS(2499), - [aux_sym_cmd_identifier_token19] = ACTIONS(2499), - [aux_sym_cmd_identifier_token20] = ACTIONS(2499), - [aux_sym_cmd_identifier_token21] = ACTIONS(2499), - [aux_sym_cmd_identifier_token22] = ACTIONS(2499), - [aux_sym_cmd_identifier_token23] = ACTIONS(2499), - [aux_sym_cmd_identifier_token24] = ACTIONS(2499), - [aux_sym_cmd_identifier_token25] = ACTIONS(2499), - [aux_sym_cmd_identifier_token26] = ACTIONS(2499), - [aux_sym_cmd_identifier_token27] = ACTIONS(2499), - [aux_sym_cmd_identifier_token28] = ACTIONS(2499), - [aux_sym_cmd_identifier_token29] = ACTIONS(2499), - [aux_sym_cmd_identifier_token30] = ACTIONS(2499), - [aux_sym_cmd_identifier_token31] = ACTIONS(2499), - [aux_sym_cmd_identifier_token32] = ACTIONS(2499), - [aux_sym_cmd_identifier_token33] = ACTIONS(2499), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2499), - [aux_sym_cmd_identifier_token36] = ACTIONS(2499), - [aux_sym_cmd_identifier_token37] = ACTIONS(2499), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2499), - [aux_sym_cmd_identifier_token40] = ACTIONS(2499), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_DASH2] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in2] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_PLUS2] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2499), - [aux_sym__val_number_decimal_token3] = ACTIONS(2499), - [aux_sym__val_number_decimal_token4] = ACTIONS(2499), - [aux_sym__val_number_token1] = ACTIONS(2499), - [aux_sym__val_number_token2] = ACTIONS(2499), - [aux_sym__val_number_token3] = ACTIONS(2499), - [aux_sym__val_number_token4] = ACTIONS(2497), - [aux_sym__val_number_token5] = ACTIONS(2497), - [aux_sym__val_number_token6] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2499), + [anon_sym_export] = ACTIONS(996), + [anon_sym_alias] = ACTIONS(996), + [anon_sym_let] = ACTIONS(996), + [anon_sym_let_DASHenv] = ACTIONS(996), + [anon_sym_mut] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [aux_sym_cmd_identifier_token1] = ACTIONS(996), + [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(996), + [aux_sym_cmd_identifier_token9] = ACTIONS(996), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(996), + [aux_sym_cmd_identifier_token13] = ACTIONS(996), + [aux_sym_cmd_identifier_token14] = ACTIONS(996), + [aux_sym_cmd_identifier_token15] = ACTIONS(996), + [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(996), + [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(996), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(996), + [anon_sym_export_DASHenv] = ACTIONS(996), + [anon_sym_extern] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_use] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_loop] = ACTIONS(996), + [anon_sym_make] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(996), + [anon_sym_catch] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_source] = ACTIONS(996), + [anon_sym_source_DASHenv] = ACTIONS(996), + [anon_sym_register] = ACTIONS(996), + [anon_sym_hide] = ACTIONS(996), + [anon_sym_hide_DASHenv] = ACTIONS(996), + [anon_sym_overlay] = ACTIONS(996), + [anon_sym_as] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(996), + [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(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(998), }, [713] = { [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2503), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), - [aux_sym_cmd_identifier_token6] = ACTIONS(2503), - [aux_sym_cmd_identifier_token7] = ACTIONS(2503), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2503), - [aux_sym_cmd_identifier_token11] = ACTIONS(2503), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2503), - [aux_sym_cmd_identifier_token17] = ACTIONS(2503), - [aux_sym_cmd_identifier_token18] = ACTIONS(2503), - [aux_sym_cmd_identifier_token19] = ACTIONS(2503), - [aux_sym_cmd_identifier_token20] = ACTIONS(2503), - [aux_sym_cmd_identifier_token21] = ACTIONS(2503), - [aux_sym_cmd_identifier_token22] = ACTIONS(2503), - [aux_sym_cmd_identifier_token23] = ACTIONS(2503), - [aux_sym_cmd_identifier_token24] = ACTIONS(2503), - [aux_sym_cmd_identifier_token25] = ACTIONS(2503), - [aux_sym_cmd_identifier_token26] = ACTIONS(2503), - [aux_sym_cmd_identifier_token27] = ACTIONS(2503), - [aux_sym_cmd_identifier_token28] = ACTIONS(2503), - [aux_sym_cmd_identifier_token29] = ACTIONS(2503), - [aux_sym_cmd_identifier_token30] = ACTIONS(2503), - [aux_sym_cmd_identifier_token31] = ACTIONS(2503), - [aux_sym_cmd_identifier_token32] = ACTIONS(2503), - [aux_sym_cmd_identifier_token33] = ACTIONS(2503), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2503), - [aux_sym_cmd_identifier_token36] = ACTIONS(2503), - [aux_sym_cmd_identifier_token37] = ACTIONS(2503), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2503), - [aux_sym_cmd_identifier_token40] = ACTIONS(2503), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in2] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2503), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [aux_sym__val_number_token1] = ACTIONS(2503), - [aux_sym__val_number_token2] = ACTIONS(2503), - [aux_sym__val_number_token3] = ACTIONS(2503), - [aux_sym__val_number_token4] = ACTIONS(2501), - [aux_sym__val_number_token5] = ACTIONS(2501), - [aux_sym__val_number_token6] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym__str_single_quotes] = ACTIONS(2503), - [sym__str_back_ticks] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2503), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [aux_sym_cmd_identifier_token2] = ACTIONS(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [aux_sym_cmd_identifier_token16] = ACTIONS(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(986), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_register] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(988), }, [714] = { [sym_comment] = STATE(714), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_alias] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_let_DASHenv] = ACTIONS(2457), - [anon_sym_mut] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [aux_sym_cmd_identifier_token1] = ACTIONS(2457), - [aux_sym_cmd_identifier_token2] = ACTIONS(2459), - [aux_sym_cmd_identifier_token3] = ACTIONS(2459), - [aux_sym_cmd_identifier_token4] = ACTIONS(2459), - [aux_sym_cmd_identifier_token5] = ACTIONS(2459), - [aux_sym_cmd_identifier_token6] = ACTIONS(2459), - [aux_sym_cmd_identifier_token7] = ACTIONS(2459), - [aux_sym_cmd_identifier_token8] = ACTIONS(2457), - [aux_sym_cmd_identifier_token9] = ACTIONS(2457), - [aux_sym_cmd_identifier_token10] = ACTIONS(2459), - [aux_sym_cmd_identifier_token11] = ACTIONS(2459), - [aux_sym_cmd_identifier_token12] = ACTIONS(2457), - [aux_sym_cmd_identifier_token13] = ACTIONS(2457), - [aux_sym_cmd_identifier_token14] = ACTIONS(2457), - [aux_sym_cmd_identifier_token15] = ACTIONS(2457), - [aux_sym_cmd_identifier_token16] = ACTIONS(2459), - [aux_sym_cmd_identifier_token17] = ACTIONS(2459), - [aux_sym_cmd_identifier_token18] = ACTIONS(2459), - [aux_sym_cmd_identifier_token19] = ACTIONS(2459), - [aux_sym_cmd_identifier_token20] = ACTIONS(2459), - [aux_sym_cmd_identifier_token21] = ACTIONS(2459), - [aux_sym_cmd_identifier_token22] = ACTIONS(2459), - [aux_sym_cmd_identifier_token23] = ACTIONS(2459), - [aux_sym_cmd_identifier_token24] = ACTIONS(2459), - [aux_sym_cmd_identifier_token25] = ACTIONS(2459), - [aux_sym_cmd_identifier_token26] = ACTIONS(2459), - [aux_sym_cmd_identifier_token27] = ACTIONS(2459), - [aux_sym_cmd_identifier_token28] = ACTIONS(2459), - [aux_sym_cmd_identifier_token29] = ACTIONS(2459), - [aux_sym_cmd_identifier_token30] = ACTIONS(2459), - [aux_sym_cmd_identifier_token31] = ACTIONS(2459), - [aux_sym_cmd_identifier_token32] = ACTIONS(2459), - [aux_sym_cmd_identifier_token33] = ACTIONS(2459), - [aux_sym_cmd_identifier_token34] = ACTIONS(2457), - [aux_sym_cmd_identifier_token35] = ACTIONS(2459), - [aux_sym_cmd_identifier_token36] = ACTIONS(2459), - [aux_sym_cmd_identifier_token37] = ACTIONS(2459), - [aux_sym_cmd_identifier_token38] = ACTIONS(2457), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [anon_sym_def] = ACTIONS(2457), - [anon_sym_export_DASHenv] = ACTIONS(2457), - [anon_sym_extern] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_error] = ACTIONS(2457), - [anon_sym_DASH2] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_in2] = ACTIONS(2457), - [anon_sym_loop] = ACTIONS(2457), - [anon_sym_make] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_catch] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_source] = ACTIONS(2457), - [anon_sym_source_DASHenv] = ACTIONS(2457), - [anon_sym_register] = ACTIONS(2457), - [anon_sym_hide] = ACTIONS(2457), - [anon_sym_hide_DASHenv] = ACTIONS(2457), - [anon_sym_overlay] = ACTIONS(2457), - [anon_sym_as] = ACTIONS(2457), - [anon_sym_PLUS2] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), - [aux_sym__val_number_decimal_token1] = ACTIONS(2457), - [aux_sym__val_number_decimal_token2] = ACTIONS(2459), - [aux_sym__val_number_decimal_token3] = ACTIONS(2459), - [aux_sym__val_number_decimal_token4] = ACTIONS(2459), - [aux_sym__val_number_token1] = ACTIONS(2459), - [aux_sym__val_number_token2] = ACTIONS(2459), - [aux_sym__val_number_token3] = ACTIONS(2459), - [aux_sym__val_number_token4] = ACTIONS(2457), - [aux_sym__val_number_token5] = ACTIONS(2457), - [aux_sym__val_number_token6] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2459), - [sym__str_single_quotes] = ACTIONS(2459), - [sym__str_back_ticks] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2459), + [anon_sym_export] = ACTIONS(1779), + [anon_sym_alias] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_let_DASHenv] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [aux_sym_cmd_identifier_token1] = ACTIONS(1779), + [aux_sym_cmd_identifier_token2] = ACTIONS(1781), + [aux_sym_cmd_identifier_token3] = ACTIONS(1781), + [aux_sym_cmd_identifier_token4] = ACTIONS(1781), + [aux_sym_cmd_identifier_token5] = ACTIONS(1781), + [aux_sym_cmd_identifier_token6] = ACTIONS(1781), + [aux_sym_cmd_identifier_token7] = ACTIONS(1781), + [aux_sym_cmd_identifier_token8] = ACTIONS(1779), + [aux_sym_cmd_identifier_token9] = ACTIONS(1779), + [aux_sym_cmd_identifier_token10] = ACTIONS(1781), + [aux_sym_cmd_identifier_token11] = ACTIONS(1781), + [aux_sym_cmd_identifier_token12] = ACTIONS(1779), + [aux_sym_cmd_identifier_token13] = ACTIONS(1779), + [aux_sym_cmd_identifier_token14] = ACTIONS(1779), + [aux_sym_cmd_identifier_token15] = ACTIONS(1779), + [aux_sym_cmd_identifier_token16] = ACTIONS(1781), + [aux_sym_cmd_identifier_token17] = ACTIONS(1781), + [aux_sym_cmd_identifier_token18] = ACTIONS(1781), + [aux_sym_cmd_identifier_token19] = ACTIONS(1781), + [aux_sym_cmd_identifier_token20] = ACTIONS(1781), + [aux_sym_cmd_identifier_token21] = ACTIONS(1781), + [aux_sym_cmd_identifier_token22] = ACTIONS(1781), + [aux_sym_cmd_identifier_token23] = ACTIONS(1781), + [aux_sym_cmd_identifier_token24] = ACTIONS(1781), + [aux_sym_cmd_identifier_token25] = ACTIONS(1781), + [aux_sym_cmd_identifier_token26] = ACTIONS(1781), + [aux_sym_cmd_identifier_token27] = ACTIONS(1781), + [aux_sym_cmd_identifier_token28] = ACTIONS(1781), + [aux_sym_cmd_identifier_token29] = ACTIONS(1781), + [aux_sym_cmd_identifier_token30] = ACTIONS(1781), + [aux_sym_cmd_identifier_token31] = ACTIONS(1781), + [aux_sym_cmd_identifier_token32] = ACTIONS(1781), + [aux_sym_cmd_identifier_token33] = ACTIONS(1781), + [aux_sym_cmd_identifier_token34] = ACTIONS(1779), + [aux_sym_cmd_identifier_token35] = ACTIONS(1781), + [aux_sym_cmd_identifier_token36] = ACTIONS(1781), + [aux_sym_cmd_identifier_token37] = ACTIONS(1781), + [aux_sym_cmd_identifier_token38] = ACTIONS(1779), + [aux_sym_cmd_identifier_token39] = ACTIONS(1781), + [aux_sym_cmd_identifier_token40] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_export_DASHenv] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_module] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_in2] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_make] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_source] = ACTIONS(1779), + [anon_sym_source_DASHenv] = ACTIONS(1779), + [anon_sym_register] = ACTIONS(1779), + [anon_sym_hide] = ACTIONS(1779), + [anon_sym_hide_DASHenv] = ACTIONS(1779), + [anon_sym_overlay] = ACTIONS(1779), + [anon_sym_as] = ACTIONS(1779), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1779), + [aux_sym__val_number_token5] = ACTIONS(1779), + [aux_sym__val_number_token6] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, [715] = { [sym_comment] = STATE(715), - [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(1899), - [aux_sym_cmd_identifier_token3] = ACTIONS(1899), - [aux_sym_cmd_identifier_token4] = ACTIONS(1899), - [aux_sym_cmd_identifier_token5] = ACTIONS(1899), - [aux_sym_cmd_identifier_token6] = ACTIONS(1899), - [aux_sym_cmd_identifier_token7] = ACTIONS(1899), - [aux_sym_cmd_identifier_token8] = ACTIONS(1897), - [aux_sym_cmd_identifier_token9] = ACTIONS(1897), - [aux_sym_cmd_identifier_token10] = ACTIONS(1899), - [aux_sym_cmd_identifier_token11] = ACTIONS(1899), - [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(1899), - [aux_sym_cmd_identifier_token17] = ACTIONS(1899), - [aux_sym_cmd_identifier_token18] = ACTIONS(1899), - [aux_sym_cmd_identifier_token19] = ACTIONS(1899), - [aux_sym_cmd_identifier_token20] = ACTIONS(1899), - [aux_sym_cmd_identifier_token21] = ACTIONS(1899), - [aux_sym_cmd_identifier_token22] = ACTIONS(1899), - [aux_sym_cmd_identifier_token23] = ACTIONS(1899), - [aux_sym_cmd_identifier_token24] = ACTIONS(1899), - [aux_sym_cmd_identifier_token25] = ACTIONS(1899), - [aux_sym_cmd_identifier_token26] = ACTIONS(1899), - [aux_sym_cmd_identifier_token27] = ACTIONS(1899), - [aux_sym_cmd_identifier_token28] = ACTIONS(1899), - [aux_sym_cmd_identifier_token29] = ACTIONS(1899), - [aux_sym_cmd_identifier_token30] = ACTIONS(1899), - [aux_sym_cmd_identifier_token31] = ACTIONS(1899), - [aux_sym_cmd_identifier_token32] = ACTIONS(1899), - [aux_sym_cmd_identifier_token33] = ACTIONS(1899), - [aux_sym_cmd_identifier_token34] = ACTIONS(1897), - [aux_sym_cmd_identifier_token35] = ACTIONS(1899), - [aux_sym_cmd_identifier_token36] = ACTIONS(1899), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_in2] = 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_as] = ACTIONS(1897), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = ACTIONS(1897), - [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_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1899), + [anon_sym_export] = ACTIONS(1304), + [anon_sym_alias] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_let_DASHenv] = ACTIONS(1304), + [anon_sym_mut] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [aux_sym_cmd_identifier_token1] = ACTIONS(1304), + [aux_sym_cmd_identifier_token2] = ACTIONS(1302), + [aux_sym_cmd_identifier_token3] = ACTIONS(1302), + [aux_sym_cmd_identifier_token4] = ACTIONS(1302), + [aux_sym_cmd_identifier_token5] = ACTIONS(1302), + [aux_sym_cmd_identifier_token6] = ACTIONS(1302), + [aux_sym_cmd_identifier_token7] = ACTIONS(1302), + [aux_sym_cmd_identifier_token8] = ACTIONS(1304), + [aux_sym_cmd_identifier_token9] = ACTIONS(1304), + [aux_sym_cmd_identifier_token10] = ACTIONS(1302), + [aux_sym_cmd_identifier_token11] = ACTIONS(1302), + [aux_sym_cmd_identifier_token12] = ACTIONS(1304), + [aux_sym_cmd_identifier_token13] = ACTIONS(1304), + [aux_sym_cmd_identifier_token14] = ACTIONS(1304), + [aux_sym_cmd_identifier_token15] = ACTIONS(1304), + [aux_sym_cmd_identifier_token16] = ACTIONS(1302), + [aux_sym_cmd_identifier_token17] = ACTIONS(1302), + [aux_sym_cmd_identifier_token18] = ACTIONS(1302), + [aux_sym_cmd_identifier_token19] = ACTIONS(1302), + [aux_sym_cmd_identifier_token20] = ACTIONS(1302), + [aux_sym_cmd_identifier_token21] = ACTIONS(1302), + [aux_sym_cmd_identifier_token22] = ACTIONS(1302), + [aux_sym_cmd_identifier_token23] = ACTIONS(1302), + [aux_sym_cmd_identifier_token24] = ACTIONS(1302), + [aux_sym_cmd_identifier_token25] = ACTIONS(1302), + [aux_sym_cmd_identifier_token26] = ACTIONS(1302), + [aux_sym_cmd_identifier_token27] = ACTIONS(1302), + [aux_sym_cmd_identifier_token28] = ACTIONS(1302), + [aux_sym_cmd_identifier_token29] = ACTIONS(1302), + [aux_sym_cmd_identifier_token30] = ACTIONS(1302), + [aux_sym_cmd_identifier_token31] = ACTIONS(1302), + [aux_sym_cmd_identifier_token32] = ACTIONS(1302), + [aux_sym_cmd_identifier_token33] = ACTIONS(1302), + [aux_sym_cmd_identifier_token34] = ACTIONS(1304), + [aux_sym_cmd_identifier_token35] = ACTIONS(1302), + [aux_sym_cmd_identifier_token36] = ACTIONS(1302), + [aux_sym_cmd_identifier_token37] = ACTIONS(1302), + [aux_sym_cmd_identifier_token38] = ACTIONS(1304), + [aux_sym_cmd_identifier_token39] = ACTIONS(1302), + [aux_sym_cmd_identifier_token40] = ACTIONS(1302), + [sym__newline] = ACTIONS(1302), + [anon_sym_def] = ACTIONS(1304), + [anon_sym_export_DASHenv] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_module] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1302), + [anon_sym_error] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_in2] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_make] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(1304), + [anon_sym_catch] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_source] = ACTIONS(1304), + [anon_sym_source_DASHenv] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_hide] = ACTIONS(1304), + [anon_sym_hide_DASHenv] = ACTIONS(1304), + [anon_sym_overlay] = ACTIONS(1304), + [anon_sym_as] = ACTIONS(1304), + [anon_sym_PLUS2] = ACTIONS(1304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1302), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1302), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(1302), + [aux_sym__val_number_token2] = ACTIONS(1302), + [aux_sym__val_number_token3] = ACTIONS(1302), + [aux_sym__val_number_token4] = ACTIONS(1304), + [aux_sym__val_number_token5] = ACTIONS(1304), + [aux_sym__val_number_token6] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym__str_single_quotes] = ACTIONS(1302), + [sym__str_back_ticks] = ACTIONS(1302), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1302), }, [716] = { [sym_comment] = STATE(716), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_alias] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_DASHenv] = ACTIONS(2365), - [anon_sym_mut] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [aux_sym_cmd_identifier_token1] = ACTIONS(2365), - [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(2365), - [aux_sym_cmd_identifier_token9] = ACTIONS(2365), - [aux_sym_cmd_identifier_token10] = ACTIONS(2367), - [aux_sym_cmd_identifier_token11] = ACTIONS(2367), - [aux_sym_cmd_identifier_token12] = ACTIONS(2365), - [aux_sym_cmd_identifier_token13] = ACTIONS(2365), - [aux_sym_cmd_identifier_token14] = ACTIONS(2365), - [aux_sym_cmd_identifier_token15] = ACTIONS(2365), - [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(2365), - [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(2365), - [aux_sym_cmd_identifier_token39] = ACTIONS(2367), - [aux_sym_cmd_identifier_token40] = ACTIONS(2367), - [anon_sym_def] = ACTIONS(2365), - [anon_sym_export_DASHenv] = ACTIONS(2365), - [anon_sym_extern] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2365), - [anon_sym_DASH2] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_in2] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_make] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_catch] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_source] = ACTIONS(2365), - [anon_sym_source_DASHenv] = ACTIONS(2365), - [anon_sym_register] = ACTIONS(2365), - [anon_sym_hide] = ACTIONS(2365), - [anon_sym_hide_DASHenv] = ACTIONS(2365), - [anon_sym_overlay] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_PLUS2] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [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(2365), - [aux_sym__val_number_token5] = ACTIONS(2365), - [aux_sym__val_number_token6] = ACTIONS(2365), - [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), + [anon_sym_export] = ACTIONS(2435), + [anon_sym_alias] = ACTIONS(2435), + [anon_sym_let] = ACTIONS(2435), + [anon_sym_let_DASHenv] = ACTIONS(2435), + [anon_sym_mut] = ACTIONS(2435), + [anon_sym_const] = ACTIONS(2435), + [aux_sym_cmd_identifier_token1] = ACTIONS(2435), + [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(2435), + [aux_sym_cmd_identifier_token9] = ACTIONS(2435), + [aux_sym_cmd_identifier_token10] = ACTIONS(2437), + [aux_sym_cmd_identifier_token11] = ACTIONS(2437), + [aux_sym_cmd_identifier_token12] = ACTIONS(2435), + [aux_sym_cmd_identifier_token13] = ACTIONS(2435), + [aux_sym_cmd_identifier_token14] = ACTIONS(2435), + [aux_sym_cmd_identifier_token15] = ACTIONS(2435), + [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(2435), + [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(2435), + [aux_sym_cmd_identifier_token39] = ACTIONS(2437), + [aux_sym_cmd_identifier_token40] = ACTIONS(2437), + [anon_sym_def] = ACTIONS(2435), + [anon_sym_export_DASHenv] = ACTIONS(2435), + [anon_sym_extern] = ACTIONS(2435), + [anon_sym_module] = ACTIONS(2435), + [anon_sym_use] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_error] = ACTIONS(2435), + [anon_sym_DASH2] = ACTIONS(2435), + [anon_sym_break] = ACTIONS(2435), + [anon_sym_continue] = ACTIONS(2435), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_in2] = ACTIONS(2435), + [anon_sym_loop] = ACTIONS(2435), + [anon_sym_make] = ACTIONS(2435), + [anon_sym_while] = ACTIONS(2435), + [anon_sym_do] = ACTIONS(2435), + [anon_sym_if] = ACTIONS(2435), + [anon_sym_else] = ACTIONS(2435), + [anon_sym_match] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2435), + [anon_sym_catch] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(2435), + [anon_sym_source] = ACTIONS(2435), + [anon_sym_source_DASHenv] = ACTIONS(2435), + [anon_sym_register] = ACTIONS(2435), + [anon_sym_hide] = ACTIONS(2435), + [anon_sym_hide_DASHenv] = ACTIONS(2435), + [anon_sym_overlay] = ACTIONS(2435), + [anon_sym_as] = ACTIONS(2435), + [anon_sym_PLUS2] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2435), + [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(2435), + [aux_sym__val_number_token5] = ACTIONS(2435), + [aux_sym__val_number_token6] = ACTIONS(2435), + [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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2367), + [sym_raw_string_begin] = ACTIONS(2437), }, [717] = { + [aux_sym__pipe_separator] = STATE(717), [sym_comment] = STATE(717), - [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(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(2347), - [aux_sym_cmd_identifier_token9] = ACTIONS(2347), - [aux_sym_cmd_identifier_token10] = ACTIONS(2351), - [aux_sym_cmd_identifier_token11] = ACTIONS(2351), - [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(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(2347), - [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(2347), - [aux_sym_cmd_identifier_token39] = ACTIONS(2351), - [aux_sym_cmd_identifier_token40] = ACTIONS(2351), - [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(2351), - [anon_sym_DOLLAR] = ACTIONS(2351), - [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(2351), - [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(2351), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2351), - [aux_sym__val_number_decimal_token1] = ACTIONS(2347), - [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(2347), - [aux_sym__val_number_token5] = ACTIONS(2347), - [aux_sym__val_number_token6] = ACTIONS(2347), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2351), + [aux_sym_shebang_repeat1] = STATE(5492), + [aux_sym_cmd_identifier_token1] = ACTIONS(2536), + [aux_sym_cmd_identifier_token2] = ACTIONS(2538), + [aux_sym_cmd_identifier_token3] = ACTIONS(2538), + [aux_sym_cmd_identifier_token4] = ACTIONS(2538), + [aux_sym_cmd_identifier_token5] = ACTIONS(2538), + [aux_sym_cmd_identifier_token6] = ACTIONS(2538), + [aux_sym_cmd_identifier_token7] = ACTIONS(2538), + [aux_sym_cmd_identifier_token8] = ACTIONS(2538), + [aux_sym_cmd_identifier_token9] = ACTIONS(2536), + [aux_sym_cmd_identifier_token10] = ACTIONS(2538), + [aux_sym_cmd_identifier_token11] = ACTIONS(2538), + [aux_sym_cmd_identifier_token12] = ACTIONS(2538), + [aux_sym_cmd_identifier_token13] = ACTIONS(2536), + [aux_sym_cmd_identifier_token14] = ACTIONS(2538), + [aux_sym_cmd_identifier_token15] = ACTIONS(2536), + [aux_sym_cmd_identifier_token16] = ACTIONS(2538), + [aux_sym_cmd_identifier_token17] = ACTIONS(2538), + [aux_sym_cmd_identifier_token18] = ACTIONS(2536), + [aux_sym_cmd_identifier_token19] = ACTIONS(2538), + [aux_sym_cmd_identifier_token20] = ACTIONS(2538), + [aux_sym_cmd_identifier_token21] = ACTIONS(2538), + [aux_sym_cmd_identifier_token22] = ACTIONS(2538), + [aux_sym_cmd_identifier_token23] = ACTIONS(2538), + [aux_sym_cmd_identifier_token24] = ACTIONS(2538), + [aux_sym_cmd_identifier_token25] = ACTIONS(2538), + [aux_sym_cmd_identifier_token26] = ACTIONS(2538), + [aux_sym_cmd_identifier_token27] = ACTIONS(2538), + [aux_sym_cmd_identifier_token28] = ACTIONS(2538), + [aux_sym_cmd_identifier_token29] = ACTIONS(2538), + [aux_sym_cmd_identifier_token30] = ACTIONS(2538), + [aux_sym_cmd_identifier_token31] = ACTIONS(2538), + [aux_sym_cmd_identifier_token32] = ACTIONS(2536), + [aux_sym_cmd_identifier_token33] = ACTIONS(2538), + [aux_sym_cmd_identifier_token34] = ACTIONS(2536), + [aux_sym_cmd_identifier_token35] = ACTIONS(2538), + [aux_sym_cmd_identifier_token36] = ACTIONS(2538), + [aux_sym_cmd_identifier_token37] = ACTIONS(2538), + [aux_sym_cmd_identifier_token38] = ACTIONS(2536), + [aux_sym_cmd_identifier_token39] = ACTIONS(2538), + [aux_sym_cmd_identifier_token40] = ACTIONS(2538), + [sym__newline] = ACTIONS(2540), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_err_GT_PIPE] = ACTIONS(2543), + [anon_sym_out_GT_PIPE] = ACTIONS(2543), + [anon_sym_e_GT_PIPE] = ACTIONS(2543), + [anon_sym_o_GT_PIPE] = ACTIONS(2543), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2543), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2543), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2543), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_DOLLAR] = ACTIONS(2536), + [anon_sym_DASH2] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_match] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_where] = ACTIONS(2538), + [aux_sym_expr_unary_token1] = ACTIONS(2538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [anon_sym_null] = ACTIONS(2536), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [aux_sym__val_number_decimal_token1] = ACTIONS(2536), + [aux_sym__val_number_decimal_token2] = ACTIONS(2538), + [aux_sym__val_number_decimal_token3] = ACTIONS(2538), + [aux_sym__val_number_decimal_token4] = ACTIONS(2538), + [aux_sym__val_number_token1] = ACTIONS(2538), + [aux_sym__val_number_token2] = ACTIONS(2538), + [aux_sym__val_number_token3] = ACTIONS(2538), + [aux_sym__val_number_token4] = ACTIONS(2536), + [aux_sym__val_number_token5] = ACTIONS(2536), + [aux_sym__val_number_token6] = ACTIONS(2536), + [anon_sym_0b] = ACTIONS(2536), + [anon_sym_0o] = ACTIONS(2536), + [anon_sym_0x] = ACTIONS(2536), + [sym_val_date] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [sym__str_single_quotes] = ACTIONS(2538), + [sym__str_back_ticks] = ACTIONS(2538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2538), + [aux_sym_env_var_token1] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [aux_sym_command_token1] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2538), }, [718] = { [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [aux_sym_cmd_identifier_token1] = ACTIONS(1801), - [aux_sym_cmd_identifier_token2] = ACTIONS(1803), - [aux_sym_cmd_identifier_token3] = ACTIONS(1803), - [aux_sym_cmd_identifier_token4] = ACTIONS(1803), - [aux_sym_cmd_identifier_token5] = ACTIONS(1803), - [aux_sym_cmd_identifier_token6] = ACTIONS(1803), - [aux_sym_cmd_identifier_token7] = ACTIONS(1803), - [aux_sym_cmd_identifier_token8] = ACTIONS(1801), - [aux_sym_cmd_identifier_token9] = ACTIONS(1801), - [aux_sym_cmd_identifier_token10] = ACTIONS(1803), - [aux_sym_cmd_identifier_token11] = ACTIONS(1803), - [aux_sym_cmd_identifier_token12] = ACTIONS(1801), - [aux_sym_cmd_identifier_token13] = ACTIONS(1801), - [aux_sym_cmd_identifier_token14] = ACTIONS(1801), - [aux_sym_cmd_identifier_token15] = ACTIONS(1801), - [aux_sym_cmd_identifier_token16] = ACTIONS(1803), - [aux_sym_cmd_identifier_token17] = ACTIONS(1803), - [aux_sym_cmd_identifier_token18] = ACTIONS(1803), - [aux_sym_cmd_identifier_token19] = ACTIONS(1803), - [aux_sym_cmd_identifier_token20] = ACTIONS(1803), - [aux_sym_cmd_identifier_token21] = ACTIONS(1803), - [aux_sym_cmd_identifier_token22] = ACTIONS(1803), - [aux_sym_cmd_identifier_token23] = ACTIONS(1803), - [aux_sym_cmd_identifier_token24] = ACTIONS(1803), - [aux_sym_cmd_identifier_token25] = ACTIONS(1803), - [aux_sym_cmd_identifier_token26] = ACTIONS(1803), - [aux_sym_cmd_identifier_token27] = ACTIONS(1803), - [aux_sym_cmd_identifier_token28] = ACTIONS(1803), - [aux_sym_cmd_identifier_token29] = ACTIONS(1803), - [aux_sym_cmd_identifier_token30] = ACTIONS(1803), - [aux_sym_cmd_identifier_token31] = ACTIONS(1803), - [aux_sym_cmd_identifier_token32] = ACTIONS(1803), - [aux_sym_cmd_identifier_token33] = ACTIONS(1803), - [aux_sym_cmd_identifier_token34] = ACTIONS(1801), - [aux_sym_cmd_identifier_token35] = ACTIONS(1803), - [aux_sym_cmd_identifier_token36] = ACTIONS(1803), - [aux_sym_cmd_identifier_token37] = ACTIONS(1803), - [aux_sym_cmd_identifier_token38] = ACTIONS(1801), - [aux_sym_cmd_identifier_token39] = ACTIONS(1803), - [aux_sym_cmd_identifier_token40] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1803), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_make] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_catch] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1803), + [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(251), - [sym_raw_string_begin] = ACTIONS(1803), + [sym_raw_string_begin] = ACTIONS(2397), }, [719] = { [sym_comment] = STATE(719), - [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(251), - [sym_raw_string_begin] = ACTIONS(1915), + [anon_sym_export] = ACTIONS(2423), + [anon_sym_alias] = ACTIONS(2423), + [anon_sym_let] = ACTIONS(2423), + [anon_sym_let_DASHenv] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [aux_sym_cmd_identifier_token1] = ACTIONS(2423), + [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(2423), + [aux_sym_cmd_identifier_token9] = ACTIONS(2423), + [aux_sym_cmd_identifier_token10] = ACTIONS(2425), + [aux_sym_cmd_identifier_token11] = ACTIONS(2425), + [aux_sym_cmd_identifier_token12] = ACTIONS(2423), + [aux_sym_cmd_identifier_token13] = ACTIONS(2423), + [aux_sym_cmd_identifier_token14] = ACTIONS(2423), + [aux_sym_cmd_identifier_token15] = ACTIONS(2423), + [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(2423), + [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(2423), + [aux_sym_cmd_identifier_token39] = ACTIONS(2425), + [aux_sym_cmd_identifier_token40] = ACTIONS(2425), + [anon_sym_def] = ACTIONS(2423), + [anon_sym_export_DASHenv] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_module] = ACTIONS(2423), + [anon_sym_use] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_error] = ACTIONS(2423), + [anon_sym_DASH2] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_in2] = ACTIONS(2423), + [anon_sym_loop] = ACTIONS(2423), + [anon_sym_make] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_do] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_else] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2423), + [anon_sym_catch] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_source] = ACTIONS(2423), + [anon_sym_source_DASHenv] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2423), + [anon_sym_hide] = ACTIONS(2423), + [anon_sym_hide_DASHenv] = ACTIONS(2423), + [anon_sym_overlay] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_PLUS2] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), + [aux_sym__val_number_decimal_token1] = ACTIONS(2423), + [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(2423), + [aux_sym__val_number_token5] = ACTIONS(2423), + [aux_sym__val_number_token6] = ACTIONS(2423), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2425), }, [720] = { [sym_comment] = STATE(720), - [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_export] = ACTIONS(1937), + [anon_sym_alias] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_let_DASHenv] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [aux_sym_cmd_identifier_token1] = ACTIONS(1937), + [aux_sym_cmd_identifier_token2] = ACTIONS(1939), + [aux_sym_cmd_identifier_token3] = ACTIONS(1939), + [aux_sym_cmd_identifier_token4] = ACTIONS(1939), + [aux_sym_cmd_identifier_token5] = ACTIONS(1939), + [aux_sym_cmd_identifier_token6] = ACTIONS(1939), + [aux_sym_cmd_identifier_token7] = ACTIONS(1939), + [aux_sym_cmd_identifier_token8] = ACTIONS(1937), + [aux_sym_cmd_identifier_token9] = ACTIONS(1937), + [aux_sym_cmd_identifier_token10] = ACTIONS(1939), + [aux_sym_cmd_identifier_token11] = ACTIONS(1939), + [aux_sym_cmd_identifier_token12] = ACTIONS(1937), + [aux_sym_cmd_identifier_token13] = ACTIONS(1937), + [aux_sym_cmd_identifier_token14] = ACTIONS(1937), + [aux_sym_cmd_identifier_token15] = ACTIONS(1937), + [aux_sym_cmd_identifier_token16] = ACTIONS(1939), + [aux_sym_cmd_identifier_token17] = ACTIONS(1939), + [aux_sym_cmd_identifier_token18] = ACTIONS(1939), + [aux_sym_cmd_identifier_token19] = ACTIONS(1939), + [aux_sym_cmd_identifier_token20] = ACTIONS(1939), + [aux_sym_cmd_identifier_token21] = ACTIONS(1939), + [aux_sym_cmd_identifier_token22] = ACTIONS(1939), + [aux_sym_cmd_identifier_token23] = ACTIONS(1939), + [aux_sym_cmd_identifier_token24] = ACTIONS(1939), + [aux_sym_cmd_identifier_token25] = ACTIONS(1939), + [aux_sym_cmd_identifier_token26] = ACTIONS(1939), + [aux_sym_cmd_identifier_token27] = ACTIONS(1939), + [aux_sym_cmd_identifier_token28] = ACTIONS(1939), + [aux_sym_cmd_identifier_token29] = ACTIONS(1939), + [aux_sym_cmd_identifier_token30] = ACTIONS(1939), + [aux_sym_cmd_identifier_token31] = ACTIONS(1939), + [aux_sym_cmd_identifier_token32] = ACTIONS(1939), + [aux_sym_cmd_identifier_token33] = ACTIONS(1939), + [aux_sym_cmd_identifier_token34] = ACTIONS(1937), + [aux_sym_cmd_identifier_token35] = ACTIONS(1939), + [aux_sym_cmd_identifier_token36] = ACTIONS(1939), + [aux_sym_cmd_identifier_token37] = ACTIONS(1939), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1939), + [aux_sym_cmd_identifier_token40] = ACTIONS(1939), + [anon_sym_def] = ACTIONS(1937), + [anon_sym_export_DASHenv] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_error] = ACTIONS(1937), + [anon_sym_DASH2] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_in2] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_make] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_else] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1937), + [anon_sym_catch] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_source] = ACTIONS(1937), + [anon_sym_source_DASHenv] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1937), + [anon_sym_hide] = ACTIONS(1937), + [anon_sym_hide_DASHenv] = ACTIONS(1937), + [anon_sym_overlay] = ACTIONS(1937), + [anon_sym_as] = ACTIONS(1937), + [anon_sym_PLUS2] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [aux_sym__val_number_token4] = ACTIONS(1937), + [aux_sym__val_number_token5] = ACTIONS(1937), + [aux_sym__val_number_token6] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2415), + [sym_raw_string_begin] = ACTIONS(1939), }, [721] = { [sym_comment] = STATE(721), - [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(1040), - [aux_sym_cmd_identifier_token3] = ACTIONS(1040), - [aux_sym_cmd_identifier_token4] = ACTIONS(1040), - [aux_sym_cmd_identifier_token5] = ACTIONS(1040), - [aux_sym_cmd_identifier_token6] = ACTIONS(1040), - [aux_sym_cmd_identifier_token7] = ACTIONS(1040), - [aux_sym_cmd_identifier_token8] = ACTIONS(1038), - [aux_sym_cmd_identifier_token9] = ACTIONS(1038), - [aux_sym_cmd_identifier_token10] = ACTIONS(1040), - [aux_sym_cmd_identifier_token11] = ACTIONS(1040), - [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(1040), - [aux_sym_cmd_identifier_token17] = ACTIONS(1040), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1040), - [aux_sym_cmd_identifier_token20] = ACTIONS(1040), - [aux_sym_cmd_identifier_token21] = ACTIONS(1040), - [aux_sym_cmd_identifier_token22] = ACTIONS(1040), - [aux_sym_cmd_identifier_token23] = ACTIONS(1040), - [aux_sym_cmd_identifier_token24] = ACTIONS(1040), - [aux_sym_cmd_identifier_token25] = ACTIONS(1040), - [aux_sym_cmd_identifier_token26] = ACTIONS(1040), - [aux_sym_cmd_identifier_token27] = ACTIONS(1040), - [aux_sym_cmd_identifier_token28] = ACTIONS(1040), - [aux_sym_cmd_identifier_token29] = ACTIONS(1040), - [aux_sym_cmd_identifier_token30] = ACTIONS(1040), - [aux_sym_cmd_identifier_token31] = ACTIONS(1040), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1040), - [aux_sym_cmd_identifier_token34] = ACTIONS(1038), - [aux_sym_cmd_identifier_token35] = ACTIONS(1040), - [aux_sym_cmd_identifier_token36] = ACTIONS(1040), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in2] = 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_as] = ACTIONS(1038), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = ACTIONS(1038), - [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_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1040), + [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(251), + [sym_raw_string_begin] = ACTIONS(2393), }, [722] = { [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_alias] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_let_DASHenv] = ACTIONS(2369), - [anon_sym_mut] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [aux_sym_cmd_identifier_token1] = ACTIONS(2369), - [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(2369), - [aux_sym_cmd_identifier_token9] = ACTIONS(2369), - [aux_sym_cmd_identifier_token10] = ACTIONS(2371), - [aux_sym_cmd_identifier_token11] = ACTIONS(2371), - [aux_sym_cmd_identifier_token12] = ACTIONS(2369), - [aux_sym_cmd_identifier_token13] = ACTIONS(2369), - [aux_sym_cmd_identifier_token14] = ACTIONS(2369), - [aux_sym_cmd_identifier_token15] = ACTIONS(2369), - [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(2369), - [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(2369), - [aux_sym_cmd_identifier_token39] = ACTIONS(2371), - [aux_sym_cmd_identifier_token40] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2369), - [anon_sym_export_DASHenv] = ACTIONS(2369), - [anon_sym_extern] = ACTIONS(2369), - [anon_sym_module] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2369), - [anon_sym_DASH2] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_in2] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_make] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_catch] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_source] = ACTIONS(2369), - [anon_sym_source_DASHenv] = ACTIONS(2369), - [anon_sym_register] = ACTIONS(2369), - [anon_sym_hide] = ACTIONS(2369), - [anon_sym_hide_DASHenv] = ACTIONS(2369), - [anon_sym_overlay] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_PLUS2] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [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(2369), - [aux_sym__val_number_token5] = ACTIONS(2369), - [aux_sym__val_number_token6] = ACTIONS(2369), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2371), + [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(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(2090), + [aux_sym_cmd_identifier_token9] = ACTIONS(2090), + [aux_sym_cmd_identifier_token10] = ACTIONS(2096), + [aux_sym_cmd_identifier_token11] = ACTIONS(2096), + [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(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(2090), + [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(2090), + [aux_sym_cmd_identifier_token39] = ACTIONS(2096), + [aux_sym_cmd_identifier_token40] = ACTIONS(2096), + [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(2096), + [anon_sym_DOLLAR] = ACTIONS(2096), + [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(2096), + [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(2096), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [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(2090), + [aux_sym__val_number_token5] = ACTIONS(2090), + [aux_sym__val_number_token6] = ACTIONS(2090), + [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(251), + [sym_raw_string_begin] = ACTIONS(2096), }, [723] = { [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_alias] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_let_DASHenv] = ACTIONS(1793), - [anon_sym_mut] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [aux_sym_cmd_identifier_token1] = ACTIONS(1793), - [aux_sym_cmd_identifier_token2] = ACTIONS(1795), - [aux_sym_cmd_identifier_token3] = ACTIONS(1795), - [aux_sym_cmd_identifier_token4] = ACTIONS(1795), - [aux_sym_cmd_identifier_token5] = ACTIONS(1795), - [aux_sym_cmd_identifier_token6] = ACTIONS(1795), - [aux_sym_cmd_identifier_token7] = ACTIONS(1795), - [aux_sym_cmd_identifier_token8] = ACTIONS(1793), - [aux_sym_cmd_identifier_token9] = ACTIONS(1793), - [aux_sym_cmd_identifier_token10] = ACTIONS(1795), - [aux_sym_cmd_identifier_token11] = ACTIONS(1795), - [aux_sym_cmd_identifier_token12] = ACTIONS(1793), - [aux_sym_cmd_identifier_token13] = ACTIONS(1793), - [aux_sym_cmd_identifier_token14] = ACTIONS(1793), - [aux_sym_cmd_identifier_token15] = ACTIONS(1793), - [aux_sym_cmd_identifier_token16] = ACTIONS(1795), - [aux_sym_cmd_identifier_token17] = ACTIONS(1795), - [aux_sym_cmd_identifier_token18] = ACTIONS(1795), - [aux_sym_cmd_identifier_token19] = ACTIONS(1795), - [aux_sym_cmd_identifier_token20] = ACTIONS(1795), - [aux_sym_cmd_identifier_token21] = ACTIONS(1795), - [aux_sym_cmd_identifier_token22] = ACTIONS(1795), - [aux_sym_cmd_identifier_token23] = ACTIONS(1795), - [aux_sym_cmd_identifier_token24] = ACTIONS(1795), - [aux_sym_cmd_identifier_token25] = ACTIONS(1795), - [aux_sym_cmd_identifier_token26] = ACTIONS(1795), - [aux_sym_cmd_identifier_token27] = ACTIONS(1795), - [aux_sym_cmd_identifier_token28] = ACTIONS(1795), - [aux_sym_cmd_identifier_token29] = ACTIONS(1795), - [aux_sym_cmd_identifier_token30] = ACTIONS(1795), - [aux_sym_cmd_identifier_token31] = ACTIONS(1795), - [aux_sym_cmd_identifier_token32] = ACTIONS(1795), - [aux_sym_cmd_identifier_token33] = ACTIONS(1795), - [aux_sym_cmd_identifier_token34] = ACTIONS(1793), - [aux_sym_cmd_identifier_token35] = ACTIONS(1795), - [aux_sym_cmd_identifier_token36] = ACTIONS(1795), - [aux_sym_cmd_identifier_token37] = ACTIONS(1795), - [aux_sym_cmd_identifier_token38] = ACTIONS(1793), - [aux_sym_cmd_identifier_token39] = ACTIONS(1795), - [aux_sym_cmd_identifier_token40] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_export_DASHenv] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1795), - [anon_sym_error] = ACTIONS(1793), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_in2] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_make] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_catch] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_source] = ACTIONS(1793), - [anon_sym_source_DASHenv] = ACTIONS(1793), - [anon_sym_register] = ACTIONS(1793), - [anon_sym_hide] = ACTIONS(1793), - [anon_sym_hide_DASHenv] = ACTIONS(1793), - [anon_sym_overlay] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_PLUS2] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1793), - [aux_sym__val_number_token5] = ACTIONS(1793), - [aux_sym__val_number_token6] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [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(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(2458), + [aux_sym_cmd_identifier_token9] = ACTIONS(2458), + [aux_sym_cmd_identifier_token10] = ACTIONS(2460), + [aux_sym_cmd_identifier_token11] = ACTIONS(2460), + [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(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(2458), + [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(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_DASH2] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in2] = 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_as] = ACTIONS(2458), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2458), + [aux_sym__val_number_token5] = ACTIONS(2458), + [aux_sym__val_number_token6] = ACTIONS(2458), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2460), }, [724] = { [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(1824), - [anon_sym_alias] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_let_DASHenv] = ACTIONS(1824), - [anon_sym_mut] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [aux_sym_cmd_identifier_token1] = ACTIONS(1824), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token9] = ACTIONS(1824), - [aux_sym_cmd_identifier_token10] = ACTIONS(1826), - [aux_sym_cmd_identifier_token11] = ACTIONS(1826), - [aux_sym_cmd_identifier_token12] = ACTIONS(1824), - [aux_sym_cmd_identifier_token13] = ACTIONS(1824), - [aux_sym_cmd_identifier_token14] = ACTIONS(1824), - [aux_sym_cmd_identifier_token15] = ACTIONS(1824), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1824), - [aux_sym_cmd_identifier_token35] = ACTIONS(1826), - [aux_sym_cmd_identifier_token36] = ACTIONS(1826), - [aux_sym_cmd_identifier_token37] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1824), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_export_DASHenv] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_in2] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_make] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_do] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_catch] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_source] = ACTIONS(1824), - [anon_sym_source_DASHenv] = ACTIONS(1824), - [anon_sym_register] = ACTIONS(1824), - [anon_sym_hide] = ACTIONS(1824), - [anon_sym_hide_DASHenv] = ACTIONS(1824), - [anon_sym_overlay] = ACTIONS(1824), - [anon_sym_as] = ACTIONS(1824), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1824), - [aux_sym__val_number_token5] = ACTIONS(1824), - [aux_sym__val_number_token6] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), + [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(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(2098), + [aux_sym_cmd_identifier_token9] = ACTIONS(2098), + [aux_sym_cmd_identifier_token10] = ACTIONS(2104), + [aux_sym_cmd_identifier_token11] = ACTIONS(2104), + [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(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(2098), + [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(2098), + [aux_sym_cmd_identifier_token39] = ACTIONS(2104), + [aux_sym_cmd_identifier_token40] = ACTIONS(2104), + [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(2104), + [anon_sym_DOLLAR] = ACTIONS(2104), + [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(2104), + [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(2104), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2104), + [aux_sym__val_number_decimal_token1] = ACTIONS(2098), + [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(2098), + [aux_sym__val_number_token5] = ACTIONS(2098), + [aux_sym__val_number_token6] = ACTIONS(2098), + [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(251), + [sym_raw_string_begin] = ACTIONS(2104), }, [725] = { [sym_comment] = STATE(725), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_alias] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_let_DASHenv] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [aux_sym_cmd_identifier_token1] = ACTIONS(1889), - [aux_sym_cmd_identifier_token2] = ACTIONS(1891), - [aux_sym_cmd_identifier_token3] = ACTIONS(1891), - [aux_sym_cmd_identifier_token4] = ACTIONS(1891), - [aux_sym_cmd_identifier_token5] = ACTIONS(1891), - [aux_sym_cmd_identifier_token6] = ACTIONS(1891), - [aux_sym_cmd_identifier_token7] = ACTIONS(1891), - [aux_sym_cmd_identifier_token8] = ACTIONS(1889), - [aux_sym_cmd_identifier_token9] = ACTIONS(1889), - [aux_sym_cmd_identifier_token10] = ACTIONS(1891), - [aux_sym_cmd_identifier_token11] = ACTIONS(1891), - [aux_sym_cmd_identifier_token12] = ACTIONS(1889), - [aux_sym_cmd_identifier_token13] = ACTIONS(1889), - [aux_sym_cmd_identifier_token14] = ACTIONS(1889), - [aux_sym_cmd_identifier_token15] = ACTIONS(1889), - [aux_sym_cmd_identifier_token16] = ACTIONS(1891), - [aux_sym_cmd_identifier_token17] = ACTIONS(1891), - [aux_sym_cmd_identifier_token18] = ACTIONS(1891), - [aux_sym_cmd_identifier_token19] = ACTIONS(1891), - [aux_sym_cmd_identifier_token20] = ACTIONS(1891), - [aux_sym_cmd_identifier_token21] = ACTIONS(1891), - [aux_sym_cmd_identifier_token22] = ACTIONS(1891), - [aux_sym_cmd_identifier_token23] = ACTIONS(1891), - [aux_sym_cmd_identifier_token24] = ACTIONS(1891), - [aux_sym_cmd_identifier_token25] = ACTIONS(1891), - [aux_sym_cmd_identifier_token26] = ACTIONS(1891), - [aux_sym_cmd_identifier_token27] = ACTIONS(1891), - [aux_sym_cmd_identifier_token28] = ACTIONS(1891), - [aux_sym_cmd_identifier_token29] = ACTIONS(1891), - [aux_sym_cmd_identifier_token30] = ACTIONS(1891), - [aux_sym_cmd_identifier_token31] = ACTIONS(1891), - [aux_sym_cmd_identifier_token32] = ACTIONS(1891), - [aux_sym_cmd_identifier_token33] = ACTIONS(1891), - [aux_sym_cmd_identifier_token34] = ACTIONS(1889), - [aux_sym_cmd_identifier_token35] = ACTIONS(1891), - [aux_sym_cmd_identifier_token36] = ACTIONS(1891), - [aux_sym_cmd_identifier_token37] = ACTIONS(1891), - [aux_sym_cmd_identifier_token38] = ACTIONS(1889), - [aux_sym_cmd_identifier_token39] = ACTIONS(1891), - [aux_sym_cmd_identifier_token40] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1889), - [anon_sym_export_DASHenv] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_in2] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_make] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_catch] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_source] = ACTIONS(1889), - [anon_sym_source_DASHenv] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_hide] = ACTIONS(1889), - [anon_sym_hide_DASHenv] = ACTIONS(1889), - [anon_sym_overlay] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1889), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1891), - }, - [726] = { - [sym_comment] = STATE(726), [anon_sym_export] = ACTIONS(2391), [anon_sym_alias] = ACTIONS(2391), [anon_sym_let] = ACTIONS(2391), @@ -160316,206 +162718,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2393), }, - [727] = { - [sym_comment] = STATE(727), - [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(2526), - [aux_sym_cmd_identifier_token3] = ACTIONS(2526), - [aux_sym_cmd_identifier_token4] = ACTIONS(2526), - [aux_sym_cmd_identifier_token5] = ACTIONS(2526), - [aux_sym_cmd_identifier_token6] = ACTIONS(2526), - [aux_sym_cmd_identifier_token7] = ACTIONS(2526), - [aux_sym_cmd_identifier_token8] = ACTIONS(2524), - [aux_sym_cmd_identifier_token9] = ACTIONS(2524), - [aux_sym_cmd_identifier_token10] = ACTIONS(2526), - [aux_sym_cmd_identifier_token11] = ACTIONS(2526), - [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(2526), - [aux_sym_cmd_identifier_token17] = ACTIONS(2526), - [aux_sym_cmd_identifier_token18] = ACTIONS(2526), - [aux_sym_cmd_identifier_token19] = ACTIONS(2526), - [aux_sym_cmd_identifier_token20] = ACTIONS(2526), - [aux_sym_cmd_identifier_token21] = ACTIONS(2526), - [aux_sym_cmd_identifier_token22] = ACTIONS(2526), - [aux_sym_cmd_identifier_token23] = ACTIONS(2526), - [aux_sym_cmd_identifier_token24] = ACTIONS(2526), - [aux_sym_cmd_identifier_token25] = ACTIONS(2526), - [aux_sym_cmd_identifier_token26] = ACTIONS(2526), - [aux_sym_cmd_identifier_token27] = ACTIONS(2526), - [aux_sym_cmd_identifier_token28] = ACTIONS(2526), - [aux_sym_cmd_identifier_token29] = ACTIONS(2526), - [aux_sym_cmd_identifier_token30] = ACTIONS(2526), - [aux_sym_cmd_identifier_token31] = ACTIONS(2526), - [aux_sym_cmd_identifier_token32] = ACTIONS(2526), - [aux_sym_cmd_identifier_token33] = ACTIONS(2526), - [aux_sym_cmd_identifier_token34] = ACTIONS(2524), - [aux_sym_cmd_identifier_token35] = ACTIONS(2526), - [aux_sym_cmd_identifier_token36] = ACTIONS(2526), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_in2] = 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_as] = ACTIONS(2524), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(2524), - [aux_sym__val_number_token5] = ACTIONS(2524), - [aux_sym__val_number_token6] = ACTIONS(2524), - [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_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2526), - }, - [728] = { - [sym_comment] = STATE(728), - [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(251), - [sym_raw_string_begin] = ACTIONS(2397), - }, - [729] = { - [sym_comment] = STATE(729), + [726] = { + [sym_comment] = STATE(726), [anon_sym_export] = ACTIONS(2399), [anon_sym_alias] = ACTIONS(2399), [anon_sym_let] = ACTIONS(2399), @@ -160613,107 +162817,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2401), }, - [730] = { - [sym_comment] = STATE(730), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [aux_sym_cmd_identifier_token1] = ACTIONS(2361), - [aux_sym_cmd_identifier_token2] = ACTIONS(2363), - [aux_sym_cmd_identifier_token3] = ACTIONS(2363), - [aux_sym_cmd_identifier_token4] = ACTIONS(2363), - [aux_sym_cmd_identifier_token5] = ACTIONS(2363), - [aux_sym_cmd_identifier_token6] = ACTIONS(2363), - [aux_sym_cmd_identifier_token7] = ACTIONS(2363), - [aux_sym_cmd_identifier_token8] = ACTIONS(2361), - [aux_sym_cmd_identifier_token9] = ACTIONS(2361), - [aux_sym_cmd_identifier_token10] = ACTIONS(2363), - [aux_sym_cmd_identifier_token11] = ACTIONS(2363), - [aux_sym_cmd_identifier_token12] = ACTIONS(2361), - [aux_sym_cmd_identifier_token13] = ACTIONS(2361), - [aux_sym_cmd_identifier_token14] = ACTIONS(2361), - [aux_sym_cmd_identifier_token15] = ACTIONS(2361), - [aux_sym_cmd_identifier_token16] = ACTIONS(2363), - [aux_sym_cmd_identifier_token17] = ACTIONS(2363), - [aux_sym_cmd_identifier_token18] = ACTIONS(2363), - [aux_sym_cmd_identifier_token19] = ACTIONS(2363), - [aux_sym_cmd_identifier_token20] = ACTIONS(2363), - [aux_sym_cmd_identifier_token21] = ACTIONS(2363), - [aux_sym_cmd_identifier_token22] = ACTIONS(2363), - [aux_sym_cmd_identifier_token23] = ACTIONS(2363), - [aux_sym_cmd_identifier_token24] = ACTIONS(2363), - [aux_sym_cmd_identifier_token25] = ACTIONS(2363), - [aux_sym_cmd_identifier_token26] = ACTIONS(2363), - [aux_sym_cmd_identifier_token27] = ACTIONS(2363), - [aux_sym_cmd_identifier_token28] = ACTIONS(2363), - [aux_sym_cmd_identifier_token29] = ACTIONS(2363), - [aux_sym_cmd_identifier_token30] = ACTIONS(2363), - [aux_sym_cmd_identifier_token31] = ACTIONS(2363), - [aux_sym_cmd_identifier_token32] = ACTIONS(2363), - [aux_sym_cmd_identifier_token33] = ACTIONS(2363), - [aux_sym_cmd_identifier_token34] = ACTIONS(2361), - [aux_sym_cmd_identifier_token35] = ACTIONS(2363), - [aux_sym_cmd_identifier_token36] = ACTIONS(2363), - [aux_sym_cmd_identifier_token37] = ACTIONS(2363), - [aux_sym_cmd_identifier_token38] = ACTIONS(2361), - [aux_sym_cmd_identifier_token39] = ACTIONS(2363), - [aux_sym_cmd_identifier_token40] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_DASH2] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_in2] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_make] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_PLUS2] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), - [aux_sym__val_number_decimal_token1] = ACTIONS(2361), - [aux_sym__val_number_decimal_token2] = ACTIONS(2363), - [aux_sym__val_number_decimal_token3] = ACTIONS(2363), - [aux_sym__val_number_decimal_token4] = ACTIONS(2363), - [aux_sym__val_number_token1] = ACTIONS(2363), - [aux_sym__val_number_token2] = ACTIONS(2363), - [aux_sym__val_number_token3] = ACTIONS(2363), - [aux_sym__val_number_token4] = ACTIONS(2361), - [aux_sym__val_number_token5] = ACTIONS(2361), - [aux_sym__val_number_token6] = ACTIONS(2361), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2363), + [727] = { + [sym_comment] = STATE(727), + [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(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(2462), + [aux_sym_cmd_identifier_token9] = ACTIONS(2462), + [aux_sym_cmd_identifier_token10] = ACTIONS(2464), + [aux_sym_cmd_identifier_token11] = ACTIONS(2464), + [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(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(2462), + [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(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_DASH2] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in2] = 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_as] = ACTIONS(2462), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2462), + [aux_sym__val_number_token5] = ACTIONS(2462), + [aux_sym__val_number_token6] = ACTIONS(2462), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2464), }, - [731] = { - [sym_comment] = STATE(731), + [728] = { + [sym_comment] = STATE(728), [anon_sym_export] = ACTIONS(2403), [anon_sym_alias] = ACTIONS(2403), [anon_sym_let] = ACTIONS(2403), @@ -160811,1592 +163015,1097 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2405), }, - [732] = { - [sym_comment] = STATE(732), - [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(2419), - [aux_sym_cmd_identifier_token3] = ACTIONS(2419), - [aux_sym_cmd_identifier_token4] = ACTIONS(2419), - [aux_sym_cmd_identifier_token5] = ACTIONS(2419), - [aux_sym_cmd_identifier_token6] = ACTIONS(2419), - [aux_sym_cmd_identifier_token7] = ACTIONS(2419), - [aux_sym_cmd_identifier_token8] = ACTIONS(2417), - [aux_sym_cmd_identifier_token9] = ACTIONS(2417), - [aux_sym_cmd_identifier_token10] = ACTIONS(2419), - [aux_sym_cmd_identifier_token11] = ACTIONS(2419), - [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(2419), - [aux_sym_cmd_identifier_token17] = ACTIONS(2419), - [aux_sym_cmd_identifier_token18] = ACTIONS(2419), - [aux_sym_cmd_identifier_token19] = ACTIONS(2419), - [aux_sym_cmd_identifier_token20] = ACTIONS(2419), - [aux_sym_cmd_identifier_token21] = ACTIONS(2419), - [aux_sym_cmd_identifier_token22] = ACTIONS(2419), - [aux_sym_cmd_identifier_token23] = ACTIONS(2419), - [aux_sym_cmd_identifier_token24] = ACTIONS(2419), - [aux_sym_cmd_identifier_token25] = ACTIONS(2419), - [aux_sym_cmd_identifier_token26] = ACTIONS(2419), - [aux_sym_cmd_identifier_token27] = ACTIONS(2419), - [aux_sym_cmd_identifier_token28] = ACTIONS(2419), - [aux_sym_cmd_identifier_token29] = ACTIONS(2419), - [aux_sym_cmd_identifier_token30] = ACTIONS(2419), - [aux_sym_cmd_identifier_token31] = ACTIONS(2419), - [aux_sym_cmd_identifier_token32] = ACTIONS(2419), - [aux_sym_cmd_identifier_token33] = ACTIONS(2419), - [aux_sym_cmd_identifier_token34] = ACTIONS(2417), - [aux_sym_cmd_identifier_token35] = ACTIONS(2419), - [aux_sym_cmd_identifier_token36] = ACTIONS(2419), - [aux_sym_cmd_identifier_token37] = ACTIONS(2419), - [aux_sym_cmd_identifier_token38] = ACTIONS(2417), - [aux_sym_cmd_identifier_token39] = ACTIONS(2419), - [aux_sym_cmd_identifier_token40] = ACTIONS(2419), - [anon_sym_def] = ACTIONS(2417), - [anon_sym_export_DASHenv] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym_module] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_error] = ACTIONS(2417), - [anon_sym_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(2419), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_catch] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_source] = ACTIONS(2417), - [anon_sym_source_DASHenv] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_hide] = ACTIONS(2417), - [anon_sym_hide_DASHenv] = ACTIONS(2417), - [anon_sym_overlay] = ACTIONS(2417), - [anon_sym_as] = ACTIONS(2417), - [anon_sym_PLUS2] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2417), - [aux_sym__val_number_decimal_token2] = ACTIONS(2419), - [aux_sym__val_number_decimal_token3] = ACTIONS(2419), - [aux_sym__val_number_decimal_token4] = ACTIONS(2419), - [aux_sym__val_number_token1] = ACTIONS(2419), - [aux_sym__val_number_token2] = ACTIONS(2419), - [aux_sym__val_number_token3] = ACTIONS(2419), - [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(2419), - [sym__str_single_quotes] = ACTIONS(2419), - [sym__str_back_ticks] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [729] = { + [aux_sym__pipe_separator] = STATE(717), + [sym_comment] = STATE(729), + [aux_sym_shebang_repeat1] = STATE(774), + [aux_sym_cmd_identifier_token1] = ACTIONS(2546), + [aux_sym_cmd_identifier_token2] = ACTIONS(2548), + [aux_sym_cmd_identifier_token3] = ACTIONS(2548), + [aux_sym_cmd_identifier_token4] = ACTIONS(2548), + [aux_sym_cmd_identifier_token5] = ACTIONS(2548), + [aux_sym_cmd_identifier_token6] = ACTIONS(2548), + [aux_sym_cmd_identifier_token7] = ACTIONS(2548), + [aux_sym_cmd_identifier_token8] = ACTIONS(2548), + [aux_sym_cmd_identifier_token9] = ACTIONS(2546), + [aux_sym_cmd_identifier_token10] = ACTIONS(2548), + [aux_sym_cmd_identifier_token11] = ACTIONS(2548), + [aux_sym_cmd_identifier_token12] = ACTIONS(2548), + [aux_sym_cmd_identifier_token13] = ACTIONS(2546), + [aux_sym_cmd_identifier_token14] = ACTIONS(2548), + [aux_sym_cmd_identifier_token15] = ACTIONS(2546), + [aux_sym_cmd_identifier_token16] = ACTIONS(2548), + [aux_sym_cmd_identifier_token17] = ACTIONS(2548), + [aux_sym_cmd_identifier_token18] = ACTIONS(2546), + [aux_sym_cmd_identifier_token19] = ACTIONS(2548), + [aux_sym_cmd_identifier_token20] = ACTIONS(2548), + [aux_sym_cmd_identifier_token21] = ACTIONS(2548), + [aux_sym_cmd_identifier_token22] = ACTIONS(2548), + [aux_sym_cmd_identifier_token23] = ACTIONS(2548), + [aux_sym_cmd_identifier_token24] = ACTIONS(2548), + [aux_sym_cmd_identifier_token25] = ACTIONS(2548), + [aux_sym_cmd_identifier_token26] = ACTIONS(2548), + [aux_sym_cmd_identifier_token27] = ACTIONS(2548), + [aux_sym_cmd_identifier_token28] = ACTIONS(2548), + [aux_sym_cmd_identifier_token29] = ACTIONS(2548), + [aux_sym_cmd_identifier_token30] = ACTIONS(2548), + [aux_sym_cmd_identifier_token31] = ACTIONS(2548), + [aux_sym_cmd_identifier_token32] = ACTIONS(2546), + [aux_sym_cmd_identifier_token33] = ACTIONS(2548), + [aux_sym_cmd_identifier_token34] = ACTIONS(2546), + [aux_sym_cmd_identifier_token35] = ACTIONS(2548), + [aux_sym_cmd_identifier_token36] = ACTIONS(2548), + [aux_sym_cmd_identifier_token37] = ACTIONS(2548), + [aux_sym_cmd_identifier_token38] = ACTIONS(2546), + [aux_sym_cmd_identifier_token39] = ACTIONS(2548), + [aux_sym_cmd_identifier_token40] = ACTIONS(2548), + [sym__newline] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_err_GT_PIPE] = ACTIONS(2552), + [anon_sym_out_GT_PIPE] = ACTIONS(2552), + [anon_sym_e_GT_PIPE] = ACTIONS(2552), + [anon_sym_o_GT_PIPE] = ACTIONS(2552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_DOLLAR] = ACTIONS(2546), + [anon_sym_DASH2] = ACTIONS(2546), + [anon_sym_break] = ACTIONS(2546), + [anon_sym_continue] = ACTIONS(2546), + [anon_sym_do] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2546), + [anon_sym_match] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_DOT_DOT] = ACTIONS(2546), + [anon_sym_try] = ACTIONS(2546), + [anon_sym_return] = ACTIONS(2546), + [anon_sym_where] = ACTIONS(2548), + [aux_sym_expr_unary_token1] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2548), + [anon_sym_DOT_DOT_LT] = ACTIONS(2548), + [anon_sym_null] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2546), + [anon_sym_false] = ACTIONS(2546), + [aux_sym__val_number_decimal_token1] = ACTIONS(2546), + [aux_sym__val_number_decimal_token2] = ACTIONS(2548), + [aux_sym__val_number_decimal_token3] = ACTIONS(2548), + [aux_sym__val_number_decimal_token4] = ACTIONS(2548), + [aux_sym__val_number_token1] = ACTIONS(2548), + [aux_sym__val_number_token2] = ACTIONS(2548), + [aux_sym__val_number_token3] = ACTIONS(2548), + [aux_sym__val_number_token4] = ACTIONS(2546), + [aux_sym__val_number_token5] = ACTIONS(2546), + [aux_sym__val_number_token6] = ACTIONS(2546), + [anon_sym_0b] = ACTIONS(2546), + [anon_sym_0o] = ACTIONS(2546), + [anon_sym_0x] = ACTIONS(2546), + [sym_val_date] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2548), + [sym__str_single_quotes] = ACTIONS(2548), + [sym__str_back_ticks] = ACTIONS(2548), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2548), + [aux_sym_env_var_token1] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2548), + [aux_sym_command_token1] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2548), + }, + [730] = { + [sym_comment] = STATE(730), + [anon_sym_export] = ACTIONS(2439), + [anon_sym_alias] = ACTIONS(2439), + [anon_sym_let] = ACTIONS(2439), + [anon_sym_let_DASHenv] = ACTIONS(2439), + [anon_sym_mut] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [aux_sym_cmd_identifier_token1] = ACTIONS(2439), + [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(2439), + [aux_sym_cmd_identifier_token9] = ACTIONS(2439), + [aux_sym_cmd_identifier_token10] = ACTIONS(2441), + [aux_sym_cmd_identifier_token11] = ACTIONS(2441), + [aux_sym_cmd_identifier_token12] = ACTIONS(2439), + [aux_sym_cmd_identifier_token13] = ACTIONS(2439), + [aux_sym_cmd_identifier_token14] = ACTIONS(2439), + [aux_sym_cmd_identifier_token15] = ACTIONS(2439), + [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(2439), + [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(2439), + [aux_sym_cmd_identifier_token39] = ACTIONS(2441), + [aux_sym_cmd_identifier_token40] = ACTIONS(2441), + [anon_sym_def] = ACTIONS(2439), + [anon_sym_export_DASHenv] = ACTIONS(2439), + [anon_sym_extern] = ACTIONS(2439), + [anon_sym_module] = ACTIONS(2439), + [anon_sym_use] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2439), + [anon_sym_DASH2] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_in2] = ACTIONS(2439), + [anon_sym_loop] = ACTIONS(2439), + [anon_sym_make] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [anon_sym_do] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_else] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2439), + [anon_sym_catch] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_source] = ACTIONS(2439), + [anon_sym_source_DASHenv] = ACTIONS(2439), + [anon_sym_register] = ACTIONS(2439), + [anon_sym_hide] = ACTIONS(2439), + [anon_sym_hide_DASHenv] = ACTIONS(2439), + [anon_sym_overlay] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_PLUS2] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [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(2439), + [aux_sym__val_number_token5] = ACTIONS(2439), + [aux_sym__val_number_token6] = ACTIONS(2439), + [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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2419), + [sym_raw_string_begin] = ACTIONS(2441), + }, + [731] = { + [sym_comment] = STATE(731), + [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(251), + [sym_raw_string_begin] = ACTIONS(2514), + }, + [732] = { + [sym_comment] = STATE(732), + [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(2518), + [aux_sym_cmd_identifier_token3] = ACTIONS(2518), + [aux_sym_cmd_identifier_token4] = ACTIONS(2518), + [aux_sym_cmd_identifier_token5] = ACTIONS(2518), + [aux_sym_cmd_identifier_token6] = ACTIONS(2518), + [aux_sym_cmd_identifier_token7] = ACTIONS(2518), + [aux_sym_cmd_identifier_token8] = ACTIONS(2516), + [aux_sym_cmd_identifier_token9] = ACTIONS(2516), + [aux_sym_cmd_identifier_token10] = ACTIONS(2518), + [aux_sym_cmd_identifier_token11] = ACTIONS(2518), + [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(2518), + [aux_sym_cmd_identifier_token17] = ACTIONS(2518), + [aux_sym_cmd_identifier_token18] = ACTIONS(2518), + [aux_sym_cmd_identifier_token19] = ACTIONS(2518), + [aux_sym_cmd_identifier_token20] = ACTIONS(2518), + [aux_sym_cmd_identifier_token21] = ACTIONS(2518), + [aux_sym_cmd_identifier_token22] = ACTIONS(2518), + [aux_sym_cmd_identifier_token23] = ACTIONS(2518), + [aux_sym_cmd_identifier_token24] = ACTIONS(2518), + [aux_sym_cmd_identifier_token25] = ACTIONS(2518), + [aux_sym_cmd_identifier_token26] = ACTIONS(2518), + [aux_sym_cmd_identifier_token27] = ACTIONS(2518), + [aux_sym_cmd_identifier_token28] = ACTIONS(2518), + [aux_sym_cmd_identifier_token29] = ACTIONS(2518), + [aux_sym_cmd_identifier_token30] = ACTIONS(2518), + [aux_sym_cmd_identifier_token31] = ACTIONS(2518), + [aux_sym_cmd_identifier_token32] = ACTIONS(2518), + [aux_sym_cmd_identifier_token33] = ACTIONS(2518), + [aux_sym_cmd_identifier_token34] = ACTIONS(2516), + [aux_sym_cmd_identifier_token35] = ACTIONS(2518), + [aux_sym_cmd_identifier_token36] = ACTIONS(2518), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in2] = 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_as] = ACTIONS(2516), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2516), + [aux_sym__val_number_token5] = ACTIONS(2516), + [aux_sym__val_number_token6] = ACTIONS(2516), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2518), }, [733] = { [sym_comment] = STATE(733), - [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(2419), - [aux_sym_cmd_identifier_token3] = ACTIONS(2419), - [aux_sym_cmd_identifier_token4] = ACTIONS(2419), - [aux_sym_cmd_identifier_token5] = ACTIONS(2419), - [aux_sym_cmd_identifier_token6] = ACTIONS(2419), - [aux_sym_cmd_identifier_token7] = ACTIONS(2419), - [aux_sym_cmd_identifier_token8] = ACTIONS(2417), - [aux_sym_cmd_identifier_token9] = ACTIONS(2417), - [aux_sym_cmd_identifier_token10] = ACTIONS(2419), - [aux_sym_cmd_identifier_token11] = ACTIONS(2419), - [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(2419), - [aux_sym_cmd_identifier_token17] = ACTIONS(2419), - [aux_sym_cmd_identifier_token18] = ACTIONS(2419), - [aux_sym_cmd_identifier_token19] = ACTIONS(2419), - [aux_sym_cmd_identifier_token20] = ACTIONS(2419), - [aux_sym_cmd_identifier_token21] = ACTIONS(2419), - [aux_sym_cmd_identifier_token22] = ACTIONS(2419), - [aux_sym_cmd_identifier_token23] = ACTIONS(2419), - [aux_sym_cmd_identifier_token24] = ACTIONS(2419), - [aux_sym_cmd_identifier_token25] = ACTIONS(2419), - [aux_sym_cmd_identifier_token26] = ACTIONS(2419), - [aux_sym_cmd_identifier_token27] = ACTIONS(2419), - [aux_sym_cmd_identifier_token28] = ACTIONS(2419), - [aux_sym_cmd_identifier_token29] = ACTIONS(2419), - [aux_sym_cmd_identifier_token30] = ACTIONS(2419), - [aux_sym_cmd_identifier_token31] = ACTIONS(2419), - [aux_sym_cmd_identifier_token32] = ACTIONS(2419), - [aux_sym_cmd_identifier_token33] = ACTIONS(2419), - [aux_sym_cmd_identifier_token34] = ACTIONS(2417), - [aux_sym_cmd_identifier_token35] = ACTIONS(2419), - [aux_sym_cmd_identifier_token36] = ACTIONS(2419), - [aux_sym_cmd_identifier_token37] = ACTIONS(2419), - [aux_sym_cmd_identifier_token38] = ACTIONS(2417), - [aux_sym_cmd_identifier_token39] = ACTIONS(2419), - [aux_sym_cmd_identifier_token40] = ACTIONS(2419), - [anon_sym_def] = ACTIONS(2417), - [anon_sym_export_DASHenv] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym_module] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_error] = ACTIONS(2417), - [anon_sym_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(2419), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_catch] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_source] = ACTIONS(2417), - [anon_sym_source_DASHenv] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_hide] = ACTIONS(2417), - [anon_sym_hide_DASHenv] = ACTIONS(2417), - [anon_sym_overlay] = ACTIONS(2417), - [anon_sym_as] = ACTIONS(2417), - [anon_sym_PLUS2] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2417), - [aux_sym__val_number_decimal_token2] = ACTIONS(2419), - [aux_sym__val_number_decimal_token3] = ACTIONS(2419), - [aux_sym__val_number_decimal_token4] = ACTIONS(2419), - [aux_sym__val_number_token1] = ACTIONS(2419), - [aux_sym__val_number_token2] = ACTIONS(2419), - [aux_sym__val_number_token3] = ACTIONS(2419), - [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(2419), - [sym__str_single_quotes] = ACTIONS(2419), - [sym__str_back_ticks] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2419), + [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(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(2466), + [aux_sym_cmd_identifier_token9] = ACTIONS(2466), + [aux_sym_cmd_identifier_token10] = ACTIONS(2468), + [aux_sym_cmd_identifier_token11] = ACTIONS(2468), + [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(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(2466), + [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(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_DASH2] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in2] = 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_as] = ACTIONS(2466), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2466), + [aux_sym__val_number_token5] = ACTIONS(2466), + [aux_sym__val_number_token6] = ACTIONS(2466), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2468), }, [734] = { [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_alias] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_let_DASHenv] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [aux_sym_cmd_identifier_token1] = ACTIONS(2373), - [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(2373), - [aux_sym_cmd_identifier_token9] = ACTIONS(2373), - [aux_sym_cmd_identifier_token10] = ACTIONS(2375), - [aux_sym_cmd_identifier_token11] = ACTIONS(2375), - [aux_sym_cmd_identifier_token12] = ACTIONS(2373), - [aux_sym_cmd_identifier_token13] = ACTIONS(2373), - [aux_sym_cmd_identifier_token14] = ACTIONS(2373), - [aux_sym_cmd_identifier_token15] = ACTIONS(2373), - [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(2373), - [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(2373), - [aux_sym_cmd_identifier_token39] = ACTIONS(2375), - [aux_sym_cmd_identifier_token40] = ACTIONS(2375), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_export_DASHenv] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_error] = ACTIONS(2373), - [anon_sym_DASH2] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_in2] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_make] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_catch] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_source] = ACTIONS(2373), - [anon_sym_source_DASHenv] = ACTIONS(2373), - [anon_sym_register] = ACTIONS(2373), - [anon_sym_hide] = ACTIONS(2373), - [anon_sym_hide_DASHenv] = ACTIONS(2373), - [anon_sym_overlay] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_PLUS2] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), - [aux_sym__val_number_decimal_token1] = ACTIONS(2373), - [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(2373), - [aux_sym__val_number_token5] = ACTIONS(2373), - [aux_sym__val_number_token6] = ACTIONS(2373), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2375), + [anon_sym_export] = ACTIONS(2131), + [anon_sym_alias] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_let_DASHenv] = ACTIONS(2131), + [anon_sym_mut] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [aux_sym_cmd_identifier_token1] = ACTIONS(2131), + [aux_sym_cmd_identifier_token2] = ACTIONS(2137), + [aux_sym_cmd_identifier_token3] = ACTIONS(2137), + [aux_sym_cmd_identifier_token4] = ACTIONS(2137), + [aux_sym_cmd_identifier_token5] = ACTIONS(2137), + [aux_sym_cmd_identifier_token6] = ACTIONS(2137), + [aux_sym_cmd_identifier_token7] = ACTIONS(2137), + [aux_sym_cmd_identifier_token8] = ACTIONS(2131), + [aux_sym_cmd_identifier_token9] = ACTIONS(2131), + [aux_sym_cmd_identifier_token10] = ACTIONS(2137), + [aux_sym_cmd_identifier_token11] = ACTIONS(2137), + [aux_sym_cmd_identifier_token12] = ACTIONS(2131), + [aux_sym_cmd_identifier_token13] = ACTIONS(2131), + [aux_sym_cmd_identifier_token14] = ACTIONS(2131), + [aux_sym_cmd_identifier_token15] = ACTIONS(2131), + [aux_sym_cmd_identifier_token16] = ACTIONS(2137), + [aux_sym_cmd_identifier_token17] = ACTIONS(2137), + [aux_sym_cmd_identifier_token18] = ACTIONS(2137), + [aux_sym_cmd_identifier_token19] = ACTIONS(2137), + [aux_sym_cmd_identifier_token20] = ACTIONS(2137), + [aux_sym_cmd_identifier_token21] = ACTIONS(2137), + [aux_sym_cmd_identifier_token22] = ACTIONS(2137), + [aux_sym_cmd_identifier_token23] = ACTIONS(2137), + [aux_sym_cmd_identifier_token24] = ACTIONS(2137), + [aux_sym_cmd_identifier_token25] = ACTIONS(2137), + [aux_sym_cmd_identifier_token26] = ACTIONS(2137), + [aux_sym_cmd_identifier_token27] = ACTIONS(2137), + [aux_sym_cmd_identifier_token28] = ACTIONS(2137), + [aux_sym_cmd_identifier_token29] = ACTIONS(2137), + [aux_sym_cmd_identifier_token30] = ACTIONS(2137), + [aux_sym_cmd_identifier_token31] = ACTIONS(2137), + [aux_sym_cmd_identifier_token32] = ACTIONS(2137), + [aux_sym_cmd_identifier_token33] = ACTIONS(2137), + [aux_sym_cmd_identifier_token34] = ACTIONS(2131), + [aux_sym_cmd_identifier_token35] = ACTIONS(2137), + [aux_sym_cmd_identifier_token36] = ACTIONS(2137), + [aux_sym_cmd_identifier_token37] = ACTIONS(2137), + [aux_sym_cmd_identifier_token38] = ACTIONS(2131), + [aux_sym_cmd_identifier_token39] = ACTIONS(2137), + [aux_sym_cmd_identifier_token40] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_export_DASHenv] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_module] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2137), + [anon_sym_error] = ACTIONS(2131), + [anon_sym_DASH2] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_in2] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_make] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_do] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_catch] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_source] = ACTIONS(2131), + [anon_sym_source_DASHenv] = ACTIONS(2131), + [anon_sym_register] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_hide_DASHenv] = ACTIONS(2131), + [anon_sym_overlay] = ACTIONS(2131), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_PLUS2] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2137), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2137), + [aux_sym__val_number_decimal_token3] = ACTIONS(2137), + [aux_sym__val_number_decimal_token4] = ACTIONS(2137), + [aux_sym__val_number_token1] = ACTIONS(2137), + [aux_sym__val_number_token2] = ACTIONS(2137), + [aux_sym__val_number_token3] = ACTIONS(2137), + [aux_sym__val_number_token4] = ACTIONS(2131), + [aux_sym__val_number_token5] = ACTIONS(2131), + [aux_sym__val_number_token6] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2137), + [sym__str_single_quotes] = ACTIONS(2137), + [sym__str_back_ticks] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2137), }, [735] = { - [aux_sym__pipe_separator] = STATE(742), [sym_comment] = STATE(735), - [aux_sym_shebang_repeat1] = STATE(775), - [aux_sym_cmd_identifier_token1] = ACTIONS(2536), - [aux_sym_cmd_identifier_token2] = ACTIONS(2538), - [aux_sym_cmd_identifier_token3] = ACTIONS(2538), - [aux_sym_cmd_identifier_token4] = ACTIONS(2538), - [aux_sym_cmd_identifier_token5] = ACTIONS(2538), - [aux_sym_cmd_identifier_token6] = ACTIONS(2538), - [aux_sym_cmd_identifier_token7] = ACTIONS(2538), - [aux_sym_cmd_identifier_token8] = ACTIONS(2538), - [aux_sym_cmd_identifier_token9] = ACTIONS(2536), - [aux_sym_cmd_identifier_token10] = ACTIONS(2538), - [aux_sym_cmd_identifier_token11] = ACTIONS(2538), - [aux_sym_cmd_identifier_token12] = ACTIONS(2538), - [aux_sym_cmd_identifier_token13] = ACTIONS(2536), - [aux_sym_cmd_identifier_token14] = ACTIONS(2538), - [aux_sym_cmd_identifier_token15] = ACTIONS(2536), - [aux_sym_cmd_identifier_token16] = ACTIONS(2538), - [aux_sym_cmd_identifier_token17] = ACTIONS(2538), - [aux_sym_cmd_identifier_token18] = ACTIONS(2536), - [aux_sym_cmd_identifier_token19] = ACTIONS(2538), - [aux_sym_cmd_identifier_token20] = ACTIONS(2538), - [aux_sym_cmd_identifier_token21] = ACTIONS(2538), - [aux_sym_cmd_identifier_token22] = ACTIONS(2538), - [aux_sym_cmd_identifier_token23] = ACTIONS(2538), - [aux_sym_cmd_identifier_token24] = ACTIONS(2538), - [aux_sym_cmd_identifier_token25] = ACTIONS(2538), - [aux_sym_cmd_identifier_token26] = ACTIONS(2538), - [aux_sym_cmd_identifier_token27] = ACTIONS(2538), - [aux_sym_cmd_identifier_token28] = ACTIONS(2538), - [aux_sym_cmd_identifier_token29] = ACTIONS(2538), - [aux_sym_cmd_identifier_token30] = ACTIONS(2538), - [aux_sym_cmd_identifier_token31] = ACTIONS(2538), - [aux_sym_cmd_identifier_token32] = ACTIONS(2536), - [aux_sym_cmd_identifier_token33] = ACTIONS(2538), - [aux_sym_cmd_identifier_token34] = ACTIONS(2536), - [aux_sym_cmd_identifier_token35] = ACTIONS(2538), - [aux_sym_cmd_identifier_token36] = ACTIONS(2538), - [aux_sym_cmd_identifier_token37] = ACTIONS(2538), - [aux_sym_cmd_identifier_token38] = ACTIONS(2536), - [aux_sym_cmd_identifier_token39] = ACTIONS(2538), - [aux_sym_cmd_identifier_token40] = ACTIONS(2538), - [sym__newline] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_err_GT_PIPE] = ACTIONS(2542), - [anon_sym_out_GT_PIPE] = ACTIONS(2542), - [anon_sym_e_GT_PIPE] = ACTIONS(2542), - [anon_sym_o_GT_PIPE] = ACTIONS(2542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(2536), - [anon_sym_DASH2] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_do] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_where] = ACTIONS(2538), - [aux_sym_expr_unary_token1] = ACTIONS(2538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2536), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [aux_sym__val_number_decimal_token1] = ACTIONS(2536), - [aux_sym__val_number_decimal_token2] = ACTIONS(2538), - [aux_sym__val_number_decimal_token3] = ACTIONS(2538), - [aux_sym__val_number_decimal_token4] = ACTIONS(2538), - [aux_sym__val_number_token1] = ACTIONS(2538), - [aux_sym__val_number_token2] = ACTIONS(2538), - [aux_sym__val_number_token3] = ACTIONS(2538), - [aux_sym__val_number_token4] = ACTIONS(2536), - [aux_sym__val_number_token5] = ACTIONS(2536), - [aux_sym__val_number_token6] = ACTIONS(2536), - [anon_sym_0b] = ACTIONS(2536), - [anon_sym_0o] = ACTIONS(2536), - [anon_sym_0x] = ACTIONS(2536), - [sym_val_date] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), - [sym__str_single_quotes] = ACTIONS(2538), - [sym__str_back_ticks] = ACTIONS(2538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2538), - [aux_sym_env_var_token1] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2538), - [aux_sym_command_token1] = ACTIONS(2538), + [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(251), - [sym_raw_string_begin] = ACTIONS(2538), + [sym_raw_string_begin] = ACTIONS(2409), }, [736] = { [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(2528), - [anon_sym_alias] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_DASHenv] = ACTIONS(2528), - [anon_sym_mut] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [aux_sym_cmd_identifier_token1] = ACTIONS(2528), - [aux_sym_cmd_identifier_token2] = ACTIONS(2530), - [aux_sym_cmd_identifier_token3] = ACTIONS(2530), - [aux_sym_cmd_identifier_token4] = ACTIONS(2530), - [aux_sym_cmd_identifier_token5] = ACTIONS(2530), - [aux_sym_cmd_identifier_token6] = ACTIONS(2530), - [aux_sym_cmd_identifier_token7] = ACTIONS(2530), - [aux_sym_cmd_identifier_token8] = ACTIONS(2528), - [aux_sym_cmd_identifier_token9] = ACTIONS(2528), - [aux_sym_cmd_identifier_token10] = ACTIONS(2530), - [aux_sym_cmd_identifier_token11] = ACTIONS(2530), - [aux_sym_cmd_identifier_token12] = ACTIONS(2528), - [aux_sym_cmd_identifier_token13] = ACTIONS(2528), - [aux_sym_cmd_identifier_token14] = ACTIONS(2528), - [aux_sym_cmd_identifier_token15] = ACTIONS(2528), - [aux_sym_cmd_identifier_token16] = ACTIONS(2530), - [aux_sym_cmd_identifier_token17] = ACTIONS(2530), - [aux_sym_cmd_identifier_token18] = ACTIONS(2530), - [aux_sym_cmd_identifier_token19] = ACTIONS(2530), - [aux_sym_cmd_identifier_token20] = ACTIONS(2530), - [aux_sym_cmd_identifier_token21] = ACTIONS(2530), - [aux_sym_cmd_identifier_token22] = ACTIONS(2530), - [aux_sym_cmd_identifier_token23] = ACTIONS(2530), - [aux_sym_cmd_identifier_token24] = ACTIONS(2530), - [aux_sym_cmd_identifier_token25] = ACTIONS(2530), - [aux_sym_cmd_identifier_token26] = ACTIONS(2530), - [aux_sym_cmd_identifier_token27] = ACTIONS(2530), - [aux_sym_cmd_identifier_token28] = ACTIONS(2530), - [aux_sym_cmd_identifier_token29] = ACTIONS(2530), - [aux_sym_cmd_identifier_token30] = ACTIONS(2530), - [aux_sym_cmd_identifier_token31] = ACTIONS(2530), - [aux_sym_cmd_identifier_token32] = ACTIONS(2530), - [aux_sym_cmd_identifier_token33] = ACTIONS(2530), - [aux_sym_cmd_identifier_token34] = ACTIONS(2528), - [aux_sym_cmd_identifier_token35] = ACTIONS(2530), - [aux_sym_cmd_identifier_token36] = ACTIONS(2530), - [aux_sym_cmd_identifier_token37] = ACTIONS(2530), - [aux_sym_cmd_identifier_token38] = ACTIONS(2528), - [aux_sym_cmd_identifier_token39] = ACTIONS(2530), - [aux_sym_cmd_identifier_token40] = ACTIONS(2530), - [anon_sym_def] = ACTIONS(2528), - [anon_sym_export_DASHenv] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_module] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_DOLLAR] = ACTIONS(2530), - [anon_sym_error] = ACTIONS(2528), - [anon_sym_DASH2] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_in2] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_make] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_catch] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_source] = ACTIONS(2528), - [anon_sym_source_DASHenv] = ACTIONS(2528), - [anon_sym_register] = ACTIONS(2528), - [anon_sym_hide] = ACTIONS(2528), - [anon_sym_hide_DASHenv] = ACTIONS(2528), - [anon_sym_overlay] = ACTIONS(2528), - [anon_sym_as] = ACTIONS(2528), - [anon_sym_PLUS2] = ACTIONS(2528), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2530), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2530), - [aux_sym__val_number_decimal_token1] = ACTIONS(2528), - [aux_sym__val_number_decimal_token2] = ACTIONS(2530), - [aux_sym__val_number_decimal_token3] = ACTIONS(2530), - [aux_sym__val_number_decimal_token4] = ACTIONS(2530), - [aux_sym__val_number_token1] = ACTIONS(2530), - [aux_sym__val_number_token2] = ACTIONS(2530), - [aux_sym__val_number_token3] = ACTIONS(2530), - [aux_sym__val_number_token4] = ACTIONS(2528), - [aux_sym__val_number_token5] = ACTIONS(2528), - [aux_sym__val_number_token6] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2530), - [sym__str_single_quotes] = ACTIONS(2530), - [sym__str_back_ticks] = ACTIONS(2530), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(2064), + [anon_sym_alias] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_let_DASHenv] = ACTIONS(2064), + [anon_sym_mut] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [aux_sym_cmd_identifier_token1] = ACTIONS(2064), + [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(2064), + [aux_sym_cmd_identifier_token9] = ACTIONS(2064), + [aux_sym_cmd_identifier_token10] = ACTIONS(2070), + [aux_sym_cmd_identifier_token11] = ACTIONS(2070), + [aux_sym_cmd_identifier_token12] = ACTIONS(2064), + [aux_sym_cmd_identifier_token13] = ACTIONS(2064), + [aux_sym_cmd_identifier_token14] = ACTIONS(2064), + [aux_sym_cmd_identifier_token15] = ACTIONS(2064), + [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(2064), + [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(2064), + [aux_sym_cmd_identifier_token39] = ACTIONS(2070), + [aux_sym_cmd_identifier_token40] = ACTIONS(2070), + [anon_sym_def] = ACTIONS(2064), + [anon_sym_export_DASHenv] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2070), + [anon_sym_error] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_in2] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_make] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_source] = ACTIONS(2064), + [anon_sym_source_DASHenv] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_hide] = ACTIONS(2064), + [anon_sym_hide_DASHenv] = ACTIONS(2064), + [anon_sym_overlay] = ACTIONS(2064), + [anon_sym_as] = ACTIONS(2064), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), + [aux_sym__val_number_decimal_token1] = ACTIONS(2064), + [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(2064), + [aux_sym__val_number_token5] = ACTIONS(2064), + [aux_sym__val_number_token6] = ACTIONS(2064), + [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(251), - [sym_raw_string_begin] = ACTIONS(2530), + [sym_raw_string_begin] = ACTIONS(2070), }, [737] = { [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_alias] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_let_DASHenv] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [aux_sym_cmd_identifier_token1] = ACTIONS(2509), - [aux_sym_cmd_identifier_token2] = ACTIONS(2511), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), - [aux_sym_cmd_identifier_token6] = ACTIONS(2511), - [aux_sym_cmd_identifier_token7] = ACTIONS(2511), - [aux_sym_cmd_identifier_token8] = ACTIONS(2509), - [aux_sym_cmd_identifier_token9] = ACTIONS(2509), - [aux_sym_cmd_identifier_token10] = ACTIONS(2511), - [aux_sym_cmd_identifier_token11] = ACTIONS(2511), - [aux_sym_cmd_identifier_token12] = ACTIONS(2509), - [aux_sym_cmd_identifier_token13] = ACTIONS(2509), - [aux_sym_cmd_identifier_token14] = ACTIONS(2509), - [aux_sym_cmd_identifier_token15] = ACTIONS(2509), - [aux_sym_cmd_identifier_token16] = ACTIONS(2511), - [aux_sym_cmd_identifier_token17] = ACTIONS(2511), - [aux_sym_cmd_identifier_token18] = ACTIONS(2511), - [aux_sym_cmd_identifier_token19] = ACTIONS(2511), - [aux_sym_cmd_identifier_token20] = ACTIONS(2511), - [aux_sym_cmd_identifier_token21] = ACTIONS(2511), - [aux_sym_cmd_identifier_token22] = ACTIONS(2511), - [aux_sym_cmd_identifier_token23] = ACTIONS(2511), - [aux_sym_cmd_identifier_token24] = ACTIONS(2511), - [aux_sym_cmd_identifier_token25] = ACTIONS(2511), - [aux_sym_cmd_identifier_token26] = ACTIONS(2511), - [aux_sym_cmd_identifier_token27] = ACTIONS(2511), - [aux_sym_cmd_identifier_token28] = ACTIONS(2511), - [aux_sym_cmd_identifier_token29] = ACTIONS(2511), - [aux_sym_cmd_identifier_token30] = ACTIONS(2511), - [aux_sym_cmd_identifier_token31] = ACTIONS(2511), - [aux_sym_cmd_identifier_token32] = ACTIONS(2511), - [aux_sym_cmd_identifier_token33] = ACTIONS(2511), - [aux_sym_cmd_identifier_token34] = ACTIONS(2509), - [aux_sym_cmd_identifier_token35] = ACTIONS(2511), - [aux_sym_cmd_identifier_token36] = ACTIONS(2511), - [aux_sym_cmd_identifier_token37] = ACTIONS(2511), - [aux_sym_cmd_identifier_token38] = ACTIONS(2509), - [aux_sym_cmd_identifier_token39] = ACTIONS(2511), - [aux_sym_cmd_identifier_token40] = ACTIONS(2511), - [anon_sym_def] = ACTIONS(2509), - [anon_sym_export_DASHenv] = ACTIONS(2509), - [anon_sym_extern] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_error] = ACTIONS(2509), - [anon_sym_DASH2] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_in2] = ACTIONS(2509), - [anon_sym_loop] = ACTIONS(2509), - [anon_sym_make] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_catch] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_source] = ACTIONS(2509), - [anon_sym_source_DASHenv] = ACTIONS(2509), - [anon_sym_register] = ACTIONS(2509), - [anon_sym_hide] = ACTIONS(2509), - [anon_sym_hide_DASHenv] = ACTIONS(2509), - [anon_sym_overlay] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_PLUS2] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2511), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2511), - [aux_sym__val_number_decimal_token4] = ACTIONS(2511), - [aux_sym__val_number_token1] = ACTIONS(2511), - [aux_sym__val_number_token2] = ACTIONS(2511), - [aux_sym__val_number_token3] = ACTIONS(2511), - [aux_sym__val_number_token4] = ACTIONS(2509), - [aux_sym__val_number_token5] = ACTIONS(2509), - [aux_sym__val_number_token6] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2511), - [sym__str_single_quotes] = ACTIONS(2511), - [sym__str_back_ticks] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2511), + [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_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(251), + [sym_raw_string_begin] = ACTIONS(1927), }, [738] = { [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_alias] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_let_DASHenv] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [aux_sym_cmd_identifier_token1] = ACTIONS(2513), - [aux_sym_cmd_identifier_token2] = ACTIONS(2515), - [aux_sym_cmd_identifier_token3] = ACTIONS(2515), - [aux_sym_cmd_identifier_token4] = ACTIONS(2515), - [aux_sym_cmd_identifier_token5] = ACTIONS(2515), - [aux_sym_cmd_identifier_token6] = ACTIONS(2515), - [aux_sym_cmd_identifier_token7] = ACTIONS(2515), - [aux_sym_cmd_identifier_token8] = ACTIONS(2513), - [aux_sym_cmd_identifier_token9] = ACTIONS(2513), - [aux_sym_cmd_identifier_token10] = ACTIONS(2515), - [aux_sym_cmd_identifier_token11] = ACTIONS(2515), - [aux_sym_cmd_identifier_token12] = ACTIONS(2513), - [aux_sym_cmd_identifier_token13] = ACTIONS(2513), - [aux_sym_cmd_identifier_token14] = ACTIONS(2513), - [aux_sym_cmd_identifier_token15] = ACTIONS(2513), - [aux_sym_cmd_identifier_token16] = ACTIONS(2515), - [aux_sym_cmd_identifier_token17] = ACTIONS(2515), - [aux_sym_cmd_identifier_token18] = ACTIONS(2515), - [aux_sym_cmd_identifier_token19] = ACTIONS(2515), - [aux_sym_cmd_identifier_token20] = ACTIONS(2515), - [aux_sym_cmd_identifier_token21] = ACTIONS(2515), - [aux_sym_cmd_identifier_token22] = ACTIONS(2515), - [aux_sym_cmd_identifier_token23] = ACTIONS(2515), - [aux_sym_cmd_identifier_token24] = ACTIONS(2515), - [aux_sym_cmd_identifier_token25] = ACTIONS(2515), - [aux_sym_cmd_identifier_token26] = ACTIONS(2515), - [aux_sym_cmd_identifier_token27] = ACTIONS(2515), - [aux_sym_cmd_identifier_token28] = ACTIONS(2515), - [aux_sym_cmd_identifier_token29] = ACTIONS(2515), - [aux_sym_cmd_identifier_token30] = ACTIONS(2515), - [aux_sym_cmd_identifier_token31] = ACTIONS(2515), - [aux_sym_cmd_identifier_token32] = ACTIONS(2515), - [aux_sym_cmd_identifier_token33] = ACTIONS(2515), - [aux_sym_cmd_identifier_token34] = ACTIONS(2513), - [aux_sym_cmd_identifier_token35] = ACTIONS(2515), - [aux_sym_cmd_identifier_token36] = ACTIONS(2515), - [aux_sym_cmd_identifier_token37] = ACTIONS(2515), - [aux_sym_cmd_identifier_token38] = ACTIONS(2513), - [aux_sym_cmd_identifier_token39] = ACTIONS(2515), - [aux_sym_cmd_identifier_token40] = ACTIONS(2515), - [anon_sym_def] = ACTIONS(2513), - [anon_sym_export_DASHenv] = ACTIONS(2513), - [anon_sym_extern] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_error] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_in2] = ACTIONS(2513), - [anon_sym_loop] = ACTIONS(2513), - [anon_sym_make] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_catch] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_source] = ACTIONS(2513), - [anon_sym_source_DASHenv] = ACTIONS(2513), - [anon_sym_register] = ACTIONS(2513), - [anon_sym_hide] = ACTIONS(2513), - [anon_sym_hide_DASHenv] = ACTIONS(2513), - [anon_sym_overlay] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2515), - [aux_sym__val_number_decimal_token1] = ACTIONS(2513), - [aux_sym__val_number_decimal_token2] = ACTIONS(2515), - [aux_sym__val_number_decimal_token3] = ACTIONS(2515), - [aux_sym__val_number_decimal_token4] = ACTIONS(2515), - [aux_sym__val_number_token1] = ACTIONS(2515), - [aux_sym__val_number_token2] = ACTIONS(2515), - [aux_sym__val_number_token3] = ACTIONS(2515), - [aux_sym__val_number_token4] = ACTIONS(2513), - [aux_sym__val_number_token5] = ACTIONS(2513), - [aux_sym__val_number_token6] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2515), - [sym__str_single_quotes] = ACTIONS(2515), - [sym__str_back_ticks] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2515), + [anon_sym_export] = ACTIONS(2045), + [anon_sym_alias] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_let_DASHenv] = ACTIONS(2045), + [anon_sym_mut] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [aux_sym_cmd_identifier_token1] = ACTIONS(2045), + [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(2045), + [aux_sym_cmd_identifier_token9] = ACTIONS(2045), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2045), + [aux_sym_cmd_identifier_token13] = ACTIONS(2045), + [aux_sym_cmd_identifier_token14] = ACTIONS(2045), + [aux_sym_cmd_identifier_token15] = ACTIONS(2045), + [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(2045), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [aux_sym_cmd_identifier_token37] = ACTIONS(2047), + [aux_sym_cmd_identifier_token38] = ACTIONS(2045), + [aux_sym_cmd_identifier_token39] = ACTIONS(2047), + [aux_sym_cmd_identifier_token40] = ACTIONS(2047), + [anon_sym_def] = ACTIONS(2045), + [anon_sym_export_DASHenv] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_module] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2045), + [anon_sym_DASH2] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_in2] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_make] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_do] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_else] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2045), + [anon_sym_catch] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_source] = ACTIONS(2045), + [anon_sym_source_DASHenv] = ACTIONS(2045), + [anon_sym_register] = ACTIONS(2045), + [anon_sym_hide] = ACTIONS(2045), + [anon_sym_hide_DASHenv] = ACTIONS(2045), + [anon_sym_overlay] = ACTIONS(2045), + [anon_sym_as] = ACTIONS(2045), + [anon_sym_PLUS2] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), + [aux_sym__val_number_decimal_token1] = ACTIONS(2045), + [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), + [aux_sym__val_number_token4] = ACTIONS(2045), + [aux_sym__val_number_token5] = ACTIONS(2045), + [aux_sym__val_number_token6] = ACTIONS(2045), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2047), }, [739] = { [sym_comment] = STATE(739), - [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_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2423), + [sym_raw_string_begin] = ACTIONS(1773), }, [740] = { [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_alias] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_let_DASHenv] = ACTIONS(2461), - [anon_sym_mut] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [aux_sym_cmd_identifier_token1] = ACTIONS(2461), - [aux_sym_cmd_identifier_token2] = ACTIONS(2463), - [aux_sym_cmd_identifier_token3] = ACTIONS(2463), - [aux_sym_cmd_identifier_token4] = ACTIONS(2463), - [aux_sym_cmd_identifier_token5] = ACTIONS(2463), - [aux_sym_cmd_identifier_token6] = ACTIONS(2463), - [aux_sym_cmd_identifier_token7] = ACTIONS(2463), - [aux_sym_cmd_identifier_token8] = ACTIONS(2461), - [aux_sym_cmd_identifier_token9] = ACTIONS(2461), - [aux_sym_cmd_identifier_token10] = ACTIONS(2463), - [aux_sym_cmd_identifier_token11] = ACTIONS(2463), - [aux_sym_cmd_identifier_token12] = ACTIONS(2461), - [aux_sym_cmd_identifier_token13] = ACTIONS(2461), - [aux_sym_cmd_identifier_token14] = ACTIONS(2461), - [aux_sym_cmd_identifier_token15] = ACTIONS(2461), - [aux_sym_cmd_identifier_token16] = ACTIONS(2463), - [aux_sym_cmd_identifier_token17] = ACTIONS(2463), - [aux_sym_cmd_identifier_token18] = ACTIONS(2463), - [aux_sym_cmd_identifier_token19] = ACTIONS(2463), - [aux_sym_cmd_identifier_token20] = ACTIONS(2463), - [aux_sym_cmd_identifier_token21] = ACTIONS(2463), - [aux_sym_cmd_identifier_token22] = ACTIONS(2463), - [aux_sym_cmd_identifier_token23] = ACTIONS(2463), - [aux_sym_cmd_identifier_token24] = ACTIONS(2463), - [aux_sym_cmd_identifier_token25] = ACTIONS(2463), - [aux_sym_cmd_identifier_token26] = ACTIONS(2463), - [aux_sym_cmd_identifier_token27] = ACTIONS(2463), - [aux_sym_cmd_identifier_token28] = ACTIONS(2463), - [aux_sym_cmd_identifier_token29] = ACTIONS(2463), - [aux_sym_cmd_identifier_token30] = ACTIONS(2463), - [aux_sym_cmd_identifier_token31] = ACTIONS(2463), - [aux_sym_cmd_identifier_token32] = ACTIONS(2463), - [aux_sym_cmd_identifier_token33] = ACTIONS(2463), - [aux_sym_cmd_identifier_token34] = ACTIONS(2461), - [aux_sym_cmd_identifier_token35] = ACTIONS(2463), - [aux_sym_cmd_identifier_token36] = ACTIONS(2463), - [aux_sym_cmd_identifier_token37] = ACTIONS(2463), - [aux_sym_cmd_identifier_token38] = ACTIONS(2461), - [aux_sym_cmd_identifier_token39] = ACTIONS(2463), - [aux_sym_cmd_identifier_token40] = ACTIONS(2463), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_export_DASHenv] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_error] = ACTIONS(2461), - [anon_sym_DASH2] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_in2] = ACTIONS(2461), - [anon_sym_loop] = ACTIONS(2461), - [anon_sym_make] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_catch] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_source] = ACTIONS(2461), - [anon_sym_source_DASHenv] = ACTIONS(2461), - [anon_sym_register] = ACTIONS(2461), - [anon_sym_hide] = ACTIONS(2461), - [anon_sym_hide_DASHenv] = ACTIONS(2461), - [anon_sym_overlay] = ACTIONS(2461), - [anon_sym_as] = ACTIONS(2461), - [anon_sym_PLUS2] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), - [aux_sym__val_number_decimal_token1] = ACTIONS(2461), - [aux_sym__val_number_decimal_token2] = ACTIONS(2463), - [aux_sym__val_number_decimal_token3] = ACTIONS(2463), - [aux_sym__val_number_decimal_token4] = ACTIONS(2463), - [aux_sym__val_number_token1] = ACTIONS(2463), - [aux_sym__val_number_token2] = ACTIONS(2463), - [aux_sym__val_number_token3] = ACTIONS(2463), - [aux_sym__val_number_token4] = ACTIONS(2461), - [aux_sym__val_number_token5] = ACTIONS(2461), - [aux_sym__val_number_token6] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2463), - [sym__str_single_quotes] = ACTIONS(2463), - [sym__str_back_ticks] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2463), - }, - [741] = { - [sym_comment] = STATE(741), - [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_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(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [742] = { - [aux_sym__pipe_separator] = STATE(742), - [sym_comment] = STATE(742), - [aux_sym_shebang_repeat1] = STATE(5234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2544), - [aux_sym_cmd_identifier_token2] = ACTIONS(2546), - [aux_sym_cmd_identifier_token3] = ACTIONS(2546), - [aux_sym_cmd_identifier_token4] = ACTIONS(2546), - [aux_sym_cmd_identifier_token5] = ACTIONS(2546), - [aux_sym_cmd_identifier_token6] = ACTIONS(2546), - [aux_sym_cmd_identifier_token7] = ACTIONS(2546), - [aux_sym_cmd_identifier_token8] = ACTIONS(2546), - [aux_sym_cmd_identifier_token9] = ACTIONS(2544), - [aux_sym_cmd_identifier_token10] = ACTIONS(2546), - [aux_sym_cmd_identifier_token11] = ACTIONS(2546), - [aux_sym_cmd_identifier_token12] = ACTIONS(2546), - [aux_sym_cmd_identifier_token13] = ACTIONS(2544), - [aux_sym_cmd_identifier_token14] = ACTIONS(2546), - [aux_sym_cmd_identifier_token15] = ACTIONS(2544), - [aux_sym_cmd_identifier_token16] = ACTIONS(2546), - [aux_sym_cmd_identifier_token17] = ACTIONS(2546), - [aux_sym_cmd_identifier_token18] = ACTIONS(2544), - [aux_sym_cmd_identifier_token19] = ACTIONS(2546), - [aux_sym_cmd_identifier_token20] = ACTIONS(2546), - [aux_sym_cmd_identifier_token21] = ACTIONS(2546), - [aux_sym_cmd_identifier_token22] = ACTIONS(2546), - [aux_sym_cmd_identifier_token23] = ACTIONS(2546), - [aux_sym_cmd_identifier_token24] = ACTIONS(2546), - [aux_sym_cmd_identifier_token25] = ACTIONS(2546), - [aux_sym_cmd_identifier_token26] = ACTIONS(2546), - [aux_sym_cmd_identifier_token27] = ACTIONS(2546), - [aux_sym_cmd_identifier_token28] = ACTIONS(2546), - [aux_sym_cmd_identifier_token29] = ACTIONS(2546), - [aux_sym_cmd_identifier_token30] = ACTIONS(2546), - [aux_sym_cmd_identifier_token31] = ACTIONS(2546), - [aux_sym_cmd_identifier_token32] = ACTIONS(2544), - [aux_sym_cmd_identifier_token33] = ACTIONS(2546), - [aux_sym_cmd_identifier_token34] = ACTIONS(2544), - [aux_sym_cmd_identifier_token35] = ACTIONS(2546), - [aux_sym_cmd_identifier_token36] = ACTIONS(2546), - [aux_sym_cmd_identifier_token37] = ACTIONS(2546), - [aux_sym_cmd_identifier_token38] = ACTIONS(2544), - [aux_sym_cmd_identifier_token39] = ACTIONS(2546), - [aux_sym_cmd_identifier_token40] = ACTIONS(2546), - [sym__newline] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_err_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_GT_PIPE] = ACTIONS(2551), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2551), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2551), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2551), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_DOLLAR] = ACTIONS(2544), - [anon_sym_DASH2] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_do] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_DOT_DOT] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_where] = ACTIONS(2546), - [aux_sym_expr_unary_token1] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2546), - [anon_sym_DOT_DOT_LT] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2544), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [aux_sym__val_number_decimal_token1] = ACTIONS(2544), - [aux_sym__val_number_decimal_token2] = ACTIONS(2546), - [aux_sym__val_number_decimal_token3] = ACTIONS(2546), - [aux_sym__val_number_decimal_token4] = ACTIONS(2546), - [aux_sym__val_number_token1] = ACTIONS(2546), - [aux_sym__val_number_token2] = ACTIONS(2546), - [aux_sym__val_number_token3] = ACTIONS(2546), - [aux_sym__val_number_token4] = ACTIONS(2544), - [aux_sym__val_number_token5] = ACTIONS(2544), - [aux_sym__val_number_token6] = ACTIONS(2544), - [anon_sym_0b] = ACTIONS(2544), - [anon_sym_0o] = ACTIONS(2544), - [anon_sym_0x] = ACTIONS(2544), - [sym_val_date] = ACTIONS(2546), - [anon_sym_DQUOTE] = ACTIONS(2546), - [sym__str_single_quotes] = ACTIONS(2546), - [sym__str_back_ticks] = ACTIONS(2546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2546), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2546), - [aux_sym_env_var_token1] = ACTIONS(2544), - [anon_sym_CARET] = ACTIONS(2546), - [aux_sym_command_token1] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2546), - }, - [743] = { - [aux_sym__pipe_separator] = STATE(742), - [sym_comment] = STATE(743), - [aux_sym_shebang_repeat1] = STATE(5234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2554), - [aux_sym_cmd_identifier_token2] = ACTIONS(2556), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), - [aux_sym_cmd_identifier_token6] = ACTIONS(2556), - [aux_sym_cmd_identifier_token7] = ACTIONS(2556), - [aux_sym_cmd_identifier_token8] = ACTIONS(2556), - [aux_sym_cmd_identifier_token9] = ACTIONS(2554), - [aux_sym_cmd_identifier_token10] = ACTIONS(2556), - [aux_sym_cmd_identifier_token11] = ACTIONS(2556), - [aux_sym_cmd_identifier_token12] = ACTIONS(2556), - [aux_sym_cmd_identifier_token13] = ACTIONS(2554), - [aux_sym_cmd_identifier_token14] = ACTIONS(2556), - [aux_sym_cmd_identifier_token15] = ACTIONS(2554), - [aux_sym_cmd_identifier_token16] = ACTIONS(2556), - [aux_sym_cmd_identifier_token17] = ACTIONS(2556), - [aux_sym_cmd_identifier_token18] = ACTIONS(2554), - [aux_sym_cmd_identifier_token19] = ACTIONS(2556), - [aux_sym_cmd_identifier_token20] = ACTIONS(2556), - [aux_sym_cmd_identifier_token21] = ACTIONS(2556), - [aux_sym_cmd_identifier_token22] = ACTIONS(2556), - [aux_sym_cmd_identifier_token23] = ACTIONS(2556), - [aux_sym_cmd_identifier_token24] = ACTIONS(2556), - [aux_sym_cmd_identifier_token25] = ACTIONS(2556), - [aux_sym_cmd_identifier_token26] = ACTIONS(2556), - [aux_sym_cmd_identifier_token27] = ACTIONS(2556), - [aux_sym_cmd_identifier_token28] = ACTIONS(2556), - [aux_sym_cmd_identifier_token29] = ACTIONS(2556), - [aux_sym_cmd_identifier_token30] = ACTIONS(2556), - [aux_sym_cmd_identifier_token31] = ACTIONS(2556), - [aux_sym_cmd_identifier_token32] = ACTIONS(2554), - [aux_sym_cmd_identifier_token33] = ACTIONS(2556), - [aux_sym_cmd_identifier_token34] = ACTIONS(2554), - [aux_sym_cmd_identifier_token35] = ACTIONS(2556), - [aux_sym_cmd_identifier_token36] = ACTIONS(2556), - [aux_sym_cmd_identifier_token37] = ACTIONS(2556), - [aux_sym_cmd_identifier_token38] = ACTIONS(2554), - [aux_sym_cmd_identifier_token39] = ACTIONS(2556), - [aux_sym_cmd_identifier_token40] = ACTIONS(2556), - [sym__newline] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_err_GT_PIPE] = ACTIONS(2542), - [anon_sym_out_GT_PIPE] = ACTIONS(2542), - [anon_sym_e_GT_PIPE] = ACTIONS(2542), - [anon_sym_o_GT_PIPE] = ACTIONS(2542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_DOLLAR] = ACTIONS(2554), - [anon_sym_DASH2] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_match] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_DOT_DOT] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_where] = ACTIONS(2556), - [aux_sym_expr_unary_token1] = ACTIONS(2556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), - [anon_sym_DOT_DOT_LT] = ACTIONS(2556), - [anon_sym_null] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2554), - [anon_sym_false] = ACTIONS(2554), - [aux_sym__val_number_decimal_token1] = ACTIONS(2554), - [aux_sym__val_number_decimal_token2] = ACTIONS(2556), - [aux_sym__val_number_decimal_token3] = ACTIONS(2556), - [aux_sym__val_number_decimal_token4] = ACTIONS(2556), - [aux_sym__val_number_token1] = ACTIONS(2556), - [aux_sym__val_number_token2] = ACTIONS(2556), - [aux_sym__val_number_token3] = ACTIONS(2556), - [aux_sym__val_number_token4] = ACTIONS(2554), - [aux_sym__val_number_token5] = ACTIONS(2554), - [aux_sym__val_number_token6] = ACTIONS(2554), - [anon_sym_0b] = ACTIONS(2554), - [anon_sym_0o] = ACTIONS(2554), - [anon_sym_0x] = ACTIONS(2554), - [sym_val_date] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [sym__str_single_quotes] = ACTIONS(2556), - [sym__str_back_ticks] = ACTIONS(2556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2556), - [aux_sym_env_var_token1] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [aux_sym_command_token1] = ACTIONS(2556), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2556), - }, - [744] = { - [sym_comment] = STATE(744), - [anon_sym_export] = ACTIONS(1056), - [anon_sym_alias] = ACTIONS(1056), - [anon_sym_let] = ACTIONS(1056), - [anon_sym_let_DASHenv] = ACTIONS(1056), - [anon_sym_mut] = ACTIONS(1056), - [anon_sym_const] = ACTIONS(1056), - [aux_sym_cmd_identifier_token1] = ACTIONS(1056), - [aux_sym_cmd_identifier_token2] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token9] = ACTIONS(1056), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1056), - [aux_sym_cmd_identifier_token13] = ACTIONS(1056), - [aux_sym_cmd_identifier_token14] = ACTIONS(1056), - [aux_sym_cmd_identifier_token15] = ACTIONS(1056), - [aux_sym_cmd_identifier_token16] = ACTIONS(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(1056), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [aux_sym_cmd_identifier_token37] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1056), - [anon_sym_export_DASHenv] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_module] = ACTIONS(1056), - [anon_sym_use] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1056), - [anon_sym_loop] = ACTIONS(1056), - [anon_sym_make] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_do] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_source] = ACTIONS(1056), - [anon_sym_source_DASHenv] = ACTIONS(1056), - [anon_sym_register] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_hide_DASHenv] = ACTIONS(1056), - [anon_sym_overlay] = ACTIONS(1056), - [anon_sym_as] = ACTIONS(1056), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [aux_sym__val_number_token4] = ACTIONS(1056), - [aux_sym__val_number_token5] = ACTIONS(1056), - [aux_sym__val_number_token6] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1058), - }, - [745] = { - [sym_comment] = STATE(745), - [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(251), - [sym_raw_string_begin] = ACTIONS(2427), - }, - [746] = { - [sym_comment] = STATE(746), - [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(251), - [sym_raw_string_begin] = ACTIONS(2431), - }, - [747] = { - [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(2201), - [anon_sym_alias] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_let_DASHenv] = ACTIONS(2201), - [anon_sym_mut] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [aux_sym_cmd_identifier_token1] = ACTIONS(2201), - [aux_sym_cmd_identifier_token2] = ACTIONS(2203), - [aux_sym_cmd_identifier_token3] = ACTIONS(2203), - [aux_sym_cmd_identifier_token4] = ACTIONS(2203), - [aux_sym_cmd_identifier_token5] = ACTIONS(2203), - [aux_sym_cmd_identifier_token6] = ACTIONS(2203), - [aux_sym_cmd_identifier_token7] = ACTIONS(2203), - [aux_sym_cmd_identifier_token8] = ACTIONS(2201), - [aux_sym_cmd_identifier_token9] = ACTIONS(2201), - [aux_sym_cmd_identifier_token10] = ACTIONS(2203), - [aux_sym_cmd_identifier_token11] = ACTIONS(2203), - [aux_sym_cmd_identifier_token12] = ACTIONS(2201), - [aux_sym_cmd_identifier_token13] = ACTIONS(2201), - [aux_sym_cmd_identifier_token14] = ACTIONS(2201), - [aux_sym_cmd_identifier_token15] = ACTIONS(2201), - [aux_sym_cmd_identifier_token16] = ACTIONS(2203), - [aux_sym_cmd_identifier_token17] = ACTIONS(2203), - [aux_sym_cmd_identifier_token18] = ACTIONS(2203), - [aux_sym_cmd_identifier_token19] = ACTIONS(2203), - [aux_sym_cmd_identifier_token20] = ACTIONS(2203), - [aux_sym_cmd_identifier_token21] = ACTIONS(2203), - [aux_sym_cmd_identifier_token22] = ACTIONS(2203), - [aux_sym_cmd_identifier_token23] = ACTIONS(2203), - [aux_sym_cmd_identifier_token24] = ACTIONS(2203), - [aux_sym_cmd_identifier_token25] = ACTIONS(2203), - [aux_sym_cmd_identifier_token26] = ACTIONS(2203), - [aux_sym_cmd_identifier_token27] = ACTIONS(2203), - [aux_sym_cmd_identifier_token28] = ACTIONS(2203), - [aux_sym_cmd_identifier_token29] = ACTIONS(2203), - [aux_sym_cmd_identifier_token30] = ACTIONS(2203), - [aux_sym_cmd_identifier_token31] = ACTIONS(2203), - [aux_sym_cmd_identifier_token32] = ACTIONS(2203), - [aux_sym_cmd_identifier_token33] = ACTIONS(2203), - [aux_sym_cmd_identifier_token34] = ACTIONS(2201), - [aux_sym_cmd_identifier_token35] = ACTIONS(2203), - [aux_sym_cmd_identifier_token36] = ACTIONS(2203), - [aux_sym_cmd_identifier_token37] = ACTIONS(2203), - [aux_sym_cmd_identifier_token38] = ACTIONS(2201), - [aux_sym_cmd_identifier_token39] = ACTIONS(2203), - [aux_sym_cmd_identifier_token40] = ACTIONS(2203), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_export_DASHenv] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2203), - [anon_sym_error] = ACTIONS(2201), - [anon_sym_DASH2] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_in2] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_make] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_do] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_else] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_catch] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_source] = ACTIONS(2201), - [anon_sym_source_DASHenv] = ACTIONS(2201), - [anon_sym_register] = ACTIONS(2201), - [anon_sym_hide] = ACTIONS(2201), - [anon_sym_hide_DASHenv] = ACTIONS(2201), - [anon_sym_overlay] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_PLUS2] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2203), - [aux_sym__val_number_decimal_token1] = ACTIONS(2201), - [aux_sym__val_number_decimal_token2] = ACTIONS(2203), - [aux_sym__val_number_decimal_token3] = ACTIONS(2203), - [aux_sym__val_number_decimal_token4] = ACTIONS(2203), - [aux_sym__val_number_token1] = ACTIONS(2203), - [aux_sym__val_number_token2] = ACTIONS(2203), - [aux_sym__val_number_token3] = ACTIONS(2203), - [aux_sym__val_number_token4] = ACTIONS(2201), - [aux_sym__val_number_token5] = ACTIONS(2201), - [aux_sym__val_number_token6] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(2203), - [sym__str_single_quotes] = ACTIONS(2203), - [sym__str_back_ticks] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2203), - }, - [748] = { - [sym_comment] = STATE(748), [anon_sym_export] = ACTIONS(2379), [anon_sym_alias] = ACTIONS(2379), [anon_sym_let] = ACTIONS(2379), @@ -162494,55 +164203,946 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2381), }, - [749] = { - [sym_comment] = STATE(749), - [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), + [741] = { + [sym_comment] = STATE(741), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_alias] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_let_DASHenv] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [aux_sym_cmd_identifier_token1] = ACTIONS(2197), + [aux_sym_cmd_identifier_token2] = ACTIONS(2199), + [aux_sym_cmd_identifier_token3] = ACTIONS(2199), + [aux_sym_cmd_identifier_token4] = ACTIONS(2199), + [aux_sym_cmd_identifier_token5] = ACTIONS(2199), + [aux_sym_cmd_identifier_token6] = ACTIONS(2199), + [aux_sym_cmd_identifier_token7] = ACTIONS(2199), + [aux_sym_cmd_identifier_token8] = ACTIONS(2197), + [aux_sym_cmd_identifier_token9] = ACTIONS(2197), + [aux_sym_cmd_identifier_token10] = ACTIONS(2199), + [aux_sym_cmd_identifier_token11] = ACTIONS(2199), + [aux_sym_cmd_identifier_token12] = ACTIONS(2197), + [aux_sym_cmd_identifier_token13] = ACTIONS(2197), + [aux_sym_cmd_identifier_token14] = ACTIONS(2197), + [aux_sym_cmd_identifier_token15] = ACTIONS(2197), + [aux_sym_cmd_identifier_token16] = ACTIONS(2199), + [aux_sym_cmd_identifier_token17] = ACTIONS(2199), + [aux_sym_cmd_identifier_token18] = ACTIONS(2199), + [aux_sym_cmd_identifier_token19] = ACTIONS(2199), + [aux_sym_cmd_identifier_token20] = ACTIONS(2199), + [aux_sym_cmd_identifier_token21] = ACTIONS(2199), + [aux_sym_cmd_identifier_token22] = ACTIONS(2199), + [aux_sym_cmd_identifier_token23] = ACTIONS(2199), + [aux_sym_cmd_identifier_token24] = ACTIONS(2199), + [aux_sym_cmd_identifier_token25] = ACTIONS(2199), + [aux_sym_cmd_identifier_token26] = ACTIONS(2199), + [aux_sym_cmd_identifier_token27] = ACTIONS(2199), + [aux_sym_cmd_identifier_token28] = ACTIONS(2199), + [aux_sym_cmd_identifier_token29] = ACTIONS(2199), + [aux_sym_cmd_identifier_token30] = ACTIONS(2199), + [aux_sym_cmd_identifier_token31] = ACTIONS(2199), + [aux_sym_cmd_identifier_token32] = ACTIONS(2199), + [aux_sym_cmd_identifier_token33] = ACTIONS(2199), + [aux_sym_cmd_identifier_token34] = ACTIONS(2197), + [aux_sym_cmd_identifier_token35] = ACTIONS(2199), + [aux_sym_cmd_identifier_token36] = ACTIONS(2199), + [aux_sym_cmd_identifier_token37] = ACTIONS(2199), + [aux_sym_cmd_identifier_token38] = ACTIONS(2197), + [aux_sym_cmd_identifier_token39] = ACTIONS(2199), + [aux_sym_cmd_identifier_token40] = ACTIONS(2199), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_export_DASHenv] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_error] = ACTIONS(2197), + [anon_sym_DASH2] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_in2] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_make] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_catch] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_source] = ACTIONS(2197), + [anon_sym_source_DASHenv] = ACTIONS(2197), + [anon_sym_register] = ACTIONS(2197), + [anon_sym_hide] = ACTIONS(2197), + [anon_sym_hide_DASHenv] = ACTIONS(2197), + [anon_sym_overlay] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_PLUS2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), + [aux_sym__val_number_decimal_token1] = ACTIONS(2197), + [aux_sym__val_number_decimal_token2] = ACTIONS(2199), + [aux_sym__val_number_decimal_token3] = ACTIONS(2199), + [aux_sym__val_number_decimal_token4] = ACTIONS(2199), + [aux_sym__val_number_token1] = ACTIONS(2199), + [aux_sym__val_number_token2] = ACTIONS(2199), + [aux_sym__val_number_token3] = ACTIONS(2199), + [aux_sym__val_number_token4] = ACTIONS(2197), + [aux_sym__val_number_token5] = ACTIONS(2197), + [aux_sym__val_number_token6] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2199), + [sym__str_single_quotes] = ACTIONS(2199), + [sym__str_back_ticks] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2199), + }, + [742] = { + [sym_comment] = STATE(742), + [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_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(251), + [sym_raw_string_begin] = ACTIONS(1935), + }, + [743] = { + [aux_sym__pipe_separator] = STATE(717), + [sym_comment] = STATE(743), + [aux_sym_shebang_repeat1] = STATE(5492), + [aux_sym_cmd_identifier_token1] = ACTIONS(2554), + [aux_sym_cmd_identifier_token2] = ACTIONS(2556), + [aux_sym_cmd_identifier_token3] = ACTIONS(2556), + [aux_sym_cmd_identifier_token4] = ACTIONS(2556), + [aux_sym_cmd_identifier_token5] = ACTIONS(2556), + [aux_sym_cmd_identifier_token6] = ACTIONS(2556), + [aux_sym_cmd_identifier_token7] = ACTIONS(2556), + [aux_sym_cmd_identifier_token8] = ACTIONS(2556), + [aux_sym_cmd_identifier_token9] = ACTIONS(2554), + [aux_sym_cmd_identifier_token10] = ACTIONS(2556), + [aux_sym_cmd_identifier_token11] = ACTIONS(2556), + [aux_sym_cmd_identifier_token12] = ACTIONS(2556), + [aux_sym_cmd_identifier_token13] = ACTIONS(2554), + [aux_sym_cmd_identifier_token14] = ACTIONS(2556), + [aux_sym_cmd_identifier_token15] = ACTIONS(2554), + [aux_sym_cmd_identifier_token16] = ACTIONS(2556), + [aux_sym_cmd_identifier_token17] = ACTIONS(2556), + [aux_sym_cmd_identifier_token18] = ACTIONS(2554), + [aux_sym_cmd_identifier_token19] = ACTIONS(2556), + [aux_sym_cmd_identifier_token20] = ACTIONS(2556), + [aux_sym_cmd_identifier_token21] = ACTIONS(2556), + [aux_sym_cmd_identifier_token22] = ACTIONS(2556), + [aux_sym_cmd_identifier_token23] = ACTIONS(2556), + [aux_sym_cmd_identifier_token24] = ACTIONS(2556), + [aux_sym_cmd_identifier_token25] = ACTIONS(2556), + [aux_sym_cmd_identifier_token26] = ACTIONS(2556), + [aux_sym_cmd_identifier_token27] = ACTIONS(2556), + [aux_sym_cmd_identifier_token28] = ACTIONS(2556), + [aux_sym_cmd_identifier_token29] = ACTIONS(2556), + [aux_sym_cmd_identifier_token30] = ACTIONS(2556), + [aux_sym_cmd_identifier_token31] = ACTIONS(2556), + [aux_sym_cmd_identifier_token32] = ACTIONS(2554), + [aux_sym_cmd_identifier_token33] = ACTIONS(2556), + [aux_sym_cmd_identifier_token34] = ACTIONS(2554), + [aux_sym_cmd_identifier_token35] = ACTIONS(2556), + [aux_sym_cmd_identifier_token36] = ACTIONS(2556), + [aux_sym_cmd_identifier_token37] = ACTIONS(2556), + [aux_sym_cmd_identifier_token38] = ACTIONS(2554), + [aux_sym_cmd_identifier_token39] = ACTIONS(2556), + [aux_sym_cmd_identifier_token40] = ACTIONS(2556), + [sym__newline] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_err_GT_PIPE] = ACTIONS(2552), + [anon_sym_out_GT_PIPE] = ACTIONS(2552), + [anon_sym_e_GT_PIPE] = ACTIONS(2552), + [anon_sym_o_GT_PIPE] = ACTIONS(2552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2556), + [anon_sym_DOLLAR] = ACTIONS(2554), + [anon_sym_DASH2] = ACTIONS(2554), + [anon_sym_break] = ACTIONS(2554), + [anon_sym_continue] = ACTIONS(2554), + [anon_sym_do] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2554), + [anon_sym_match] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2556), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_return] = ACTIONS(2554), + [anon_sym_where] = ACTIONS(2556), + [aux_sym_expr_unary_token1] = ACTIONS(2556), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), + [anon_sym_DOT_DOT_LT] = ACTIONS(2556), + [anon_sym_null] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2554), + [anon_sym_false] = ACTIONS(2554), + [aux_sym__val_number_decimal_token1] = ACTIONS(2554), + [aux_sym__val_number_decimal_token2] = ACTIONS(2556), + [aux_sym__val_number_decimal_token3] = ACTIONS(2556), + [aux_sym__val_number_decimal_token4] = ACTIONS(2556), + [aux_sym__val_number_token1] = ACTIONS(2556), + [aux_sym__val_number_token2] = ACTIONS(2556), + [aux_sym__val_number_token3] = ACTIONS(2556), + [aux_sym__val_number_token4] = ACTIONS(2554), + [aux_sym__val_number_token5] = ACTIONS(2554), + [aux_sym__val_number_token6] = ACTIONS(2554), + [anon_sym_0b] = ACTIONS(2554), + [anon_sym_0o] = ACTIONS(2554), + [anon_sym_0x] = ACTIONS(2554), + [sym_val_date] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2556), + [sym__str_single_quotes] = ACTIONS(2556), + [sym__str_back_ticks] = ACTIONS(2556), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2556), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2556), + [aux_sym_env_var_token1] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2556), + [aux_sym_command_token1] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2556), + }, + [744] = { + [sym_comment] = STATE(744), + [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(2526), + [aux_sym_cmd_identifier_token3] = ACTIONS(2526), + [aux_sym_cmd_identifier_token4] = ACTIONS(2526), + [aux_sym_cmd_identifier_token5] = ACTIONS(2526), + [aux_sym_cmd_identifier_token6] = ACTIONS(2526), + [aux_sym_cmd_identifier_token7] = ACTIONS(2526), + [aux_sym_cmd_identifier_token8] = ACTIONS(2524), + [aux_sym_cmd_identifier_token9] = ACTIONS(2524), + [aux_sym_cmd_identifier_token10] = ACTIONS(2526), + [aux_sym_cmd_identifier_token11] = ACTIONS(2526), + [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(2526), + [aux_sym_cmd_identifier_token17] = ACTIONS(2526), + [aux_sym_cmd_identifier_token18] = ACTIONS(2526), + [aux_sym_cmd_identifier_token19] = ACTIONS(2526), + [aux_sym_cmd_identifier_token20] = ACTIONS(2526), + [aux_sym_cmd_identifier_token21] = ACTIONS(2526), + [aux_sym_cmd_identifier_token22] = ACTIONS(2526), + [aux_sym_cmd_identifier_token23] = ACTIONS(2526), + [aux_sym_cmd_identifier_token24] = ACTIONS(2526), + [aux_sym_cmd_identifier_token25] = ACTIONS(2526), + [aux_sym_cmd_identifier_token26] = ACTIONS(2526), + [aux_sym_cmd_identifier_token27] = ACTIONS(2526), + [aux_sym_cmd_identifier_token28] = ACTIONS(2526), + [aux_sym_cmd_identifier_token29] = ACTIONS(2526), + [aux_sym_cmd_identifier_token30] = ACTIONS(2526), + [aux_sym_cmd_identifier_token31] = ACTIONS(2526), + [aux_sym_cmd_identifier_token32] = ACTIONS(2526), + [aux_sym_cmd_identifier_token33] = ACTIONS(2526), + [aux_sym_cmd_identifier_token34] = ACTIONS(2524), + [aux_sym_cmd_identifier_token35] = ACTIONS(2526), + [aux_sym_cmd_identifier_token36] = ACTIONS(2526), + [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in2] = 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_as] = ACTIONS(2524), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2524), + [aux_sym__val_number_token5] = ACTIONS(2524), + [aux_sym__val_number_token6] = ACTIONS(2524), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2526), + }, + [745] = { + [sym_comment] = STATE(745), + [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(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(2482), + [aux_sym_cmd_identifier_token9] = ACTIONS(2482), + [aux_sym_cmd_identifier_token10] = ACTIONS(2484), + [aux_sym_cmd_identifier_token11] = ACTIONS(2484), + [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(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(2482), + [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(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_DASH2] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in2] = 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_as] = ACTIONS(2482), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2482), + [aux_sym__val_number_token5] = ACTIONS(2482), + [aux_sym__val_number_token6] = ACTIONS(2482), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2484), + }, + [746] = { + [sym_comment] = STATE(746), + [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(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(2470), + [aux_sym_cmd_identifier_token9] = ACTIONS(2470), + [aux_sym_cmd_identifier_token10] = ACTIONS(2472), + [aux_sym_cmd_identifier_token11] = ACTIONS(2472), + [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(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(2470), + [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(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_DASH2] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in2] = 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_as] = ACTIONS(2470), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2470), + [aux_sym__val_number_token5] = ACTIONS(2470), + [aux_sym__val_number_token6] = ACTIONS(2470), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2472), + }, + [747] = { + [sym_comment] = STATE(747), + [anon_sym_export] = ACTIONS(2443), + [anon_sym_alias] = ACTIONS(2443), + [anon_sym_let] = ACTIONS(2443), + [anon_sym_let_DASHenv] = ACTIONS(2443), + [anon_sym_mut] = ACTIONS(2443), + [anon_sym_const] = ACTIONS(2443), + [aux_sym_cmd_identifier_token1] = ACTIONS(2443), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(2443), + [aux_sym_cmd_identifier_token9] = ACTIONS(2443), + [aux_sym_cmd_identifier_token10] = ACTIONS(2445), + [aux_sym_cmd_identifier_token11] = ACTIONS(2445), + [aux_sym_cmd_identifier_token12] = ACTIONS(2443), + [aux_sym_cmd_identifier_token13] = ACTIONS(2443), + [aux_sym_cmd_identifier_token14] = ACTIONS(2443), + [aux_sym_cmd_identifier_token15] = ACTIONS(2443), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(2443), + [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(2443), + [aux_sym_cmd_identifier_token39] = ACTIONS(2445), + [aux_sym_cmd_identifier_token40] = ACTIONS(2445), + [anon_sym_def] = ACTIONS(2443), + [anon_sym_export_DASHenv] = ACTIONS(2443), + [anon_sym_extern] = ACTIONS(2443), + [anon_sym_module] = ACTIONS(2443), + [anon_sym_use] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2445), + [anon_sym_error] = ACTIONS(2443), + [anon_sym_DASH2] = ACTIONS(2443), + [anon_sym_break] = ACTIONS(2443), + [anon_sym_continue] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2443), + [anon_sym_in2] = ACTIONS(2443), + [anon_sym_loop] = ACTIONS(2443), + [anon_sym_make] = ACTIONS(2443), + [anon_sym_while] = ACTIONS(2443), + [anon_sym_do] = ACTIONS(2443), + [anon_sym_if] = ACTIONS(2443), + [anon_sym_else] = ACTIONS(2443), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2443), + [anon_sym_catch] = ACTIONS(2443), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_source] = ACTIONS(2443), + [anon_sym_source_DASHenv] = ACTIONS(2443), + [anon_sym_register] = ACTIONS(2443), + [anon_sym_hide] = ACTIONS(2443), + [anon_sym_hide_DASHenv] = ACTIONS(2443), + [anon_sym_overlay] = ACTIONS(2443), + [anon_sym_as] = ACTIONS(2443), + [anon_sym_PLUS2] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), + [aux_sym__val_number_decimal_token1] = ACTIONS(2443), + [aux_sym__val_number_decimal_token2] = ACTIONS(2445), + [aux_sym__val_number_decimal_token3] = ACTIONS(2445), + [aux_sym__val_number_decimal_token4] = ACTIONS(2445), + [aux_sym__val_number_token1] = ACTIONS(2445), + [aux_sym__val_number_token2] = ACTIONS(2445), + [aux_sym__val_number_token3] = ACTIONS(2445), + [aux_sym__val_number_token4] = ACTIONS(2443), + [aux_sym__val_number_token5] = ACTIONS(2443), + [aux_sym__val_number_token6] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym__str_single_quotes] = ACTIONS(2445), + [sym__str_back_ticks] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2445), + }, + [748] = { + [sym_comment] = STATE(748), + [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(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(2474), + [aux_sym_cmd_identifier_token9] = ACTIONS(2474), + [aux_sym_cmd_identifier_token10] = ACTIONS(2476), + [aux_sym_cmd_identifier_token11] = ACTIONS(2476), + [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(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(2474), + [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(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_DASH2] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in2] = 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_as] = ACTIONS(2474), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2474), + [aux_sym__val_number_token5] = ACTIONS(2474), + [aux_sym__val_number_token6] = ACTIONS(2474), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2476), + }, + [749] = { + [sym_comment] = STATE(749), + [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(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(2478), + [aux_sym_cmd_identifier_token9] = ACTIONS(2478), + [aux_sym_cmd_identifier_token10] = ACTIONS(2480), + [aux_sym_cmd_identifier_token11] = ACTIONS(2480), + [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(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(2478), + [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(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_DASH2] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in2] = 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_as] = ACTIONS(2478), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2478), + [aux_sym__val_number_token5] = ACTIONS(2478), + [aux_sym__val_number_token6] = ACTIONS(2478), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2480), + }, + [750] = { + [sym_comment] = STATE(750), + [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), @@ -162593,2925 +165193,2140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2385), }, - [750] = { - [sym_comment] = STATE(750), - [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(2112), - [aux_sym_cmd_identifier_token3] = ACTIONS(2112), - [aux_sym_cmd_identifier_token4] = ACTIONS(2112), - [aux_sym_cmd_identifier_token5] = ACTIONS(2112), - [aux_sym_cmd_identifier_token6] = ACTIONS(2112), - [aux_sym_cmd_identifier_token7] = ACTIONS(2112), - [aux_sym_cmd_identifier_token8] = ACTIONS(2106), - [aux_sym_cmd_identifier_token9] = ACTIONS(2106), - [aux_sym_cmd_identifier_token10] = ACTIONS(2112), - [aux_sym_cmd_identifier_token11] = ACTIONS(2112), - [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(2112), - [aux_sym_cmd_identifier_token17] = ACTIONS(2112), - [aux_sym_cmd_identifier_token18] = ACTIONS(2112), - [aux_sym_cmd_identifier_token19] = ACTIONS(2112), - [aux_sym_cmd_identifier_token20] = ACTIONS(2112), - [aux_sym_cmd_identifier_token21] = ACTIONS(2112), - [aux_sym_cmd_identifier_token22] = ACTIONS(2112), - [aux_sym_cmd_identifier_token23] = ACTIONS(2112), - [aux_sym_cmd_identifier_token24] = ACTIONS(2112), - [aux_sym_cmd_identifier_token25] = ACTIONS(2112), - [aux_sym_cmd_identifier_token26] = ACTIONS(2112), - [aux_sym_cmd_identifier_token27] = ACTIONS(2112), - [aux_sym_cmd_identifier_token28] = ACTIONS(2112), - [aux_sym_cmd_identifier_token29] = ACTIONS(2112), - [aux_sym_cmd_identifier_token30] = ACTIONS(2112), - [aux_sym_cmd_identifier_token31] = ACTIONS(2112), - [aux_sym_cmd_identifier_token32] = ACTIONS(2112), - [aux_sym_cmd_identifier_token33] = ACTIONS(2112), - [aux_sym_cmd_identifier_token34] = ACTIONS(2106), - [aux_sym_cmd_identifier_token35] = ACTIONS(2112), - [aux_sym_cmd_identifier_token36] = ACTIONS(2112), - [aux_sym_cmd_identifier_token37] = ACTIONS(2112), - [aux_sym_cmd_identifier_token38] = ACTIONS(2106), - [aux_sym_cmd_identifier_token39] = ACTIONS(2112), - [aux_sym_cmd_identifier_token40] = ACTIONS(2112), - [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(2112), - [anon_sym_DOLLAR] = ACTIONS(2112), - [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(2112), - [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(2112), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2112), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_decimal_token2] = ACTIONS(2112), - [aux_sym__val_number_decimal_token3] = ACTIONS(2112), - [aux_sym__val_number_decimal_token4] = ACTIONS(2112), - [aux_sym__val_number_token1] = ACTIONS(2112), - [aux_sym__val_number_token2] = ACTIONS(2112), - [aux_sym__val_number_token3] = ACTIONS(2112), - [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(2112), - [sym__str_single_quotes] = ACTIONS(2112), - [sym__str_back_ticks] = ACTIONS(2112), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2112), - }, [751] = { [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [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(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [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(1008), - [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(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [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), + [anon_sym_export] = ACTIONS(2447), + [anon_sym_alias] = ACTIONS(2447), + [anon_sym_let] = ACTIONS(2447), + [anon_sym_let_DASHenv] = ACTIONS(2447), + [anon_sym_mut] = ACTIONS(2447), + [anon_sym_const] = ACTIONS(2447), + [aux_sym_cmd_identifier_token1] = ACTIONS(2447), + [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(2447), + [aux_sym_cmd_identifier_token9] = ACTIONS(2447), + [aux_sym_cmd_identifier_token10] = ACTIONS(2449), + [aux_sym_cmd_identifier_token11] = ACTIONS(2449), + [aux_sym_cmd_identifier_token12] = ACTIONS(2447), + [aux_sym_cmd_identifier_token13] = ACTIONS(2447), + [aux_sym_cmd_identifier_token14] = ACTIONS(2447), + [aux_sym_cmd_identifier_token15] = ACTIONS(2447), + [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(2447), + [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(2447), + [aux_sym_cmd_identifier_token39] = ACTIONS(2449), + [aux_sym_cmd_identifier_token40] = ACTIONS(2449), + [anon_sym_def] = ACTIONS(2447), + [anon_sym_export_DASHenv] = ACTIONS(2447), + [anon_sym_extern] = ACTIONS(2447), + [anon_sym_module] = ACTIONS(2447), + [anon_sym_use] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_error] = ACTIONS(2447), + [anon_sym_DASH2] = ACTIONS(2447), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_for] = ACTIONS(2447), + [anon_sym_in2] = ACTIONS(2447), + [anon_sym_loop] = ACTIONS(2447), + [anon_sym_make] = ACTIONS(2447), + [anon_sym_while] = ACTIONS(2447), + [anon_sym_do] = ACTIONS(2447), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_else] = ACTIONS(2447), + [anon_sym_match] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2447), + [anon_sym_catch] = ACTIONS(2447), + [anon_sym_return] = ACTIONS(2447), + [anon_sym_source] = ACTIONS(2447), + [anon_sym_source_DASHenv] = ACTIONS(2447), + [anon_sym_register] = ACTIONS(2447), + [anon_sym_hide] = ACTIONS(2447), + [anon_sym_hide_DASHenv] = ACTIONS(2447), + [anon_sym_overlay] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2447), + [anon_sym_PLUS2] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), + [aux_sym__val_number_decimal_token1] = ACTIONS(2447), + [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(2447), + [aux_sym__val_number_token5] = ACTIONS(2447), + [aux_sym__val_number_token6] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(2449), + [sym__str_single_quotes] = ACTIONS(2449), + [sym__str_back_ticks] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [sym_raw_string_begin] = ACTIONS(2449), }, [752] = { [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [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(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [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(1004), - [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(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [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(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_alias] = ACTIONS(1687), + [anon_sym_let] = ACTIONS(1687), + [anon_sym_let_DASHenv] = ACTIONS(1687), + [anon_sym_mut] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [aux_sym_cmd_identifier_token1] = ACTIONS(1687), + [aux_sym_cmd_identifier_token2] = ACTIONS(1699), + [aux_sym_cmd_identifier_token3] = ACTIONS(1699), + [aux_sym_cmd_identifier_token4] = ACTIONS(1699), + [aux_sym_cmd_identifier_token5] = ACTIONS(1699), + [aux_sym_cmd_identifier_token6] = ACTIONS(1699), + [aux_sym_cmd_identifier_token7] = ACTIONS(1699), + [aux_sym_cmd_identifier_token8] = ACTIONS(1687), + [aux_sym_cmd_identifier_token9] = ACTIONS(1687), + [aux_sym_cmd_identifier_token10] = ACTIONS(1699), + [aux_sym_cmd_identifier_token11] = ACTIONS(1699), + [aux_sym_cmd_identifier_token12] = ACTIONS(1687), + [aux_sym_cmd_identifier_token13] = ACTIONS(1687), + [aux_sym_cmd_identifier_token14] = ACTIONS(1687), + [aux_sym_cmd_identifier_token15] = ACTIONS(1687), + [aux_sym_cmd_identifier_token16] = ACTIONS(1699), + [aux_sym_cmd_identifier_token17] = ACTIONS(1699), + [aux_sym_cmd_identifier_token18] = ACTIONS(1699), + [aux_sym_cmd_identifier_token19] = ACTIONS(1699), + [aux_sym_cmd_identifier_token20] = ACTIONS(1699), + [aux_sym_cmd_identifier_token21] = ACTIONS(1699), + [aux_sym_cmd_identifier_token22] = ACTIONS(1699), + [aux_sym_cmd_identifier_token23] = ACTIONS(1699), + [aux_sym_cmd_identifier_token24] = ACTIONS(1699), + [aux_sym_cmd_identifier_token25] = ACTIONS(1699), + [aux_sym_cmd_identifier_token26] = ACTIONS(1699), + [aux_sym_cmd_identifier_token27] = ACTIONS(1699), + [aux_sym_cmd_identifier_token28] = ACTIONS(1699), + [aux_sym_cmd_identifier_token29] = ACTIONS(1699), + [aux_sym_cmd_identifier_token30] = ACTIONS(1699), + [aux_sym_cmd_identifier_token31] = ACTIONS(1699), + [aux_sym_cmd_identifier_token32] = ACTIONS(1699), + [aux_sym_cmd_identifier_token33] = ACTIONS(1699), + [aux_sym_cmd_identifier_token34] = ACTIONS(1687), + [aux_sym_cmd_identifier_token35] = ACTIONS(1699), + [aux_sym_cmd_identifier_token36] = ACTIONS(1699), + [aux_sym_cmd_identifier_token37] = ACTIONS(1699), + [aux_sym_cmd_identifier_token38] = ACTIONS(1687), + [aux_sym_cmd_identifier_token39] = ACTIONS(1699), + [aux_sym_cmd_identifier_token40] = ACTIONS(1699), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_export_DASHenv] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_use] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1699), + [anon_sym_error] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_loop] = ACTIONS(1687), + [anon_sym_make] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_catch] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_source] = ACTIONS(1687), + [anon_sym_source_DASHenv] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_hide] = ACTIONS(1687), + [anon_sym_hide_DASHenv] = ACTIONS(1687), + [anon_sym_overlay] = ACTIONS(1687), + [anon_sym_as] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), }, [753] = { [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [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(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [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(996), - [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(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [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(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [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), + [anon_sym_export] = ACTIONS(2411), + [anon_sym_alias] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_DASHenv] = ACTIONS(2411), + [anon_sym_mut] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [aux_sym_cmd_identifier_token1] = ACTIONS(2411), + [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(2411), + [aux_sym_cmd_identifier_token9] = ACTIONS(2411), + [aux_sym_cmd_identifier_token10] = ACTIONS(2413), + [aux_sym_cmd_identifier_token11] = ACTIONS(2413), + [aux_sym_cmd_identifier_token12] = ACTIONS(2411), + [aux_sym_cmd_identifier_token13] = ACTIONS(2411), + [aux_sym_cmd_identifier_token14] = ACTIONS(2411), + [aux_sym_cmd_identifier_token15] = ACTIONS(2411), + [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(2411), + [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(2411), + [aux_sym_cmd_identifier_token39] = ACTIONS(2413), + [aux_sym_cmd_identifier_token40] = ACTIONS(2413), + [anon_sym_def] = ACTIONS(2411), + [anon_sym_export_DASHenv] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym_module] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_error] = ACTIONS(2411), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_in2] = ACTIONS(2411), + [anon_sym_loop] = ACTIONS(2411), + [anon_sym_make] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_source] = ACTIONS(2411), + [anon_sym_source_DASHenv] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_hide] = ACTIONS(2411), + [anon_sym_hide_DASHenv] = ACTIONS(2411), + [anon_sym_overlay] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), + [aux_sym__val_number_decimal_token1] = ACTIONS(2411), + [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(2411), + [aux_sym__val_number_token5] = ACTIONS(2411), + [aux_sym__val_number_token6] = ACTIONS(2411), + [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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + [sym_raw_string_begin] = ACTIONS(2413), }, [754] = { [sym_comment] = STATE(754), - [anon_sym_export] = ACTIONS(2560), - [anon_sym_alias] = ACTIONS(2560), - [anon_sym_let] = ACTIONS(2560), - [anon_sym_let_DASHenv] = ACTIONS(2560), - [anon_sym_mut] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2560), - [aux_sym_cmd_identifier_token1] = ACTIONS(2560), - [aux_sym_cmd_identifier_token2] = ACTIONS(2562), - [aux_sym_cmd_identifier_token3] = ACTIONS(2562), - [aux_sym_cmd_identifier_token4] = ACTIONS(2562), - [aux_sym_cmd_identifier_token5] = ACTIONS(2562), - [aux_sym_cmd_identifier_token6] = ACTIONS(2562), - [aux_sym_cmd_identifier_token7] = ACTIONS(2562), - [aux_sym_cmd_identifier_token8] = ACTIONS(2560), - [aux_sym_cmd_identifier_token9] = ACTIONS(2560), - [aux_sym_cmd_identifier_token10] = ACTIONS(2562), - [aux_sym_cmd_identifier_token11] = ACTIONS(2562), - [aux_sym_cmd_identifier_token12] = ACTIONS(2560), - [aux_sym_cmd_identifier_token13] = ACTIONS(2560), - [aux_sym_cmd_identifier_token14] = ACTIONS(2560), - [aux_sym_cmd_identifier_token15] = ACTIONS(2560), - [aux_sym_cmd_identifier_token16] = ACTIONS(2562), - [aux_sym_cmd_identifier_token17] = ACTIONS(2562), - [aux_sym_cmd_identifier_token18] = ACTIONS(2562), - [aux_sym_cmd_identifier_token19] = ACTIONS(2562), - [aux_sym_cmd_identifier_token20] = ACTIONS(2562), - [aux_sym_cmd_identifier_token21] = ACTIONS(2562), - [aux_sym_cmd_identifier_token22] = ACTIONS(2562), - [aux_sym_cmd_identifier_token23] = ACTIONS(2562), - [aux_sym_cmd_identifier_token24] = ACTIONS(2562), - [aux_sym_cmd_identifier_token25] = ACTIONS(2562), - [aux_sym_cmd_identifier_token26] = ACTIONS(2562), - [aux_sym_cmd_identifier_token27] = ACTIONS(2562), - [aux_sym_cmd_identifier_token28] = ACTIONS(2562), - [aux_sym_cmd_identifier_token29] = ACTIONS(2562), - [aux_sym_cmd_identifier_token30] = ACTIONS(2562), - [aux_sym_cmd_identifier_token31] = ACTIONS(2562), - [aux_sym_cmd_identifier_token32] = ACTIONS(2562), - [aux_sym_cmd_identifier_token33] = ACTIONS(2562), - [aux_sym_cmd_identifier_token34] = ACTIONS(2560), - [aux_sym_cmd_identifier_token35] = ACTIONS(2562), - [aux_sym_cmd_identifier_token36] = ACTIONS(2562), - [aux_sym_cmd_identifier_token37] = ACTIONS(2562), - [aux_sym_cmd_identifier_token38] = ACTIONS(2560), - [aux_sym_cmd_identifier_token39] = ACTIONS(2562), - [aux_sym_cmd_identifier_token40] = ACTIONS(2562), - [anon_sym_def] = ACTIONS(2560), - [anon_sym_export_DASHenv] = ACTIONS(2560), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym_module] = ACTIONS(2560), - [anon_sym_use] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_DOLLAR] = ACTIONS(2562), - [anon_sym_error] = ACTIONS(2560), - [anon_sym_DASH2] = ACTIONS(2560), - [anon_sym_break] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2560), - [anon_sym_for] = ACTIONS(2560), - [anon_sym_in2] = ACTIONS(2560), - [anon_sym_loop] = ACTIONS(2560), - [anon_sym_make] = ACTIONS(2560), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_do] = ACTIONS(2560), - [anon_sym_if] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2560), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2560), - [anon_sym_catch] = ACTIONS(2560), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_source] = ACTIONS(2560), - [anon_sym_source_DASHenv] = ACTIONS(2560), - [anon_sym_register] = ACTIONS(2560), - [anon_sym_hide] = ACTIONS(2560), - [anon_sym_hide_DASHenv] = ACTIONS(2560), - [anon_sym_overlay] = ACTIONS(2560), - [anon_sym_as] = ACTIONS(2560), - [anon_sym_PLUS2] = ACTIONS(2560), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2562), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2562), - [aux_sym__val_number_decimal_token1] = ACTIONS(2560), - [aux_sym__val_number_decimal_token2] = ACTIONS(2562), - [aux_sym__val_number_decimal_token3] = ACTIONS(2562), - [aux_sym__val_number_decimal_token4] = ACTIONS(2562), - [aux_sym__val_number_token1] = ACTIONS(2562), - [aux_sym__val_number_token2] = ACTIONS(2562), - [aux_sym__val_number_token3] = ACTIONS(2562), - [aux_sym__val_number_token4] = ACTIONS(2560), - [aux_sym__val_number_token5] = ACTIONS(2560), - [aux_sym__val_number_token6] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2562), - [sym__str_single_quotes] = ACTIONS(2562), - [sym__str_back_ticks] = ACTIONS(2562), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2562), + [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(251), + [sym_raw_string_begin] = ACTIONS(2373), }, [755] = { [sym_comment] = STATE(755), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [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(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [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(1000), - [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(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), + [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(251), + [sym_raw_string_begin] = ACTIONS(2377), }, [756] = { [sym_comment] = STATE(756), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1308), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1308), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1308), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1306), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), - [aux_sym_cmd_identifier_token32] = ACTIONS(1306), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1306), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in2] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_make] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_catch] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_PLUS2] = ACTIONS(1308), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1306), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1306), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), - }, - [757] = { - [sym_comment] = STATE(757), - [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_export] = ACTIONS(2415), + [anon_sym_alias] = ACTIONS(2415), + [anon_sym_let] = ACTIONS(2415), + [anon_sym_let_DASHenv] = ACTIONS(2415), + [anon_sym_mut] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [aux_sym_cmd_identifier_token1] = ACTIONS(2415), + [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(2415), + [aux_sym_cmd_identifier_token9] = ACTIONS(2415), + [aux_sym_cmd_identifier_token10] = ACTIONS(2417), + [aux_sym_cmd_identifier_token11] = ACTIONS(2417), + [aux_sym_cmd_identifier_token12] = ACTIONS(2415), + [aux_sym_cmd_identifier_token13] = ACTIONS(2415), + [aux_sym_cmd_identifier_token14] = ACTIONS(2415), + [aux_sym_cmd_identifier_token15] = ACTIONS(2415), + [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(2415), + [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(2415), + [aux_sym_cmd_identifier_token39] = ACTIONS(2417), + [aux_sym_cmd_identifier_token40] = ACTIONS(2417), + [anon_sym_def] = ACTIONS(2415), + [anon_sym_export_DASHenv] = ACTIONS(2415), + [anon_sym_extern] = ACTIONS(2415), + [anon_sym_module] = ACTIONS(2415), + [anon_sym_use] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_error] = ACTIONS(2415), + [anon_sym_DASH2] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_in2] = ACTIONS(2415), + [anon_sym_loop] = ACTIONS(2415), + [anon_sym_make] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_do] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_else] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_catch] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_source] = ACTIONS(2415), + [anon_sym_source_DASHenv] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2415), + [anon_sym_hide] = ACTIONS(2415), + [anon_sym_hide_DASHenv] = ACTIONS(2415), + [anon_sym_overlay] = ACTIONS(2415), + [anon_sym_as] = ACTIONS(2415), + [anon_sym_PLUS2] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), + [aux_sym__val_number_decimal_token1] = ACTIONS(2415), + [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(2415), + [aux_sym__val_number_token5] = ACTIONS(2415), + [aux_sym__val_number_token6] = ACTIONS(2415), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2417), + }, + [757] = { + [sym_comment] = STATE(757), + [anon_sym_export] = ACTIONS(2427), + [anon_sym_alias] = ACTIONS(2427), + [anon_sym_let] = ACTIONS(2427), + [anon_sym_let_DASHenv] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [aux_sym_cmd_identifier_token1] = ACTIONS(2427), + [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(2427), + [aux_sym_cmd_identifier_token9] = ACTIONS(2427), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2427), + [aux_sym_cmd_identifier_token13] = ACTIONS(2427), + [aux_sym_cmd_identifier_token14] = ACTIONS(2427), + [aux_sym_cmd_identifier_token15] = ACTIONS(2427), + [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(2427), + [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(2427), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2427), + [anon_sym_export_DASHenv] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2427), + [anon_sym_module] = ACTIONS(2427), + [anon_sym_use] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2427), + [anon_sym_DASH2] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_in2] = ACTIONS(2427), + [anon_sym_loop] = ACTIONS(2427), + [anon_sym_make] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_do] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_else] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2427), + [anon_sym_catch] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_source] = ACTIONS(2427), + [anon_sym_source_DASHenv] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2427), + [anon_sym_hide] = ACTIONS(2427), + [anon_sym_hide_DASHenv] = ACTIONS(2427), + [anon_sym_overlay] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_PLUS2] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2427), + [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(2427), + [aux_sym__val_number_token5] = ACTIONS(2427), + [aux_sym__val_number_token6] = ACTIONS(2427), + [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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2435), + [sym_raw_string_begin] = ACTIONS(2429), }, [758] = { [sym_comment] = STATE(758), - [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(251), - [sym_raw_string_begin] = ACTIONS(2389), + [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(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(2486), + [aux_sym_cmd_identifier_token9] = ACTIONS(2486), + [aux_sym_cmd_identifier_token10] = ACTIONS(2488), + [aux_sym_cmd_identifier_token11] = ACTIONS(2488), + [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(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(2486), + [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(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_DASH2] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in2] = 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_as] = ACTIONS(2486), + [anon_sym_PLUS2] = 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), + [aux_sym__val_number_token4] = ACTIONS(2486), + [aux_sym__val_number_token5] = ACTIONS(2486), + [aux_sym__val_number_token6] = ACTIONS(2486), + [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_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2488), }, [759] = { [sym_comment] = STATE(759), - [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(251), - [sym_raw_string_begin] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2041), + [anon_sym_alias] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_let_DASHenv] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [aux_sym_cmd_identifier_token1] = ACTIONS(2041), + [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(2041), + [aux_sym_cmd_identifier_token9] = ACTIONS(2041), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2041), + [aux_sym_cmd_identifier_token13] = ACTIONS(2041), + [aux_sym_cmd_identifier_token14] = ACTIONS(2041), + [aux_sym_cmd_identifier_token15] = ACTIONS(2041), + [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(2041), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [aux_sym_cmd_identifier_token37] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2041), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2041), + [anon_sym_export_DASHenv] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_module] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2041), + [anon_sym_DASH2] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_in2] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_make] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_do] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_else] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2041), + [anon_sym_catch] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_source] = ACTIONS(2041), + [anon_sym_source_DASHenv] = ACTIONS(2041), + [anon_sym_register] = ACTIONS(2041), + [anon_sym_hide] = ACTIONS(2041), + [anon_sym_hide_DASHenv] = ACTIONS(2041), + [anon_sym_overlay] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_PLUS2] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2041), + [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), + [aux_sym__val_number_token4] = ACTIONS(2041), + [aux_sym__val_number_token5] = ACTIONS(2041), + [aux_sym__val_number_token6] = ACTIONS(2041), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2043), }, [760] = { [sym_comment] = STATE(760), - [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(251), - [sym_raw_string_begin] = ACTIONS(2443), + [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(251), + [sym_raw_string_begin] = ACTIONS(2494), }, [761] = { [sym_comment] = STATE(761), - [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_export] = ACTIONS(2528), + [anon_sym_alias] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_let_DASHenv] = ACTIONS(2528), + [anon_sym_mut] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [aux_sym_cmd_identifier_token1] = ACTIONS(2528), + [aux_sym_cmd_identifier_token2] = ACTIONS(2530), + [aux_sym_cmd_identifier_token3] = ACTIONS(2530), + [aux_sym_cmd_identifier_token4] = ACTIONS(2530), + [aux_sym_cmd_identifier_token5] = ACTIONS(2530), + [aux_sym_cmd_identifier_token6] = ACTIONS(2530), + [aux_sym_cmd_identifier_token7] = ACTIONS(2530), + [aux_sym_cmd_identifier_token8] = ACTIONS(2528), + [aux_sym_cmd_identifier_token9] = ACTIONS(2528), + [aux_sym_cmd_identifier_token10] = ACTIONS(2530), + [aux_sym_cmd_identifier_token11] = ACTIONS(2530), + [aux_sym_cmd_identifier_token12] = ACTIONS(2528), + [aux_sym_cmd_identifier_token13] = ACTIONS(2528), + [aux_sym_cmd_identifier_token14] = ACTIONS(2528), + [aux_sym_cmd_identifier_token15] = ACTIONS(2528), + [aux_sym_cmd_identifier_token16] = ACTIONS(2530), + [aux_sym_cmd_identifier_token17] = ACTIONS(2530), + [aux_sym_cmd_identifier_token18] = ACTIONS(2530), + [aux_sym_cmd_identifier_token19] = ACTIONS(2530), + [aux_sym_cmd_identifier_token20] = ACTIONS(2530), + [aux_sym_cmd_identifier_token21] = ACTIONS(2530), + [aux_sym_cmd_identifier_token22] = ACTIONS(2530), + [aux_sym_cmd_identifier_token23] = ACTIONS(2530), + [aux_sym_cmd_identifier_token24] = ACTIONS(2530), + [aux_sym_cmd_identifier_token25] = ACTIONS(2530), + [aux_sym_cmd_identifier_token26] = ACTIONS(2530), + [aux_sym_cmd_identifier_token27] = ACTIONS(2530), + [aux_sym_cmd_identifier_token28] = ACTIONS(2530), + [aux_sym_cmd_identifier_token29] = ACTIONS(2530), + [aux_sym_cmd_identifier_token30] = ACTIONS(2530), + [aux_sym_cmd_identifier_token31] = ACTIONS(2530), + [aux_sym_cmd_identifier_token32] = ACTIONS(2530), + [aux_sym_cmd_identifier_token33] = ACTIONS(2530), + [aux_sym_cmd_identifier_token34] = ACTIONS(2528), + [aux_sym_cmd_identifier_token35] = ACTIONS(2530), + [aux_sym_cmd_identifier_token36] = ACTIONS(2530), + [aux_sym_cmd_identifier_token37] = ACTIONS(2530), + [aux_sym_cmd_identifier_token38] = ACTIONS(2528), + [aux_sym_cmd_identifier_token39] = ACTIONS(2530), + [aux_sym_cmd_identifier_token40] = ACTIONS(2530), + [anon_sym_def] = ACTIONS(2528), + [anon_sym_export_DASHenv] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym_module] = ACTIONS(2528), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_DOLLAR] = ACTIONS(2530), + [anon_sym_error] = ACTIONS(2528), + [anon_sym_DASH2] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_in2] = ACTIONS(2528), + [anon_sym_loop] = ACTIONS(2528), + [anon_sym_make] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_catch] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_source] = ACTIONS(2528), + [anon_sym_source_DASHenv] = ACTIONS(2528), + [anon_sym_register] = ACTIONS(2528), + [anon_sym_hide] = ACTIONS(2528), + [anon_sym_hide_DASHenv] = ACTIONS(2528), + [anon_sym_overlay] = ACTIONS(2528), + [anon_sym_as] = ACTIONS(2528), + [anon_sym_PLUS2] = ACTIONS(2528), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2530), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2530), + [aux_sym__val_number_decimal_token1] = ACTIONS(2528), + [aux_sym__val_number_decimal_token2] = ACTIONS(2530), + [aux_sym__val_number_decimal_token3] = ACTIONS(2530), + [aux_sym__val_number_decimal_token4] = ACTIONS(2530), + [aux_sym__val_number_token1] = ACTIONS(2530), + [aux_sym__val_number_token2] = ACTIONS(2530), + [aux_sym__val_number_token3] = ACTIONS(2530), + [aux_sym__val_number_token4] = ACTIONS(2528), + [aux_sym__val_number_token5] = ACTIONS(2528), + [aux_sym__val_number_token6] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2530), + [sym__str_single_quotes] = ACTIONS(2530), + [sym__str_back_ticks] = ACTIONS(2530), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2530), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2409), + [sym_raw_string_begin] = ACTIONS(2530), }, [762] = { [sym_comment] = STATE(762), - [anon_sym_export] = ACTIONS(2088), - [anon_sym_alias] = ACTIONS(2088), - [anon_sym_let] = ACTIONS(2088), - [anon_sym_let_DASHenv] = ACTIONS(2088), - [anon_sym_mut] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [aux_sym_cmd_identifier_token1] = ACTIONS(2088), - [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(2088), - [aux_sym_cmd_identifier_token9] = ACTIONS(2088), - [aux_sym_cmd_identifier_token10] = ACTIONS(2094), - [aux_sym_cmd_identifier_token11] = ACTIONS(2094), - [aux_sym_cmd_identifier_token12] = ACTIONS(2088), - [aux_sym_cmd_identifier_token13] = ACTIONS(2088), - [aux_sym_cmd_identifier_token14] = ACTIONS(2088), - [aux_sym_cmd_identifier_token15] = ACTIONS(2088), - [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(2088), - [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(2088), - [aux_sym_cmd_identifier_token39] = ACTIONS(2094), - [aux_sym_cmd_identifier_token40] = ACTIONS(2094), - [anon_sym_def] = ACTIONS(2088), - [anon_sym_export_DASHenv] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_module] = ACTIONS(2088), - [anon_sym_use] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_error] = ACTIONS(2088), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_in2] = ACTIONS(2088), - [anon_sym_loop] = ACTIONS(2088), - [anon_sym_make] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_do] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_else] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2088), - [anon_sym_catch] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_source] = ACTIONS(2088), - [anon_sym_source_DASHenv] = ACTIONS(2088), - [anon_sym_register] = ACTIONS(2088), - [anon_sym_hide] = ACTIONS(2088), - [anon_sym_hide_DASHenv] = ACTIONS(2088), - [anon_sym_overlay] = ACTIONS(2088), - [anon_sym_as] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2094), - [aux_sym__val_number_decimal_token1] = ACTIONS(2088), - [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(2088), - [aux_sym__val_number_token5] = ACTIONS(2088), - [aux_sym__val_number_token6] = ACTIONS(2088), - [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), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1034), + [anon_sym_let] = ACTIONS(1034), + [anon_sym_let_DASHenv] = ACTIONS(1034), + [anon_sym_mut] = ACTIONS(1034), + [anon_sym_const] = ACTIONS(1034), + [aux_sym_cmd_identifier_token1] = ACTIONS(1034), + [aux_sym_cmd_identifier_token2] = ACTIONS(1036), + [aux_sym_cmd_identifier_token3] = ACTIONS(1036), + [aux_sym_cmd_identifier_token4] = ACTIONS(1036), + [aux_sym_cmd_identifier_token5] = ACTIONS(1036), + [aux_sym_cmd_identifier_token6] = ACTIONS(1036), + [aux_sym_cmd_identifier_token7] = ACTIONS(1036), + [aux_sym_cmd_identifier_token8] = ACTIONS(1034), + [aux_sym_cmd_identifier_token9] = ACTIONS(1034), + [aux_sym_cmd_identifier_token10] = ACTIONS(1036), + [aux_sym_cmd_identifier_token11] = ACTIONS(1036), + [aux_sym_cmd_identifier_token12] = ACTIONS(1034), + [aux_sym_cmd_identifier_token13] = ACTIONS(1034), + [aux_sym_cmd_identifier_token14] = ACTIONS(1034), + [aux_sym_cmd_identifier_token15] = ACTIONS(1034), + [aux_sym_cmd_identifier_token16] = ACTIONS(1036), + [aux_sym_cmd_identifier_token17] = ACTIONS(1036), + [aux_sym_cmd_identifier_token18] = ACTIONS(1036), + [aux_sym_cmd_identifier_token19] = ACTIONS(1036), + [aux_sym_cmd_identifier_token20] = ACTIONS(1036), + [aux_sym_cmd_identifier_token21] = ACTIONS(1036), + [aux_sym_cmd_identifier_token22] = ACTIONS(1036), + [aux_sym_cmd_identifier_token23] = ACTIONS(1036), + [aux_sym_cmd_identifier_token24] = ACTIONS(1036), + [aux_sym_cmd_identifier_token25] = ACTIONS(1036), + [aux_sym_cmd_identifier_token26] = ACTIONS(1036), + [aux_sym_cmd_identifier_token27] = ACTIONS(1036), + [aux_sym_cmd_identifier_token28] = ACTIONS(1036), + [aux_sym_cmd_identifier_token29] = ACTIONS(1036), + [aux_sym_cmd_identifier_token30] = ACTIONS(1036), + [aux_sym_cmd_identifier_token31] = ACTIONS(1036), + [aux_sym_cmd_identifier_token32] = ACTIONS(1036), + [aux_sym_cmd_identifier_token33] = ACTIONS(1036), + [aux_sym_cmd_identifier_token34] = ACTIONS(1034), + [aux_sym_cmd_identifier_token35] = ACTIONS(1036), + [aux_sym_cmd_identifier_token36] = ACTIONS(1036), + [aux_sym_cmd_identifier_token37] = ACTIONS(1036), + [aux_sym_cmd_identifier_token38] = ACTIONS(1034), + [aux_sym_cmd_identifier_token39] = ACTIONS(1036), + [aux_sym_cmd_identifier_token40] = ACTIONS(1036), + [anon_sym_def] = ACTIONS(1034), + [anon_sym_export_DASHenv] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [anon_sym_error] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1034), + [anon_sym_loop] = ACTIONS(1034), + [anon_sym_make] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_match] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1034), + [anon_sym_catch] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_source] = ACTIONS(1034), + [anon_sym_source_DASHenv] = ACTIONS(1034), + [anon_sym_register] = ACTIONS(1034), + [anon_sym_hide] = ACTIONS(1034), + [anon_sym_hide_DASHenv] = ACTIONS(1034), + [anon_sym_overlay] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2094), + [sym_raw_string_begin] = ACTIONS(1036), }, [763] = { [sym_comment] = STATE(763), - [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_export] = ACTIONS(2419), + [anon_sym_alias] = ACTIONS(2419), + [anon_sym_let] = ACTIONS(2419), + [anon_sym_let_DASHenv] = ACTIONS(2419), + [anon_sym_mut] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [aux_sym_cmd_identifier_token1] = ACTIONS(2419), + [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(2419), + [aux_sym_cmd_identifier_token9] = ACTIONS(2419), + [aux_sym_cmd_identifier_token10] = ACTIONS(2421), + [aux_sym_cmd_identifier_token11] = ACTIONS(2421), + [aux_sym_cmd_identifier_token12] = ACTIONS(2419), + [aux_sym_cmd_identifier_token13] = ACTIONS(2419), + [aux_sym_cmd_identifier_token14] = ACTIONS(2419), + [aux_sym_cmd_identifier_token15] = ACTIONS(2419), + [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(2419), + [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(2419), + [aux_sym_cmd_identifier_token39] = ACTIONS(2421), + [aux_sym_cmd_identifier_token40] = ACTIONS(2421), + [anon_sym_def] = ACTIONS(2419), + [anon_sym_export_DASHenv] = ACTIONS(2419), + [anon_sym_extern] = ACTIONS(2419), + [anon_sym_module] = ACTIONS(2419), + [anon_sym_use] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2419), + [anon_sym_DASH2] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_in2] = ACTIONS(2419), + [anon_sym_loop] = ACTIONS(2419), + [anon_sym_make] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_do] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_else] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_catch] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_source] = ACTIONS(2419), + [anon_sym_source_DASHenv] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2419), + [anon_sym_hide] = ACTIONS(2419), + [anon_sym_hide_DASHenv] = ACTIONS(2419), + [anon_sym_overlay] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_PLUS2] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), + [aux_sym__val_number_decimal_token1] = ACTIONS(2419), + [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(2419), + [aux_sym__val_number_token5] = ACTIONS(2419), + [aux_sym__val_number_token6] = ACTIONS(2419), + [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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2447), + [sym_raw_string_begin] = ACTIONS(2421), }, [764] = { [sym_comment] = STATE(764), - [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(251), - [sym_raw_string_begin] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(1941), + [anon_sym_alias] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_let_DASHenv] = ACTIONS(1941), + [anon_sym_mut] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [aux_sym_cmd_identifier_token1] = ACTIONS(1941), + [aux_sym_cmd_identifier_token2] = ACTIONS(1943), + [aux_sym_cmd_identifier_token3] = ACTIONS(1943), + [aux_sym_cmd_identifier_token4] = ACTIONS(1943), + [aux_sym_cmd_identifier_token5] = ACTIONS(1943), + [aux_sym_cmd_identifier_token6] = ACTIONS(1943), + [aux_sym_cmd_identifier_token7] = ACTIONS(1943), + [aux_sym_cmd_identifier_token8] = ACTIONS(1941), + [aux_sym_cmd_identifier_token9] = ACTIONS(1941), + [aux_sym_cmd_identifier_token10] = ACTIONS(1943), + [aux_sym_cmd_identifier_token11] = ACTIONS(1943), + [aux_sym_cmd_identifier_token12] = ACTIONS(1941), + [aux_sym_cmd_identifier_token13] = ACTIONS(1941), + [aux_sym_cmd_identifier_token14] = ACTIONS(1941), + [aux_sym_cmd_identifier_token15] = ACTIONS(1941), + [aux_sym_cmd_identifier_token16] = ACTIONS(1943), + [aux_sym_cmd_identifier_token17] = ACTIONS(1943), + [aux_sym_cmd_identifier_token18] = ACTIONS(1943), + [aux_sym_cmd_identifier_token19] = ACTIONS(1943), + [aux_sym_cmd_identifier_token20] = ACTIONS(1943), + [aux_sym_cmd_identifier_token21] = ACTIONS(1943), + [aux_sym_cmd_identifier_token22] = ACTIONS(1943), + [aux_sym_cmd_identifier_token23] = ACTIONS(1943), + [aux_sym_cmd_identifier_token24] = ACTIONS(1943), + [aux_sym_cmd_identifier_token25] = ACTIONS(1943), + [aux_sym_cmd_identifier_token26] = ACTIONS(1943), + [aux_sym_cmd_identifier_token27] = ACTIONS(1943), + [aux_sym_cmd_identifier_token28] = ACTIONS(1943), + [aux_sym_cmd_identifier_token29] = ACTIONS(1943), + [aux_sym_cmd_identifier_token30] = ACTIONS(1943), + [aux_sym_cmd_identifier_token31] = ACTIONS(1943), + [aux_sym_cmd_identifier_token32] = ACTIONS(1943), + [aux_sym_cmd_identifier_token33] = ACTIONS(1943), + [aux_sym_cmd_identifier_token34] = ACTIONS(1941), + [aux_sym_cmd_identifier_token35] = ACTIONS(1943), + [aux_sym_cmd_identifier_token36] = ACTIONS(1943), + [aux_sym_cmd_identifier_token37] = ACTIONS(1943), + [aux_sym_cmd_identifier_token38] = ACTIONS(1941), + [aux_sym_cmd_identifier_token39] = ACTIONS(1943), + [aux_sym_cmd_identifier_token40] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1941), + [anon_sym_export_DASHenv] = ACTIONS(1941), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_module] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1943), + [anon_sym_error] = ACTIONS(1941), + [anon_sym_DASH2] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_in2] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_make] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_else] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1941), + [anon_sym_catch] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_source] = ACTIONS(1941), + [anon_sym_source_DASHenv] = ACTIONS(1941), + [anon_sym_register] = ACTIONS(1941), + [anon_sym_hide] = ACTIONS(1941), + [anon_sym_hide_DASHenv] = ACTIONS(1941), + [anon_sym_overlay] = ACTIONS(1941), + [anon_sym_as] = ACTIONS(1941), + [anon_sym_PLUS2] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), + [aux_sym__val_number_decimal_token1] = ACTIONS(1941), + [aux_sym__val_number_decimal_token2] = ACTIONS(1943), + [aux_sym__val_number_decimal_token3] = ACTIONS(1943), + [aux_sym__val_number_decimal_token4] = ACTIONS(1943), + [aux_sym__val_number_token1] = ACTIONS(1943), + [aux_sym__val_number_token2] = ACTIONS(1943), + [aux_sym__val_number_token3] = ACTIONS(1943), + [aux_sym__val_number_token4] = ACTIONS(1941), + [aux_sym__val_number_token5] = ACTIONS(1941), + [aux_sym__val_number_token6] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym__str_single_quotes] = ACTIONS(1943), + [sym__str_back_ticks] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1943), }, [765] = { [sym_comment] = STATE(765), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1919), - [aux_sym_cmd_identifier_token3] = ACTIONS(1919), - [aux_sym_cmd_identifier_token4] = ACTIONS(1919), - [aux_sym_cmd_identifier_token5] = ACTIONS(1919), - [aux_sym_cmd_identifier_token6] = ACTIONS(1919), - [aux_sym_cmd_identifier_token7] = ACTIONS(1919), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1919), - [aux_sym_cmd_identifier_token11] = ACTIONS(1919), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1919), - [aux_sym_cmd_identifier_token17] = ACTIONS(1919), - [aux_sym_cmd_identifier_token18] = ACTIONS(1919), - [aux_sym_cmd_identifier_token19] = ACTIONS(1919), - [aux_sym_cmd_identifier_token20] = ACTIONS(1919), - [aux_sym_cmd_identifier_token21] = ACTIONS(1919), - [aux_sym_cmd_identifier_token22] = ACTIONS(1919), - [aux_sym_cmd_identifier_token23] = ACTIONS(1919), - [aux_sym_cmd_identifier_token24] = ACTIONS(1919), - [aux_sym_cmd_identifier_token25] = ACTIONS(1919), - [aux_sym_cmd_identifier_token26] = ACTIONS(1919), - [aux_sym_cmd_identifier_token27] = ACTIONS(1919), - [aux_sym_cmd_identifier_token28] = ACTIONS(1919), - [aux_sym_cmd_identifier_token29] = ACTIONS(1919), - [aux_sym_cmd_identifier_token30] = ACTIONS(1919), - [aux_sym_cmd_identifier_token31] = ACTIONS(1919), - [aux_sym_cmd_identifier_token32] = ACTIONS(1919), - [aux_sym_cmd_identifier_token33] = ACTIONS(1919), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1919), - [aux_sym_cmd_identifier_token36] = ACTIONS(1919), - [aux_sym_cmd_identifier_token37] = ACTIONS(1919), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1919), - [aux_sym_cmd_identifier_token40] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), + [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(251), + [sym_raw_string_begin] = ACTIONS(2498), }, [766] = { [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(2532), - [anon_sym_alias] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_let_DASHenv] = ACTIONS(2532), - [anon_sym_mut] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [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(2532), - [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(2532), - [aux_sym_cmd_identifier_token13] = ACTIONS(2532), - [aux_sym_cmd_identifier_token14] = ACTIONS(2532), - [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), - [anon_sym_def] = ACTIONS(2532), - [anon_sym_export_DASHenv] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_module] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_DOLLAR] = ACTIONS(2534), - [anon_sym_error] = ACTIONS(2532), - [anon_sym_DASH2] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_in2] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_make] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_do] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_catch] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_source] = ACTIONS(2532), - [anon_sym_source_DASHenv] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_hide] = ACTIONS(2532), - [anon_sym_hide_DASHenv] = ACTIONS(2532), - [anon_sym_overlay] = ACTIONS(2532), - [anon_sym_as] = ACTIONS(2532), - [anon_sym_PLUS2] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2534), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2534), - [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_DQUOTE] = ACTIONS(2534), - [sym__str_single_quotes] = ACTIONS(2534), - [sym__str_back_ticks] = ACTIONS(2534), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2534), + [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(251), - [sym_raw_string_begin] = ACTIONS(2534), + [sym_raw_string_begin] = ACTIONS(2365), }, [767] = { [sym_comment] = STATE(767), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_alias] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_let_DASHenv] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [aux_sym_cmd_identifier_token1] = ACTIONS(2453), - [aux_sym_cmd_identifier_token2] = ACTIONS(2455), - [aux_sym_cmd_identifier_token3] = ACTIONS(2455), - [aux_sym_cmd_identifier_token4] = ACTIONS(2455), - [aux_sym_cmd_identifier_token5] = ACTIONS(2455), - [aux_sym_cmd_identifier_token6] = ACTIONS(2455), - [aux_sym_cmd_identifier_token7] = ACTIONS(2455), - [aux_sym_cmd_identifier_token8] = ACTIONS(2453), - [aux_sym_cmd_identifier_token9] = ACTIONS(2453), - [aux_sym_cmd_identifier_token10] = ACTIONS(2455), - [aux_sym_cmd_identifier_token11] = ACTIONS(2455), - [aux_sym_cmd_identifier_token12] = ACTIONS(2453), - [aux_sym_cmd_identifier_token13] = ACTIONS(2453), - [aux_sym_cmd_identifier_token14] = ACTIONS(2453), - [aux_sym_cmd_identifier_token15] = ACTIONS(2453), - [aux_sym_cmd_identifier_token16] = ACTIONS(2455), - [aux_sym_cmd_identifier_token17] = ACTIONS(2455), - [aux_sym_cmd_identifier_token18] = ACTIONS(2455), - [aux_sym_cmd_identifier_token19] = ACTIONS(2455), - [aux_sym_cmd_identifier_token20] = ACTIONS(2455), - [aux_sym_cmd_identifier_token21] = ACTIONS(2455), - [aux_sym_cmd_identifier_token22] = ACTIONS(2455), - [aux_sym_cmd_identifier_token23] = ACTIONS(2455), - [aux_sym_cmd_identifier_token24] = ACTIONS(2455), - [aux_sym_cmd_identifier_token25] = ACTIONS(2455), - [aux_sym_cmd_identifier_token26] = ACTIONS(2455), - [aux_sym_cmd_identifier_token27] = ACTIONS(2455), - [aux_sym_cmd_identifier_token28] = ACTIONS(2455), - [aux_sym_cmd_identifier_token29] = ACTIONS(2455), - [aux_sym_cmd_identifier_token30] = ACTIONS(2455), - [aux_sym_cmd_identifier_token31] = ACTIONS(2455), - [aux_sym_cmd_identifier_token32] = ACTIONS(2455), - [aux_sym_cmd_identifier_token33] = ACTIONS(2455), - [aux_sym_cmd_identifier_token34] = ACTIONS(2453), - [aux_sym_cmd_identifier_token35] = ACTIONS(2455), - [aux_sym_cmd_identifier_token36] = ACTIONS(2455), - [aux_sym_cmd_identifier_token37] = ACTIONS(2455), - [aux_sym_cmd_identifier_token38] = ACTIONS(2453), - [aux_sym_cmd_identifier_token39] = ACTIONS(2455), - [aux_sym_cmd_identifier_token40] = ACTIONS(2455), - [anon_sym_def] = ACTIONS(2453), - [anon_sym_export_DASHenv] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_error] = ACTIONS(2453), - [anon_sym_DASH2] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_in2] = ACTIONS(2453), - [anon_sym_loop] = ACTIONS(2453), - [anon_sym_make] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_catch] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_source] = ACTIONS(2453), - [anon_sym_source_DASHenv] = ACTIONS(2453), - [anon_sym_register] = ACTIONS(2453), - [anon_sym_hide] = ACTIONS(2453), - [anon_sym_hide_DASHenv] = ACTIONS(2453), - [anon_sym_overlay] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_PLUS2] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2453), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2455), - [aux_sym__val_number_decimal_token4] = ACTIONS(2455), - [aux_sym__val_number_token1] = ACTIONS(2455), - [aux_sym__val_number_token2] = ACTIONS(2455), - [aux_sym__val_number_token3] = ACTIONS(2455), - [aux_sym__val_number_token4] = ACTIONS(2453), - [aux_sym__val_number_token5] = ACTIONS(2453), - [aux_sym__val_number_token6] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2455), - [sym__str_single_quotes] = ACTIONS(2455), - [sym__str_back_ticks] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2455), + [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(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(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), + [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(2508), + [aux_sym_cmd_identifier_token35] = ACTIONS(2510), + [aux_sym_cmd_identifier_token36] = 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(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(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(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(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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2510), }, [768] = { [sym_comment] = STATE(768), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_alias] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_let_DASHenv] = ACTIONS(2181), - [anon_sym_mut] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [aux_sym_cmd_identifier_token1] = ACTIONS(2181), - [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(2181), - [aux_sym_cmd_identifier_token9] = ACTIONS(2181), - [aux_sym_cmd_identifier_token10] = ACTIONS(2187), - [aux_sym_cmd_identifier_token11] = ACTIONS(2187), - [aux_sym_cmd_identifier_token12] = ACTIONS(2181), - [aux_sym_cmd_identifier_token13] = ACTIONS(2181), - [aux_sym_cmd_identifier_token14] = ACTIONS(2181), - [aux_sym_cmd_identifier_token15] = ACTIONS(2181), - [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(2181), - [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(2181), - [aux_sym_cmd_identifier_token39] = ACTIONS(2187), - [aux_sym_cmd_identifier_token40] = ACTIONS(2187), - [anon_sym_def] = ACTIONS(2181), - [anon_sym_export_DASHenv] = ACTIONS(2181), - [anon_sym_extern] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_error] = ACTIONS(2181), - [anon_sym_DASH2] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_in2] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_make] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_catch] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_source] = ACTIONS(2181), - [anon_sym_source_DASHenv] = ACTIONS(2181), - [anon_sym_register] = ACTIONS(2181), - [anon_sym_hide] = ACTIONS(2181), - [anon_sym_hide_DASHenv] = ACTIONS(2181), - [anon_sym_overlay] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_PLUS2] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2187), - [aux_sym__val_number_decimal_token1] = ACTIONS(2181), - [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(2181), - [aux_sym__val_number_token5] = ACTIONS(2181), - [aux_sym__val_number_token6] = ACTIONS(2181), - [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), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2187), - }, - [769] = { - [sym_comment] = STATE(769), - [anon_sym_export] = ACTIONS(2070), - [anon_sym_alias] = ACTIONS(2070), - [anon_sym_let] = ACTIONS(2070), - [anon_sym_let_DASHenv] = ACTIONS(2070), - [anon_sym_mut] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [aux_sym_cmd_identifier_token1] = ACTIONS(2070), - [aux_sym_cmd_identifier_token2] = ACTIONS(2076), - [aux_sym_cmd_identifier_token3] = ACTIONS(2076), - [aux_sym_cmd_identifier_token4] = ACTIONS(2076), - [aux_sym_cmd_identifier_token5] = ACTIONS(2076), - [aux_sym_cmd_identifier_token6] = ACTIONS(2076), - [aux_sym_cmd_identifier_token7] = ACTIONS(2076), - [aux_sym_cmd_identifier_token8] = ACTIONS(2070), - [aux_sym_cmd_identifier_token9] = ACTIONS(2070), - [aux_sym_cmd_identifier_token10] = ACTIONS(2076), - [aux_sym_cmd_identifier_token11] = ACTIONS(2076), - [aux_sym_cmd_identifier_token12] = ACTIONS(2070), - [aux_sym_cmd_identifier_token13] = ACTIONS(2070), - [aux_sym_cmd_identifier_token14] = ACTIONS(2070), - [aux_sym_cmd_identifier_token15] = ACTIONS(2070), - [aux_sym_cmd_identifier_token16] = ACTIONS(2076), - [aux_sym_cmd_identifier_token17] = ACTIONS(2076), - [aux_sym_cmd_identifier_token18] = ACTIONS(2076), - [aux_sym_cmd_identifier_token19] = ACTIONS(2076), - [aux_sym_cmd_identifier_token20] = ACTIONS(2076), - [aux_sym_cmd_identifier_token21] = ACTIONS(2076), - [aux_sym_cmd_identifier_token22] = ACTIONS(2076), - [aux_sym_cmd_identifier_token23] = ACTIONS(2076), - [aux_sym_cmd_identifier_token24] = ACTIONS(2076), - [aux_sym_cmd_identifier_token25] = ACTIONS(2076), - [aux_sym_cmd_identifier_token26] = ACTIONS(2076), - [aux_sym_cmd_identifier_token27] = ACTIONS(2076), - [aux_sym_cmd_identifier_token28] = ACTIONS(2076), - [aux_sym_cmd_identifier_token29] = ACTIONS(2076), - [aux_sym_cmd_identifier_token30] = ACTIONS(2076), - [aux_sym_cmd_identifier_token31] = ACTIONS(2076), - [aux_sym_cmd_identifier_token32] = ACTIONS(2076), - [aux_sym_cmd_identifier_token33] = ACTIONS(2076), - [aux_sym_cmd_identifier_token34] = ACTIONS(2070), - [aux_sym_cmd_identifier_token35] = ACTIONS(2076), - [aux_sym_cmd_identifier_token36] = ACTIONS(2076), - [aux_sym_cmd_identifier_token37] = ACTIONS(2076), - [aux_sym_cmd_identifier_token38] = ACTIONS(2070), - [aux_sym_cmd_identifier_token39] = ACTIONS(2076), - [aux_sym_cmd_identifier_token40] = ACTIONS(2076), - [anon_sym_def] = ACTIONS(2070), - [anon_sym_export_DASHenv] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym_module] = ACTIONS(2070), - [anon_sym_use] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2076), - [anon_sym_error] = ACTIONS(2070), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_in2] = ACTIONS(2070), - [anon_sym_loop] = ACTIONS(2070), - [anon_sym_make] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_match] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2070), - [anon_sym_catch] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_source] = ACTIONS(2070), - [anon_sym_source_DASHenv] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_hide] = ACTIONS(2070), - [anon_sym_hide_DASHenv] = ACTIONS(2070), - [anon_sym_overlay] = ACTIONS(2070), - [anon_sym_as] = ACTIONS(2070), - [anon_sym_PLUS2] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2076), - [aux_sym__val_number_decimal_token1] = ACTIONS(2070), - [aux_sym__val_number_decimal_token2] = ACTIONS(2076), - [aux_sym__val_number_decimal_token3] = ACTIONS(2076), - [aux_sym__val_number_decimal_token4] = ACTIONS(2076), - [aux_sym__val_number_token1] = ACTIONS(2076), - [aux_sym__val_number_token2] = ACTIONS(2076), - [aux_sym__val_number_token3] = ACTIONS(2076), - [aux_sym__val_number_token4] = ACTIONS(2070), - [aux_sym__val_number_token5] = ACTIONS(2070), - [aux_sym__val_number_token6] = ACTIONS(2070), - [anon_sym_DQUOTE] = ACTIONS(2076), - [sym__str_single_quotes] = ACTIONS(2076), - [sym__str_back_ticks] = ACTIONS(2076), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2076), - }, - [770] = { - [sym_comment] = STATE(770), - [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(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(2078), - [aux_sym_cmd_identifier_token9] = ACTIONS(2078), - [aux_sym_cmd_identifier_token10] = ACTIONS(2084), - [aux_sym_cmd_identifier_token11] = ACTIONS(2084), - [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(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(2078), - [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(2078), - [aux_sym_cmd_identifier_token39] = ACTIONS(2084), - [aux_sym_cmd_identifier_token40] = ACTIONS(2084), - [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(2084), - [anon_sym_DOLLAR] = ACTIONS(2084), - [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(2084), - [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(2084), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2078), - [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(2078), - [aux_sym__val_number_token5] = ACTIONS(2078), - [aux_sym__val_number_token6] = ACTIONS(2078), - [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_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1885), + [aux_sym_cmd_identifier_token3] = ACTIONS(1885), + [aux_sym_cmd_identifier_token4] = ACTIONS(1885), + [aux_sym_cmd_identifier_token5] = ACTIONS(1885), + [aux_sym_cmd_identifier_token6] = ACTIONS(1885), + [aux_sym_cmd_identifier_token7] = ACTIONS(1885), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1885), + [aux_sym_cmd_identifier_token11] = ACTIONS(1885), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1885), + [aux_sym_cmd_identifier_token17] = ACTIONS(1885), + [aux_sym_cmd_identifier_token18] = ACTIONS(1885), + [aux_sym_cmd_identifier_token19] = ACTIONS(1885), + [aux_sym_cmd_identifier_token20] = ACTIONS(1885), + [aux_sym_cmd_identifier_token21] = ACTIONS(1885), + [aux_sym_cmd_identifier_token22] = ACTIONS(1885), + [aux_sym_cmd_identifier_token23] = ACTIONS(1885), + [aux_sym_cmd_identifier_token24] = ACTIONS(1885), + [aux_sym_cmd_identifier_token25] = ACTIONS(1885), + [aux_sym_cmd_identifier_token26] = ACTIONS(1885), + [aux_sym_cmd_identifier_token27] = ACTIONS(1885), + [aux_sym_cmd_identifier_token28] = ACTIONS(1885), + [aux_sym_cmd_identifier_token29] = ACTIONS(1885), + [aux_sym_cmd_identifier_token30] = ACTIONS(1885), + [aux_sym_cmd_identifier_token31] = ACTIONS(1885), + [aux_sym_cmd_identifier_token32] = ACTIONS(1885), + [aux_sym_cmd_identifier_token33] = ACTIONS(1885), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1885), + [aux_sym_cmd_identifier_token36] = ACTIONS(1885), + [aux_sym_cmd_identifier_token37] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in2] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2084), - }, - [771] = { - [sym_comment] = STATE(771), - [anon_sym_export] = ACTIONS(1785), - [anon_sym_alias] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_let_DASHenv] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [aux_sym_cmd_identifier_token1] = ACTIONS(1785), - [aux_sym_cmd_identifier_token2] = ACTIONS(1787), - [aux_sym_cmd_identifier_token3] = ACTIONS(1787), - [aux_sym_cmd_identifier_token4] = ACTIONS(1787), - [aux_sym_cmd_identifier_token5] = ACTIONS(1787), - [aux_sym_cmd_identifier_token6] = ACTIONS(1787), - [aux_sym_cmd_identifier_token7] = ACTIONS(1787), - [aux_sym_cmd_identifier_token8] = ACTIONS(1785), - [aux_sym_cmd_identifier_token9] = ACTIONS(1785), - [aux_sym_cmd_identifier_token10] = ACTIONS(1787), - [aux_sym_cmd_identifier_token11] = ACTIONS(1787), - [aux_sym_cmd_identifier_token12] = ACTIONS(1785), - [aux_sym_cmd_identifier_token13] = ACTIONS(1785), - [aux_sym_cmd_identifier_token14] = ACTIONS(1785), - [aux_sym_cmd_identifier_token15] = ACTIONS(1785), - [aux_sym_cmd_identifier_token16] = ACTIONS(1787), - [aux_sym_cmd_identifier_token17] = ACTIONS(1787), - [aux_sym_cmd_identifier_token18] = ACTIONS(1787), - [aux_sym_cmd_identifier_token19] = ACTIONS(1787), - [aux_sym_cmd_identifier_token20] = ACTIONS(1787), - [aux_sym_cmd_identifier_token21] = ACTIONS(1787), - [aux_sym_cmd_identifier_token22] = ACTIONS(1787), - [aux_sym_cmd_identifier_token23] = ACTIONS(1787), - [aux_sym_cmd_identifier_token24] = ACTIONS(1787), - [aux_sym_cmd_identifier_token25] = ACTIONS(1787), - [aux_sym_cmd_identifier_token26] = ACTIONS(1787), - [aux_sym_cmd_identifier_token27] = ACTIONS(1787), - [aux_sym_cmd_identifier_token28] = ACTIONS(1787), - [aux_sym_cmd_identifier_token29] = ACTIONS(1787), - [aux_sym_cmd_identifier_token30] = ACTIONS(1787), - [aux_sym_cmd_identifier_token31] = ACTIONS(1787), - [aux_sym_cmd_identifier_token32] = ACTIONS(1787), - [aux_sym_cmd_identifier_token33] = ACTIONS(1787), - [aux_sym_cmd_identifier_token34] = ACTIONS(1785), - [aux_sym_cmd_identifier_token35] = ACTIONS(1787), - [aux_sym_cmd_identifier_token36] = ACTIONS(1787), - [aux_sym_cmd_identifier_token37] = ACTIONS(1787), - [aux_sym_cmd_identifier_token38] = ACTIONS(1785), - [aux_sym_cmd_identifier_token39] = ACTIONS(1787), - [aux_sym_cmd_identifier_token40] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_export_DASHenv] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_module] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_in2] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_make] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_else] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_catch] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_source] = ACTIONS(1785), - [anon_sym_source_DASHenv] = ACTIONS(1785), - [anon_sym_register] = ACTIONS(1785), - [anon_sym_hide] = ACTIONS(1785), - [anon_sym_hide_DASHenv] = ACTIONS(1785), - [anon_sym_overlay] = ACTIONS(1785), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [sym_raw_string_begin] = ACTIONS(1885), }, - [772] = { - [sym_comment] = STATE(772), - [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(2522), - [aux_sym_cmd_identifier_token3] = ACTIONS(2522), - [aux_sym_cmd_identifier_token4] = ACTIONS(2522), - [aux_sym_cmd_identifier_token5] = ACTIONS(2522), - [aux_sym_cmd_identifier_token6] = ACTIONS(2522), - [aux_sym_cmd_identifier_token7] = ACTIONS(2522), - [aux_sym_cmd_identifier_token8] = ACTIONS(2520), - [aux_sym_cmd_identifier_token9] = ACTIONS(2520), - [aux_sym_cmd_identifier_token10] = ACTIONS(2522), - [aux_sym_cmd_identifier_token11] = ACTIONS(2522), - [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(2522), - [aux_sym_cmd_identifier_token17] = ACTIONS(2522), - [aux_sym_cmd_identifier_token18] = ACTIONS(2522), - [aux_sym_cmd_identifier_token19] = ACTIONS(2522), - [aux_sym_cmd_identifier_token20] = ACTIONS(2522), - [aux_sym_cmd_identifier_token21] = ACTIONS(2522), - [aux_sym_cmd_identifier_token22] = ACTIONS(2522), - [aux_sym_cmd_identifier_token23] = ACTIONS(2522), - [aux_sym_cmd_identifier_token24] = ACTIONS(2522), - [aux_sym_cmd_identifier_token25] = ACTIONS(2522), - [aux_sym_cmd_identifier_token26] = ACTIONS(2522), - [aux_sym_cmd_identifier_token27] = ACTIONS(2522), - [aux_sym_cmd_identifier_token28] = ACTIONS(2522), - [aux_sym_cmd_identifier_token29] = ACTIONS(2522), - [aux_sym_cmd_identifier_token30] = ACTIONS(2522), - [aux_sym_cmd_identifier_token31] = ACTIONS(2522), - [aux_sym_cmd_identifier_token32] = ACTIONS(2522), - [aux_sym_cmd_identifier_token33] = ACTIONS(2522), - [aux_sym_cmd_identifier_token34] = ACTIONS(2520), - [aux_sym_cmd_identifier_token35] = ACTIONS(2522), - [aux_sym_cmd_identifier_token36] = ACTIONS(2522), - [aux_sym_cmd_identifier_token37] = 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_DASH2] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_in2] = 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_as] = ACTIONS(2520), - [anon_sym_PLUS2] = 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), - [aux_sym__val_number_token4] = ACTIONS(2520), - [aux_sym__val_number_token5] = ACTIONS(2520), - [aux_sym__val_number_token6] = ACTIONS(2520), - [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), + [769] = { + [sym_comment] = STATE(769), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1893), + [aux_sym_cmd_identifier_token36] = ACTIONS(1893), + [aux_sym_cmd_identifier_token37] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1891), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in2] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2522), + [sym_raw_string_begin] = ACTIONS(1893), }, - [773] = { - [sym_comment] = STATE(773), - [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_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), + [770] = { + [sym_comment] = STATE(770), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(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(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(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(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [aux_sym_cmd_identifier_token37] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2100), - }, - [774] = { - [sym_comment] = STATE(774), - [aux_sym_shebang_repeat1] = STATE(774), - [aux_sym_cmd_identifier_token1] = ACTIONS(1312), - [aux_sym_cmd_identifier_token2] = ACTIONS(1314), - [aux_sym_cmd_identifier_token3] = ACTIONS(1314), - [aux_sym_cmd_identifier_token4] = ACTIONS(1314), - [aux_sym_cmd_identifier_token5] = ACTIONS(1314), - [aux_sym_cmd_identifier_token6] = ACTIONS(1314), - [aux_sym_cmd_identifier_token7] = ACTIONS(1314), - [aux_sym_cmd_identifier_token8] = ACTIONS(1314), - [aux_sym_cmd_identifier_token9] = ACTIONS(1312), - [aux_sym_cmd_identifier_token10] = ACTIONS(1314), - [aux_sym_cmd_identifier_token11] = ACTIONS(1314), - [aux_sym_cmd_identifier_token12] = ACTIONS(1314), - [aux_sym_cmd_identifier_token13] = ACTIONS(1312), - [aux_sym_cmd_identifier_token14] = ACTIONS(1314), - [aux_sym_cmd_identifier_token15] = ACTIONS(1312), - [aux_sym_cmd_identifier_token16] = ACTIONS(1314), - [aux_sym_cmd_identifier_token17] = ACTIONS(1314), - [aux_sym_cmd_identifier_token18] = ACTIONS(1312), - [aux_sym_cmd_identifier_token19] = ACTIONS(1314), - [aux_sym_cmd_identifier_token20] = ACTIONS(1314), - [aux_sym_cmd_identifier_token21] = ACTIONS(1314), - [aux_sym_cmd_identifier_token22] = ACTIONS(1314), - [aux_sym_cmd_identifier_token23] = ACTIONS(1314), - [aux_sym_cmd_identifier_token24] = ACTIONS(1314), - [aux_sym_cmd_identifier_token25] = ACTIONS(1314), - [aux_sym_cmd_identifier_token26] = ACTIONS(1314), - [aux_sym_cmd_identifier_token27] = ACTIONS(1314), - [aux_sym_cmd_identifier_token28] = ACTIONS(1314), - [aux_sym_cmd_identifier_token29] = ACTIONS(1314), - [aux_sym_cmd_identifier_token30] = ACTIONS(1314), - [aux_sym_cmd_identifier_token31] = ACTIONS(1314), - [aux_sym_cmd_identifier_token32] = ACTIONS(1312), - [aux_sym_cmd_identifier_token33] = ACTIONS(1314), - [aux_sym_cmd_identifier_token34] = ACTIONS(1312), - [aux_sym_cmd_identifier_token35] = ACTIONS(1314), - [aux_sym_cmd_identifier_token36] = ACTIONS(1314), - [aux_sym_cmd_identifier_token37] = ACTIONS(1314), - [aux_sym_cmd_identifier_token38] = ACTIONS(1312), - [aux_sym_cmd_identifier_token39] = ACTIONS(1314), - [aux_sym_cmd_identifier_token40] = ACTIONS(1314), - [sym__newline] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_err_GT_PIPE] = ACTIONS(1314), - [anon_sym_out_GT_PIPE] = ACTIONS(1314), - [anon_sym_e_GT_PIPE] = ACTIONS(1314), - [anon_sym_o_GT_PIPE] = ACTIONS(1314), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1314), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1314), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1314), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_DASH2] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_where] = ACTIONS(1314), - [aux_sym_expr_unary_token1] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1314), - [anon_sym_DOT_DOT_LT] = ACTIONS(1314), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_decimal_token4] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [aux_sym_env_var_token1] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1314), - [aux_sym_command_token1] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1314), - }, - [775] = { - [sym_comment] = STATE(775), - [aux_sym_shebang_repeat1] = STATE(774), - [aux_sym_cmd_identifier_token1] = ACTIONS(2567), - [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(2567), - [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(2567), - [aux_sym_cmd_identifier_token14] = ACTIONS(2569), - [aux_sym_cmd_identifier_token15] = ACTIONS(2567), - [aux_sym_cmd_identifier_token16] = ACTIONS(2569), - [aux_sym_cmd_identifier_token17] = ACTIONS(2569), - [aux_sym_cmd_identifier_token18] = ACTIONS(2567), - [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(2567), - [aux_sym_cmd_identifier_token33] = ACTIONS(2569), - [aux_sym_cmd_identifier_token34] = ACTIONS(2567), - [aux_sym_cmd_identifier_token35] = ACTIONS(2569), - [aux_sym_cmd_identifier_token36] = ACTIONS(2569), - [aux_sym_cmd_identifier_token37] = ACTIONS(2569), - [aux_sym_cmd_identifier_token38] = ACTIONS(2567), - [aux_sym_cmd_identifier_token39] = ACTIONS(2569), - [aux_sym_cmd_identifier_token40] = ACTIONS(2569), - [sym__newline] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_err_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_GT_PIPE] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2571), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2567), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_do] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_DOT_DOT] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_where] = ACTIONS(2569), - [aux_sym_expr_unary_token1] = ACTIONS(2569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2569), - [anon_sym_DOT_DOT_LT] = ACTIONS(2569), - [anon_sym_null] = ACTIONS(2567), - [anon_sym_true] = ACTIONS(2567), - [anon_sym_false] = ACTIONS(2567), - [aux_sym__val_number_decimal_token1] = ACTIONS(2567), - [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), - [aux_sym__val_number_token4] = ACTIONS(2567), - [aux_sym__val_number_token5] = ACTIONS(2567), - [aux_sym__val_number_token6] = ACTIONS(2567), - [anon_sym_0b] = ACTIONS(2567), - [anon_sym_0o] = ACTIONS(2567), - [anon_sym_0x] = ACTIONS(2567), - [sym_val_date] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym__str_single_quotes] = ACTIONS(2569), - [sym__str_back_ticks] = ACTIONS(2569), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2569), - [aux_sym_env_var_token1] = ACTIONS(2567), - [anon_sym_CARET] = ACTIONS(2569), - [aux_sym_command_token1] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2569), - }, - [776] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3121), - [sym__match_pattern_list] = STATE(3122), - [sym__match_pattern_rest] = STATE(7716), - [sym__match_pattern_record] = STATE(3123), - [sym_expr_parenthesized] = STATE(2817), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(3051), - [sym__val_range] = STATE(8137), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(3052), - [sym_val_bool] = STATE(2915), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(2820), - [sym_val_number] = STATE(3052), - [sym__val_number_decimal] = STATE(2489), - [sym__val_number] = STATE(3047), - [sym_val_duration] = STATE(3052), - [sym_val_filesize] = STATE(3052), - [sym_val_binary] = STATE(3052), - [sym_val_string] = STATE(3052), - [sym__raw_str] = STATE(3033), - [sym__str_double_quotes] = STATE(3033), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7368), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7770), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(3052), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(2913), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(6893), - [sym_comment] = STATE(776), - [aux_sym_shebang_repeat1] = STATE(896), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym__match_pattern_list_repeat1] = STATE(1305), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_RBRACK] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_DOT_DOT] = ACTIONS(2587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2595), - [aux_sym__val_number_decimal_token2] = ACTIONS(2597), - [aux_sym__val_number_decimal_token3] = ACTIONS(2599), - [aux_sym__val_number_decimal_token4] = ACTIONS(2601), - [aux_sym__val_number_token1] = ACTIONS(2603), - [aux_sym__val_number_token2] = ACTIONS(2603), - [aux_sym__val_number_token3] = ACTIONS(2603), - [aux_sym__val_number_token4] = ACTIONS(2605), - [aux_sym__val_number_token5] = ACTIONS(2605), - [aux_sym__val_number_token6] = ACTIONS(2605), - [anon_sym_0b] = ACTIONS(2607), - [anon_sym_0o] = ACTIONS(2609), - [anon_sym_0x] = ACTIONS(2609), - [sym_val_date] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym__str_single_quotes] = ACTIONS(2615), - [sym__str_back_ticks] = ACTIONS(2615), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2627), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2629), - }, - [777] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3121), - [sym__match_pattern_list] = STATE(3122), - [sym__match_pattern_rest] = STATE(7716), - [sym__match_pattern_record] = STATE(3123), - [sym_expr_parenthesized] = STATE(2817), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(3051), - [sym__val_range] = STATE(8137), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(3052), - [sym_val_bool] = STATE(2915), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(2820), - [sym_val_number] = STATE(3052), - [sym__val_number_decimal] = STATE(2489), - [sym__val_number] = STATE(3047), - [sym_val_duration] = STATE(3052), - [sym_val_filesize] = STATE(3052), - [sym_val_binary] = STATE(3052), - [sym_val_string] = STATE(3052), - [sym__raw_str] = STATE(3033), - [sym__str_double_quotes] = STATE(3033), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7392), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7927), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(3052), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(2913), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(6893), - [sym_comment] = STATE(777), - [aux_sym_shebang_repeat1] = STATE(899), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym__match_pattern_list_repeat1] = STATE(1305), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2575), - [anon_sym_RBRACK] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_DOT_DOT] = ACTIONS(2587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT] = ACTIONS(2589), - [anon_sym_null] = ACTIONS(2591), - [anon_sym_true] = ACTIONS(2593), - [anon_sym_false] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2595), - [aux_sym__val_number_decimal_token2] = ACTIONS(2597), - [aux_sym__val_number_decimal_token3] = ACTIONS(2599), - [aux_sym__val_number_decimal_token4] = ACTIONS(2601), - [aux_sym__val_number_token1] = ACTIONS(2603), - [aux_sym__val_number_token2] = ACTIONS(2603), - [aux_sym__val_number_token3] = ACTIONS(2603), - [aux_sym__val_number_token4] = ACTIONS(2605), - [aux_sym__val_number_token5] = ACTIONS(2605), - [aux_sym__val_number_token6] = ACTIONS(2605), - [anon_sym_0b] = ACTIONS(2607), - [anon_sym_0o] = ACTIONS(2609), - [anon_sym_0x] = ACTIONS(2609), - [sym_val_date] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym__str_single_quotes] = ACTIONS(2615), - [sym__str_back_ticks] = ACTIONS(2615), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2627), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2629), + [sym_raw_string_begin] = ACTIONS(1897), }, - [778] = { - [sym_comment] = STATE(778), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2635), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [aux_sym_record_entry_token1] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), + [771] = { + [sym_comment] = STATE(771), + [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(251), + [sym_raw_string_begin] = ACTIONS(2369), }, - [779] = { - [sym_comment] = STATE(779), + [772] = { + [sym_comment] = STATE(772), + [aux_sym_shebang_repeat1] = STATE(772), [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1306), + [aux_sym_cmd_identifier_token2] = ACTIONS(1310), + [aux_sym_cmd_identifier_token3] = ACTIONS(1310), + [aux_sym_cmd_identifier_token4] = ACTIONS(1310), + [aux_sym_cmd_identifier_token5] = ACTIONS(1310), + [aux_sym_cmd_identifier_token6] = ACTIONS(1310), + [aux_sym_cmd_identifier_token7] = ACTIONS(1310), + [aux_sym_cmd_identifier_token8] = ACTIONS(1310), [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1306), + [aux_sym_cmd_identifier_token10] = ACTIONS(1310), + [aux_sym_cmd_identifier_token11] = ACTIONS(1310), + [aux_sym_cmd_identifier_token12] = ACTIONS(1310), [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1306), + [aux_sym_cmd_identifier_token14] = ACTIONS(1310), [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), + [aux_sym_cmd_identifier_token16] = ACTIONS(1310), + [aux_sym_cmd_identifier_token17] = ACTIONS(1310), [aux_sym_cmd_identifier_token18] = ACTIONS(1308), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), + [aux_sym_cmd_identifier_token19] = ACTIONS(1310), + [aux_sym_cmd_identifier_token20] = ACTIONS(1310), + [aux_sym_cmd_identifier_token21] = ACTIONS(1310), + [aux_sym_cmd_identifier_token22] = ACTIONS(1310), + [aux_sym_cmd_identifier_token23] = ACTIONS(1310), + [aux_sym_cmd_identifier_token24] = ACTIONS(1310), + [aux_sym_cmd_identifier_token25] = ACTIONS(1310), + [aux_sym_cmd_identifier_token26] = ACTIONS(1310), + [aux_sym_cmd_identifier_token27] = ACTIONS(1310), + [aux_sym_cmd_identifier_token28] = ACTIONS(1310), + [aux_sym_cmd_identifier_token29] = ACTIONS(1310), + [aux_sym_cmd_identifier_token30] = ACTIONS(1310), + [aux_sym_cmd_identifier_token31] = ACTIONS(1310), [aux_sym_cmd_identifier_token32] = ACTIONS(1308), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), + [aux_sym_cmd_identifier_token33] = ACTIONS(1310), [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), + [aux_sym_cmd_identifier_token35] = ACTIONS(1310), + [aux_sym_cmd_identifier_token36] = ACTIONS(1310), + [aux_sym_cmd_identifier_token37] = ACTIONS(1310), [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_err_GT_PIPE] = ACTIONS(1306), - [anon_sym_out_GT_PIPE] = ACTIONS(1306), - [anon_sym_e_GT_PIPE] = ACTIONS(1306), - [anon_sym_o_GT_PIPE] = ACTIONS(1306), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1306), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1306), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1306), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), + [aux_sym_cmd_identifier_token39] = ACTIONS(1310), + [aux_sym_cmd_identifier_token40] = ACTIONS(1310), + [sym__newline] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_err_GT_PIPE] = ACTIONS(1310), + [anon_sym_out_GT_PIPE] = ACTIONS(1310), + [anon_sym_e_GT_PIPE] = ACTIONS(1310), + [anon_sym_o_GT_PIPE] = ACTIONS(1310), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1310), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1310), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1310), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), [anon_sym_DOLLAR] = ACTIONS(1308), [anon_sym_DASH2] = ACTIONS(1308), [anon_sym_break] = ACTIONS(1308), @@ -165519,1519 +167334,2008 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(1308), [anon_sym_if] = ACTIONS(1308), [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1310), [anon_sym_DOT_DOT] = ACTIONS(1308), [anon_sym_try] = ACTIONS(1308), [anon_sym_return] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1306), - [aux_sym_expr_unary_token1] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), + [anon_sym_where] = ACTIONS(1310), + [aux_sym_expr_unary_token1] = ACTIONS(1310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), + [anon_sym_DOT_DOT_LT] = ACTIONS(1310), [anon_sym_null] = ACTIONS(1308), [anon_sym_true] = ACTIONS(1308), [anon_sym_false] = ACTIONS(1308), [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1310), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(1310), + [aux_sym__val_number_token2] = ACTIONS(1310), + [aux_sym__val_number_token3] = ACTIONS(1310), [aux_sym__val_number_token4] = ACTIONS(1308), [aux_sym__val_number_token5] = ACTIONS(1308), [aux_sym__val_number_token6] = ACTIONS(1308), [anon_sym_0b] = ACTIONS(1308), [anon_sym_0o] = ACTIONS(1308), [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), + [sym_val_date] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym__str_single_quotes] = ACTIONS(1310), + [sym__str_back_ticks] = ACTIONS(1310), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), [aux_sym_env_var_token1] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1310), + [aux_sym_command_token1] = ACTIONS(1310), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), + [sym_raw_string_begin] = ACTIONS(1310), + }, + [773] = { + [sym__match_pattern_expression] = STATE(3251), + [sym__match_pattern_value] = STATE(3269), + [sym__match_pattern_list] = STATE(3270), + [sym__match_pattern_rest] = STATE(8508), + [sym__match_pattern_record] = STATE(3271), + [sym_expr_parenthesized] = STATE(2964), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(3228), + [sym__val_range] = STATE(8680), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(3229), + [sym_val_bool] = STATE(3023), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(2966), + [sym_val_number] = STATE(3229), + [sym__val_number_decimal] = STATE(2596), + [sym__val_number] = STATE(3151), + [sym_val_duration] = STATE(3229), + [sym_val_filesize] = STATE(3229), + [sym_val_binary] = STATE(3229), + [sym_val_string] = STATE(3229), + [sym__raw_str] = STATE(3162), + [sym__str_double_quotes] = STATE(3162), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7917), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8502), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(3229), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(3004), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7362), + [sym_comment] = STATE(773), + [aux_sym_shebang_repeat1] = STATE(900), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym__match_pattern_list_repeat1] = STATE(1278), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_RBRACK] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2579), + [anon_sym_DOT_DOT_LT] = ACTIONS(2579), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2585), + [aux_sym__val_number_decimal_token2] = ACTIONS(2587), + [aux_sym__val_number_decimal_token3] = ACTIONS(2589), + [aux_sym__val_number_decimal_token4] = ACTIONS(2591), + [aux_sym__val_number_token1] = ACTIONS(2593), + [aux_sym__val_number_token2] = ACTIONS(2593), + [aux_sym__val_number_token3] = ACTIONS(2593), + [aux_sym__val_number_token4] = ACTIONS(2595), + [aux_sym__val_number_token5] = ACTIONS(2595), + [aux_sym__val_number_token6] = ACTIONS(2595), + [anon_sym_0b] = ACTIONS(2597), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0x] = ACTIONS(2599), + [sym_val_date] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2603), + [sym__str_single_quotes] = ACTIONS(2605), + [sym__str_back_ticks] = ACTIONS(2605), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2617), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2619), + }, + [774] = { + [sym_comment] = STATE(774), + [aux_sym_shebang_repeat1] = STATE(772), + [aux_sym_cmd_identifier_token1] = ACTIONS(2621), + [aux_sym_cmd_identifier_token2] = ACTIONS(2623), + [aux_sym_cmd_identifier_token3] = ACTIONS(2623), + [aux_sym_cmd_identifier_token4] = ACTIONS(2623), + [aux_sym_cmd_identifier_token5] = ACTIONS(2623), + [aux_sym_cmd_identifier_token6] = ACTIONS(2623), + [aux_sym_cmd_identifier_token7] = ACTIONS(2623), + [aux_sym_cmd_identifier_token8] = ACTIONS(2623), + [aux_sym_cmd_identifier_token9] = ACTIONS(2621), + [aux_sym_cmd_identifier_token10] = ACTIONS(2623), + [aux_sym_cmd_identifier_token11] = ACTIONS(2623), + [aux_sym_cmd_identifier_token12] = ACTIONS(2623), + [aux_sym_cmd_identifier_token13] = ACTIONS(2621), + [aux_sym_cmd_identifier_token14] = ACTIONS(2623), + [aux_sym_cmd_identifier_token15] = ACTIONS(2621), + [aux_sym_cmd_identifier_token16] = ACTIONS(2623), + [aux_sym_cmd_identifier_token17] = ACTIONS(2623), + [aux_sym_cmd_identifier_token18] = ACTIONS(2621), + [aux_sym_cmd_identifier_token19] = ACTIONS(2623), + [aux_sym_cmd_identifier_token20] = ACTIONS(2623), + [aux_sym_cmd_identifier_token21] = ACTIONS(2623), + [aux_sym_cmd_identifier_token22] = ACTIONS(2623), + [aux_sym_cmd_identifier_token23] = ACTIONS(2623), + [aux_sym_cmd_identifier_token24] = ACTIONS(2623), + [aux_sym_cmd_identifier_token25] = ACTIONS(2623), + [aux_sym_cmd_identifier_token26] = ACTIONS(2623), + [aux_sym_cmd_identifier_token27] = ACTIONS(2623), + [aux_sym_cmd_identifier_token28] = ACTIONS(2623), + [aux_sym_cmd_identifier_token29] = ACTIONS(2623), + [aux_sym_cmd_identifier_token30] = ACTIONS(2623), + [aux_sym_cmd_identifier_token31] = ACTIONS(2623), + [aux_sym_cmd_identifier_token32] = ACTIONS(2621), + [aux_sym_cmd_identifier_token33] = ACTIONS(2623), + [aux_sym_cmd_identifier_token34] = ACTIONS(2621), + [aux_sym_cmd_identifier_token35] = ACTIONS(2623), + [aux_sym_cmd_identifier_token36] = ACTIONS(2623), + [aux_sym_cmd_identifier_token37] = ACTIONS(2623), + [aux_sym_cmd_identifier_token38] = ACTIONS(2621), + [aux_sym_cmd_identifier_token39] = ACTIONS(2623), + [aux_sym_cmd_identifier_token40] = ACTIONS(2623), + [sym__newline] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2625), + [anon_sym_err_GT_PIPE] = ACTIONS(2625), + [anon_sym_out_GT_PIPE] = ACTIONS(2625), + [anon_sym_e_GT_PIPE] = ACTIONS(2625), + [anon_sym_o_GT_PIPE] = ACTIONS(2625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_DOLLAR] = ACTIONS(2621), + [anon_sym_DASH2] = ACTIONS(2621), + [anon_sym_break] = ACTIONS(2621), + [anon_sym_continue] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_if] = ACTIONS(2621), + [anon_sym_match] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2621), + [anon_sym_return] = ACTIONS(2621), + [anon_sym_where] = ACTIONS(2623), + [aux_sym_expr_unary_token1] = ACTIONS(2623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2623), + [anon_sym_DOT_DOT_LT] = ACTIONS(2623), + [anon_sym_null] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [aux_sym__val_number_decimal_token1] = ACTIONS(2621), + [aux_sym__val_number_decimal_token2] = ACTIONS(2623), + [aux_sym__val_number_decimal_token3] = ACTIONS(2623), + [aux_sym__val_number_decimal_token4] = ACTIONS(2623), + [aux_sym__val_number_token1] = ACTIONS(2623), + [aux_sym__val_number_token2] = ACTIONS(2623), + [aux_sym__val_number_token3] = ACTIONS(2623), + [aux_sym__val_number_token4] = ACTIONS(2621), + [aux_sym__val_number_token5] = ACTIONS(2621), + [aux_sym__val_number_token6] = ACTIONS(2621), + [anon_sym_0b] = ACTIONS(2621), + [anon_sym_0o] = ACTIONS(2621), + [anon_sym_0x] = ACTIONS(2621), + [sym_val_date] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [sym__str_single_quotes] = ACTIONS(2623), + [sym__str_back_ticks] = ACTIONS(2623), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2623), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [aux_sym_env_var_token1] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [aux_sym_command_token1] = ACTIONS(2623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2623), + }, + [775] = { + [sym__match_pattern_expression] = STATE(3251), + [sym__match_pattern_value] = STATE(3269), + [sym__match_pattern_list] = STATE(3270), + [sym__match_pattern_rest] = STATE(8508), + [sym__match_pattern_record] = STATE(3271), + [sym_expr_parenthesized] = STATE(2964), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(3228), + [sym__val_range] = STATE(8680), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(3229), + [sym_val_bool] = STATE(3023), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(2966), + [sym_val_number] = STATE(3229), + [sym__val_number_decimal] = STATE(2596), + [sym__val_number] = STATE(3151), + [sym_val_duration] = STATE(3229), + [sym_val_filesize] = STATE(3229), + [sym_val_binary] = STATE(3229), + [sym_val_string] = STATE(3229), + [sym__raw_str] = STATE(3162), + [sym__str_double_quotes] = STATE(3162), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7889), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8537), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(3229), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(3004), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7362), + [sym_comment] = STATE(775), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym__match_pattern_list_repeat1] = STATE(1278), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(2573), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2577), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2579), + [anon_sym_DOT_DOT_LT] = ACTIONS(2579), + [anon_sym_null] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2585), + [aux_sym__val_number_decimal_token2] = ACTIONS(2587), + [aux_sym__val_number_decimal_token3] = ACTIONS(2589), + [aux_sym__val_number_decimal_token4] = ACTIONS(2591), + [aux_sym__val_number_token1] = ACTIONS(2593), + [aux_sym__val_number_token2] = ACTIONS(2593), + [aux_sym__val_number_token3] = ACTIONS(2593), + [aux_sym__val_number_token4] = ACTIONS(2595), + [aux_sym__val_number_token5] = ACTIONS(2595), + [aux_sym__val_number_token6] = ACTIONS(2595), + [anon_sym_0b] = ACTIONS(2597), + [anon_sym_0o] = ACTIONS(2599), + [anon_sym_0x] = ACTIONS(2599), + [sym_val_date] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2603), + [sym__str_single_quotes] = ACTIONS(2605), + [sym__str_back_ticks] = ACTIONS(2605), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2617), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2619), + }, + [776] = { + [sym_comment] = STATE(776), + [aux_sym_cmd_identifier_token1] = ACTIONS(2536), + [aux_sym_cmd_identifier_token2] = ACTIONS(2538), + [aux_sym_cmd_identifier_token3] = ACTIONS(2538), + [aux_sym_cmd_identifier_token4] = ACTIONS(2538), + [aux_sym_cmd_identifier_token5] = ACTIONS(2538), + [aux_sym_cmd_identifier_token6] = ACTIONS(2538), + [aux_sym_cmd_identifier_token7] = ACTIONS(2538), + [aux_sym_cmd_identifier_token8] = ACTIONS(2538), + [aux_sym_cmd_identifier_token9] = ACTIONS(2536), + [aux_sym_cmd_identifier_token10] = ACTIONS(2538), + [aux_sym_cmd_identifier_token11] = ACTIONS(2538), + [aux_sym_cmd_identifier_token12] = ACTIONS(2538), + [aux_sym_cmd_identifier_token13] = ACTIONS(2536), + [aux_sym_cmd_identifier_token14] = ACTIONS(2538), + [aux_sym_cmd_identifier_token15] = ACTIONS(2536), + [aux_sym_cmd_identifier_token16] = ACTIONS(2538), + [aux_sym_cmd_identifier_token17] = ACTIONS(2538), + [aux_sym_cmd_identifier_token18] = ACTIONS(2536), + [aux_sym_cmd_identifier_token19] = ACTIONS(2538), + [aux_sym_cmd_identifier_token20] = ACTIONS(2538), + [aux_sym_cmd_identifier_token21] = ACTIONS(2538), + [aux_sym_cmd_identifier_token22] = ACTIONS(2538), + [aux_sym_cmd_identifier_token23] = ACTIONS(2538), + [aux_sym_cmd_identifier_token24] = ACTIONS(2538), + [aux_sym_cmd_identifier_token25] = ACTIONS(2538), + [aux_sym_cmd_identifier_token26] = ACTIONS(2538), + [aux_sym_cmd_identifier_token27] = ACTIONS(2538), + [aux_sym_cmd_identifier_token28] = ACTIONS(2538), + [aux_sym_cmd_identifier_token29] = ACTIONS(2538), + [aux_sym_cmd_identifier_token30] = ACTIONS(2538), + [aux_sym_cmd_identifier_token31] = ACTIONS(2538), + [aux_sym_cmd_identifier_token32] = ACTIONS(2536), + [aux_sym_cmd_identifier_token33] = ACTIONS(2538), + [aux_sym_cmd_identifier_token34] = ACTIONS(2536), + [aux_sym_cmd_identifier_token35] = ACTIONS(2538), + [aux_sym_cmd_identifier_token36] = ACTIONS(2538), + [aux_sym_cmd_identifier_token37] = ACTIONS(2538), + [aux_sym_cmd_identifier_token38] = ACTIONS(2536), + [aux_sym_cmd_identifier_token39] = ACTIONS(2538), + [aux_sym_cmd_identifier_token40] = ACTIONS(2538), + [sym__newline] = ACTIONS(2538), + [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(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_DOLLAR] = ACTIONS(2536), + [anon_sym_DASH2] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_match] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_where] = ACTIONS(2538), + [aux_sym_expr_unary_token1] = ACTIONS(2538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), + [anon_sym_DOT_DOT_LT] = ACTIONS(2538), + [anon_sym_null] = ACTIONS(2536), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [aux_sym__val_number_decimal_token1] = ACTIONS(2536), + [aux_sym__val_number_decimal_token2] = ACTIONS(2538), + [aux_sym__val_number_decimal_token3] = ACTIONS(2538), + [aux_sym__val_number_decimal_token4] = ACTIONS(2538), + [aux_sym__val_number_token1] = ACTIONS(2538), + [aux_sym__val_number_token2] = ACTIONS(2538), + [aux_sym__val_number_token3] = ACTIONS(2538), + [aux_sym__val_number_token4] = ACTIONS(2536), + [aux_sym__val_number_token5] = ACTIONS(2536), + [aux_sym__val_number_token6] = ACTIONS(2536), + [anon_sym_0b] = ACTIONS(2536), + [anon_sym_0o] = ACTIONS(2536), + [anon_sym_0x] = ACTIONS(2536), + [sym_val_date] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [sym__str_single_quotes] = ACTIONS(2538), + [sym__str_back_ticks] = ACTIONS(2538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2538), + [aux_sym_env_var_token1] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2538), + [aux_sym_command_token1] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2538), + }, + [777] = { + [sym_comment] = STATE(777), + [aux_sym_cmd_identifier_token1] = ACTIONS(2629), + [aux_sym_cmd_identifier_token2] = ACTIONS(2631), + [aux_sym_cmd_identifier_token3] = ACTIONS(2631), + [aux_sym_cmd_identifier_token4] = ACTIONS(2631), + [aux_sym_cmd_identifier_token5] = ACTIONS(2631), + [aux_sym_cmd_identifier_token6] = ACTIONS(2631), + [aux_sym_cmd_identifier_token7] = ACTIONS(2631), + [aux_sym_cmd_identifier_token8] = ACTIONS(2631), + [aux_sym_cmd_identifier_token9] = ACTIONS(2629), + [aux_sym_cmd_identifier_token10] = ACTIONS(2631), + [aux_sym_cmd_identifier_token11] = ACTIONS(2631), + [aux_sym_cmd_identifier_token12] = ACTIONS(2631), + [aux_sym_cmd_identifier_token13] = ACTIONS(2629), + [aux_sym_cmd_identifier_token14] = ACTIONS(2631), + [aux_sym_cmd_identifier_token15] = ACTIONS(2629), + [aux_sym_cmd_identifier_token16] = ACTIONS(2631), + [aux_sym_cmd_identifier_token17] = ACTIONS(2631), + [aux_sym_cmd_identifier_token18] = ACTIONS(2629), + [aux_sym_cmd_identifier_token19] = ACTIONS(2631), + [aux_sym_cmd_identifier_token20] = ACTIONS(2631), + [aux_sym_cmd_identifier_token21] = ACTIONS(2631), + [aux_sym_cmd_identifier_token22] = ACTIONS(2631), + [aux_sym_cmd_identifier_token23] = ACTIONS(2631), + [aux_sym_cmd_identifier_token24] = ACTIONS(2631), + [aux_sym_cmd_identifier_token25] = ACTIONS(2631), + [aux_sym_cmd_identifier_token26] = ACTIONS(2631), + [aux_sym_cmd_identifier_token27] = ACTIONS(2631), + [aux_sym_cmd_identifier_token28] = ACTIONS(2631), + [aux_sym_cmd_identifier_token29] = ACTIONS(2631), + [aux_sym_cmd_identifier_token30] = ACTIONS(2631), + [aux_sym_cmd_identifier_token31] = ACTIONS(2631), + [aux_sym_cmd_identifier_token32] = ACTIONS(2629), + [aux_sym_cmd_identifier_token33] = ACTIONS(2631), + [aux_sym_cmd_identifier_token34] = ACTIONS(2629), + [aux_sym_cmd_identifier_token35] = ACTIONS(2631), + [aux_sym_cmd_identifier_token36] = ACTIONS(2631), + [aux_sym_cmd_identifier_token37] = ACTIONS(2631), + [aux_sym_cmd_identifier_token38] = ACTIONS(2629), + [aux_sym_cmd_identifier_token39] = ACTIONS(2631), + [aux_sym_cmd_identifier_token40] = ACTIONS(2631), + [sym__newline] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_err_GT_PIPE] = ACTIONS(2631), + [anon_sym_out_GT_PIPE] = ACTIONS(2631), + [anon_sym_e_GT_PIPE] = ACTIONS(2631), + [anon_sym_o_GT_PIPE] = ACTIONS(2631), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2631), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2631), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2631), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH2] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_where] = ACTIONS(2631), + [aux_sym_expr_unary_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), + [anon_sym_DOT_DOT_LT] = ACTIONS(2631), + [anon_sym_null] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [aux_sym__val_number_decimal_token1] = ACTIONS(2629), + [aux_sym__val_number_decimal_token2] = ACTIONS(2631), + [aux_sym__val_number_decimal_token3] = ACTIONS(2631), + [aux_sym__val_number_decimal_token4] = ACTIONS(2631), + [aux_sym__val_number_token1] = ACTIONS(2631), + [aux_sym__val_number_token2] = ACTIONS(2631), + [aux_sym__val_number_token3] = ACTIONS(2631), + [aux_sym__val_number_token4] = ACTIONS(2629), + [aux_sym__val_number_token5] = ACTIONS(2629), + [aux_sym__val_number_token6] = ACTIONS(2629), + [anon_sym_0b] = ACTIONS(2629), + [anon_sym_0o] = ACTIONS(2629), + [anon_sym_0x] = ACTIONS(2629), + [sym_val_date] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [sym__str_single_quotes] = ACTIONS(2631), + [sym__str_back_ticks] = ACTIONS(2631), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2631), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2631), + [aux_sym_env_var_token1] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2631), + [aux_sym_command_token1] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2631), + }, + [778] = { + [sym_comment] = STATE(778), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2635), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [aux_sym_record_entry_token1] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), + }, + [779] = { + [sym_comment] = STATE(779), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(2637), + [aux_sym__immediate_decimal_token2] = ACTIONS(2639), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [aux_sym_record_entry_token1] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(3), }, [780] = { [sym_comment] = STATE(780), - [aux_sym_cmd_identifier_token1] = ACTIONS(2544), - [aux_sym_cmd_identifier_token2] = ACTIONS(2546), - [aux_sym_cmd_identifier_token3] = ACTIONS(2546), - [aux_sym_cmd_identifier_token4] = ACTIONS(2546), - [aux_sym_cmd_identifier_token5] = ACTIONS(2546), - [aux_sym_cmd_identifier_token6] = ACTIONS(2546), - [aux_sym_cmd_identifier_token7] = ACTIONS(2546), - [aux_sym_cmd_identifier_token8] = ACTIONS(2546), - [aux_sym_cmd_identifier_token9] = ACTIONS(2544), - [aux_sym_cmd_identifier_token10] = ACTIONS(2546), - [aux_sym_cmd_identifier_token11] = ACTIONS(2546), - [aux_sym_cmd_identifier_token12] = ACTIONS(2546), - [aux_sym_cmd_identifier_token13] = ACTIONS(2544), - [aux_sym_cmd_identifier_token14] = ACTIONS(2546), - [aux_sym_cmd_identifier_token15] = ACTIONS(2544), - [aux_sym_cmd_identifier_token16] = ACTIONS(2546), - [aux_sym_cmd_identifier_token17] = ACTIONS(2546), - [aux_sym_cmd_identifier_token18] = ACTIONS(2544), - [aux_sym_cmd_identifier_token19] = ACTIONS(2546), - [aux_sym_cmd_identifier_token20] = ACTIONS(2546), - [aux_sym_cmd_identifier_token21] = ACTIONS(2546), - [aux_sym_cmd_identifier_token22] = ACTIONS(2546), - [aux_sym_cmd_identifier_token23] = ACTIONS(2546), - [aux_sym_cmd_identifier_token24] = ACTIONS(2546), - [aux_sym_cmd_identifier_token25] = ACTIONS(2546), - [aux_sym_cmd_identifier_token26] = ACTIONS(2546), - [aux_sym_cmd_identifier_token27] = ACTIONS(2546), - [aux_sym_cmd_identifier_token28] = ACTIONS(2546), - [aux_sym_cmd_identifier_token29] = ACTIONS(2546), - [aux_sym_cmd_identifier_token30] = ACTIONS(2546), - [aux_sym_cmd_identifier_token31] = ACTIONS(2546), - [aux_sym_cmd_identifier_token32] = ACTIONS(2544), - [aux_sym_cmd_identifier_token33] = ACTIONS(2546), - [aux_sym_cmd_identifier_token34] = ACTIONS(2544), - [aux_sym_cmd_identifier_token35] = ACTIONS(2546), - [aux_sym_cmd_identifier_token36] = ACTIONS(2546), - [aux_sym_cmd_identifier_token37] = ACTIONS(2546), - [aux_sym_cmd_identifier_token38] = ACTIONS(2544), - [aux_sym_cmd_identifier_token39] = ACTIONS(2546), - [aux_sym_cmd_identifier_token40] = ACTIONS(2546), - [sym__newline] = ACTIONS(2546), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_err_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_GT_PIPE] = ACTIONS(2546), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2546), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2546), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2546), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_DOLLAR] = ACTIONS(2544), - [anon_sym_DASH2] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_do] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_DOT_DOT] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_where] = ACTIONS(2546), - [aux_sym_expr_unary_token1] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2546), - [anon_sym_DOT_DOT_LT] = ACTIONS(2546), - [anon_sym_null] = ACTIONS(2544), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [aux_sym__val_number_decimal_token1] = ACTIONS(2544), - [aux_sym__val_number_decimal_token2] = ACTIONS(2546), - [aux_sym__val_number_decimal_token3] = ACTIONS(2546), - [aux_sym__val_number_decimal_token4] = ACTIONS(2546), - [aux_sym__val_number_token1] = ACTIONS(2546), - [aux_sym__val_number_token2] = ACTIONS(2546), - [aux_sym__val_number_token3] = ACTIONS(2546), - [aux_sym__val_number_token4] = ACTIONS(2544), - [aux_sym__val_number_token5] = ACTIONS(2544), - [aux_sym__val_number_token6] = ACTIONS(2544), - [anon_sym_0b] = ACTIONS(2544), - [anon_sym_0o] = ACTIONS(2544), - [anon_sym_0x] = ACTIONS(2544), - [sym_val_date] = ACTIONS(2546), - [anon_sym_DQUOTE] = ACTIONS(2546), - [sym__str_single_quotes] = ACTIONS(2546), - [sym__str_back_ticks] = ACTIONS(2546), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2546), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2546), - [aux_sym_env_var_token1] = ACTIONS(2544), - [anon_sym_CARET] = ACTIONS(2546), - [aux_sym_command_token1] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2546), + [aux_sym_cmd_identifier_token1] = ACTIONS(2641), + [aux_sym_cmd_identifier_token2] = ACTIONS(2643), + [aux_sym_cmd_identifier_token3] = ACTIONS(2643), + [aux_sym_cmd_identifier_token4] = ACTIONS(2643), + [aux_sym_cmd_identifier_token5] = ACTIONS(2643), + [aux_sym_cmd_identifier_token6] = ACTIONS(2643), + [aux_sym_cmd_identifier_token7] = ACTIONS(2643), + [aux_sym_cmd_identifier_token8] = ACTIONS(2643), + [aux_sym_cmd_identifier_token9] = ACTIONS(2641), + [aux_sym_cmd_identifier_token10] = ACTIONS(2643), + [aux_sym_cmd_identifier_token11] = ACTIONS(2643), + [aux_sym_cmd_identifier_token12] = ACTIONS(2643), + [aux_sym_cmd_identifier_token13] = ACTIONS(2641), + [aux_sym_cmd_identifier_token14] = ACTIONS(2643), + [aux_sym_cmd_identifier_token15] = ACTIONS(2641), + [aux_sym_cmd_identifier_token16] = ACTIONS(2643), + [aux_sym_cmd_identifier_token17] = ACTIONS(2643), + [aux_sym_cmd_identifier_token18] = ACTIONS(2641), + [aux_sym_cmd_identifier_token19] = ACTIONS(2643), + [aux_sym_cmd_identifier_token20] = ACTIONS(2643), + [aux_sym_cmd_identifier_token21] = ACTIONS(2643), + [aux_sym_cmd_identifier_token22] = ACTIONS(2643), + [aux_sym_cmd_identifier_token23] = ACTIONS(2643), + [aux_sym_cmd_identifier_token24] = ACTIONS(2643), + [aux_sym_cmd_identifier_token25] = ACTIONS(2643), + [aux_sym_cmd_identifier_token26] = ACTIONS(2643), + [aux_sym_cmd_identifier_token27] = ACTIONS(2643), + [aux_sym_cmd_identifier_token28] = ACTIONS(2643), + [aux_sym_cmd_identifier_token29] = ACTIONS(2643), + [aux_sym_cmd_identifier_token30] = ACTIONS(2643), + [aux_sym_cmd_identifier_token31] = ACTIONS(2643), + [aux_sym_cmd_identifier_token32] = ACTIONS(2641), + [aux_sym_cmd_identifier_token33] = ACTIONS(2643), + [aux_sym_cmd_identifier_token34] = ACTIONS(2641), + [aux_sym_cmd_identifier_token35] = ACTIONS(2643), + [aux_sym_cmd_identifier_token36] = ACTIONS(2643), + [aux_sym_cmd_identifier_token37] = ACTIONS(2643), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2643), + [aux_sym_cmd_identifier_token40] = ACTIONS(2643), + [sym__newline] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_err_GT_PIPE] = ACTIONS(1302), + [anon_sym_out_GT_PIPE] = ACTIONS(1302), + [anon_sym_e_GT_PIPE] = ACTIONS(1302), + [anon_sym_o_GT_PIPE] = ACTIONS(1302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_DOLLAR] = ACTIONS(2641), + [anon_sym_DASH2] = ACTIONS(2641), + [anon_sym_break] = ACTIONS(2641), + [anon_sym_continue] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2641), + [anon_sym_return] = ACTIONS(2641), + [anon_sym_where] = ACTIONS(2643), + [aux_sym_expr_unary_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [aux_sym__val_number_decimal_token1] = ACTIONS(2641), + [aux_sym__val_number_decimal_token2] = ACTIONS(2643), + [aux_sym__val_number_decimal_token3] = ACTIONS(2643), + [aux_sym__val_number_decimal_token4] = ACTIONS(2643), + [aux_sym__val_number_token1] = ACTIONS(2643), + [aux_sym__val_number_token2] = ACTIONS(2643), + [aux_sym__val_number_token3] = ACTIONS(2643), + [aux_sym__val_number_token4] = ACTIONS(2641), + [aux_sym__val_number_token5] = ACTIONS(2641), + [aux_sym__val_number_token6] = ACTIONS(2641), + [anon_sym_0b] = ACTIONS(2641), + [anon_sym_0o] = ACTIONS(2641), + [anon_sym_0x] = ACTIONS(2641), + [sym_val_date] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [sym__str_single_quotes] = ACTIONS(2643), + [sym__str_back_ticks] = ACTIONS(2643), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2643), + [aux_sym_env_var_token1] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2643), + [aux_sym_command_token1] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2643), }, [781] = { [sym_comment] = STATE(781), - [aux_sym_cmd_identifier_token1] = ACTIONS(2637), - [aux_sym_cmd_identifier_token2] = ACTIONS(2639), - [aux_sym_cmd_identifier_token3] = ACTIONS(2639), - [aux_sym_cmd_identifier_token4] = ACTIONS(2639), - [aux_sym_cmd_identifier_token5] = ACTIONS(2639), - [aux_sym_cmd_identifier_token6] = ACTIONS(2639), - [aux_sym_cmd_identifier_token7] = ACTIONS(2639), - [aux_sym_cmd_identifier_token8] = ACTIONS(2639), - [aux_sym_cmd_identifier_token9] = ACTIONS(2637), - [aux_sym_cmd_identifier_token10] = ACTIONS(2639), - [aux_sym_cmd_identifier_token11] = ACTIONS(2639), - [aux_sym_cmd_identifier_token12] = ACTIONS(2639), - [aux_sym_cmd_identifier_token13] = ACTIONS(2637), - [aux_sym_cmd_identifier_token14] = ACTIONS(2639), - [aux_sym_cmd_identifier_token15] = ACTIONS(2637), - [aux_sym_cmd_identifier_token16] = ACTIONS(2639), - [aux_sym_cmd_identifier_token17] = ACTIONS(2639), - [aux_sym_cmd_identifier_token18] = ACTIONS(2637), - [aux_sym_cmd_identifier_token19] = ACTIONS(2639), - [aux_sym_cmd_identifier_token20] = ACTIONS(2639), - [aux_sym_cmd_identifier_token21] = ACTIONS(2639), - [aux_sym_cmd_identifier_token22] = ACTIONS(2639), - [aux_sym_cmd_identifier_token23] = ACTIONS(2639), - [aux_sym_cmd_identifier_token24] = ACTIONS(2639), - [aux_sym_cmd_identifier_token25] = ACTIONS(2639), - [aux_sym_cmd_identifier_token26] = ACTIONS(2639), - [aux_sym_cmd_identifier_token27] = ACTIONS(2639), - [aux_sym_cmd_identifier_token28] = ACTIONS(2639), - [aux_sym_cmd_identifier_token29] = ACTIONS(2639), - [aux_sym_cmd_identifier_token30] = ACTIONS(2639), - [aux_sym_cmd_identifier_token31] = ACTIONS(2639), - [aux_sym_cmd_identifier_token32] = ACTIONS(2637), - [aux_sym_cmd_identifier_token33] = ACTIONS(2639), - [aux_sym_cmd_identifier_token34] = ACTIONS(2637), - [aux_sym_cmd_identifier_token35] = ACTIONS(2639), - [aux_sym_cmd_identifier_token36] = ACTIONS(2639), - [aux_sym_cmd_identifier_token37] = ACTIONS(2639), - [aux_sym_cmd_identifier_token38] = ACTIONS(2637), - [aux_sym_cmd_identifier_token39] = ACTIONS(2639), - [aux_sym_cmd_identifier_token40] = ACTIONS(2639), - [sym__newline] = ACTIONS(2639), - [anon_sym_PIPE] = ACTIONS(2639), - [anon_sym_err_GT_PIPE] = ACTIONS(2639), - [anon_sym_out_GT_PIPE] = ACTIONS(2639), - [anon_sym_e_GT_PIPE] = ACTIONS(2639), - [anon_sym_o_GT_PIPE] = ACTIONS(2639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_match] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_where] = ACTIONS(2639), - [aux_sym_expr_unary_token1] = ACTIONS(2639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), - [anon_sym_DOT_DOT_LT] = ACTIONS(2639), - [anon_sym_null] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2639), - [aux_sym__val_number_decimal_token4] = ACTIONS(2639), - [aux_sym__val_number_token1] = ACTIONS(2639), - [aux_sym__val_number_token2] = ACTIONS(2639), - [aux_sym__val_number_token3] = ACTIONS(2639), - [aux_sym__val_number_token4] = ACTIONS(2637), - [aux_sym__val_number_token5] = ACTIONS(2637), - [aux_sym__val_number_token6] = ACTIONS(2637), - [anon_sym_0b] = ACTIONS(2637), - [anon_sym_0o] = ACTIONS(2637), - [anon_sym_0x] = ACTIONS(2637), - [sym_val_date] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [sym__str_single_quotes] = ACTIONS(2639), - [sym__str_back_ticks] = ACTIONS(2639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2639), - [aux_sym_env_var_token1] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2639), - [aux_sym_command_token1] = ACTIONS(2639), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2639), + [aux_sym_cmd_identifier_token1] = ACTIONS(1304), + [aux_sym_cmd_identifier_token2] = ACTIONS(1302), + [aux_sym_cmd_identifier_token3] = ACTIONS(1302), + [aux_sym_cmd_identifier_token4] = ACTIONS(1302), + [aux_sym_cmd_identifier_token5] = ACTIONS(1302), + [aux_sym_cmd_identifier_token6] = ACTIONS(1302), + [aux_sym_cmd_identifier_token7] = ACTIONS(1302), + [aux_sym_cmd_identifier_token8] = ACTIONS(1302), + [aux_sym_cmd_identifier_token9] = ACTIONS(1304), + [aux_sym_cmd_identifier_token10] = ACTIONS(1302), + [aux_sym_cmd_identifier_token11] = ACTIONS(1302), + [aux_sym_cmd_identifier_token12] = ACTIONS(1302), + [aux_sym_cmd_identifier_token13] = ACTIONS(1304), + [aux_sym_cmd_identifier_token14] = ACTIONS(1302), + [aux_sym_cmd_identifier_token15] = ACTIONS(1304), + [aux_sym_cmd_identifier_token16] = ACTIONS(1302), + [aux_sym_cmd_identifier_token17] = ACTIONS(1302), + [aux_sym_cmd_identifier_token18] = ACTIONS(1304), + [aux_sym_cmd_identifier_token19] = ACTIONS(1302), + [aux_sym_cmd_identifier_token20] = ACTIONS(1302), + [aux_sym_cmd_identifier_token21] = ACTIONS(1302), + [aux_sym_cmd_identifier_token22] = ACTIONS(1302), + [aux_sym_cmd_identifier_token23] = ACTIONS(1302), + [aux_sym_cmd_identifier_token24] = ACTIONS(1302), + [aux_sym_cmd_identifier_token25] = ACTIONS(1302), + [aux_sym_cmd_identifier_token26] = ACTIONS(1302), + [aux_sym_cmd_identifier_token27] = ACTIONS(1302), + [aux_sym_cmd_identifier_token28] = ACTIONS(1302), + [aux_sym_cmd_identifier_token29] = ACTIONS(1302), + [aux_sym_cmd_identifier_token30] = ACTIONS(1302), + [aux_sym_cmd_identifier_token31] = ACTIONS(1302), + [aux_sym_cmd_identifier_token32] = ACTIONS(1304), + [aux_sym_cmd_identifier_token33] = ACTIONS(1302), + [aux_sym_cmd_identifier_token34] = ACTIONS(1304), + [aux_sym_cmd_identifier_token35] = ACTIONS(1302), + [aux_sym_cmd_identifier_token36] = ACTIONS(1302), + [aux_sym_cmd_identifier_token37] = ACTIONS(1302), + [aux_sym_cmd_identifier_token38] = ACTIONS(1304), + [aux_sym_cmd_identifier_token39] = ACTIONS(1302), + [aux_sym_cmd_identifier_token40] = ACTIONS(1302), + [sym__newline] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_err_GT_PIPE] = ACTIONS(1302), + [anon_sym_out_GT_PIPE] = ACTIONS(1302), + [anon_sym_e_GT_PIPE] = ACTIONS(1302), + [anon_sym_o_GT_PIPE] = ACTIONS(1302), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1302), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1302), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1302), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_try] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_where] = ACTIONS(1302), + [aux_sym_expr_unary_token1] = ACTIONS(1302), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), + [anon_sym_DOT_DOT_LT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(1302), + [aux_sym__val_number_token2] = ACTIONS(1302), + [aux_sym__val_number_token3] = ACTIONS(1302), + [aux_sym__val_number_token4] = ACTIONS(1304), + [aux_sym__val_number_token5] = ACTIONS(1304), + [aux_sym__val_number_token6] = ACTIONS(1304), + [anon_sym_0b] = ACTIONS(1304), + [anon_sym_0o] = ACTIONS(1304), + [anon_sym_0x] = ACTIONS(1304), + [sym_val_date] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym__str_single_quotes] = ACTIONS(1302), + [sym__str_back_ticks] = ACTIONS(1302), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), + [aux_sym_env_var_token1] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1302), + [aux_sym_command_token1] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1302), }, [782] = { + [sym_expr_parenthesized] = STATE(1610), + [sym_val_range] = STATE(1925), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1925), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1925), + [sym_long_flag] = STATE(1925), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(1894), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(782), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(2641), - [aux_sym__immediate_decimal_token2] = ACTIONS(2643), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [aux_sym_record_entry_token1] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(793), + [sym__newline] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_err_GT_PIPE] = ACTIONS(2647), + [anon_sym_out_GT_PIPE] = ACTIONS(2647), + [anon_sym_e_GT_PIPE] = ACTIONS(2647), + [anon_sym_o_GT_PIPE] = ACTIONS(2647), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2647), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2647), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2647), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [783] = { [sym_comment] = STATE(783), - [aux_sym_cmd_identifier_token1] = ACTIONS(2645), - [aux_sym_cmd_identifier_token2] = ACTIONS(2647), - [aux_sym_cmd_identifier_token3] = ACTIONS(2647), - [aux_sym_cmd_identifier_token4] = ACTIONS(2647), - [aux_sym_cmd_identifier_token5] = ACTIONS(2647), - [aux_sym_cmd_identifier_token6] = ACTIONS(2647), - [aux_sym_cmd_identifier_token7] = ACTIONS(2647), - [aux_sym_cmd_identifier_token8] = ACTIONS(2647), - [aux_sym_cmd_identifier_token9] = ACTIONS(2645), - [aux_sym_cmd_identifier_token10] = ACTIONS(2647), - [aux_sym_cmd_identifier_token11] = ACTIONS(2647), - [aux_sym_cmd_identifier_token12] = ACTIONS(2647), - [aux_sym_cmd_identifier_token13] = ACTIONS(2645), - [aux_sym_cmd_identifier_token14] = ACTIONS(2647), - [aux_sym_cmd_identifier_token15] = ACTIONS(2645), - [aux_sym_cmd_identifier_token16] = ACTIONS(2647), - [aux_sym_cmd_identifier_token17] = ACTIONS(2647), - [aux_sym_cmd_identifier_token18] = ACTIONS(2645), - [aux_sym_cmd_identifier_token19] = ACTIONS(2647), - [aux_sym_cmd_identifier_token20] = ACTIONS(2647), - [aux_sym_cmd_identifier_token21] = ACTIONS(2647), - [aux_sym_cmd_identifier_token22] = ACTIONS(2647), - [aux_sym_cmd_identifier_token23] = ACTIONS(2647), - [aux_sym_cmd_identifier_token24] = ACTIONS(2647), - [aux_sym_cmd_identifier_token25] = ACTIONS(2647), - [aux_sym_cmd_identifier_token26] = ACTIONS(2647), - [aux_sym_cmd_identifier_token27] = ACTIONS(2647), - [aux_sym_cmd_identifier_token28] = ACTIONS(2647), - [aux_sym_cmd_identifier_token29] = ACTIONS(2647), - [aux_sym_cmd_identifier_token30] = ACTIONS(2647), - [aux_sym_cmd_identifier_token31] = ACTIONS(2647), - [aux_sym_cmd_identifier_token32] = ACTIONS(2645), - [aux_sym_cmd_identifier_token33] = ACTIONS(2647), - [aux_sym_cmd_identifier_token34] = ACTIONS(2645), - [aux_sym_cmd_identifier_token35] = ACTIONS(2647), - [aux_sym_cmd_identifier_token36] = ACTIONS(2647), - [aux_sym_cmd_identifier_token37] = ACTIONS(2647), - [aux_sym_cmd_identifier_token38] = ACTIONS(2645), - [aux_sym_cmd_identifier_token39] = ACTIONS(2647), - [aux_sym_cmd_identifier_token40] = ACTIONS(2647), - [sym__newline] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_err_GT_PIPE] = ACTIONS(1306), - [anon_sym_out_GT_PIPE] = ACTIONS(1306), - [anon_sym_e_GT_PIPE] = ACTIONS(1306), - [anon_sym_o_GT_PIPE] = ACTIONS(1306), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1306), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1306), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1306), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2645), - [anon_sym_DASH2] = ACTIONS(2645), - [anon_sym_break] = ACTIONS(2645), - [anon_sym_continue] = ACTIONS(2645), - [anon_sym_do] = ACTIONS(2645), - [anon_sym_if] = ACTIONS(2645), - [anon_sym_match] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(2645), - [anon_sym_try] = ACTIONS(2645), - [anon_sym_return] = ACTIONS(2645), - [anon_sym_where] = ACTIONS(2647), - [aux_sym_expr_unary_token1] = ACTIONS(2647), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2647), - [anon_sym_DOT_DOT_LT] = ACTIONS(2647), - [anon_sym_null] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2645), - [anon_sym_false] = ACTIONS(2645), - [aux_sym__val_number_decimal_token1] = ACTIONS(2645), - [aux_sym__val_number_decimal_token2] = ACTIONS(2647), - [aux_sym__val_number_decimal_token3] = ACTIONS(2647), - [aux_sym__val_number_decimal_token4] = ACTIONS(2647), - [aux_sym__val_number_token1] = ACTIONS(2647), - [aux_sym__val_number_token2] = ACTIONS(2647), - [aux_sym__val_number_token3] = ACTIONS(2647), - [aux_sym__val_number_token4] = ACTIONS(2645), - [aux_sym__val_number_token5] = ACTIONS(2645), - [aux_sym__val_number_token6] = ACTIONS(2645), - [anon_sym_0b] = ACTIONS(2645), - [anon_sym_0o] = ACTIONS(2645), - [anon_sym_0x] = ACTIONS(2645), - [sym_val_date] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [sym__str_single_quotes] = ACTIONS(2647), - [sym__str_back_ticks] = ACTIONS(2647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2647), - [aux_sym_env_var_token1] = ACTIONS(2645), - [anon_sym_CARET] = ACTIONS(2647), - [aux_sym_command_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2647), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(2703), + [aux_sym__immediate_decimal_token2] = ACTIONS(2705), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(3), }, [784] = { - [sym_expr_parenthesized] = STATE(1544), - [sym_val_range] = STATE(1811), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1811), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1811), - [sym_long_flag] = STATE(1811), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_expr_parenthesized] = STATE(1610), + [sym_val_range] = STATE(1925), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1925), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1925), + [sym_long_flag] = STATE(1925), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(1894), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(784), - [aux_sym_ctrl_do_repeat2] = STATE(795), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(782), + [sym__newline] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_err_GT_PIPE] = ACTIONS(2707), + [anon_sym_out_GT_PIPE] = ACTIONS(2707), + [anon_sym_e_GT_PIPE] = ACTIONS(2707), + [anon_sym_o_GT_PIPE] = ACTIONS(2707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2707), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [785] = { + [sym_expr_parenthesized] = STATE(1576), + [sym_val_range] = STATE(1869), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1869), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1869), + [sym_long_flag] = STATE(1869), + [sym_unquoted] = STATE(1625), + [sym__unquoted_with_expr] = STATE(1870), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(785), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(2705), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2707), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(798), + [sym__newline] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_err_GT_PIPE] = ACTIONS(2709), + [anon_sym_out_GT_PIPE] = ACTIONS(2709), + [anon_sym_e_GT_PIPE] = ACTIONS(2709), + [anon_sym_o_GT_PIPE] = ACTIONS(2709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [786] = { + [sym_expr_parenthesized] = STATE(1576), + [sym_val_range] = STATE(1869), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1869), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1869), + [sym_long_flag] = STATE(1869), + [sym_unquoted] = STATE(1625), + [sym__unquoted_with_expr] = STATE(1870), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(786), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(2709), - [aux_sym__immediate_decimal_token2] = ACTIONS(2711), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(786), + [sym__newline] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_err_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_GT_PIPE] = ACTIONS(2711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2711), + [anon_sym_DOLLAR] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_DOT_DOT] = ACTIONS(2731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2734), + [anon_sym_DOT_DOT_LT] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2737), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [aux_sym__val_number_decimal_token1] = ACTIONS(2743), + [aux_sym__val_number_decimal_token2] = ACTIONS(2746), + [aux_sym__val_number_decimal_token3] = ACTIONS(2749), + [aux_sym__val_number_decimal_token4] = ACTIONS(2752), + [aux_sym__val_number_token1] = ACTIONS(2755), + [aux_sym__val_number_token2] = ACTIONS(2755), + [aux_sym__val_number_token3] = ACTIONS(2755), + [aux_sym__val_number_token4] = ACTIONS(2758), + [aux_sym__val_number_token5] = ACTIONS(2758), + [aux_sym__val_number_token6] = ACTIONS(2758), + [anon_sym_0b] = ACTIONS(2761), + [anon_sym_0o] = ACTIONS(2764), + [anon_sym_0x] = ACTIONS(2764), + [sym_val_date] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2770), + [sym__str_single_quotes] = ACTIONS(2773), + [sym__str_back_ticks] = ACTIONS(2773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2779), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2785), + [anon_sym_out_GT_GT] = ACTIONS(2785), + [anon_sym_e_GT_GT] = ACTIONS(2785), + [anon_sym_o_GT_GT] = ACTIONS(2785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), + [aux_sym_unquoted_token1] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2791), }, [787] = { - [sym_expr_parenthesized] = STATE(1544), - [sym_val_range] = STATE(1811), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1811), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1811), - [sym_long_flag] = STATE(1811), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_expr_parenthesized] = STATE(1576), + [sym_val_range] = STATE(1869), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1869), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1869), + [sym_long_flag] = STATE(1869), + [sym_unquoted] = STATE(1625), + [sym__unquoted_with_expr] = STATE(1870), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(787), - [aux_sym_ctrl_do_repeat2] = STATE(798), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [aux_sym_ctrl_do_repeat2] = STATE(786), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [788] = { [sym_comment] = STATE(788), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2635), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [aux_sym_record_entry_token1] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(2796), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2798), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [789] = { [sym_comment] = STATE(789), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(2713), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [aux_sym_record_entry_token1] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(2800), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), + [aux_sym_record_entry_token1] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [790] = { + [sym_expr_parenthesized] = STATE(1610), + [sym_val_range] = STATE(1925), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1925), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1925), + [sym_long_flag] = STATE(1925), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(1894), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(790), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(2715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2717), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(797), + [sym__newline] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [791] = { [sym_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1639), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(2719), - [aux_sym__immediate_decimal_token2] = ACTIONS(2721), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(2804), + [aux_sym__immediate_decimal_token2] = ACTIONS(2806), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [792] = { - [sym_expr_parenthesized] = STATE(1647), - [sym_val_range] = STATE(1862), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1862), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1862), - [sym_long_flag] = STATE(1862), - [sym_unquoted] = STATE(1654), - [sym__unquoted_with_expr] = STATE(1872), - [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(792), - [aux_sym_shebang_repeat1] = STATE(1066), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(792), - [sym__newline] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2737), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_DOT_DOT] = ACTIONS(2746), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2749), - [anon_sym_DOT_DOT_LT] = ACTIONS(2749), - [anon_sym_null] = ACTIONS(2752), - [anon_sym_true] = ACTIONS(2755), - [anon_sym_false] = ACTIONS(2755), - [aux_sym__val_number_decimal_token1] = ACTIONS(2758), - [aux_sym__val_number_decimal_token2] = ACTIONS(2761), - [aux_sym__val_number_decimal_token3] = ACTIONS(2764), - [aux_sym__val_number_decimal_token4] = ACTIONS(2767), - [aux_sym__val_number_token1] = ACTIONS(2770), - [aux_sym__val_number_token2] = ACTIONS(2770), - [aux_sym__val_number_token3] = ACTIONS(2770), - [aux_sym__val_number_token4] = ACTIONS(2773), - [aux_sym__val_number_token5] = ACTIONS(2773), - [aux_sym__val_number_token6] = ACTIONS(2773), - [anon_sym_0b] = ACTIONS(2776), - [anon_sym_0o] = ACTIONS(2779), - [anon_sym_0x] = ACTIONS(2779), - [sym_val_date] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym__str_single_quotes] = ACTIONS(2788), - [sym__str_back_ticks] = ACTIONS(2788), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2791), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2794), - [anon_sym_err_GT] = ACTIONS(2797), - [anon_sym_out_GT] = ACTIONS(2797), - [anon_sym_e_GT] = ACTIONS(2797), - [anon_sym_o_GT] = ACTIONS(2797), - [anon_sym_err_PLUSout_GT] = ACTIONS(2797), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2797), - [anon_sym_o_PLUSe_GT] = ACTIONS(2797), - [anon_sym_e_PLUSo_GT] = ACTIONS(2797), - [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(2803), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(2808), + [aux_sym__immediate_decimal_token2] = ACTIONS(2810), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(3), }, [793] = { - [sym_expr_parenthesized] = STATE(1647), - [sym_val_range] = STATE(1862), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1862), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1862), - [sym_long_flag] = STATE(1862), - [sym_unquoted] = STATE(1654), - [sym__unquoted_with_expr] = STATE(1872), - [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_expr_parenthesized] = STATE(1610), + [sym_val_range] = STATE(1925), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1925), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1925), + [sym_long_flag] = STATE(1925), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(1894), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(793), - [aux_sym_shebang_repeat1] = STATE(1066), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(797), - [sym__newline] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2809), - [anon_sym_err_GT_PIPE] = ACTIONS(2809), - [anon_sym_out_GT_PIPE] = ACTIONS(2809), - [anon_sym_e_GT_PIPE] = ACTIONS(2809), - [anon_sym_o_GT_PIPE] = ACTIONS(2809), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2809), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2809), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2809), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), - }, - [794] = { - [sym_comment] = STATE(794), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(2811), - [aux_sym__immediate_decimal_token2] = ACTIONS(2813), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), - }, - [795] = { - [sym_expr_parenthesized] = STATE(1544), - [sym_val_range] = STATE(1811), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1811), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1811), - [sym_long_flag] = STATE(1811), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(6847), - [sym_comment] = STATE(795), - [aux_sym_ctrl_do_repeat2] = STATE(798), - [sym__newline] = ACTIONS(2815), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(793), + [sym__newline] = ACTIONS(2812), [anon_sym_SEMI] = ACTIONS(2815), [anon_sym_PIPE] = ACTIONS(2815), [anon_sym_err_GT_PIPE] = ACTIONS(2815), @@ -167042,31734 +169346,31814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2815), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2815), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2820), [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [anon_sym_DOLLAR] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_DASH2] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2835), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2838), + [anon_sym_DOT_DOT_LT] = ACTIONS(2838), + [anon_sym_null] = ACTIONS(2841), + [anon_sym_true] = ACTIONS(2844), + [anon_sym_false] = ACTIONS(2844), + [aux_sym__val_number_decimal_token1] = ACTIONS(2847), + [aux_sym__val_number_decimal_token2] = ACTIONS(2850), + [aux_sym__val_number_decimal_token3] = ACTIONS(2853), + [aux_sym__val_number_decimal_token4] = ACTIONS(2856), + [aux_sym__val_number_token1] = ACTIONS(2859), + [aux_sym__val_number_token2] = ACTIONS(2859), + [aux_sym__val_number_token3] = ACTIONS(2859), + [aux_sym__val_number_token4] = ACTIONS(2862), + [aux_sym__val_number_token5] = ACTIONS(2862), + [aux_sym__val_number_token6] = ACTIONS(2862), + [anon_sym_0b] = ACTIONS(2865), + [anon_sym_0o] = ACTIONS(2868), + [anon_sym_0x] = ACTIONS(2868), + [sym_val_date] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym__str_single_quotes] = ACTIONS(2877), + [sym__str_back_ticks] = ACTIONS(2877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2880), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2883), + [anon_sym_err_GT] = ACTIONS(2886), + [anon_sym_out_GT] = ACTIONS(2886), + [anon_sym_e_GT] = ACTIONS(2886), + [anon_sym_o_GT] = ACTIONS(2886), + [anon_sym_err_PLUSout_GT] = ACTIONS(2886), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2886), + [anon_sym_o_PLUSe_GT] = ACTIONS(2886), + [anon_sym_e_PLUSo_GT] = ACTIONS(2886), + [anon_sym_err_GT_GT] = ACTIONS(2889), + [anon_sym_out_GT_GT] = ACTIONS(2889), + [anon_sym_e_GT_GT] = ACTIONS(2889), + [anon_sym_o_GT_GT] = ACTIONS(2889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2889), + [aux_sym_unquoted_token1] = ACTIONS(2892), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2895), + }, + [794] = { + [sym_comment] = STATE(794), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2635), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [aux_sym_record_entry_token1] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), + }, + [795] = { + [sym_comment] = STATE(795), + [ts_builtin_sym_end] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2900), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), }, [796] = { - [sym_expr_parenthesized] = STATE(1647), - [sym_val_range] = STATE(1862), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1862), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1862), - [sym_long_flag] = STATE(1862), - [sym_unquoted] = STATE(1654), - [sym__unquoted_with_expr] = STATE(1872), - [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_expr_parenthesized] = STATE(1576), + [sym_val_range] = STATE(1869), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1869), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1869), + [sym_long_flag] = STATE(1869), + [sym_unquoted] = STATE(1625), + [sym__unquoted_with_expr] = STATE(1870), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(796), - [aux_sym_shebang_repeat1] = STATE(1066), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(800), - [sym__newline] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2817), - [anon_sym_err_GT_PIPE] = ACTIONS(2817), - [anon_sym_out_GT_PIPE] = ACTIONS(2817), - [anon_sym_e_GT_PIPE] = ACTIONS(2817), - [anon_sym_o_GT_PIPE] = ACTIONS(2817), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2817), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2817), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2817), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [aux_sym_ctrl_do_repeat2] = STATE(787), + [sym__newline] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_err_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_GT_PIPE] = ACTIONS(2902), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [797] = { - [sym_expr_parenthesized] = STATE(1647), - [sym_val_range] = STATE(1862), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1862), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1862), - [sym_long_flag] = STATE(1862), - [sym_unquoted] = STATE(1654), - [sym__unquoted_with_expr] = STATE(1872), - [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_expr_parenthesized] = STATE(1610), + [sym_val_range] = STATE(1925), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1925), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1925), + [sym_long_flag] = STATE(1925), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(1894), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(797), - [aux_sym_shebang_repeat1] = STATE(1066), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(792), - [sym__newline] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2817), - [anon_sym_err_GT_PIPE] = ACTIONS(2817), - [anon_sym_out_GT_PIPE] = ACTIONS(2817), - [anon_sym_e_GT_PIPE] = ACTIONS(2817), - [anon_sym_o_GT_PIPE] = ACTIONS(2817), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2817), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2817), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2817), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [aux_sym_shebang_repeat1] = STATE(1076), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(793), + [sym__newline] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_err_GT_PIPE] = ACTIONS(2707), + [anon_sym_out_GT_PIPE] = ACTIONS(2707), + [anon_sym_e_GT_PIPE] = ACTIONS(2707), + [anon_sym_o_GT_PIPE] = ACTIONS(2707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2707), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [798] = { - [sym_expr_parenthesized] = STATE(1544), - [sym_val_range] = STATE(1811), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1811), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1811), - [sym_long_flag] = STATE(1811), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_expr_parenthesized] = STATE(1576), + [sym_val_range] = STATE(1869), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1869), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1869), + [sym_long_flag] = STATE(1869), + [sym_unquoted] = STATE(1625), + [sym__unquoted_with_expr] = STATE(1870), + [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(798), - [aux_sym_ctrl_do_repeat2] = STATE(798), - [sym__newline] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_err_GT_PIPE] = ACTIONS(2821), - [anon_sym_out_GT_PIPE] = ACTIONS(2821), - [anon_sym_e_GT_PIPE] = ACTIONS(2821), - [anon_sym_o_GT_PIPE] = ACTIONS(2821), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2821), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2821), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2821), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2821), - [anon_sym_DOLLAR] = ACTIONS(2829), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_DASH2] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2821), - [anon_sym_DOT_DOT] = ACTIONS(2841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), - [anon_sym_DOT_DOT_LT] = ACTIONS(2844), - [anon_sym_null] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2850), - [anon_sym_false] = ACTIONS(2850), - [aux_sym__val_number_decimal_token1] = ACTIONS(2853), - [aux_sym__val_number_decimal_token2] = ACTIONS(2856), - [aux_sym__val_number_decimal_token3] = ACTIONS(2859), - [aux_sym__val_number_decimal_token4] = ACTIONS(2862), - [aux_sym__val_number_token1] = ACTIONS(2865), - [aux_sym__val_number_token2] = ACTIONS(2865), - [aux_sym__val_number_token3] = ACTIONS(2865), - [aux_sym__val_number_token4] = ACTIONS(2868), - [aux_sym__val_number_token5] = ACTIONS(2868), - [aux_sym__val_number_token6] = ACTIONS(2868), - [anon_sym_0b] = ACTIONS(2871), - [anon_sym_0o] = ACTIONS(2874), - [anon_sym_0x] = ACTIONS(2874), - [sym_val_date] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2880), - [sym__str_single_quotes] = ACTIONS(2883), - [sym__str_back_ticks] = ACTIONS(2883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2889), - [anon_sym_err_GT] = ACTIONS(2892), - [anon_sym_out_GT] = ACTIONS(2892), - [anon_sym_e_GT] = ACTIONS(2892), - [anon_sym_o_GT] = ACTIONS(2892), - [anon_sym_err_PLUSout_GT] = ACTIONS(2892), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2892), - [anon_sym_o_PLUSe_GT] = ACTIONS(2892), - [anon_sym_e_PLUSo_GT] = ACTIONS(2892), - [anon_sym_err_GT_GT] = ACTIONS(2895), - [anon_sym_out_GT_GT] = ACTIONS(2895), - [anon_sym_e_GT_GT] = ACTIONS(2895), - [anon_sym_o_GT_GT] = ACTIONS(2895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2895), - [aux_sym_unquoted_token1] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2901), + [aux_sym_ctrl_do_repeat2] = STATE(786), + [sym__newline] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_err_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_GT_PIPE] = ACTIONS(2902), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [799] = { - [sym_expr_parenthesized] = STATE(1544), - [sym_val_range] = STATE(1811), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1811), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1811), - [sym_long_flag] = STATE(1811), - [sym_unquoted] = STATE(1596), - [sym__unquoted_with_expr] = STATE(1812), - [sym__unquoted_anonymous_prefix] = STATE(6847), [sym_comment] = STATE(799), - [aux_sym_ctrl_do_repeat2] = STATE(787), - [sym__newline] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_err_GT_PIPE] = ACTIONS(2904), - [anon_sym_out_GT_PIPE] = ACTIONS(2904), - [anon_sym_e_GT_PIPE] = ACTIONS(2904), - [anon_sym_o_GT_PIPE] = ACTIONS(2904), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2904), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2904), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2904), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2906), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), }, [800] = { - [sym_expr_parenthesized] = STATE(1647), - [sym_val_range] = STATE(1862), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1862), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1862), - [sym_long_flag] = STATE(1862), - [sym_unquoted] = STATE(1654), - [sym__unquoted_with_expr] = STATE(1872), - [sym__unquoted_anonymous_prefix] = STATE(6847), + [sym_expr_parenthesized] = STATE(1668), + [sym_val_range] = STATE(1972), + [sym__val_range] = STATE(8541), + [sym__val_range_with_end] = STATE(7994), + [sym__value] = STATE(1972), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1638), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1362), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_short_flag] = STATE(1972), + [sym_long_flag] = STATE(1972), + [sym_unquoted] = STATE(1691), + [sym__unquoted_with_expr] = STATE(2007), + [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(800), - [aux_sym_shebang_repeat1] = STATE(1066), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(792), - [sym__newline] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_err_GT_PIPE] = ACTIONS(2906), - [anon_sym_out_GT_PIPE] = ACTIONS(2906), - [anon_sym_e_GT_PIPE] = ACTIONS(2906), - [anon_sym_o_GT_PIPE] = ACTIONS(2906), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2906), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2906), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2906), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2906), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [aux_sym_ctrl_do_repeat2] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_err_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_GT_PIPE] = ACTIONS(2902), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_DASH2] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), + [anon_sym_DOT_DOT_LT] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [aux_sym__val_number_decimal_token1] = ACTIONS(2928), + [aux_sym__val_number_decimal_token2] = ACTIONS(2930), + [aux_sym__val_number_decimal_token3] = ACTIONS(2932), + [aux_sym__val_number_decimal_token4] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(2938), + [aux_sym__val_number_token5] = ACTIONS(2938), + [aux_sym__val_number_token6] = ACTIONS(2938), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [801] = { [sym_comment] = STATE(801), - [ts_builtin_sym_end] = ACTIONS(1647), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(2908), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2910), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(2958), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [802] = { - [sym_expr_parenthesized] = STATE(1571), - [sym_val_range] = STATE(1962), - [sym__val_range] = STATE(8064), - [sym__val_range_with_end] = STATE(7709), - [sym__value] = STATE(1962), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1725), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1368), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_short_flag] = STATE(1962), - [sym_long_flag] = STATE(1962), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1967), - [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(802), - [aux_sym_ctrl_do_repeat2] = STATE(816), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_DASH2] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2926), - [anon_sym_DOT_DOT_LT] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [aux_sym__val_number_decimal_token1] = ACTIONS(2932), - [aux_sym__val_number_decimal_token2] = ACTIONS(2934), - [aux_sym__val_number_decimal_token3] = ACTIONS(2936), - [aux_sym__val_number_decimal_token4] = ACTIONS(2938), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(2942), - [aux_sym__val_number_token5] = ACTIONS(2942), - [aux_sym__val_number_token6] = ACTIONS(2942), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), + [aux_sym_record_entry_token1] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), }, [803] = { [sym_comment] = STATE(803), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(2962), - [aux_sym__immediate_decimal_token2] = ACTIONS(2964), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [aux_sym_record_entry_token1] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), }, [804] = { - [sym_expr_parenthesized] = STATE(1571), - [sym_val_range] = STATE(1962), - [sym__val_range] = STATE(8064), - [sym__val_range_with_end] = STATE(7709), - [sym__value] = STATE(1962), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1725), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1368), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_short_flag] = STATE(1962), - [sym_long_flag] = STATE(1962), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1967), - [sym__unquoted_anonymous_prefix] = STATE(7153), + [sym_expr_parenthesized] = STATE(1668), + [sym_val_range] = STATE(1972), + [sym__val_range] = STATE(8541), + [sym__val_range_with_end] = STATE(7994), + [sym__value] = STATE(1972), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1638), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1362), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_short_flag] = STATE(1972), + [sym_long_flag] = STATE(1972), + [sym_unquoted] = STATE(1691), + [sym__unquoted_with_expr] = STATE(2007), + [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(804), - [aux_sym_ctrl_do_repeat2] = STATE(816), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym__newline] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_err_GT_PIPE] = ACTIONS(2815), - [anon_sym_out_GT_PIPE] = ACTIONS(2815), - [anon_sym_e_GT_PIPE] = ACTIONS(2815), - [anon_sym_o_GT_PIPE] = ACTIONS(2815), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2815), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2815), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2815), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_DASH2] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2926), - [anon_sym_DOT_DOT_LT] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [aux_sym__val_number_decimal_token1] = ACTIONS(2932), - [aux_sym__val_number_decimal_token2] = ACTIONS(2934), - [aux_sym__val_number_decimal_token3] = ACTIONS(2936), - [aux_sym__val_number_decimal_token4] = ACTIONS(2938), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(2942), - [aux_sym__val_number_token5] = ACTIONS(2942), - [aux_sym__val_number_token6] = ACTIONS(2942), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [aux_sym_ctrl_do_repeat2] = STATE(810), + [ts_builtin_sym_end] = ACTIONS(2709), + [sym__newline] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_err_GT_PIPE] = ACTIONS(2709), + [anon_sym_out_GT_PIPE] = ACTIONS(2709), + [anon_sym_e_GT_PIPE] = ACTIONS(2709), + [anon_sym_o_GT_PIPE] = ACTIONS(2709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_DASH2] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), + [anon_sym_DOT_DOT_LT] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [aux_sym__val_number_decimal_token1] = ACTIONS(2928), + [aux_sym__val_number_decimal_token2] = ACTIONS(2930), + [aux_sym__val_number_decimal_token3] = ACTIONS(2932), + [aux_sym__val_number_decimal_token4] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(2938), + [aux_sym__val_number_token5] = ACTIONS(2938), + [aux_sym__val_number_token6] = ACTIONS(2938), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [805] = { + [sym_expr_parenthesized] = STATE(1668), + [sym_val_range] = STATE(1972), + [sym__val_range] = STATE(8541), + [sym__val_range_with_end] = STATE(7994), + [sym__value] = STATE(1972), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1638), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1362), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_short_flag] = STATE(1972), + [sym_long_flag] = STATE(1972), + [sym_unquoted] = STATE(1691), + [sym__unquoted_with_expr] = STATE(2007), + [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(805), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(2966), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym__newline] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_err_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_GT_PIPE] = ACTIONS(2711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_DOLLAR] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_DASH2] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_DOT_DOT] = ACTIONS(2978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2981), + [anon_sym_DOT_DOT_LT] = ACTIONS(2981), + [anon_sym_null] = ACTIONS(2984), + [anon_sym_true] = ACTIONS(2987), + [anon_sym_false] = ACTIONS(2987), + [aux_sym__val_number_decimal_token1] = ACTIONS(2990), + [aux_sym__val_number_decimal_token2] = ACTIONS(2993), + [aux_sym__val_number_decimal_token3] = ACTIONS(2996), + [aux_sym__val_number_decimal_token4] = ACTIONS(2999), + [aux_sym__val_number_token1] = ACTIONS(3002), + [aux_sym__val_number_token2] = ACTIONS(3002), + [aux_sym__val_number_token3] = ACTIONS(3002), + [aux_sym__val_number_token4] = ACTIONS(3005), + [aux_sym__val_number_token5] = ACTIONS(3005), + [aux_sym__val_number_token6] = ACTIONS(3005), + [anon_sym_0b] = ACTIONS(3008), + [anon_sym_0o] = ACTIONS(3011), + [anon_sym_0x] = ACTIONS(3011), + [sym_val_date] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3017), + [sym__str_single_quotes] = ACTIONS(3020), + [sym__str_back_ticks] = ACTIONS(3020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2785), + [anon_sym_out_GT_GT] = ACTIONS(2785), + [anon_sym_e_GT_GT] = ACTIONS(2785), + [anon_sym_o_GT_GT] = ACTIONS(2785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), + [aux_sym_unquoted_token1] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3032), }, [806] = { [sym_comment] = STATE(806), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [aux_sym_record_entry_token1] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2798), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [807] = { [sym_comment] = STATE(807), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(2968), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2970), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3035), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [808] = { [sym_comment] = STATE(808), - [ts_builtin_sym_end] = ACTIONS(1747), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(2972), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(3037), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [809] = { [sym_comment] = STATE(809), - [ts_builtin_sym_end] = ACTIONS(1647), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2910), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [ts_builtin_sym_end] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2900), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [810] = { + [sym_expr_parenthesized] = STATE(1668), + [sym_val_range] = STATE(1972), + [sym__val_range] = STATE(8541), + [sym__val_range_with_end] = STATE(7994), + [sym__value] = STATE(1972), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1638), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1362), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_short_flag] = STATE(1972), + [sym_long_flag] = STATE(1972), + [sym_unquoted] = STATE(1691), + [sym__unquoted_with_expr] = STATE(2007), + [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(810), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [aux_sym_record_entry_token1] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym__newline] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_err_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_GT_PIPE] = ACTIONS(2902), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_DASH2] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), + [anon_sym_DOT_DOT_LT] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [aux_sym__val_number_decimal_token1] = ACTIONS(2928), + [aux_sym__val_number_decimal_token2] = ACTIONS(2930), + [aux_sym__val_number_decimal_token3] = ACTIONS(2932), + [aux_sym__val_number_decimal_token4] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(2938), + [aux_sym__val_number_token5] = ACTIONS(2938), + [aux_sym__val_number_token6] = ACTIONS(2938), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [811] = { + [sym_expr_parenthesized] = STATE(1668), + [sym_val_range] = STATE(1972), + [sym__val_range] = STATE(8541), + [sym__val_range_with_end] = STATE(7994), + [sym__value] = STATE(1972), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1700), + [sym_val_variable] = STATE(1638), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1362), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_short_flag] = STATE(1972), + [sym_long_flag] = STATE(1972), + [sym_unquoted] = STATE(1691), + [sym__unquoted_with_expr] = STATE(2007), + [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(811), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [aux_sym_record_entry_token1] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(805), + [ts_builtin_sym_end] = ACTIONS(2794), + [sym__newline] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_err_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_GT_PIPE] = ACTIONS(2794), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_DASH2] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(2920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), + [anon_sym_DOT_DOT_LT] = ACTIONS(2922), + [anon_sym_null] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [aux_sym__val_number_decimal_token1] = ACTIONS(2928), + [aux_sym__val_number_decimal_token2] = ACTIONS(2930), + [aux_sym__val_number_decimal_token3] = ACTIONS(2932), + [aux_sym__val_number_decimal_token4] = ACTIONS(2934), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(2938), + [aux_sym__val_number_token5] = ACTIONS(2938), + [aux_sym__val_number_token6] = ACTIONS(2938), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [812] = { [sym_comment] = STATE(812), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [aux_sym_record_entry_token1] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [anon_sym_STAR_STAR] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_mod] = ACTIONS(3041), + [anon_sym_SLASH_SLASH] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_bit_DASHshl] = ACTIONS(3041), + [anon_sym_bit_DASHshr] = ACTIONS(3041), + [anon_sym_EQ_TILDE] = ACTIONS(3041), + [anon_sym_BANG_TILDE] = ACTIONS(3041), + [anon_sym_bit_DASHand] = ACTIONS(3041), + [anon_sym_bit_DASHxor] = ACTIONS(3041), + [anon_sym_bit_DASHor] = ACTIONS(3041), + [anon_sym_and] = ACTIONS(3041), + [anon_sym_xor] = ACTIONS(3041), + [anon_sym_or] = ACTIONS(3041), + [anon_sym_in] = ACTIONS(3041), + [anon_sym_not_DASHin] = ACTIONS(3041), + [anon_sym_starts_DASHwith] = ACTIONS(3041), + [anon_sym_ends_DASHwith] = ACTIONS(3041), + [anon_sym_EQ_EQ] = ACTIONS(3041), + [anon_sym_BANG_EQ] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3043), + [anon_sym_LT_EQ] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3043), + [anon_sym_GT_EQ] = ACTIONS(3041), + [aux_sym_cmd_identifier_token41] = ACTIONS(3045), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3051), + [sym_duration_unit] = ACTIONS(3053), + [aux_sym_record_entry_token1] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [813] = { - [sym_expr_parenthesized] = STATE(1571), - [sym_val_range] = STATE(1962), - [sym__val_range] = STATE(8064), - [sym__val_range_with_end] = STATE(7709), - [sym__value] = STATE(1962), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1725), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1368), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_short_flag] = STATE(1962), - [sym_long_flag] = STATE(1962), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1967), - [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(813), - [aux_sym_ctrl_do_repeat2] = STATE(802), - [ts_builtin_sym_end] = ACTIONS(2904), - [sym__newline] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_err_GT_PIPE] = ACTIONS(2904), - [anon_sym_out_GT_PIPE] = ACTIONS(2904), - [anon_sym_e_GT_PIPE] = ACTIONS(2904), - [anon_sym_o_GT_PIPE] = ACTIONS(2904), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2904), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2904), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2904), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_DASH2] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2926), - [anon_sym_DOT_DOT_LT] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [aux_sym__val_number_decimal_token1] = ACTIONS(2932), - [aux_sym__val_number_decimal_token2] = ACTIONS(2934), - [aux_sym__val_number_decimal_token3] = ACTIONS(2936), - [aux_sym__val_number_decimal_token4] = ACTIONS(2938), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(2942), - [aux_sym__val_number_token5] = ACTIONS(2942), - [aux_sym__val_number_token6] = ACTIONS(2942), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [aux_sym_record_entry_token1] = ACTIONS(1669), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), }, [814] = { [sym_comment] = STATE(814), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2707), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3055), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [815] = { [sym_comment] = STATE(815), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(2974), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(2906), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [816] = { - [sym_expr_parenthesized] = STATE(1571), - [sym_val_range] = STATE(1962), - [sym__val_range] = STATE(8064), - [sym__val_range_with_end] = STATE(7709), - [sym__value] = STATE(1962), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1725), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1368), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_short_flag] = STATE(1962), - [sym_long_flag] = STATE(1962), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1967), - [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(816), - [aux_sym_ctrl_do_repeat2] = STATE(816), - [ts_builtin_sym_end] = ACTIONS(2821), - [sym__newline] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_err_GT_PIPE] = ACTIONS(2821), - [anon_sym_out_GT_PIPE] = ACTIONS(2821), - [anon_sym_e_GT_PIPE] = ACTIONS(2821), - [anon_sym_o_GT_PIPE] = ACTIONS(2821), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2821), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2821), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2821), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2982), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_DASH2] = ACTIONS(2988), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_DOT_DOT] = ACTIONS(2994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2997), - [anon_sym_DOT_DOT_LT] = ACTIONS(2997), - [anon_sym_null] = ACTIONS(3000), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [aux_sym__val_number_decimal_token1] = ACTIONS(3006), - [aux_sym__val_number_decimal_token2] = ACTIONS(3009), - [aux_sym__val_number_decimal_token3] = ACTIONS(3012), - [aux_sym__val_number_decimal_token4] = ACTIONS(3015), - [aux_sym__val_number_token1] = ACTIONS(3018), - [aux_sym__val_number_token2] = ACTIONS(3018), - [aux_sym__val_number_token3] = ACTIONS(3018), - [aux_sym__val_number_token4] = ACTIONS(3021), - [aux_sym__val_number_token5] = ACTIONS(3021), - [aux_sym__val_number_token6] = ACTIONS(3021), - [anon_sym_0b] = ACTIONS(3024), - [anon_sym_0o] = ACTIONS(3027), - [anon_sym_0x] = ACTIONS(3027), - [sym_val_date] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym__str_single_quotes] = ACTIONS(3036), - [sym__str_back_ticks] = ACTIONS(3036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3042), - [anon_sym_err_GT] = ACTIONS(2892), - [anon_sym_out_GT] = ACTIONS(2892), - [anon_sym_e_GT] = ACTIONS(2892), - [anon_sym_o_GT] = ACTIONS(2892), - [anon_sym_err_PLUSout_GT] = ACTIONS(2892), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2892), - [anon_sym_o_PLUSe_GT] = ACTIONS(2892), - [anon_sym_e_PLUSo_GT] = ACTIONS(2892), - [anon_sym_err_GT_GT] = ACTIONS(2895), - [anon_sym_out_GT_GT] = ACTIONS(2895), - [anon_sym_e_GT_GT] = ACTIONS(2895), - [anon_sym_o_GT_GT] = ACTIONS(2895), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2895), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2895), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2895), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2895), - [aux_sym_unquoted_token1] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3048), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [aux_sym_record_entry_token1] = ACTIONS(1661), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(3), }, [817] = { [sym_comment] = STATE(817), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2717), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(3057), + [aux_sym__immediate_decimal_token2] = ACTIONS(3059), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [818] = { - [sym_expr_parenthesized] = STATE(1571), - [sym_val_range] = STATE(1962), - [sym__val_range] = STATE(8064), - [sym__val_range_with_end] = STATE(7709), - [sym__value] = STATE(1962), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1725), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1368), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_short_flag] = STATE(1962), - [sym_long_flag] = STATE(1962), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1967), - [sym__unquoted_anonymous_prefix] = STATE(7153), [sym_comment] = STATE(818), - [aux_sym_ctrl_do_repeat2] = STATE(804), - [ts_builtin_sym_end] = ACTIONS(2649), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_DASH2] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2926), - [anon_sym_DOT_DOT_LT] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2928), - [anon_sym_true] = ACTIONS(2930), - [anon_sym_false] = ACTIONS(2930), - [aux_sym__val_number_decimal_token1] = ACTIONS(2932), - [aux_sym__val_number_decimal_token2] = ACTIONS(2934), - [aux_sym__val_number_decimal_token3] = ACTIONS(2936), - [aux_sym__val_number_decimal_token4] = ACTIONS(2938), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(2942), - [aux_sym__val_number_token5] = ACTIONS(2942), - [aux_sym__val_number_token6] = ACTIONS(2942), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3063), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), }, [819] = { [sym_comment] = STATE(819), - [anon_sym_STAR_STAR] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_mod] = ACTIONS(3051), - [anon_sym_SLASH_SLASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_bit_DASHshl] = ACTIONS(3051), - [anon_sym_bit_DASHshr] = ACTIONS(3051), - [anon_sym_EQ_TILDE] = ACTIONS(3051), - [anon_sym_BANG_TILDE] = ACTIONS(3051), - [anon_sym_bit_DASHand] = ACTIONS(3051), - [anon_sym_bit_DASHxor] = ACTIONS(3051), - [anon_sym_bit_DASHor] = ACTIONS(3051), - [anon_sym_and] = ACTIONS(3051), - [anon_sym_xor] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_not_DASHin] = ACTIONS(3051), - [anon_sym_starts_DASHwith] = ACTIONS(3051), - [anon_sym_ends_DASHwith] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3051), - [aux_sym_cmd_identifier_token41] = ACTIONS(3055), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(3061), - [sym_duration_unit] = ACTIONS(3063), - [aux_sym_record_entry_token1] = ACTIONS(1695), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [anon_sym_err_GT_GT] = ACTIONS(1695), - [anon_sym_out_GT_GT] = ACTIONS(1695), - [anon_sym_e_GT_GT] = ACTIONS(1695), - [anon_sym_o_GT_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), }, [820] = { [sym_comment] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(1747), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3065), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [821] = { [sym_comment] = STATE(821), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [ts_builtin_sym_end] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [822] = { [sym_comment] = STATE(822), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(3071), - [sym_duration_unit] = ACTIONS(3073), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [anon_sym_err_GT_GT] = ACTIONS(1695), - [anon_sym_out_GT_GT] = ACTIONS(1695), - [anon_sym_e_GT_GT] = ACTIONS(1695), - [anon_sym_o_GT_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [ts_builtin_sym_end] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [823] = { [sym_comment] = STATE(823), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [824] = { [sym_comment] = STATE(824), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [825] = { [sym_comment] = STATE(825), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(3075), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3077), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3073), + [sym_duration_unit] = ACTIONS(3075), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [826] = { [sym_comment] = STATE(826), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(3077), + [aux_sym__immediate_decimal_token2] = ACTIONS(3079), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [827] = { [sym_comment] = STATE(827), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_STAR_STAR] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_mod] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_bit_DASHshl] = ACTIONS(3079), - [anon_sym_bit_DASHshr] = ACTIONS(3079), - [anon_sym_EQ_TILDE] = ACTIONS(3079), - [anon_sym_BANG_TILDE] = ACTIONS(3079), - [anon_sym_bit_DASHand] = ACTIONS(3079), - [anon_sym_bit_DASHxor] = ACTIONS(3079), - [anon_sym_bit_DASHor] = ACTIONS(3079), - [anon_sym_and] = ACTIONS(3079), - [anon_sym_xor] = ACTIONS(3079), - [anon_sym_or] = ACTIONS(3079), - [anon_sym_in] = ACTIONS(3079), - [anon_sym_not_DASHin] = ACTIONS(3079), - [anon_sym_starts_DASHwith] = ACTIONS(3079), - [anon_sym_ends_DASHwith] = ACTIONS(3079), - [anon_sym_EQ_EQ] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3079), - [aux_sym_cmd_identifier_token41] = ACTIONS(3083), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3087), - [sym_filesize_unit] = ACTIONS(3089), - [sym_duration_unit] = ACTIONS(3091), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [anon_sym_err_GT_GT] = ACTIONS(1695), - [anon_sym_out_GT_GT] = ACTIONS(1695), - [anon_sym_e_GT_GT] = ACTIONS(1695), - [anon_sym_o_GT_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3039), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [828] = { [sym_comment] = STATE(828), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), }, [829] = { [sym_comment] = STATE(829), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3081), + [sym_duration_unit] = ACTIONS(3083), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [830] = { [sym_comment] = STATE(830), - [ts_builtin_sym_end] = ACTIONS(1783), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [ts_builtin_sym_end] = ACTIONS(1769), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), }, [831] = { [sym_comment] = STATE(831), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [832] = { [sym_comment] = STATE(832), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(3093), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [833] = { [sym_comment] = STATE(833), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), + [ts_builtin_sym_end] = ACTIONS(1699), + [anon_sym_STAR_STAR] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_mod] = ACTIONS(3085), + [anon_sym_SLASH_SLASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_bit_DASHshl] = ACTIONS(3085), + [anon_sym_bit_DASHshr] = ACTIONS(3085), + [anon_sym_EQ_TILDE] = ACTIONS(3085), + [anon_sym_BANG_TILDE] = ACTIONS(3085), + [anon_sym_bit_DASHand] = ACTIONS(3085), + [anon_sym_bit_DASHxor] = ACTIONS(3085), + [anon_sym_bit_DASHor] = ACTIONS(3085), + [anon_sym_and] = ACTIONS(3085), + [anon_sym_xor] = ACTIONS(3085), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_in] = ACTIONS(3085), + [anon_sym_not_DASHin] = ACTIONS(3085), + [anon_sym_starts_DASHwith] = ACTIONS(3085), + [anon_sym_ends_DASHwith] = ACTIONS(3085), + [anon_sym_EQ_EQ] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_LT_EQ] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3087), + [anon_sym_GT_EQ] = ACTIONS(3085), + [aux_sym_cmd_identifier_token41] = ACTIONS(3089), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3091), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3093), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3093), [sym_filesize_unit] = ACTIONS(3095), [sym_duration_unit] = ACTIONS(3097), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [anon_sym_err_GT_GT] = ACTIONS(1695), - [anon_sym_out_GT_GT] = ACTIONS(1695), - [anon_sym_e_GT_GT] = ACTIONS(1695), - [anon_sym_o_GT_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [834] = { [sym_comment] = STATE(834), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [835] = { [sym_comment] = STATE(835), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(2970), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [836] = { [sym_comment] = STATE(836), - [ts_builtin_sym_end] = ACTIONS(1639), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [837] = { [sym_comment] = STATE(837), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(3099), - [aux_sym__immediate_decimal_token2] = ACTIONS(3101), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [838] = { [sym_comment] = STATE(838), - [ts_builtin_sym_end] = ACTIONS(1647), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3099), + [sym_duration_unit] = ACTIONS(3101), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [839] = { [sym_comment] = STATE(839), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [840] = { [sym_comment] = STATE(840), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3077), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3063), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(3), }, [841] = { [sym_comment] = STATE(841), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3103), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [842] = { [sym_comment] = STATE(842), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(3103), - [sym_duration_unit] = ACTIONS(3105), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [anon_sym_err_GT_GT] = ACTIONS(1695), - [anon_sym_out_GT_GT] = ACTIONS(1695), - [anon_sym_e_GT_GT] = ACTIONS(1695), - [anon_sym_o_GT_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), }, [843] = { [sym_comment] = STATE(843), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(3107), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), }, [844] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7854), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8231), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(844), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(894), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [845] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7930), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8492), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(845), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(881), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [846] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7791), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8503), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(846), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [847] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(8103), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7899), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8253), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(880), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [848] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7774), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), }, [849] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7864), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8442), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(849), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(895), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [850] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7202), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(8103), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7937), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8533), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [851] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7399), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7992), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8435), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(900), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(882), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_RBRACK] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [852] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7770), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7845), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8297), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(893), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [853] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7361), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7953), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7910), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8381), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(895), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(899), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [854] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7872), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8632), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(854), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1637), - [anon_sym_out_GT_GT] = ACTIONS(1637), - [anon_sym_e_GT_GT] = ACTIONS(1637), - [anon_sym_o_GT_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(896), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [855] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7406), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(8047), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7701), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8502), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(901), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(887), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [856] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7799), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7943), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8606), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(856), [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [857] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7310), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7978), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(3), }, [858] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7202), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7927), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8658), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(882), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [859] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7345), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(8062), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8537), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(859), [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_RBRACK] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [860] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7412), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(8139), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7835), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8567), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(902), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(892), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [861] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7377), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7863), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(897), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1661), + [anon_sym_out_GT_GT] = ACTIONS(1661), + [anon_sym_e_GT_GT] = ACTIONS(1661), + [anon_sym_o_GT_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(3), }, [862] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7900), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7867), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8463), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(883), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [863] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7276), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7856), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7826), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8458), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(885), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(891), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [864] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7319), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7949), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7701), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8559), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(883), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(887), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [865] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7419), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(8011), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7880), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8266), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(903), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(897), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [866] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7298), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(8152), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7924), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8439), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(901), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [867] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7265), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7977), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(890), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1669), + [anon_sym_out_GT_GT] = ACTIONS(1669), + [anon_sym_e_GT_GT] = ACTIONS(1669), + [anon_sym_o_GT_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(3), }, [868] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7328), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7859), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8559), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(891), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(882), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_RBRACK] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [869] = { [sym_comment] = STATE(869), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3189), + [sym_duration_unit] = ACTIONS(3191), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [870] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7354), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7975), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8528), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(894), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(882), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [871] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7816), + [sym__spread_list] = STATE(8179), + [sym_list_body] = STATE(8290), + [sym_val_entry] = STATE(7881), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(871), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(3193), - [sym_duration_unit] = ACTIONS(3195), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [anon_sym_err_GT_GT] = ACTIONS(1695), - [anon_sym_out_GT_GT] = ACTIONS(1695), - [anon_sym_e_GT_GT] = ACTIONS(1695), - [anon_sym_o_GT_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(890), + [aux_sym_parameter_repeat2] = STATE(7136), + [aux_sym_list_body_repeat1] = STATE(989), + [sym__newline] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_COMMA] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [872] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7337), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7874), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(892), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), }, [873] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7384), - [sym__spread_list] = STATE(7591), - [sym_list_body] = STATE(7932), - [sym_val_entry] = STATE(7362), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(898), - [aux_sym_parameter_repeat2] = STATE(6783), - [aux_sym_list_body_repeat1] = STATE(906), - [sym__newline] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), }, [874] = { [sym_comment] = STATE(874), - [ts_builtin_sym_end] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_bit_DASHshl] = ACTIONS(3201), - [anon_sym_bit_DASHshr] = ACTIONS(3201), - [anon_sym_EQ_TILDE] = ACTIONS(3201), - [anon_sym_BANG_TILDE] = ACTIONS(3201), - [anon_sym_bit_DASHand] = ACTIONS(3201), - [anon_sym_bit_DASHxor] = ACTIONS(3201), - [anon_sym_bit_DASHor] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_xor] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_not_DASHin] = ACTIONS(3201), - [anon_sym_starts_DASHwith] = ACTIONS(3201), - [anon_sym_ends_DASHwith] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3201), - [aux_sym_cmd_identifier_token41] = ACTIONS(3205), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(3), }, [875] = { [sym_comment] = STATE(875), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_mod] = ACTIONS(3203), + [anon_sym_SLASH_SLASH] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_bit_DASHshl] = ACTIONS(3203), + [anon_sym_bit_DASHshr] = ACTIONS(3203), + [anon_sym_EQ_TILDE] = ACTIONS(3203), + [anon_sym_BANG_TILDE] = ACTIONS(3203), + [anon_sym_bit_DASHand] = ACTIONS(3203), + [anon_sym_bit_DASHxor] = ACTIONS(3203), + [anon_sym_bit_DASHor] = ACTIONS(3203), + [anon_sym_and] = ACTIONS(3203), + [anon_sym_xor] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(3203), + [anon_sym_not_DASHin] = ACTIONS(3203), + [anon_sym_starts_DASHwith] = ACTIONS(3203), + [anon_sym_ends_DASHwith] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3203), + [anon_sym_BANG_EQ] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3203), + [aux_sym_cmd_identifier_token41] = ACTIONS(3207), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), [anon_sym_POUND] = ACTIONS(3), }, [876] = { [sym_comment] = STATE(876), - [ts_builtin_sym_end] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_bit_DASHshl] = ACTIONS(3201), - [anon_sym_bit_DASHshr] = ACTIONS(3201), - [anon_sym_EQ_TILDE] = ACTIONS(3201), - [anon_sym_BANG_TILDE] = ACTIONS(3201), - [anon_sym_bit_DASHand] = ACTIONS(3201), - [anon_sym_bit_DASHxor] = ACTIONS(3201), - [anon_sym_bit_DASHor] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_xor] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_not_DASHin] = ACTIONS(3201), - [anon_sym_starts_DASHwith] = ACTIONS(3201), - [anon_sym_ends_DASHwith] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3201), - [aux_sym_cmd_identifier_token41] = ACTIONS(3205), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_mod] = ACTIONS(3203), + [anon_sym_SLASH_SLASH] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_bit_DASHshl] = ACTIONS(3203), + [anon_sym_bit_DASHshr] = ACTIONS(3203), + [anon_sym_EQ_TILDE] = ACTIONS(3203), + [anon_sym_BANG_TILDE] = ACTIONS(3203), + [anon_sym_bit_DASHand] = ACTIONS(3203), + [anon_sym_bit_DASHxor] = ACTIONS(3203), + [anon_sym_bit_DASHor] = ACTIONS(3203), + [anon_sym_and] = ACTIONS(3203), + [anon_sym_xor] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(3203), + [anon_sym_not_DASHin] = ACTIONS(3203), + [anon_sym_starts_DASHwith] = ACTIONS(3203), + [anon_sym_ends_DASHwith] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3203), + [anon_sym_BANG_EQ] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3203), + [aux_sym_cmd_identifier_token41] = ACTIONS(3207), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(3), }, [877] = { [sym_comment] = STATE(877), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_mod] = ACTIONS(3209), + [anon_sym_SLASH_SLASH] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_bit_DASHshl] = ACTIONS(3209), + [anon_sym_bit_DASHshr] = ACTIONS(3209), + [anon_sym_EQ_TILDE] = ACTIONS(3209), + [anon_sym_BANG_TILDE] = ACTIONS(3209), + [anon_sym_bit_DASHand] = ACTIONS(3209), + [anon_sym_bit_DASHxor] = ACTIONS(3209), + [anon_sym_bit_DASHor] = ACTIONS(3209), + [anon_sym_and] = ACTIONS(3209), + [anon_sym_xor] = ACTIONS(3209), + [anon_sym_or] = ACTIONS(3209), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_not_DASHin] = ACTIONS(3209), + [anon_sym_starts_DASHwith] = ACTIONS(3209), + [anon_sym_ends_DASHwith] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3209), + [aux_sym_cmd_identifier_token41] = ACTIONS(3213), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), [anon_sym_POUND] = ACTIONS(3), }, [878] = { [sym_comment] = STATE(878), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), + [ts_builtin_sym_end] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_mod] = ACTIONS(3209), + [anon_sym_SLASH_SLASH] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_bit_DASHshl] = ACTIONS(3209), + [anon_sym_bit_DASHshr] = ACTIONS(3209), + [anon_sym_EQ_TILDE] = ACTIONS(3209), + [anon_sym_BANG_TILDE] = ACTIONS(3209), + [anon_sym_bit_DASHand] = ACTIONS(3209), + [anon_sym_bit_DASHxor] = ACTIONS(3209), + [anon_sym_bit_DASHor] = ACTIONS(3209), + [anon_sym_and] = ACTIONS(3209), + [anon_sym_xor] = ACTIONS(3209), + [anon_sym_or] = ACTIONS(3209), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_not_DASHin] = ACTIONS(3209), + [anon_sym_starts_DASHwith] = ACTIONS(3209), + [anon_sym_ends_DASHwith] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3209), + [aux_sym_cmd_identifier_token41] = ACTIONS(3213), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(3), }, [879] = { [sym_comment] = STATE(879), - [anon_sym_STAR_STAR] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_mod] = ACTIONS(3213), - [anon_sym_SLASH_SLASH] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_bit_DASHshl] = ACTIONS(3213), - [anon_sym_bit_DASHshr] = ACTIONS(3213), - [anon_sym_EQ_TILDE] = ACTIONS(3213), - [anon_sym_BANG_TILDE] = ACTIONS(3213), - [anon_sym_bit_DASHand] = ACTIONS(3213), - [anon_sym_bit_DASHxor] = ACTIONS(3213), - [anon_sym_bit_DASHor] = ACTIONS(3213), - [anon_sym_and] = ACTIONS(3213), - [anon_sym_xor] = ACTIONS(3213), - [anon_sym_or] = ACTIONS(3213), - [anon_sym_in] = ACTIONS(3213), - [anon_sym_not_DASHin] = ACTIONS(3213), - [anon_sym_starts_DASHwith] = ACTIONS(3213), - [anon_sym_ends_DASHwith] = ACTIONS(3213), - [anon_sym_EQ_EQ] = ACTIONS(3213), - [anon_sym_BANG_EQ] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3213), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3213), - [aux_sym_cmd_identifier_token41] = ACTIONS(3217), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(3), }, [880] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7902), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(880), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [881] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7931), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(881), - [anon_sym_STAR_STAR] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_mod] = ACTIONS(3213), - [anon_sym_SLASH_SLASH] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_bit_DASHshl] = ACTIONS(3213), - [anon_sym_bit_DASHshr] = ACTIONS(3213), - [anon_sym_EQ_TILDE] = ACTIONS(3213), - [anon_sym_BANG_TILDE] = ACTIONS(3213), - [anon_sym_bit_DASHand] = ACTIONS(3213), - [anon_sym_bit_DASHxor] = ACTIONS(3213), - [anon_sym_bit_DASHor] = ACTIONS(3213), - [anon_sym_and] = ACTIONS(3213), - [anon_sym_xor] = ACTIONS(3213), - [anon_sym_or] = ACTIONS(3213), - [anon_sym_in] = ACTIONS(3213), - [anon_sym_not_DASHin] = ACTIONS(3213), - [anon_sym_starts_DASHwith] = ACTIONS(3213), - [anon_sym_ends_DASHwith] = ACTIONS(3213), - [anon_sym_EQ_EQ] = ACTIONS(3213), - [anon_sym_BANG_EQ] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3213), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3213), - [aux_sym_cmd_identifier_token41] = ACTIONS(3217), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [882] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7347), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [883] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7320), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7716), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [884] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7301), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), }, [885] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7215), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), }, [886] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7938), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(886), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [887] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7312), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7729), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [888] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7944), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [889] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7220), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7792), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [890] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7268), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7818), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [891] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7331), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7829), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [892] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7340), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7837), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [893] = { + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7847), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(893), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [894] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7355), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7857), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [895] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7363), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7866), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [896] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7370), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7874), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [897] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7378), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7882), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [898] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7386), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7891), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [899] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7393), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7912), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [900] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7400), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7918), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [901] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7407), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7925), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7768), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), + [aux_sym_shebang_repeat1] = STATE(2918), + [aux_sym_list_body_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [902] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7413), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_err_GT] = ACTIONS(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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), }, [903] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7420), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7221), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(2796), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), }, [904] = { + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3391), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2315), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(904), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1002), + [sym__newline] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3219), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [905] = { + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2483), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2143), + [sym__unquoted_with_expr] = STATE(2306), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(905), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [906] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7227), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2353), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2157), + [sym__unquoted_with_expr] = STATE(2356), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(906), - [aux_sym_list_body_repeat1] = STATE(907), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [907] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(7534), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2432), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2367), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(907), - [aux_sym_list_body_repeat1] = STATE(907), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_DOLLAR] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3233), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3239), - [anon_sym_DOT_DOT_LT] = ACTIONS(3239), - [anon_sym_null] = ACTIONS(3242), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3248), - [aux_sym__val_number_decimal_token1] = ACTIONS(3251), - [aux_sym__val_number_decimal_token2] = ACTIONS(3254), - [aux_sym__val_number_decimal_token3] = ACTIONS(3257), - [aux_sym__val_number_decimal_token4] = ACTIONS(3260), - [aux_sym__val_number_token1] = ACTIONS(3263), - [aux_sym__val_number_token2] = ACTIONS(3263), - [aux_sym__val_number_token3] = ACTIONS(3263), - [aux_sym__val_number_token4] = ACTIONS(3266), - [aux_sym__val_number_token5] = ACTIONS(3266), - [aux_sym__val_number_token6] = ACTIONS(3266), - [anon_sym_0b] = ACTIONS(3269), - [anon_sym_0o] = ACTIONS(3272), - [anon_sym_0x] = ACTIONS(3272), - [sym_val_date] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3278), - [sym__str_single_quotes] = ACTIONS(3281), - [sym__str_back_ticks] = ACTIONS(3281), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3284), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3287), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3290), - [anon_sym_err_GT] = ACTIONS(3293), - [anon_sym_out_GT] = ACTIONS(3293), - [anon_sym_e_GT] = ACTIONS(3293), - [anon_sym_o_GT] = ACTIONS(3293), - [anon_sym_err_PLUSout_GT] = ACTIONS(3293), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3293), - [anon_sym_o_PLUSe_GT] = ACTIONS(3293), - [anon_sym_e_PLUSo_GT] = ACTIONS(3293), - [anon_sym_err_GT_GT] = ACTIONS(3296), - [anon_sym_out_GT_GT] = ACTIONS(3296), - [anon_sym_e_GT_GT] = ACTIONS(3296), - [anon_sym_o_GT_GT] = ACTIONS(3296), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3296), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3296), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3296), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3296), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3299), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3302), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [908] = { - [sym_expr_parenthesized] = STATE(6116), - [sym__spread_parenthesized] = STATE(7591), - [sym_val_range] = STATE(7503), - [sym__val_range] = STATE(8042), - [sym__val_range_with_end] = STATE(7696), - [sym__value] = STATE(7503), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6258), - [sym__spread_variable] = STATE(7565), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5289), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym__spread_list] = STATE(7591), - [sym_val_entry] = STATE(6986), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_list] = STATE(6771), - [sym__unquoted_in_list_with_expr] = STATE(7503), - [sym__unquoted_anonymous_prefix] = STATE(7428), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2468), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2089), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(908), - [aux_sym_list_body_repeat1] = STATE(907), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3121), - [anon_sym_DOT_DOT_LT] = ACTIONS(3121), - [anon_sym_null] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3127), - [aux_sym__val_number_decimal_token2] = ACTIONS(3129), - [aux_sym__val_number_decimal_token3] = ACTIONS(3131), - [aux_sym__val_number_decimal_token4] = ACTIONS(3133), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3137), - [aux_sym__val_number_token5] = ACTIONS(3137), - [aux_sym__val_number_token6] = ACTIONS(3137), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2621), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [909] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2376), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2437), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2100), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [910] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2425), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2454), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2146), + [sym__unquoted_with_expr] = STATE(2312), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(921), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [911] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2349), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2460), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2047), + [sym__unquoted_with_expr] = STATE(2273), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(924), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [912] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2352), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2089), - [sym__unquoted_with_expr] = STATE(2203), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2477), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2329), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(925), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [913] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2378), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2489), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2344), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(926), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [914] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2324), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2524), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2278), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(927), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [915] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2420), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2438), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(928), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [916] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2426), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2456), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2038), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(929), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [917] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2436), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2285), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2484), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2046), + [sym__unquoted_with_expr] = STATE(2305), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(930), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [918] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2442), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2313), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2528), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2049), + [sym__unquoted_with_expr] = STATE(2331), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(931), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [919] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2321), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2335), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2351), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(932), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [920] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2433), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2434), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2116), + [sym__unquoted_with_expr] = STATE(2383), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(933), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [921] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2404), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2232), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2476), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2118), + [sym__unquoted_with_expr] = STATE(2385), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(934), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [922] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2446), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2248), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2516), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2121), + [sym__unquoted_with_expr] = STATE(2397), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(935), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [923] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2374), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2276), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2527), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2147), + [sym__unquoted_with_expr] = STATE(2401), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(923), [aux_sym_shebang_repeat1] = STATE(936), - [sym__newline] = ACTIONS(3305), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [924] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2391), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2545), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2149), + [sym__unquoted_with_expr] = STATE(2407), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(937), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [925] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2403), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2550), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2151), + [sym__unquoted_with_expr] = STATE(2410), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(938), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [926] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2412), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2293), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2553), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2152), + [sym__unquoted_with_expr] = STATE(2415), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(939), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [927] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2418), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2021), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2560), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2153), + [sym__unquoted_with_expr] = STATE(2420), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(940), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [928] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2443), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2020), - [sym__unquoted_with_expr] = STATE(2307), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2563), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2155), + [sym__unquoted_with_expr] = STATE(2426), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(941), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [929] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2330), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2065), - [sym__unquoted_with_expr] = STATE(2192), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2567), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2055), + [sym__unquoted_with_expr] = STATE(2429), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(942), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [930] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2348), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1983), - [sym__unquoted_with_expr] = STATE(2194), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2518), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2101), + [sym__unquoted_with_expr] = STATE(2357), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(943), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [931] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2209), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2436), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2127), + [sym__unquoted_with_expr] = STATE(2290), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(944), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [932] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2379), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2210), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2303), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2132), + [sym__unquoted_with_expr] = STATE(2364), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(945), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [933] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2381), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2057), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2445), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2136), + [sym__unquoted_with_expr] = STATE(2405), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(946), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [934] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2392), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2534), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2068), + [sym__unquoted_with_expr] = STATE(2414), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(947), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [935] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2399), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2225), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2439), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(948), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [936] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2519), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2288), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [937] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2385), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2217), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3991), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2315), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(950), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [938] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2397), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3992), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2057), + [sym__unquoted_with_expr] = STATE(2317), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(951), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [939] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2410), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3993), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2320), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(952), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [940] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2430), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3994), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2066), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(953), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [941] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2440), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3997), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2325), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(954), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [942] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2461), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3999), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2326), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(955), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [943] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1984), - [sym__unquoted_with_expr] = STATE(2263), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4000), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2074), + [sym__unquoted_with_expr] = STATE(2327), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(956), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [944] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2270), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4001), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(957), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [945] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2372), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1998), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2336), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [946] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2382), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4004), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2094), + [sym__unquoted_with_expr] = STATE(2343), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(946), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(959), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [947] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2393), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4005), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2099), + [sym__unquoted_with_expr] = STATE(2348), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(947), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [948] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2402), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4006), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2105), + [sym__unquoted_with_expr] = STATE(2352), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(961), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [949] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3823), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4007), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2374), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(949), [aux_sym_shebang_repeat1] = STATE(962), - [sym__newline] = ACTIONS(3305), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [950] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3824), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4011), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2319), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(963), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [951] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3825), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4013), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2328), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(964), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [952] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3826), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4015), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2043), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(952), - [aux_sym_shebang_repeat1] = STATE(965), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [953] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3827), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4017), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2355), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(966), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [954] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3828), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4019), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2053), + [sym__unquoted_with_expr] = STATE(2409), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(967), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [955] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3829), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2246), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4081), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2137), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(968), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [956] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3830), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4024), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2130), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(969), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [957] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2249), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4028), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2143), + [sym__unquoted_with_expr] = STATE(2306), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(970), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [958] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3831), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2353), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2157), + [sym__unquoted_with_expr] = STATE(2356), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(958), - [aux_sym_shebang_repeat1] = STATE(971), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [959] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3832), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4032), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2367), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(959), - [aux_sym_shebang_repeat1] = STATE(972), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [960] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3833), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4036), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2089), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(960), - [aux_sym_shebang_repeat1] = STATE(973), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [961] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3834), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4039), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2100), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(961), - [aux_sym_shebang_repeat1] = STATE(974), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [962] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3838), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4041), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2146), + [sym__unquoted_with_expr] = STATE(2312), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(962), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [963] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3840), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2089), - [sym__unquoted_with_expr] = STATE(2203), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4042), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2047), + [sym__unquoted_with_expr] = STATE(2273), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(963), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(976), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [964] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3842), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4043), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2329), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(964), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(977), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [965] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3844), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4048), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2344), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(965), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(978), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [966] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3846), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4049), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2278), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(966), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(979), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [967] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3848), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4050), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(967), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(980), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [968] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3850), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2285), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4051), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2038), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(968), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(981), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [969] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3852), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2313), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4053), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2046), + [sym__unquoted_with_expr] = STATE(2305), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(969), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(982), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [970] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2321), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4054), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2049), + [sym__unquoted_with_expr] = STATE(2331), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(970), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(983), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [971] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3854), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2335), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2351), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(971), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(984), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [972] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3857), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4055), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2116), + [sym__unquoted_with_expr] = STATE(2383), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(972), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(985), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [973] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3859), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2232), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4056), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2118), + [sym__unquoted_with_expr] = STATE(2385), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(973), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(986), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [974] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3760), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2248), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4058), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2121), + [sym__unquoted_with_expr] = STATE(2397), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(974), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(987), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [975] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3855), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2276), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4059), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2147), + [sym__unquoted_with_expr] = STATE(2401), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(975), - [aux_sym_shebang_repeat1] = STATE(988), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1062), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [976] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3836), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4076), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2149), + [sym__unquoted_with_expr] = STATE(2407), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(976), - [aux_sym_shebang_repeat1] = STATE(989), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [977] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3802), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4078), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2151), + [sym__unquoted_with_expr] = STATE(2410), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(977), - [aux_sym_shebang_repeat1] = STATE(990), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [978] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3731), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2293), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4080), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2152), + [sym__unquoted_with_expr] = STATE(2415), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(978), - [aux_sym_shebang_repeat1] = STATE(991), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [979] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3732), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2021), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(4022), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2153), + [sym__unquoted_with_expr] = STATE(2420), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(979), - [aux_sym_shebang_repeat1] = STATE(1064), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [980] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3735), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2020), - [sym__unquoted_with_expr] = STATE(2307), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3960), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2155), + [sym__unquoted_with_expr] = STATE(2426), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(980), - [aux_sym_shebang_repeat1] = STATE(993), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [981] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3737), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2065), - [sym__unquoted_with_expr] = STATE(2192), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3962), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2055), + [sym__unquoted_with_expr] = STATE(2429), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(981), - [aux_sym_shebang_repeat1] = STATE(994), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [982] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3741), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1983), - [sym__unquoted_with_expr] = STATE(2194), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3964), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2101), + [sym__unquoted_with_expr] = STATE(2357), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(982), - [aux_sym_shebang_repeat1] = STATE(995), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [983] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2209), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3966), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2127), + [sym__unquoted_with_expr] = STATE(2290), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(983), - [aux_sym_shebang_repeat1] = STATE(996), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [984] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3742), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2210), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2303), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2132), + [sym__unquoted_with_expr] = STATE(2364), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(984), - [aux_sym_shebang_repeat1] = STATE(997), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [985] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3743), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2057), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3968), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2136), + [sym__unquoted_with_expr] = STATE(2405), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(985), - [aux_sym_shebang_repeat1] = STATE(998), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [986] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3744), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3970), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2068), + [sym__unquoted_with_expr] = STATE(2414), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(986), - [aux_sym_shebang_repeat1] = STATE(999), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [987] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3746), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2225), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3972), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(987), - [aux_sym_shebang_repeat1] = STATE(1000), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [988] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3771), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2542), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2130), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(988), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [989] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3773), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2217), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7786), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(989), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [aux_sym_list_body_repeat1] = STATE(1042), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [990] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3776), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3392), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2057), + [sym__unquoted_with_expr] = STATE(2317), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(990), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1003), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [991] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3778), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3393), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2320), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(991), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1004), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [992] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2427), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3394), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2066), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(992), - [aux_sym_shebang_repeat1] = STATE(922), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1005), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [993] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3782), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3395), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2325), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(993), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1006), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [994] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3784), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3396), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2326), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(994), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1007), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [995] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3788), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1984), - [sym__unquoted_with_expr] = STATE(2263), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3397), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2074), + [sym__unquoted_with_expr] = STATE(2327), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(995), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1008), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [996] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2270), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3398), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(996), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1009), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [997] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3791), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1998), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2336), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(997), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1010), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [998] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3794), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3399), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2094), + [sym__unquoted_with_expr] = STATE(2343), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(998), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1011), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [999] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3797), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3400), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2099), + [sym__unquoted_with_expr] = STATE(2348), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(999), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1012), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1000] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3799), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3401), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2105), + [sym__unquoted_with_expr] = STATE(2352), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1000), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1013), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1001] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3302), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3402), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2374), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1001), [aux_sym_shebang_repeat1] = STATE(1014), - [sym__newline] = ACTIONS(3305), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1002] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3243), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3405), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2319), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1002), - [aux_sym_shebang_repeat1] = STATE(1015), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1003] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3258), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3407), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2328), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1003), - [aux_sym_shebang_repeat1] = STATE(1016), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1004] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3272), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3409), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2043), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1004), - [aux_sym_shebang_repeat1] = STATE(1017), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1005] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3336), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3411), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2355), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1005), - [aux_sym_shebang_repeat1] = STATE(1018), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1006] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3209), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3413), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2053), + [sym__unquoted_with_expr] = STATE(2409), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(1019), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1007] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3276), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2246), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3415), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2137), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(1020), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1008] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3277), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3417), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2130), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(1021), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1009] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2249), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3419), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2143), + [sym__unquoted_with_expr] = STATE(2306), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1009), - [aux_sym_shebang_repeat1] = STATE(1022), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1010] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3280), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2353), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2157), + [sym__unquoted_with_expr] = STATE(2356), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1010), - [aux_sym_shebang_repeat1] = STATE(1023), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1011] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3281), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3421), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2367), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1011), - [aux_sym_shebang_repeat1] = STATE(1024), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1012] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3282), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3423), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2089), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1012), - [aux_sym_shebang_repeat1] = STATE(1025), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1013] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3284), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3425), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2100), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1013), - [aux_sym_shebang_repeat1] = STATE(1026), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1014] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3294), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2087), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3427), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2146), + [sym__unquoted_with_expr] = STATE(2312), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1015] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3296), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2089), - [sym__unquoted_with_expr] = STATE(2203), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3428), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2047), + [sym__unquoted_with_expr] = STATE(2273), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1015), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1028), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1016] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3300), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3429), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2045), + [sym__unquoted_with_expr] = STATE(2329), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1029), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1017] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3304), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3430), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2344), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1017), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1030), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1018] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3306), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3431), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2108), + [sym__unquoted_with_expr] = STATE(2278), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1018), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1031), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1019] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3309), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3432), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym__unquoted_with_expr] = STATE(2286), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1019), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1032), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1020] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3311), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2285), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3433), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2038), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1020), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1033), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1021] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3313), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2313), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3434), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2046), + [sym__unquoted_with_expr] = STATE(2305), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1021), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1034), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1022] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2321), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3435), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2049), + [sym__unquoted_with_expr] = STATE(2331), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1035), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1023] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3317), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2335), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2351), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1023), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1036), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1024] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3320), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2016), - [sym__unquoted_with_expr] = STATE(2308), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3436), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2116), + [sym__unquoted_with_expr] = STATE(2383), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1024), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1037), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1025] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3322), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2232), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3437), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2118), + [sym__unquoted_with_expr] = STATE(2385), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1025), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1038), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1026] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3324), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2248), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3438), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2121), + [sym__unquoted_with_expr] = STATE(2397), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1039), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1027] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3325), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2276), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3439), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2147), + [sym__unquoted_with_expr] = STATE(2401), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1027), [aux_sym_shebang_repeat1] = STATE(1040), - [sym__newline] = ACTIONS(3305), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1028] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3326), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3453), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2149), + [sym__unquoted_with_expr] = STATE(2407), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1028), - [aux_sym_shebang_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1029] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3327), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3455), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2151), + [sym__unquoted_with_expr] = STATE(2410), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1029), - [aux_sym_shebang_repeat1] = STATE(1042), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1030] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3330), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2006), - [sym__unquoted_with_expr] = STATE(2293), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3457), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2152), + [sym__unquoted_with_expr] = STATE(2415), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1030), - [aux_sym_shebang_repeat1] = STATE(1043), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1031] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3334), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2021), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3459), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2153), + [sym__unquoted_with_expr] = STATE(2420), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1031), - [aux_sym_shebang_repeat1] = STATE(1044), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1032] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3275), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2020), - [sym__unquoted_with_expr] = STATE(2307), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3461), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2155), + [sym__unquoted_with_expr] = STATE(2426), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1032), - [aux_sym_shebang_repeat1] = STATE(1045), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1033] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3273), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2065), - [sym__unquoted_with_expr] = STATE(2192), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3463), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2055), + [sym__unquoted_with_expr] = STATE(2429), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1033), - [aux_sym_shebang_repeat1] = STATE(1046), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1034] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3256), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1983), - [sym__unquoted_with_expr] = STATE(2194), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3465), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2101), + [sym__unquoted_with_expr] = STATE(2357), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(1047), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1035] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2204), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2209), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3467), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2127), + [sym__unquoted_with_expr] = STATE(2290), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1036] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3279), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2210), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2303), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2132), + [sym__unquoted_with_expr] = STATE(2364), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(1049), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1037] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3283), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2057), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3469), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2136), + [sym__unquoted_with_expr] = STATE(2405), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(1050), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1038] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3287), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2059), - [sym__unquoted_with_expr] = STATE(2224), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3471), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2068), + [sym__unquoted_with_expr] = STATE(2414), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(1051), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1039] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3301), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2225), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3473), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2076), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(1052), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1040] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3220), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3475), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2288), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1041] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3222), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2217), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(7781), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(1041), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [aux_sym_list_body_repeat1] = STATE(1042), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_LT] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3123), + [aux_sym__val_number_decimal_token2] = ACTIONS(3125), + [aux_sym__val_number_decimal_token3] = ACTIONS(3127), + [aux_sym__val_number_decimal_token4] = ACTIONS(3129), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3133), + [aux_sym__val_number_token5] = ACTIONS(3133), + [aux_sym__val_number_token6] = ACTIONS(3133), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3139), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [1042] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3224), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_parenthesized] = STATE(6491), + [sym__spread_parenthesized] = STATE(8179), + [sym_val_range] = STATE(8070), + [sym__val_range] = STATE(8298), + [sym__val_range_with_end] = STATE(8004), + [sym__value] = STATE(8070), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(7015), + [sym__spread_variable] = STATE(7993), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5609), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym__spread_list] = STATE(8179), + [sym_val_entry] = STATE(8078), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_list] = STATE(6987), + [sym__unquoted_in_list_with_expr] = STATE(8070), + [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [aux_sym_list_body_repeat1] = STATE(1042), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_DOLLAR] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3299), + [anon_sym_DOT_DOT_LT] = ACTIONS(3299), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3305), + [anon_sym_false] = ACTIONS(3305), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3308), + [aux_sym__val_number_decimal_token1] = ACTIONS(3311), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3317), + [aux_sym__val_number_decimal_token4] = ACTIONS(3320), + [aux_sym__val_number_token1] = ACTIONS(3323), + [aux_sym__val_number_token2] = ACTIONS(3323), + [aux_sym__val_number_token3] = ACTIONS(3323), + [aux_sym__val_number_token4] = ACTIONS(3326), + [aux_sym__val_number_token5] = ACTIONS(3326), + [aux_sym__val_number_token6] = ACTIONS(3326), + [anon_sym_0b] = ACTIONS(3329), + [anon_sym_0o] = ACTIONS(3332), + [anon_sym_0x] = ACTIONS(3332), + [sym_val_date] = ACTIONS(3335), + [anon_sym_DQUOTE] = ACTIONS(3338), + [sym__str_single_quotes] = ACTIONS(3341), + [sym__str_back_ticks] = ACTIONS(3341), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3350), + [anon_sym_err_GT] = ACTIONS(3353), + [anon_sym_out_GT] = ACTIONS(3353), + [anon_sym_e_GT] = ACTIONS(3353), + [anon_sym_o_GT] = ACTIONS(3353), + [anon_sym_err_PLUSout_GT] = ACTIONS(3353), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3353), + [anon_sym_o_PLUSe_GT] = ACTIONS(3353), + [anon_sym_e_PLUSo_GT] = ACTIONS(3353), + [anon_sym_err_GT_GT] = ACTIONS(3356), + [anon_sym_out_GT_GT] = ACTIONS(3356), + [anon_sym_e_GT_GT] = ACTIONS(3356), + [anon_sym_o_GT_GT] = ACTIONS(3356), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3356), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3356), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3356), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3356), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3362), }, [1043] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3226), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2459), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2315), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1056), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1044] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3228), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2464), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2057), + [sym__unquoted_with_expr] = STATE(2317), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1057), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1045] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3230), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2238), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2466), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2320), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1058), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1046] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3232), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2244), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2469), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2066), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1046), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1059), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1047] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3234), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1984), - [sym__unquoted_with_expr] = STATE(2263), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2471), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2325), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1060), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1048] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2270), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2475), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2326), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1048), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(1061), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1049] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3236), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1998), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2478), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2074), + [sym__unquoted_with_expr] = STATE(2327), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1049), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(988), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1050] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3238), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2480), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1050), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(905), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1051] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3240), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2336), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1051), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(906), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1052] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3242), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2501), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2094), + [sym__unquoted_with_expr] = STATE(2343), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1052), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(907), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1053] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2390), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2506), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2099), + [sym__unquoted_with_expr] = STATE(2348), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1053), - [aux_sym_shebang_repeat1] = STATE(911), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1054] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2406), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2513), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2105), + [sym__unquoted_with_expr] = STATE(2352), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1054), - [aux_sym_shebang_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(909), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1055] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2408), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2523), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2374), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1055), - [aux_sym_shebang_repeat1] = STATE(913), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(910), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1056] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2411), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2465), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2319), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1056), - [aux_sym_shebang_repeat1] = STATE(914), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1057] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2414), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2472), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2328), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1057), - [aux_sym_shebang_repeat1] = STATE(915), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1058] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2416), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2569), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2043), + [sym__unquoted_with_expr] = STATE(2349), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1058), - [aux_sym_shebang_repeat1] = STATE(916), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1059] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2417), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2246), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2515), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2050), + [sym__unquoted_with_expr] = STATE(2355), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1059), - [aux_sym_shebang_repeat1] = STATE(917), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1060] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2419), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2525), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2053), + [sym__unquoted_with_expr] = STATE(2409), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1060), - [aux_sym_shebang_repeat1] = STATE(918), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1061] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2249), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(2521), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2137), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1061), - [aux_sym_shebang_repeat1] = STATE(919), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1062] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2421), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2452), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary_parenthesized] = STATE(2452), + [sym__expr_binary_expression_parenthesized] = STATE(3974), + [sym_expr_parenthesized] = STATE(2054), + [sym_val_range] = STATE(2452), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2452), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3597), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2288), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1062), - [aux_sym_shebang_repeat1] = STATE(909), - [sym__newline] = ACTIONS(3305), + [aux_sym_shebang_repeat1] = STATE(2960), + [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3261), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1063] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(2424), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4096), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3875), + [sym__unquoted_with_expr] = STATE(4101), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1063), - [aux_sym_shebang_repeat1] = STATE(920), - [sym__newline] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), + }, + [1064] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2494), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2250), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1064), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1064] = { - [sym_expr_unary] = STATE(2388), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary_parenthesized] = STATE(2388), - [sym__expr_binary_expression_parenthesized] = STATE(3780), - [sym_expr_parenthesized] = STATE(2388), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2388), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1064), - [aux_sym_shebang_repeat1] = STATE(2826), - [sym__newline] = ACTIONS(3305), + [1065] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2496), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1065), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1065] = { - [sym_ctrl_do] = STATE(4979), - [sym_ctrl_if] = STATE(4979), - [sym_ctrl_match] = STATE(4979), - [sym_ctrl_try] = STATE(4979), - [sym__expression] = STATE(4979), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_comment] = STATE(1065), - [sym__newline] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_err_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_GT_PIPE] = ACTIONS(3367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3367), + [1066] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2498), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1066), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3373), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3381), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1066] = { - [sym_expr_parenthesized] = STATE(1581), - [sym_val_range] = STATE(1896), - [sym__val_range] = STATE(8057), - [sym__val_range_with_end] = STATE(7630), - [sym__value] = STATE(1896), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1641), - [sym_val_variable] = STATE(1527), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1274), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_short_flag] = STATE(1896), - [sym_long_flag] = STATE(1896), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1906), - [sym__unquoted_anonymous_prefix] = STATE(6847), - [sym_comment] = STATE(1066), - [aux_sym_shebang_repeat1] = STATE(2818), - [sym__newline] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_DASH2] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2665), - [anon_sym_DOT_DOT_LT] = ACTIONS(2665), - [anon_sym_null] = ACTIONS(2667), - [anon_sym_true] = ACTIONS(2669), - [anon_sym_false] = ACTIONS(2669), - [aux_sym__val_number_decimal_token1] = ACTIONS(2671), - [aux_sym__val_number_decimal_token2] = ACTIONS(2673), - [aux_sym__val_number_decimal_token3] = ACTIONS(2675), - [aux_sym__val_number_decimal_token4] = ACTIONS(2677), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(2681), - [aux_sym__val_number_token5] = ACTIONS(2681), - [aux_sym__val_number_token6] = ACTIONS(2681), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), - }, [1067] = { - [sym_ctrl_do] = STATE(4979), - [sym_ctrl_if] = STATE(4979), - [sym_ctrl_match] = STATE(4979), - [sym_ctrl_try] = STATE(4979), - [sym__expression] = STATE(4979), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2499), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2254), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1067), - [sym__newline] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_err_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_GT_PIPE] = ACTIONS(3367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3367), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3373), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3383), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1068] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3948), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1940), - [sym__unquoted_with_expr] = STATE(2143), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2256), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1068), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1069] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2527), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2206), - [sym__unquoted_with_expr] = STATE(2478), - [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2502), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1069), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [1070] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2503), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1070), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [1071] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2504), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2261), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1071), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [1072] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2505), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1072), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3259), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [1073] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3541), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2418), + [sym__unquoted_with_expr] = STATE(2616), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1073), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3415), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [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(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3433), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1070] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2473), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2260), - [sym__unquoted_with_expr] = STATE(2546), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1070), + [1074] = { + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4131), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3874), + [sym__unquoted_with_expr] = STATE(4095), + [sym__unquoted_anonymous_prefix] = STATE(7348), + [sym_comment] = STATE(1074), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), + }, + [1075] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3542), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2422), + [sym__unquoted_with_expr] = STATE(2625), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1075), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3415), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), [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(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3433), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1071] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2548), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2318), - [sym__unquoted_with_expr] = STATE(2552), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1071), + [1076] = { + [sym_expr_parenthesized] = STATE(1639), + [sym_val_range] = STATE(1950), + [sym__val_range] = STATE(8436), + [sym__val_range_with_end] = STATE(8134), + [sym__value] = STATE(1950), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1640), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1267), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_short_flag] = STATE(1950), + [sym_long_flag] = STATE(1950), + [sym_unquoted] = STATE(1718), + [sym__unquoted_with_expr] = STATE(1957), + [sym__unquoted_anonymous_prefix] = STATE(7321), + [sym_comment] = STATE(1076), + [aux_sym_shebang_repeat1] = STATE(2973), + [sym__newline] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2655), + [anon_sym_DASH2] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), + [anon_sym_DOT_DOT_LT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym__val_number_decimal_token1] = ACTIONS(2669), + [aux_sym__val_number_decimal_token2] = ACTIONS(2671), + [aux_sym__val_number_decimal_token3] = ACTIONS(2673), + [aux_sym__val_number_decimal_token4] = ACTIONS(2675), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(2679), + [aux_sym__val_number_token5] = ACTIONS(2679), + [aux_sym__val_number_token6] = ACTIONS(2679), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(2685), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), + }, + [1077] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2586), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2403), + [sym__unquoted_with_expr] = STATE(2603), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1077), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1072] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2466), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2214), - [sym__unquoted_with_expr] = STATE(2469), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1072), + [1078] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2623), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2277), + [sym__unquoted_with_expr] = STATE(2665), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1078), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1073] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2470), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2216), - [sym__unquoted_with_expr] = STATE(2485), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1073), + [1079] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2640), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2311), + [sym__unquoted_with_expr] = STATE(2573), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1079), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1074] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2487), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2496), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1074), + [1080] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2661), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2340), + [sym__unquoted_with_expr] = STATE(2571), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1080), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1075] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2501), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2252), - [sym__unquoted_with_expr] = STATE(2515), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1075), + [1081] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2576), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2406), + [sym__unquoted_with_expr] = STATE(2642), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1081), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1076] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2516), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2264), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1076), + [1082] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2668), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2423), + [sym__unquoted_with_expr] = STATE(2651), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1082), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1077] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2518), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2266), - [sym__unquoted_with_expr] = STATE(2529), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1077), + [1083] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2581), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2302), + [sym__unquoted_with_expr] = STATE(2656), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1083), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1078] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2353), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1931), - [sym__unquoted_with_expr] = STATE(2136), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1078), + [1084] = { + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4100), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3941), + [sym__unquoted_with_expr] = STATE(4118), + [sym__unquoted_anonymous_prefix] = STATE(7348), + [sym_comment] = STATE(1084), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), + }, + [1085] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3488), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1999), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1085), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1079] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2354), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1934), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1079), + [1086] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3489), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2000), + [sym__unquoted_with_expr] = STATE(2233), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1086), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1080] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2355), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1935), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1080), + [1087] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3490), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1087), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1081] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2356), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1936), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1081), + [1088] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3491), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2003), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1088), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1082] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2357), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1937), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1082), + [1089] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3492), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2250), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1089), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1083] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2358), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1938), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1083), + [1090] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3493), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1090), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1084] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2359), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1939), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1084), + [1091] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3494), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1091), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1085] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2360), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1940), - [sym__unquoted_with_expr] = STATE(2143), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1085), + [1092] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3495), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2254), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1092), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1086] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1086), + [1093] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2256), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1093), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1087] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2361), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1855), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1087), + [1094] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3496), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1094), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1088] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2362), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1943), - [sym__unquoted_with_expr] = STATE(2149), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1088), + [1095] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3497), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1095), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1089] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2363), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1944), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1089), + [1096] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3498), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2261), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1096), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1090] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2364), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2093), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(1502), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2165), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1090), + [1097] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(3499), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3357), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3103), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1097), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3219), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), + [anon_sym_DOT_DOT_LT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3223), + [anon_sym_true] = ACTIONS(3225), + [anon_sym_false] = ACTIONS(3225), + [aux_sym__val_number_decimal_token1] = ACTIONS(3227), + [aux_sym__val_number_decimal_token2] = ACTIONS(3229), + [aux_sym__val_number_decimal_token3] = ACTIONS(3231), + [aux_sym__val_number_decimal_token4] = ACTIONS(3233), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3235), + [aux_sym__val_number_token5] = ACTIONS(3235), + [aux_sym__val_number_token6] = ACTIONS(3235), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3237), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1091] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2550), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2199), - [sym__unquoted_with_expr] = STATE(2486), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1091), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1092] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2488), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2205), - [sym__unquoted_with_expr] = STATE(2521), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1092), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1093] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2524), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2471), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1093), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1094] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2553), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2228), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(1578), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2245), - [sym__unquoted_with_expr] = STATE(2519), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1094), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3411), - [anon_sym_false] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3421), - [aux_sym__val_number_token5] = ACTIONS(3421), - [aux_sym__val_number_token6] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3423), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1095] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3363), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2206), - [sym__unquoted_with_expr] = STATE(2478), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1095), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1096] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3364), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2260), - [sym__unquoted_with_expr] = STATE(2546), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1096), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1097] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3365), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2318), - [sym__unquoted_with_expr] = STATE(2552), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1097), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, [1098] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3366), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2214), - [sym__unquoted_with_expr] = STATE(2469), - [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2643), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2363), + [sym__unquoted_with_expr] = STATE(2607), + [sym__unquoted_anonymous_prefix] = STATE(7521), [sym_comment] = STATE(1098), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1099] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3367), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2216), - [sym__unquoted_with_expr] = STATE(2485), - [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2577), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2322), + [sym__unquoted_with_expr] = STATE(2620), + [sym__unquoted_anonymous_prefix] = STATE(7521), [sym_comment] = STATE(1099), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_DOT_DOT] = ACTIONS(3437), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), + [sym_val_date] = ACTIONS(3455), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1100] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3368), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2496), - [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4184), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1999), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1100), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3461), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3479), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(439), }, [1101] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3369), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2252), - [sym__unquoted_with_expr] = STATE(2515), - [sym__unquoted_anonymous_prefix] = STATE(6940), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4185), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2000), + [sym__unquoted_with_expr] = STATE(2233), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1101), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1102] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3370), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2264), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1102), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1103] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(2518), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2266), - [sym__unquoted_with_expr] = STATE(2529), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1103), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1104] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3371), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2199), - [sym__unquoted_with_expr] = STATE(2486), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1104), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1105] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3372), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2205), - [sym__unquoted_with_expr] = STATE(2521), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1105), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1106] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3373), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2471), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1106), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1107] = { - [sym_expr_unary] = STATE(2525), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2525), - [sym__expr_binary_expression] = STATE(3374), - [sym_expr_parenthesized] = STATE(2525), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(2525), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(3205), - [sym_val_variable] = STATE(2547), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3100), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(2245), - [sym__unquoted_with_expr] = STATE(2519), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1107), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_DOLLAR] = ACTIONS(3403), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3405), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_LT] = ACTIONS(3407), - [anon_sym_null] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [aux_sym__val_number_decimal_token1] = ACTIONS(3431), - [aux_sym__val_number_decimal_token2] = ACTIONS(3433), - [aux_sym__val_number_decimal_token3] = ACTIONS(3435), - [aux_sym__val_number_decimal_token4] = ACTIONS(3437), - [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(3439), - [aux_sym__val_number_token5] = ACTIONS(3439), - [aux_sym__val_number_token6] = ACTIONS(3439), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3441), - [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1108] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3913), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3723), - [sym__unquoted_with_expr] = STATE(3909), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1108), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1109] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3920), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3640), - [sym__unquoted_with_expr] = STATE(3921), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1109), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1110] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3874), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3642), - [sym__unquoted_with_expr] = STATE(3929), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1110), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1111] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3930), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3643), - [sym__unquoted_with_expr] = STATE(3902), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1111), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1112] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3871), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3645), - [sym__unquoted_with_expr] = STATE(3877), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1112), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1113] = { - [sym_ctrl_do] = STATE(5023), - [sym_ctrl_if] = STATE(5023), - [sym_ctrl_match] = STATE(5023), - [sym_ctrl_try] = STATE(5023), - [sym__expression] = STATE(5023), - [sym_expr_unary] = STATE(2522), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_binary] = STATE(2522), - [sym__expr_binary_expression] = STATE(3972), - [sym_expr_parenthesized] = STATE(2114), - [sym_val_range] = STATE(3970), - [sym__value] = STATE(2522), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(2547), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(3175), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_comment] = STATE(1113), - [ts_builtin_sym_end] = ACTIONS(3367), - [sym__newline] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_err_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_GT_PIPE] = ACTIONS(3367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_match] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(3499), - [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(3501), - [anon_sym_true] = ACTIONS(3503), - [anon_sym_false] = ACTIONS(3503), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(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(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1114] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3646), - [sym__unquoted_with_expr] = STATE(3873), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1114), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1115] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3875), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3649), - [sym__unquoted_with_expr] = STATE(3879), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1115), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1116] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3893), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3721), - [sym__unquoted_with_expr] = STATE(3911), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1116), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1117] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3259), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1931), - [sym__unquoted_with_expr] = STATE(2136), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1117), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1118] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3260), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1934), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1118), + [1102] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4186), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1102), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1119] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3261), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1935), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1119), + [1103] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4187), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2003), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1103), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1120] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3262), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1936), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1120), + [1104] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4188), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2250), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1104), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1121] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3263), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1937), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1121), + [1105] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4189), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1105), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1122] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3264), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1938), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1122), + [1106] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4190), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1106), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1123] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3265), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1939), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1123), + [1107] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4172), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2254), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1107), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1124] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3266), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1940), - [sym__unquoted_with_expr] = STATE(2143), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1124), + [1108] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2256), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1108), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1125] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1125), + [1109] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4207), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1109), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1126] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3267), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1855), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1126), + [1110] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4192), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1110), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1127] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3268), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1943), - [sym__unquoted_with_expr] = STATE(2149), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1127), + [1111] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2492), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2003), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1111), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1128] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3269), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1944), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1128), + [1112] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4194), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1112), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1129] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3270), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3193), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(2930), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2165), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1129), + [1113] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2628), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2358), + [sym__unquoted_with_expr] = STATE(2662), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1113), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3437), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3455), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1114] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2671), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2366), + [sym__unquoted_with_expr] = STATE(2597), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1114), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3437), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3455), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1115] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4204), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1999), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1115), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3351), - [anon_sym_false] = ACTIONS(3351), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3361), - [aux_sym__val_number_token5] = ACTIONS(3361), - [aux_sym__val_number_token6] = ACTIONS(3361), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3363), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1130] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3938), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1931), - [sym__unquoted_with_expr] = STATE(2136), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1130), + [1116] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4173), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2000), + [sym__unquoted_with_expr] = STATE(2233), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1116), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1131] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3940), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1934), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1131), + [1117] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4191), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1117), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1132] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1935), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1132), + [1118] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4175), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2003), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1118), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1133] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3949), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1936), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1133), + [1119] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4176), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2250), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1119), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1134] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3952), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1937), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1134), + [1120] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4178), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1120), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1135] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3953), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1938), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1135), + [1121] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4182), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1121), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1136] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3957), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1931), - [sym__unquoted_with_expr] = STATE(2136), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1136), + [1122] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4199), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2254), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1122), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1137] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1934), - [sym__unquoted_with_expr] = STATE(2137), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1137), + [1123] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2256), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2011), + [sym__unquoted_with_expr] = STATE(2257), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1123), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1138] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3962), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1935), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1138), + [1124] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4201), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1124), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1139] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3964), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1936), - [sym__unquoted_with_expr] = STATE(2139), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1139), + [1125] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4179), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1125), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1140] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3965), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1937), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1140), + [1126] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4180), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2261), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1126), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1141] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3966), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1938), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1141), + [1127] = { + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4181), + [sym_expr_parenthesized] = STATE(3873), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3629), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1891), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1127), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3481), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_LT] = ACTIONS(3263), + [anon_sym_null] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [aux_sym__val_number_decimal_token1] = ACTIONS(3269), + [aux_sym__val_number_decimal_token2] = ACTIONS(3271), + [aux_sym__val_number_decimal_token3] = ACTIONS(3273), + [aux_sym__val_number_decimal_token4] = ACTIONS(3275), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(3277), + [aux_sym__val_number_token5] = ACTIONS(3277), + [aux_sym__val_number_token6] = ACTIONS(3277), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3279), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1142] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3967), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1939), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1142), + [1128] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2605), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2418), + [sym__unquoted_with_expr] = STATE(2616), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1128), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3437), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3455), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1129] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2675), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2371), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(1645), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2422), + [sym__unquoted_with_expr] = STATE(2625), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1129), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3437), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), + [anon_sym_DOT_DOT_LT] = ACTIONS(3439), + [anon_sym_null] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3453), + [aux_sym__val_number_token5] = ACTIONS(3453), + [aux_sym__val_number_token6] = ACTIONS(3453), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3455), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1130] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3525), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2403), + [sym__unquoted_with_expr] = STATE(2603), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1130), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1131] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3526), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2277), + [sym__unquoted_with_expr] = STATE(2665), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1131), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1132] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3528), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2311), + [sym__unquoted_with_expr] = STATE(2573), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1132), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1133] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3529), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2340), + [sym__unquoted_with_expr] = STATE(2571), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1133), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1134] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3530), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2406), + [sym__unquoted_with_expr] = STATE(2642), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1134), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1135] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3531), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2423), + [sym__unquoted_with_expr] = STATE(2651), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1135), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1136] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3532), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2302), + [sym__unquoted_with_expr] = STATE(2656), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1136), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1137] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3533), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2363), + [sym__unquoted_with_expr] = STATE(2607), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1137), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1138] = { + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(2577), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2322), + [sym__unquoted_with_expr] = STATE(2620), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1138), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1139] = { + [sym_ctrl_do] = STATE(5075), + [sym_ctrl_if] = STATE(5075), + [sym_ctrl_match] = STATE(5075), + [sym_ctrl_try] = STATE(5075), + [sym__expression] = STATE(5075), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3307), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_comment] = STATE(1139), + [sym__newline] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3489), + [anon_sym_match] = ACTIONS(3491), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3493), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_true] = ACTIONS(3497), + [anon_sym_false] = ACTIONS(3497), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(431), + [aux_sym__val_number_token5] = ACTIONS(431), + [aux_sym__val_number_token6] = ACTIONS(431), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(235), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [aux_sym_record_entry_token1] = ACTIONS(3499), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [1140] = { + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4119), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3855), + [sym__unquoted_with_expr] = STATE(4162), + [sym__unquoted_anonymous_prefix] = STATE(7348), + [sym_comment] = STATE(1140), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), + }, + [1141] = { + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4085), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3864), + [sym__unquoted_with_expr] = STATE(4090), + [sym__unquoted_anonymous_prefix] = STATE(7348), + [sym_comment] = STATE(1141), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), + }, + [1142] = { + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4130), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3900), + [sym__unquoted_with_expr] = STATE(4135), + [sym__unquoted_anonymous_prefix] = STATE(7348), + [sym_comment] = STATE(1142), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), + }, [1143] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3863), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3693), - [sym__unquoted_with_expr] = STATE(3868), - [sym__unquoted_anonymous_prefix] = STATE(6870), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4102), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3880), + [sym__unquoted_with_expr] = STATE(4103), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1143), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), }, [1144] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4123), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3844), + [sym__unquoted_with_expr] = STATE(4125), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1144), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), }, [1145] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3939), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1855), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4136), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3903), + [sym__unquoted_with_expr] = STATE(4138), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1145), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), }, [1146] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3941), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1943), - [sym__unquoted_with_expr] = STATE(2149), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4139), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3913), + [sym__unquoted_with_expr] = STATE(4140), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1146), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), }, [1147] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3943), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1944), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_ctrl_do] = STATE(5075), + [sym_ctrl_if] = STATE(5075), + [sym_ctrl_match] = STATE(5075), + [sym_ctrl_try] = STATE(5075), + [sym__expression] = STATE(5075), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3307), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), [sym_comment] = STATE(1147), + [sym__newline] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3489), + [anon_sym_match] = ACTIONS(3491), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3493), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_true] = ACTIONS(3497), + [anon_sym_false] = ACTIONS(3497), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), + [aux_sym__val_number_token4] = ACTIONS(431), + [aux_sym__val_number_token5] = ACTIONS(431), + [aux_sym__val_number_token6] = ACTIONS(431), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), + [sym_val_date] = ACTIONS(235), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [aux_sym_record_entry_token1] = ACTIONS(3501), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1148] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3944), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3822), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3451), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2165), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4145), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3917), + [sym__unquoted_with_expr] = STATE(4146), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1148), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [aux_sym__val_number_decimal_token1] = ACTIONS(3389), - [aux_sym__val_number_decimal_token2] = ACTIONS(3391), - [aux_sym__val_number_decimal_token3] = ACTIONS(3393), - [aux_sym__val_number_decimal_token4] = ACTIONS(3395), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3397), - [aux_sym__val_number_token5] = ACTIONS(3397), - [aux_sym__val_number_token6] = ACTIONS(3397), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), }, [1149] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3956), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1939), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4147), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3918), + [sym__unquoted_with_expr] = STATE(4160), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1149), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), }, [1150] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3958), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1940), - [sym__unquoted_with_expr] = STATE(2143), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3534), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2358), + [sym__unquoted_with_expr] = STATE(2662), + [sym__unquoted_anonymous_prefix] = STATE(7521), [sym_comment] = STATE(1150), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(123), }, [1151] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2584), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2584), + [sym__expr_binary_expression] = STATE(3535), + [sym_expr_parenthesized] = STATE(2191), + [sym_val_range] = STATE(2584), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(2584), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(3368), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3222), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(2366), + [sym__unquoted_with_expr] = STATE(2597), + [sym__unquoted_anonymous_prefix] = STATE(7521), [sym_comment] = STATE(1151), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3415), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_LT] = ACTIONS(3417), + [anon_sym_null] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym__val_number_decimal_token1] = ACTIONS(3423), + [aux_sym__val_number_decimal_token2] = ACTIONS(3425), + [aux_sym__val_number_decimal_token3] = ACTIONS(3427), + [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [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(3431), + [aux_sym__val_number_token5] = ACTIONS(3431), + [aux_sym__val_number_token6] = ACTIONS(3431), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3433), + [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(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(123), }, [1152] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3959), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1855), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(4129), + [sym__expr_unary_minus] = STATE(4168), + [sym_expr_binary] = STATE(4129), + [sym__expr_binary_expression] = STATE(4161), + [sym_expr_parenthesized] = STATE(3809), + [sym_val_range] = STATE(4129), + [sym__val_range] = STATE(8529), + [sym__val_range_with_end] = STATE(8139), + [sym__value] = STATE(4129), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(3944), + [sym_val_variable] = STATE(3820), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(3583), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3753), + [sym__str_double_quotes] = STATE(3753), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(3859), + [sym__unquoted_with_expr] = STATE(4128), + [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1152), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3375), + [aux_sym_expr_unary_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), + [anon_sym_DOT_DOT_LT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [aux_sym__val_number_decimal_token1] = ACTIONS(3385), + [aux_sym__val_number_decimal_token2] = ACTIONS(3387), + [aux_sym__val_number_decimal_token3] = ACTIONS(3389), + [aux_sym__val_number_decimal_token4] = ACTIONS(3391), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(3395), + [aux_sym__val_number_token5] = ACTIONS(3395), + [aux_sym__val_number_token6] = ACTIONS(3395), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__str_single_quotes] = ACTIONS(3405), + [sym__str_back_ticks] = ACTIONS(3405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3413), }, [1153] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3933), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1943), - [sym__unquoted_with_expr] = STATE(2149), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2487), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(1999), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1153), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1154] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3942), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1944), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2488), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2000), + [sym__unquoted_with_expr] = STATE(2233), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1154), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1155] = { - [sym_expr_unary] = STATE(2175), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2175), - [sym__expr_binary_expression] = STATE(3946), - [sym_expr_parenthesized] = STATE(2175), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(2175), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(3703), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3405), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(1949), - [sym__unquoted_with_expr] = STATE(2165), - [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(2490), + [sym_expr_parenthesized] = STATE(2161), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2207), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(1560), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1155), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3311), + [anon_sym_DOT_DOT] = ACTIONS(3241), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3313), - [anon_sym_DOT_DOT_LT] = ACTIONS(3313), - [anon_sym_null] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3335), - [anon_sym_false] = ACTIONS(3335), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_LT] = ACTIONS(3243), + [anon_sym_null] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3345), - [aux_sym__val_number_token5] = ACTIONS(3345), - [aux_sym__val_number_token6] = ACTIONS(3345), + [aux_sym__val_number_token4] = ACTIONS(3257), + [aux_sym__val_number_token5] = ACTIONS(3257), + [aux_sym__val_number_token6] = ACTIONS(3257), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3347), + [sym_val_date] = ACTIONS(3259), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1156] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3881), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3650), - [sym__unquoted_with_expr] = STATE(3882), - [sym__unquoted_anonymous_prefix] = STATE(6870), + [sym_expr_unary] = STATE(2228), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2228), + [sym__expr_binary_expression] = STATE(4193), + [sym_expr_parenthesized] = STATE(3939), + [sym_val_range] = STATE(2228), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(2228), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4057), + [sym_val_variable] = STATE(3937), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3630), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2261), + [sym__unquoted_anonymous_prefix] = STATE(7958), [sym_comment] = STATE(1156), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1157] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3918), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3686), - [sym__unquoted_with_expr] = STATE(3927), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1157), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1158] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3872), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3704), - [sym__unquoted_with_expr] = STATE(3885), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1158), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1159] = { - [sym_expr_unary] = STATE(3917), - [sym__expr_unary_minus] = STATE(3905), - [sym_expr_binary] = STATE(3917), - [sym__expr_binary_expression] = STATE(3869), - [sym_expr_parenthesized] = STATE(3917), - [sym__val_range] = STATE(7767), - [sym__val_range_with_end] = STATE(7636), - [sym__value] = STATE(3917), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(3729), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(3410), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3588), - [sym__str_double_quotes] = STATE(3588), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(3695), - [sym__unquoted_with_expr] = STATE(3870), - [sym__unquoted_anonymous_prefix] = STATE(6870), - [sym_comment] = STATE(1159), - [anon_sym_LBRACK] = ACTIONS(3443), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(3447), - [anon_sym_DASH2] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [aux_sym_expr_unary_token1] = ACTIONS(3455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3457), - [anon_sym_DOT_DOT_LT] = ACTIONS(3457), - [anon_sym_null] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [aux_sym__val_number_decimal_token1] = ACTIONS(3463), - [aux_sym__val_number_decimal_token2] = ACTIONS(3465), - [aux_sym__val_number_decimal_token3] = ACTIONS(3467), - [aux_sym__val_number_decimal_token4] = ACTIONS(3469), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym__str_single_quotes] = ACTIONS(3483), - [sym__str_back_ticks] = ACTIONS(3483), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3491), - }, - [1160] = { - [sym_ctrl_do] = STATE(4979), - [sym_ctrl_if] = STATE(4979), - [sym_ctrl_match] = STATE(4979), - [sym_ctrl_try] = STATE(4979), - [sym__expression] = STATE(4979), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_comment] = STATE(1160), - [sym__newline] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_err_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_GT_PIPE] = ACTIONS(3367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3367), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3459), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3373), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3375), + [anon_sym_DOT_DOT] = ACTIONS(3461), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [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), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), + [anon_sym_DOT_DOT_LT] = ACTIONS(3463), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [aux_sym__val_number_decimal_token1] = ACTIONS(3469), + [aux_sym__val_number_decimal_token2] = ACTIONS(3471), + [aux_sym__val_number_decimal_token3] = ACTIONS(3473), + [aux_sym__val_number_decimal_token4] = ACTIONS(3475), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3477), + [aux_sym__val_number_token5] = ACTIONS(3477), + [aux_sym__val_number_token6] = ACTIONS(3477), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), + [sym_val_date] = ACTIONS(3479), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1161] = { - [sym_ctrl_do] = STATE(4979), - [sym_ctrl_if] = STATE(4979), - [sym_ctrl_match] = STATE(4979), - [sym_ctrl_try] = STATE(4979), - [sym__expression] = STATE(4979), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_comment] = STATE(1161), - [sym__newline] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_err_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_GT_PIPE] = ACTIONS(3367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3367), + [1157] = { + [sym_ctrl_do] = STATE(5075), + [sym_ctrl_if] = STATE(5075), + [sym_ctrl_match] = STATE(5075), + [sym_ctrl_try] = STATE(5075), + [sym__expression] = STATE(5075), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3307), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_comment] = STATE(1157), + [sym__newline] = ACTIONS(3485), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3505), - [anon_sym_match] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3489), + [anon_sym_match] = ACTIONS(3491), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(3485), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3493), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [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), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_true] = ACTIONS(3497), + [anon_sym_false] = ACTIONS(3497), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -198788,152 +201172,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1162] = { - [sym_comment] = STATE(1162), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1162), - [aux_sym_cmd_identifier_token1] = ACTIONS(3507), - [aux_sym_cmd_identifier_token2] = ACTIONS(3507), - [aux_sym_cmd_identifier_token3] = ACTIONS(3507), - [aux_sym_cmd_identifier_token4] = ACTIONS(3507), - [aux_sym_cmd_identifier_token5] = ACTIONS(3507), - [aux_sym_cmd_identifier_token6] = ACTIONS(3507), - [aux_sym_cmd_identifier_token7] = ACTIONS(3507), - [aux_sym_cmd_identifier_token8] = ACTIONS(3507), - [aux_sym_cmd_identifier_token9] = ACTIONS(3507), - [aux_sym_cmd_identifier_token10] = ACTIONS(3507), - [aux_sym_cmd_identifier_token11] = ACTIONS(3507), - [aux_sym_cmd_identifier_token12] = ACTIONS(3507), - [aux_sym_cmd_identifier_token13] = ACTIONS(3507), - [aux_sym_cmd_identifier_token14] = ACTIONS(3507), - [aux_sym_cmd_identifier_token15] = ACTIONS(3507), - [aux_sym_cmd_identifier_token16] = ACTIONS(3507), - [aux_sym_cmd_identifier_token17] = ACTIONS(3507), - [aux_sym_cmd_identifier_token18] = ACTIONS(3507), - [aux_sym_cmd_identifier_token19] = ACTIONS(3507), - [aux_sym_cmd_identifier_token20] = ACTIONS(3507), - [aux_sym_cmd_identifier_token21] = ACTIONS(3507), - [aux_sym_cmd_identifier_token22] = ACTIONS(3507), - [aux_sym_cmd_identifier_token23] = ACTIONS(3507), - [aux_sym_cmd_identifier_token24] = ACTIONS(3507), - [aux_sym_cmd_identifier_token25] = ACTIONS(3507), - [aux_sym_cmd_identifier_token26] = ACTIONS(3507), - [aux_sym_cmd_identifier_token27] = ACTIONS(3507), - [aux_sym_cmd_identifier_token28] = ACTIONS(3507), - [aux_sym_cmd_identifier_token29] = ACTIONS(3507), - [aux_sym_cmd_identifier_token30] = ACTIONS(3507), - [aux_sym_cmd_identifier_token31] = ACTIONS(3507), - [aux_sym_cmd_identifier_token32] = ACTIONS(3507), - [aux_sym_cmd_identifier_token33] = ACTIONS(3507), - [aux_sym_cmd_identifier_token34] = ACTIONS(3507), - [aux_sym_cmd_identifier_token35] = ACTIONS(3507), - [aux_sym_cmd_identifier_token36] = ACTIONS(3507), - [aux_sym_cmd_identifier_token37] = ACTIONS(3507), - [aux_sym_cmd_identifier_token38] = ACTIONS(3507), - [aux_sym_cmd_identifier_token39] = ACTIONS(3507), - [aux_sym_cmd_identifier_token40] = ACTIONS(3507), - [sym__newline] = ACTIONS(3509), - [sym__space] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_DOLLAR] = ACTIONS(3507), - [anon_sym_DASH2] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3507), - [anon_sym_DOT_DOT] = ACTIONS(3507), - [aux_sym_expr_unary_token1] = ACTIONS(3507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3507), - [anon_sym_DOT_DOT_LT] = ACTIONS(3507), - [anon_sym_null] = ACTIONS(3507), - [anon_sym_true] = ACTIONS(3507), - [anon_sym_false] = ACTIONS(3507), - [aux_sym__val_number_decimal_token1] = ACTIONS(3507), - [aux_sym__val_number_decimal_token2] = ACTIONS(3507), - [aux_sym__val_number_decimal_token3] = ACTIONS(3507), - [aux_sym__val_number_decimal_token4] = ACTIONS(3507), - [aux_sym__val_number_token1] = ACTIONS(3507), - [aux_sym__val_number_token2] = ACTIONS(3507), - [aux_sym__val_number_token3] = ACTIONS(3507), - [aux_sym__val_number_token4] = ACTIONS(3507), - [aux_sym__val_number_token5] = ACTIONS(3507), - [aux_sym__val_number_token6] = ACTIONS(3507), - [anon_sym_0b] = ACTIONS(3507), - [anon_sym_0o] = ACTIONS(3507), - [anon_sym_0x] = ACTIONS(3507), - [sym_val_date] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym__str_single_quotes] = ACTIONS(3507), - [sym__str_back_ticks] = ACTIONS(3507), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3507), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), - [aux_sym_env_var_token1] = ACTIONS(3507), - [anon_sym_CARET] = ACTIONS(3507), - [aux_sym_command_token1] = ACTIONS(3507), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3515), - }, - [1163] = { - [sym_ctrl_do] = STATE(4979), - [sym_ctrl_if] = STATE(4979), - [sym_ctrl_match] = STATE(4979), - [sym_ctrl_try] = STATE(4979), - [sym__expression] = STATE(4979), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_comment] = STATE(1163), - [sym__newline] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_err_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_GT_PIPE] = ACTIONS(3367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3367), + [1158] = { + [sym_ctrl_do] = STATE(5075), + [sym_ctrl_if] = STATE(5075), + [sym_ctrl_match] = STATE(5075), + [sym_ctrl_try] = STATE(5075), + [sym__expression] = STATE(5075), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3307), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_comment] = STATE(1158), + [sym__newline] = ACTIONS(3485), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_match] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3491), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3493), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [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), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_true] = ACTIONS(3497), + [anon_sym_false] = ACTIONS(3497), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -198952,606 +201255,772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1164] = { - [sym_expr_unary] = STATE(4420), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_parenthesized] = STATE(4131), - [sym_val_range] = STATE(4420), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(4420), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(4180), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(4012), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(4191), - [sym__unquoted_with_expr] = STATE(4423), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1164), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_DOLLAR] = ACTIONS(3521), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3523), - [aux_sym_expr_unary_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3527), - [anon_sym_DOT_DOT_LT] = ACTIONS(3527), - [anon_sym_null] = ACTIONS(3529), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [aux_sym__val_number_decimal_token1] = ACTIONS(3533), - [aux_sym__val_number_decimal_token2] = ACTIONS(3535), - [aux_sym__val_number_decimal_token3] = ACTIONS(3537), - [aux_sym__val_number_decimal_token4] = ACTIONS(3539), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3541), - [aux_sym__val_number_token5] = ACTIONS(3541), - [aux_sym__val_number_token6] = ACTIONS(3541), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1165] = { - [sym_expr_unary] = STATE(4381), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_parenthesized] = STATE(4129), - [sym_val_range] = STATE(4381), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(4381), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(4180), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(4012), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(4189), - [sym__unquoted_with_expr] = STATE(4419), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1165), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_DOLLAR] = ACTIONS(3521), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3523), - [aux_sym_expr_unary_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3527), - [anon_sym_DOT_DOT_LT] = ACTIONS(3527), - [anon_sym_null] = ACTIONS(3529), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [aux_sym__val_number_decimal_token1] = ACTIONS(3533), - [aux_sym__val_number_decimal_token2] = ACTIONS(3535), - [aux_sym__val_number_decimal_token3] = ACTIONS(3537), - [aux_sym__val_number_decimal_token4] = ACTIONS(3539), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3541), - [aux_sym__val_number_token5] = ACTIONS(3541), - [aux_sym__val_number_token6] = ACTIONS(3541), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3543), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [1159] = { + [sym_ctrl_do] = STATE(5348), + [sym_ctrl_if] = STATE(5348), + [sym_ctrl_match] = STATE(5348), + [sym_ctrl_try] = STATE(5348), + [sym__expression] = STATE(5348), + [sym_expr_unary] = STATE(2641), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_binary] = STATE(2641), + [sym__expr_binary_expression] = STATE(4216), + [sym_expr_parenthesized] = STATE(2267), + [sym_val_range] = STATE(2641), + [sym__value] = STATE(2641), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(2666), + [sym_val_variable] = STATE(2184), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(3326), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_comment] = STATE(1159), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym__newline] = ACTIONS(3485), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_do] = ACTIONS(3505), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(3511), + [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(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [aux_sym__val_number_decimal_token1] = ACTIONS(3445), + [aux_sym__val_number_decimal_token2] = ACTIONS(3447), + [aux_sym__val_number_decimal_token3] = ACTIONS(3449), + [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [aux_sym__val_number_token1] = ACTIONS(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(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(123), }, - [1166] = { - [sym_expr_unary] = STATE(4583), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_parenthesized] = STATE(4196), - [sym_val_range] = STATE(4583), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(4583), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(4253), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(4018), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(4292), - [sym__unquoted_with_expr] = STATE(4588), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1166), + [1160] = { + [sym_expr_unary] = STATE(4788), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_parenthesized] = STATE(4470), + [sym_val_range] = STATE(4788), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(4788), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(4574), + [sym_val_variable] = STATE(4415), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(4274), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(4560), + [sym__unquoted_with_expr] = STATE(4808), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1160), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_DOLLAR] = ACTIONS(3519), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3549), - [aux_sym_expr_unary_token1] = ACTIONS(3551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3553), - [anon_sym_DOT_DOT_LT] = ACTIONS(3553), - [anon_sym_null] = ACTIONS(3555), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [aux_sym__val_number_decimal_token1] = ACTIONS(3559), - [aux_sym__val_number_decimal_token2] = ACTIONS(3561), - [aux_sym__val_number_decimal_token3] = ACTIONS(3563), - [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(3521), + [aux_sym_expr_unary_token1] = ACTIONS(3523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), + [anon_sym_DOT_DOT_LT] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_true] = ACTIONS(3529), + [anon_sym_false] = ACTIONS(3529), + [aux_sym__val_number_decimal_token1] = ACTIONS(3531), + [aux_sym__val_number_decimal_token2] = ACTIONS(3533), + [aux_sym__val_number_decimal_token3] = ACTIONS(3535), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3567), - [aux_sym__val_number_token5] = ACTIONS(3567), - [aux_sym__val_number_token6] = ACTIONS(3567), + [aux_sym__val_number_token4] = ACTIONS(3539), + [aux_sym__val_number_token5] = ACTIONS(3539), + [aux_sym__val_number_token6] = ACTIONS(3539), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3569), + [sym_val_date] = ACTIONS(3541), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1167] = { - [sym_expr_unary] = STATE(4533), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_parenthesized] = STATE(4162), - [sym_val_range] = STATE(4533), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(4533), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(4253), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(4018), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(4239), - [sym__unquoted_with_expr] = STATE(4603), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1167), + [1161] = { + [sym_expr_unary] = STATE(4830), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_parenthesized] = STATE(4424), + [sym_val_range] = STATE(4830), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(4830), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(4574), + [sym_val_variable] = STATE(4415), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(4274), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(4501), + [sym__unquoted_with_expr] = STATE(4863), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1161), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_DOLLAR] = ACTIONS(3519), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3549), - [aux_sym_expr_unary_token1] = ACTIONS(3551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3553), - [anon_sym_DOT_DOT_LT] = ACTIONS(3553), - [anon_sym_null] = ACTIONS(3555), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [aux_sym__val_number_decimal_token1] = ACTIONS(3559), - [aux_sym__val_number_decimal_token2] = ACTIONS(3561), - [aux_sym__val_number_decimal_token3] = ACTIONS(3563), - [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(3521), + [aux_sym_expr_unary_token1] = ACTIONS(3523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), + [anon_sym_DOT_DOT_LT] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_true] = ACTIONS(3529), + [anon_sym_false] = ACTIONS(3529), + [aux_sym__val_number_decimal_token1] = ACTIONS(3531), + [aux_sym__val_number_decimal_token2] = ACTIONS(3533), + [aux_sym__val_number_decimal_token3] = ACTIONS(3535), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3567), - [aux_sym__val_number_token5] = ACTIONS(3567), - [aux_sym__val_number_token6] = ACTIONS(3567), + [aux_sym__val_number_token4] = ACTIONS(3539), + [aux_sym__val_number_token5] = ACTIONS(3539), + [aux_sym__val_number_token6] = ACTIONS(3539), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3569), + [sym_val_date] = ACTIONS(3541), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1168] = { - [sym_expr_unary] = STATE(4579), - [sym__expr_unary_minus] = STATE(2484), - [sym_expr_parenthesized] = STATE(4172), - [sym_val_range] = STATE(4579), - [sym__val_range] = STATE(7805), - [sym__val_range_with_end] = STATE(7590), - [sym__value] = STATE(4579), - [sym_val_nothing] = STATE(2547), - [sym_val_bool] = STATE(4253), - [sym_val_variable] = STATE(2108), - [sym_val_number] = STATE(2547), - [sym__val_number_decimal] = STATE(4018), - [sym__val_number] = STATE(2476), - [sym_val_duration] = STATE(2547), - [sym_val_filesize] = STATE(2547), - [sym_val_binary] = STATE(2547), - [sym_val_string] = STATE(2547), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2547), - [sym__inter_single_quotes] = STATE(2532), - [sym__inter_double_quotes] = STATE(2502), - [sym_val_list] = STATE(2547), - [sym_val_record] = STATE(2547), - [sym_val_table] = STATE(2547), - [sym_val_closure] = STATE(2547), - [sym_unquoted] = STATE(4245), - [sym__unquoted_with_expr] = STATE(4530), - [sym__unquoted_anonymous_prefix] = STATE(6940), - [sym_comment] = STATE(1168), + [1162] = { + [sym_expr_unary] = STATE(4836), + [sym__expr_unary_minus] = STATE(2649), + [sym_expr_parenthesized] = STATE(4445), + [sym_val_range] = STATE(4836), + [sym__val_range] = STATE(8443), + [sym__val_range_with_end] = STATE(8091), + [sym__value] = STATE(4836), + [sym_val_nothing] = STATE(2666), + [sym_val_bool] = STATE(4574), + [sym_val_variable] = STATE(4415), + [sym_val_number] = STATE(2666), + [sym__val_number_decimal] = STATE(4274), + [sym__val_number] = STATE(2658), + [sym_val_duration] = STATE(2666), + [sym_val_filesize] = STATE(2666), + [sym_val_binary] = STATE(2666), + [sym_val_string] = STATE(2666), + [sym__raw_str] = STATE(2190), + [sym__str_double_quotes] = STATE(2190), + [sym_val_interpolated] = STATE(2666), + [sym__inter_single_quotes] = STATE(2621), + [sym__inter_double_quotes] = STATE(2630), + [sym_val_list] = STATE(2666), + [sym_val_record] = STATE(2666), + [sym_val_table] = STATE(2666), + [sym_val_closure] = STATE(2666), + [sym_unquoted] = STATE(4493), + [sym__unquoted_with_expr] = STATE(4859), + [sym__unquoted_anonymous_prefix] = STATE(7521), + [sym_comment] = STATE(1162), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_DOLLAR] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_DOLLAR] = ACTIONS(3519), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3549), - [aux_sym_expr_unary_token1] = ACTIONS(3551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3553), - [anon_sym_DOT_DOT_LT] = ACTIONS(3553), - [anon_sym_null] = ACTIONS(3555), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [aux_sym__val_number_decimal_token1] = ACTIONS(3559), - [aux_sym__val_number_decimal_token2] = ACTIONS(3561), - [aux_sym__val_number_decimal_token3] = ACTIONS(3563), - [aux_sym__val_number_decimal_token4] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(3521), + [aux_sym_expr_unary_token1] = ACTIONS(3523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), + [anon_sym_DOT_DOT_LT] = ACTIONS(3525), + [anon_sym_null] = ACTIONS(3527), + [anon_sym_true] = ACTIONS(3529), + [anon_sym_false] = ACTIONS(3529), + [aux_sym__val_number_decimal_token1] = ACTIONS(3531), + [aux_sym__val_number_decimal_token2] = ACTIONS(3533), + [aux_sym__val_number_decimal_token3] = ACTIONS(3535), + [aux_sym__val_number_decimal_token4] = ACTIONS(3537), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3567), - [aux_sym__val_number_token5] = ACTIONS(3567), - [aux_sym__val_number_token6] = ACTIONS(3567), + [aux_sym__val_number_token4] = ACTIONS(3539), + [aux_sym__val_number_token5] = ACTIONS(3539), + [aux_sym__val_number_token6] = ACTIONS(3539), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3569), + [sym_val_date] = ACTIONS(3541), [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(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3425), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1169] = { - [sym_comment] = STATE(1169), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1162), - [aux_sym_cmd_identifier_token1] = ACTIONS(3571), - [aux_sym_cmd_identifier_token2] = ACTIONS(3571), - [aux_sym_cmd_identifier_token3] = ACTIONS(3571), - [aux_sym_cmd_identifier_token4] = ACTIONS(3571), - [aux_sym_cmd_identifier_token5] = ACTIONS(3571), - [aux_sym_cmd_identifier_token6] = ACTIONS(3571), - [aux_sym_cmd_identifier_token7] = ACTIONS(3571), - [aux_sym_cmd_identifier_token8] = ACTIONS(3571), - [aux_sym_cmd_identifier_token9] = ACTIONS(3571), - [aux_sym_cmd_identifier_token10] = ACTIONS(3571), - [aux_sym_cmd_identifier_token11] = ACTIONS(3571), - [aux_sym_cmd_identifier_token12] = ACTIONS(3571), - [aux_sym_cmd_identifier_token13] = ACTIONS(3571), - [aux_sym_cmd_identifier_token14] = ACTIONS(3571), - [aux_sym_cmd_identifier_token15] = ACTIONS(3571), - [aux_sym_cmd_identifier_token16] = ACTIONS(3571), - [aux_sym_cmd_identifier_token17] = ACTIONS(3571), - [aux_sym_cmd_identifier_token18] = ACTIONS(3571), - [aux_sym_cmd_identifier_token19] = ACTIONS(3571), - [aux_sym_cmd_identifier_token20] = ACTIONS(3571), - [aux_sym_cmd_identifier_token21] = ACTIONS(3571), - [aux_sym_cmd_identifier_token22] = ACTIONS(3571), - [aux_sym_cmd_identifier_token23] = ACTIONS(3571), - [aux_sym_cmd_identifier_token24] = ACTIONS(3571), - [aux_sym_cmd_identifier_token25] = ACTIONS(3571), - [aux_sym_cmd_identifier_token26] = ACTIONS(3571), - [aux_sym_cmd_identifier_token27] = ACTIONS(3571), - [aux_sym_cmd_identifier_token28] = ACTIONS(3571), - [aux_sym_cmd_identifier_token29] = ACTIONS(3571), - [aux_sym_cmd_identifier_token30] = ACTIONS(3571), - [aux_sym_cmd_identifier_token31] = ACTIONS(3571), - [aux_sym_cmd_identifier_token32] = ACTIONS(3571), - [aux_sym_cmd_identifier_token33] = ACTIONS(3571), - [aux_sym_cmd_identifier_token34] = ACTIONS(3571), - [aux_sym_cmd_identifier_token35] = ACTIONS(3571), - [aux_sym_cmd_identifier_token36] = ACTIONS(3571), - [aux_sym_cmd_identifier_token37] = ACTIONS(3571), - [aux_sym_cmd_identifier_token38] = ACTIONS(3571), - [aux_sym_cmd_identifier_token39] = ACTIONS(3571), - [aux_sym_cmd_identifier_token40] = ACTIONS(3571), - [sym__newline] = ACTIONS(3573), - [sym__space] = ACTIONS(3575), - [anon_sym_LBRACK] = ACTIONS(3571), - [anon_sym_LPAREN] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3571), - [anon_sym_DASH2] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3571), - [anon_sym_DOT_DOT] = ACTIONS(3571), - [aux_sym_expr_unary_token1] = ACTIONS(3571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3571), - [anon_sym_DOT_DOT_LT] = ACTIONS(3571), - [anon_sym_null] = ACTIONS(3571), - [anon_sym_true] = ACTIONS(3571), - [anon_sym_false] = ACTIONS(3571), - [aux_sym__val_number_decimal_token1] = ACTIONS(3571), - [aux_sym__val_number_decimal_token2] = ACTIONS(3571), - [aux_sym__val_number_decimal_token3] = ACTIONS(3571), - [aux_sym__val_number_decimal_token4] = ACTIONS(3571), - [aux_sym__val_number_token1] = ACTIONS(3571), - [aux_sym__val_number_token2] = ACTIONS(3571), - [aux_sym__val_number_token3] = ACTIONS(3571), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), - [anon_sym_0b] = ACTIONS(3571), - [anon_sym_0o] = ACTIONS(3571), - [anon_sym_0x] = ACTIONS(3571), - [sym_val_date] = ACTIONS(3571), - [anon_sym_DQUOTE] = ACTIONS(3571), - [sym__str_single_quotes] = ACTIONS(3571), - [sym__str_back_ticks] = ACTIONS(3571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3571), - [aux_sym_env_var_token1] = ACTIONS(3571), - [anon_sym_CARET] = ACTIONS(3571), - [aux_sym_command_token1] = ACTIONS(3571), + [1163] = { + [sym_expr_unary] = STATE(4721), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_parenthesized] = STATE(4381), + [sym_val_range] = STATE(4721), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(4721), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4453), + [sym_val_variable] = STATE(4389), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(4251), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(4464), + [sym__unquoted_with_expr] = STATE(4724), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1163), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3547), + [aux_sym_expr_unary_token1] = ACTIONS(3549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3551), + [anon_sym_DOT_DOT_LT] = ACTIONS(3551), + [anon_sym_null] = ACTIONS(3553), + [anon_sym_true] = ACTIONS(3555), + [anon_sym_false] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3565), + [aux_sym__val_number_token5] = ACTIONS(3565), + [aux_sym__val_number_token6] = ACTIONS(3565), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [1164] = { + [sym_expr_unary] = STATE(4708), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_parenthesized] = STATE(4375), + [sym_val_range] = STATE(4708), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(4708), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4453), + [sym_val_variable] = STATE(4389), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(4251), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(4440), + [sym__unquoted_with_expr] = STATE(4719), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1164), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3547), + [aux_sym_expr_unary_token1] = ACTIONS(3549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3551), + [anon_sym_DOT_DOT_LT] = ACTIONS(3551), + [anon_sym_null] = ACTIONS(3553), + [anon_sym_true] = ACTIONS(3555), + [anon_sym_false] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3565), + [aux_sym__val_number_token5] = ACTIONS(3565), + [aux_sym__val_number_token6] = ACTIONS(3565), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [1165] = { + [sym_comment] = STATE(1165), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1168), + [aux_sym_cmd_identifier_token1] = ACTIONS(3569), + [aux_sym_cmd_identifier_token2] = ACTIONS(3569), + [aux_sym_cmd_identifier_token3] = ACTIONS(3569), + [aux_sym_cmd_identifier_token4] = ACTIONS(3569), + [aux_sym_cmd_identifier_token5] = ACTIONS(3569), + [aux_sym_cmd_identifier_token6] = ACTIONS(3569), + [aux_sym_cmd_identifier_token7] = ACTIONS(3569), + [aux_sym_cmd_identifier_token8] = ACTIONS(3569), + [aux_sym_cmd_identifier_token9] = ACTIONS(3569), + [aux_sym_cmd_identifier_token10] = ACTIONS(3569), + [aux_sym_cmd_identifier_token11] = ACTIONS(3569), + [aux_sym_cmd_identifier_token12] = ACTIONS(3569), + [aux_sym_cmd_identifier_token13] = ACTIONS(3569), + [aux_sym_cmd_identifier_token14] = ACTIONS(3569), + [aux_sym_cmd_identifier_token15] = ACTIONS(3569), + [aux_sym_cmd_identifier_token16] = ACTIONS(3569), + [aux_sym_cmd_identifier_token17] = ACTIONS(3569), + [aux_sym_cmd_identifier_token18] = ACTIONS(3569), + [aux_sym_cmd_identifier_token19] = ACTIONS(3569), + [aux_sym_cmd_identifier_token20] = ACTIONS(3569), + [aux_sym_cmd_identifier_token21] = ACTIONS(3569), + [aux_sym_cmd_identifier_token22] = ACTIONS(3569), + [aux_sym_cmd_identifier_token23] = ACTIONS(3569), + [aux_sym_cmd_identifier_token24] = ACTIONS(3569), + [aux_sym_cmd_identifier_token25] = ACTIONS(3569), + [aux_sym_cmd_identifier_token26] = ACTIONS(3569), + [aux_sym_cmd_identifier_token27] = ACTIONS(3569), + [aux_sym_cmd_identifier_token28] = ACTIONS(3569), + [aux_sym_cmd_identifier_token29] = ACTIONS(3569), + [aux_sym_cmd_identifier_token30] = ACTIONS(3569), + [aux_sym_cmd_identifier_token31] = ACTIONS(3569), + [aux_sym_cmd_identifier_token32] = ACTIONS(3569), + [aux_sym_cmd_identifier_token33] = ACTIONS(3569), + [aux_sym_cmd_identifier_token34] = ACTIONS(3569), + [aux_sym_cmd_identifier_token35] = ACTIONS(3569), + [aux_sym_cmd_identifier_token36] = ACTIONS(3569), + [aux_sym_cmd_identifier_token37] = ACTIONS(3569), + [aux_sym_cmd_identifier_token38] = ACTIONS(3569), + [aux_sym_cmd_identifier_token39] = ACTIONS(3569), + [aux_sym_cmd_identifier_token40] = ACTIONS(3569), + [sym__newline] = ACTIONS(3571), + [sym__space] = ACTIONS(3573), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_LPAREN] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3569), + [anon_sym_DASH2] = ACTIONS(3569), + [anon_sym_LBRACE] = ACTIONS(3569), + [anon_sym_DOT_DOT] = ACTIONS(3569), + [aux_sym_expr_unary_token1] = ACTIONS(3569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3569), + [anon_sym_DOT_DOT_LT] = ACTIONS(3569), + [anon_sym_null] = ACTIONS(3569), + [anon_sym_true] = ACTIONS(3569), + [anon_sym_false] = ACTIONS(3569), + [aux_sym__val_number_decimal_token1] = ACTIONS(3569), + [aux_sym__val_number_decimal_token2] = ACTIONS(3569), + [aux_sym__val_number_decimal_token3] = ACTIONS(3569), + [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [aux_sym__val_number_token1] = ACTIONS(3569), + [aux_sym__val_number_token2] = ACTIONS(3569), + [aux_sym__val_number_token3] = ACTIONS(3569), + [aux_sym__val_number_token4] = ACTIONS(3569), + [aux_sym__val_number_token5] = ACTIONS(3569), + [aux_sym__val_number_token6] = ACTIONS(3569), + [anon_sym_0b] = ACTIONS(3569), + [anon_sym_0o] = ACTIONS(3569), + [anon_sym_0x] = ACTIONS(3569), + [sym_val_date] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(3569), + [sym__str_single_quotes] = ACTIONS(3569), + [sym__str_back_ticks] = ACTIONS(3569), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3569), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), + [aux_sym_env_var_token1] = ACTIONS(3569), + [anon_sym_CARET] = ACTIONS(3569), + [aux_sym_command_token1] = ACTIONS(3569), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3577), + [sym_raw_string_begin] = ACTIONS(3575), }, - [1170] = { - [sym_expr_unary] = STATE(4424), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_parenthesized] = STATE(4132), - [sym_val_range] = STATE(4424), - [sym__val_range] = STATE(7747), - [sym__val_range_with_end] = STATE(7625), - [sym__value] = STATE(4424), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(4180), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(4012), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(4194), - [sym__unquoted_with_expr] = STATE(4427), - [sym__unquoted_anonymous_prefix] = STATE(7439), - [sym_comment] = STATE(1170), + [1166] = { + [sym_expr_unary] = STATE(4725), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_parenthesized] = STATE(4366), + [sym_val_range] = STATE(4725), + [sym__val_range] = STATE(8344), + [sym__val_range_with_end] = STATE(8130), + [sym__value] = STATE(4725), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(4453), + [sym_val_variable] = STATE(4389), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(4251), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(4465), + [sym__unquoted_with_expr] = STATE(4727), + [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_comment] = STATE(1166), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_DOLLAR] = ACTIONS(3545), [anon_sym_DASH2] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3523), - [aux_sym_expr_unary_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3527), - [anon_sym_DOT_DOT_LT] = ACTIONS(3527), - [anon_sym_null] = ACTIONS(3529), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [aux_sym__val_number_decimal_token1] = ACTIONS(3533), - [aux_sym__val_number_decimal_token2] = ACTIONS(3535), - [aux_sym__val_number_decimal_token3] = ACTIONS(3537), - [aux_sym__val_number_decimal_token4] = ACTIONS(3539), + [anon_sym_DOT_DOT] = ACTIONS(3547), + [aux_sym_expr_unary_token1] = ACTIONS(3549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3551), + [anon_sym_DOT_DOT_LT] = ACTIONS(3551), + [anon_sym_null] = ACTIONS(3553), + [anon_sym_true] = ACTIONS(3555), + [anon_sym_false] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3557), + [aux_sym__val_number_decimal_token2] = ACTIONS(3559), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3541), - [aux_sym__val_number_token5] = ACTIONS(3541), - [aux_sym__val_number_token6] = ACTIONS(3541), + [aux_sym__val_number_token4] = ACTIONS(3565), + [aux_sym__val_number_token5] = ACTIONS(3565), + [aux_sym__val_number_token6] = ACTIONS(3565), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3543), + [sym_val_date] = ACTIONS(3567), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1171] = { - [sym_comment] = STATE(1171), - [aux_sym_cmd_identifier_token1] = ACTIONS(3579), - [aux_sym_cmd_identifier_token2] = ACTIONS(3579), - [aux_sym_cmd_identifier_token3] = ACTIONS(3579), - [aux_sym_cmd_identifier_token4] = ACTIONS(3579), - [aux_sym_cmd_identifier_token5] = ACTIONS(3579), - [aux_sym_cmd_identifier_token6] = ACTIONS(3579), - [aux_sym_cmd_identifier_token7] = ACTIONS(3579), - [aux_sym_cmd_identifier_token8] = ACTIONS(3579), - [aux_sym_cmd_identifier_token9] = ACTIONS(3579), - [aux_sym_cmd_identifier_token10] = ACTIONS(3579), - [aux_sym_cmd_identifier_token11] = ACTIONS(3579), - [aux_sym_cmd_identifier_token12] = ACTIONS(3579), - [aux_sym_cmd_identifier_token13] = ACTIONS(3579), - [aux_sym_cmd_identifier_token14] = ACTIONS(3579), - [aux_sym_cmd_identifier_token15] = ACTIONS(3579), - [aux_sym_cmd_identifier_token16] = ACTIONS(3579), - [aux_sym_cmd_identifier_token17] = ACTIONS(3579), - [aux_sym_cmd_identifier_token18] = ACTIONS(3579), - [aux_sym_cmd_identifier_token19] = ACTIONS(3579), - [aux_sym_cmd_identifier_token20] = ACTIONS(3579), - [aux_sym_cmd_identifier_token21] = ACTIONS(3579), - [aux_sym_cmd_identifier_token22] = ACTIONS(3579), - [aux_sym_cmd_identifier_token23] = ACTIONS(3579), - [aux_sym_cmd_identifier_token24] = ACTIONS(3579), + [1167] = { + [sym_ctrl_do] = STATE(5075), + [sym_ctrl_if] = STATE(5075), + [sym_ctrl_match] = STATE(5075), + [sym_ctrl_try] = STATE(5075), + [sym__expression] = STATE(5075), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3307), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_comment] = STATE(1167), + [sym__newline] = ACTIONS(3485), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3577), + [anon_sym_match] = ACTIONS(3491), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3493), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_true] = ACTIONS(3497), + [anon_sym_false] = ACTIONS(3497), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(431), + [aux_sym__val_number_token5] = ACTIONS(431), + [aux_sym__val_number_token6] = ACTIONS(431), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), + }, + [1168] = { + [sym_comment] = STATE(1168), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1168), + [aux_sym_cmd_identifier_token1] = ACTIONS(3579), + [aux_sym_cmd_identifier_token2] = ACTIONS(3579), + [aux_sym_cmd_identifier_token3] = ACTIONS(3579), + [aux_sym_cmd_identifier_token4] = ACTIONS(3579), + [aux_sym_cmd_identifier_token5] = ACTIONS(3579), + [aux_sym_cmd_identifier_token6] = ACTIONS(3579), + [aux_sym_cmd_identifier_token7] = ACTIONS(3579), + [aux_sym_cmd_identifier_token8] = ACTIONS(3579), + [aux_sym_cmd_identifier_token9] = ACTIONS(3579), + [aux_sym_cmd_identifier_token10] = ACTIONS(3579), + [aux_sym_cmd_identifier_token11] = ACTIONS(3579), + [aux_sym_cmd_identifier_token12] = ACTIONS(3579), + [aux_sym_cmd_identifier_token13] = ACTIONS(3579), + [aux_sym_cmd_identifier_token14] = ACTIONS(3579), + [aux_sym_cmd_identifier_token15] = ACTIONS(3579), + [aux_sym_cmd_identifier_token16] = ACTIONS(3579), + [aux_sym_cmd_identifier_token17] = ACTIONS(3579), + [aux_sym_cmd_identifier_token18] = ACTIONS(3579), + [aux_sym_cmd_identifier_token19] = ACTIONS(3579), + [aux_sym_cmd_identifier_token20] = ACTIONS(3579), + [aux_sym_cmd_identifier_token21] = ACTIONS(3579), + [aux_sym_cmd_identifier_token22] = ACTIONS(3579), + [aux_sym_cmd_identifier_token23] = ACTIONS(3579), + [aux_sym_cmd_identifier_token24] = ACTIONS(3579), [aux_sym_cmd_identifier_token25] = ACTIONS(3579), [aux_sym_cmd_identifier_token26] = ACTIONS(3579), [aux_sym_cmd_identifier_token27] = ACTIONS(3579), @@ -199568,8 +202037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(3579), [aux_sym_cmd_identifier_token39] = ACTIONS(3579), [aux_sym_cmd_identifier_token40] = ACTIONS(3579), - [sym__newline] = ACTIONS(3579), - [sym__space] = ACTIONS(3581), + [sym__newline] = ACTIONS(3581), + [sym__space] = ACTIONS(3584), [anon_sym_LBRACK] = ACTIONS(3579), [anon_sym_LPAREN] = ACTIONS(3579), [anon_sym_DOLLAR] = ACTIONS(3579), @@ -199605,476 +202074,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(3579), [aux_sym_command_token1] = ACTIONS(3579), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3581), + [sym_raw_string_begin] = ACTIONS(3587), + }, + [1169] = { + [sym_comment] = STATE(1169), + [aux_sym_pipe_element_repeat1] = STATE(1171), + [aux_sym_cmd_identifier_token1] = ACTIONS(3589), + [aux_sym_cmd_identifier_token2] = ACTIONS(3589), + [aux_sym_cmd_identifier_token3] = ACTIONS(3589), + [aux_sym_cmd_identifier_token4] = ACTIONS(3589), + [aux_sym_cmd_identifier_token5] = ACTIONS(3589), + [aux_sym_cmd_identifier_token6] = ACTIONS(3589), + [aux_sym_cmd_identifier_token7] = ACTIONS(3589), + [aux_sym_cmd_identifier_token8] = ACTIONS(3589), + [aux_sym_cmd_identifier_token9] = ACTIONS(3589), + [aux_sym_cmd_identifier_token10] = ACTIONS(3589), + [aux_sym_cmd_identifier_token11] = ACTIONS(3589), + [aux_sym_cmd_identifier_token12] = ACTIONS(3589), + [aux_sym_cmd_identifier_token13] = ACTIONS(3589), + [aux_sym_cmd_identifier_token14] = ACTIONS(3589), + [aux_sym_cmd_identifier_token15] = ACTIONS(3589), + [aux_sym_cmd_identifier_token16] = ACTIONS(3589), + [aux_sym_cmd_identifier_token17] = ACTIONS(3589), + [aux_sym_cmd_identifier_token18] = ACTIONS(3589), + [aux_sym_cmd_identifier_token19] = ACTIONS(3589), + [aux_sym_cmd_identifier_token20] = ACTIONS(3589), + [aux_sym_cmd_identifier_token21] = ACTIONS(3589), + [aux_sym_cmd_identifier_token22] = ACTIONS(3589), + [aux_sym_cmd_identifier_token23] = ACTIONS(3589), + [aux_sym_cmd_identifier_token24] = ACTIONS(3589), + [aux_sym_cmd_identifier_token25] = ACTIONS(3589), + [aux_sym_cmd_identifier_token26] = ACTIONS(3589), + [aux_sym_cmd_identifier_token27] = ACTIONS(3589), + [aux_sym_cmd_identifier_token28] = ACTIONS(3589), + [aux_sym_cmd_identifier_token29] = ACTIONS(3589), + [aux_sym_cmd_identifier_token30] = ACTIONS(3589), + [aux_sym_cmd_identifier_token31] = ACTIONS(3589), + [aux_sym_cmd_identifier_token32] = ACTIONS(3589), + [aux_sym_cmd_identifier_token33] = ACTIONS(3589), + [aux_sym_cmd_identifier_token34] = ACTIONS(3589), + [aux_sym_cmd_identifier_token35] = ACTIONS(3589), + [aux_sym_cmd_identifier_token36] = ACTIONS(3589), + [aux_sym_cmd_identifier_token37] = ACTIONS(3589), + [aux_sym_cmd_identifier_token38] = ACTIONS(3589), + [aux_sym_cmd_identifier_token39] = ACTIONS(3589), + [aux_sym_cmd_identifier_token40] = ACTIONS(3589), + [sym__space] = ACTIONS(3591), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_DOLLAR] = ACTIONS(3589), + [anon_sym_DASH2] = ACTIONS(3589), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_DOT_DOT] = ACTIONS(3589), + [aux_sym_expr_unary_token1] = ACTIONS(3589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3589), + [anon_sym_DOT_DOT_LT] = ACTIONS(3589), + [anon_sym_null] = ACTIONS(3589), + [anon_sym_true] = ACTIONS(3589), + [anon_sym_false] = ACTIONS(3589), + [aux_sym__val_number_decimal_token1] = ACTIONS(3589), + [aux_sym__val_number_decimal_token2] = ACTIONS(3589), + [aux_sym__val_number_decimal_token3] = ACTIONS(3589), + [aux_sym__val_number_decimal_token4] = ACTIONS(3589), + [aux_sym__val_number_token1] = ACTIONS(3589), + [aux_sym__val_number_token2] = ACTIONS(3589), + [aux_sym__val_number_token3] = ACTIONS(3589), + [aux_sym__val_number_token4] = ACTIONS(3589), + [aux_sym__val_number_token5] = ACTIONS(3589), + [aux_sym__val_number_token6] = ACTIONS(3589), + [anon_sym_0b] = ACTIONS(3589), + [anon_sym_0o] = ACTIONS(3589), + [anon_sym_0x] = ACTIONS(3589), + [sym_val_date] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(3589), + [sym__str_single_quotes] = ACTIONS(3589), + [sym__str_back_ticks] = ACTIONS(3589), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), + [aux_sym_env_var_token1] = ACTIONS(3589), + [anon_sym_CARET] = ACTIONS(3589), + [aux_sym_command_token1] = ACTIONS(3589), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3593), + }, + [1170] = { + [sym_comment] = STATE(1170), + [aux_sym_shebang_repeat1] = STATE(1170), + [aux_sym_cmd_identifier_token1] = ACTIONS(1308), + [aux_sym_cmd_identifier_token2] = ACTIONS(1310), + [aux_sym_cmd_identifier_token3] = ACTIONS(1310), + [aux_sym_cmd_identifier_token4] = ACTIONS(1310), + [aux_sym_cmd_identifier_token5] = ACTIONS(1310), + [aux_sym_cmd_identifier_token6] = ACTIONS(1310), + [aux_sym_cmd_identifier_token7] = ACTIONS(1310), + [aux_sym_cmd_identifier_token8] = ACTIONS(1310), + [aux_sym_cmd_identifier_token9] = ACTIONS(1308), + [aux_sym_cmd_identifier_token10] = ACTIONS(1310), + [aux_sym_cmd_identifier_token11] = ACTIONS(1310), + [aux_sym_cmd_identifier_token12] = ACTIONS(1310), + [aux_sym_cmd_identifier_token13] = ACTIONS(1308), + [aux_sym_cmd_identifier_token14] = ACTIONS(1310), + [aux_sym_cmd_identifier_token15] = ACTIONS(1308), + [aux_sym_cmd_identifier_token16] = ACTIONS(1310), + [aux_sym_cmd_identifier_token17] = ACTIONS(1310), + [aux_sym_cmd_identifier_token18] = ACTIONS(1308), + [aux_sym_cmd_identifier_token19] = ACTIONS(1310), + [aux_sym_cmd_identifier_token20] = ACTIONS(1310), + [aux_sym_cmd_identifier_token21] = ACTIONS(1310), + [aux_sym_cmd_identifier_token22] = ACTIONS(1310), + [aux_sym_cmd_identifier_token23] = ACTIONS(1310), + [aux_sym_cmd_identifier_token24] = ACTIONS(1310), + [aux_sym_cmd_identifier_token25] = ACTIONS(1310), + [aux_sym_cmd_identifier_token26] = ACTIONS(1310), + [aux_sym_cmd_identifier_token27] = ACTIONS(1310), + [aux_sym_cmd_identifier_token28] = ACTIONS(1310), + [aux_sym_cmd_identifier_token29] = ACTIONS(1310), + [aux_sym_cmd_identifier_token30] = ACTIONS(1310), + [aux_sym_cmd_identifier_token31] = ACTIONS(1310), + [aux_sym_cmd_identifier_token32] = ACTIONS(1308), + [aux_sym_cmd_identifier_token33] = ACTIONS(1310), + [aux_sym_cmd_identifier_token34] = ACTIONS(1308), + [aux_sym_cmd_identifier_token35] = ACTIONS(1310), + [aux_sym_cmd_identifier_token36] = ACTIONS(1310), + [aux_sym_cmd_identifier_token37] = ACTIONS(1310), + [aux_sym_cmd_identifier_token38] = ACTIONS(1308), + [aux_sym_cmd_identifier_token39] = ACTIONS(1310), + [aux_sym_cmd_identifier_token40] = ACTIONS(1310), + [sym__newline] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [anon_sym_DASH2] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [aux_sym_expr_unary_token1] = ACTIONS(1310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), + [anon_sym_DOT_DOT_LT] = ACTIONS(1310), + [anon_sym_null] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [aux_sym__val_number_decimal_token1] = ACTIONS(1308), + [aux_sym__val_number_decimal_token2] = ACTIONS(1310), + [aux_sym__val_number_decimal_token3] = ACTIONS(1310), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), + [aux_sym__val_number_token1] = ACTIONS(1310), + [aux_sym__val_number_token2] = ACTIONS(1310), + [aux_sym__val_number_token3] = ACTIONS(1310), + [aux_sym__val_number_token4] = ACTIONS(1308), + [aux_sym__val_number_token5] = ACTIONS(1308), + [aux_sym__val_number_token6] = ACTIONS(1308), + [anon_sym_0b] = ACTIONS(1308), + [anon_sym_0o] = ACTIONS(1308), + [anon_sym_0x] = ACTIONS(1308), + [sym_val_date] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym__str_single_quotes] = ACTIONS(1310), + [sym__str_back_ticks] = ACTIONS(1310), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [aux_sym_command_token1] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1310), + }, + [1171] = { + [sym_comment] = STATE(1171), + [aux_sym_pipe_element_repeat1] = STATE(1171), + [aux_sym_cmd_identifier_token1] = ACTIONS(3598), + [aux_sym_cmd_identifier_token2] = ACTIONS(3598), + [aux_sym_cmd_identifier_token3] = ACTIONS(3598), + [aux_sym_cmd_identifier_token4] = ACTIONS(3598), + [aux_sym_cmd_identifier_token5] = ACTIONS(3598), + [aux_sym_cmd_identifier_token6] = ACTIONS(3598), + [aux_sym_cmd_identifier_token7] = ACTIONS(3598), + [aux_sym_cmd_identifier_token8] = ACTIONS(3598), + [aux_sym_cmd_identifier_token9] = ACTIONS(3598), + [aux_sym_cmd_identifier_token10] = ACTIONS(3598), + [aux_sym_cmd_identifier_token11] = ACTIONS(3598), + [aux_sym_cmd_identifier_token12] = ACTIONS(3598), + [aux_sym_cmd_identifier_token13] = ACTIONS(3598), + [aux_sym_cmd_identifier_token14] = ACTIONS(3598), + [aux_sym_cmd_identifier_token15] = ACTIONS(3598), + [aux_sym_cmd_identifier_token16] = ACTIONS(3598), + [aux_sym_cmd_identifier_token17] = ACTIONS(3598), + [aux_sym_cmd_identifier_token18] = ACTIONS(3598), + [aux_sym_cmd_identifier_token19] = ACTIONS(3598), + [aux_sym_cmd_identifier_token20] = ACTIONS(3598), + [aux_sym_cmd_identifier_token21] = ACTIONS(3598), + [aux_sym_cmd_identifier_token22] = ACTIONS(3598), + [aux_sym_cmd_identifier_token23] = ACTIONS(3598), + [aux_sym_cmd_identifier_token24] = ACTIONS(3598), + [aux_sym_cmd_identifier_token25] = ACTIONS(3598), + [aux_sym_cmd_identifier_token26] = ACTIONS(3598), + [aux_sym_cmd_identifier_token27] = ACTIONS(3598), + [aux_sym_cmd_identifier_token28] = ACTIONS(3598), + [aux_sym_cmd_identifier_token29] = ACTIONS(3598), + [aux_sym_cmd_identifier_token30] = ACTIONS(3598), + [aux_sym_cmd_identifier_token31] = ACTIONS(3598), + [aux_sym_cmd_identifier_token32] = ACTIONS(3598), + [aux_sym_cmd_identifier_token33] = ACTIONS(3598), + [aux_sym_cmd_identifier_token34] = ACTIONS(3598), + [aux_sym_cmd_identifier_token35] = ACTIONS(3598), + [aux_sym_cmd_identifier_token36] = ACTIONS(3598), + [aux_sym_cmd_identifier_token37] = ACTIONS(3598), + [aux_sym_cmd_identifier_token38] = ACTIONS(3598), + [aux_sym_cmd_identifier_token39] = ACTIONS(3598), + [aux_sym_cmd_identifier_token40] = ACTIONS(3598), + [sym__space] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(3598), + [anon_sym_DASH2] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_DOT_DOT] = ACTIONS(3598), + [aux_sym_expr_unary_token1] = ACTIONS(3598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3598), + [anon_sym_DOT_DOT_LT] = ACTIONS(3598), + [anon_sym_null] = ACTIONS(3598), + [anon_sym_true] = ACTIONS(3598), + [anon_sym_false] = ACTIONS(3598), + [aux_sym__val_number_decimal_token1] = ACTIONS(3598), + [aux_sym__val_number_decimal_token2] = ACTIONS(3598), + [aux_sym__val_number_decimal_token3] = ACTIONS(3598), + [aux_sym__val_number_decimal_token4] = ACTIONS(3598), + [aux_sym__val_number_token1] = ACTIONS(3598), + [aux_sym__val_number_token2] = ACTIONS(3598), + [aux_sym__val_number_token3] = ACTIONS(3598), + [aux_sym__val_number_token4] = ACTIONS(3598), + [aux_sym__val_number_token5] = ACTIONS(3598), + [aux_sym__val_number_token6] = ACTIONS(3598), + [anon_sym_0b] = ACTIONS(3598), + [anon_sym_0o] = ACTIONS(3598), + [anon_sym_0x] = ACTIONS(3598), + [sym_val_date] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym__str_single_quotes] = ACTIONS(3598), + [sym__str_back_ticks] = ACTIONS(3598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [aux_sym_env_var_token1] = ACTIONS(3598), + [anon_sym_CARET] = ACTIONS(3598), + [aux_sym_command_token1] = ACTIONS(3598), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3603), }, [1172] = { + [sym_env_var] = STATE(8133), [sym_comment] = STATE(1172), - [aux_sym_pipe_element_repeat1] = STATE(1174), - [aux_sym_cmd_identifier_token1] = ACTIONS(3583), - [aux_sym_cmd_identifier_token2] = ACTIONS(3583), - [aux_sym_cmd_identifier_token3] = ACTIONS(3583), - [aux_sym_cmd_identifier_token4] = ACTIONS(3583), - [aux_sym_cmd_identifier_token5] = ACTIONS(3583), - [aux_sym_cmd_identifier_token6] = ACTIONS(3583), - [aux_sym_cmd_identifier_token7] = ACTIONS(3583), - [aux_sym_cmd_identifier_token8] = ACTIONS(3583), - [aux_sym_cmd_identifier_token9] = ACTIONS(3583), - [aux_sym_cmd_identifier_token10] = ACTIONS(3583), - [aux_sym_cmd_identifier_token11] = ACTIONS(3583), - [aux_sym_cmd_identifier_token12] = ACTIONS(3583), - [aux_sym_cmd_identifier_token13] = ACTIONS(3583), - [aux_sym_cmd_identifier_token14] = ACTIONS(3583), - [aux_sym_cmd_identifier_token15] = ACTIONS(3583), - [aux_sym_cmd_identifier_token16] = ACTIONS(3583), - [aux_sym_cmd_identifier_token17] = ACTIONS(3583), - [aux_sym_cmd_identifier_token18] = ACTIONS(3583), - [aux_sym_cmd_identifier_token19] = ACTIONS(3583), - [aux_sym_cmd_identifier_token20] = ACTIONS(3583), - [aux_sym_cmd_identifier_token21] = ACTIONS(3583), - [aux_sym_cmd_identifier_token22] = ACTIONS(3583), - [aux_sym_cmd_identifier_token23] = ACTIONS(3583), - [aux_sym_cmd_identifier_token24] = ACTIONS(3583), - [aux_sym_cmd_identifier_token25] = ACTIONS(3583), - [aux_sym_cmd_identifier_token26] = ACTIONS(3583), - [aux_sym_cmd_identifier_token27] = ACTIONS(3583), - [aux_sym_cmd_identifier_token28] = ACTIONS(3583), - [aux_sym_cmd_identifier_token29] = ACTIONS(3583), - [aux_sym_cmd_identifier_token30] = ACTIONS(3583), - [aux_sym_cmd_identifier_token31] = ACTIONS(3583), - [aux_sym_cmd_identifier_token32] = ACTIONS(3583), - [aux_sym_cmd_identifier_token33] = ACTIONS(3583), - [aux_sym_cmd_identifier_token34] = ACTIONS(3583), - [aux_sym_cmd_identifier_token35] = ACTIONS(3583), - [aux_sym_cmd_identifier_token36] = ACTIONS(3583), - [aux_sym_cmd_identifier_token37] = ACTIONS(3583), - [aux_sym_cmd_identifier_token38] = ACTIONS(3583), - [aux_sym_cmd_identifier_token39] = ACTIONS(3583), - [aux_sym_cmd_identifier_token40] = ACTIONS(3583), - [sym__space] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3583), - [anon_sym_LPAREN] = ACTIONS(3583), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_DASH2] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3583), - [anon_sym_DOT_DOT] = ACTIONS(3583), - [aux_sym_expr_unary_token1] = ACTIONS(3583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3583), - [anon_sym_DOT_DOT_LT] = ACTIONS(3583), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_true] = ACTIONS(3583), - [anon_sym_false] = ACTIONS(3583), - [aux_sym__val_number_decimal_token1] = ACTIONS(3583), - [aux_sym__val_number_decimal_token2] = ACTIONS(3583), - [aux_sym__val_number_decimal_token3] = ACTIONS(3583), - [aux_sym__val_number_decimal_token4] = ACTIONS(3583), - [aux_sym__val_number_token1] = ACTIONS(3583), - [aux_sym__val_number_token2] = ACTIONS(3583), - [aux_sym__val_number_token3] = ACTIONS(3583), - [aux_sym__val_number_token4] = ACTIONS(3583), - [aux_sym__val_number_token5] = ACTIONS(3583), - [aux_sym__val_number_token6] = ACTIONS(3583), - [anon_sym_0b] = ACTIONS(3583), - [anon_sym_0o] = ACTIONS(3583), - [anon_sym_0x] = ACTIONS(3583), - [sym_val_date] = ACTIONS(3583), - [anon_sym_DQUOTE] = ACTIONS(3583), - [sym__str_single_quotes] = ACTIONS(3583), - [sym__str_back_ticks] = ACTIONS(3583), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3583), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3583), - [aux_sym_env_var_token1] = ACTIONS(3583), - [anon_sym_CARET] = ACTIONS(3583), - [aux_sym_command_token1] = ACTIONS(3583), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3587), + [aux_sym_pipe_element_repeat2] = STATE(1172), + [aux_sym_cmd_identifier_token1] = ACTIONS(3589), + [aux_sym_cmd_identifier_token2] = ACTIONS(3593), + [aux_sym_cmd_identifier_token3] = ACTIONS(3593), + [aux_sym_cmd_identifier_token4] = ACTIONS(3593), + [aux_sym_cmd_identifier_token5] = ACTIONS(3593), + [aux_sym_cmd_identifier_token6] = ACTIONS(3593), + [aux_sym_cmd_identifier_token7] = ACTIONS(3593), + [aux_sym_cmd_identifier_token8] = ACTIONS(3593), + [aux_sym_cmd_identifier_token9] = ACTIONS(3589), + [aux_sym_cmd_identifier_token10] = ACTIONS(3593), + [aux_sym_cmd_identifier_token11] = ACTIONS(3593), + [aux_sym_cmd_identifier_token12] = ACTIONS(3593), + [aux_sym_cmd_identifier_token13] = ACTIONS(3589), + [aux_sym_cmd_identifier_token14] = ACTIONS(3593), + [aux_sym_cmd_identifier_token15] = ACTIONS(3589), + [aux_sym_cmd_identifier_token16] = ACTIONS(3593), + [aux_sym_cmd_identifier_token17] = ACTIONS(3593), + [aux_sym_cmd_identifier_token18] = ACTIONS(3589), + [aux_sym_cmd_identifier_token19] = ACTIONS(3593), + [aux_sym_cmd_identifier_token20] = ACTIONS(3593), + [aux_sym_cmd_identifier_token21] = ACTIONS(3593), + [aux_sym_cmd_identifier_token22] = ACTIONS(3593), + [aux_sym_cmd_identifier_token23] = ACTIONS(3593), + [aux_sym_cmd_identifier_token24] = ACTIONS(3593), + [aux_sym_cmd_identifier_token25] = ACTIONS(3593), + [aux_sym_cmd_identifier_token26] = ACTIONS(3593), + [aux_sym_cmd_identifier_token27] = ACTIONS(3593), + [aux_sym_cmd_identifier_token28] = ACTIONS(3593), + [aux_sym_cmd_identifier_token29] = ACTIONS(3593), + [aux_sym_cmd_identifier_token30] = ACTIONS(3593), + [aux_sym_cmd_identifier_token31] = ACTIONS(3593), + [aux_sym_cmd_identifier_token32] = ACTIONS(3589), + [aux_sym_cmd_identifier_token33] = ACTIONS(3593), + [aux_sym_cmd_identifier_token34] = ACTIONS(3589), + [aux_sym_cmd_identifier_token35] = ACTIONS(3593), + [aux_sym_cmd_identifier_token36] = ACTIONS(3593), + [aux_sym_cmd_identifier_token37] = ACTIONS(3593), + [aux_sym_cmd_identifier_token38] = ACTIONS(3589), + [aux_sym_cmd_identifier_token39] = ACTIONS(3593), + [aux_sym_cmd_identifier_token40] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_LPAREN] = ACTIONS(3593), + [anon_sym_DOLLAR] = ACTIONS(3589), + [anon_sym_DASH2] = ACTIONS(3589), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_DOT_DOT] = ACTIONS(3589), + [aux_sym_expr_unary_token1] = ACTIONS(3593), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3593), + [anon_sym_DOT_DOT_LT] = ACTIONS(3593), + [anon_sym_null] = ACTIONS(3589), + [anon_sym_true] = ACTIONS(3589), + [anon_sym_false] = ACTIONS(3589), + [aux_sym__val_number_decimal_token1] = ACTIONS(3589), + [aux_sym__val_number_decimal_token2] = ACTIONS(3593), + [aux_sym__val_number_decimal_token3] = ACTIONS(3593), + [aux_sym__val_number_decimal_token4] = ACTIONS(3593), + [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(3589), + [aux_sym__val_number_token5] = ACTIONS(3589), + [aux_sym__val_number_token6] = ACTIONS(3589), + [anon_sym_0b] = ACTIONS(3589), + [anon_sym_0o] = ACTIONS(3589), + [anon_sym_0x] = ACTIONS(3589), + [sym_val_date] = ACTIONS(3593), + [anon_sym_DQUOTE] = ACTIONS(3593), + [sym__str_single_quotes] = ACTIONS(3593), + [sym__str_back_ticks] = ACTIONS(3593), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3593), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3593), + [aux_sym_env_var_token1] = ACTIONS(3605), + [anon_sym_CARET] = ACTIONS(3593), + [aux_sym_command_token1] = ACTIONS(3593), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3593), }, [1173] = { [sym_comment] = STATE(1173), - [aux_sym_shebang_repeat1] = STATE(1173), - [aux_sym_cmd_identifier_token1] = ACTIONS(1312), - [aux_sym_cmd_identifier_token2] = ACTIONS(1314), - [aux_sym_cmd_identifier_token3] = ACTIONS(1314), - [aux_sym_cmd_identifier_token4] = ACTIONS(1314), - [aux_sym_cmd_identifier_token5] = ACTIONS(1314), - [aux_sym_cmd_identifier_token6] = ACTIONS(1314), - [aux_sym_cmd_identifier_token7] = ACTIONS(1314), - [aux_sym_cmd_identifier_token8] = ACTIONS(1314), - [aux_sym_cmd_identifier_token9] = ACTIONS(1312), - [aux_sym_cmd_identifier_token10] = ACTIONS(1314), - [aux_sym_cmd_identifier_token11] = ACTIONS(1314), - [aux_sym_cmd_identifier_token12] = ACTIONS(1314), - [aux_sym_cmd_identifier_token13] = ACTIONS(1312), - [aux_sym_cmd_identifier_token14] = ACTIONS(1314), - [aux_sym_cmd_identifier_token15] = ACTIONS(1312), - [aux_sym_cmd_identifier_token16] = ACTIONS(1314), - [aux_sym_cmd_identifier_token17] = ACTIONS(1314), - [aux_sym_cmd_identifier_token18] = ACTIONS(1312), - [aux_sym_cmd_identifier_token19] = ACTIONS(1314), - [aux_sym_cmd_identifier_token20] = ACTIONS(1314), - [aux_sym_cmd_identifier_token21] = ACTIONS(1314), - [aux_sym_cmd_identifier_token22] = ACTIONS(1314), - [aux_sym_cmd_identifier_token23] = ACTIONS(1314), - [aux_sym_cmd_identifier_token24] = ACTIONS(1314), - [aux_sym_cmd_identifier_token25] = ACTIONS(1314), - [aux_sym_cmd_identifier_token26] = ACTIONS(1314), - [aux_sym_cmd_identifier_token27] = ACTIONS(1314), - [aux_sym_cmd_identifier_token28] = ACTIONS(1314), - [aux_sym_cmd_identifier_token29] = ACTIONS(1314), - [aux_sym_cmd_identifier_token30] = ACTIONS(1314), - [aux_sym_cmd_identifier_token31] = ACTIONS(1314), - [aux_sym_cmd_identifier_token32] = ACTIONS(1312), - [aux_sym_cmd_identifier_token33] = ACTIONS(1314), - [aux_sym_cmd_identifier_token34] = ACTIONS(1312), - [aux_sym_cmd_identifier_token35] = ACTIONS(1314), - [aux_sym_cmd_identifier_token36] = ACTIONS(1314), - [aux_sym_cmd_identifier_token37] = ACTIONS(1314), - [aux_sym_cmd_identifier_token38] = ACTIONS(1312), - [aux_sym_cmd_identifier_token39] = ACTIONS(1314), - [aux_sym_cmd_identifier_token40] = ACTIONS(1314), - [sym__newline] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_DASH2] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [aux_sym_expr_unary_token1] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1314), - [anon_sym_DOT_DOT_LT] = ACTIONS(1314), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym__val_number_decimal_token1] = ACTIONS(1312), - [aux_sym__val_number_decimal_token2] = ACTIONS(1314), - [aux_sym__val_number_decimal_token3] = ACTIONS(1314), - [aux_sym__val_number_decimal_token4] = ACTIONS(1314), - [aux_sym__val_number_token1] = ACTIONS(1314), - [aux_sym__val_number_token2] = ACTIONS(1314), - [aux_sym__val_number_token3] = ACTIONS(1314), - [aux_sym__val_number_token4] = ACTIONS(1312), - [aux_sym__val_number_token5] = ACTIONS(1312), - [aux_sym__val_number_token6] = ACTIONS(1312), - [anon_sym_0b] = ACTIONS(1312), - [anon_sym_0o] = ACTIONS(1312), - [anon_sym_0x] = ACTIONS(1312), - [sym_val_date] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym__str_single_quotes] = ACTIONS(1314), - [sym__str_back_ticks] = ACTIONS(1314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1314), - [aux_sym_command_token1] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1314), + [aux_sym_cmd_identifier_token1] = ACTIONS(3608), + [aux_sym_cmd_identifier_token2] = ACTIONS(3608), + [aux_sym_cmd_identifier_token3] = ACTIONS(3608), + [aux_sym_cmd_identifier_token4] = ACTIONS(3608), + [aux_sym_cmd_identifier_token5] = ACTIONS(3608), + [aux_sym_cmd_identifier_token6] = ACTIONS(3608), + [aux_sym_cmd_identifier_token7] = ACTIONS(3608), + [aux_sym_cmd_identifier_token8] = ACTIONS(3608), + [aux_sym_cmd_identifier_token9] = ACTIONS(3608), + [aux_sym_cmd_identifier_token10] = ACTIONS(3608), + [aux_sym_cmd_identifier_token11] = ACTIONS(3608), + [aux_sym_cmd_identifier_token12] = ACTIONS(3608), + [aux_sym_cmd_identifier_token13] = ACTIONS(3608), + [aux_sym_cmd_identifier_token14] = ACTIONS(3608), + [aux_sym_cmd_identifier_token15] = ACTIONS(3608), + [aux_sym_cmd_identifier_token16] = ACTIONS(3608), + [aux_sym_cmd_identifier_token17] = ACTIONS(3608), + [aux_sym_cmd_identifier_token18] = ACTIONS(3608), + [aux_sym_cmd_identifier_token19] = ACTIONS(3608), + [aux_sym_cmd_identifier_token20] = ACTIONS(3608), + [aux_sym_cmd_identifier_token21] = ACTIONS(3608), + [aux_sym_cmd_identifier_token22] = ACTIONS(3608), + [aux_sym_cmd_identifier_token23] = ACTIONS(3608), + [aux_sym_cmd_identifier_token24] = ACTIONS(3608), + [aux_sym_cmd_identifier_token25] = ACTIONS(3608), + [aux_sym_cmd_identifier_token26] = ACTIONS(3608), + [aux_sym_cmd_identifier_token27] = ACTIONS(3608), + [aux_sym_cmd_identifier_token28] = ACTIONS(3608), + [aux_sym_cmd_identifier_token29] = ACTIONS(3608), + [aux_sym_cmd_identifier_token30] = ACTIONS(3608), + [aux_sym_cmd_identifier_token31] = ACTIONS(3608), + [aux_sym_cmd_identifier_token32] = ACTIONS(3608), + [aux_sym_cmd_identifier_token33] = ACTIONS(3608), + [aux_sym_cmd_identifier_token34] = ACTIONS(3608), + [aux_sym_cmd_identifier_token35] = ACTIONS(3608), + [aux_sym_cmd_identifier_token36] = ACTIONS(3608), + [aux_sym_cmd_identifier_token37] = ACTIONS(3608), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3608), + [sym__space] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_DOLLAR] = ACTIONS(3608), + [anon_sym_DASH2] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_DOT_DOT] = ACTIONS(3608), + [aux_sym_expr_unary_token1] = ACTIONS(3608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3608), + [anon_sym_DOT_DOT_LT] = ACTIONS(3608), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_true] = ACTIONS(3608), + [anon_sym_false] = ACTIONS(3608), + [aux_sym__val_number_decimal_token1] = ACTIONS(3608), + [aux_sym__val_number_decimal_token2] = ACTIONS(3608), + [aux_sym__val_number_decimal_token3] = ACTIONS(3608), + [aux_sym__val_number_decimal_token4] = ACTIONS(3608), + [aux_sym__val_number_token1] = ACTIONS(3608), + [aux_sym__val_number_token2] = ACTIONS(3608), + [aux_sym__val_number_token3] = ACTIONS(3608), + [aux_sym__val_number_token4] = ACTIONS(3608), + [aux_sym__val_number_token5] = ACTIONS(3608), + [aux_sym__val_number_token6] = ACTIONS(3608), + [anon_sym_0b] = ACTIONS(3608), + [anon_sym_0o] = ACTIONS(3608), + [anon_sym_0x] = ACTIONS(3608), + [sym_val_date] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [sym__str_single_quotes] = ACTIONS(3608), + [sym__str_back_ticks] = ACTIONS(3608), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3608), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), + [aux_sym_env_var_token1] = ACTIONS(3608), + [anon_sym_CARET] = ACTIONS(3608), + [aux_sym_command_token1] = ACTIONS(3608), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3610), }, [1174] = { + [sym_env_var] = STATE(7562), [sym_comment] = STATE(1174), - [aux_sym_pipe_element_repeat1] = STATE(1174), - [aux_sym_cmd_identifier_token1] = ACTIONS(3592), - [aux_sym_cmd_identifier_token2] = ACTIONS(3592), - [aux_sym_cmd_identifier_token3] = ACTIONS(3592), - [aux_sym_cmd_identifier_token4] = ACTIONS(3592), - [aux_sym_cmd_identifier_token5] = ACTIONS(3592), - [aux_sym_cmd_identifier_token6] = ACTIONS(3592), - [aux_sym_cmd_identifier_token7] = ACTIONS(3592), - [aux_sym_cmd_identifier_token8] = ACTIONS(3592), - [aux_sym_cmd_identifier_token9] = ACTIONS(3592), - [aux_sym_cmd_identifier_token10] = ACTIONS(3592), - [aux_sym_cmd_identifier_token11] = ACTIONS(3592), - [aux_sym_cmd_identifier_token12] = ACTIONS(3592), - [aux_sym_cmd_identifier_token13] = ACTIONS(3592), - [aux_sym_cmd_identifier_token14] = ACTIONS(3592), - [aux_sym_cmd_identifier_token15] = ACTIONS(3592), - [aux_sym_cmd_identifier_token16] = ACTIONS(3592), - [aux_sym_cmd_identifier_token17] = ACTIONS(3592), - [aux_sym_cmd_identifier_token18] = ACTIONS(3592), - [aux_sym_cmd_identifier_token19] = ACTIONS(3592), - [aux_sym_cmd_identifier_token20] = ACTIONS(3592), - [aux_sym_cmd_identifier_token21] = ACTIONS(3592), - [aux_sym_cmd_identifier_token22] = ACTIONS(3592), - [aux_sym_cmd_identifier_token23] = ACTIONS(3592), - [aux_sym_cmd_identifier_token24] = ACTIONS(3592), - [aux_sym_cmd_identifier_token25] = ACTIONS(3592), - [aux_sym_cmd_identifier_token26] = ACTIONS(3592), - [aux_sym_cmd_identifier_token27] = ACTIONS(3592), - [aux_sym_cmd_identifier_token28] = ACTIONS(3592), - [aux_sym_cmd_identifier_token29] = ACTIONS(3592), - [aux_sym_cmd_identifier_token30] = ACTIONS(3592), - [aux_sym_cmd_identifier_token31] = ACTIONS(3592), - [aux_sym_cmd_identifier_token32] = ACTIONS(3592), - [aux_sym_cmd_identifier_token33] = ACTIONS(3592), - [aux_sym_cmd_identifier_token34] = ACTIONS(3592), - [aux_sym_cmd_identifier_token35] = ACTIONS(3592), - [aux_sym_cmd_identifier_token36] = ACTIONS(3592), - [aux_sym_cmd_identifier_token37] = ACTIONS(3592), - [aux_sym_cmd_identifier_token38] = ACTIONS(3592), - [aux_sym_cmd_identifier_token39] = ACTIONS(3592), - [aux_sym_cmd_identifier_token40] = ACTIONS(3592), - [sym__space] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3592), - [anon_sym_DASH2] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_DOT_DOT] = ACTIONS(3592), - [aux_sym_expr_unary_token1] = ACTIONS(3592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3592), - [anon_sym_DOT_DOT_LT] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3592), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [aux_sym__val_number_decimal_token1] = ACTIONS(3592), - [aux_sym__val_number_decimal_token2] = ACTIONS(3592), - [aux_sym__val_number_decimal_token3] = ACTIONS(3592), - [aux_sym__val_number_decimal_token4] = ACTIONS(3592), - [aux_sym__val_number_token1] = ACTIONS(3592), - [aux_sym__val_number_token2] = ACTIONS(3592), - [aux_sym__val_number_token3] = ACTIONS(3592), - [aux_sym__val_number_token4] = ACTIONS(3592), - [aux_sym__val_number_token5] = ACTIONS(3592), - [aux_sym__val_number_token6] = ACTIONS(3592), - [anon_sym_0b] = ACTIONS(3592), - [anon_sym_0o] = ACTIONS(3592), - [anon_sym_0x] = ACTIONS(3592), - [sym_val_date] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3592), - [sym__str_single_quotes] = ACTIONS(3592), - [sym__str_back_ticks] = ACTIONS(3592), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), - [aux_sym_env_var_token1] = ACTIONS(3592), - [anon_sym_CARET] = ACTIONS(3592), - [aux_sym_command_token1] = ACTIONS(3592), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3597), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), + [aux_sym_cmd_identifier_token1] = ACTIONS(3569), + [aux_sym_cmd_identifier_token2] = ACTIONS(3575), + [aux_sym_cmd_identifier_token3] = ACTIONS(3575), + [aux_sym_cmd_identifier_token4] = ACTIONS(3575), + [aux_sym_cmd_identifier_token5] = ACTIONS(3575), + [aux_sym_cmd_identifier_token6] = ACTIONS(3575), + [aux_sym_cmd_identifier_token7] = ACTIONS(3575), + [aux_sym_cmd_identifier_token8] = ACTIONS(3575), + [aux_sym_cmd_identifier_token9] = ACTIONS(3569), + [aux_sym_cmd_identifier_token10] = ACTIONS(3575), + [aux_sym_cmd_identifier_token11] = ACTIONS(3575), + [aux_sym_cmd_identifier_token12] = ACTIONS(3575), + [aux_sym_cmd_identifier_token13] = ACTIONS(3569), + [aux_sym_cmd_identifier_token14] = ACTIONS(3575), + [aux_sym_cmd_identifier_token15] = ACTIONS(3569), + [aux_sym_cmd_identifier_token16] = ACTIONS(3575), + [aux_sym_cmd_identifier_token17] = ACTIONS(3575), + [aux_sym_cmd_identifier_token18] = ACTIONS(3569), + [aux_sym_cmd_identifier_token19] = ACTIONS(3575), + [aux_sym_cmd_identifier_token20] = ACTIONS(3575), + [aux_sym_cmd_identifier_token21] = ACTIONS(3575), + [aux_sym_cmd_identifier_token22] = ACTIONS(3575), + [aux_sym_cmd_identifier_token23] = ACTIONS(3575), + [aux_sym_cmd_identifier_token24] = ACTIONS(3575), + [aux_sym_cmd_identifier_token25] = ACTIONS(3575), + [aux_sym_cmd_identifier_token26] = ACTIONS(3575), + [aux_sym_cmd_identifier_token27] = ACTIONS(3575), + [aux_sym_cmd_identifier_token28] = ACTIONS(3575), + [aux_sym_cmd_identifier_token29] = ACTIONS(3575), + [aux_sym_cmd_identifier_token30] = ACTIONS(3575), + [aux_sym_cmd_identifier_token31] = ACTIONS(3575), + [aux_sym_cmd_identifier_token32] = ACTIONS(3569), + [aux_sym_cmd_identifier_token33] = ACTIONS(3575), + [aux_sym_cmd_identifier_token34] = ACTIONS(3569), + [aux_sym_cmd_identifier_token35] = ACTIONS(3575), + [aux_sym_cmd_identifier_token36] = ACTIONS(3575), + [aux_sym_cmd_identifier_token37] = ACTIONS(3575), + [aux_sym_cmd_identifier_token38] = ACTIONS(3569), + [aux_sym_cmd_identifier_token39] = ACTIONS(3575), + [aux_sym_cmd_identifier_token40] = ACTIONS(3575), + [anon_sym_LBRACK] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_DOLLAR] = ACTIONS(3569), + [anon_sym_DASH2] = ACTIONS(3569), + [anon_sym_LBRACE] = ACTIONS(3575), + [anon_sym_DOT_DOT] = ACTIONS(3569), + [aux_sym_expr_unary_token1] = ACTIONS(3575), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3575), + [anon_sym_DOT_DOT_LT] = ACTIONS(3575), + [anon_sym_null] = ACTIONS(3569), + [anon_sym_true] = ACTIONS(3569), + [anon_sym_false] = ACTIONS(3569), + [aux_sym__val_number_decimal_token1] = ACTIONS(3569), + [aux_sym__val_number_decimal_token2] = ACTIONS(3575), + [aux_sym__val_number_decimal_token3] = ACTIONS(3575), + [aux_sym__val_number_decimal_token4] = ACTIONS(3575), + [aux_sym__val_number_token1] = ACTIONS(3575), + [aux_sym__val_number_token2] = ACTIONS(3575), + [aux_sym__val_number_token3] = ACTIONS(3575), + [aux_sym__val_number_token4] = ACTIONS(3569), + [aux_sym__val_number_token5] = ACTIONS(3569), + [aux_sym__val_number_token6] = ACTIONS(3569), + [anon_sym_0b] = ACTIONS(3569), + [anon_sym_0o] = ACTIONS(3569), + [anon_sym_0x] = ACTIONS(3569), + [sym_val_date] = ACTIONS(3575), + [anon_sym_DQUOTE] = ACTIONS(3575), + [sym__str_single_quotes] = ACTIONS(3575), + [sym__str_back_ticks] = ACTIONS(3575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3575), + [aux_sym_env_var_token1] = ACTIONS(3612), + [anon_sym_CARET] = ACTIONS(3575), + [aux_sym_command_token1] = ACTIONS(3575), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3575), }, [1175] = { - [sym_env_var] = STATE(7468), + [sym_ctrl_do] = STATE(5075), + [sym_ctrl_if] = STATE(5075), + [sym_ctrl_match] = STATE(5075), + [sym_ctrl_try] = STATE(5075), + [sym__expression] = STATE(5075), + [sym_expr_unary] = STATE(2212), + [sym__expr_unary_minus] = STATE(2213), + [sym_expr_binary] = STATE(2212), + [sym__expr_binary_expression] = STATE(4212), + [sym_expr_parenthesized] = STATE(2159), + [sym_val_range] = STATE(2212), + [sym__value] = STATE(2212), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(2225), + [sym_val_variable] = STATE(2027), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(3307), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), [sym_comment] = STATE(1175), - [aux_sym_pipe_element_repeat2] = STATE(1175), - [aux_sym_cmd_identifier_token1] = ACTIONS(3583), - [aux_sym_cmd_identifier_token2] = ACTIONS(3587), - [aux_sym_cmd_identifier_token3] = ACTIONS(3587), - [aux_sym_cmd_identifier_token4] = ACTIONS(3587), - [aux_sym_cmd_identifier_token5] = ACTIONS(3587), - [aux_sym_cmd_identifier_token6] = ACTIONS(3587), - [aux_sym_cmd_identifier_token7] = ACTIONS(3587), - [aux_sym_cmd_identifier_token8] = ACTIONS(3587), - [aux_sym_cmd_identifier_token9] = ACTIONS(3583), - [aux_sym_cmd_identifier_token10] = ACTIONS(3587), - [aux_sym_cmd_identifier_token11] = ACTIONS(3587), - [aux_sym_cmd_identifier_token12] = ACTIONS(3587), - [aux_sym_cmd_identifier_token13] = ACTIONS(3583), - [aux_sym_cmd_identifier_token14] = ACTIONS(3587), - [aux_sym_cmd_identifier_token15] = ACTIONS(3583), - [aux_sym_cmd_identifier_token16] = ACTIONS(3587), - [aux_sym_cmd_identifier_token17] = ACTIONS(3587), - [aux_sym_cmd_identifier_token18] = ACTIONS(3583), - [aux_sym_cmd_identifier_token19] = ACTIONS(3587), - [aux_sym_cmd_identifier_token20] = ACTIONS(3587), - [aux_sym_cmd_identifier_token21] = ACTIONS(3587), - [aux_sym_cmd_identifier_token22] = ACTIONS(3587), - [aux_sym_cmd_identifier_token23] = ACTIONS(3587), - [aux_sym_cmd_identifier_token24] = ACTIONS(3587), - [aux_sym_cmd_identifier_token25] = ACTIONS(3587), - [aux_sym_cmd_identifier_token26] = ACTIONS(3587), - [aux_sym_cmd_identifier_token27] = ACTIONS(3587), - [aux_sym_cmd_identifier_token28] = ACTIONS(3587), - [aux_sym_cmd_identifier_token29] = ACTIONS(3587), - [aux_sym_cmd_identifier_token30] = ACTIONS(3587), - [aux_sym_cmd_identifier_token31] = ACTIONS(3587), - [aux_sym_cmd_identifier_token32] = ACTIONS(3583), - [aux_sym_cmd_identifier_token33] = ACTIONS(3587), - [aux_sym_cmd_identifier_token34] = ACTIONS(3583), - [aux_sym_cmd_identifier_token35] = ACTIONS(3587), - [aux_sym_cmd_identifier_token36] = ACTIONS(3587), - [aux_sym_cmd_identifier_token37] = ACTIONS(3587), - [aux_sym_cmd_identifier_token38] = ACTIONS(3583), - [aux_sym_cmd_identifier_token39] = ACTIONS(3587), - [aux_sym_cmd_identifier_token40] = ACTIONS(3587), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3587), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_DASH2] = ACTIONS(3583), - [anon_sym_LBRACE] = ACTIONS(3587), - [anon_sym_DOT_DOT] = ACTIONS(3583), - [aux_sym_expr_unary_token1] = ACTIONS(3587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3587), - [anon_sym_DOT_DOT_LT] = ACTIONS(3587), - [anon_sym_null] = ACTIONS(3583), - [anon_sym_true] = ACTIONS(3583), - [anon_sym_false] = ACTIONS(3583), - [aux_sym__val_number_decimal_token1] = ACTIONS(3583), - [aux_sym__val_number_decimal_token2] = ACTIONS(3587), - [aux_sym__val_number_decimal_token3] = ACTIONS(3587), - [aux_sym__val_number_decimal_token4] = ACTIONS(3587), - [aux_sym__val_number_token1] = ACTIONS(3587), - [aux_sym__val_number_token2] = ACTIONS(3587), - [aux_sym__val_number_token3] = ACTIONS(3587), - [aux_sym__val_number_token4] = ACTIONS(3583), - [aux_sym__val_number_token5] = ACTIONS(3583), - [aux_sym__val_number_token6] = ACTIONS(3583), - [anon_sym_0b] = ACTIONS(3583), - [anon_sym_0o] = ACTIONS(3583), - [anon_sym_0x] = ACTIONS(3583), - [sym_val_date] = ACTIONS(3587), - [anon_sym_DQUOTE] = ACTIONS(3587), - [sym__str_single_quotes] = ACTIONS(3587), - [sym__str_back_ticks] = ACTIONS(3587), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3587), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3587), - [aux_sym_env_var_token1] = ACTIONS(3599), - [anon_sym_CARET] = ACTIONS(3587), - [aux_sym_command_token1] = ACTIONS(3587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3587), - }, - [1176] = { - [sym_env_var] = STATE(6937), - [sym_comment] = STATE(1176), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1176), - [aux_sym_cmd_identifier_token1] = ACTIONS(3571), - [aux_sym_cmd_identifier_token2] = ACTIONS(3577), - [aux_sym_cmd_identifier_token3] = ACTIONS(3577), - [aux_sym_cmd_identifier_token4] = ACTIONS(3577), - [aux_sym_cmd_identifier_token5] = ACTIONS(3577), - [aux_sym_cmd_identifier_token6] = ACTIONS(3577), - [aux_sym_cmd_identifier_token7] = ACTIONS(3577), - [aux_sym_cmd_identifier_token8] = ACTIONS(3577), - [aux_sym_cmd_identifier_token9] = ACTIONS(3571), - [aux_sym_cmd_identifier_token10] = ACTIONS(3577), - [aux_sym_cmd_identifier_token11] = ACTIONS(3577), - [aux_sym_cmd_identifier_token12] = ACTIONS(3577), - [aux_sym_cmd_identifier_token13] = ACTIONS(3571), - [aux_sym_cmd_identifier_token14] = ACTIONS(3577), - [aux_sym_cmd_identifier_token15] = ACTIONS(3571), - [aux_sym_cmd_identifier_token16] = ACTIONS(3577), - [aux_sym_cmd_identifier_token17] = ACTIONS(3577), - [aux_sym_cmd_identifier_token18] = ACTIONS(3571), - [aux_sym_cmd_identifier_token19] = ACTIONS(3577), - [aux_sym_cmd_identifier_token20] = ACTIONS(3577), - [aux_sym_cmd_identifier_token21] = ACTIONS(3577), - [aux_sym_cmd_identifier_token22] = ACTIONS(3577), - [aux_sym_cmd_identifier_token23] = ACTIONS(3577), - [aux_sym_cmd_identifier_token24] = ACTIONS(3577), - [aux_sym_cmd_identifier_token25] = ACTIONS(3577), - [aux_sym_cmd_identifier_token26] = ACTIONS(3577), - [aux_sym_cmd_identifier_token27] = ACTIONS(3577), - [aux_sym_cmd_identifier_token28] = ACTIONS(3577), - [aux_sym_cmd_identifier_token29] = ACTIONS(3577), - [aux_sym_cmd_identifier_token30] = ACTIONS(3577), - [aux_sym_cmd_identifier_token31] = ACTIONS(3577), - [aux_sym_cmd_identifier_token32] = ACTIONS(3571), - [aux_sym_cmd_identifier_token33] = ACTIONS(3577), - [aux_sym_cmd_identifier_token34] = ACTIONS(3571), - [aux_sym_cmd_identifier_token35] = ACTIONS(3577), - [aux_sym_cmd_identifier_token36] = ACTIONS(3577), - [aux_sym_cmd_identifier_token37] = ACTIONS(3577), - [aux_sym_cmd_identifier_token38] = ACTIONS(3571), - [aux_sym_cmd_identifier_token39] = ACTIONS(3577), - [aux_sym_cmd_identifier_token40] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_LPAREN] = ACTIONS(3577), - [anon_sym_DOLLAR] = ACTIONS(3571), - [anon_sym_DASH2] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_DOT_DOT] = ACTIONS(3571), - [aux_sym_expr_unary_token1] = ACTIONS(3577), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3577), - [anon_sym_DOT_DOT_LT] = ACTIONS(3577), - [anon_sym_null] = ACTIONS(3571), - [anon_sym_true] = ACTIONS(3571), - [anon_sym_false] = ACTIONS(3571), - [aux_sym__val_number_decimal_token1] = ACTIONS(3571), - [aux_sym__val_number_decimal_token2] = ACTIONS(3577), - [aux_sym__val_number_decimal_token3] = ACTIONS(3577), - [aux_sym__val_number_decimal_token4] = ACTIONS(3577), - [aux_sym__val_number_token1] = ACTIONS(3577), - [aux_sym__val_number_token2] = ACTIONS(3577), - [aux_sym__val_number_token3] = ACTIONS(3577), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), - [anon_sym_0b] = ACTIONS(3571), - [anon_sym_0o] = ACTIONS(3571), - [anon_sym_0x] = ACTIONS(3571), - [sym_val_date] = ACTIONS(3577), - [anon_sym_DQUOTE] = ACTIONS(3577), - [sym__str_single_quotes] = ACTIONS(3577), - [sym__str_back_ticks] = ACTIONS(3577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3577), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3577), - [aux_sym_env_var_token1] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3577), - [aux_sym_command_token1] = ACTIONS(3577), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3577), - }, - [1177] = { - [sym_ctrl_do] = STATE(4979), - [sym_ctrl_if] = STATE(4979), - [sym_ctrl_match] = STATE(4979), - [sym_ctrl_try] = STATE(4979), - [sym__expression] = STATE(4979), - [sym_expr_unary] = STATE(2119), - [sym__expr_unary_minus] = STATE(2120), - [sym_expr_binary] = STATE(2119), - [sym__expr_binary_expression] = STATE(3981), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(3622), - [sym__value] = STATE(2119), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(2174), - [sym_val_variable] = STATE(2074), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(3169), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_comment] = STATE(1177), - [sym__newline] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_err_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_GT_PIPE] = ACTIONS(3367), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3367), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3367), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3367), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3367), + [sym__newline] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_err_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_GT_PIPE] = ACTIONS(3485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3605), - [anon_sym_match] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3491), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3493), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [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), + [anon_sym_null] = ACTIONS(3495), + [anon_sym_true] = ACTIONS(3497), + [anon_sym_false] = ACTIONS(3497), + [aux_sym__val_number_decimal_token1] = ACTIONS(3249), + [aux_sym__val_number_decimal_token2] = ACTIONS(3251), + [aux_sym__val_number_decimal_token3] = ACTIONS(3253), + [aux_sym__val_number_decimal_token4] = ACTIONS(3255), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), @@ -200093,168 +202643,568 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [1176] = { + [sym_comment] = STATE(1176), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(3617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3619), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), + }, + [1177] = { + [sym_comment] = STATE(1177), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(3621), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3623), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), + }, [1178] = { - [sym_match_arm] = STATE(7192), - [sym_default_arm] = STATE(7192), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1178), - [aux_sym_shebang_repeat1] = STATE(1194), - [aux_sym_ctrl_match_repeat1] = STATE(1232), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(3617), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(3625), + [aux_sym__immediate_decimal_token2] = ACTIONS(3627), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(3), }, [1179] = { - [sym_expr_parenthesized] = STATE(4566), - [sym_val_range] = STATE(5067), - [sym__val_range] = STATE(7976), - [sym__val_range_with_end] = STATE(7528), - [sym__value] = STATE(5067), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4617), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4712), - [sym__str_double_quotes] = STATE(4712), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym__unquoted_in_list] = STATE(4699), - [sym__unquoted_in_list_with_expr] = STATE(5067), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_parenthesized] = STATE(4831), + [sym_val_range] = STATE(5448), + [sym__val_range] = STATE(8329), + [sym__val_range_with_end] = STATE(8057), + [sym__value] = STATE(5448), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(4961), + [sym_val_variable] = STATE(4798), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(4357), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4958), + [sym__str_double_quotes] = STATE(4958), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym__unquoted_in_record] = STATE(4957), + [sym__unquoted_in_record_with_expr] = STATE(5448), + [sym__unquoted_anonymous_prefix] = STATE(7639), [sym_comment] = STATE(1179), - [aux_sym_shebang_repeat1] = STATE(1182), - [sym__newline] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3653), - [anon_sym_DOT_DOT_LT] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_true] = ACTIONS(3657), - [anon_sym_false] = ACTIONS(3657), - [aux_sym__val_number_decimal_token1] = ACTIONS(3659), - [aux_sym__val_number_decimal_token2] = ACTIONS(3661), - [aux_sym__val_number_decimal_token3] = ACTIONS(3663), - [aux_sym__val_number_decimal_token4] = ACTIONS(3665), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(3669), - [aux_sym__val_number_token5] = ACTIONS(3669), - [aux_sym__val_number_token6] = ACTIONS(3669), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3677), - [sym__str_single_quotes] = ACTIONS(3679), - [sym__str_back_ticks] = ACTIONS(3679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3685), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3687), + [aux_sym_shebang_repeat1] = STATE(1191), + [sym__newline] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_DOT_DOT] = ACTIONS(3639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), + [anon_sym_DOT_DOT_LT] = ACTIONS(3641), + [anon_sym_null] = ACTIONS(3643), + [anon_sym_true] = ACTIONS(3645), + [anon_sym_false] = ACTIONS(3645), + [aux_sym__val_number_decimal_token1] = ACTIONS(3647), + [aux_sym__val_number_decimal_token2] = ACTIONS(3649), + [aux_sym__val_number_decimal_token3] = ACTIONS(3651), + [aux_sym__val_number_decimal_token4] = ACTIONS(3653), + [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(3657), + [aux_sym__val_number_token5] = ACTIONS(3657), + [aux_sym__val_number_token6] = ACTIONS(3657), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3665), + [sym__str_single_quotes] = ACTIONS(3667), + [sym__str_back_ticks] = ACTIONS(3667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3679), }, [1180] = { [sym_comment] = STATE(1180), + [ts_builtin_sym_end] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(3681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3683), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), + }, + [1181] = { + [sym_comment] = STATE(1181), + [ts_builtin_sym_end] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(3685), + [aux_sym__immediate_decimal_token2] = ACTIONS(3687), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(3), + }, + [1182] = { + [sym_comment] = STATE(1182), + [aux_sym_cmd_identifier_token1] = ACTIONS(1304), + [aux_sym_cmd_identifier_token2] = ACTIONS(1302), + [aux_sym_cmd_identifier_token3] = ACTIONS(1302), + [aux_sym_cmd_identifier_token4] = ACTIONS(1302), + [aux_sym_cmd_identifier_token5] = ACTIONS(1302), + [aux_sym_cmd_identifier_token6] = ACTIONS(1302), + [aux_sym_cmd_identifier_token7] = ACTIONS(1302), + [aux_sym_cmd_identifier_token8] = ACTIONS(1302), + [aux_sym_cmd_identifier_token9] = ACTIONS(1304), + [aux_sym_cmd_identifier_token10] = ACTIONS(1302), + [aux_sym_cmd_identifier_token11] = ACTIONS(1302), + [aux_sym_cmd_identifier_token12] = ACTIONS(1302), + [aux_sym_cmd_identifier_token13] = ACTIONS(1304), + [aux_sym_cmd_identifier_token14] = ACTIONS(1302), + [aux_sym_cmd_identifier_token15] = ACTIONS(1304), + [aux_sym_cmd_identifier_token16] = ACTIONS(1302), + [aux_sym_cmd_identifier_token17] = ACTIONS(1302), + [aux_sym_cmd_identifier_token18] = ACTIONS(1304), + [aux_sym_cmd_identifier_token19] = ACTIONS(1302), + [aux_sym_cmd_identifier_token20] = ACTIONS(1302), + [aux_sym_cmd_identifier_token21] = ACTIONS(1302), + [aux_sym_cmd_identifier_token22] = ACTIONS(1302), + [aux_sym_cmd_identifier_token23] = ACTIONS(1302), + [aux_sym_cmd_identifier_token24] = ACTIONS(1302), + [aux_sym_cmd_identifier_token25] = ACTIONS(1302), + [aux_sym_cmd_identifier_token26] = ACTIONS(1302), + [aux_sym_cmd_identifier_token27] = ACTIONS(1302), + [aux_sym_cmd_identifier_token28] = ACTIONS(1302), + [aux_sym_cmd_identifier_token29] = ACTIONS(1302), + [aux_sym_cmd_identifier_token30] = ACTIONS(1302), + [aux_sym_cmd_identifier_token31] = ACTIONS(1302), + [aux_sym_cmd_identifier_token32] = ACTIONS(1304), + [aux_sym_cmd_identifier_token33] = ACTIONS(1302), + [aux_sym_cmd_identifier_token34] = ACTIONS(1304), + [aux_sym_cmd_identifier_token35] = ACTIONS(1302), + [aux_sym_cmd_identifier_token36] = ACTIONS(1302), + [aux_sym_cmd_identifier_token37] = ACTIONS(1302), + [aux_sym_cmd_identifier_token38] = ACTIONS(1304), + [aux_sym_cmd_identifier_token39] = ACTIONS(1302), + [aux_sym_cmd_identifier_token40] = ACTIONS(1302), + [sym__newline] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_DASH2] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [aux_sym_expr_unary_token1] = ACTIONS(1302), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), + [anon_sym_DOT_DOT_LT] = ACTIONS(1302), + [anon_sym_null] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [aux_sym__val_number_decimal_token1] = ACTIONS(1304), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1302), + [aux_sym__val_number_decimal_token4] = ACTIONS(1302), + [aux_sym__val_number_token1] = ACTIONS(1302), + [aux_sym__val_number_token2] = ACTIONS(1302), + [aux_sym__val_number_token3] = ACTIONS(1302), + [aux_sym__val_number_token4] = ACTIONS(1304), + [aux_sym__val_number_token5] = ACTIONS(1304), + [aux_sym__val_number_token6] = ACTIONS(1304), + [anon_sym_0b] = ACTIONS(1304), + [anon_sym_0o] = ACTIONS(1304), + [anon_sym_0x] = ACTIONS(1304), + [sym_val_date] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym__str_single_quotes] = ACTIONS(1302), + [sym__str_back_ticks] = ACTIONS(1302), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), + [anon_sym_CARET] = ACTIONS(1302), + [aux_sym_command_token1] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1302), + }, + [1183] = { + [sym_comment] = STATE(1183), [aux_sym_cmd_identifier_token1] = ACTIONS(3689), [aux_sym_cmd_identifier_token2] = ACTIONS(3689), [aux_sym_cmd_identifier_token3] = ACTIONS(3689), @@ -200333,6221 +203283,6046 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(3691), }, - [1181] = { - [sym_expr_parenthesized] = STATE(4563), - [sym_val_range] = STATE(5174), - [sym__val_range] = STATE(7976), - [sym__val_range_with_end] = STATE(7528), - [sym__value] = STATE(5174), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4617), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4712), - [sym__str_double_quotes] = STATE(4712), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym__unquoted_in_list] = STATE(4684), - [sym__unquoted_in_list_with_expr] = STATE(5174), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(1181), - [aux_sym_shebang_repeat1] = STATE(1184), - [sym__newline] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3653), - [anon_sym_DOT_DOT_LT] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_true] = ACTIONS(3657), - [anon_sym_false] = ACTIONS(3657), - [aux_sym__val_number_decimal_token1] = ACTIONS(3659), - [aux_sym__val_number_decimal_token2] = ACTIONS(3661), - [aux_sym__val_number_decimal_token3] = ACTIONS(3663), - [aux_sym__val_number_decimal_token4] = ACTIONS(3665), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(3669), - [aux_sym__val_number_token5] = ACTIONS(3669), - [aux_sym__val_number_token6] = ACTIONS(3669), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3677), - [sym__str_single_quotes] = ACTIONS(3679), - [sym__str_back_ticks] = ACTIONS(3679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3685), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3687), - }, - [1182] = { - [sym_expr_parenthesized] = STATE(4524), - [sym_val_range] = STATE(5096), - [sym__val_range] = STATE(7976), - [sym__val_range_with_end] = STATE(7528), - [sym__value] = STATE(5096), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4617), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4712), - [sym__str_double_quotes] = STATE(4712), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym__unquoted_in_list] = STATE(4657), - [sym__unquoted_in_list_with_expr] = STATE(5096), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(1182), - [aux_sym_shebang_repeat1] = STATE(2970), - [sym__newline] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3653), - [anon_sym_DOT_DOT_LT] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_true] = ACTIONS(3657), - [anon_sym_false] = ACTIONS(3657), - [aux_sym__val_number_decimal_token1] = ACTIONS(3659), - [aux_sym__val_number_decimal_token2] = ACTIONS(3661), - [aux_sym__val_number_decimal_token3] = ACTIONS(3663), - [aux_sym__val_number_decimal_token4] = ACTIONS(3665), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(3669), - [aux_sym__val_number_token5] = ACTIONS(3669), - [aux_sym__val_number_token6] = ACTIONS(3669), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3677), - [sym__str_single_quotes] = ACTIONS(3679), - [sym__str_back_ticks] = ACTIONS(3679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3685), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3687), - }, - [1183] = { - [sym_comment] = STATE(1183), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1306), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1306), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1306), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1308), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), - [aux_sym_cmd_identifier_token32] = ACTIONS(1308), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [aux_sym_expr_unary_token1] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), - }, [1184] = { - [sym_expr_parenthesized] = STATE(4566), - [sym_val_range] = STATE(5067), - [sym__val_range] = STATE(7976), - [sym__val_range_with_end] = STATE(7528), - [sym__value] = STATE(5067), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4617), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(4109), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4712), - [sym__str_double_quotes] = STATE(4712), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym__unquoted_in_list] = STATE(4699), - [sym__unquoted_in_list_with_expr] = STATE(5067), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_match_arm] = STATE(7745), + [sym_default_arm] = STATE(7745), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1184), - [aux_sym_shebang_repeat1] = STATE(2970), - [sym__newline] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3643), - [anon_sym_LPAREN] = ACTIONS(3645), - [anon_sym_DOLLAR] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3649), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3653), - [anon_sym_DOT_DOT_LT] = ACTIONS(3653), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_true] = ACTIONS(3657), - [anon_sym_false] = ACTIONS(3657), - [aux_sym__val_number_decimal_token1] = ACTIONS(3659), - [aux_sym__val_number_decimal_token2] = ACTIONS(3661), - [aux_sym__val_number_decimal_token3] = ACTIONS(3663), - [aux_sym__val_number_decimal_token4] = ACTIONS(3665), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(3669), - [aux_sym__val_number_token5] = ACTIONS(3669), - [aux_sym__val_number_token6] = ACTIONS(3669), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(3675), - [anon_sym_DQUOTE] = ACTIONS(3677), - [sym__str_single_quotes] = ACTIONS(3679), - [sym__str_back_ticks] = ACTIONS(3679), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3685), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3687), + [aux_sym_shebang_repeat1] = STATE(1193), + [aux_sym_ctrl_match_repeat1] = STATE(1242), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3701), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1185] = { [sym_comment] = STATE(1185), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(3693), - [aux_sym__immediate_decimal_token2] = ACTIONS(3695), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(3725), + [aux_sym__immediate_decimal_token2] = ACTIONS(3727), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(3), }, [1186] = { - [sym_match_arm] = STATE(7330), - [sym_default_arm] = STATE(7330), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_expr_parenthesized] = STATE(4864), + [sym_val_range] = STATE(5343), + [sym__val_range] = STATE(8329), + [sym__val_range_with_end] = STATE(8057), + [sym__value] = STATE(5343), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(4961), + [sym_val_variable] = STATE(4798), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(4357), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4958), + [sym__str_double_quotes] = STATE(4958), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym__unquoted_in_record] = STATE(4924), + [sym__unquoted_in_record_with_expr] = STATE(5343), + [sym__unquoted_anonymous_prefix] = STATE(7639), [sym_comment] = STATE(1186), - [aux_sym_shebang_repeat1] = STATE(1200), - [aux_sym_ctrl_match_repeat1] = STATE(1243), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(3697), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [aux_sym_shebang_repeat1] = STATE(1187), + [sym__newline] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_DOT_DOT] = ACTIONS(3639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), + [anon_sym_DOT_DOT_LT] = ACTIONS(3641), + [anon_sym_null] = ACTIONS(3643), + [anon_sym_true] = ACTIONS(3645), + [anon_sym_false] = ACTIONS(3645), + [aux_sym__val_number_decimal_token1] = ACTIONS(3647), + [aux_sym__val_number_decimal_token2] = ACTIONS(3649), + [aux_sym__val_number_decimal_token3] = ACTIONS(3651), + [aux_sym__val_number_decimal_token4] = ACTIONS(3653), + [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(3657), + [aux_sym__val_number_token5] = ACTIONS(3657), + [aux_sym__val_number_token6] = ACTIONS(3657), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3665), + [sym__str_single_quotes] = ACTIONS(3667), + [sym__str_back_ticks] = ACTIONS(3667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3679), + }, + [1187] = { + [sym_expr_parenthesized] = STATE(4786), + [sym_val_range] = STATE(5442), + [sym__val_range] = STATE(8329), + [sym__val_range_with_end] = STATE(8057), + [sym__value] = STATE(5442), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(4961), + [sym_val_variable] = STATE(4798), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(4357), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4958), + [sym__str_double_quotes] = STATE(4958), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym__unquoted_in_record] = STATE(4919), + [sym__unquoted_in_record_with_expr] = STATE(5442), + [sym__unquoted_anonymous_prefix] = STATE(7639), + [sym_comment] = STATE(1187), + [aux_sym_shebang_repeat1] = STATE(3113), + [sym__newline] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_DOT_DOT] = ACTIONS(3639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), + [anon_sym_DOT_DOT_LT] = ACTIONS(3641), + [anon_sym_null] = ACTIONS(3643), + [anon_sym_true] = ACTIONS(3645), + [anon_sym_false] = ACTIONS(3645), + [aux_sym__val_number_decimal_token1] = ACTIONS(3647), + [aux_sym__val_number_decimal_token2] = ACTIONS(3649), + [aux_sym__val_number_decimal_token3] = ACTIONS(3651), + [aux_sym__val_number_decimal_token4] = ACTIONS(3653), + [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(3657), + [aux_sym__val_number_token5] = ACTIONS(3657), + [aux_sym__val_number_token6] = ACTIONS(3657), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3665), + [sym__str_single_quotes] = ACTIONS(3667), + [sym__str_back_ticks] = ACTIONS(3667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3679), + }, + [1188] = { + [sym_match_arm] = STATE(7505), + [sym_default_arm] = STATE(7505), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1188), + [aux_sym_shebang_repeat1] = STATE(1194), + [aux_sym_ctrl_match_repeat1] = STATE(1232), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3729), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1187] = { - [sym_comment] = STATE(1187), - [ts_builtin_sym_end] = ACTIONS(1639), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(3699), - [aux_sym__immediate_decimal_token2] = ACTIONS(3701), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), - }, - [1188] = { - [sym_comment] = STATE(1188), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(3703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3705), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(3), - }, [1189] = { + [sym_match_arm] = STATE(7633), + [sym_default_arm] = STATE(7633), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1189), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(3707), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3709), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(3), - }, - [1190] = { - [sym_match_arm] = STATE(7339), - [sym_default_arm] = STATE(7339), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1190), - [aux_sym_shebang_repeat1] = STATE(1204), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(3711), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [aux_sym_shebang_repeat1] = STATE(1199), + [aux_sym_ctrl_match_repeat1] = STATE(1233), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3731), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1191] = { - [sym_match_arm] = STATE(6935), - [sym_default_arm] = STATE(6935), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1191), - [aux_sym_shebang_repeat1] = STATE(1197), - [aux_sym_ctrl_match_repeat1] = STATE(1250), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(3713), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [1190] = { + [sym_match_arm] = STATE(7634), + [sym_default_arm] = STATE(7634), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1190), + [aux_sym_shebang_repeat1] = STATE(1200), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3733), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, + [1191] = { + [sym_expr_parenthesized] = STATE(4864), + [sym_val_range] = STATE(5343), + [sym__val_range] = STATE(8329), + [sym__val_range_with_end] = STATE(8057), + [sym__value] = STATE(5343), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(4961), + [sym_val_variable] = STATE(4798), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(4357), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4958), + [sym__str_double_quotes] = STATE(4958), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym__unquoted_in_record] = STATE(4924), + [sym__unquoted_in_record_with_expr] = STATE(5343), + [sym__unquoted_anonymous_prefix] = STATE(7639), + [sym_comment] = STATE(1191), + [aux_sym_shebang_repeat1] = STATE(3113), + [sym__newline] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3635), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_DOT_DOT] = ACTIONS(3639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), + [anon_sym_DOT_DOT_LT] = ACTIONS(3641), + [anon_sym_null] = ACTIONS(3643), + [anon_sym_true] = ACTIONS(3645), + [anon_sym_false] = ACTIONS(3645), + [aux_sym__val_number_decimal_token1] = ACTIONS(3647), + [aux_sym__val_number_decimal_token2] = ACTIONS(3649), + [aux_sym__val_number_decimal_token3] = ACTIONS(3651), + [aux_sym__val_number_decimal_token4] = ACTIONS(3653), + [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(3657), + [aux_sym__val_number_token5] = ACTIONS(3657), + [aux_sym__val_number_token6] = ACTIONS(3657), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(3663), + [anon_sym_DQUOTE] = ACTIONS(3665), + [sym__str_single_quotes] = ACTIONS(3667), + [sym__str_back_ticks] = ACTIONS(3667), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3679), + }, [1192] = { [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(1647), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(3715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3717), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3735), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), }, [1193] = { + [sym_match_arm] = STATE(7957), + [sym_default_arm] = STATE(7957), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1193), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(3719), - [aux_sym__immediate_decimal_token2] = ACTIONS(3721), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3196), + [aux_sym_ctrl_match_repeat1] = STATE(1246), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1194] = { - [sym_match_arm] = STATE(7311), - [sym_default_arm] = STATE(7311), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_match_arm] = STATE(7802), + [sym_default_arm] = STATE(7802), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1194), - [aux_sym_shebang_repeat1] = STATE(3094), - [aux_sym_ctrl_match_repeat1] = STATE(1248), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [aux_sym_shebang_repeat1] = STATE(3196), + [aux_sym_ctrl_match_repeat1] = STATE(1244), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1195] = { [sym_comment] = STATE(1195), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3705), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3737), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), }, [1196] = { [sym_comment] = STATE(1196), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(3723), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3623), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1197] = { - [sym_match_arm] = STATE(7296), - [sym_default_arm] = STATE(7296), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1197), - [aux_sym_shebang_repeat1] = STATE(3094), - [aux_sym_ctrl_match_repeat1] = STATE(1240), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3739), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [1198] = { + [sym_comment] = STATE(1198), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3743), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), + }, + [1199] = { + [sym_match_arm] = STATE(7723), + [sym_default_arm] = STATE(7723), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1199), + [aux_sym_shebang_repeat1] = STATE(3196), + [aux_sym_ctrl_match_repeat1] = STATE(1236), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1198] = { - [sym_comment] = STATE(1198), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(3725), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(3), - }, - [1199] = { - [sym_comment] = STATE(1199), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(3727), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3729), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(3), - }, [1200] = { - [sym_match_arm] = STATE(7113), - [sym_default_arm] = STATE(7113), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_match_arm] = STATE(7726), + [sym_default_arm] = STATE(7726), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1200), - [aux_sym_shebang_repeat1] = STATE(3094), - [aux_sym_ctrl_match_repeat1] = STATE(1246), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [aux_sym_shebang_repeat1] = STATE(3196), + [aux_sym_ctrl_match_repeat1] = STATE(1237), + [sym__newline] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1201] = { [sym_comment] = STATE(1201), - [ts_builtin_sym_end] = ACTIONS(1747), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(3731), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3619), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1202] = { [sym_comment] = STATE(1202), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(3733), - [aux_sym__immediate_decimal_token2] = ACTIONS(3735), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), + [ts_builtin_sym_end] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3683), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1203] = { [sym_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(1647), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3717), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(3745), + [aux_sym__immediate_decimal_token2] = ACTIONS(3747), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(3), }, [1204] = { - [sym_match_arm] = STATE(7142), - [sym_default_arm] = STATE(7142), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_expr_parenthesized] = STATE(6636), + [sym_val_range] = STATE(8199), + [sym__val_range] = STATE(8649), + [sym__val_range_with_end] = STATE(8207), + [sym__value] = STATE(8199), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(6923), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5653), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_record] = STATE(7295), + [sym__unquoted_in_record_with_expr] = STATE(8199), + [sym__unquoted_anonymous_prefix] = STATE(7971), [sym_comment] = STATE(1204), - [aux_sym_shebang_repeat1] = STATE(3094), - [aux_sym_ctrl_match_repeat1] = STATE(1247), - [sym__newline] = ACTIONS(3607), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3751), + [anon_sym_DOT_DOT_LT] = ACTIONS(3751), + [anon_sym_null] = ACTIONS(3753), + [anon_sym_true] = ACTIONS(3755), + [anon_sym_false] = ACTIONS(3755), + [aux_sym__val_number_decimal_token1] = ACTIONS(3757), + [aux_sym__val_number_decimal_token2] = ACTIONS(3759), + [aux_sym__val_number_decimal_token3] = ACTIONS(3761), + [aux_sym__val_number_decimal_token4] = ACTIONS(3763), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3765), + [aux_sym__val_number_token5] = ACTIONS(3765), + [aux_sym__val_number_token6] = ACTIONS(3765), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3767), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3769), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [1205] = { + [sym_expr_parenthesized] = STATE(6652), + [sym_val_range] = STATE(8032), + [sym__val_range] = STATE(8649), + [sym__val_range_with_end] = STATE(8207), + [sym__value] = STATE(8032), + [sym_val_nothing] = STATE(7688), + [sym_val_bool] = STATE(6923), + [sym_val_variable] = STATE(6333), + [sym_val_number] = STATE(7688), + [sym__val_number_decimal] = STATE(5653), + [sym__val_number] = STATE(7386), + [sym_val_duration] = STATE(7688), + [sym_val_filesize] = STATE(7688), + [sym_val_binary] = STATE(7688), + [sym_val_string] = STATE(7688), + [sym__raw_str] = STATE(5662), + [sym__str_double_quotes] = STATE(5662), + [sym_val_interpolated] = STATE(7688), + [sym__inter_single_quotes] = STATE(7966), + [sym__inter_double_quotes] = STATE(7967), + [sym_val_list] = STATE(7688), + [sym_val_record] = STATE(7688), + [sym_val_table] = STATE(7688), + [sym_val_closure] = STATE(7688), + [sym__unquoted_in_record] = STATE(7103), + [sym__unquoted_in_record_with_expr] = STATE(8032), + [sym__unquoted_anonymous_prefix] = STATE(7971), [sym_comment] = STATE(1205), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3709), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3751), + [anon_sym_DOT_DOT_LT] = ACTIONS(3751), + [anon_sym_null] = ACTIONS(3753), + [anon_sym_true] = ACTIONS(3755), + [anon_sym_false] = ACTIONS(3755), + [aux_sym__val_number_decimal_token1] = ACTIONS(3757), + [aux_sym__val_number_decimal_token2] = ACTIONS(3759), + [aux_sym__val_number_decimal_token3] = ACTIONS(3761), + [aux_sym__val_number_decimal_token4] = ACTIONS(3763), + [aux_sym__val_number_token1] = ACTIONS(3131), + [aux_sym__val_number_token2] = ACTIONS(3131), + [aux_sym__val_number_token3] = ACTIONS(3131), + [aux_sym__val_number_token4] = ACTIONS(3765), + [aux_sym__val_number_token5] = ACTIONS(3765), + [aux_sym__val_number_token6] = ACTIONS(3765), + [anon_sym_0b] = ACTIONS(3135), + [anon_sym_0o] = ACTIONS(3137), + [anon_sym_0x] = ACTIONS(3137), + [sym_val_date] = ACTIONS(3767), + [anon_sym_DQUOTE] = ACTIONS(3141), + [sym__str_single_quotes] = ACTIONS(3143), + [sym__str_back_ticks] = ACTIONS(3143), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3769), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3147), }, [1206] = { - [sym_expr_parenthesized] = STATE(541), - [sym_val_range] = STATE(750), - [sym__val_range] = STATE(7946), - [sym__val_range_with_end] = STATE(7548), - [sym__value] = STATE(750), - [sym_val_nothing] = STATE(721), - [sym_val_bool] = STATE(592), - [sym_val_variable] = STATE(535), - [sym_val_number] = STATE(721), - [sym__val_number_decimal] = STATE(351), - [sym__val_number] = STATE(712), - [sym_val_duration] = STATE(721), - [sym_val_filesize] = STATE(721), - [sym_val_binary] = STATE(721), - [sym_val_string] = STATE(721), - [sym__raw_str] = STATE(751), - [sym__str_double_quotes] = STATE(751), - [sym_val_interpolated] = STATE(721), - [sym__inter_single_quotes] = STATE(732), - [sym__inter_double_quotes] = STATE(733), - [sym_val_list] = STATE(721), - [sym_val_record] = STATE(721), - [sym_val_table] = STATE(721), - [sym_val_closure] = STATE(721), - [sym__unquoted_in_record] = STATE(581), - [sym__unquoted_in_record_with_expr] = STATE(750), - [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1206), - [anon_sym_LBRACK] = ACTIONS(3737), - [anon_sym_LPAREN] = ACTIONS(3739), - [anon_sym_DOLLAR] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3747), - [anon_sym_DOT_DOT_LT] = ACTIONS(3747), - [anon_sym_null] = ACTIONS(3749), - [anon_sym_true] = ACTIONS(3751), - [anon_sym_false] = ACTIONS(3751), - [aux_sym__val_number_decimal_token1] = ACTIONS(3753), - [aux_sym__val_number_decimal_token2] = ACTIONS(3755), - [aux_sym__val_number_decimal_token3] = ACTIONS(3757), - [aux_sym__val_number_decimal_token4] = ACTIONS(3759), - [aux_sym__val_number_token1] = ACTIONS(3761), - [aux_sym__val_number_token2] = ACTIONS(3761), - [aux_sym__val_number_token3] = ACTIONS(3761), - [aux_sym__val_number_token4] = ACTIONS(3763), - [aux_sym__val_number_token5] = ACTIONS(3763), - [aux_sym__val_number_token6] = ACTIONS(3763), - [anon_sym_0b] = ACTIONS(3765), - [anon_sym_0o] = ACTIONS(3767), - [anon_sym_0x] = ACTIONS(3767), - [sym_val_date] = ACTIONS(3769), - [anon_sym_DQUOTE] = ACTIONS(3771), - [sym__str_single_quotes] = ACTIONS(3773), - [sym__str_back_ticks] = ACTIONS(3773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3777), - [anon_sym_err_GT] = ACTIONS(3779), - [anon_sym_out_GT] = ACTIONS(3779), - [anon_sym_e_GT] = ACTIONS(3779), - [anon_sym_o_GT] = ACTIONS(3779), - [anon_sym_err_PLUSout_GT] = ACTIONS(3779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3779), - [anon_sym_o_PLUSe_GT] = ACTIONS(3779), - [anon_sym_e_PLUSo_GT] = ACTIONS(3779), - [anon_sym_err_GT_GT] = ACTIONS(3781), - [anon_sym_out_GT_GT] = ACTIONS(3781), - [anon_sym_e_GT_GT] = ACTIONS(3781), - [anon_sym_o_GT_GT] = ACTIONS(3781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3781), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3785), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), }, [1207] = { [sym_comment] = STATE(1207), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(3787), - [aux_sym__immediate_decimal_token2] = ACTIONS(3789), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), }, [1208] = { [sym_comment] = STATE(1208), - [ts_builtin_sym_end] = ACTIONS(1707), - [anon_sym_STAR_STAR] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_mod] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3079), - [anon_sym_bit_DASHshl] = ACTIONS(3079), - [anon_sym_bit_DASHshr] = ACTIONS(3079), - [anon_sym_EQ_TILDE] = ACTIONS(3079), - [anon_sym_BANG_TILDE] = ACTIONS(3079), - [anon_sym_bit_DASHand] = ACTIONS(3079), - [anon_sym_bit_DASHxor] = ACTIONS(3079), - [anon_sym_bit_DASHor] = ACTIONS(3079), - [anon_sym_and] = ACTIONS(3079), - [anon_sym_xor] = ACTIONS(3079), - [anon_sym_or] = ACTIONS(3079), - [anon_sym_in] = ACTIONS(3079), - [anon_sym_not_DASHin] = ACTIONS(3079), - [anon_sym_starts_DASHwith] = ACTIONS(3079), - [anon_sym_ends_DASHwith] = ACTIONS(3079), - [anon_sym_EQ_EQ] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3079), - [aux_sym_cmd_identifier_token41] = ACTIONS(3083), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3085), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3087), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3087), - [sym_filesize_unit] = ACTIONS(3791), - [sym_duration_unit] = ACTIONS(3793), + [ts_builtin_sym_end] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1209] = { [sym_comment] = STATE(1209), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(1699), + [anon_sym_STAR_STAR] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_mod] = ACTIONS(3085), + [anon_sym_SLASH_SLASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_bit_DASHshl] = ACTIONS(3085), + [anon_sym_bit_DASHshr] = ACTIONS(3085), + [anon_sym_EQ_TILDE] = ACTIONS(3085), + [anon_sym_BANG_TILDE] = ACTIONS(3085), + [anon_sym_bit_DASHand] = ACTIONS(3085), + [anon_sym_bit_DASHxor] = ACTIONS(3085), + [anon_sym_bit_DASHor] = ACTIONS(3085), + [anon_sym_and] = ACTIONS(3085), + [anon_sym_xor] = ACTIONS(3085), + [anon_sym_or] = ACTIONS(3085), + [anon_sym_in] = ACTIONS(3085), + [anon_sym_not_DASHin] = ACTIONS(3085), + [anon_sym_starts_DASHwith] = ACTIONS(3085), + [anon_sym_ends_DASHwith] = ACTIONS(3085), + [anon_sym_EQ_EQ] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_LT_EQ] = ACTIONS(3085), + [anon_sym_GT] = ACTIONS(3087), + [anon_sym_GT_EQ] = ACTIONS(3085), + [aux_sym_cmd_identifier_token41] = ACTIONS(3089), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3091), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3093), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3093), + [sym_filesize_unit] = ACTIONS(3771), + [sym_duration_unit] = ACTIONS(3773), [anon_sym_POUND] = ACTIONS(3), }, [1210] = { [sym_comment] = STATE(1210), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(3795), - [sym_duration_unit] = ACTIONS(3797), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(3775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3777), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1211] = { [sym_comment] = STATE(1211), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(3799), - [sym_duration_unit] = ACTIONS(3801), + [ts_builtin_sym_end] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(3), }, [1212] = { - [sym_expr_parenthesized] = STATE(470), - [sym_val_range] = STATE(666), - [sym__val_range] = STATE(7827), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(666), - [sym_val_nothing] = STATE(621), - [sym_val_bool] = STATE(545), - [sym_val_variable] = STATE(497), - [sym_val_number] = STATE(621), - [sym__val_number_decimal] = STATE(341), - [sym__val_number] = STATE(670), - [sym_val_duration] = STATE(621), - [sym_val_filesize] = STATE(621), - [sym_val_binary] = STATE(621), - [sym_val_string] = STATE(621), - [sym__raw_str] = STATE(690), - [sym__str_double_quotes] = STATE(690), - [sym_val_interpolated] = STATE(621), - [sym__inter_single_quotes] = STATE(637), - [sym__inter_double_quotes] = STATE(638), - [sym_val_list] = STATE(621), - [sym_val_record] = STATE(621), - [sym_val_table] = STATE(621), - [sym_val_closure] = STATE(621), - [sym__unquoted_in_record] = STATE(517), - [sym__unquoted_in_record_with_expr] = STATE(666), - [sym__unquoted_anonymous_prefix] = STATE(7023), [sym_comment] = STATE(1212), - [anon_sym_LBRACK] = ACTIONS(3803), - [anon_sym_LPAREN] = ACTIONS(3805), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(3807), - [anon_sym_DOT_DOT] = ACTIONS(3809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3811), - [anon_sym_DOT_DOT_LT] = ACTIONS(3811), - [anon_sym_null] = ACTIONS(3813), - [anon_sym_true] = ACTIONS(3815), - [anon_sym_false] = ACTIONS(3815), - [aux_sym__val_number_decimal_token1] = ACTIONS(3817), - [aux_sym__val_number_decimal_token2] = ACTIONS(3819), - [aux_sym__val_number_decimal_token3] = ACTIONS(3821), - [aux_sym__val_number_decimal_token4] = ACTIONS(3823), - [aux_sym__val_number_token1] = ACTIONS(3825), - [aux_sym__val_number_token2] = ACTIONS(3825), - [aux_sym__val_number_token3] = ACTIONS(3825), - [aux_sym__val_number_token4] = ACTIONS(3827), - [aux_sym__val_number_token5] = ACTIONS(3827), - [aux_sym__val_number_token6] = ACTIONS(3827), - [anon_sym_0b] = ACTIONS(3829), - [anon_sym_0o] = ACTIONS(3831), - [anon_sym_0x] = ACTIONS(3831), - [sym_val_date] = ACTIONS(3833), - [anon_sym_DQUOTE] = ACTIONS(3835), - [sym__str_single_quotes] = ACTIONS(3837), - [sym__str_back_ticks] = ACTIONS(3837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3841), - [anon_sym_err_GT] = ACTIONS(3779), - [anon_sym_out_GT] = ACTIONS(3779), - [anon_sym_e_GT] = ACTIONS(3779), - [anon_sym_o_GT] = ACTIONS(3779), - [anon_sym_err_PLUSout_GT] = ACTIONS(3779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3779), - [anon_sym_o_PLUSe_GT] = ACTIONS(3779), - [anon_sym_e_PLUSo_GT] = ACTIONS(3779), - [anon_sym_err_GT_GT] = ACTIONS(3781), - [anon_sym_out_GT_GT] = ACTIONS(3781), - [anon_sym_e_GT_GT] = ACTIONS(3781), - [anon_sym_o_GT_GT] = ACTIONS(3781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3781), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3843), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3845), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), }, [1213] = { + [sym_expr_parenthesized] = STATE(449), + [sym_val_range] = STATE(684), + [sym__val_range] = STATE(8355), + [sym__val_range_with_end] = STATE(8120), + [sym__value] = STATE(684), + [sym_val_nothing] = STATE(648), + [sym_val_bool] = STATE(527), + [sym_val_variable] = STATE(452), + [sym_val_number] = STATE(648), + [sym__val_number_decimal] = STATE(338), + [sym__val_number] = STATE(623), + [sym_val_duration] = STATE(648), + [sym_val_filesize] = STATE(648), + [sym_val_binary] = STATE(648), + [sym_val_string] = STATE(648), + [sym__raw_str] = STATE(671), + [sym__str_double_quotes] = STATE(671), + [sym_val_interpolated] = STATE(648), + [sym__inter_single_quotes] = STATE(629), + [sym__inter_double_quotes] = STATE(630), + [sym_val_list] = STATE(648), + [sym_val_record] = STATE(648), + [sym_val_table] = STATE(648), + [sym_val_closure] = STATE(648), + [sym__unquoted_in_record] = STATE(547), + [sym__unquoted_in_record_with_expr] = STATE(684), + [sym__unquoted_anonymous_prefix] = STATE(7811), [sym_comment] = STATE(1213), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3779), + [anon_sym_LPAREN] = ACTIONS(3781), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(3783), + [anon_sym_DOT_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3787), + [anon_sym_DOT_DOT_LT] = ACTIONS(3787), + [anon_sym_null] = ACTIONS(3789), + [anon_sym_true] = ACTIONS(3791), + [anon_sym_false] = ACTIONS(3791), + [aux_sym__val_number_decimal_token1] = ACTIONS(3793), + [aux_sym__val_number_decimal_token2] = ACTIONS(3795), + [aux_sym__val_number_decimal_token3] = ACTIONS(3797), + [aux_sym__val_number_decimal_token4] = ACTIONS(3799), + [aux_sym__val_number_token1] = ACTIONS(3801), + [aux_sym__val_number_token2] = ACTIONS(3801), + [aux_sym__val_number_token3] = ACTIONS(3801), + [aux_sym__val_number_token4] = ACTIONS(3803), + [aux_sym__val_number_token5] = ACTIONS(3803), + [aux_sym__val_number_token6] = ACTIONS(3803), + [anon_sym_0b] = ACTIONS(3805), + [anon_sym_0o] = ACTIONS(3807), + [anon_sym_0x] = ACTIONS(3807), + [sym_val_date] = ACTIONS(3809), + [anon_sym_DQUOTE] = ACTIONS(3811), + [sym__str_single_quotes] = ACTIONS(3813), + [sym__str_back_ticks] = ACTIONS(3813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3817), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3819), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3821), }, [1214] = { + [sym_expr_parenthesized] = STATE(506), + [sym_val_range] = STATE(686), + [sym__val_range] = STATE(8355), + [sym__val_range_with_end] = STATE(8120), + [sym__value] = STATE(686), + [sym_val_nothing] = STATE(648), + [sym_val_bool] = STATE(527), + [sym_val_variable] = STATE(452), + [sym_val_number] = STATE(648), + [sym__val_number_decimal] = STATE(338), + [sym__val_number] = STATE(623), + [sym_val_duration] = STATE(648), + [sym_val_filesize] = STATE(648), + [sym_val_binary] = STATE(648), + [sym_val_string] = STATE(648), + [sym__raw_str] = STATE(671), + [sym__str_double_quotes] = STATE(671), + [sym_val_interpolated] = STATE(648), + [sym__inter_single_quotes] = STATE(629), + [sym__inter_double_quotes] = STATE(630), + [sym_val_list] = STATE(648), + [sym_val_record] = STATE(648), + [sym_val_table] = STATE(648), + [sym_val_closure] = STATE(648), + [sym__unquoted_in_record] = STATE(550), + [sym__unquoted_in_record_with_expr] = STATE(686), + [sym__unquoted_anonymous_prefix] = STATE(7811), [sym_comment] = STATE(1214), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3779), + [anon_sym_LPAREN] = ACTIONS(3781), + [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(3783), + [anon_sym_DOT_DOT] = ACTIONS(3785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3787), + [anon_sym_DOT_DOT_LT] = ACTIONS(3787), + [anon_sym_null] = ACTIONS(3789), + [anon_sym_true] = ACTIONS(3791), + [anon_sym_false] = ACTIONS(3791), + [aux_sym__val_number_decimal_token1] = ACTIONS(3793), + [aux_sym__val_number_decimal_token2] = ACTIONS(3795), + [aux_sym__val_number_decimal_token3] = ACTIONS(3797), + [aux_sym__val_number_decimal_token4] = ACTIONS(3799), + [aux_sym__val_number_token1] = ACTIONS(3801), + [aux_sym__val_number_token2] = ACTIONS(3801), + [aux_sym__val_number_token3] = ACTIONS(3801), + [aux_sym__val_number_token4] = ACTIONS(3803), + [aux_sym__val_number_token5] = ACTIONS(3803), + [aux_sym__val_number_token6] = ACTIONS(3803), + [anon_sym_0b] = ACTIONS(3805), + [anon_sym_0o] = ACTIONS(3807), + [anon_sym_0x] = ACTIONS(3807), + [sym_val_date] = ACTIONS(3809), + [anon_sym_DQUOTE] = ACTIONS(3811), + [sym__str_single_quotes] = ACTIONS(3813), + [sym__str_back_ticks] = ACTIONS(3813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3817), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3819), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3821), }, [1215] = { [sym_comment] = STATE(1215), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3729), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [ts_builtin_sym_end] = ACTIONS(1769), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), }, [1216] = { [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(1639), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(3823), + [aux_sym__immediate_decimal_token2] = ACTIONS(3825), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(3), }, [1217] = { [sym_comment] = STATE(1217), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(3847), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1218] = { [sym_comment] = STATE(1218), - [ts_builtin_sym_end] = ACTIONS(1747), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), [anon_sym_POUND] = ACTIONS(3), }, [1219] = { + [sym_expr_parenthesized] = STATE(541), + [sym_val_range] = STATE(736), + [sym__val_range] = STATE(8481), + [sym__val_range_with_end] = STATE(8094), + [sym__value] = STATE(736), + [sym_val_nothing] = STATE(762), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(524), + [sym_val_number] = STATE(762), + [sym__val_number_decimal] = STATE(364), + [sym__val_number] = STATE(696), + [sym_val_duration] = STATE(762), + [sym_val_filesize] = STATE(762), + [sym_val_binary] = STATE(762), + [sym_val_string] = STATE(762), + [sym__raw_str] = STATE(710), + [sym__str_double_quotes] = STATE(710), + [sym_val_interpolated] = STATE(762), + [sym__inter_single_quotes] = STATE(721), + [sym__inter_double_quotes] = STATE(725), + [sym_val_list] = STATE(762), + [sym_val_record] = STATE(762), + [sym_val_table] = STATE(762), + [sym_val_closure] = STATE(762), + [sym__unquoted_in_record] = STATE(598), + [sym__unquoted_in_record_with_expr] = STATE(736), + [sym__unquoted_anonymous_prefix] = STATE(7584), [sym_comment] = STATE(1219), - [ts_builtin_sym_end] = ACTIONS(1783), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3833), + [anon_sym_DOT_DOT] = ACTIONS(3835), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3837), + [anon_sym_DOT_DOT_LT] = ACTIONS(3837), + [anon_sym_null] = ACTIONS(3839), + [anon_sym_true] = ACTIONS(3841), + [anon_sym_false] = ACTIONS(3841), + [aux_sym__val_number_decimal_token1] = ACTIONS(3843), + [aux_sym__val_number_decimal_token2] = ACTIONS(3845), + [aux_sym__val_number_decimal_token3] = ACTIONS(3847), + [aux_sym__val_number_decimal_token4] = ACTIONS(3849), + [aux_sym__val_number_token1] = ACTIONS(3851), + [aux_sym__val_number_token2] = ACTIONS(3851), + [aux_sym__val_number_token3] = ACTIONS(3851), + [aux_sym__val_number_token4] = ACTIONS(3853), + [aux_sym__val_number_token5] = ACTIONS(3853), + [aux_sym__val_number_token6] = ACTIONS(3853), + [anon_sym_0b] = ACTIONS(3855), + [anon_sym_0o] = ACTIONS(3857), + [anon_sym_0x] = ACTIONS(3857), + [sym_val_date] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3861), + [sym__str_single_quotes] = ACTIONS(3863), + [sym__str_back_ticks] = ACTIONS(3863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3867), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3869), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3871), }, [1220] = { [sym_comment] = STATE(1220), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3743), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1221] = { [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(1647), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(3873), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), }, [1222] = { - [sym_expr_parenthesized] = STATE(512), - [sym_val_range] = STATE(656), - [sym__val_range] = STATE(7827), - [sym__val_range_with_end] = STATE(7594), - [sym__value] = STATE(656), - [sym_val_nothing] = STATE(621), - [sym_val_bool] = STATE(545), - [sym_val_variable] = STATE(497), - [sym_val_number] = STATE(621), - [sym__val_number_decimal] = STATE(341), - [sym__val_number] = STATE(670), - [sym_val_duration] = STATE(621), - [sym_val_filesize] = STATE(621), - [sym_val_binary] = STATE(621), - [sym_val_string] = STATE(621), - [sym__raw_str] = STATE(690), - [sym__str_double_quotes] = STATE(690), - [sym_val_interpolated] = STATE(621), - [sym__inter_single_quotes] = STATE(637), - [sym__inter_double_quotes] = STATE(638), - [sym_val_list] = STATE(621), - [sym_val_record] = STATE(621), - [sym_val_table] = STATE(621), - [sym_val_closure] = STATE(621), - [sym__unquoted_in_record] = STATE(538), - [sym__unquoted_in_record_with_expr] = STATE(656), - [sym__unquoted_anonymous_prefix] = STATE(7023), [sym_comment] = STATE(1222), - [anon_sym_LBRACK] = ACTIONS(3803), - [anon_sym_LPAREN] = ACTIONS(3805), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(3807), - [anon_sym_DOT_DOT] = ACTIONS(3809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3811), - [anon_sym_DOT_DOT_LT] = ACTIONS(3811), - [anon_sym_null] = ACTIONS(3813), - [anon_sym_true] = ACTIONS(3815), - [anon_sym_false] = ACTIONS(3815), - [aux_sym__val_number_decimal_token1] = ACTIONS(3817), - [aux_sym__val_number_decimal_token2] = ACTIONS(3819), - [aux_sym__val_number_decimal_token3] = ACTIONS(3821), - [aux_sym__val_number_decimal_token4] = ACTIONS(3823), - [aux_sym__val_number_token1] = ACTIONS(3825), - [aux_sym__val_number_token2] = ACTIONS(3825), - [aux_sym__val_number_token3] = ACTIONS(3825), - [aux_sym__val_number_token4] = ACTIONS(3827), - [aux_sym__val_number_token5] = ACTIONS(3827), - [aux_sym__val_number_token6] = ACTIONS(3827), - [anon_sym_0b] = ACTIONS(3829), - [anon_sym_0o] = ACTIONS(3831), - [anon_sym_0x] = ACTIONS(3831), - [sym_val_date] = ACTIONS(3833), - [anon_sym_DQUOTE] = ACTIONS(3835), - [sym__str_single_quotes] = ACTIONS(3837), - [sym__str_back_ticks] = ACTIONS(3837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3841), - [anon_sym_err_GT] = ACTIONS(3779), - [anon_sym_out_GT] = ACTIONS(3779), - [anon_sym_e_GT] = ACTIONS(3779), - [anon_sym_o_GT] = ACTIONS(3779), - [anon_sym_err_PLUSout_GT] = ACTIONS(3779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3779), - [anon_sym_o_PLUSe_GT] = ACTIONS(3779), - [anon_sym_e_PLUSo_GT] = ACTIONS(3779), - [anon_sym_err_GT_GT] = ACTIONS(3781), - [anon_sym_out_GT_GT] = ACTIONS(3781), - [anon_sym_e_GT_GT] = ACTIONS(3781), - [anon_sym_o_GT_GT] = ACTIONS(3781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3781), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3843), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3845), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), }, [1223] = { - [sym_expr_parenthesized] = STATE(540), - [sym_val_range] = STATE(747), - [sym__val_range] = STATE(7946), - [sym__val_range_with_end] = STATE(7548), - [sym__value] = STATE(747), - [sym_val_nothing] = STATE(721), - [sym_val_bool] = STATE(592), - [sym_val_variable] = STATE(535), - [sym_val_number] = STATE(721), - [sym__val_number_decimal] = STATE(351), - [sym__val_number] = STATE(712), - [sym_val_duration] = STATE(721), - [sym_val_filesize] = STATE(721), - [sym_val_binary] = STATE(721), - [sym_val_string] = STATE(721), - [sym__raw_str] = STATE(751), - [sym__str_double_quotes] = STATE(751), - [sym_val_interpolated] = STATE(721), - [sym__inter_single_quotes] = STATE(732), - [sym__inter_double_quotes] = STATE(733), - [sym_val_list] = STATE(721), - [sym_val_record] = STATE(721), - [sym_val_table] = STATE(721), - [sym_val_closure] = STATE(721), - [sym__unquoted_in_record] = STATE(577), - [sym__unquoted_in_record_with_expr] = STATE(747), - [sym__unquoted_anonymous_prefix] = STATE(7348), [sym_comment] = STATE(1223), - [anon_sym_LBRACK] = ACTIONS(3737), - [anon_sym_LPAREN] = ACTIONS(3739), - [anon_sym_DOLLAR] = ACTIONS(3741), - [anon_sym_LBRACE] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3747), - [anon_sym_DOT_DOT_LT] = ACTIONS(3747), - [anon_sym_null] = ACTIONS(3749), - [anon_sym_true] = ACTIONS(3751), - [anon_sym_false] = ACTIONS(3751), - [aux_sym__val_number_decimal_token1] = ACTIONS(3753), - [aux_sym__val_number_decimal_token2] = ACTIONS(3755), - [aux_sym__val_number_decimal_token3] = ACTIONS(3757), - [aux_sym__val_number_decimal_token4] = ACTIONS(3759), - [aux_sym__val_number_token1] = ACTIONS(3761), - [aux_sym__val_number_token2] = ACTIONS(3761), - [aux_sym__val_number_token3] = ACTIONS(3761), - [aux_sym__val_number_token4] = ACTIONS(3763), - [aux_sym__val_number_token5] = ACTIONS(3763), - [aux_sym__val_number_token6] = ACTIONS(3763), - [anon_sym_0b] = ACTIONS(3765), - [anon_sym_0o] = ACTIONS(3767), - [anon_sym_0x] = ACTIONS(3767), - [sym_val_date] = ACTIONS(3769), - [anon_sym_DQUOTE] = ACTIONS(3771), - [sym__str_single_quotes] = ACTIONS(3773), - [sym__str_back_ticks] = ACTIONS(3773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3777), - [anon_sym_err_GT] = ACTIONS(3779), - [anon_sym_out_GT] = ACTIONS(3779), - [anon_sym_e_GT] = ACTIONS(3779), - [anon_sym_o_GT] = ACTIONS(3779), - [anon_sym_err_PLUSout_GT] = ACTIONS(3779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3779), - [anon_sym_o_PLUSe_GT] = ACTIONS(3779), - [anon_sym_e_PLUSo_GT] = ACTIONS(3779), - [anon_sym_err_GT_GT] = ACTIONS(3781), - [anon_sym_out_GT_GT] = ACTIONS(3781), - [anon_sym_e_GT_GT] = ACTIONS(3781), - [anon_sym_o_GT_GT] = ACTIONS(3781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3781), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3783), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3785), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(3), }, [1224] = { [sym_comment] = STATE(1224), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3875), + [sym_duration_unit] = ACTIONS(3877), [anon_sym_POUND] = ACTIONS(3), }, [1225] = { [sym_comment] = STATE(1225), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3879), + [sym_duration_unit] = ACTIONS(3881), [anon_sym_POUND] = ACTIONS(3), }, [1226] = { [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(3849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3851), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), }, [1227] = { - [sym_expr_parenthesized] = STATE(6094), - [sym_val_range] = STATE(7615), - [sym__val_range] = STATE(7825), - [sym__val_range_with_end] = STATE(7631), - [sym__value] = STATE(7615), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6717), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5280), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_record] = STATE(6703), - [sym__unquoted_in_record_with_expr] = STATE(7615), - [sym__unquoted_anonymous_prefix] = STATE(6857), [sym_comment] = STATE(1227), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3855), - [anon_sym_DOT_DOT_LT] = ACTIONS(3855), - [anon_sym_null] = ACTIONS(3857), - [anon_sym_true] = ACTIONS(3859), - [anon_sym_false] = ACTIONS(3859), - [aux_sym__val_number_decimal_token1] = ACTIONS(3861), - [aux_sym__val_number_decimal_token2] = ACTIONS(3863), - [aux_sym__val_number_decimal_token3] = ACTIONS(3865), - [aux_sym__val_number_decimal_token4] = ACTIONS(3867), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3869), - [aux_sym__val_number_token5] = ACTIONS(3869), - [aux_sym__val_number_token6] = ACTIONS(3869), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3871), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(3779), - [anon_sym_out_GT] = ACTIONS(3779), - [anon_sym_e_GT] = ACTIONS(3779), - [anon_sym_o_GT] = ACTIONS(3779), - [anon_sym_err_PLUSout_GT] = ACTIONS(3779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3779), - [anon_sym_o_PLUSe_GT] = ACTIONS(3779), - [anon_sym_e_PLUSo_GT] = ACTIONS(3779), - [anon_sym_err_GT_GT] = ACTIONS(3781), - [anon_sym_out_GT_GT] = ACTIONS(3781), - [anon_sym_e_GT_GT] = ACTIONS(3781), - [anon_sym_o_GT_GT] = ACTIONS(3781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3781), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3873), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(3), }, [1228] = { + [sym_expr_parenthesized] = STATE(543), + [sym_val_range] = STATE(741), + [sym__val_range] = STATE(8481), + [sym__val_range_with_end] = STATE(8094), + [sym__value] = STATE(741), + [sym_val_nothing] = STATE(762), + [sym_val_bool] = STATE(607), + [sym_val_variable] = STATE(524), + [sym_val_number] = STATE(762), + [sym__val_number_decimal] = STATE(364), + [sym__val_number] = STATE(696), + [sym_val_duration] = STATE(762), + [sym_val_filesize] = STATE(762), + [sym_val_binary] = STATE(762), + [sym_val_string] = STATE(762), + [sym__raw_str] = STATE(710), + [sym__str_double_quotes] = STATE(710), + [sym_val_interpolated] = STATE(762), + [sym__inter_single_quotes] = STATE(721), + [sym__inter_double_quotes] = STATE(725), + [sym_val_list] = STATE(762), + [sym_val_record] = STATE(762), + [sym_val_table] = STATE(762), + [sym_val_closure] = STATE(762), + [sym__unquoted_in_record] = STATE(601), + [sym__unquoted_in_record_with_expr] = STATE(741), + [sym__unquoted_anonymous_prefix] = STATE(7584), [sym_comment] = STATE(1228), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3833), + [anon_sym_DOT_DOT] = ACTIONS(3835), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3837), + [anon_sym_DOT_DOT_LT] = ACTIONS(3837), + [anon_sym_null] = ACTIONS(3839), + [anon_sym_true] = ACTIONS(3841), + [anon_sym_false] = ACTIONS(3841), + [aux_sym__val_number_decimal_token1] = ACTIONS(3843), + [aux_sym__val_number_decimal_token2] = ACTIONS(3845), + [aux_sym__val_number_decimal_token3] = ACTIONS(3847), + [aux_sym__val_number_decimal_token4] = ACTIONS(3849), + [aux_sym__val_number_token1] = ACTIONS(3851), + [aux_sym__val_number_token2] = ACTIONS(3851), + [aux_sym__val_number_token3] = ACTIONS(3851), + [aux_sym__val_number_token4] = ACTIONS(3853), + [aux_sym__val_number_token5] = ACTIONS(3853), + [aux_sym__val_number_token6] = ACTIONS(3853), + [anon_sym_0b] = ACTIONS(3855), + [anon_sym_0o] = ACTIONS(3857), + [anon_sym_0x] = ACTIONS(3857), + [sym_val_date] = ACTIONS(3859), + [anon_sym_DQUOTE] = ACTIONS(3861), + [sym__str_single_quotes] = ACTIONS(3863), + [sym__str_back_ticks] = ACTIONS(3863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3867), + [anon_sym_err_GT] = ACTIONS(3673), + [anon_sym_out_GT] = ACTIONS(3673), + [anon_sym_e_GT] = ACTIONS(3673), + [anon_sym_o_GT] = ACTIONS(3673), + [anon_sym_err_PLUSout_GT] = ACTIONS(3673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), + [anon_sym_o_PLUSe_GT] = ACTIONS(3673), + [anon_sym_e_PLUSo_GT] = ACTIONS(3673), + [anon_sym_err_GT_GT] = ACTIONS(3675), + [anon_sym_out_GT_GT] = ACTIONS(3675), + [anon_sym_e_GT_GT] = ACTIONS(3675), + [anon_sym_o_GT_GT] = ACTIONS(3675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3869), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3871), }, [1229] = { - [sym_expr_parenthesized] = STATE(6065), - [sym_val_range] = STATE(7589), - [sym__val_range] = STATE(7825), - [sym__val_range_with_end] = STATE(7631), - [sym__value] = STATE(7589), - [sym_val_nothing] = STATE(7168), - [sym_val_bool] = STATE(6717), - [sym_val_variable] = STATE(5979), - [sym_val_number] = STATE(7168), - [sym__val_number_decimal] = STATE(5280), - [sym__val_number] = STATE(7244), - [sym_val_duration] = STATE(7168), - [sym_val_filesize] = STATE(7168), - [sym_val_binary] = STATE(7168), - [sym_val_string] = STATE(7168), - [sym__raw_str] = STATE(5550), - [sym__str_double_quotes] = STATE(5550), - [sym_val_interpolated] = STATE(7168), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6856), - [sym_val_list] = STATE(7168), - [sym_val_record] = STATE(7168), - [sym_val_table] = STATE(7168), - [sym_val_closure] = STATE(7168), - [sym__unquoted_in_record] = STATE(6386), - [sym__unquoted_in_record_with_expr] = STATE(7589), - [sym__unquoted_anonymous_prefix] = STATE(6857), [sym_comment] = STATE(1229), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_DOT_DOT] = ACTIONS(3853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3855), - [anon_sym_DOT_DOT_LT] = ACTIONS(3855), - [anon_sym_null] = ACTIONS(3857), - [anon_sym_true] = ACTIONS(3859), - [anon_sym_false] = ACTIONS(3859), - [aux_sym__val_number_decimal_token1] = ACTIONS(3861), - [aux_sym__val_number_decimal_token2] = ACTIONS(3863), - [aux_sym__val_number_decimal_token3] = ACTIONS(3865), - [aux_sym__val_number_decimal_token4] = ACTIONS(3867), - [aux_sym__val_number_token1] = ACTIONS(3135), - [aux_sym__val_number_token2] = ACTIONS(3135), - [aux_sym__val_number_token3] = ACTIONS(3135), - [aux_sym__val_number_token4] = ACTIONS(3869), - [aux_sym__val_number_token5] = ACTIONS(3869), - [aux_sym__val_number_token6] = ACTIONS(3869), - [anon_sym_0b] = ACTIONS(3139), - [anon_sym_0o] = ACTIONS(3141), - [anon_sym_0x] = ACTIONS(3141), - [sym_val_date] = ACTIONS(3871), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym__str_single_quotes] = ACTIONS(3147), - [sym__str_back_ticks] = ACTIONS(3147), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2617), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(3779), - [anon_sym_out_GT] = ACTIONS(3779), - [anon_sym_e_GT] = ACTIONS(3779), - [anon_sym_o_GT] = ACTIONS(3779), - [anon_sym_err_PLUSout_GT] = ACTIONS(3779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3779), - [anon_sym_o_PLUSe_GT] = ACTIONS(3779), - [anon_sym_e_PLUSo_GT] = ACTIONS(3779), - [anon_sym_err_GT_GT] = ACTIONS(3781), - [anon_sym_out_GT_GT] = ACTIONS(3781), - [anon_sym_e_GT_GT] = ACTIONS(3781), - [anon_sym_o_GT_GT] = ACTIONS(3781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3781), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3873), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3151), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(3883), + [sym_duration_unit] = ACTIONS(3885), + [anon_sym_POUND] = ACTIONS(3), }, [1230] = { [sym_comment] = STATE(1230), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), [anon_sym_POUND] = ACTIONS(3), }, [1231] = { - [sym_expr_parenthesized] = STATE(6664), - [sym_val_range] = STATE(7990), - [sym__val_range] = STATE(7747), - [sym__value] = STATE(7990), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(3697), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(7998), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_expr_parenthesized] = STATE(7053), + [sym_val_range] = STATE(8451), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(8451), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(6676), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6076), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(8454), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3877), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(3881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3883), - [anon_sym_DOT_DOT_LT] = ACTIONS(3883), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), + [anon_sym_DOT_DOT_LT] = ACTIONS(3895), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3381), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [aux_sym_record_entry_token1] = ACTIONS(3499), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1232] = { - [sym_match_arm] = STATE(7311), - [sym_default_arm] = STATE(7311), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_match_arm] = STATE(7802), + [sym_default_arm] = STATE(7802), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1232), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, [1233] = { + [sym_match_arm] = STATE(7723), + [sym_default_arm] = STATE(7723), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1233), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(3851), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1234] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3121), - [sym__match_pattern_list] = STATE(3122), - [sym__match_pattern_rest] = STATE(7716), - [sym__match_pattern_record] = STATE(3123), - [sym_expr_parenthesized] = STATE(2908), - [sym_val_range] = STATE(3121), - [sym__val_range] = STATE(7923), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(3062), - [sym_val_variable] = STATE(2909), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(2671), - [sym__val_number] = STATE(3108), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__raw_str] = STATE(3164), - [sym__str_double_quotes] = STATE(3164), - [sym_val_list] = STATE(7745), - [sym_val_table] = STATE(3125), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7818), + [sym__match_pattern_expression] = STATE(3251), + [sym__match_pattern_value] = STATE(3269), + [sym__match_pattern_list] = STATE(3270), + [sym__match_pattern_rest] = STATE(8508), + [sym__match_pattern_record] = STATE(3271), + [sym_expr_parenthesized] = STATE(3049), + [sym_val_range] = STATE(3269), + [sym__val_range] = STATE(8495), + [sym_val_nothing] = STATE(3273), + [sym_val_bool] = STATE(3216), + [sym_val_variable] = STATE(3050), + [sym_val_number] = STATE(3273), + [sym__val_number_decimal] = STATE(2832), + [sym__val_number] = STATE(3264), + [sym_val_duration] = STATE(3273), + [sym_val_filesize] = STATE(3273), + [sym_val_binary] = STATE(3273), + [sym_val_string] = STATE(3273), + [sym__raw_str] = STATE(3279), + [sym__str_double_quotes] = STATE(3279), + [sym_val_list] = STATE(8233), + [sym_val_table] = STATE(3273), + [sym__unquoted_in_list] = STATE(3251), + [sym__unquoted_anonymous_prefix] = STATE(8543), [sym_comment] = STATE(1234), - [aux_sym_shebang_repeat1] = STATE(6798), - [aux_sym__match_pattern_list_repeat1] = STATE(1305), - [sym__newline] = ACTIONS(3907), - [anon_sym_LBRACK] = ACTIONS(3909), - [anon_sym_RBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3917), - [anon_sym_DOT_DOT] = ACTIONS(3919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3921), - [anon_sym_DOT_DOT_LT] = ACTIONS(3921), - [anon_sym_null] = ACTIONS(3923), - [anon_sym_true] = ACTIONS(3925), - [anon_sym_false] = ACTIONS(3925), - [aux_sym__val_number_decimal_token1] = ACTIONS(3927), - [aux_sym__val_number_decimal_token2] = ACTIONS(3929), - [aux_sym__val_number_decimal_token3] = ACTIONS(3931), - [aux_sym__val_number_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_token1] = ACTIONS(3935), - [aux_sym__val_number_token2] = ACTIONS(3935), - [aux_sym__val_number_token3] = ACTIONS(3935), - [aux_sym__val_number_token4] = ACTIONS(3937), - [aux_sym__val_number_token5] = ACTIONS(3937), - [aux_sym__val_number_token6] = ACTIONS(3937), - [anon_sym_0b] = ACTIONS(3939), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3943), - [anon_sym_DQUOTE] = ACTIONS(3945), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3951), + [aux_sym_shebang_repeat1] = STATE(7278), + [aux_sym__match_pattern_list_repeat1] = STATE(1278), + [sym__newline] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_RBRACK] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_DOLLAR] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_DOT_DOT] = ACTIONS(3931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), + [anon_sym_DOT_DOT_LT] = ACTIONS(3933), + [anon_sym_null] = ACTIONS(3935), + [anon_sym_true] = ACTIONS(3937), + [anon_sym_false] = ACTIONS(3937), + [aux_sym__val_number_decimal_token1] = ACTIONS(3939), + [aux_sym__val_number_decimal_token2] = ACTIONS(3941), + [aux_sym__val_number_decimal_token3] = ACTIONS(3943), + [aux_sym__val_number_decimal_token4] = ACTIONS(3945), + [aux_sym__val_number_token1] = ACTIONS(3947), + [aux_sym__val_number_token2] = ACTIONS(3947), + [aux_sym__val_number_token3] = ACTIONS(3947), + [aux_sym__val_number_token4] = ACTIONS(3949), + [aux_sym__val_number_token5] = ACTIONS(3949), + [aux_sym__val_number_token6] = ACTIONS(3949), + [anon_sym_0b] = ACTIONS(3951), + [anon_sym_0o] = ACTIONS(3953), + [anon_sym_0x] = ACTIONS(3953), + [sym_val_date] = ACTIONS(3955), + [anon_sym_DQUOTE] = ACTIONS(3957), + [sym__str_single_quotes] = ACTIONS(3959), + [sym__str_back_ticks] = ACTIONS(3959), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3963), }, [1235] = { + [sym_match_arm] = STATE(7726), + [sym_default_arm] = STATE(7726), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1235), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(3953), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(3), - }, - [1236] = { - [sym_comment] = STATE(1236), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_POUND] = ACTIONS(3), - }, - [1237] = { - [sym_comment] = STATE(1237), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), - }, - [1238] = { - [sym_comment] = STATE(1238), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(3), - }, - [1239] = { - [sym_comment] = STATE(1239), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - }, - [1240] = { - [sym_match_arm] = STATE(6849), - [sym_default_arm] = STATE(6849), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1240), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1241] = { - [sym_expr_parenthesized] = STATE(6664), - [sym_val_range] = STATE(7990), - [sym__val_range] = STATE(7747), - [sym__value] = STATE(7990), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(3697), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(7998), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1241), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3877), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(3881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3883), - [anon_sym_DOT_DOT_LT] = ACTIONS(3883), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), + [1236] = { + [sym_match_arm] = STATE(7846), + [sym_default_arm] = STATE(7846), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1236), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), - }, - [1242] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3121), - [sym__match_pattern_list] = STATE(3122), - [sym__match_pattern_rest] = STATE(7773), - [sym__match_pattern_record] = STATE(3123), - [sym_expr_parenthesized] = STATE(2908), - [sym_val_range] = STATE(3121), - [sym__val_range] = STATE(7923), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(3062), - [sym_val_variable] = STATE(2909), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(2671), - [sym__val_number] = STATE(3108), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__raw_str] = STATE(3164), - [sym__str_double_quotes] = STATE(3164), - [sym_val_list] = STATE(7781), - [sym_val_table] = STATE(3125), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7818), - [sym_comment] = STATE(1242), - [aux_sym_shebang_repeat1] = STATE(6721), - [aux_sym__match_pattern_list_repeat1] = STATE(1292), - [sym__newline] = ACTIONS(3907), - [anon_sym_LBRACK] = ACTIONS(3909), - [anon_sym_RBRACK] = ACTIONS(3955), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3917), - [anon_sym_DOT_DOT] = ACTIONS(3957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3921), - [anon_sym_DOT_DOT_LT] = ACTIONS(3921), - [anon_sym_null] = ACTIONS(3923), - [anon_sym_true] = ACTIONS(3925), - [anon_sym_false] = ACTIONS(3925), - [aux_sym__val_number_decimal_token1] = ACTIONS(3927), - [aux_sym__val_number_decimal_token2] = ACTIONS(3929), - [aux_sym__val_number_decimal_token3] = ACTIONS(3931), - [aux_sym__val_number_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_token1] = ACTIONS(3935), - [aux_sym__val_number_token2] = ACTIONS(3935), - [aux_sym__val_number_token3] = ACTIONS(3935), - [aux_sym__val_number_token4] = ACTIONS(3937), - [aux_sym__val_number_token5] = ACTIONS(3937), - [aux_sym__val_number_token6] = ACTIONS(3937), - [anon_sym_0b] = ACTIONS(3939), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3943), - [anon_sym_DQUOTE] = ACTIONS(3945), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3951), + [sym_val_date] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, - [1243] = { - [sym_match_arm] = STATE(7113), - [sym_default_arm] = STATE(7113), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1243), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [1237] = { + [sym_match_arm] = STATE(7848), + [sym_default_arm] = STATE(7848), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1237), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1244] = { - [sym_match_arm] = STATE(7471), - [sym_default_arm] = STATE(7471), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1244), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3959), - [anon_sym_LPAREN] = ACTIONS(3962), - [anon_sym_DOLLAR] = ACTIONS(3965), - [anon_sym_LBRACE] = ACTIONS(3968), - [anon_sym__] = ACTIONS(3971), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3977), - [anon_sym_DOT_DOT_LT] = ACTIONS(3977), - [anon_sym_null] = ACTIONS(3980), - [anon_sym_true] = ACTIONS(3983), - [anon_sym_false] = ACTIONS(3983), - [aux_sym__val_number_decimal_token1] = ACTIONS(3986), - [aux_sym__val_number_decimal_token2] = ACTIONS(3989), - [aux_sym__val_number_decimal_token3] = ACTIONS(3992), - [aux_sym__val_number_decimal_token4] = ACTIONS(3995), - [aux_sym__val_number_token1] = ACTIONS(3998), - [aux_sym__val_number_token2] = ACTIONS(3998), - [aux_sym__val_number_token3] = ACTIONS(3998), - [aux_sym__val_number_token4] = ACTIONS(4001), - [aux_sym__val_number_token5] = ACTIONS(4001), - [aux_sym__val_number_token6] = ACTIONS(4001), - [anon_sym_0b] = ACTIONS(4004), - [anon_sym_0o] = ACTIONS(4007), - [anon_sym_0x] = ACTIONS(4007), - [sym_val_date] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4013), - [sym__str_single_quotes] = ACTIONS(4016), - [sym__str_back_ticks] = ACTIONS(4016), - [anon_sym_err_GT] = ACTIONS(4019), - [anon_sym_out_GT] = ACTIONS(4019), - [anon_sym_e_GT] = ACTIONS(4019), - [anon_sym_o_GT] = ACTIONS(4019), - [anon_sym_err_PLUSout_GT] = ACTIONS(4019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4019), - [anon_sym_o_PLUSe_GT] = ACTIONS(4019), - [anon_sym_e_PLUSo_GT] = ACTIONS(4019), - [anon_sym_err_GT_GT] = ACTIONS(4022), - [anon_sym_out_GT_GT] = ACTIONS(4022), - [anon_sym_e_GT_GT] = ACTIONS(4022), - [anon_sym_o_GT_GT] = ACTIONS(4022), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4022), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4022), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4022), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4022), - [aux_sym_unquoted_token1] = ACTIONS(4025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4028), + [1238] = { + [sym_comment] = STATE(1238), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(3), }, - [1245] = { - [sym_match_arm] = STATE(7142), - [sym_default_arm] = STATE(7142), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1245), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [1239] = { + [sym_comment] = STATE(1239), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(3777), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), + }, + [1240] = { + [sym_comment] = STATE(1240), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [1241] = { + [sym_comment] = STATE(1241), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(3), + }, + [1242] = { + [sym_match_arm] = STATE(7957), + [sym_default_arm] = STATE(7957), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1242), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1246] = { - [sym_match_arm] = STATE(6884), - [sym_default_arm] = STATE(6884), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1246), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [1243] = { + [sym_expr_parenthesized] = STATE(7053), + [sym_val_range] = STATE(8451), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(8451), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(6676), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6076), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(8454), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1243), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), + [anon_sym_DOT_DOT_LT] = ACTIONS(3895), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_record_entry_token1] = ACTIONS(3501), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, - [1247] = { - [sym_match_arm] = STATE(6888), - [sym_default_arm] = STATE(6888), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1247), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [1244] = { + [sym_match_arm] = STATE(7798), + [sym_default_arm] = STATE(7798), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1244), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1248] = { - [sym_match_arm] = STATE(6863), - [sym_default_arm] = STATE(6863), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), - [sym_comment] = STATE(1248), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [1245] = { + [sym_match_arm] = STATE(8096), + [sym_default_arm] = STATE(8096), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1245), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym_DOLLAR] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3974), + [anon_sym__] = ACTIONS(3977), + [anon_sym_DOT_DOT] = ACTIONS(3980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), + [anon_sym_DOT_DOT_LT] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3986), + [anon_sym_true] = ACTIONS(3989), + [anon_sym_false] = ACTIONS(3989), + [aux_sym__val_number_decimal_token1] = ACTIONS(3992), + [aux_sym__val_number_decimal_token2] = ACTIONS(3995), + [aux_sym__val_number_decimal_token3] = ACTIONS(3998), + [aux_sym__val_number_decimal_token4] = ACTIONS(4001), + [aux_sym__val_number_token1] = ACTIONS(4004), + [aux_sym__val_number_token2] = ACTIONS(4004), + [aux_sym__val_number_token3] = ACTIONS(4004), + [aux_sym__val_number_token4] = ACTIONS(4007), + [aux_sym__val_number_token5] = ACTIONS(4007), + [aux_sym__val_number_token6] = ACTIONS(4007), + [anon_sym_0b] = ACTIONS(4010), + [anon_sym_0o] = ACTIONS(4013), + [anon_sym_0x] = ACTIONS(4013), + [sym_val_date] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4019), + [sym__str_single_quotes] = ACTIONS(4022), + [sym__str_back_ticks] = ACTIONS(4022), + [anon_sym_err_GT] = ACTIONS(4025), + [anon_sym_out_GT] = ACTIONS(4025), + [anon_sym_e_GT] = ACTIONS(4025), + [anon_sym_o_GT] = ACTIONS(4025), + [anon_sym_err_PLUSout_GT] = ACTIONS(4025), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4025), + [anon_sym_o_PLUSe_GT] = ACTIONS(4025), + [anon_sym_e_PLUSo_GT] = ACTIONS(4025), + [anon_sym_err_GT_GT] = ACTIONS(4028), + [anon_sym_out_GT_GT] = ACTIONS(4028), + [anon_sym_e_GT_GT] = ACTIONS(4028), + [anon_sym_o_GT_GT] = ACTIONS(4028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4028), + [aux_sym_unquoted_token1] = ACTIONS(4031), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4034), + }, + [1246] = { + [sym_match_arm] = STATE(7964), + [sym_default_arm] = STATE(7964), + [sym_match_pattern] = STATE(8672), + [sym__match_pattern] = STATE(6546), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7057), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5682), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1246), + [aux_sym_ctrl_match_repeat1] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym__] = ACTIONS(3703), + [anon_sym_DOT_DOT] = ACTIONS(3705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), + [anon_sym_DOT_DOT_LT] = ACTIONS(3707), + [anon_sym_null] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3713), + [aux_sym__val_number_decimal_token2] = ACTIONS(3715), + [aux_sym__val_number_decimal_token3] = ACTIONS(3717), + [aux_sym__val_number_decimal_token4] = ACTIONS(3719), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3721), + [aux_sym__val_number_token5] = ACTIONS(3721), + [aux_sym__val_number_token6] = ACTIONS(3721), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), + [sym_val_date] = ACTIONS(3723), [anon_sym_DQUOTE] = ACTIONS(435), [sym__str_single_quotes] = ACTIONS(437), [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(439), }, - [1249] = { - [sym_comment] = STATE(1249), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(4031), - [sym_duration_unit] = ACTIONS(4033), - [anon_sym_POUND] = ACTIONS(3), + [1247] = { + [sym__match_pattern_expression] = STATE(3251), + [sym__match_pattern_value] = STATE(3269), + [sym__match_pattern_list] = STATE(3270), + [sym__match_pattern_rest] = STATE(8519), + [sym__match_pattern_record] = STATE(3271), + [sym_expr_parenthesized] = STATE(3049), + [sym_val_range] = STATE(3269), + [sym__val_range] = STATE(8495), + [sym_val_nothing] = STATE(3273), + [sym_val_bool] = STATE(3216), + [sym_val_variable] = STATE(3050), + [sym_val_number] = STATE(3273), + [sym__val_number_decimal] = STATE(2832), + [sym__val_number] = STATE(3264), + [sym_val_duration] = STATE(3273), + [sym_val_filesize] = STATE(3273), + [sym_val_binary] = STATE(3273), + [sym_val_string] = STATE(3273), + [sym__raw_str] = STATE(3279), + [sym__str_double_quotes] = STATE(3279), + [sym_val_list] = STATE(8540), + [sym_val_table] = STATE(3273), + [sym__unquoted_in_list] = STATE(3251), + [sym__unquoted_anonymous_prefix] = STATE(8543), + [sym_comment] = STATE(1247), + [aux_sym_shebang_repeat1] = STATE(7165), + [aux_sym__match_pattern_list_repeat1] = STATE(1264), + [sym__newline] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_RBRACK] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_DOLLAR] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), + [anon_sym_DOT_DOT_LT] = ACTIONS(3933), + [anon_sym_null] = ACTIONS(3935), + [anon_sym_true] = ACTIONS(3937), + [anon_sym_false] = ACTIONS(3937), + [aux_sym__val_number_decimal_token1] = ACTIONS(3939), + [aux_sym__val_number_decimal_token2] = ACTIONS(3941), + [aux_sym__val_number_decimal_token3] = ACTIONS(3943), + [aux_sym__val_number_decimal_token4] = ACTIONS(3945), + [aux_sym__val_number_token1] = ACTIONS(3947), + [aux_sym__val_number_token2] = ACTIONS(3947), + [aux_sym__val_number_token3] = ACTIONS(3947), + [aux_sym__val_number_token4] = ACTIONS(3949), + [aux_sym__val_number_token5] = ACTIONS(3949), + [aux_sym__val_number_token6] = ACTIONS(3949), + [anon_sym_0b] = ACTIONS(3951), + [anon_sym_0o] = ACTIONS(3953), + [anon_sym_0x] = ACTIONS(3953), + [sym_val_date] = ACTIONS(3955), + [anon_sym_DQUOTE] = ACTIONS(3957), + [sym__str_single_quotes] = ACTIONS(3959), + [sym__str_back_ticks] = ACTIONS(3959), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3963), + }, + [1248] = { + [sym_comment] = STATE(1248), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(4041), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(3), + }, + [1249] = { + [sym_comment] = STATE(1249), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_SLASH] = ACTIONS(1669), + [anon_sym_mod] = ACTIONS(1671), + [anon_sym_SLASH_SLASH] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_bit_DASHshl] = ACTIONS(1671), + [anon_sym_bit_DASHshr] = ACTIONS(1671), + [anon_sym_EQ_TILDE] = ACTIONS(1671), + [anon_sym_BANG_TILDE] = ACTIONS(1671), + [anon_sym_bit_DASHand] = ACTIONS(1671), + [anon_sym_bit_DASHxor] = ACTIONS(1671), + [anon_sym_bit_DASHor] = ACTIONS(1671), + [anon_sym_and] = ACTIONS(1671), + [anon_sym_xor] = ACTIONS(1671), + [anon_sym_or] = ACTIONS(1671), + [anon_sym_in] = ACTIONS(1671), + [anon_sym_not_DASHin] = ACTIONS(1671), + [anon_sym_starts_DASHwith] = ACTIONS(1671), + [anon_sym_ends_DASHwith] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_GT_EQ] = ACTIONS(1671), + [aux_sym_cmd_identifier_token41] = ACTIONS(1669), + [sym__newline] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1669), + [anon_sym_err_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_GT_PIPE] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_in2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1669), + [anon_sym_xor2] = ACTIONS(1669), + [anon_sym_or2] = ACTIONS(1669), + [anon_sym_not_DASHin2] = ACTIONS(1669), + [anon_sym_starts_DASHwith2] = ACTIONS(1669), + [anon_sym_ends_DASHwith2] = ACTIONS(1669), + [anon_sym_EQ_EQ2] = ACTIONS(1669), + [anon_sym_BANG_EQ2] = ACTIONS(1669), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1669), + [anon_sym_GT_EQ2] = ACTIONS(1669), + [anon_sym_EQ_TILDE2] = ACTIONS(1669), + [anon_sym_BANG_TILDE2] = ACTIONS(1669), + [anon_sym_STAR_STAR2] = ACTIONS(1669), + [anon_sym_PLUS_PLUS2] = ACTIONS(1669), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1669), + [anon_sym_SLASH_SLASH2] = ACTIONS(1669), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1669), + [anon_sym_bit_DASHshr2] = ACTIONS(1669), + [anon_sym_bit_DASHand2] = ACTIONS(1669), + [anon_sym_bit_DASHxor2] = ACTIONS(1669), + [anon_sym_bit_DASHor2] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_POUND] = ACTIONS(3), }, [1250] = { - [sym_match_arm] = STATE(7296), - [sym_default_arm] = STATE(7296), - [sym_match_pattern] = STATE(8018), - [sym__match_pattern] = STATE(6141), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6388), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5382), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_expr_parenthesized] = STATE(7308), + [sym_val_range] = STATE(8668), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(8668), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(6676), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6076), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(8425), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1250), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym__] = ACTIONS(3619), - [anon_sym_DOT_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3623), - [anon_sym_DOT_DOT_LT] = ACTIONS(3623), - [anon_sym_null] = ACTIONS(3625), - [anon_sym_true] = ACTIONS(3627), - [anon_sym_false] = ACTIONS(3627), - [aux_sym__val_number_decimal_token1] = ACTIONS(3629), - [aux_sym__val_number_decimal_token2] = ACTIONS(3631), - [aux_sym__val_number_decimal_token3] = ACTIONS(3633), - [aux_sym__val_number_decimal_token4] = ACTIONS(3635), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), + [anon_sym_DOT_DOT_LT] = ACTIONS(3895), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3639), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1251] = { - [sym_expr_parenthesized] = STATE(6732), - [sym_val_range] = STATE(7855), - [sym__val_range] = STATE(7747), - [sym__value] = STATE(7855), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(3697), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(7877), - [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1251), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3877), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(3881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3883), - [anon_sym_DOT_DOT_LT] = ACTIONS(3883), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_STAR_STAR] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_mod] = ACTIONS(1663), + [anon_sym_SLASH_SLASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_bit_DASHshl] = ACTIONS(1663), + [anon_sym_bit_DASHshr] = ACTIONS(1663), + [anon_sym_EQ_TILDE] = ACTIONS(1663), + [anon_sym_BANG_TILDE] = ACTIONS(1663), + [anon_sym_bit_DASHand] = ACTIONS(1663), + [anon_sym_bit_DASHxor] = ACTIONS(1663), + [anon_sym_bit_DASHor] = ACTIONS(1663), + [anon_sym_and] = ACTIONS(1663), + [anon_sym_xor] = ACTIONS(1663), + [anon_sym_or] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_not_DASHin] = ACTIONS(1663), + [anon_sym_starts_DASHwith] = ACTIONS(1663), + [anon_sym_ends_DASHwith] = ACTIONS(1663), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_GT_EQ] = ACTIONS(1663), + [aux_sym_cmd_identifier_token41] = ACTIONS(1661), + [sym__newline] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_err_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_GT_PIPE] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_in2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1661), + [anon_sym_GT_EQ2] = ACTIONS(1661), + [anon_sym_EQ_TILDE2] = ACTIONS(1661), + [anon_sym_BANG_TILDE2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1661), + [anon_sym_bit_DASHshr2] = ACTIONS(1661), + [anon_sym_bit_DASHand2] = ACTIONS(1661), + [anon_sym_bit_DASHxor2] = ACTIONS(1661), + [anon_sym_bit_DASHor2] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_POUND] = ACTIONS(3), }, [1252] = { - [sym__expr_parenthesized_immediate] = STATE(1519), + [sym__expr_parenthesized_immediate] = STATE(1558), [sym__immediate_decimal] = STATE(1447), - [sym_val_variable] = STATE(1519), + [sym_val_variable] = STATE(1558), [sym_comment] = STATE(1252), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4037), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4039), - [aux_sym__immediate_decimal_token3] = ACTIONS(4041), - [aux_sym__immediate_decimal_token4] = ACTIONS(4043), - [aux_sym__immediate_decimal_token5] = ACTIONS(4045), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1603), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(4043), + [anon_sym_DOT] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [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(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1565), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1579), }, [1253] = { [sym_comment] = STATE(1253), - [anon_sym_STAR_STAR] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1639), - [anon_sym_SLASH_SLASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_bit_DASHshl] = ACTIONS(1639), - [anon_sym_bit_DASHshr] = ACTIONS(1639), - [anon_sym_EQ_TILDE] = ACTIONS(1639), - [anon_sym_BANG_TILDE] = ACTIONS(1639), - [anon_sym_bit_DASHand] = ACTIONS(1639), - [anon_sym_bit_DASHxor] = ACTIONS(1639), - [anon_sym_bit_DASHor] = ACTIONS(1639), - [anon_sym_and] = ACTIONS(1639), - [anon_sym_xor] = ACTIONS(1639), - [anon_sym_or] = ACTIONS(1639), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_not_DASHin] = ACTIONS(1639), - [anon_sym_starts_DASHwith] = ACTIONS(1639), - [anon_sym_ends_DASHwith] = ACTIONS(1639), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1639), - [aux_sym_cmd_identifier_token41] = ACTIONS(1637), - [sym__newline] = ACTIONS(1637), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_err_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_GT_PIPE] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1637), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_in2] = ACTIONS(1637), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1637), - [anon_sym_xor2] = ACTIONS(1637), - [anon_sym_or2] = ACTIONS(1637), - [anon_sym_not_DASHin2] = ACTIONS(1637), - [anon_sym_starts_DASHwith2] = ACTIONS(1637), - [anon_sym_ends_DASHwith2] = ACTIONS(1637), - [anon_sym_EQ_EQ2] = ACTIONS(1637), - [anon_sym_BANG_EQ2] = ACTIONS(1637), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1637), - [anon_sym_GT_EQ2] = ACTIONS(1637), - [anon_sym_EQ_TILDE2] = ACTIONS(1637), - [anon_sym_BANG_TILDE2] = ACTIONS(1637), - [anon_sym_STAR_STAR2] = ACTIONS(1637), - [anon_sym_PLUS_PLUS2] = ACTIONS(1637), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1637), - [anon_sym_SLASH_SLASH2] = ACTIONS(1637), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1637), - [anon_sym_bit_DASHshr2] = ACTIONS(1637), - [anon_sym_bit_DASHand2] = ACTIONS(1637), - [anon_sym_bit_DASHxor2] = ACTIONS(1637), - [anon_sym_bit_DASHor2] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_bit_DASHshl] = ACTIONS(1713), + [anon_sym_bit_DASHshr] = ACTIONS(1713), + [anon_sym_EQ_TILDE] = ACTIONS(1713), + [anon_sym_BANG_TILDE] = ACTIONS(1713), + [anon_sym_bit_DASHand] = ACTIONS(1713), + [anon_sym_bit_DASHxor] = ACTIONS(1713), + [anon_sym_bit_DASHor] = ACTIONS(1713), + [anon_sym_and] = ACTIONS(1713), + [anon_sym_xor] = ACTIONS(1713), + [anon_sym_or] = ACTIONS(1713), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_not_DASHin] = ACTIONS(1713), + [anon_sym_starts_DASHwith] = ACTIONS(1713), + [anon_sym_ends_DASHwith] = ACTIONS(1713), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1713), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1713), [anon_sym_POUND] = ACTIONS(3), }, [1254] = { [sym_comment] = STATE(1254), - [anon_sym_STAR_STAR] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1647), - [anon_sym_SLASH_SLASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_bit_DASHshl] = ACTIONS(1647), - [anon_sym_bit_DASHshr] = ACTIONS(1647), - [anon_sym_EQ_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1647), - [anon_sym_bit_DASHand] = ACTIONS(1647), - [anon_sym_bit_DASHxor] = ACTIONS(1647), - [anon_sym_bit_DASHor] = ACTIONS(1647), - [anon_sym_and] = ACTIONS(1647), - [anon_sym_xor] = ACTIONS(1647), - [anon_sym_or] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_not_DASHin] = ACTIONS(1647), - [anon_sym_starts_DASHwith] = ACTIONS(1647), - [anon_sym_ends_DASHwith] = ACTIONS(1647), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1647), - [aux_sym_cmd_identifier_token41] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1645), - [anon_sym_xor2] = ACTIONS(1645), - [anon_sym_or2] = ACTIONS(1645), - [anon_sym_not_DASHin2] = ACTIONS(1645), - [anon_sym_starts_DASHwith2] = ACTIONS(1645), - [anon_sym_ends_DASHwith2] = ACTIONS(1645), - [anon_sym_EQ_EQ2] = ACTIONS(1645), - [anon_sym_BANG_EQ2] = ACTIONS(1645), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1645), - [anon_sym_GT_EQ2] = ACTIONS(1645), - [anon_sym_EQ_TILDE2] = ACTIONS(1645), - [anon_sym_BANG_TILDE2] = ACTIONS(1645), - [anon_sym_STAR_STAR2] = ACTIONS(1645), - [anon_sym_PLUS_PLUS2] = ACTIONS(1645), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1645), - [anon_sym_SLASH_SLASH2] = ACTIONS(1645), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1645), - [anon_sym_bit_DASHshr2] = ACTIONS(1645), - [anon_sym_bit_DASHand2] = ACTIONS(1645), - [anon_sym_bit_DASHxor2] = ACTIONS(1645), - [anon_sym_bit_DASHor2] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_bit_DASHshl] = ACTIONS(1769), + [anon_sym_bit_DASHshr] = ACTIONS(1769), + [anon_sym_EQ_TILDE] = ACTIONS(1769), + [anon_sym_BANG_TILDE] = ACTIONS(1769), + [anon_sym_bit_DASHand] = ACTIONS(1769), + [anon_sym_bit_DASHxor] = ACTIONS(1769), + [anon_sym_bit_DASHor] = ACTIONS(1769), + [anon_sym_and] = ACTIONS(1769), + [anon_sym_xor] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_not_DASHin] = ACTIONS(1769), + [anon_sym_starts_DASHwith] = ACTIONS(1769), + [anon_sym_ends_DASHwith] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1769), + [aux_sym_cmd_identifier_token41] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_in2] = ACTIONS(1767), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1767), + [anon_sym_xor2] = ACTIONS(1767), + [anon_sym_or2] = ACTIONS(1767), + [anon_sym_not_DASHin2] = ACTIONS(1767), + [anon_sym_starts_DASHwith2] = ACTIONS(1767), + [anon_sym_ends_DASHwith2] = ACTIONS(1767), + [anon_sym_EQ_EQ2] = ACTIONS(1767), + [anon_sym_BANG_EQ2] = ACTIONS(1767), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1767), + [anon_sym_GT_EQ2] = ACTIONS(1767), + [anon_sym_EQ_TILDE2] = ACTIONS(1767), + [anon_sym_BANG_TILDE2] = ACTIONS(1767), + [anon_sym_STAR_STAR2] = ACTIONS(1767), + [anon_sym_PLUS_PLUS2] = ACTIONS(1767), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1767), + [anon_sym_SLASH_SLASH2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1767), + [anon_sym_bit_DASHshr2] = ACTIONS(1767), + [anon_sym_bit_DASHand2] = ACTIONS(1767), + [anon_sym_bit_DASHxor2] = ACTIONS(1767), + [anon_sym_bit_DASHor2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), }, [1255] = { + [sym_expr_parenthesized] = STATE(7053), + [sym_val_range] = STATE(8451), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(8451), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(6676), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6076), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(8454), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1255), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1783), - [anon_sym_SLASH_SLASH] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_bit_DASHshl] = ACTIONS(1783), - [anon_sym_bit_DASHshr] = ACTIONS(1783), - [anon_sym_EQ_TILDE] = ACTIONS(1783), - [anon_sym_BANG_TILDE] = ACTIONS(1783), - [anon_sym_bit_DASHand] = ACTIONS(1783), - [anon_sym_bit_DASHxor] = ACTIONS(1783), - [anon_sym_bit_DASHor] = ACTIONS(1783), - [anon_sym_and] = ACTIONS(1783), - [anon_sym_xor] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_not_DASHin] = ACTIONS(1783), - [anon_sym_starts_DASHwith] = ACTIONS(1783), - [anon_sym_ends_DASHwith] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1783), - [aux_sym_cmd_identifier_token41] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(3893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), + [anon_sym_DOT_DOT_LT] = ACTIONS(3895), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1256] = { [sym_comment] = STATE(1256), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_err_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_GT_PIPE] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_in2] = ACTIONS(1695), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1695), - [anon_sym_xor2] = ACTIONS(1695), - [anon_sym_or2] = ACTIONS(1695), - [anon_sym_not_DASHin2] = ACTIONS(1695), - [anon_sym_starts_DASHwith2] = ACTIONS(1695), - [anon_sym_ends_DASHwith2] = ACTIONS(1695), - [anon_sym_EQ_EQ2] = ACTIONS(1695), - [anon_sym_BANG_EQ2] = ACTIONS(1695), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1695), - [anon_sym_GT_EQ2] = ACTIONS(1695), - [anon_sym_EQ_TILDE2] = ACTIONS(1695), - [anon_sym_BANG_TILDE2] = ACTIONS(1695), - [anon_sym_STAR_STAR2] = ACTIONS(1695), - [anon_sym_PLUS_PLUS2] = ACTIONS(1695), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1695), - [anon_sym_SLASH_SLASH2] = ACTIONS(1695), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1695), - [anon_sym_bit_DASHshr2] = ACTIONS(1695), - [anon_sym_bit_DASHand2] = ACTIONS(1695), - [anon_sym_bit_DASHxor2] = ACTIONS(1695), - [anon_sym_bit_DASHor2] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(3057), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(4047), - [sym_duration_unit] = ACTIONS(4049), + [anon_sym_STAR_STAR] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3067), + [anon_sym_bit_DASHshl] = ACTIONS(3067), + [anon_sym_bit_DASHshr] = ACTIONS(3067), + [anon_sym_EQ_TILDE] = ACTIONS(3067), + [anon_sym_BANG_TILDE] = ACTIONS(3067), + [anon_sym_bit_DASHand] = ACTIONS(3067), + [anon_sym_bit_DASHxor] = ACTIONS(3067), + [anon_sym_bit_DASHor] = ACTIONS(3067), + [anon_sym_and] = ACTIONS(3067), + [anon_sym_xor] = ACTIONS(3067), + [anon_sym_or] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3067), + [anon_sym_not_DASHin] = ACTIONS(3067), + [anon_sym_starts_DASHwith] = ACTIONS(3067), + [anon_sym_ends_DASHwith] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3067), + [aux_sym_cmd_identifier_token41] = ACTIONS(3071), + [sym__newline] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(3047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), + [sym_filesize_unit] = ACTIONS(4055), + [sym_duration_unit] = ACTIONS(4057), [anon_sym_POUND] = ACTIONS(3), }, [1257] = { [sym_comment] = STATE(1257), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1747), - [anon_sym_SLASH_SLASH] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_bit_DASHshl] = ACTIONS(1747), - [anon_sym_bit_DASHshr] = ACTIONS(1747), - [anon_sym_EQ_TILDE] = ACTIONS(1747), - [anon_sym_BANG_TILDE] = ACTIONS(1747), - [anon_sym_bit_DASHand] = ACTIONS(1747), - [anon_sym_bit_DASHxor] = ACTIONS(1747), - [anon_sym_bit_DASHor] = ACTIONS(1747), - [anon_sym_and] = ACTIONS(1747), - [anon_sym_xor] = ACTIONS(1747), - [anon_sym_or] = ACTIONS(1747), - [anon_sym_in] = ACTIONS(1747), - [anon_sym_not_DASHin] = ACTIONS(1747), - [anon_sym_starts_DASHwith] = ACTIONS(1747), - [anon_sym_ends_DASHwith] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1747), - [aux_sym_cmd_identifier_token41] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(3), + [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(1669), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4059), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4061), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1258] = { - [sym_expr_parenthesized] = STATE(6664), - [sym_val_range] = STATE(7990), - [sym__val_range] = STATE(7747), - [sym__value] = STATE(7990), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(3697), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(7998), - [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1258), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3877), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(3881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3883), - [anon_sym_DOT_DOT_LT] = ACTIONS(3883), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(4063), + [aux_sym__immediate_decimal_token2] = ACTIONS(4065), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), }, [1259] = { - [sym__expr_parenthesized_immediate] = STATE(1805), - [sym__immediate_decimal] = STATE(1645), - [sym_val_variable] = STATE(1805), + [sym__expr_parenthesized_immediate] = STATE(1671), + [sym__immediate_decimal] = STATE(1504), + [sym_val_variable] = STATE(1671), [sym_comment] = STATE(1259), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(4053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(4055), - [aux_sym__immediate_decimal_token3] = ACTIONS(4057), - [aux_sym__immediate_decimal_token4] = ACTIONS(4059), - [aux_sym__immediate_decimal_token5] = ACTIONS(4061), - [anon_sym_null] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [aux_sym__val_number_token4] = ACTIONS(1677), - [aux_sym__val_number_token5] = ACTIONS(1677), - [aux_sym__val_number_token6] = ACTIONS(1677), - [anon_sym_0b] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1675), - [anon_sym_0x] = ACTIONS(1675), - [sym_val_date] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [aux_sym_unquoted_token1] = ACTIONS(1675), - [aux_sym_unquoted_token2] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(4067), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(4071), + [aux_sym__immediate_decimal_token3] = ACTIONS(4073), + [aux_sym__immediate_decimal_token4] = ACTIONS(4075), + [aux_sym__immediate_decimal_token5] = ACTIONS(4077), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1565), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1579), }, [1260] = { + [sym__expr_parenthesized_immediate] = STATE(1779), + [sym__immediate_decimal] = STATE(1608), + [sym_val_variable] = STATE(1779), [sym_comment] = STATE(1260), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(4081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(4083), + [aux_sym__immediate_decimal_token3] = ACTIONS(4085), + [aux_sym__immediate_decimal_token4] = ACTIONS(4087), + [aux_sym__immediate_decimal_token5] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1565), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1579), + }, + [1261] = { + [sym__expr_parenthesized_immediate] = STATE(1797), + [sym__immediate_decimal] = STATE(1626), + [sym_val_variable] = STATE(1797), + [sym_comment] = STATE(1261), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(1657), [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4063), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4065), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), + [anon_sym_LPAREN2] = ACTIONS(4081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1657), + [anon_sym_DOT_DOT_LT] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(4083), + [aux_sym__immediate_decimal_token3] = ACTIONS(4085), + [aux_sym__immediate_decimal_token4] = ACTIONS(4087), + [aux_sym__immediate_decimal_token5] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(1657), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), + [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(1657), + [aux_sym__val_number_token2] = ACTIONS(1657), + [aux_sym__val_number_token3] = ACTIONS(1657), + [aux_sym__val_number_token4] = ACTIONS(1657), + [aux_sym__val_number_token5] = ACTIONS(1657), + [aux_sym__val_number_token6] = ACTIONS(1657), [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), [anon_sym_0o] = ACTIONS(1645), [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), + [sym_val_date] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym__str_single_quotes] = ACTIONS(1657), + [sym__str_back_ticks] = ACTIONS(1657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1657), [anon_sym_err_GT] = ACTIONS(1645), [anon_sym_out_GT] = ACTIONS(1645), [anon_sym_e_GT] = ACTIONS(1645), @@ -206556,2867 +209331,2790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), [anon_sym_o_PLUSe_GT] = ACTIONS(1645), [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), - }, - [1261] = { - [sym__expr_parenthesized_immediate] = STATE(1632), - [sym__immediate_decimal] = STATE(1493), - [sym_val_variable] = STATE(1632), - [sym_comment] = STATE(1261), - [ts_builtin_sym_end] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(4067), - [anon_sym_DOT] = ACTIONS(4069), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4071), - [aux_sym__immediate_decimal_token3] = ACTIONS(4073), - [aux_sym__immediate_decimal_token4] = ACTIONS(4075), - [aux_sym__immediate_decimal_token5] = ACTIONS(4077), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1603), + [sym_raw_string_begin] = ACTIONS(1657), }, [1262] = { - [sym__expr_parenthesized_immediate] = STATE(1514), - [sym__immediate_decimal] = STATE(1517), - [sym_val_variable] = STATE(1514), + [sym__expr_parenthesized_immediate] = STATE(1592), + [sym__immediate_decimal] = STATE(1557), + [sym_val_variable] = STATE(1592), [sym_comment] = STATE(1262), - [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_LBRACK] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4079), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [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(1673), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [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(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), - [anon_sym_0b] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1663), - [anon_sym_0x] = ACTIONS(1663), - [sym_val_date] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1673), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1673), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_DOT_DOT] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(4043), + [anon_sym_DOT] = ACTIONS(4091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(4093), + [aux_sym__immediate_decimal_token3] = ACTIONS(4095), + [aux_sym__immediate_decimal_token4] = ACTIONS(4097), + [aux_sym__immediate_decimal_token5] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [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(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [sym_val_date] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [aux_sym_unquoted_token1] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1643), }, [1263] = { + [sym__val_range] = STATE(8529), + [sym__value] = STATE(5842), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(5885), + [sym_val_variable] = STATE(3698), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3508), + [sym__str_double_quotes] = STATE(3508), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(5850), + [sym__unquoted_anonymous_prefix] = STATE(8531), [sym_comment] = STATE(1263), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(4089), - [aux_sym__immediate_decimal_token2] = ACTIONS(4091), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_LPAREN] = ACTIONS(4103), + [anon_sym_DOLLAR] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_DOT_DOT] = ACTIONS(4109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), + [anon_sym_DOT_DOT_LT] = ACTIONS(4111), + [anon_sym_null] = ACTIONS(4113), + [anon_sym_true] = ACTIONS(4115), + [anon_sym_false] = ACTIONS(4115), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(4129), + [sym__str_single_quotes] = ACTIONS(4131), + [sym__str_back_ticks] = ACTIONS(4131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4133), }, [1264] = { - [sym__expr_parenthesized_immediate] = STATE(1836), - [sym__immediate_decimal] = STATE(1600), - [sym_val_variable] = STATE(1836), + [sym__match_pattern_expression] = STATE(3251), + [sym__match_pattern_value] = STATE(3269), + [sym__match_pattern_list] = STATE(3270), + [sym__match_pattern_rest] = STATE(8241), + [sym__match_pattern_record] = STATE(3271), + [sym_expr_parenthesized] = STATE(3049), + [sym_val_range] = STATE(3269), + [sym__val_range] = STATE(8495), + [sym_val_nothing] = STATE(3273), + [sym_val_bool] = STATE(3216), + [sym_val_variable] = STATE(3050), + [sym_val_number] = STATE(3273), + [sym__val_number_decimal] = STATE(2832), + [sym__val_number] = STATE(3264), + [sym_val_duration] = STATE(3273), + [sym_val_filesize] = STATE(3273), + [sym_val_binary] = STATE(3273), + [sym_val_string] = STATE(3273), + [sym__raw_str] = STATE(3279), + [sym__str_double_quotes] = STATE(3279), + [sym_val_table] = STATE(3273), + [sym__unquoted_in_list] = STATE(3251), + [sym__unquoted_anonymous_prefix] = STATE(8543), [sym_comment] = STATE(1264), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(4053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4055), - [aux_sym__immediate_decimal_token3] = ACTIONS(4057), - [aux_sym__immediate_decimal_token4] = ACTIONS(4059), - [aux_sym__immediate_decimal_token5] = ACTIONS(4061), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1603), + [aux_sym__match_pattern_list_repeat1] = STATE(1343), + [anon_sym_LBRACK] = ACTIONS(4135), + [anon_sym_RBRACK] = ACTIONS(4137), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_DOLLAR] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_DOT_DOT] = ACTIONS(4139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), + [anon_sym_DOT_DOT_LT] = ACTIONS(3933), + [anon_sym_null] = ACTIONS(3935), + [anon_sym_true] = ACTIONS(3937), + [anon_sym_false] = ACTIONS(3937), + [aux_sym__val_number_decimal_token1] = ACTIONS(3939), + [aux_sym__val_number_decimal_token2] = ACTIONS(3941), + [aux_sym__val_number_decimal_token3] = ACTIONS(3943), + [aux_sym__val_number_decimal_token4] = ACTIONS(3945), + [aux_sym__val_number_token1] = ACTIONS(3947), + [aux_sym__val_number_token2] = ACTIONS(3947), + [aux_sym__val_number_token3] = ACTIONS(3947), + [aux_sym__val_number_token4] = ACTIONS(3949), + [aux_sym__val_number_token5] = ACTIONS(3949), + [aux_sym__val_number_token6] = ACTIONS(3949), + [anon_sym_0b] = ACTIONS(3951), + [anon_sym_0o] = ACTIONS(3953), + [anon_sym_0x] = ACTIONS(3953), + [sym_val_date] = ACTIONS(3955), + [anon_sym_DQUOTE] = ACTIONS(3957), + [sym__str_single_quotes] = ACTIONS(3959), + [sym__str_back_ticks] = ACTIONS(3959), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3963), }, [1265] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6066), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(6753), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5370), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6072), - [sym__unquoted_anonymous_prefix] = STATE(7973), [sym_comment] = STATE(1265), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [aux_sym__val_number_decimal_token1] = ACTIONS(4109), - [aux_sym__val_number_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token3] = ACTIONS(4113), - [aux_sym__val_number_decimal_token4] = ACTIONS(4115), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4117), - [aux_sym__val_number_token5] = ACTIONS(4117), - [aux_sym__val_number_token6] = ACTIONS(4117), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4119), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [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(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4143), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1266] = { [sym_comment] = STATE(1266), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4065), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(4145), + [aux_sym__immediate_decimal_token2] = ACTIONS(4147), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), }, [1267] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6036), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5336), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6038), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__expr_parenthesized_immediate] = STATE(8148), [sym_comment] = STATE(1267), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [aux_sym__val_number_decimal_token1] = ACTIONS(4127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4129), - [aux_sym__val_number_decimal_token3] = ACTIONS(4131), - [aux_sym__val_number_decimal_token4] = ACTIONS(4133), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4135), - [aux_sym__val_number_token5] = ACTIONS(4135), - [aux_sym__val_number_token6] = ACTIONS(4135), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT2] = ACTIONS(4151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT] = ACTIONS(1687), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4153), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4153), + [anon_sym_null] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1699), + [aux_sym__val_number_token5] = ACTIONS(1699), + [aux_sym__val_number_token6] = ACTIONS(1699), + [anon_sym_0b] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(4155), + [sym_duration_unit] = ACTIONS(4157), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [sym_val_date] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token1] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(4159), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), }, [1268] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(5526), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7529), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5637), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(5549), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym_cell_path] = STATE(1475), + [sym_path] = STATE(1425), [sym_comment] = STATE(1268), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4141), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [anon_sym_true] = ACTIONS(4149), - [anon_sym_false] = ACTIONS(4149), - [aux_sym__val_number_decimal_token1] = ACTIONS(4151), - [aux_sym__val_number_decimal_token2] = ACTIONS(4153), - [aux_sym__val_number_decimal_token3] = ACTIONS(4155), - [aux_sym__val_number_decimal_token4] = ACTIONS(4157), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4159), - [aux_sym__val_number_token5] = ACTIONS(4159), - [aux_sym__val_number_token6] = ACTIONS(4159), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4161), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [aux_sym_cell_path_repeat1] = STATE(1354), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_STAR2] = ACTIONS(969), + [anon_sym_and2] = ACTIONS(971), + [anon_sym_xor2] = ACTIONS(971), + [anon_sym_or2] = ACTIONS(971), + [anon_sym_not_DASHin2] = ACTIONS(971), + [anon_sym_starts_DASHwith2] = ACTIONS(971), + [anon_sym_ends_DASHwith2] = ACTIONS(971), + [anon_sym_EQ_EQ2] = ACTIONS(971), + [anon_sym_BANG_EQ2] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_LT_EQ2] = ACTIONS(971), + [anon_sym_GT_EQ2] = ACTIONS(971), + [anon_sym_EQ_TILDE2] = ACTIONS(971), + [anon_sym_BANG_TILDE2] = ACTIONS(971), + [anon_sym_STAR_STAR2] = ACTIONS(971), + [anon_sym_PLUS_PLUS2] = ACTIONS(969), + [anon_sym_SLASH2] = ACTIONS(969), + [anon_sym_mod2] = ACTIONS(971), + [anon_sym_SLASH_SLASH2] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_bit_DASHshl2] = ACTIONS(971), + [anon_sym_bit_DASHshr2] = ACTIONS(971), + [anon_sym_bit_DASHand2] = ACTIONS(971), + [anon_sym_bit_DASHxor2] = ACTIONS(971), + [anon_sym_bit_DASHor2] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [aux_sym_record_entry_token1] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), }, [1269] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6066), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5336), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6072), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6494), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(7663), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5938), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6501), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1269), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [aux_sym__val_number_decimal_token1] = ACTIONS(4127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4129), - [aux_sym__val_number_decimal_token3] = ACTIONS(4131), - [aux_sym__val_number_decimal_token4] = ACTIONS(4133), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4135), - [aux_sym__val_number_token5] = ACTIONS(4135), - [aux_sym__val_number_token6] = ACTIONS(4135), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [aux_sym__val_number_decimal_token1] = ACTIONS(4179), + [aux_sym__val_number_decimal_token2] = ACTIONS(4181), + [aux_sym__val_number_decimal_token3] = ACTIONS(4183), + [aux_sym__val_number_decimal_token4] = ACTIONS(4185), + [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(4187), + [aux_sym__val_number_token5] = ACTIONS(4187), + [aux_sym__val_number_token6] = ACTIONS(4187), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4189), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1270] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(5611), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7529), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5637), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(5615), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym__expr_parenthesized_immediate] = STATE(1777), + [sym__immediate_decimal] = STATE(1778), + [sym_val_variable] = STATE(1777), [sym_comment] = STATE(1270), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4141), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [anon_sym_true] = ACTIONS(4149), - [anon_sym_false] = ACTIONS(4149), - [aux_sym__val_number_decimal_token1] = ACTIONS(4151), - [aux_sym__val_number_decimal_token2] = ACTIONS(4153), - [aux_sym__val_number_decimal_token3] = ACTIONS(4155), - [aux_sym__val_number_decimal_token4] = ACTIONS(4157), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4159), - [aux_sym__val_number_token5] = ACTIONS(4159), - [aux_sym__val_number_token6] = ACTIONS(4159), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4161), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_DOT_DOT] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(4081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(4193), + [aux_sym__immediate_decimal_token3] = ACTIONS(4195), + [aux_sym__immediate_decimal_token4] = ACTIONS(4197), + [aux_sym__immediate_decimal_token5] = ACTIONS(4199), + [anon_sym_null] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [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(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [sym_val_date] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [aux_sym_unquoted_token1] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1643), }, [1271] = { + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6419), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6441), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1271), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(4163), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [aux_sym__val_number_token4] = ACTIONS(4215), + [aux_sym__val_number_token5] = ACTIONS(4215), + [aux_sym__val_number_token6] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1272] = { - [sym__val_range] = STATE(7909), - [sym__value] = STATE(3011), - [sym_val_nothing] = STATE(2936), - [sym_val_bool] = STATE(2923), - [sym_val_variable] = STATE(2936), - [sym_val_number] = STATE(2936), - [sym__val_number_decimal] = STATE(2579), - [sym__val_number] = STATE(2977), - [sym_val_duration] = STATE(2936), - [sym_val_filesize] = STATE(2936), - [sym_val_binary] = STATE(2936), - [sym_val_string] = STATE(2936), - [sym__raw_str] = STATE(3013), - [sym__str_double_quotes] = STATE(3013), - [sym_val_interpolated] = STATE(2936), - [sym__inter_single_quotes] = STATE(3000), - [sym__inter_double_quotes] = STATE(3001), - [sym_val_list] = STATE(2936), - [sym_val_record] = STATE(2936), - [sym_val_table] = STATE(2936), - [sym_val_closure] = STATE(2936), - [sym_unquoted] = STATE(3012), - [sym__unquoted_anonymous_prefix] = STATE(8098), + [sym__expr_parenthesized_immediate] = STATE(1791), + [sym__immediate_decimal] = STATE(1792), + [sym_val_variable] = STATE(1791), [sym_comment] = STATE(1272), - [anon_sym_LBRACK] = ACTIONS(4165), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_DOLLAR] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_DOT_DOT] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4175), - [anon_sym_DOT_DOT_LT] = ACTIONS(4175), - [anon_sym_null] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [aux_sym__val_number_decimal_token1] = ACTIONS(4181), - [aux_sym__val_number_decimal_token2] = ACTIONS(4183), - [aux_sym__val_number_decimal_token3] = ACTIONS(4185), - [aux_sym__val_number_decimal_token4] = ACTIONS(4187), - [aux_sym__val_number_token1] = ACTIONS(4189), - [aux_sym__val_number_token2] = ACTIONS(4189), - [aux_sym__val_number_token3] = ACTIONS(4189), - [aux_sym__val_number_token4] = ACTIONS(4191), - [aux_sym__val_number_token5] = ACTIONS(4191), - [aux_sym__val_number_token6] = ACTIONS(4191), - [anon_sym_0b] = ACTIONS(4193), - [anon_sym_0o] = ACTIONS(4195), - [anon_sym_0x] = ACTIONS(4195), - [sym_val_date] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(4199), - [sym__str_single_quotes] = ACTIONS(4201), - [sym__str_back_ticks] = ACTIONS(4201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4205), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4207), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4209), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(4081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(4193), + [aux_sym__immediate_decimal_token3] = ACTIONS(4195), + [aux_sym__immediate_decimal_token4] = ACTIONS(4197), + [aux_sym__immediate_decimal_token5] = ACTIONS(4199), + [anon_sym_null] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1685), + [aux_sym__val_number_token2] = ACTIONS(1685), + [aux_sym__val_number_token3] = ACTIONS(1685), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [anon_sym_0b] = ACTIONS(1677), + [anon_sym_0o] = ACTIONS(1677), + [anon_sym_0x] = ACTIONS(1677), + [sym_val_date] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [sym__str_single_quotes] = ACTIONS(1685), + [sym__str_back_ticks] = ACTIONS(1685), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [aux_sym_unquoted_token1] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1685), }, [1273] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6036), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5255), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6038), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__expr_parenthesized_immediate] = STATE(1793), + [sym__immediate_decimal] = STATE(1794), + [sym_val_variable] = STATE(1793), [sym_comment] = STATE(1273), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [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(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4221), - [aux_sym__val_number_token5] = ACTIONS(4221), - [aux_sym__val_number_token6] = ACTIONS(4221), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [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(4079), + [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(4081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4193), + [aux_sym__immediate_decimal_token3] = ACTIONS(4195), + [aux_sym__immediate_decimal_token4] = ACTIONS(4197), + [aux_sym__immediate_decimal_token5] = ACTIONS(4199), + [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(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [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(251), + [sym_raw_string_begin] = ACTIONS(1741), }, [1274] = { - [sym__expr_parenthesized_immediate] = STATE(7490), + [sym__expr_parenthesized_immediate] = STATE(1795), + [sym__immediate_decimal] = STATE(1796), + [sym_val_variable] = STATE(1795), [sym_comment] = STATE(1274), - [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(1695), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT2] = ACTIONS(4225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_DOT_DOT_LT] = ACTIONS(1695), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4227), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4227), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [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(1695), - [sym_filesize_unit] = ACTIONS(4229), - [sym_duration_unit] = ACTIONS(4231), - [anon_sym_0o] = ACTIONS(1695), - [anon_sym_0x] = ACTIONS(1695), - [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(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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(1695), - [aux_sym_unquoted_token2] = ACTIONS(4233), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), + [sym__newline] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_err_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_GT_PIPE] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_RPAREN] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_DASH2] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_LPAREN2] = ACTIONS(4081), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_DOT_DOT_LT] = ACTIONS(1745), + [aux_sym__immediate_decimal_token1] = ACTIONS(4193), + [aux_sym__immediate_decimal_token3] = ACTIONS(4195), + [aux_sym__immediate_decimal_token4] = ACTIONS(4197), + [aux_sym__immediate_decimal_token5] = ACTIONS(4199), + [anon_sym_null] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1743), + [aux_sym__val_number_decimal_token3] = ACTIONS(1743), + [aux_sym__val_number_decimal_token4] = ACTIONS(1743), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [aux_sym__val_number_token4] = ACTIONS(1745), + [aux_sym__val_number_token5] = ACTIONS(1745), + [aux_sym__val_number_token6] = ACTIONS(1745), + [anon_sym_0b] = ACTIONS(1743), + [anon_sym_0o] = ACTIONS(1743), + [anon_sym_0x] = ACTIONS(1743), + [sym_val_date] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), + [anon_sym_err_GT] = ACTIONS(1743), + [anon_sym_out_GT] = ACTIONS(1743), + [anon_sym_e_GT] = ACTIONS(1743), + [anon_sym_o_GT] = ACTIONS(1743), + [anon_sym_err_PLUSout_GT] = ACTIONS(1743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), + [anon_sym_o_PLUSe_GT] = ACTIONS(1743), + [anon_sym_e_PLUSo_GT] = ACTIONS(1743), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [aux_sym_unquoted_token1] = ACTIONS(1743), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1745), }, [1275] = { - [sym_cell_path] = STATE(1458), - [sym_path] = STATE(1424), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6418), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(7663), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5938), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6420), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1275), - [aux_sym_cell_path_repeat1] = STATE(1369), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(975), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_STAR2] = ACTIONS(973), - [anon_sym_and2] = ACTIONS(975), - [anon_sym_xor2] = ACTIONS(975), - [anon_sym_or2] = ACTIONS(975), - [anon_sym_not_DASHin2] = ACTIONS(975), - [anon_sym_starts_DASHwith2] = ACTIONS(975), - [anon_sym_ends_DASHwith2] = ACTIONS(975), - [anon_sym_EQ_EQ2] = ACTIONS(975), - [anon_sym_BANG_EQ2] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_LT_EQ2] = ACTIONS(975), - [anon_sym_GT_EQ2] = ACTIONS(975), - [anon_sym_EQ_TILDE2] = ACTIONS(975), - [anon_sym_BANG_TILDE2] = ACTIONS(975), - [anon_sym_STAR_STAR2] = ACTIONS(975), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(973), - [anon_sym_mod2] = ACTIONS(975), - [anon_sym_SLASH_SLASH2] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_bit_DASHshl2] = ACTIONS(975), - [anon_sym_bit_DASHshr2] = ACTIONS(975), - [anon_sym_bit_DASHand2] = ACTIONS(975), - [anon_sym_bit_DASHxor2] = ACTIONS(975), - [anon_sym_bit_DASHor2] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4235), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [aux_sym_record_entry_token1] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [aux_sym__val_number_decimal_token1] = ACTIONS(4179), + [aux_sym__val_number_decimal_token2] = ACTIONS(4181), + [aux_sym__val_number_decimal_token3] = ACTIONS(4183), + [aux_sym__val_number_decimal_token4] = ACTIONS(4185), + [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(4187), + [aux_sym__val_number_token5] = ACTIONS(4187), + [aux_sym__val_number_token6] = ACTIONS(4187), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4189), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1276] = { + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6428), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6429), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1276), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(4237), - [aux_sym__immediate_decimal_token2] = ACTIONS(4239), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [aux_sym__val_number_token4] = ACTIONS(4215), + [aux_sym__val_number_token5] = ACTIONS(4215), + [aux_sym__val_number_token6] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1277] = { - [sym__expr_parenthesized_immediate] = STATE(1833), - [sym__immediate_decimal] = STATE(1835), - [sym_val_variable] = STATE(1833), [sym_comment] = STATE(1277), - [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_LBRACK] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [aux_sym__immediate_decimal_token1] = ACTIONS(4241), - [aux_sym__immediate_decimal_token3] = ACTIONS(4243), - [aux_sym__immediate_decimal_token4] = ACTIONS(4245), - [aux_sym__immediate_decimal_token5] = ACTIONS(4247), - [anon_sym_null] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [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(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), - [anon_sym_0b] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1663), - [anon_sym_0x] = ACTIONS(1663), - [sym_val_date] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1673), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1673), + [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(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4221), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1278] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6036), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(7205), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5606), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6038), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__match_pattern_expression] = STATE(3251), + [sym__match_pattern_value] = STATE(3269), + [sym__match_pattern_list] = STATE(3270), + [sym__match_pattern_rest] = STATE(8409), + [sym__match_pattern_record] = STATE(3271), + [sym_expr_parenthesized] = STATE(3049), + [sym_val_range] = STATE(3269), + [sym__val_range] = STATE(8495), + [sym_val_nothing] = STATE(3273), + [sym_val_bool] = STATE(3216), + [sym_val_variable] = STATE(3050), + [sym_val_number] = STATE(3273), + [sym__val_number_decimal] = STATE(2832), + [sym__val_number] = STATE(3264), + [sym_val_duration] = STATE(3273), + [sym_val_filesize] = STATE(3273), + [sym_val_binary] = STATE(3273), + [sym_val_string] = STATE(3273), + [sym__raw_str] = STATE(3279), + [sym__str_double_quotes] = STATE(3279), + [sym_val_table] = STATE(3273), + [sym__unquoted_in_list] = STATE(3251), + [sym__unquoted_anonymous_prefix] = STATE(8543), [sym_comment] = STATE(1278), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4249), - [anon_sym_true] = ACTIONS(4251), - [anon_sym_false] = ACTIONS(4251), - [aux_sym__val_number_decimal_token1] = ACTIONS(4253), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4261), - [aux_sym__val_number_token5] = ACTIONS(4261), - [aux_sym__val_number_token6] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [aux_sym__match_pattern_list_repeat1] = STATE(1343), + [anon_sym_LBRACK] = ACTIONS(4135), + [anon_sym_RBRACK] = ACTIONS(4223), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_DOLLAR] = ACTIONS(3927), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_DOT_DOT] = ACTIONS(4225), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), + [anon_sym_DOT_DOT_LT] = ACTIONS(3933), + [anon_sym_null] = ACTIONS(3935), + [anon_sym_true] = ACTIONS(3937), + [anon_sym_false] = ACTIONS(3937), + [aux_sym__val_number_decimal_token1] = ACTIONS(3939), + [aux_sym__val_number_decimal_token2] = ACTIONS(3941), + [aux_sym__val_number_decimal_token3] = ACTIONS(3943), + [aux_sym__val_number_decimal_token4] = ACTIONS(3945), + [aux_sym__val_number_token1] = ACTIONS(3947), + [aux_sym__val_number_token2] = ACTIONS(3947), + [aux_sym__val_number_token3] = ACTIONS(3947), + [aux_sym__val_number_token4] = ACTIONS(3949), + [aux_sym__val_number_token5] = ACTIONS(3949), + [aux_sym__val_number_token6] = ACTIONS(3949), + [anon_sym_0b] = ACTIONS(3951), + [anon_sym_0o] = ACTIONS(3953), + [anon_sym_0x] = ACTIONS(3953), + [sym_val_date] = ACTIONS(3955), + [anon_sym_DQUOTE] = ACTIONS(3957), + [sym__str_single_quotes] = ACTIONS(3959), + [sym__str_back_ticks] = ACTIONS(3959), + [anon_sym_err_GT] = ACTIONS(2613), + [anon_sym_out_GT] = ACTIONS(2613), + [anon_sym_e_GT] = ACTIONS(2613), + [anon_sym_o_GT] = ACTIONS(2613), + [anon_sym_err_PLUSout_GT] = ACTIONS(2613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), + [anon_sym_o_PLUSe_GT] = ACTIONS(2613), + [anon_sym_e_PLUSo_GT] = ACTIONS(2613), + [anon_sym_err_GT_GT] = ACTIONS(2615), + [anon_sym_out_GT_GT] = ACTIONS(2615), + [anon_sym_e_GT_GT] = ACTIONS(2615), + [anon_sym_o_GT_GT] = ACTIONS(2615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3963), }, [1279] = { - [sym__expr_parenthesized_immediate] = STATE(1737), - [sym__immediate_decimal] = STATE(1786), - [sym_val_variable] = STATE(1737), [sym_comment] = STATE(1279), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(4053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [aux_sym__immediate_decimal_token1] = ACTIONS(4241), - [aux_sym__immediate_decimal_token3] = ACTIONS(4243), - [aux_sym__immediate_decimal_token4] = ACTIONS(4245), - [aux_sym__immediate_decimal_token5] = ACTIONS(4247), - [anon_sym_null] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(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_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(4227), + [aux_sym__immediate_decimal_token2] = ACTIONS(4229), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), }, [1280] = { - [sym__expr_parenthesized_immediate] = STATE(1790), - [sym__immediate_decimal] = STATE(1802), - [sym_val_variable] = STATE(1790), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6494), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6501), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1280), - [sym__newline] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_err_GT_PIPE] = ACTIONS(1739), - [anon_sym_out_GT_PIPE] = ACTIONS(1739), - [anon_sym_e_GT_PIPE] = ACTIONS(1739), - [anon_sym_o_GT_PIPE] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(4053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(4241), - [aux_sym__immediate_decimal_token3] = ACTIONS(4243), - [aux_sym__immediate_decimal_token4] = ACTIONS(4245), - [aux_sym__immediate_decimal_token5] = ACTIONS(4247), - [anon_sym_null] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1739), - [anon_sym_false] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1737), - [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(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_0b] = ACTIONS(1737), - [anon_sym_0o] = ACTIONS(1737), - [anon_sym_0x] = ACTIONS(1737), - [sym_val_date] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1739), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1739), - [anon_sym_err_GT] = ACTIONS(1737), - [anon_sym_out_GT] = ACTIONS(1737), - [anon_sym_e_GT] = ACTIONS(1737), - [anon_sym_o_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT] = ACTIONS(1737), - [anon_sym_err_GT_GT] = ACTIONS(1739), - [anon_sym_out_GT_GT] = ACTIONS(1739), - [anon_sym_e_GT_GT] = ACTIONS(1739), - [anon_sym_o_GT_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1739), - [aux_sym_unquoted_token1] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [aux_sym__val_number_token4] = ACTIONS(4215), + [aux_sym__val_number_token5] = ACTIONS(4215), + [aux_sym__val_number_token6] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1281] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(5518), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7529), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5637), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(5519), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym__expr_parenthesized_immediate] = STATE(1956), + [sym__immediate_decimal] = STATE(1687), + [sym_val_variable] = STATE(1956), [sym_comment] = STATE(1281), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4141), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [anon_sym_true] = ACTIONS(4149), - [anon_sym_false] = ACTIONS(4149), - [aux_sym__val_number_decimal_token1] = ACTIONS(4151), - [aux_sym__val_number_decimal_token2] = ACTIONS(4153), - [aux_sym__val_number_decimal_token3] = ACTIONS(4155), - [aux_sym__val_number_decimal_token4] = ACTIONS(4157), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4159), - [aux_sym__val_number_token5] = ACTIONS(4159), - [aux_sym__val_number_token6] = ACTIONS(4159), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4161), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [ts_builtin_sym_end] = ACTIONS(1657), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1645), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_DOT_DOT] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1657), + [anon_sym_DOT_DOT_LT] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(4235), + [aux_sym__immediate_decimal_token3] = ACTIONS(4237), + [aux_sym__immediate_decimal_token4] = ACTIONS(4239), + [aux_sym__immediate_decimal_token5] = ACTIONS(4241), + [anon_sym_null] = ACTIONS(1657), + [anon_sym_true] = ACTIONS(1657), + [anon_sym_false] = ACTIONS(1657), + [aux_sym__val_number_decimal_token1] = ACTIONS(1645), + [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(1657), + [aux_sym__val_number_token2] = ACTIONS(1657), + [aux_sym__val_number_token3] = ACTIONS(1657), + [aux_sym__val_number_token4] = ACTIONS(1657), + [aux_sym__val_number_token5] = ACTIONS(1657), + [aux_sym__val_number_token6] = ACTIONS(1657), + [anon_sym_0b] = ACTIONS(1645), + [anon_sym_0o] = ACTIONS(1645), + [anon_sym_0x] = ACTIONS(1645), + [sym_val_date] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym__str_single_quotes] = ACTIONS(1657), + [sym__str_back_ticks] = ACTIONS(1657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1657), + [anon_sym_err_GT] = ACTIONS(1645), + [anon_sym_out_GT] = ACTIONS(1645), + [anon_sym_e_GT] = ACTIONS(1645), + [anon_sym_o_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT] = ACTIONS(1645), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [aux_sym_unquoted_token1] = ACTIONS(1645), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(1657), }, [1282] = { - [sym__val_range] = STATE(7884), - [sym__value] = STATE(1859), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1750), - [sym_val_variable] = STATE(1930), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_unquoted] = STATE(1923), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__val_range] = STATE(8509), + [sym__value] = STATE(3089), + [sym_val_nothing] = STATE(3093), + [sym_val_bool] = STATE(3000), + [sym_val_variable] = STATE(3093), + [sym_val_number] = STATE(3093), + [sym__val_number_decimal] = STATE(2700), + [sym__val_number] = STATE(3075), + [sym_val_duration] = STATE(3093), + [sym_val_filesize] = STATE(3093), + [sym_val_binary] = STATE(3093), + [sym_val_string] = STATE(3093), + [sym__raw_str] = STATE(3107), + [sym__str_double_quotes] = STATE(3107), + [sym_val_interpolated] = STATE(3093), + [sym__inter_single_quotes] = STATE(3139), + [sym__inter_double_quotes] = STATE(3140), + [sym_val_list] = STATE(3093), + [sym_val_record] = STATE(3093), + [sym_val_table] = STATE(3093), + [sym_val_closure] = STATE(3093), + [sym_unquoted] = STATE(3090), + [sym__unquoted_anonymous_prefix] = STATE(8547), [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(4265), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(4269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4271), - [anon_sym_DOT_DOT_LT] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4273), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [aux_sym__val_number_decimal_token1] = ACTIONS(4277), - [aux_sym__val_number_decimal_token2] = ACTIONS(4279), - [aux_sym__val_number_decimal_token3] = ACTIONS(4281), - [aux_sym__val_number_decimal_token4] = ACTIONS(4283), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_DOT_DOT] = ACTIONS(4251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), + [anon_sym_DOT_DOT_LT] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4257), + [anon_sym_false] = ACTIONS(4257), + [aux_sym__val_number_decimal_token1] = ACTIONS(4259), + [aux_sym__val_number_decimal_token2] = ACTIONS(4261), + [aux_sym__val_number_decimal_token3] = ACTIONS(4263), + [aux_sym__val_number_decimal_token4] = ACTIONS(4265), + [aux_sym__val_number_token1] = ACTIONS(4267), + [aux_sym__val_number_token2] = ACTIONS(4267), + [aux_sym__val_number_token3] = ACTIONS(4267), + [aux_sym__val_number_token4] = ACTIONS(4269), + [aux_sym__val_number_token5] = ACTIONS(4269), + [aux_sym__val_number_token6] = ACTIONS(4269), + [anon_sym_0b] = ACTIONS(4271), + [anon_sym_0o] = ACTIONS(4273), + [anon_sym_0x] = ACTIONS(4273), + [sym_val_date] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4277), + [sym__str_single_quotes] = ACTIONS(4279), + [sym__str_back_ticks] = ACTIONS(4279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4281), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4283), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4285), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4287), }, [1283] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(5533), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7529), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5637), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(5534), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6419), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5623), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6441), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4141), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4147), - [anon_sym_true] = ACTIONS(4149), - [anon_sym_false] = ACTIONS(4149), - [aux_sym__val_number_decimal_token1] = ACTIONS(4151), - [aux_sym__val_number_decimal_token2] = ACTIONS(4153), - [aux_sym__val_number_decimal_token3] = ACTIONS(4155), - [aux_sym__val_number_decimal_token4] = ACTIONS(4157), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4159), - [aux_sym__val_number_token5] = ACTIONS(4159), - [aux_sym__val_number_token6] = ACTIONS(4159), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4161), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [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(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [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(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1284] = { - [sym__val_range] = STATE(7884), - [sym__value] = STATE(1946), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1750), - [sym_val_variable] = STATE(1930), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_unquoted] = STATE(1956), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6418), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6420), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(4265), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(4269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4271), - [anon_sym_DOT_DOT_LT] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4273), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [aux_sym__val_number_decimal_token1] = ACTIONS(4277), - [aux_sym__val_number_decimal_token2] = ACTIONS(4279), - [aux_sym__val_number_decimal_token3] = ACTIONS(4281), - [aux_sym__val_number_decimal_token4] = ACTIONS(4283), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [aux_sym__val_number_decimal_token1] = ACTIONS(4207), + [aux_sym__val_number_decimal_token2] = ACTIONS(4209), + [aux_sym__val_number_decimal_token3] = ACTIONS(4211), + [aux_sym__val_number_decimal_token4] = ACTIONS(4213), + [aux_sym__val_number_token1] = ACTIONS(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [aux_sym__val_number_token4] = ACTIONS(4215), + [aux_sym__val_number_token5] = ACTIONS(4215), + [aux_sym__val_number_token6] = ACTIONS(4215), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1285] = { - [sym__expr_parenthesized_immediate] = STATE(1803), - [sym__immediate_decimal] = STATE(1804), - [sym_val_variable] = STATE(1803), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6428), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5623), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6429), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1285), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_LPAREN2] = ACTIONS(4053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_DOT_DOT_LT] = ACTIONS(1743), - [aux_sym__immediate_decimal_token1] = ACTIONS(4241), - [aux_sym__immediate_decimal_token3] = ACTIONS(4243), - [aux_sym__immediate_decimal_token4] = ACTIONS(4245), - [aux_sym__immediate_decimal_token5] = ACTIONS(4247), - [anon_sym_null] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1743), - [anon_sym_false] = ACTIONS(1743), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1743), - [aux_sym__val_number_token2] = ACTIONS(1743), - [aux_sym__val_number_token3] = ACTIONS(1743), - [aux_sym__val_number_token4] = ACTIONS(1743), - [aux_sym__val_number_token5] = ACTIONS(1743), - [aux_sym__val_number_token6] = ACTIONS(1743), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [sym_val_date] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym__str_single_quotes] = ACTIONS(1743), - [sym__str_back_ticks] = ACTIONS(1743), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1743), - [anon_sym_err_GT] = ACTIONS(1741), - [anon_sym_out_GT] = ACTIONS(1741), - [anon_sym_e_GT] = ACTIONS(1741), - [anon_sym_o_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT] = ACTIONS(1741), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), - [aux_sym_unquoted_token1] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [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(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [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(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1286] = { - [sym_cell_path] = STATE(1466), - [sym_path] = STATE(1446), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6428), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(7663), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5938), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6429), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1286), - [aux_sym_cell_path_repeat1] = STATE(1373), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(975), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_STAR2] = ACTIONS(973), - [anon_sym_and2] = ACTIONS(975), - [anon_sym_xor2] = ACTIONS(975), - [anon_sym_or2] = ACTIONS(975), - [anon_sym_not_DASHin2] = ACTIONS(975), - [anon_sym_starts_DASHwith2] = ACTIONS(975), - [anon_sym_ends_DASHwith2] = ACTIONS(975), - [anon_sym_EQ_EQ2] = ACTIONS(975), - [anon_sym_BANG_EQ2] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_LT_EQ2] = ACTIONS(975), - [anon_sym_GT_EQ2] = ACTIONS(975), - [anon_sym_EQ_TILDE2] = ACTIONS(975), - [anon_sym_BANG_TILDE2] = ACTIONS(975), - [anon_sym_STAR_STAR2] = ACTIONS(975), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(973), - [anon_sym_mod2] = ACTIONS(975), - [anon_sym_SLASH_SLASH2] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_bit_DASHshl2] = ACTIONS(975), - [anon_sym_bit_DASHshr2] = ACTIONS(975), - [anon_sym_bit_DASHand2] = ACTIONS(975), - [anon_sym_bit_DASHxor2] = ACTIONS(975), - [anon_sym_bit_DASHor2] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [aux_sym__val_number_decimal_token1] = ACTIONS(4179), + [aux_sym__val_number_decimal_token2] = ACTIONS(4181), + [aux_sym__val_number_decimal_token3] = ACTIONS(4183), + [aux_sym__val_number_decimal_token4] = ACTIONS(4185), + [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(4187), + [aux_sym__val_number_token5] = ACTIONS(4187), + [aux_sym__val_number_token6] = ACTIONS(4187), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4189), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1287] = { - [sym__val_range] = STATE(7884), - [sym__value] = STATE(1963), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1750), - [sym_val_variable] = STATE(1930), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_unquoted] = STATE(1856), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__val_range] = STATE(8509), + [sym__value] = STATE(3101), + [sym_val_nothing] = STATE(3093), + [sym_val_bool] = STATE(3000), + [sym_val_variable] = STATE(3093), + [sym_val_number] = STATE(3093), + [sym__val_number_decimal] = STATE(2700), + [sym__val_number] = STATE(3075), + [sym_val_duration] = STATE(3093), + [sym_val_filesize] = STATE(3093), + [sym_val_binary] = STATE(3093), + [sym_val_string] = STATE(3093), + [sym__raw_str] = STATE(3107), + [sym__str_double_quotes] = STATE(3107), + [sym_val_interpolated] = STATE(3093), + [sym__inter_single_quotes] = STATE(3139), + [sym__inter_double_quotes] = STATE(3140), + [sym_val_list] = STATE(3093), + [sym_val_record] = STATE(3093), + [sym_val_table] = STATE(3093), + [sym_val_closure] = STATE(3093), + [sym_unquoted] = STATE(3112), + [sym__unquoted_anonymous_prefix] = STATE(8547), [sym_comment] = STATE(1287), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(4265), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(4269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4271), - [anon_sym_DOT_DOT_LT] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4273), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [aux_sym__val_number_decimal_token1] = ACTIONS(4277), - [aux_sym__val_number_decimal_token2] = ACTIONS(4279), - [aux_sym__val_number_decimal_token3] = ACTIONS(4281), - [aux_sym__val_number_decimal_token4] = ACTIONS(4283), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4245), + [anon_sym_DOLLAR] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4249), + [anon_sym_DOT_DOT] = ACTIONS(4251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), + [anon_sym_DOT_DOT_LT] = ACTIONS(4253), + [anon_sym_null] = ACTIONS(4255), + [anon_sym_true] = ACTIONS(4257), + [anon_sym_false] = ACTIONS(4257), + [aux_sym__val_number_decimal_token1] = ACTIONS(4259), + [aux_sym__val_number_decimal_token2] = ACTIONS(4261), + [aux_sym__val_number_decimal_token3] = ACTIONS(4263), + [aux_sym__val_number_decimal_token4] = ACTIONS(4265), + [aux_sym__val_number_token1] = ACTIONS(4267), + [aux_sym__val_number_token2] = ACTIONS(4267), + [aux_sym__val_number_token3] = ACTIONS(4267), + [aux_sym__val_number_token4] = ACTIONS(4269), + [aux_sym__val_number_token5] = ACTIONS(4269), + [aux_sym__val_number_token6] = ACTIONS(4269), + [anon_sym_0b] = ACTIONS(4271), + [anon_sym_0o] = ACTIONS(4273), + [anon_sym_0x] = ACTIONS(4273), + [sym_val_date] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4277), + [sym__str_single_quotes] = ACTIONS(4279), + [sym__str_back_ticks] = ACTIONS(4279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4281), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4283), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4285), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4287), }, [1288] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(6753), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5370), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6082), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym_cell_path] = STATE(1478), + [sym_path] = STATE(1413), [sym_comment] = STATE(1288), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [aux_sym__val_number_decimal_token1] = ACTIONS(4109), - [aux_sym__val_number_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token3] = ACTIONS(4113), - [aux_sym__val_number_decimal_token4] = ACTIONS(4115), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4117), - [aux_sym__val_number_token5] = ACTIONS(4117), - [aux_sym__val_number_token6] = ACTIONS(4117), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4119), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [aux_sym_cell_path_repeat1] = STATE(1346), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_STAR2] = ACTIONS(969), + [anon_sym_and2] = ACTIONS(971), + [anon_sym_xor2] = ACTIONS(971), + [anon_sym_or2] = ACTIONS(971), + [anon_sym_not_DASHin2] = ACTIONS(971), + [anon_sym_starts_DASHwith2] = ACTIONS(971), + [anon_sym_ends_DASHwith2] = ACTIONS(971), + [anon_sym_EQ_EQ2] = ACTIONS(971), + [anon_sym_BANG_EQ2] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_LT_EQ2] = ACTIONS(971), + [anon_sym_GT_EQ2] = ACTIONS(971), + [anon_sym_EQ_TILDE2] = ACTIONS(971), + [anon_sym_BANG_TILDE2] = ACTIONS(971), + [anon_sym_STAR_STAR2] = ACTIONS(971), + [anon_sym_PLUS_PLUS2] = ACTIONS(969), + [anon_sym_SLASH2] = ACTIONS(969), + [anon_sym_mod2] = ACTIONS(971), + [anon_sym_SLASH_SLASH2] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_bit_DASHshl2] = ACTIONS(971), + [anon_sym_bit_DASHshr2] = ACTIONS(971), + [anon_sym_bit_DASHand2] = ACTIONS(971), + [anon_sym_bit_DASHxor2] = ACTIONS(971), + [anon_sym_bit_DASHor2] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(251), }, [1289] = { - [sym__val_range] = STATE(7884), - [sym__value] = STATE(1871), - [sym_val_nothing] = STATE(1930), - [sym_val_bool] = STATE(1750), - [sym_val_variable] = STATE(1930), - [sym_val_number] = STATE(1930), - [sym__val_number_decimal] = STATE(1429), - [sym__val_number] = STATE(1907), - [sym_val_duration] = STATE(1930), - [sym_val_filesize] = STATE(1930), - [sym_val_binary] = STATE(1930), - [sym_val_string] = STATE(1930), - [sym__raw_str] = STATE(1965), - [sym__str_double_quotes] = STATE(1965), - [sym_val_interpolated] = STATE(1930), - [sym__inter_single_quotes] = STATE(1910), - [sym__inter_double_quotes] = STATE(1911), - [sym_val_list] = STATE(1930), - [sym_val_record] = STATE(1930), - [sym_val_table] = STATE(1930), - [sym_val_closure] = STATE(1930), - [sym_unquoted] = STATE(1873), - [sym__unquoted_anonymous_prefix] = STATE(7911), + [sym__expr_parenthesized_immediate] = STATE(1653), + [sym__immediate_decimal] = STATE(1670), + [sym_val_variable] = STATE(1653), [sym_comment] = STATE(1289), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(4265), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_DOT_DOT] = ACTIONS(4269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4271), - [anon_sym_DOT_DOT_LT] = ACTIONS(4271), - [anon_sym_null] = ACTIONS(4273), - [anon_sym_true] = ACTIONS(4275), - [anon_sym_false] = ACTIONS(4275), - [aux_sym__val_number_decimal_token1] = ACTIONS(4277), - [aux_sym__val_number_decimal_token2] = ACTIONS(4279), - [aux_sym__val_number_decimal_token3] = ACTIONS(4281), - [aux_sym__val_number_decimal_token4] = ACTIONS(4283), - [aux_sym__val_number_token1] = ACTIONS(2940), - [aux_sym__val_number_token2] = ACTIONS(2940), - [aux_sym__val_number_token3] = ACTIONS(2940), - [aux_sym__val_number_token4] = ACTIONS(4285), - [aux_sym__val_number_token5] = ACTIONS(4285), - [aux_sym__val_number_token6] = ACTIONS(4285), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2946), - [anon_sym_0x] = ACTIONS(2946), - [sym_val_date] = ACTIONS(4287), - [anon_sym_DQUOTE] = ACTIONS(2950), - [sym__str_single_quotes] = ACTIONS(2952), - [sym__str_back_ticks] = ACTIONS(2952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2956), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2960), + [ts_builtin_sym_end] = ACTIONS(1643), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_DOT_DOT] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(4067), + [anon_sym_DOT] = ACTIONS(4301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(4303), + [aux_sym__immediate_decimal_token3] = ACTIONS(4305), + [aux_sym__immediate_decimal_token4] = ACTIONS(4307), + [aux_sym__immediate_decimal_token5] = ACTIONS(4309), + [anon_sym_null] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [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(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [sym_val_date] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [aux_sym_unquoted_token1] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1643), }, [1290] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6168), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(6753), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5370), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6169), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6494), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5623), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6501), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1290), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [aux_sym__val_number_decimal_token1] = ACTIONS(4109), - [aux_sym__val_number_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token3] = ACTIONS(4113), - [aux_sym__val_number_decimal_token4] = ACTIONS(4115), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4117), - [aux_sym__val_number_token5] = ACTIONS(4117), - [aux_sym__val_number_token6] = ACTIONS(4117), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4119), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [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(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [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(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1291] = { - [sym__expr_parenthesized_immediate] = STATE(1625), - [sym__immediate_decimal] = STATE(1631), - [sym_val_variable] = STATE(1625), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(5829), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(7989), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6003), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(5830), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1291), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4067), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [aux_sym__immediate_decimal_token1] = ACTIONS(4295), - [aux_sym__immediate_decimal_token3] = ACTIONS(4297), - [aux_sym__immediate_decimal_token4] = ACTIONS(4299), - [aux_sym__immediate_decimal_token5] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [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(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), - [anon_sym_0b] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1663), - [anon_sym_0x] = ACTIONS(1663), - [sym_val_date] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1673), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(4331), + [aux_sym__val_number_token5] = ACTIONS(4331), + [aux_sym__val_number_token6] = ACTIONS(4331), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1292] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3121), - [sym__match_pattern_list] = STATE(3122), - [sym__match_pattern_rest] = STATE(7971), - [sym__match_pattern_record] = STATE(3123), - [sym_expr_parenthesized] = STATE(2908), - [sym_val_range] = STATE(3121), - [sym__val_range] = STATE(7923), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(3062), - [sym_val_variable] = STATE(2909), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(2671), - [sym__val_number] = STATE(3108), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__raw_str] = STATE(3164), - [sym__str_double_quotes] = STATE(3164), - [sym_val_table] = STATE(3125), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7818), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6418), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6349), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5623), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6420), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1292), - [aux_sym__match_pattern_list_repeat1] = STATE(1348), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4305), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3917), - [anon_sym_DOT_DOT] = ACTIONS(4307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3921), - [anon_sym_DOT_DOT_LT] = ACTIONS(3921), - [anon_sym_null] = ACTIONS(3923), - [anon_sym_true] = ACTIONS(3925), - [anon_sym_false] = ACTIONS(3925), - [aux_sym__val_number_decimal_token1] = ACTIONS(3927), - [aux_sym__val_number_decimal_token2] = ACTIONS(3929), - [aux_sym__val_number_decimal_token3] = ACTIONS(3931), - [aux_sym__val_number_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_token1] = ACTIONS(3935), - [aux_sym__val_number_token2] = ACTIONS(3935), - [aux_sym__val_number_token3] = ACTIONS(3935), - [aux_sym__val_number_token4] = ACTIONS(3937), - [aux_sym__val_number_token5] = ACTIONS(3937), - [aux_sym__val_number_token6] = ACTIONS(3937), - [anon_sym_0b] = ACTIONS(3939), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3943), - [anon_sym_DQUOTE] = ACTIONS(3945), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4203), + [anon_sym_true] = ACTIONS(4205), + [anon_sym_false] = ACTIONS(4205), + [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(3655), + [aux_sym__val_number_token2] = ACTIONS(3655), + [aux_sym__val_number_token3] = ACTIONS(3655), + [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(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4217), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1293] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5336), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6082), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(5883), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(7989), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6003), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(5886), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1293), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [aux_sym__val_number_decimal_token1] = ACTIONS(4127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4129), - [aux_sym__val_number_decimal_token3] = ACTIONS(4131), - [aux_sym__val_number_decimal_token4] = ACTIONS(4133), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4135), - [aux_sym__val_number_token5] = ACTIONS(4135), - [aux_sym__val_number_token6] = ACTIONS(4135), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(4331), + [aux_sym__val_number_token5] = ACTIONS(4331), + [aux_sym__val_number_token6] = ACTIONS(4331), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1294] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(6036), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5691), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(6038), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(5842), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(7989), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6003), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(5850), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), + [aux_sym__val_number_token4] = ACTIONS(4331), + [aux_sym__val_number_token5] = ACTIONS(4331), + [aux_sym__val_number_token6] = ACTIONS(4331), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), + [sym_val_date] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1295] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6036), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(6753), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5370), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6038), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8617), + [sym__value] = STATE(2021), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1774), + [sym_val_variable] = STATE(2022), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(1893), + [sym__unquoted_anonymous_prefix] = STATE(8526), [sym_comment] = STATE(1295), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [anon_sym_true] = ACTIONS(4107), - [anon_sym_false] = ACTIONS(4107), - [aux_sym__val_number_decimal_token1] = ACTIONS(4109), - [aux_sym__val_number_decimal_token2] = ACTIONS(4111), - [aux_sym__val_number_decimal_token3] = ACTIONS(4113), - [aux_sym__val_number_decimal_token4] = ACTIONS(4115), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4117), - [aux_sym__val_number_token5] = ACTIONS(4117), - [aux_sym__val_number_token6] = ACTIONS(4117), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4119), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(4335), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), + [anon_sym_DOT_DOT_LT] = ACTIONS(4339), + [anon_sym_null] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [aux_sym__val_number_decimal_token1] = ACTIONS(4345), + [aux_sym__val_number_decimal_token2] = ACTIONS(4347), + [aux_sym__val_number_decimal_token3] = ACTIONS(4349), + [aux_sym__val_number_decimal_token4] = ACTIONS(4351), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(4353), + [aux_sym__val_number_token5] = ACTIONS(4353), + [aux_sym__val_number_token6] = ACTIONS(4353), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [1296] = { - [sym__val_range] = STATE(7833), - [sym__value] = STATE(4962), - [sym_val_nothing] = STATE(4902), - [sym_val_bool] = STATE(4543), - [sym_val_variable] = STATE(4902), - [sym_val_number] = STATE(4902), - [sym__val_number_decimal] = STATE(4144), - [sym__val_number] = STATE(4970), - [sym_val_duration] = STATE(4902), - [sym_val_filesize] = STATE(4902), - [sym_val_binary] = STATE(4902), - [sym_val_string] = STATE(4902), - [sym__raw_str] = STATE(4591), - [sym__str_double_quotes] = STATE(4591), - [sym_val_interpolated] = STATE(4902), - [sym__inter_single_quotes] = STATE(4933), - [sym__inter_double_quotes] = STATE(4935), - [sym_val_list] = STATE(4902), - [sym_val_record] = STATE(4902), - [sym_val_table] = STATE(4902), - [sym_val_closure] = STATE(4902), - [sym_unquoted] = STATE(4975), - [sym__unquoted_anonymous_prefix] = STATE(7857), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(5825), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(7989), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6003), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(5833), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1296), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_DOLLAR] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_DOT_DOT] = ACTIONS(4319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4321), - [anon_sym_DOT_DOT_LT] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2142), - [aux_sym__val_number_decimal_token2] = ACTIONS(4327), - [aux_sym__val_number_decimal_token3] = ACTIONS(4329), - [aux_sym__val_number_decimal_token4] = ACTIONS(4331), - [aux_sym__val_number_token1] = ACTIONS(4333), - [aux_sym__val_number_token2] = ACTIONS(4333), - [aux_sym__val_number_token3] = ACTIONS(4333), - [aux_sym__val_number_token4] = ACTIONS(4335), - [aux_sym__val_number_token5] = ACTIONS(4335), - [aux_sym__val_number_token6] = ACTIONS(4335), - [anon_sym_0b] = ACTIONS(2152), - [anon_sym_0o] = ACTIONS(2154), - [anon_sym_0x] = ACTIONS(2154), - [sym_val_date] = ACTIONS(4337), - [anon_sym_DQUOTE] = ACTIONS(4339), - [sym__str_single_quotes] = ACTIONS(4341), - [sym__str_back_ticks] = ACTIONS(4341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4345), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(4319), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [aux_sym__val_number_decimal_token1] = ACTIONS(4323), + [aux_sym__val_number_decimal_token2] = ACTIONS(4325), + [aux_sym__val_number_decimal_token3] = ACTIONS(4327), + [aux_sym__val_number_decimal_token4] = ACTIONS(4329), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(4331), + [aux_sym__val_number_token5] = ACTIONS(4331), + [aux_sym__val_number_token6] = ACTIONS(4331), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1297] = { - [sym__val_range] = STATE(7833), - [sym__value] = STATE(4813), - [sym_val_nothing] = STATE(4902), - [sym_val_bool] = STATE(4543), - [sym_val_variable] = STATE(4902), - [sym_val_number] = STATE(4902), - [sym__val_number_decimal] = STATE(4144), - [sym__val_number] = STATE(4970), - [sym_val_duration] = STATE(4902), - [sym_val_filesize] = STATE(4902), - [sym_val_binary] = STATE(4902), - [sym_val_string] = STATE(4902), - [sym__raw_str] = STATE(4591), - [sym__str_double_quotes] = STATE(4591), - [sym_val_interpolated] = STATE(4902), - [sym__inter_single_quotes] = STATE(4933), - [sym__inter_double_quotes] = STATE(4935), - [sym_val_list] = STATE(4902), - [sym_val_record] = STATE(4902), - [sym_val_table] = STATE(4902), - [sym_val_closure] = STATE(4902), - [sym_unquoted] = STATE(4845), - [sym__unquoted_anonymous_prefix] = STATE(7857), + [sym__val_range] = STATE(8617), + [sym__value] = STATE(1932), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1774), + [sym_val_variable] = STATE(2022), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(1953), + [sym__unquoted_anonymous_prefix] = STATE(8526), [sym_comment] = STATE(1297), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_DOLLAR] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_DOT_DOT] = ACTIONS(4319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4321), - [anon_sym_DOT_DOT_LT] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2142), - [aux_sym__val_number_decimal_token2] = ACTIONS(4327), - [aux_sym__val_number_decimal_token3] = ACTIONS(4329), - [aux_sym__val_number_decimal_token4] = ACTIONS(4331), - [aux_sym__val_number_token1] = ACTIONS(4333), - [aux_sym__val_number_token2] = ACTIONS(4333), - [aux_sym__val_number_token3] = ACTIONS(4333), - [aux_sym__val_number_token4] = ACTIONS(4335), - [aux_sym__val_number_token5] = ACTIONS(4335), - [aux_sym__val_number_token6] = ACTIONS(4335), - [anon_sym_0b] = ACTIONS(2152), - [anon_sym_0o] = ACTIONS(2154), - [anon_sym_0x] = ACTIONS(2154), - [sym_val_date] = ACTIONS(4337), - [anon_sym_DQUOTE] = ACTIONS(4339), - [sym__str_single_quotes] = ACTIONS(4341), - [sym__str_back_ticks] = ACTIONS(4341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4345), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(4335), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), + [anon_sym_DOT_DOT_LT] = ACTIONS(4339), + [anon_sym_null] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [aux_sym__val_number_decimal_token1] = ACTIONS(4345), + [aux_sym__val_number_decimal_token2] = ACTIONS(4347), + [aux_sym__val_number_decimal_token3] = ACTIONS(4349), + [aux_sym__val_number_decimal_token4] = ACTIONS(4351), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(4353), + [aux_sym__val_number_token5] = ACTIONS(4353), + [aux_sym__val_number_token6] = ACTIONS(4353), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [1298] = { - [sym__val_range] = STATE(7833), - [sym__value] = STATE(4980), - [sym_val_nothing] = STATE(4902), - [sym_val_bool] = STATE(4543), - [sym_val_variable] = STATE(4902), - [sym_val_number] = STATE(4902), - [sym__val_number_decimal] = STATE(4144), - [sym__val_number] = STATE(4970), - [sym_val_duration] = STATE(4902), - [sym_val_filesize] = STATE(4902), - [sym_val_binary] = STATE(4902), - [sym_val_string] = STATE(4902), - [sym__raw_str] = STATE(4591), - [sym__str_double_quotes] = STATE(4591), - [sym_val_interpolated] = STATE(4902), - [sym__inter_single_quotes] = STATE(4933), - [sym__inter_double_quotes] = STATE(4935), - [sym_val_list] = STATE(4902), - [sym_val_record] = STATE(4902), - [sym_val_table] = STATE(4902), - [sym_val_closure] = STATE(4902), - [sym_unquoted] = STATE(4981), - [sym__unquoted_anonymous_prefix] = STATE(7857), + [sym__val_range] = STATE(8617), + [sym__value] = STATE(1920), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1774), + [sym_val_variable] = STATE(2022), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(1921), + [sym__unquoted_anonymous_prefix] = STATE(8526), [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_DOLLAR] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_DOT_DOT] = ACTIONS(4319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4321), - [anon_sym_DOT_DOT_LT] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2142), - [aux_sym__val_number_decimal_token2] = ACTIONS(4327), - [aux_sym__val_number_decimal_token3] = ACTIONS(4329), - [aux_sym__val_number_decimal_token4] = ACTIONS(4331), - [aux_sym__val_number_token1] = ACTIONS(4333), - [aux_sym__val_number_token2] = ACTIONS(4333), - [aux_sym__val_number_token3] = ACTIONS(4333), - [aux_sym__val_number_token4] = ACTIONS(4335), - [aux_sym__val_number_token5] = ACTIONS(4335), - [aux_sym__val_number_token6] = ACTIONS(4335), - [anon_sym_0b] = ACTIONS(2152), - [anon_sym_0o] = ACTIONS(2154), - [anon_sym_0x] = ACTIONS(2154), - [sym_val_date] = ACTIONS(4337), - [anon_sym_DQUOTE] = ACTIONS(4339), - [sym__str_single_quotes] = ACTIONS(4341), - [sym__str_back_ticks] = ACTIONS(4341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4345), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(4335), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), + [anon_sym_DOT_DOT_LT] = ACTIONS(4339), + [anon_sym_null] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [aux_sym__val_number_decimal_token1] = ACTIONS(4345), + [aux_sym__val_number_decimal_token2] = ACTIONS(4347), + [aux_sym__val_number_decimal_token3] = ACTIONS(4349), + [aux_sym__val_number_decimal_token4] = ACTIONS(4351), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(4353), + [aux_sym__val_number_token5] = ACTIONS(4353), + [aux_sym__val_number_token6] = ACTIONS(4353), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [1299] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4720), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(7446), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(5508), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4796), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6419), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6761), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5711), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6441), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1299), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), [anon_sym_null] = ACTIONS(4359), [anon_sym_true] = ACTIONS(4361), [anon_sym_false] = ACTIONS(4361), @@ -209424,147 +212122,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(4365), [aux_sym__val_number_decimal_token3] = ACTIONS(4367), [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4373), - [aux_sym__val_number_token5] = ACTIONS(4373), - [aux_sym__val_number_token6] = ACTIONS(4373), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [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(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1300] = { - [sym__val_range] = STATE(7833), - [sym__value] = STATE(5002), - [sym_val_nothing] = STATE(4902), - [sym_val_bool] = STATE(4543), - [sym_val_variable] = STATE(4902), - [sym_val_number] = STATE(4902), - [sym__val_number_decimal] = STATE(4144), - [sym__val_number] = STATE(4970), - [sym_val_duration] = STATE(4902), - [sym_val_filesize] = STATE(4902), - [sym_val_binary] = STATE(4902), - [sym_val_string] = STATE(4902), - [sym__raw_str] = STATE(4591), - [sym__str_double_quotes] = STATE(4591), - [sym_val_interpolated] = STATE(4902), - [sym__inter_single_quotes] = STATE(4933), - [sym__inter_double_quotes] = STATE(4935), - [sym_val_list] = STATE(4902), - [sym_val_record] = STATE(4902), - [sym_val_table] = STATE(4902), - [sym_val_closure] = STATE(4902), - [sym_unquoted] = STATE(4895), - [sym__unquoted_anonymous_prefix] = STATE(7857), + [sym__val_range] = STATE(8617), + [sym__value] = STATE(1940), + [sym_val_nothing] = STATE(2022), + [sym_val_bool] = STATE(1774), + [sym_val_variable] = STATE(2022), + [sym_val_number] = STATE(2022), + [sym__val_number_decimal] = STATE(1436), + [sym__val_number] = STATE(1997), + [sym_val_duration] = STATE(2022), + [sym_val_filesize] = STATE(2022), + [sym_val_binary] = STATE(2022), + [sym_val_string] = STATE(2022), + [sym__raw_str] = STATE(1901), + [sym__str_double_quotes] = STATE(1901), + [sym_val_interpolated] = STATE(2022), + [sym__inter_single_quotes] = STATE(1922), + [sym__inter_double_quotes] = STATE(1923), + [sym_val_list] = STATE(2022), + [sym_val_record] = STATE(2022), + [sym_val_table] = STATE(2022), + [sym_val_closure] = STATE(2022), + [sym_unquoted] = STATE(1941), + [sym__unquoted_anonymous_prefix] = STATE(8526), [sym_comment] = STATE(1300), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4313), - [anon_sym_DOLLAR] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_DOT_DOT] = ACTIONS(4319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4321), - [anon_sym_DOT_DOT_LT] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2142), - [aux_sym__val_number_decimal_token2] = ACTIONS(4327), - [aux_sym__val_number_decimal_token3] = ACTIONS(4329), - [aux_sym__val_number_decimal_token4] = ACTIONS(4331), - [aux_sym__val_number_token1] = ACTIONS(4333), - [aux_sym__val_number_token2] = ACTIONS(4333), - [aux_sym__val_number_token3] = ACTIONS(4333), - [aux_sym__val_number_token4] = ACTIONS(4335), - [aux_sym__val_number_token5] = ACTIONS(4335), - [aux_sym__val_number_token6] = ACTIONS(4335), - [anon_sym_0b] = ACTIONS(2152), - [anon_sym_0o] = ACTIONS(2154), - [anon_sym_0x] = ACTIONS(2154), - [sym_val_date] = ACTIONS(4337), - [anon_sym_DQUOTE] = ACTIONS(4339), - [sym__str_single_quotes] = ACTIONS(4341), - [sym__str_back_ticks] = ACTIONS(4341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4345), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(4335), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), + [anon_sym_DOT_DOT_LT] = ACTIONS(4339), + [anon_sym_null] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [aux_sym__val_number_decimal_token1] = ACTIONS(4345), + [aux_sym__val_number_decimal_token2] = ACTIONS(4347), + [aux_sym__val_number_decimal_token3] = ACTIONS(4349), + [aux_sym__val_number_decimal_token4] = ACTIONS(4351), + [aux_sym__val_number_token1] = ACTIONS(2936), + [aux_sym__val_number_token2] = ACTIONS(2936), + [aux_sym__val_number_token3] = ACTIONS(2936), + [aux_sym__val_number_token4] = ACTIONS(4353), + [aux_sym__val_number_token5] = ACTIONS(4353), + [aux_sym__val_number_token6] = ACTIONS(4353), + [anon_sym_0b] = ACTIONS(2940), + [anon_sym_0o] = ACTIONS(2942), + [anon_sym_0x] = ACTIONS(2942), + [sym_val_date] = ACTIONS(4355), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym__str_single_quotes] = ACTIONS(2948), + [sym__str_back_ticks] = ACTIONS(2948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2956), }, [1301] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4642), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(7446), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(5508), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4644), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6428), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6761), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5711), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6429), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), [anon_sym_null] = ACTIONS(4359), [anon_sym_true] = ACTIONS(4361), [anon_sym_false] = ACTIONS(4361), @@ -209572,221 +212270,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(4365), [aux_sym__val_number_decimal_token3] = ACTIONS(4367), [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4373), - [aux_sym__val_number_token5] = ACTIONS(4373), - [aux_sym__val_number_token6] = ACTIONS(4373), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [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(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1302] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6168), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5255), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6169), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6494), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6761), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5711), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6501), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1302), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [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(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4221), - [aux_sym__val_number_token5] = ACTIONS(4221), - [aux_sym__val_number_token6] = ACTIONS(4221), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4363), + [aux_sym__val_number_decimal_token2] = ACTIONS(4365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4367), + [aux_sym__val_number_decimal_token4] = ACTIONS(4369), + [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(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1303] = { - [sym__expr_parenthesized_immediate] = STATE(1973), - [sym__immediate_decimal] = STATE(1717), - [sym_val_variable] = STATE(1973), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6419), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(7663), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5938), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6441), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1303), - [ts_builtin_sym_end] = ACTIONS(1603), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_err_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_GT_PIPE] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), - [anon_sym_DOT_DOT_LT] = ACTIONS(1603), - [aux_sym__immediate_decimal_token1] = ACTIONS(4387), - [aux_sym__immediate_decimal_token3] = ACTIONS(4389), - [aux_sym__immediate_decimal_token4] = ACTIONS(4391), - [aux_sym__immediate_decimal_token5] = ACTIONS(4393), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [aux_sym__val_number_decimal_token1] = ACTIONS(1589), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1603), - [aux_sym__val_number_token2] = ACTIONS(1603), - [aux_sym__val_number_token3] = ACTIONS(1603), - [aux_sym__val_number_token4] = ACTIONS(1603), - [aux_sym__val_number_token5] = ACTIONS(1603), - [aux_sym__val_number_token6] = ACTIONS(1603), - [anon_sym_0b] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1589), - [anon_sym_0x] = ACTIONS(1589), - [sym_val_date] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym__str_single_quotes] = ACTIONS(1603), - [sym__str_back_ticks] = ACTIONS(1603), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), - [anon_sym_err_GT] = ACTIONS(1589), - [anon_sym_out_GT] = ACTIONS(1589), - [anon_sym_e_GT] = ACTIONS(1589), - [anon_sym_o_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT] = ACTIONS(1589), - [anon_sym_err_GT_GT] = ACTIONS(1603), - [anon_sym_out_GT_GT] = ACTIONS(1603), - [anon_sym_e_GT_GT] = ACTIONS(1603), - [anon_sym_o_GT_GT] = ACTIONS(1603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), - [aux_sym_unquoted_token1] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), + [anon_sym_null] = ACTIONS(4175), + [anon_sym_true] = ACTIONS(4177), + [anon_sym_false] = ACTIONS(4177), + [aux_sym__val_number_decimal_token1] = ACTIONS(4179), + [aux_sym__val_number_decimal_token2] = ACTIONS(4181), + [aux_sym__val_number_decimal_token3] = ACTIONS(4183), + [aux_sym__val_number_decimal_token4] = ACTIONS(4185), + [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(4187), + [aux_sym__val_number_token5] = ACTIONS(4187), + [aux_sym__val_number_token6] = ACTIONS(4187), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4189), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1304] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4781), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(7446), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(5508), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4782), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(8227), + [sym__value] = STATE(6418), + [sym_val_nothing] = STATE(5085), + [sym_val_bool] = STATE(6761), + [sym_val_variable] = STATE(5085), + [sym_val_number] = STATE(5085), + [sym__val_number_decimal] = STATE(5711), + [sym__val_number] = STATE(5256), + [sym_val_duration] = STATE(5085), + [sym_val_filesize] = STATE(5085), + [sym_val_binary] = STATE(5085), + [sym_val_string] = STATE(5085), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(5085), + [sym__inter_single_quotes] = STATE(5169), + [sym__inter_double_quotes] = STATE(5170), + [sym_val_list] = STATE(5085), + [sym_val_record] = STATE(5085), + [sym_val_table] = STATE(5085), + [sym_val_closure] = STATE(5085), + [sym_unquoted] = STATE(6420), + [sym__unquoted_anonymous_prefix] = STATE(8422), [sym_comment] = STATE(1304), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym_DOLLAR] = ACTIONS(4167), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_DOT_DOT] = ACTIONS(4171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), + [anon_sym_DOT_DOT_LT] = ACTIONS(4173), [anon_sym_null] = ACTIONS(4359), [anon_sym_true] = ACTIONS(4361), [anon_sym_false] = ACTIONS(4361), @@ -209794,4218 +212492,4580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(4365), [aux_sym__val_number_decimal_token3] = ACTIONS(4367), [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4373), - [aux_sym__val_number_token5] = ACTIONS(4373), - [aux_sym__val_number_token6] = ACTIONS(4373), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [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(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3659), + [anon_sym_0o] = ACTIONS(3661), + [anon_sym_0x] = ACTIONS(3661), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4191), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1305] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3121), - [sym__match_pattern_list] = STATE(3122), - [sym__match_pattern_rest] = STATE(7849), - [sym__match_pattern_record] = STATE(3123), - [sym_expr_parenthesized] = STATE(2908), - [sym_val_range] = STATE(3121), - [sym__val_range] = STATE(7923), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(3062), - [sym_val_variable] = STATE(2909), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(2671), - [sym__val_number] = STATE(3108), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__raw_str] = STATE(3164), - [sym__str_double_quotes] = STATE(3164), - [sym_val_table] = STATE(3125), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7818), + [sym__val_range] = STATE(8417), + [sym__value] = STATE(5092), + [sym_val_nothing] = STATE(5064), + [sym_val_bool] = STATE(4848), + [sym_val_variable] = STATE(5064), + [sym_val_number] = STATE(5064), + [sym__val_number_decimal] = STATE(4388), + [sym__val_number] = STATE(5141), + [sym_val_duration] = STATE(5064), + [sym_val_filesize] = STATE(5064), + [sym_val_binary] = STATE(5064), + [sym_val_string] = STATE(5064), + [sym__raw_str] = STATE(4801), + [sym__str_double_quotes] = STATE(4801), + [sym_val_interpolated] = STATE(5064), + [sym__inter_single_quotes] = STATE(5066), + [sym__inter_double_quotes] = STATE(5068), + [sym_val_list] = STATE(5064), + [sym_val_record] = STATE(5064), + [sym_val_table] = STATE(5064), + [sym_val_closure] = STATE(5064), + [sym_unquoted] = STATE(5101), + [sym__unquoted_anonymous_prefix] = STATE(8674), [sym_comment] = STATE(1305), - [aux_sym__match_pattern_list_repeat1] = STATE(1348), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym_DOLLAR] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3917), - [anon_sym_DOT_DOT] = ACTIONS(4397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3921), - [anon_sym_DOT_DOT_LT] = ACTIONS(3921), - [anon_sym_null] = ACTIONS(3923), - [anon_sym_true] = ACTIONS(3925), - [anon_sym_false] = ACTIONS(3925), - [aux_sym__val_number_decimal_token1] = ACTIONS(3927), - [aux_sym__val_number_decimal_token2] = ACTIONS(3929), - [aux_sym__val_number_decimal_token3] = ACTIONS(3931), - [aux_sym__val_number_decimal_token4] = ACTIONS(3933), - [aux_sym__val_number_token1] = ACTIONS(3935), - [aux_sym__val_number_token2] = ACTIONS(3935), - [aux_sym__val_number_token3] = ACTIONS(3935), - [aux_sym__val_number_token4] = ACTIONS(3937), - [aux_sym__val_number_token5] = ACTIONS(3937), - [aux_sym__val_number_token6] = ACTIONS(3937), - [anon_sym_0b] = ACTIONS(3939), - [anon_sym_0o] = ACTIONS(3941), - [anon_sym_0x] = ACTIONS(3941), - [sym_val_date] = ACTIONS(3943), - [anon_sym_DQUOTE] = ACTIONS(3945), - [sym__str_single_quotes] = ACTIONS(3947), - [sym__str_back_ticks] = ACTIONS(3947), - [anon_sym_err_GT] = ACTIONS(2623), - [anon_sym_out_GT] = ACTIONS(2623), - [anon_sym_e_GT] = ACTIONS(2623), - [anon_sym_o_GT] = ACTIONS(2623), - [anon_sym_err_PLUSout_GT] = ACTIONS(2623), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2623), - [anon_sym_o_PLUSe_GT] = ACTIONS(2623), - [anon_sym_e_PLUSo_GT] = ACTIONS(2623), - [anon_sym_err_GT_GT] = ACTIONS(2625), - [anon_sym_out_GT_GT] = ACTIONS(2625), - [anon_sym_e_GT_GT] = ACTIONS(2625), - [anon_sym_o_GT_GT] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2625), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4397), + [aux_sym__val_number_token2] = ACTIONS(4397), + [aux_sym__val_number_token3] = ACTIONS(4397), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(2175), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2195), }, [1306] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4640), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(7446), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(5508), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4641), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(8417), + [sym__value] = STATE(5192), + [sym_val_nothing] = STATE(5064), + [sym_val_bool] = STATE(4848), + [sym_val_variable] = STATE(5064), + [sym_val_number] = STATE(5064), + [sym__val_number_decimal] = STATE(4388), + [sym__val_number] = STATE(5141), + [sym_val_duration] = STATE(5064), + [sym_val_filesize] = STATE(5064), + [sym_val_binary] = STATE(5064), + [sym_val_string] = STATE(5064), + [sym__raw_str] = STATE(4801), + [sym__str_double_quotes] = STATE(4801), + [sym_val_interpolated] = STATE(5064), + [sym__inter_single_quotes] = STATE(5066), + [sym__inter_double_quotes] = STATE(5068), + [sym_val_list] = STATE(5064), + [sym_val_record] = STATE(5064), + [sym_val_table] = STATE(5064), + [sym_val_closure] = STATE(5064), + [sym_unquoted] = STATE(5196), + [sym__unquoted_anonymous_prefix] = STATE(8674), [sym_comment] = STATE(1306), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4373), - [aux_sym__val_number_token5] = ACTIONS(4373), - [aux_sym__val_number_token6] = ACTIONS(4373), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4375), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4397), + [aux_sym__val_number_token2] = ACTIONS(4397), + [aux_sym__val_number_token3] = ACTIONS(4397), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(2175), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2195), }, [1307] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4642), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(4451), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(4096), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4644), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(4947), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(7477), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(5985), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(4950), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), - [anon_sym_null] = ACTIONS(4399), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(4403), - [aux_sym__val_number_decimal_token3] = ACTIONS(4405), - [aux_sym__val_number_decimal_token4] = ACTIONS(4407), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4409), - [aux_sym__val_number_token5] = ACTIONS(4409), - [aux_sym__val_number_token6] = ACTIONS(4409), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4425), + [anon_sym_false] = ACTIONS(4425), + [aux_sym__val_number_decimal_token1] = ACTIONS(4427), + [aux_sym__val_number_decimal_token2] = ACTIONS(4429), + [aux_sym__val_number_decimal_token3] = ACTIONS(4431), + [aux_sym__val_number_decimal_token4] = ACTIONS(4433), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1308] = { - [sym__val_range] = STATE(7909), - [sym__value] = STATE(3007), - [sym_val_nothing] = STATE(2936), - [sym_val_bool] = STATE(2923), - [sym_val_variable] = STATE(2936), - [sym_val_number] = STATE(2936), - [sym__val_number_decimal] = STATE(2579), - [sym__val_number] = STATE(2977), - [sym_val_duration] = STATE(2936), - [sym_val_filesize] = STATE(2936), - [sym_val_binary] = STATE(2936), - [sym_val_string] = STATE(2936), - [sym__raw_str] = STATE(3013), - [sym__str_double_quotes] = STATE(3013), - [sym_val_interpolated] = STATE(2936), - [sym__inter_single_quotes] = STATE(3000), - [sym__inter_double_quotes] = STATE(3001), - [sym_val_list] = STATE(2936), - [sym_val_record] = STATE(2936), - [sym_val_table] = STATE(2936), - [sym_val_closure] = STATE(2936), - [sym_unquoted] = STATE(3010), - [sym__unquoted_anonymous_prefix] = STATE(8098), + [sym__val_range] = STATE(8417), + [sym__value] = STATE(5061), + [sym_val_nothing] = STATE(5064), + [sym_val_bool] = STATE(4848), + [sym_val_variable] = STATE(5064), + [sym_val_number] = STATE(5064), + [sym__val_number_decimal] = STATE(4388), + [sym__val_number] = STATE(5141), + [sym_val_duration] = STATE(5064), + [sym_val_filesize] = STATE(5064), + [sym_val_binary] = STATE(5064), + [sym_val_string] = STATE(5064), + [sym__raw_str] = STATE(4801), + [sym__str_double_quotes] = STATE(4801), + [sym_val_interpolated] = STATE(5064), + [sym__inter_single_quotes] = STATE(5066), + [sym__inter_double_quotes] = STATE(5068), + [sym_val_list] = STATE(5064), + [sym_val_record] = STATE(5064), + [sym_val_table] = STATE(5064), + [sym_val_closure] = STATE(5064), + [sym_unquoted] = STATE(5062), + [sym__unquoted_anonymous_prefix] = STATE(8674), [sym_comment] = STATE(1308), - [anon_sym_LBRACK] = ACTIONS(4165), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_DOLLAR] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_DOT_DOT] = ACTIONS(4173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4175), - [anon_sym_DOT_DOT_LT] = ACTIONS(4175), - [anon_sym_null] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4179), - [anon_sym_false] = ACTIONS(4179), - [aux_sym__val_number_decimal_token1] = ACTIONS(4181), - [aux_sym__val_number_decimal_token2] = ACTIONS(4183), - [aux_sym__val_number_decimal_token3] = ACTIONS(4185), - [aux_sym__val_number_decimal_token4] = ACTIONS(4187), - [aux_sym__val_number_token1] = ACTIONS(4189), - [aux_sym__val_number_token2] = ACTIONS(4189), - [aux_sym__val_number_token3] = ACTIONS(4189), - [aux_sym__val_number_token4] = ACTIONS(4191), - [aux_sym__val_number_token5] = ACTIONS(4191), - [aux_sym__val_number_token6] = ACTIONS(4191), - [anon_sym_0b] = ACTIONS(4193), - [anon_sym_0o] = ACTIONS(4195), - [anon_sym_0x] = ACTIONS(4195), - [sym_val_date] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(4199), - [sym__str_single_quotes] = ACTIONS(4201), - [sym__str_back_ticks] = ACTIONS(4201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4205), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4207), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4209), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4397), + [aux_sym__val_number_token2] = ACTIONS(4397), + [aux_sym__val_number_token3] = ACTIONS(4397), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(2175), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2195), }, [1309] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6066), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5255), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6072), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(4996), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(7477), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(5985), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(5000), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1309), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [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(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4221), - [aux_sym__val_number_token5] = ACTIONS(4221), - [aux_sym__val_number_token6] = ACTIONS(4221), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4425), + [anon_sym_false] = ACTIONS(4425), + [aux_sym__val_number_decimal_token1] = ACTIONS(4427), + [aux_sym__val_number_decimal_token2] = ACTIONS(4429), + [aux_sym__val_number_decimal_token3] = ACTIONS(4431), + [aux_sym__val_number_decimal_token4] = ACTIONS(4433), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1310] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5691), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(6082), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(5008), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(7477), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(5985), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(5009), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1310), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4425), + [anon_sym_false] = ACTIONS(4425), + [aux_sym__val_number_decimal_token1] = ACTIONS(4427), + [aux_sym__val_number_decimal_token2] = ACTIONS(4429), + [aux_sym__val_number_decimal_token3] = ACTIONS(4431), + [aux_sym__val_number_decimal_token4] = ACTIONS(4433), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1311] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4781), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(4451), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(4096), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4782), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(4947), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(4583), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(4349), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(4950), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1311), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), - [anon_sym_null] = ACTIONS(4399), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(4403), - [aux_sym__val_number_decimal_token3] = ACTIONS(4405), - [aux_sym__val_number_decimal_token4] = ACTIONS(4407), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4409), - [aux_sym__val_number_token5] = ACTIONS(4409), - [aux_sym__val_number_token6] = ACTIONS(4409), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(4453), + [aux_sym__val_number_decimal_token3] = ACTIONS(4455), + [aux_sym__val_number_decimal_token4] = ACTIONS(4457), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4459), + [aux_sym__val_number_token5] = ACTIONS(4459), + [aux_sym__val_number_token6] = ACTIONS(4459), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4461), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1312] = { - [sym__val_range] = STATE(7944), - [sym__value] = STATE(3667), - [sym_val_nothing] = STATE(3716), - [sym_val_bool] = STATE(3606), - [sym_val_variable] = STATE(3716), - [sym_val_number] = STATE(3716), - [sym__val_number_decimal] = STATE(3404), - [sym__val_number] = STATE(3682), - [sym_val_duration] = STATE(3716), - [sym_val_filesize] = STATE(3716), - [sym_val_binary] = STATE(3716), - [sym_val_string] = STATE(3716), - [sym__raw_str] = STATE(3567), - [sym__str_double_quotes] = STATE(3567), - [sym_val_interpolated] = STATE(3716), - [sym__inter_single_quotes] = STATE(3683), - [sym__inter_double_quotes] = STATE(3684), - [sym_val_list] = STATE(3716), - [sym_val_record] = STATE(3716), - [sym_val_table] = STATE(3716), - [sym_val_closure] = STATE(3716), - [sym_unquoted] = STATE(3668), - [sym__unquoted_anonymous_prefix] = STATE(8060), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(5039), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(7477), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(5985), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(5040), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1312), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym_DOLLAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(4437), - [aux_sym__val_number_token2] = ACTIONS(4437), - [aux_sym__val_number_token3] = ACTIONS(4437), - [aux_sym__val_number_token4] = ACTIONS(4439), - [aux_sym__val_number_token5] = ACTIONS(4439), - [aux_sym__val_number_token6] = ACTIONS(4439), - [anon_sym_0b] = ACTIONS(4441), - [anon_sym_0o] = ACTIONS(4443), - [anon_sym_0x] = ACTIONS(4443), - [sym_val_date] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4447), - [sym__str_single_quotes] = ACTIONS(4449), - [sym__str_back_ticks] = ACTIONS(4449), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4453), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4455), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4423), + [anon_sym_true] = ACTIONS(4425), + [anon_sym_false] = ACTIONS(4425), + [aux_sym__val_number_decimal_token1] = ACTIONS(4427), + [aux_sym__val_number_decimal_token2] = ACTIONS(4429), + [aux_sym__val_number_decimal_token3] = ACTIONS(4431), + [aux_sym__val_number_decimal_token4] = ACTIONS(4433), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1313] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4640), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(4451), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(4096), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4641), - [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(4996), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(4583), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(4349), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(5000), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1313), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), - [anon_sym_null] = ACTIONS(4399), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(4403), - [aux_sym__val_number_decimal_token3] = ACTIONS(4405), - [aux_sym__val_number_decimal_token4] = ACTIONS(4407), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4409), - [aux_sym__val_number_token5] = ACTIONS(4409), - [aux_sym__val_number_token6] = ACTIONS(4409), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(4453), + [aux_sym__val_number_decimal_token3] = ACTIONS(4455), + [aux_sym__val_number_decimal_token4] = ACTIONS(4457), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4459), + [aux_sym__val_number_token5] = ACTIONS(4459), + [aux_sym__val_number_token6] = ACTIONS(4459), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4461), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1314] = { - [sym__val_range] = STATE(7944), - [sym__value] = STATE(3675), - [sym_val_nothing] = STATE(3716), - [sym_val_bool] = STATE(3606), - [sym_val_variable] = STATE(3716), - [sym_val_number] = STATE(3716), - [sym__val_number_decimal] = STATE(3404), - [sym__val_number] = STATE(3682), - [sym_val_duration] = STATE(3716), - [sym_val_filesize] = STATE(3716), - [sym_val_binary] = STATE(3716), - [sym_val_string] = STATE(3716), - [sym__raw_str] = STATE(3567), - [sym__str_double_quotes] = STATE(3567), - [sym_val_interpolated] = STATE(3716), - [sym__inter_single_quotes] = STATE(3683), - [sym__inter_double_quotes] = STATE(3684), - [sym_val_list] = STATE(3716), - [sym_val_record] = STATE(3716), - [sym_val_table] = STATE(3716), - [sym_val_closure] = STATE(3716), - [sym_unquoted] = STATE(3676), - [sym__unquoted_anonymous_prefix] = STATE(8060), [sym_comment] = STATE(1314), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym_DOLLAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(4437), - [aux_sym__val_number_token2] = ACTIONS(4437), - [aux_sym__val_number_token3] = ACTIONS(4437), - [aux_sym__val_number_token4] = ACTIONS(4439), - [aux_sym__val_number_token5] = ACTIONS(4439), - [aux_sym__val_number_token6] = ACTIONS(4439), - [anon_sym_0b] = ACTIONS(4441), - [anon_sym_0o] = ACTIONS(4443), - [anon_sym_0x] = ACTIONS(4443), - [sym_val_date] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4447), - [sym__str_single_quotes] = ACTIONS(4449), - [sym__str_back_ticks] = ACTIONS(4449), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4453), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4455), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4457), + [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(1669), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4061), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1315] = { - [sym__val_range] = STATE(7944), - [sym__value] = STATE(3692), - [sym_val_nothing] = STATE(3716), - [sym_val_bool] = STATE(3606), - [sym_val_variable] = STATE(3716), - [sym_val_number] = STATE(3716), - [sym__val_number_decimal] = STATE(3404), - [sym__val_number] = STATE(3682), - [sym_val_duration] = STATE(3716), - [sym_val_filesize] = STATE(3716), - [sym_val_binary] = STATE(3716), - [sym_val_string] = STATE(3716), - [sym__raw_str] = STATE(3567), - [sym__str_double_quotes] = STATE(3567), - [sym_val_interpolated] = STATE(3716), - [sym__inter_single_quotes] = STATE(3683), - [sym__inter_double_quotes] = STATE(3684), - [sym_val_list] = STATE(3716), - [sym_val_record] = STATE(3716), - [sym_val_table] = STATE(3716), - [sym_val_closure] = STATE(3716), - [sym_unquoted] = STATE(3694), - [sym__unquoted_anonymous_prefix] = STATE(8060), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(5008), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(4583), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(4349), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(5009), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1315), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym_DOLLAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(4437), - [aux_sym__val_number_token2] = ACTIONS(4437), - [aux_sym__val_number_token3] = ACTIONS(4437), - [aux_sym__val_number_token4] = ACTIONS(4439), - [aux_sym__val_number_token5] = ACTIONS(4439), - [aux_sym__val_number_token6] = ACTIONS(4439), - [anon_sym_0b] = ACTIONS(4441), - [anon_sym_0o] = ACTIONS(4443), - [anon_sym_0x] = ACTIONS(4443), - [sym_val_date] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4447), - [sym__str_single_quotes] = ACTIONS(4449), - [sym__str_back_ticks] = ACTIONS(4449), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4453), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4455), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(4453), + [aux_sym__val_number_decimal_token3] = ACTIONS(4455), + [aux_sym__val_number_decimal_token4] = ACTIONS(4457), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4459), + [aux_sym__val_number_token5] = ACTIONS(4459), + [aux_sym__val_number_token6] = ACTIONS(4459), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4461), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1316] = { - [sym__val_range] = STATE(7861), - [sym__value] = STATE(1845), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1667), - [sym_val_variable] = STATE(1740), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1382), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_unquoted] = STATE(1846), - [sym__unquoted_anonymous_prefix] = STATE(7937), + [sym__val_range] = STATE(8261), + [sym__value] = STATE(3865), + [sym_val_nothing] = STATE(3919), + [sym_val_bool] = STATE(3828), + [sym_val_variable] = STATE(3919), + [sym_val_number] = STATE(3919), + [sym__val_number_decimal] = STATE(3585), + [sym__val_number] = STATE(3953), + [sym_val_duration] = STATE(3919), + [sym_val_filesize] = STATE(3919), + [sym_val_binary] = STATE(3919), + [sym_val_string] = STATE(3919), + [sym__raw_str] = STATE(3792), + [sym__str_double_quotes] = STATE(3792), + [sym_val_interpolated] = STATE(3919), + [sym__inter_single_quotes] = STATE(3954), + [sym__inter_double_quotes] = STATE(3851), + [sym_val_list] = STATE(3919), + [sym_val_record] = STATE(3919), + [sym_val_table] = STATE(3919), + [sym_val_closure] = STATE(3919), + [sym_unquoted] = STATE(3866), + [sym__unquoted_anonymous_prefix] = STATE(8437), [sym_comment] = STATE(1316), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4463), - [anon_sym_DOT_DOT_LT] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_true] = ACTIONS(4467), - [anon_sym_false] = ACTIONS(4467), - [aux_sym__val_number_decimal_token1] = ACTIONS(4469), - [aux_sym__val_number_decimal_token2] = ACTIONS(4471), - [aux_sym__val_number_decimal_token3] = ACTIONS(4473), - [aux_sym__val_number_decimal_token4] = ACTIONS(4475), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(4477), - [aux_sym__val_number_token5] = ACTIONS(4477), - [aux_sym__val_number_token6] = ACTIONS(4477), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(4479), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4481), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(4463), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_DOLLAR] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_DOT_DOT] = ACTIONS(4471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), + [anon_sym_DOT_DOT_LT] = ACTIONS(4473), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [aux_sym__val_number_decimal_token1] = ACTIONS(4479), + [aux_sym__val_number_decimal_token2] = ACTIONS(4481), + [aux_sym__val_number_decimal_token3] = ACTIONS(4483), + [aux_sym__val_number_decimal_token4] = ACTIONS(4485), + [aux_sym__val_number_token1] = ACTIONS(4487), + [aux_sym__val_number_token2] = ACTIONS(4487), + [aux_sym__val_number_token3] = ACTIONS(4487), + [aux_sym__val_number_token4] = ACTIONS(4489), + [aux_sym__val_number_token5] = ACTIONS(4489), + [aux_sym__val_number_token6] = ACTIONS(4489), + [anon_sym_0b] = ACTIONS(4491), + [anon_sym_0o] = ACTIONS(4493), + [anon_sym_0x] = ACTIONS(4493), + [sym_val_date] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4497), + [sym__str_single_quotes] = ACTIONS(4499), + [sym__str_back_ticks] = ACTIONS(4499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4507), }, [1317] = { - [sym__val_range] = STATE(7944), - [sym__value] = STATE(3707), - [sym_val_nothing] = STATE(3716), - [sym_val_bool] = STATE(3606), - [sym_val_variable] = STATE(3716), - [sym_val_number] = STATE(3716), - [sym__val_number_decimal] = STATE(3404), - [sym__val_number] = STATE(3682), - [sym_val_duration] = STATE(3716), - [sym_val_filesize] = STATE(3716), - [sym_val_binary] = STATE(3716), - [sym_val_string] = STATE(3716), - [sym__raw_str] = STATE(3567), - [sym__str_double_quotes] = STATE(3567), - [sym_val_interpolated] = STATE(3716), - [sym__inter_single_quotes] = STATE(3683), - [sym__inter_double_quotes] = STATE(3684), - [sym_val_list] = STATE(3716), - [sym_val_record] = STATE(3716), - [sym_val_table] = STATE(3716), - [sym_val_closure] = STATE(3716), - [sym_unquoted] = STATE(3708), - [sym__unquoted_anonymous_prefix] = STATE(8060), + [sym__val_range] = STATE(8671), + [sym__value] = STATE(5039), + [sym_val_nothing] = STATE(5043), + [sym_val_bool] = STATE(4583), + [sym_val_variable] = STATE(5043), + [sym_val_number] = STATE(5043), + [sym__val_number_decimal] = STATE(4349), + [sym__val_number] = STATE(5038), + [sym_val_duration] = STATE(5043), + [sym_val_filesize] = STATE(5043), + [sym_val_binary] = STATE(5043), + [sym_val_string] = STATE(5043), + [sym__raw_str] = STATE(4655), + [sym__str_double_quotes] = STATE(4655), + [sym_val_interpolated] = STATE(5043), + [sym__inter_single_quotes] = STATE(4967), + [sym__inter_double_quotes] = STATE(4983), + [sym_val_list] = STATE(5043), + [sym_val_record] = STATE(5043), + [sym_val_table] = STATE(5043), + [sym_val_closure] = STATE(5043), + [sym_unquoted] = STATE(5040), + [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1317), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym_DOLLAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), - [anon_sym_DOT_DOT_LT] = ACTIONS(4423), - [anon_sym_null] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [aux_sym__val_number_decimal_token1] = ACTIONS(4429), - [aux_sym__val_number_decimal_token2] = ACTIONS(4431), - [aux_sym__val_number_decimal_token3] = ACTIONS(4433), - [aux_sym__val_number_decimal_token4] = ACTIONS(4435), - [aux_sym__val_number_token1] = ACTIONS(4437), - [aux_sym__val_number_token2] = ACTIONS(4437), - [aux_sym__val_number_token3] = ACTIONS(4437), - [aux_sym__val_number_token4] = ACTIONS(4439), - [aux_sym__val_number_token5] = ACTIONS(4439), - [aux_sym__val_number_token6] = ACTIONS(4439), - [anon_sym_0b] = ACTIONS(4441), - [anon_sym_0o] = ACTIONS(4443), - [anon_sym_0x] = ACTIONS(4443), - [sym_val_date] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4447), - [sym__str_single_quotes] = ACTIONS(4449), - [sym__str_back_ticks] = ACTIONS(4449), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4451), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4453), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4455), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4411), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym_DOLLAR] = ACTIONS(4415), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_DOT_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), + [anon_sym_DOT_DOT_LT] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(4453), + [aux_sym__val_number_decimal_token3] = ACTIONS(4455), + [aux_sym__val_number_decimal_token4] = ACTIONS(4457), + [aux_sym__val_number_token1] = ACTIONS(4435), + [aux_sym__val_number_token2] = ACTIONS(4435), + [aux_sym__val_number_token3] = ACTIONS(4435), + [aux_sym__val_number_token4] = ACTIONS(4459), + [aux_sym__val_number_token5] = ACTIONS(4459), + [aux_sym__val_number_token6] = ACTIONS(4459), + [anon_sym_0b] = ACTIONS(2007), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(4461), + [anon_sym_DQUOTE] = ACTIONS(4441), + [sym__str_single_quotes] = ACTIONS(4443), + [sym__str_back_ticks] = ACTIONS(4443), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1318] = { - [sym__val_range] = STATE(7861), - [sym__value] = STATE(1734), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1667), - [sym_val_variable] = STATE(1740), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1382), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_unquoted] = STATE(1735), - [sym__unquoted_anonymous_prefix] = STATE(7937), + [sym__val_range] = STATE(8261), + [sym__value] = STATE(3867), + [sym_val_nothing] = STATE(3919), + [sym_val_bool] = STATE(3828), + [sym_val_variable] = STATE(3919), + [sym_val_number] = STATE(3919), + [sym__val_number_decimal] = STATE(3585), + [sym__val_number] = STATE(3953), + [sym_val_duration] = STATE(3919), + [sym_val_filesize] = STATE(3919), + [sym_val_binary] = STATE(3919), + [sym_val_string] = STATE(3919), + [sym__raw_str] = STATE(3792), + [sym__str_double_quotes] = STATE(3792), + [sym_val_interpolated] = STATE(3919), + [sym__inter_single_quotes] = STATE(3954), + [sym__inter_double_quotes] = STATE(3851), + [sym_val_list] = STATE(3919), + [sym_val_record] = STATE(3919), + [sym_val_table] = STATE(3919), + [sym_val_closure] = STATE(3919), + [sym_unquoted] = STATE(3868), + [sym__unquoted_anonymous_prefix] = STATE(8437), [sym_comment] = STATE(1318), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4463), - [anon_sym_DOT_DOT_LT] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_true] = ACTIONS(4467), - [anon_sym_false] = ACTIONS(4467), - [aux_sym__val_number_decimal_token1] = ACTIONS(4469), - [aux_sym__val_number_decimal_token2] = ACTIONS(4471), - [aux_sym__val_number_decimal_token3] = ACTIONS(4473), - [aux_sym__val_number_decimal_token4] = ACTIONS(4475), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(4477), - [aux_sym__val_number_token5] = ACTIONS(4477), - [aux_sym__val_number_token6] = ACTIONS(4477), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(4479), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4481), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(4463), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_DOLLAR] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_DOT_DOT] = ACTIONS(4471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), + [anon_sym_DOT_DOT_LT] = ACTIONS(4473), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [aux_sym__val_number_decimal_token1] = ACTIONS(4479), + [aux_sym__val_number_decimal_token2] = ACTIONS(4481), + [aux_sym__val_number_decimal_token3] = ACTIONS(4483), + [aux_sym__val_number_decimal_token4] = ACTIONS(4485), + [aux_sym__val_number_token1] = ACTIONS(4487), + [aux_sym__val_number_token2] = ACTIONS(4487), + [aux_sym__val_number_token3] = ACTIONS(4487), + [aux_sym__val_number_token4] = ACTIONS(4489), + [aux_sym__val_number_token5] = ACTIONS(4489), + [aux_sym__val_number_token6] = ACTIONS(4489), + [anon_sym_0b] = ACTIONS(4491), + [anon_sym_0o] = ACTIONS(4493), + [anon_sym_0x] = ACTIONS(4493), + [sym_val_date] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4497), + [sym__str_single_quotes] = ACTIONS(4499), + [sym__str_back_ticks] = ACTIONS(4499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4507), }, [1319] = { + [sym__val_range] = STATE(8344), + [sym__value] = STATE(6494), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6082), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(6501), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4485), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4509), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1320] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6168), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(7205), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5606), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6169), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8261), + [sym__value] = STATE(3852), + [sym_val_nothing] = STATE(3919), + [sym_val_bool] = STATE(3828), + [sym_val_variable] = STATE(3919), + [sym_val_number] = STATE(3919), + [sym__val_number_decimal] = STATE(3585), + [sym__val_number] = STATE(3953), + [sym_val_duration] = STATE(3919), + [sym_val_filesize] = STATE(3919), + [sym_val_binary] = STATE(3919), + [sym_val_string] = STATE(3919), + [sym__raw_str] = STATE(3792), + [sym__str_double_quotes] = STATE(3792), + [sym_val_interpolated] = STATE(3919), + [sym__inter_single_quotes] = STATE(3954), + [sym__inter_double_quotes] = STATE(3851), + [sym_val_list] = STATE(3919), + [sym_val_record] = STATE(3919), + [sym_val_table] = STATE(3919), + [sym_val_closure] = STATE(3919), + [sym_unquoted] = STATE(3853), + [sym__unquoted_anonymous_prefix] = STATE(8437), [sym_comment] = STATE(1320), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4249), - [anon_sym_true] = ACTIONS(4251), - [anon_sym_false] = ACTIONS(4251), - [aux_sym__val_number_decimal_token1] = ACTIONS(4253), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4261), - [aux_sym__val_number_token5] = ACTIONS(4261), - [aux_sym__val_number_token6] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4463), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_DOLLAR] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_DOT_DOT] = ACTIONS(4471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), + [anon_sym_DOT_DOT_LT] = ACTIONS(4473), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [aux_sym__val_number_decimal_token1] = ACTIONS(4479), + [aux_sym__val_number_decimal_token2] = ACTIONS(4481), + [aux_sym__val_number_decimal_token3] = ACTIONS(4483), + [aux_sym__val_number_decimal_token4] = ACTIONS(4485), + [aux_sym__val_number_token1] = ACTIONS(4487), + [aux_sym__val_number_token2] = ACTIONS(4487), + [aux_sym__val_number_token3] = ACTIONS(4487), + [aux_sym__val_number_token4] = ACTIONS(4489), + [aux_sym__val_number_token5] = ACTIONS(4489), + [aux_sym__val_number_token6] = ACTIONS(4489), + [anon_sym_0b] = ACTIONS(4491), + [anon_sym_0o] = ACTIONS(4493), + [anon_sym_0x] = ACTIONS(4493), + [sym_val_date] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4497), + [sym__str_single_quotes] = ACTIONS(4499), + [sym__str_back_ticks] = ACTIONS(4499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4507), }, [1321] = { - [sym__val_range] = STATE(7861), - [sym__value] = STATE(1728), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1667), - [sym_val_variable] = STATE(1740), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1382), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_unquoted] = STATE(1729), - [sym__unquoted_anonymous_prefix] = STATE(7937), + [sym__val_range] = STATE(8251), + [sym__value] = STATE(1764), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1697), + [sym_val_variable] = STATE(1803), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1378), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_unquoted] = STATE(1765), + [sym__unquoted_anonymous_prefix] = STATE(8625), [sym_comment] = STATE(1321), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4463), - [anon_sym_DOT_DOT_LT] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_true] = ACTIONS(4467), - [anon_sym_false] = ACTIONS(4467), - [aux_sym__val_number_decimal_token1] = ACTIONS(4469), - [aux_sym__val_number_decimal_token2] = ACTIONS(4471), - [aux_sym__val_number_decimal_token3] = ACTIONS(4473), - [aux_sym__val_number_decimal_token4] = ACTIONS(4475), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(4477), - [aux_sym__val_number_token5] = ACTIONS(4477), - [aux_sym__val_number_token6] = ACTIONS(4477), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(4479), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4481), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), + [anon_sym_DOT_DOT_LT] = ACTIONS(4515), + [anon_sym_null] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [aux_sym__val_number_decimal_token1] = ACTIONS(4521), + [aux_sym__val_number_decimal_token2] = ACTIONS(4523), + [aux_sym__val_number_decimal_token3] = ACTIONS(4525), + [aux_sym__val_number_decimal_token4] = ACTIONS(4527), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(4529), + [aux_sym__val_number_token5] = ACTIONS(4529), + [aux_sym__val_number_token6] = ACTIONS(4529), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [1322] = { - [sym__val_range] = STATE(7931), - [sym__value] = STATE(5968), - [sym_val_nothing] = STATE(5974), - [sym_val_bool] = STATE(5725), - [sym_val_variable] = STATE(5974), - [sym_val_number] = STATE(5974), - [sym__val_number_decimal] = STATE(5112), - [sym__val_number] = STATE(5819), - [sym_val_duration] = STATE(5974), - [sym_val_filesize] = STATE(5974), - [sym_val_binary] = STATE(5974), - [sym_val_string] = STATE(5974), - [sym__raw_str] = STATE(5511), - [sym__str_double_quotes] = STATE(5511), - [sym_val_interpolated] = STATE(5974), - [sym__inter_single_quotes] = STATE(5867), - [sym__inter_double_quotes] = STATE(5869), - [sym_val_list] = STATE(5974), - [sym_val_record] = STATE(5974), - [sym_val_table] = STATE(5974), - [sym_val_closure] = STATE(5974), - [sym_unquoted] = STATE(5969), - [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym__val_range] = STATE(8261), + [sym__value] = STATE(3914), + [sym_val_nothing] = STATE(3919), + [sym_val_bool] = STATE(3828), + [sym_val_variable] = STATE(3919), + [sym_val_number] = STATE(3919), + [sym__val_number_decimal] = STATE(3585), + [sym__val_number] = STATE(3953), + [sym_val_duration] = STATE(3919), + [sym_val_filesize] = STATE(3919), + [sym_val_binary] = STATE(3919), + [sym_val_string] = STATE(3919), + [sym__raw_str] = STATE(3792), + [sym__str_double_quotes] = STATE(3792), + [sym_val_interpolated] = STATE(3919), + [sym__inter_single_quotes] = STATE(3954), + [sym__inter_double_quotes] = STATE(3851), + [sym_val_list] = STATE(3919), + [sym_val_record] = STATE(3919), + [sym_val_table] = STATE(3919), + [sym_val_closure] = STATE(3919), + [sym_unquoted] = STATE(3925), + [sym__unquoted_anonymous_prefix] = STATE(8437), [sym_comment] = STATE(1322), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4497), - [anon_sym_DOT_DOT_LT] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4499), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [aux_sym__val_number_decimal_token1] = ACTIONS(4503), - [aux_sym__val_number_decimal_token2] = ACTIONS(4505), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_decimal_token4] = ACTIONS(4509), - [aux_sym__val_number_token1] = ACTIONS(4511), - [aux_sym__val_number_token2] = ACTIONS(4511), - [aux_sym__val_number_token3] = ACTIONS(4511), - [aux_sym__val_number_token4] = ACTIONS(4513), - [aux_sym__val_number_token5] = ACTIONS(4513), - [aux_sym__val_number_token6] = ACTIONS(4513), - [anon_sym_0b] = ACTIONS(4515), - [anon_sym_0o] = ACTIONS(4517), - [anon_sym_0x] = ACTIONS(4517), - [sym_val_date] = ACTIONS(4519), - [anon_sym_DQUOTE] = ACTIONS(4521), - [sym__str_single_quotes] = ACTIONS(4523), - [sym__str_back_ticks] = ACTIONS(4523), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4525), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4527), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4529), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4463), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_DOLLAR] = ACTIONS(4467), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_DOT_DOT] = ACTIONS(4471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), + [anon_sym_DOT_DOT_LT] = ACTIONS(4473), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_true] = ACTIONS(4477), + [anon_sym_false] = ACTIONS(4477), + [aux_sym__val_number_decimal_token1] = ACTIONS(4479), + [aux_sym__val_number_decimal_token2] = ACTIONS(4481), + [aux_sym__val_number_decimal_token3] = ACTIONS(4483), + [aux_sym__val_number_decimal_token4] = ACTIONS(4485), + [aux_sym__val_number_token1] = ACTIONS(4487), + [aux_sym__val_number_token2] = ACTIONS(4487), + [aux_sym__val_number_token3] = ACTIONS(4487), + [aux_sym__val_number_token4] = ACTIONS(4489), + [aux_sym__val_number_token5] = ACTIONS(4489), + [aux_sym__val_number_token6] = ACTIONS(4489), + [anon_sym_0b] = ACTIONS(4491), + [anon_sym_0o] = ACTIONS(4493), + [anon_sym_0x] = ACTIONS(4493), + [sym_val_date] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(4497), + [sym__str_single_quotes] = ACTIONS(4499), + [sym__str_back_ticks] = ACTIONS(4499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4505), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4507), }, [1323] = { - [sym__val_range] = STATE(7861), - [sym__value] = STATE(1732), - [sym_val_nothing] = STATE(1740), - [sym_val_bool] = STATE(1667), - [sym_val_variable] = STATE(1740), - [sym_val_number] = STATE(1740), - [sym__val_number_decimal] = STATE(1382), - [sym__val_number] = STATE(1775), - [sym_val_duration] = STATE(1740), - [sym_val_filesize] = STATE(1740), - [sym_val_binary] = STATE(1740), - [sym_val_string] = STATE(1740), - [sym__raw_str] = STATE(1826), - [sym__str_double_quotes] = STATE(1826), - [sym_val_interpolated] = STATE(1740), - [sym__inter_single_quotes] = STATE(1787), - [sym__inter_double_quotes] = STATE(1788), - [sym_val_list] = STATE(1740), - [sym_val_record] = STATE(1740), - [sym_val_table] = STATE(1740), - [sym_val_closure] = STATE(1740), - [sym_unquoted] = STATE(1733), - [sym__unquoted_anonymous_prefix] = STATE(7937), + [sym__val_range] = STATE(8251), + [sym__value] = STATE(1766), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1697), + [sym_val_variable] = STATE(1803), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1378), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_unquoted] = STATE(1767), + [sym__unquoted_anonymous_prefix] = STATE(8625), [sym_comment] = STATE(1323), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym_DOLLAR] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(4461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4463), - [anon_sym_DOT_DOT_LT] = ACTIONS(4463), - [anon_sym_null] = ACTIONS(4465), - [anon_sym_true] = ACTIONS(4467), - [anon_sym_false] = ACTIONS(4467), - [aux_sym__val_number_decimal_token1] = ACTIONS(4469), - [aux_sym__val_number_decimal_token2] = ACTIONS(4471), - [aux_sym__val_number_decimal_token3] = ACTIONS(4473), - [aux_sym__val_number_decimal_token4] = ACTIONS(4475), - [aux_sym__val_number_token1] = ACTIONS(2679), - [aux_sym__val_number_token2] = ACTIONS(2679), - [aux_sym__val_number_token3] = ACTIONS(2679), - [aux_sym__val_number_token4] = ACTIONS(4477), - [aux_sym__val_number_token5] = ACTIONS(4477), - [aux_sym__val_number_token6] = ACTIONS(4477), - [anon_sym_0b] = ACTIONS(2683), - [anon_sym_0o] = ACTIONS(2685), - [anon_sym_0x] = ACTIONS(2685), - [sym_val_date] = ACTIONS(4479), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym__str_single_quotes] = ACTIONS(2691), - [sym__str_back_ticks] = ACTIONS(2691), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2695), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4481), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), + [anon_sym_DOT_DOT_LT] = ACTIONS(4515), + [anon_sym_null] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [aux_sym__val_number_decimal_token1] = ACTIONS(4521), + [aux_sym__val_number_decimal_token2] = ACTIONS(4523), + [aux_sym__val_number_decimal_token3] = ACTIONS(4525), + [aux_sym__val_number_decimal_token4] = ACTIONS(4527), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(4529), + [aux_sym__val_number_token5] = ACTIONS(4529), + [aux_sym__val_number_token6] = ACTIONS(4529), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [1324] = { - [sym__val_range] = STATE(7931), - [sym__value] = STATE(5728), - [sym_val_nothing] = STATE(5974), - [sym_val_bool] = STATE(5725), - [sym_val_variable] = STATE(5974), - [sym_val_number] = STATE(5974), - [sym__val_number_decimal] = STATE(5112), - [sym__val_number] = STATE(5819), - [sym_val_duration] = STATE(5974), - [sym_val_filesize] = STATE(5974), - [sym_val_binary] = STATE(5974), - [sym_val_string] = STATE(5974), - [sym__raw_str] = STATE(5511), - [sym__str_double_quotes] = STATE(5511), - [sym_val_interpolated] = STATE(5974), - [sym__inter_single_quotes] = STATE(5867), - [sym__inter_double_quotes] = STATE(5869), - [sym_val_list] = STATE(5974), - [sym_val_record] = STATE(5974), - [sym_val_table] = STATE(5974), - [sym_val_closure] = STATE(5974), - [sym_unquoted] = STATE(6003), - [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym__val_range] = STATE(8251), + [sym__value] = STATE(1780), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1697), + [sym_val_variable] = STATE(1803), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1378), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_unquoted] = STATE(1782), + [sym__unquoted_anonymous_prefix] = STATE(8625), [sym_comment] = STATE(1324), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4497), - [anon_sym_DOT_DOT_LT] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4499), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [aux_sym__val_number_decimal_token1] = ACTIONS(4503), - [aux_sym__val_number_decimal_token2] = ACTIONS(4505), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_decimal_token4] = ACTIONS(4509), - [aux_sym__val_number_token1] = ACTIONS(4511), - [aux_sym__val_number_token2] = ACTIONS(4511), - [aux_sym__val_number_token3] = ACTIONS(4511), - [aux_sym__val_number_token4] = ACTIONS(4513), - [aux_sym__val_number_token5] = ACTIONS(4513), - [aux_sym__val_number_token6] = ACTIONS(4513), - [anon_sym_0b] = ACTIONS(4515), - [anon_sym_0o] = ACTIONS(4517), - [anon_sym_0x] = ACTIONS(4517), - [sym_val_date] = ACTIONS(4519), - [anon_sym_DQUOTE] = ACTIONS(4521), - [sym__str_single_quotes] = ACTIONS(4523), - [sym__str_back_ticks] = ACTIONS(4523), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4525), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4527), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4529), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), + [anon_sym_DOT_DOT_LT] = ACTIONS(4515), + [anon_sym_null] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [aux_sym__val_number_decimal_token1] = ACTIONS(4521), + [aux_sym__val_number_decimal_token2] = ACTIONS(4523), + [aux_sym__val_number_decimal_token3] = ACTIONS(4525), + [aux_sym__val_number_decimal_token4] = ACTIONS(4527), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(4529), + [aux_sym__val_number_token5] = ACTIONS(4529), + [aux_sym__val_number_token6] = ACTIONS(4529), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [1325] = { - [sym__val_range] = STATE(7931), - [sym__value] = STATE(5888), - [sym_val_nothing] = STATE(5974), - [sym_val_bool] = STATE(5725), - [sym_val_variable] = STATE(5974), - [sym_val_number] = STATE(5974), - [sym__val_number_decimal] = STATE(5112), - [sym__val_number] = STATE(5819), - [sym_val_duration] = STATE(5974), - [sym_val_filesize] = STATE(5974), - [sym_val_binary] = STATE(5974), - [sym_val_string] = STATE(5974), - [sym__raw_str] = STATE(5511), - [sym__str_double_quotes] = STATE(5511), - [sym_val_interpolated] = STATE(5974), - [sym__inter_single_quotes] = STATE(5867), - [sym__inter_double_quotes] = STATE(5869), - [sym_val_list] = STATE(5974), - [sym_val_record] = STATE(5974), - [sym_val_table] = STATE(5974), - [sym_val_closure] = STATE(5974), - [sym_unquoted] = STATE(5908), - [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym__val_range] = STATE(8380), + [sym__value] = STATE(6137), + [sym_val_nothing] = STATE(6189), + [sym_val_bool] = STATE(6014), + [sym_val_variable] = STATE(6189), + [sym_val_number] = STATE(6189), + [sym__val_number_decimal] = STATE(5368), + [sym__val_number] = STATE(6103), + [sym_val_duration] = STATE(6189), + [sym_val_filesize] = STATE(6189), + [sym_val_binary] = STATE(6189), + [sym_val_string] = STATE(6189), + [sym__raw_str] = STATE(5815), + [sym__str_double_quotes] = STATE(5815), + [sym_val_interpolated] = STATE(6189), + [sym__inter_single_quotes] = STATE(6372), + [sym__inter_double_quotes] = STATE(6374), + [sym_val_list] = STATE(6189), + [sym_val_record] = STATE(6189), + [sym_val_table] = STATE(6189), + [sym_val_closure] = STATE(6189), + [sym_unquoted] = STATE(6138), + [sym__unquoted_anonymous_prefix] = STATE(8265), [sym_comment] = STATE(1325), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4497), - [anon_sym_DOT_DOT_LT] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4499), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [aux_sym__val_number_decimal_token1] = ACTIONS(4503), - [aux_sym__val_number_decimal_token2] = ACTIONS(4505), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_decimal_token4] = ACTIONS(4509), - [aux_sym__val_number_token1] = ACTIONS(4511), - [aux_sym__val_number_token2] = ACTIONS(4511), - [aux_sym__val_number_token3] = ACTIONS(4511), - [aux_sym__val_number_token4] = ACTIONS(4513), - [aux_sym__val_number_token5] = ACTIONS(4513), - [aux_sym__val_number_token6] = ACTIONS(4513), - [anon_sym_0b] = ACTIONS(4515), - [anon_sym_0o] = ACTIONS(4517), - [anon_sym_0x] = ACTIONS(4517), - [sym_val_date] = ACTIONS(4519), - [anon_sym_DQUOTE] = ACTIONS(4521), - [sym__str_single_quotes] = ACTIONS(4523), - [sym__str_back_ticks] = ACTIONS(4523), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4525), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4527), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4529), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_DOLLAR] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [aux_sym__val_number_decimal_token1] = ACTIONS(4551), + [aux_sym__val_number_decimal_token2] = ACTIONS(4553), + [aux_sym__val_number_decimal_token3] = ACTIONS(4555), + [aux_sym__val_number_decimal_token4] = ACTIONS(4557), + [aux_sym__val_number_token1] = ACTIONS(4559), + [aux_sym__val_number_token2] = ACTIONS(4559), + [aux_sym__val_number_token3] = ACTIONS(4559), + [aux_sym__val_number_token4] = ACTIONS(4561), + [aux_sym__val_number_token5] = ACTIONS(4561), + [aux_sym__val_number_token6] = ACTIONS(4561), + [anon_sym_0b] = ACTIONS(4563), + [anon_sym_0o] = ACTIONS(4565), + [anon_sym_0x] = ACTIONS(4565), + [sym_val_date] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4569), + [sym__str_single_quotes] = ACTIONS(4571), + [sym__str_back_ticks] = ACTIONS(4571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4577), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4579), }, [1326] = { - [sym__val_range] = STATE(7767), - [sym__value] = STATE(5526), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(5514), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(4819), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3352), - [sym__str_double_quotes] = STATE(3352), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(5549), - [sym__unquoted_anonymous_prefix] = STATE(7768), + [sym__val_range] = STATE(8251), + [sym__value] = STATE(1789), + [sym_val_nothing] = STATE(1803), + [sym_val_bool] = STATE(1697), + [sym_val_variable] = STATE(1803), + [sym_val_number] = STATE(1803), + [sym__val_number_decimal] = STATE(1378), + [sym__val_number] = STATE(1834), + [sym_val_duration] = STATE(1803), + [sym_val_filesize] = STATE(1803), + [sym_val_binary] = STATE(1803), + [sym_val_string] = STATE(1803), + [sym__raw_str] = STATE(1862), + [sym__str_double_quotes] = STATE(1862), + [sym_val_interpolated] = STATE(1803), + [sym__inter_single_quotes] = STATE(1837), + [sym__inter_double_quotes] = STATE(1838), + [sym_val_list] = STATE(1803), + [sym_val_record] = STATE(1803), + [sym_val_table] = STATE(1803), + [sym_val_closure] = STATE(1803), + [sym_unquoted] = STATE(1790), + [sym__unquoted_anonymous_prefix] = STATE(8625), [sym_comment] = STATE(1326), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_DOLLAR] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4543), - [anon_sym_DOT_DOT_LT] = ACTIONS(4543), - [anon_sym_null] = ACTIONS(4545), - [anon_sym_true] = ACTIONS(4547), - [anon_sym_false] = ACTIONS(4547), - [aux_sym__val_number_decimal_token1] = ACTIONS(4549), - [aux_sym__val_number_decimal_token2] = ACTIONS(4551), - [aux_sym__val_number_decimal_token3] = ACTIONS(4553), - [aux_sym__val_number_decimal_token4] = ACTIONS(4555), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(4557), - [aux_sym__val_number_token5] = ACTIONS(4557), - [aux_sym__val_number_token6] = ACTIONS(4557), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(4559), - [anon_sym_DQUOTE] = ACTIONS(4561), - [sym__str_single_quotes] = ACTIONS(4563), - [sym__str_back_ticks] = ACTIONS(4563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(4511), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(4513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), + [anon_sym_DOT_DOT_LT] = ACTIONS(4515), + [anon_sym_null] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(4519), + [anon_sym_false] = ACTIONS(4519), + [aux_sym__val_number_decimal_token1] = ACTIONS(4521), + [aux_sym__val_number_decimal_token2] = ACTIONS(4523), + [aux_sym__val_number_decimal_token3] = ACTIONS(4525), + [aux_sym__val_number_decimal_token4] = ACTIONS(4527), + [aux_sym__val_number_token1] = ACTIONS(2677), + [aux_sym__val_number_token2] = ACTIONS(2677), + [aux_sym__val_number_token3] = ACTIONS(2677), + [aux_sym__val_number_token4] = ACTIONS(4529), + [aux_sym__val_number_token5] = ACTIONS(4529), + [aux_sym__val_number_token6] = ACTIONS(4529), + [anon_sym_0b] = ACTIONS(2681), + [anon_sym_0o] = ACTIONS(2683), + [anon_sym_0x] = ACTIONS(2683), + [sym_val_date] = ACTIONS(4531), + [anon_sym_DQUOTE] = ACTIONS(2687), + [sym__str_single_quotes] = ACTIONS(2689), + [sym__str_back_ticks] = ACTIONS(2689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4533), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2701), }, [1327] = { - [sym__val_range] = STATE(7931), - [sym__value] = STATE(5740), - [sym_val_nothing] = STATE(5974), - [sym_val_bool] = STATE(5725), - [sym_val_variable] = STATE(5974), - [sym_val_number] = STATE(5974), - [sym__val_number_decimal] = STATE(5112), - [sym__val_number] = STATE(5819), - [sym_val_duration] = STATE(5974), - [sym_val_filesize] = STATE(5974), - [sym_val_binary] = STATE(5974), - [sym_val_string] = STATE(5974), - [sym__raw_str] = STATE(5511), - [sym__str_double_quotes] = STATE(5511), - [sym_val_interpolated] = STATE(5974), - [sym__inter_single_quotes] = STATE(5867), - [sym__inter_double_quotes] = STATE(5869), - [sym_val_list] = STATE(5974), - [sym_val_record] = STATE(5974), - [sym_val_table] = STATE(5974), - [sym_val_closure] = STATE(5974), - [sym_unquoted] = STATE(5750), - [sym__unquoted_anonymous_prefix] = STATE(7945), + [sym__val_range] = STATE(8380), + [sym__value] = STATE(6186), + [sym_val_nothing] = STATE(6189), + [sym_val_bool] = STATE(6014), + [sym_val_variable] = STATE(6189), + [sym_val_number] = STATE(6189), + [sym__val_number_decimal] = STATE(5368), + [sym__val_number] = STATE(6103), + [sym_val_duration] = STATE(6189), + [sym_val_filesize] = STATE(6189), + [sym_val_binary] = STATE(6189), + [sym_val_string] = STATE(6189), + [sym__raw_str] = STATE(5815), + [sym__str_double_quotes] = STATE(5815), + [sym_val_interpolated] = STATE(6189), + [sym__inter_single_quotes] = STATE(6372), + [sym__inter_double_quotes] = STATE(6374), + [sym_val_list] = STATE(6189), + [sym_val_record] = STATE(6189), + [sym_val_table] = STATE(6189), + [sym_val_closure] = STATE(6189), + [sym_unquoted] = STATE(6188), + [sym__unquoted_anonymous_prefix] = STATE(8265), [sym_comment] = STATE(1327), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4489), - [anon_sym_DOLLAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4497), - [anon_sym_DOT_DOT_LT] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(4499), - [anon_sym_true] = ACTIONS(4501), - [anon_sym_false] = ACTIONS(4501), - [aux_sym__val_number_decimal_token1] = ACTIONS(4503), - [aux_sym__val_number_decimal_token2] = ACTIONS(4505), - [aux_sym__val_number_decimal_token3] = ACTIONS(4507), - [aux_sym__val_number_decimal_token4] = ACTIONS(4509), - [aux_sym__val_number_token1] = ACTIONS(4511), - [aux_sym__val_number_token2] = ACTIONS(4511), - [aux_sym__val_number_token3] = ACTIONS(4511), - [aux_sym__val_number_token4] = ACTIONS(4513), - [aux_sym__val_number_token5] = ACTIONS(4513), - [aux_sym__val_number_token6] = ACTIONS(4513), - [anon_sym_0b] = ACTIONS(4515), - [anon_sym_0o] = ACTIONS(4517), - [anon_sym_0x] = ACTIONS(4517), - [sym_val_date] = ACTIONS(4519), - [anon_sym_DQUOTE] = ACTIONS(4521), - [sym__str_single_quotes] = ACTIONS(4523), - [sym__str_back_ticks] = ACTIONS(4523), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4525), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4527), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4529), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_DOLLAR] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [aux_sym__val_number_decimal_token1] = ACTIONS(4551), + [aux_sym__val_number_decimal_token2] = ACTIONS(4553), + [aux_sym__val_number_decimal_token3] = ACTIONS(4555), + [aux_sym__val_number_decimal_token4] = ACTIONS(4557), + [aux_sym__val_number_token1] = ACTIONS(4559), + [aux_sym__val_number_token2] = ACTIONS(4559), + [aux_sym__val_number_token3] = ACTIONS(4559), + [aux_sym__val_number_token4] = ACTIONS(4561), + [aux_sym__val_number_token5] = ACTIONS(4561), + [aux_sym__val_number_token6] = ACTIONS(4561), + [anon_sym_0b] = ACTIONS(4563), + [anon_sym_0o] = ACTIONS(4565), + [anon_sym_0x] = ACTIONS(4565), + [sym_val_date] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4569), + [sym__str_single_quotes] = ACTIONS(4571), + [sym__str_back_ticks] = ACTIONS(4571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4577), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4579), }, [1328] = { - [sym__val_range] = STATE(7767), - [sym__value] = STATE(5611), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(5514), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(4819), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3352), - [sym__str_double_quotes] = STATE(3352), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(5615), - [sym__unquoted_anonymous_prefix] = STATE(7768), + [sym__expr_parenthesized_immediate] = STATE(1919), + [sym__immediate_decimal] = STATE(1720), + [sym_val_variable] = STATE(1919), [sym_comment] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_DOLLAR] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4543), - [anon_sym_DOT_DOT_LT] = ACTIONS(4543), - [anon_sym_null] = ACTIONS(4545), - [anon_sym_true] = ACTIONS(4547), - [anon_sym_false] = ACTIONS(4547), - [aux_sym__val_number_decimal_token1] = ACTIONS(4549), - [aux_sym__val_number_decimal_token2] = ACTIONS(4551), - [aux_sym__val_number_decimal_token3] = ACTIONS(4553), - [aux_sym__val_number_decimal_token4] = ACTIONS(4555), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(4557), - [aux_sym__val_number_token5] = ACTIONS(4557), - [aux_sym__val_number_token6] = ACTIONS(4557), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(4559), - [anon_sym_DQUOTE] = ACTIONS(4561), - [sym__str_single_quotes] = ACTIONS(4563), - [sym__str_back_ticks] = ACTIONS(4563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4565), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(4235), + [aux_sym__immediate_decimal_token3] = ACTIONS(4237), + [aux_sym__immediate_decimal_token4] = ACTIONS(4239), + [aux_sym__immediate_decimal_token5] = ACTIONS(4241), + [anon_sym_null] = ACTIONS(1579), + [anon_sym_true] = ACTIONS(1579), + [anon_sym_false] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [anon_sym_0b] = ACTIONS(1565), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1579), }, [1329] = { - [sym__val_range] = STATE(7767), - [sym__value] = STATE(5518), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(5514), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(4819), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3352), - [sym__str_double_quotes] = STATE(3352), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(5519), - [sym__unquoted_anonymous_prefix] = STATE(7768), + [sym__val_range] = STATE(8380), + [sym__value] = STATE(6298), + [sym_val_nothing] = STATE(6189), + [sym_val_bool] = STATE(6014), + [sym_val_variable] = STATE(6189), + [sym_val_number] = STATE(6189), + [sym__val_number_decimal] = STATE(5368), + [sym__val_number] = STATE(6103), + [sym_val_duration] = STATE(6189), + [sym_val_filesize] = STATE(6189), + [sym_val_binary] = STATE(6189), + [sym_val_string] = STATE(6189), + [sym__raw_str] = STATE(5815), + [sym__str_double_quotes] = STATE(5815), + [sym_val_interpolated] = STATE(6189), + [sym__inter_single_quotes] = STATE(6372), + [sym__inter_double_quotes] = STATE(6374), + [sym_val_list] = STATE(6189), + [sym_val_record] = STATE(6189), + [sym_val_table] = STATE(6189), + [sym_val_closure] = STATE(6189), + [sym_unquoted] = STATE(6304), + [sym__unquoted_anonymous_prefix] = STATE(8265), [sym_comment] = STATE(1329), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_DOLLAR] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4543), - [anon_sym_DOT_DOT_LT] = ACTIONS(4543), - [anon_sym_null] = ACTIONS(4545), - [anon_sym_true] = ACTIONS(4547), - [anon_sym_false] = ACTIONS(4547), - [aux_sym__val_number_decimal_token1] = ACTIONS(4549), - [aux_sym__val_number_decimal_token2] = ACTIONS(4551), - [aux_sym__val_number_decimal_token3] = ACTIONS(4553), - [aux_sym__val_number_decimal_token4] = ACTIONS(4555), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(4557), - [aux_sym__val_number_token5] = ACTIONS(4557), - [aux_sym__val_number_token6] = ACTIONS(4557), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(4559), - [anon_sym_DQUOTE] = ACTIONS(4561), - [sym__str_single_quotes] = ACTIONS(4563), - [sym__str_back_ticks] = ACTIONS(4563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_DOLLAR] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [aux_sym__val_number_decimal_token1] = ACTIONS(4551), + [aux_sym__val_number_decimal_token2] = ACTIONS(4553), + [aux_sym__val_number_decimal_token3] = ACTIONS(4555), + [aux_sym__val_number_decimal_token4] = ACTIONS(4557), + [aux_sym__val_number_token1] = ACTIONS(4559), + [aux_sym__val_number_token2] = ACTIONS(4559), + [aux_sym__val_number_token3] = ACTIONS(4559), + [aux_sym__val_number_token4] = ACTIONS(4561), + [aux_sym__val_number_token5] = ACTIONS(4561), + [aux_sym__val_number_token6] = ACTIONS(4561), + [anon_sym_0b] = ACTIONS(4563), + [anon_sym_0o] = ACTIONS(4565), + [anon_sym_0x] = ACTIONS(4565), + [sym_val_date] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4569), + [sym__str_single_quotes] = ACTIONS(4571), + [sym__str_back_ticks] = ACTIONS(4571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4577), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4579), }, [1330] = { - [sym__val_range] = STATE(7767), - [sym__value] = STATE(5533), - [sym_val_nothing] = STATE(3530), - [sym_val_bool] = STATE(5514), - [sym_val_variable] = STATE(3530), - [sym_val_number] = STATE(3530), - [sym__val_number_decimal] = STATE(4819), - [sym__val_number] = STATE(3528), - [sym_val_duration] = STATE(3530), - [sym_val_filesize] = STATE(3530), - [sym_val_binary] = STATE(3530), - [sym_val_string] = STATE(3530), - [sym__raw_str] = STATE(3352), - [sym__str_double_quotes] = STATE(3352), - [sym_val_interpolated] = STATE(3530), - [sym__inter_single_quotes] = STATE(3526), - [sym__inter_double_quotes] = STATE(3527), - [sym_val_list] = STATE(3530), - [sym_val_record] = STATE(3530), - [sym_val_table] = STATE(3530), - [sym_val_closure] = STATE(3530), - [sym_unquoted] = STATE(5534), - [sym__unquoted_anonymous_prefix] = STATE(7768), + [sym__val_range] = STATE(8529), + [sym__value] = STATE(5829), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(5885), + [sym_val_variable] = STATE(3698), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3508), + [sym__str_double_quotes] = STATE(3508), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(5830), + [sym__unquoted_anonymous_prefix] = STATE(8531), [sym_comment] = STATE(1330), - [anon_sym_LBRACK] = ACTIONS(4533), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_DOLLAR] = ACTIONS(4537), - [anon_sym_LBRACE] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4543), - [anon_sym_DOT_DOT_LT] = ACTIONS(4543), - [anon_sym_null] = ACTIONS(4545), - [anon_sym_true] = ACTIONS(4547), - [anon_sym_false] = ACTIONS(4547), - [aux_sym__val_number_decimal_token1] = ACTIONS(4549), - [aux_sym__val_number_decimal_token2] = ACTIONS(4551), - [aux_sym__val_number_decimal_token3] = ACTIONS(4553), - [aux_sym__val_number_decimal_token4] = ACTIONS(4555), - [aux_sym__val_number_token1] = ACTIONS(3471), - [aux_sym__val_number_token2] = ACTIONS(3471), - [aux_sym__val_number_token3] = ACTIONS(3471), - [aux_sym__val_number_token4] = ACTIONS(4557), - [aux_sym__val_number_token5] = ACTIONS(4557), - [aux_sym__val_number_token6] = ACTIONS(4557), - [anon_sym_0b] = ACTIONS(3475), - [anon_sym_0o] = ACTIONS(3477), - [anon_sym_0x] = ACTIONS(3477), - [sym_val_date] = ACTIONS(4559), - [anon_sym_DQUOTE] = ACTIONS(4561), - [sym__str_single_quotes] = ACTIONS(4563), - [sym__str_back_ticks] = ACTIONS(4563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3487), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_LPAREN] = ACTIONS(4103), + [anon_sym_DOLLAR] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_DOT_DOT] = ACTIONS(4109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), + [anon_sym_DOT_DOT_LT] = ACTIONS(4111), + [anon_sym_null] = ACTIONS(4113), + [anon_sym_true] = ACTIONS(4115), + [anon_sym_false] = ACTIONS(4115), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(4129), + [sym__str_single_quotes] = ACTIONS(4131), + [sym__str_back_ticks] = ACTIONS(4131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4133), }, [1331] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6168), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5336), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6169), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8380), + [sym__value] = STATE(6331), + [sym_val_nothing] = STATE(6189), + [sym_val_bool] = STATE(6014), + [sym_val_variable] = STATE(6189), + [sym_val_number] = STATE(6189), + [sym__val_number_decimal] = STATE(5368), + [sym__val_number] = STATE(6103), + [sym_val_duration] = STATE(6189), + [sym_val_filesize] = STATE(6189), + [sym_val_binary] = STATE(6189), + [sym_val_string] = STATE(6189), + [sym__raw_str] = STATE(5815), + [sym__str_double_quotes] = STATE(5815), + [sym_val_interpolated] = STATE(6189), + [sym__inter_single_quotes] = STATE(6372), + [sym__inter_double_quotes] = STATE(6374), + [sym_val_list] = STATE(6189), + [sym_val_record] = STATE(6189), + [sym_val_table] = STATE(6189), + [sym_val_closure] = STATE(6189), + [sym_unquoted] = STATE(6332), + [sym__unquoted_anonymous_prefix] = STATE(8265), [sym_comment] = STATE(1331), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [aux_sym__val_number_decimal_token1] = ACTIONS(4127), - [aux_sym__val_number_decimal_token2] = ACTIONS(4129), - [aux_sym__val_number_decimal_token3] = ACTIONS(4131), - [aux_sym__val_number_decimal_token4] = ACTIONS(4133), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4135), - [aux_sym__val_number_token5] = ACTIONS(4135), - [aux_sym__val_number_token6] = ACTIONS(4135), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4537), + [anon_sym_DOLLAR] = ACTIONS(4539), + [anon_sym_LBRACE] = ACTIONS(4541), + [anon_sym_DOT_DOT] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), + [anon_sym_DOT_DOT_LT] = ACTIONS(4545), + [anon_sym_null] = ACTIONS(4547), + [anon_sym_true] = ACTIONS(4549), + [anon_sym_false] = ACTIONS(4549), + [aux_sym__val_number_decimal_token1] = ACTIONS(4551), + [aux_sym__val_number_decimal_token2] = ACTIONS(4553), + [aux_sym__val_number_decimal_token3] = ACTIONS(4555), + [aux_sym__val_number_decimal_token4] = ACTIONS(4557), + [aux_sym__val_number_token1] = ACTIONS(4559), + [aux_sym__val_number_token2] = ACTIONS(4559), + [aux_sym__val_number_token3] = ACTIONS(4559), + [aux_sym__val_number_token4] = ACTIONS(4561), + [aux_sym__val_number_token5] = ACTIONS(4561), + [aux_sym__val_number_token6] = ACTIONS(4561), + [anon_sym_0b] = ACTIONS(4563), + [anon_sym_0o] = ACTIONS(4565), + [anon_sym_0x] = ACTIONS(4565), + [sym_val_date] = ACTIONS(4567), + [anon_sym_DQUOTE] = ACTIONS(4569), + [sym__str_single_quotes] = ACTIONS(4571), + [sym__str_back_ticks] = ACTIONS(4571), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(4577), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4579), }, [1332] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(5739), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5255), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6082), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8529), + [sym__value] = STATE(5883), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(5885), + [sym_val_variable] = STATE(3698), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3508), + [sym__str_double_quotes] = STATE(3508), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(5886), + [sym__unquoted_anonymous_prefix] = STATE(8531), [sym_comment] = STATE(1332), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4211), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4123), - [anon_sym_true] = ACTIONS(4125), - [anon_sym_false] = ACTIONS(4125), - [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(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4221), - [aux_sym__val_number_token5] = ACTIONS(4221), - [aux_sym__val_number_token6] = ACTIONS(4221), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_LPAREN] = ACTIONS(4103), + [anon_sym_DOLLAR] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_DOT_DOT] = ACTIONS(4109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), + [anon_sym_DOT_DOT_LT] = ACTIONS(4111), + [anon_sym_null] = ACTIONS(4113), + [anon_sym_true] = ACTIONS(4115), + [anon_sym_false] = ACTIONS(4115), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(4129), + [sym__str_single_quotes] = ACTIONS(4131), + [sym__str_back_ticks] = ACTIONS(4131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4133), }, [1333] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6066), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(7205), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5606), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6072), - [sym__unquoted_anonymous_prefix] = STATE(7973), + [sym__val_range] = STATE(8529), + [sym__value] = STATE(5825), + [sym_val_nothing] = STATE(3698), + [sym_val_bool] = STATE(5885), + [sym_val_variable] = STATE(3698), + [sym_val_number] = STATE(3698), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(3724), + [sym_val_duration] = STATE(3698), + [sym_val_filesize] = STATE(3698), + [sym_val_binary] = STATE(3698), + [sym_val_string] = STATE(3698), + [sym__raw_str] = STATE(3508), + [sym__str_double_quotes] = STATE(3508), + [sym_val_interpolated] = STATE(3698), + [sym__inter_single_quotes] = STATE(3693), + [sym__inter_double_quotes] = STATE(3723), + [sym_val_list] = STATE(3698), + [sym_val_record] = STATE(3698), + [sym_val_table] = STATE(3698), + [sym_val_closure] = STATE(3698), + [sym_unquoted] = STATE(5833), + [sym__unquoted_anonymous_prefix] = STATE(8531), [sym_comment] = STATE(1333), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4249), - [anon_sym_true] = ACTIONS(4251), - [anon_sym_false] = ACTIONS(4251), - [aux_sym__val_number_decimal_token1] = ACTIONS(4253), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4261), - [aux_sym__val_number_token5] = ACTIONS(4261), - [aux_sym__val_number_token6] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_LPAREN] = ACTIONS(4103), + [anon_sym_DOLLAR] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_DOT_DOT] = ACTIONS(4109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), + [anon_sym_DOT_DOT_LT] = ACTIONS(4111), + [anon_sym_null] = ACTIONS(4113), + [anon_sym_true] = ACTIONS(4115), + [anon_sym_false] = ACTIONS(4115), + [aux_sym__val_number_decimal_token1] = ACTIONS(4117), + [aux_sym__val_number_decimal_token2] = ACTIONS(4119), + [aux_sym__val_number_decimal_token3] = ACTIONS(4121), + [aux_sym__val_number_decimal_token4] = ACTIONS(4123), + [aux_sym__val_number_token1] = ACTIONS(3393), + [aux_sym__val_number_token2] = ACTIONS(3393), + [aux_sym__val_number_token3] = ACTIONS(3393), + [aux_sym__val_number_token4] = ACTIONS(4125), + [aux_sym__val_number_token5] = ACTIONS(4125), + [aux_sym__val_number_token6] = ACTIONS(4125), + [anon_sym_0b] = ACTIONS(3397), + [anon_sym_0o] = ACTIONS(3399), + [anon_sym_0x] = ACTIONS(3399), + [sym_val_date] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(4129), + [sym__str_single_quotes] = ACTIONS(4131), + [sym__str_back_ticks] = ACTIONS(4131), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3411), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4133), }, [1334] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(6066), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5691), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(6072), - [sym__unquoted_anonymous_prefix] = STATE(7793), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(6419), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6082), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(6441), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1334), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4509), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1335] = { - [sym__val_range] = STATE(7747), - [sym__value] = STATE(6168), - [sym_val_nothing] = STATE(2174), - [sym_val_bool] = STATE(7662), - [sym_val_variable] = STATE(2174), - [sym_val_number] = STATE(2174), - [sym__val_number_decimal] = STATE(5691), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(2174), - [sym_val_filesize] = STATE(2174), - [sym_val_binary] = STATE(2174), - [sym_val_string] = STATE(2174), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(2174), - [sym__inter_single_quotes] = STATE(2115), - [sym__inter_double_quotes] = STATE(2116), - [sym_val_list] = STATE(2174), - [sym_val_record] = STATE(2174), - [sym_val_table] = STATE(2174), - [sym_val_closure] = STATE(2174), - [sym_unquoted] = STATE(6169), - [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1335), - [anon_sym_LBRACK] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym_DOLLAR] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4145), - [anon_sym_DOT_DOT_LT] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(3885), - [anon_sym_true] = ACTIONS(3887), - [anon_sym_false] = ACTIONS(3887), - [aux_sym__val_number_decimal_token1] = ACTIONS(3889), - [aux_sym__val_number_decimal_token2] = ACTIONS(3891), - [aux_sym__val_number_decimal_token3] = ACTIONS(3893), - [aux_sym__val_number_decimal_token4] = ACTIONS(3895), + [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_DASH2] = 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__immediate_decimal_token2] = ACTIONS(4581), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), + }, + [1336] = { + [sym__val_range] = STATE(8344), + [sym__value] = STATE(6418), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6082), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(6420), + [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_comment] = STATE(1336), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4509), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), [aux_sym__val_number_token1] = ACTIONS(431), [aux_sym__val_number_token2] = ACTIONS(431), [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3897), - [aux_sym__val_number_token5] = ACTIONS(3897), - [aux_sym__val_number_token6] = ACTIONS(3897), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3899), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), - }, - [1336] = { - [sym__val_range] = STATE(7871), - [sym__value] = STATE(6030), - [sym_val_nothing] = STATE(4941), - [sym_val_bool] = STATE(7205), - [sym_val_variable] = STATE(4941), - [sym_val_number] = STATE(4941), - [sym__val_number_decimal] = STATE(5606), - [sym__val_number] = STATE(4965), - [sym_val_duration] = STATE(4941), - [sym_val_filesize] = STATE(4941), - [sym_val_binary] = STATE(4941), - [sym_val_string] = STATE(4941), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_val_interpolated] = STATE(4941), - [sym__inter_single_quotes] = STATE(4872), - [sym__inter_double_quotes] = STATE(4873), - [sym_val_list] = STATE(4941), - [sym_val_record] = STATE(4941), - [sym_val_table] = STATE(4941), - [sym_val_closure] = STATE(4941), - [sym_unquoted] = STATE(6082), - [sym__unquoted_anonymous_prefix] = STATE(7973), - [sym_comment] = STATE(1336), - [anon_sym_LBRACK] = ACTIONS(4093), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym_DOLLAR] = ACTIONS(4097), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_DOT_DOT] = ACTIONS(4101), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4103), - [anon_sym_DOT_DOT_LT] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4249), - [anon_sym_true] = ACTIONS(4251), - [anon_sym_false] = ACTIONS(4251), - [aux_sym__val_number_decimal_token1] = ACTIONS(4253), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(3667), - [aux_sym__val_number_token2] = ACTIONS(3667), - [aux_sym__val_number_token3] = ACTIONS(3667), - [aux_sym__val_number_token4] = ACTIONS(4261), - [aux_sym__val_number_token5] = ACTIONS(4261), - [aux_sym__val_number_token6] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(3671), - [anon_sym_0o] = ACTIONS(3673), - [anon_sym_0x] = ACTIONS(3673), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3681), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3683), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(4121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1337] = { - [sym__expr_parenthesized_immediate] = STATE(1886), - [sym__immediate_decimal] = STATE(1722), - [sym_val_variable] = STATE(1886), + [sym__val_range] = STATE(8344), + [sym__value] = STATE(6428), + [sym_val_nothing] = STATE(2225), + [sym_val_bool] = STATE(8064), + [sym_val_variable] = STATE(2225), + [sym_val_number] = STATE(2225), + [sym__val_number_decimal] = STATE(6082), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(2225), + [sym_val_filesize] = STATE(2225), + [sym_val_binary] = STATE(2225), + [sym_val_string] = STATE(2225), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_val_interpolated] = STATE(2225), + [sym__inter_single_quotes] = STATE(2164), + [sym__inter_double_quotes] = STATE(2170), + [sym_val_list] = STATE(2225), + [sym_val_record] = STATE(2225), + [sym_val_table] = STATE(2225), + [sym_val_closure] = STATE(2225), + [sym_unquoted] = STATE(6429), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1337), - [ts_builtin_sym_end] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(4387), - [aux_sym__immediate_decimal_token3] = ACTIONS(4389), - [aux_sym__immediate_decimal_token4] = ACTIONS(4391), - [aux_sym__immediate_decimal_token5] = ACTIONS(4393), - [anon_sym_null] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [aux_sym__val_number_token4] = ACTIONS(1677), - [aux_sym__val_number_token5] = ACTIONS(1677), - [aux_sym__val_number_token6] = ACTIONS(1677), - [anon_sym_0b] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1675), - [anon_sym_0x] = ACTIONS(1675), - [sym_val_date] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [aux_sym_unquoted_token1] = ACTIONS(1675), - [aux_sym_unquoted_token2] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_DOLLAR] = ACTIONS(4509), + [anon_sym_LBRACE] = ACTIONS(3891), + [anon_sym_DOT_DOT] = ACTIONS(4315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), + [anon_sym_DOT_DOT_LT] = ACTIONS(4317), + [anon_sym_null] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [aux_sym__val_number_decimal_token1] = ACTIONS(3901), + [aux_sym__val_number_decimal_token2] = ACTIONS(3903), + [aux_sym__val_number_decimal_token3] = ACTIONS(3905), + [aux_sym__val_number_decimal_token4] = ACTIONS(3907), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(3909), + [aux_sym__val_number_token5] = ACTIONS(3909), + [aux_sym__val_number_token6] = ACTIONS(3909), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, [1338] = { + [sym__val_range] = STATE(8417), + [sym__value] = STATE(5225), + [sym_val_nothing] = STATE(5064), + [sym_val_bool] = STATE(4848), + [sym_val_variable] = STATE(5064), + [sym_val_number] = STATE(5064), + [sym__val_number_decimal] = STATE(4388), + [sym__val_number] = STATE(5141), + [sym_val_duration] = STATE(5064), + [sym_val_filesize] = STATE(5064), + [sym_val_binary] = STATE(5064), + [sym_val_string] = STATE(5064), + [sym__raw_str] = STATE(4801), + [sym__str_double_quotes] = STATE(4801), + [sym_val_interpolated] = STATE(5064), + [sym__inter_single_quotes] = STATE(5066), + [sym__inter_double_quotes] = STATE(5068), + [sym_val_list] = STATE(5064), + [sym_val_record] = STATE(5064), + [sym_val_table] = STATE(5064), + [sym_val_closure] = STATE(5064), + [sym_unquoted] = STATE(5233), + [sym__unquoted_anonymous_prefix] = STATE(8674), [sym_comment] = STATE(1338), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4569), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(4391), + [aux_sym__val_number_decimal_token3] = ACTIONS(4393), + [aux_sym__val_number_decimal_token4] = ACTIONS(4395), + [aux_sym__val_number_token1] = ACTIONS(4397), + [aux_sym__val_number_token2] = ACTIONS(4397), + [aux_sym__val_number_token3] = ACTIONS(4397), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(2175), + [anon_sym_0o] = ACTIONS(2177), + [anon_sym_0x] = ACTIONS(2177), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(2193), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), + [sym_raw_string_begin] = ACTIONS(2195), }, [1339] = { + [sym_cell_path] = STATE(1572), + [sym_path] = STATE(1499), [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(4571), - [aux_sym__immediate_decimal_token2] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), + [aux_sym_cell_path_repeat1] = STATE(1399), + [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] = ACTIONS(4583), + [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), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1765), }, [1340] = { - [sym__val_range] = STATE(7850), - [sym__value] = STATE(4720), - [sym_val_nothing] = STATE(4690), - [sym_val_bool] = STATE(4451), - [sym_val_variable] = STATE(4690), - [sym_val_number] = STATE(4690), - [sym__val_number_decimal] = STATE(4096), - [sym__val_number] = STATE(4777), - [sym_val_duration] = STATE(4690), - [sym_val_filesize] = STATE(4690), - [sym_val_binary] = STATE(4690), - [sym_val_string] = STATE(4690), - [sym__raw_str] = STATE(4475), - [sym__str_double_quotes] = STATE(4475), - [sym_val_interpolated] = STATE(4690), - [sym__inter_single_quotes] = STATE(4693), - [sym__inter_double_quotes] = STATE(4694), - [sym_val_list] = STATE(4690), - [sym_val_record] = STATE(4690), - [sym_val_table] = STATE(4690), - [sym_val_closure] = STATE(4690), - [sym_unquoted] = STATE(4796), - [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1340), - [anon_sym_LBRACK] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym_DOLLAR] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4357), - [anon_sym_DOT_DOT_LT] = ACTIONS(4357), - [anon_sym_null] = ACTIONS(4399), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(4403), - [aux_sym__val_number_decimal_token3] = ACTIONS(4405), - [aux_sym__val_number_decimal_token4] = ACTIONS(4407), - [aux_sym__val_number_token1] = ACTIONS(4371), - [aux_sym__val_number_token2] = ACTIONS(4371), - [aux_sym__val_number_token3] = ACTIONS(4371), - [aux_sym__val_number_token4] = ACTIONS(4409), - [aux_sym__val_number_token5] = ACTIONS(4409), - [aux_sym__val_number_token6] = ACTIONS(4409), - [anon_sym_0b] = ACTIONS(2011), - [anon_sym_0o] = ACTIONS(2013), - [anon_sym_0x] = ACTIONS(2013), - [sym_val_date] = ACTIONS(4411), - [anon_sym_DQUOTE] = ACTIONS(4377), - [sym__str_single_quotes] = ACTIONS(4379), - [sym__str_back_ticks] = ACTIONS(4379), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4381), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4383), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2031), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(4585), + [aux_sym__immediate_decimal_token2] = ACTIONS(4587), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), }, [1341] = { - [sym__expr_parenthesized_immediate] = STATE(1883), - [sym__immediate_decimal] = STATE(1885), - [sym_val_variable] = STATE(1883), [sym_comment] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(1743), - [sym__newline] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_err_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_GT_PIPE] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), - [anon_sym_DOT_DOT_LT] = ACTIONS(1743), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1743), - [anon_sym_false] = ACTIONS(1743), - [aux_sym__val_number_decimal_token1] = ACTIONS(1741), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1743), - [aux_sym__val_number_token2] = ACTIONS(1743), - [aux_sym__val_number_token3] = ACTIONS(1743), - [aux_sym__val_number_token4] = ACTIONS(1743), - [aux_sym__val_number_token5] = ACTIONS(1743), - [aux_sym__val_number_token6] = ACTIONS(1743), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [sym_val_date] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym__str_single_quotes] = ACTIONS(1743), - [sym__str_back_ticks] = ACTIONS(1743), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1743), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1743), - [anon_sym_err_GT] = ACTIONS(1741), - [anon_sym_out_GT] = ACTIONS(1741), - [anon_sym_e_GT] = ACTIONS(1741), - [anon_sym_o_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT] = ACTIONS(1741), - [anon_sym_err_GT_GT] = ACTIONS(1743), - [anon_sym_out_GT_GT] = ACTIONS(1743), - [anon_sym_e_GT_GT] = ACTIONS(1743), - [anon_sym_o_GT_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1743), - [aux_sym_unquoted_token1] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1743), + [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(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4143), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1342] = { [sym_comment] = STATE(1342), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4585), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4591), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, [1343] = { - [sym_path] = STATE(1424), + [sym__match_pattern_expression] = STATE(3251), + [sym__match_pattern_value] = STATE(3269), + [sym__match_pattern_list] = STATE(3270), + [sym__match_pattern_record] = STATE(3271), + [sym_expr_parenthesized] = STATE(3049), + [sym_val_range] = STATE(3269), + [sym__val_range] = STATE(8495), + [sym_val_nothing] = STATE(3273), + [sym_val_bool] = STATE(3216), + [sym_val_variable] = STATE(3050), + [sym_val_number] = STATE(3273), + [sym__val_number_decimal] = STATE(2832), + [sym__val_number] = STATE(3264), + [sym_val_duration] = STATE(3273), + [sym_val_filesize] = STATE(3273), + [sym_val_binary] = STATE(3273), + [sym_val_string] = STATE(3273), + [sym__raw_str] = STATE(3279), + [sym__str_double_quotes] = STATE(3279), + [sym_val_table] = STATE(3273), + [sym__unquoted_in_list] = STATE(3251), + [sym__unquoted_anonymous_prefix] = STATE(8543), [sym_comment] = STATE(1343), - [aux_sym_cell_path_repeat1] = STATE(1343), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(981), - [sym__newline] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_GT2] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_and2] = ACTIONS(981), - [anon_sym_xor2] = ACTIONS(981), - [anon_sym_or2] = ACTIONS(981), - [anon_sym_not_DASHin2] = ACTIONS(981), - [anon_sym_starts_DASHwith2] = ACTIONS(981), - [anon_sym_ends_DASHwith2] = ACTIONS(981), - [anon_sym_EQ_EQ2] = ACTIONS(981), - [anon_sym_BANG_EQ2] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ2] = ACTIONS(981), - [anon_sym_GT_EQ2] = ACTIONS(981), - [anon_sym_EQ_TILDE2] = ACTIONS(981), - [anon_sym_BANG_TILDE2] = ACTIONS(981), - [anon_sym_STAR_STAR2] = ACTIONS(981), - [anon_sym_PLUS_PLUS2] = ACTIONS(979), - [anon_sym_SLASH2] = ACTIONS(979), - [anon_sym_mod2] = ACTIONS(981), - [anon_sym_SLASH_SLASH2] = ACTIONS(981), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_bit_DASHshl2] = ACTIONS(981), - [anon_sym_bit_DASHshr2] = ACTIONS(981), - [anon_sym_bit_DASHand2] = ACTIONS(981), - [anon_sym_bit_DASHxor2] = ACTIONS(981), - [anon_sym_bit_DASHor2] = ACTIONS(981), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [aux_sym_record_entry_token1] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym__match_pattern_list_repeat1] = STATE(1343), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_RBRACK] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4598), + [anon_sym_DOLLAR] = ACTIONS(4601), + [anon_sym_LBRACE] = ACTIONS(4604), + [anon_sym_DOT_DOT] = ACTIONS(4607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4610), + [anon_sym_DOT_DOT_LT] = ACTIONS(4610), + [anon_sym_null] = ACTIONS(4613), + [anon_sym_true] = ACTIONS(4616), + [anon_sym_false] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(4619), + [aux_sym__val_number_decimal_token2] = ACTIONS(4622), + [aux_sym__val_number_decimal_token3] = ACTIONS(4625), + [aux_sym__val_number_decimal_token4] = ACTIONS(4628), + [aux_sym__val_number_token1] = ACTIONS(4631), + [aux_sym__val_number_token2] = ACTIONS(4631), + [aux_sym__val_number_token3] = ACTIONS(4631), + [aux_sym__val_number_token4] = ACTIONS(4634), + [aux_sym__val_number_token5] = ACTIONS(4634), + [aux_sym__val_number_token6] = ACTIONS(4634), + [anon_sym_0b] = ACTIONS(4637), + [anon_sym_0o] = ACTIONS(4640), + [anon_sym_0x] = ACTIONS(4640), + [sym_val_date] = ACTIONS(4643), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym__str_single_quotes] = ACTIONS(4649), + [sym__str_back_ticks] = ACTIONS(4649), + [anon_sym_err_GT] = ACTIONS(4652), + [anon_sym_out_GT] = ACTIONS(4652), + [anon_sym_e_GT] = ACTIONS(4652), + [anon_sym_o_GT] = ACTIONS(4652), + [anon_sym_err_PLUSout_GT] = ACTIONS(4652), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4652), + [anon_sym_o_PLUSe_GT] = ACTIONS(4652), + [anon_sym_e_PLUSo_GT] = ACTIONS(4652), + [anon_sym_err_GT_GT] = ACTIONS(4655), + [anon_sym_out_GT_GT] = ACTIONS(4655), + [anon_sym_e_GT_GT] = ACTIONS(4655), + [anon_sym_o_GT_GT] = ACTIONS(4655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4655), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4658), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4661), }, [1344] = { [sym_comment] = STATE(1344), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(4590), - [aux_sym__immediate_decimal_token2] = ACTIONS(4592), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [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_DASH2] = 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__immediate_decimal_token2] = ACTIONS(4664), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), }, [1345] = { - [sym_path] = STATE(1446), [sym_comment] = STATE(1345), - [aux_sym_cell_path_repeat1] = STATE(1345), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(981), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_GT2] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_and2] = ACTIONS(981), - [anon_sym_xor2] = ACTIONS(981), - [anon_sym_or2] = ACTIONS(981), - [anon_sym_not_DASHin2] = ACTIONS(981), - [anon_sym_starts_DASHwith2] = ACTIONS(981), - [anon_sym_ends_DASHwith2] = ACTIONS(981), - [anon_sym_EQ_EQ2] = ACTIONS(981), - [anon_sym_BANG_EQ2] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ2] = ACTIONS(981), - [anon_sym_GT_EQ2] = ACTIONS(981), - [anon_sym_EQ_TILDE2] = ACTIONS(981), - [anon_sym_BANG_TILDE2] = ACTIONS(981), - [anon_sym_STAR_STAR2] = ACTIONS(981), - [anon_sym_PLUS_PLUS2] = ACTIONS(979), - [anon_sym_SLASH2] = ACTIONS(979), - [anon_sym_mod2] = ACTIONS(981), - [anon_sym_SLASH_SLASH2] = ACTIONS(981), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_bit_DASHshl2] = ACTIONS(981), - [anon_sym_bit_DASHshr2] = ACTIONS(981), - [anon_sym_bit_DASHand2] = ACTIONS(981), - [anon_sym_bit_DASHxor2] = ACTIONS(981), - [anon_sym_bit_DASHor2] = ACTIONS(981), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4594), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), + [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(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4221), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1346] = { + [sym_path] = STATE(1413), [sym_comment] = STATE(1346), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4569), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [aux_sym_cell_path_repeat1] = STATE(1349), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), }, [1347] = { [sym_comment] = STATE(1347), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), + [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_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH2] = 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__immediate_decimal_token2] = ACTIONS(4666), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), }, [1348] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3121), - [sym__match_pattern_list] = STATE(3122), - [sym__match_pattern_record] = STATE(3123), - [sym_expr_parenthesized] = STATE(2908), - [sym_val_range] = STATE(3121), - [sym__val_range] = STATE(7923), - [sym_val_nothing] = STATE(3125), - [sym_val_bool] = STATE(3062), - [sym_val_variable] = STATE(2909), - [sym_val_number] = STATE(3125), - [sym__val_number_decimal] = STATE(2671), - [sym__val_number] = STATE(3108), - [sym_val_duration] = STATE(3125), - [sym_val_filesize] = STATE(3125), - [sym_val_binary] = STATE(3125), - [sym_val_string] = STATE(3125), - [sym__raw_str] = STATE(3164), - [sym__str_double_quotes] = STATE(3164), - [sym_val_table] = STATE(3125), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7818), + [sym_cell_path] = STATE(1530), + [sym_path] = STATE(1499), [sym_comment] = STATE(1348), - [aux_sym__match_pattern_list_repeat1] = STATE(1348), - [anon_sym_LBRACK] = ACTIONS(4597), - [anon_sym_RBRACK] = ACTIONS(4600), - [anon_sym_LPAREN] = ACTIONS(4602), - [anon_sym_DOLLAR] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(4608), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4614), - [anon_sym_DOT_DOT_LT] = ACTIONS(4614), - [anon_sym_null] = ACTIONS(4617), - [anon_sym_true] = ACTIONS(4620), - [anon_sym_false] = ACTIONS(4620), - [aux_sym__val_number_decimal_token1] = ACTIONS(4623), - [aux_sym__val_number_decimal_token2] = ACTIONS(4626), - [aux_sym__val_number_decimal_token3] = ACTIONS(4629), - [aux_sym__val_number_decimal_token4] = ACTIONS(4632), - [aux_sym__val_number_token1] = ACTIONS(4635), - [aux_sym__val_number_token2] = ACTIONS(4635), - [aux_sym__val_number_token3] = ACTIONS(4635), - [aux_sym__val_number_token4] = ACTIONS(4638), - [aux_sym__val_number_token5] = ACTIONS(4638), - [aux_sym__val_number_token6] = ACTIONS(4638), - [anon_sym_0b] = ACTIONS(4641), - [anon_sym_0o] = ACTIONS(4644), - [anon_sym_0x] = ACTIONS(4644), - [sym_val_date] = ACTIONS(4647), - [anon_sym_DQUOTE] = ACTIONS(4650), - [sym__str_single_quotes] = ACTIONS(4653), - [sym__str_back_ticks] = ACTIONS(4653), - [anon_sym_err_GT] = ACTIONS(4656), - [anon_sym_out_GT] = ACTIONS(4656), - [anon_sym_e_GT] = ACTIONS(4656), - [anon_sym_o_GT] = ACTIONS(4656), - [anon_sym_err_PLUSout_GT] = ACTIONS(4656), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4656), - [anon_sym_o_PLUSe_GT] = ACTIONS(4656), - [anon_sym_e_PLUSo_GT] = ACTIONS(4656), - [anon_sym_err_GT_GT] = ACTIONS(4659), - [anon_sym_out_GT_GT] = ACTIONS(4659), - [anon_sym_e_GT_GT] = ACTIONS(4659), - [anon_sym_o_GT_GT] = ACTIONS(4659), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4659), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4659), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4659), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4659), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4662), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4665), + [aux_sym_cell_path_repeat1] = STATE(1399), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_DOT_DOT_LT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_null] = ACTIONS(971), + [anon_sym_true] = ACTIONS(971), + [anon_sym_false] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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_0b] = ACTIONS(969), + [anon_sym_0o] = ACTIONS(969), + [anon_sym_0x] = ACTIONS(969), + [sym_val_date] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym__str_single_quotes] = ACTIONS(971), + [sym__str_back_ticks] = ACTIONS(971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [aux_sym_unquoted_token1] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), }, [1349] = { + [sym_path] = STATE(1413), [sym_comment] = STATE(1349), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), + [aux_sym_cell_path_repeat1] = STATE(1349), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_GT2] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_STAR2] = ACTIONS(975), + [anon_sym_and2] = ACTIONS(977), + [anon_sym_xor2] = ACTIONS(977), + [anon_sym_or2] = ACTIONS(977), + [anon_sym_not_DASHin2] = ACTIONS(977), + [anon_sym_starts_DASHwith2] = ACTIONS(977), + [anon_sym_ends_DASHwith2] = ACTIONS(977), + [anon_sym_EQ_EQ2] = ACTIONS(977), + [anon_sym_BANG_EQ2] = ACTIONS(977), + [anon_sym_LT2] = ACTIONS(975), + [anon_sym_LT_EQ2] = ACTIONS(977), + [anon_sym_GT_EQ2] = ACTIONS(977), + [anon_sym_EQ_TILDE2] = ACTIONS(977), + [anon_sym_BANG_TILDE2] = ACTIONS(977), + [anon_sym_STAR_STAR2] = ACTIONS(977), + [anon_sym_PLUS_PLUS2] = ACTIONS(975), + [anon_sym_SLASH2] = ACTIONS(975), + [anon_sym_mod2] = ACTIONS(977), + [anon_sym_SLASH_SLASH2] = ACTIONS(977), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_bit_DASHshl2] = ACTIONS(977), + [anon_sym_bit_DASHshr2] = ACTIONS(977), + [anon_sym_bit_DASHand2] = ACTIONS(977), + [anon_sym_bit_DASHxor2] = ACTIONS(977), + [anon_sym_bit_DASHor2] = ACTIONS(977), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(4668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), }, [1350] = { [sym_comment] = STATE(1350), - [sym__newline] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_err_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_GT_PIPE] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [anon_sym_null] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1783), - [anon_sym_false] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1781), - [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_0b] = ACTIONS(1781), - [sym_filesize_unit] = ACTIONS(1783), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1781), - [anon_sym_0x] = ACTIONS(1781), - [sym_val_date] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1783), - [anon_sym_out_GT_GT] = ACTIONS(1783), - [anon_sym_e_GT_GT] = ACTIONS(1783), - [anon_sym_o_GT_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), - [aux_sym_unquoted_token1] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1783), + [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(1669), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1351] = { [sym_comment] = STATE(1351), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), [anon_sym_POUND] = ACTIONS(3), }, [1352] = { [sym_comment] = STATE(1352), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(3), }, [1353] = { + [sym__expr_parenthesized_immediate] = STATE(1949), + [sym__immediate_decimal] = STATE(1952), + [sym_val_variable] = STATE(1949), [sym_comment] = STATE(1353), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), + [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(4231), + [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(4233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4671), + [aux_sym__immediate_decimal_token3] = ACTIONS(4673), + [aux_sym__immediate_decimal_token4] = ACTIONS(4675), + [aux_sym__immediate_decimal_token5] = ACTIONS(4677), + [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(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [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(251), + [sym_raw_string_begin] = ACTIONS(1741), }, [1354] = { + [sym_path] = STATE(1425), [sym_comment] = STATE(1354), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), + [aux_sym_cell_path_repeat1] = STATE(1355), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [aux_sym_record_entry_token1] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(251), }, [1355] = { + [sym_path] = STATE(1425), [sym_comment] = STATE(1355), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [aux_sym_cell_path_repeat1] = STATE(1355), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), + [sym__newline] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_GT2] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_STAR2] = ACTIONS(975), + [anon_sym_and2] = ACTIONS(977), + [anon_sym_xor2] = ACTIONS(977), + [anon_sym_or2] = ACTIONS(977), + [anon_sym_not_DASHin2] = ACTIONS(977), + [anon_sym_starts_DASHwith2] = ACTIONS(977), + [anon_sym_ends_DASHwith2] = ACTIONS(977), + [anon_sym_EQ_EQ2] = ACTIONS(977), + [anon_sym_BANG_EQ2] = ACTIONS(977), + [anon_sym_LT2] = ACTIONS(975), + [anon_sym_LT_EQ2] = ACTIONS(977), + [anon_sym_GT_EQ2] = ACTIONS(977), + [anon_sym_EQ_TILDE2] = ACTIONS(977), + [anon_sym_BANG_TILDE2] = ACTIONS(977), + [anon_sym_STAR_STAR2] = ACTIONS(977), + [anon_sym_PLUS_PLUS2] = ACTIONS(975), + [anon_sym_SLASH2] = ACTIONS(975), + [anon_sym_mod2] = ACTIONS(977), + [anon_sym_SLASH_SLASH2] = ACTIONS(977), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_bit_DASHshl2] = ACTIONS(977), + [anon_sym_bit_DASHshr2] = ACTIONS(977), + [anon_sym_bit_DASHand2] = ACTIONS(977), + [anon_sym_bit_DASHxor2] = ACTIONS(977), + [anon_sym_bit_DASHor2] = ACTIONS(977), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [aux_sym_record_entry_token1] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), [anon_sym_POUND] = ACTIONS(251), }, [1356] = { - [sym_cell_path] = STATE(1567), - [sym_path] = STATE(1489), [sym_comment] = STATE(1356), - [aux_sym_cell_path_repeat1] = STATE(1392), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(4670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1777), - [anon_sym_DOT_DOT_LT] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_null] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1779), - [anon_sym_false] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_0b] = ACTIONS(1777), - [anon_sym_0o] = ACTIONS(1777), - [anon_sym_0x] = ACTIONS(1777), - [sym_val_date] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1779), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), - [aux_sym_unquoted_token1] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1779), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), }, [1357] = { [sym_comment] = STATE(1357), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), }, [1358] = { - [sym__expr_parenthesized_immediate] = STATE(1881), - [sym__immediate_decimal] = STATE(1882), - [sym_val_variable] = STATE(1881), [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(1739), - [sym__newline] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_err_GT_PIPE] = ACTIONS(1739), - [anon_sym_out_GT_PIPE] = ACTIONS(1739), - [anon_sym_e_GT_PIPE] = ACTIONS(1739), - [anon_sym_o_GT_PIPE] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1739), - [anon_sym_false] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1737), - [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(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_0b] = ACTIONS(1737), - [anon_sym_0o] = ACTIONS(1737), - [anon_sym_0x] = ACTIONS(1737), - [sym_val_date] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1739), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1739), - [anon_sym_err_GT] = ACTIONS(1737), - [anon_sym_out_GT] = ACTIONS(1737), - [anon_sym_e_GT] = ACTIONS(1737), - [anon_sym_o_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT] = ACTIONS(1737), - [anon_sym_err_GT_GT] = ACTIONS(1739), - [anon_sym_out_GT_GT] = ACTIONS(1739), - [anon_sym_e_GT_GT] = ACTIONS(1739), - [anon_sym_o_GT_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1739), - [aux_sym_unquoted_token1] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1739), + [ts_builtin_sym_end] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_mod] = ACTIONS(3209), + [anon_sym_SLASH_SLASH] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_bit_DASHshl] = ACTIONS(3209), + [anon_sym_bit_DASHshr] = ACTIONS(3209), + [anon_sym_EQ_TILDE] = ACTIONS(3209), + [anon_sym_BANG_TILDE] = ACTIONS(3209), + [anon_sym_bit_DASHand] = ACTIONS(3209), + [anon_sym_bit_DASHxor] = ACTIONS(3209), + [anon_sym_bit_DASHor] = ACTIONS(3209), + [anon_sym_and] = ACTIONS(3209), + [anon_sym_xor] = ACTIONS(3209), + [anon_sym_or] = ACTIONS(3209), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_not_DASHin] = ACTIONS(3209), + [anon_sym_starts_DASHwith] = ACTIONS(3209), + [anon_sym_ends_DASHwith] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3209), + [aux_sym_cmd_identifier_token41] = ACTIONS(3213), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), }, [1359] = { - [sym_cell_path] = STATE(1536), - [sym_path] = STATE(1489), [sym_comment] = STATE(1359), - [aux_sym_cell_path_repeat1] = STATE(1392), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_DOT_DOT_LT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(973), - [anon_sym_0o] = ACTIONS(973), - [anon_sym_0x] = ACTIONS(973), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(2238), + [anon_sym_STAR_STAR] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_mod] = ACTIONS(3209), + [anon_sym_SLASH_SLASH] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_bit_DASHshl] = ACTIONS(3209), + [anon_sym_bit_DASHshr] = ACTIONS(3209), + [anon_sym_EQ_TILDE] = ACTIONS(3209), + [anon_sym_BANG_TILDE] = ACTIONS(3209), + [anon_sym_bit_DASHand] = ACTIONS(3209), + [anon_sym_bit_DASHxor] = ACTIONS(3209), + [anon_sym_bit_DASHor] = ACTIONS(3209), + [anon_sym_and] = ACTIONS(3209), + [anon_sym_xor] = ACTIONS(3209), + [anon_sym_or] = ACTIONS(3209), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_not_DASHin] = ACTIONS(3209), + [anon_sym_starts_DASHwith] = ACTIONS(3209), + [anon_sym_ends_DASHwith] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3209), + [aux_sym_cmd_identifier_token41] = ACTIONS(3213), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), }, [1360] = { + [sym__expr_parenthesized_immediate] = STATE(1917), + [sym__immediate_decimal] = STATE(1918), + [sym_val_variable] = STATE(1917), [sym_comment] = STATE(1360), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1643), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_DOT_DOT] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), + [anon_sym_DOT_DOT_LT] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(4671), + [aux_sym__immediate_decimal_token3] = ACTIONS(4673), + [aux_sym__immediate_decimal_token4] = ACTIONS(4675), + [aux_sym__immediate_decimal_token5] = ACTIONS(4677), + [anon_sym_null] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1643), + [anon_sym_false] = ACTIONS(1643), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1643), + [aux_sym__val_number_token2] = ACTIONS(1643), + [aux_sym__val_number_token3] = ACTIONS(1643), + [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(1633), + [anon_sym_0o] = ACTIONS(1633), + [anon_sym_0x] = ACTIONS(1633), + [sym_val_date] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [sym__str_single_quotes] = ACTIONS(1643), + [sym__str_back_ticks] = ACTIONS(1643), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [aux_sym_unquoted_token1] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1643), }, [1361] = { - [sym_cell_path] = STATE(1565), - [sym_path] = STATE(1489), [sym_comment] = STATE(1361), - [aux_sym_cell_path_repeat1] = STATE(1392), - [sym__newline] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_err_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_GT_PIPE] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_RPAREN] = ACTIONS(1775), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), + }, + [1362] = { + [sym__expr_parenthesized_immediate] = STATE(8062), + [sym_comment] = STATE(1362), + [ts_builtin_sym_end] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT2] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT] = ACTIONS(1687), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4684), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1699), + [aux_sym__val_number_token5] = ACTIONS(1699), + [aux_sym__val_number_token6] = ACTIONS(1699), + [anon_sym_0b] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(4686), + [sym_duration_unit] = ACTIONS(4688), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [sym_val_date] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token1] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(4690), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [1363] = { + [sym_cell_path] = STATE(1535), + [sym_path] = STATE(1499), + [sym_comment] = STATE(1363), + [aux_sym_cell_path_repeat1] = STATE(1399), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), + [anon_sym_null] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(1761), + [anon_sym_false] = ACTIONS(1761), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1761), + [aux_sym__val_number_decimal_token3] = ACTIONS(1761), + [aux_sym__val_number_decimal_token4] = ACTIONS(1761), + [aux_sym__val_number_token1] = ACTIONS(1761), + [aux_sym__val_number_token2] = ACTIONS(1761), + [aux_sym__val_number_token3] = ACTIONS(1761), + [aux_sym__val_number_token4] = ACTIONS(1761), + [aux_sym__val_number_token5] = ACTIONS(1761), + [aux_sym__val_number_token6] = ACTIONS(1761), + [anon_sym_0b] = ACTIONS(1757), + [anon_sym_0o] = ACTIONS(1757), + [anon_sym_0x] = ACTIONS(1757), + [sym_val_date] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [sym__str_single_quotes] = ACTIONS(1761), + [sym__str_back_ticks] = ACTIONS(1761), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1761), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [aux_sym_unquoted_token1] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1761), + }, + [1364] = { + [sym_comment] = STATE(1364), + [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_DASH2] = 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), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), + }, + [1365] = { + [sym_comment] = STATE(1365), + [sym__newline] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_err_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_GT_PIPE] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1767), + [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), + [aux_sym__val_number_token4] = ACTIONS(1769), + [aux_sym__val_number_token5] = ACTIONS(1769), + [aux_sym__val_number_token6] = ACTIONS(1769), + [anon_sym_0b] = ACTIONS(1767), + [sym_filesize_unit] = ACTIONS(1769), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1767), + [anon_sym_0x] = ACTIONS(1767), + [sym_val_date] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1769), + [anon_sym_out_GT_GT] = ACTIONS(1769), + [anon_sym_e_GT_GT] = ACTIONS(1769), + [anon_sym_o_GT_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), + [aux_sym_unquoted_token1] = ACTIONS(1767), + [aux_sym_unquoted_token2] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1769), + }, + [1366] = { + [sym_comment] = STATE(1366), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [anon_sym_DASH_DASH] = ACTIONS(1773), [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(4670), [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [anon_sym_null] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1775), - [anon_sym_false] = ACTIONS(1775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(4692), + [aux_sym__immediate_decimal_token2] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1775), - [aux_sym__val_number_decimal_token3] = ACTIONS(1775), - [aux_sym__val_number_decimal_token4] = ACTIONS(1775), - [aux_sym__val_number_token1] = ACTIONS(1775), - [aux_sym__val_number_token2] = ACTIONS(1775), - [aux_sym__val_number_token3] = ACTIONS(1775), - [aux_sym__val_number_token4] = ACTIONS(1775), - [aux_sym__val_number_token5] = ACTIONS(1775), - [aux_sym__val_number_token6] = ACTIONS(1775), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), [anon_sym_0b] = ACTIONS(1771), [anon_sym_0o] = ACTIONS(1771), [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym__str_single_quotes] = ACTIONS(1775), - [sym__str_back_ticks] = ACTIONS(1775), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1775), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), [anon_sym_err_GT] = ACTIONS(1771), [anon_sym_out_GT] = ACTIONS(1771), [anon_sym_e_GT] = ACTIONS(1771), @@ -214014,533 +217074,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), [anon_sym_o_PLUSe_GT] = ACTIONS(1771), [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1775), - [anon_sym_out_GT_GT] = ACTIONS(1775), - [anon_sym_e_GT_GT] = ACTIONS(1775), - [anon_sym_o_GT_GT] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1775), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1775), - }, - [1362] = { - [sym_cell_path] = STATE(1497), - [sym_path] = STATE(1459), - [sym_comment] = STATE(1362), - [aux_sym_cell_path_repeat1] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(975), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_STAR2] = ACTIONS(973), - [anon_sym_and2] = ACTIONS(975), - [anon_sym_xor2] = ACTIONS(975), - [anon_sym_or2] = ACTIONS(975), - [anon_sym_not_DASHin2] = ACTIONS(975), - [anon_sym_starts_DASHwith2] = ACTIONS(975), - [anon_sym_ends_DASHwith2] = ACTIONS(975), - [anon_sym_EQ_EQ2] = ACTIONS(975), - [anon_sym_BANG_EQ2] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_LT_EQ2] = ACTIONS(975), - [anon_sym_GT_EQ2] = ACTIONS(975), - [anon_sym_EQ_TILDE2] = ACTIONS(975), - [anon_sym_BANG_TILDE2] = ACTIONS(975), - [anon_sym_STAR_STAR2] = ACTIONS(975), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(973), - [anon_sym_mod2] = ACTIONS(975), - [anon_sym_SLASH_SLASH2] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_bit_DASHshl2] = ACTIONS(975), - [anon_sym_bit_DASHshr2] = ACTIONS(975), - [anon_sym_bit_DASHand2] = ACTIONS(975), - [anon_sym_bit_DASHxor2] = ACTIONS(975), - [anon_sym_bit_DASHor2] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - }, - [1363] = { - [sym_comment] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(2294), - [anon_sym_STAR_STAR] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_bit_DASHshl] = ACTIONS(3201), - [anon_sym_bit_DASHshr] = ACTIONS(3201), - [anon_sym_EQ_TILDE] = ACTIONS(3201), - [anon_sym_BANG_TILDE] = ACTIONS(3201), - [anon_sym_bit_DASHand] = ACTIONS(3201), - [anon_sym_bit_DASHxor] = ACTIONS(3201), - [anon_sym_bit_DASHor] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_xor] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_not_DASHin] = ACTIONS(3201), - [anon_sym_starts_DASHwith] = ACTIONS(3201), - [anon_sym_ends_DASHwith] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3201), - [aux_sym_cmd_identifier_token41] = ACTIONS(3205), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), - }, - [1364] = { - [sym_comment] = STATE(1364), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4485), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), - }, - [1365] = { - [sym__expr_parenthesized_immediate] = STATE(1960), - [sym__immediate_decimal] = STATE(1968), - [sym_val_variable] = STATE(1960), - [sym_comment] = STATE(1365), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [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(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), - [anon_sym_0b] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1663), - [anon_sym_0x] = ACTIONS(1663), - [sym_val_date] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1673), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1673), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1673), - }, - [1366] = { - [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(2300), - [anon_sym_STAR_STAR] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_bit_DASHshl] = ACTIONS(3201), - [anon_sym_bit_DASHshr] = ACTIONS(3201), - [anon_sym_EQ_TILDE] = ACTIONS(3201), - [anon_sym_BANG_TILDE] = ACTIONS(3201), - [anon_sym_bit_DASHand] = ACTIONS(3201), - [anon_sym_bit_DASHxor] = ACTIONS(3201), - [anon_sym_bit_DASHor] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_xor] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_not_DASHin] = ACTIONS(3201), - [anon_sym_starts_DASHwith] = ACTIONS(3201), - [anon_sym_ends_DASHwith] = ACTIONS(3201), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3201), - [aux_sym_cmd_identifier_token41] = ACTIONS(3205), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1773), }, [1367] = { + [sym_cell_path] = STATE(1508), + [sym_path] = STATE(1482), [sym_comment] = STATE(1367), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1379), + [ts_builtin_sym_end] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_STAR2] = ACTIONS(969), + [anon_sym_and2] = ACTIONS(971), + [anon_sym_xor2] = ACTIONS(971), + [anon_sym_or2] = ACTIONS(971), + [anon_sym_not_DASHin2] = ACTIONS(971), + [anon_sym_starts_DASHwith2] = ACTIONS(971), + [anon_sym_ends_DASHwith2] = ACTIONS(971), + [anon_sym_EQ_EQ2] = ACTIONS(971), + [anon_sym_BANG_EQ2] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_LT_EQ2] = ACTIONS(971), + [anon_sym_GT_EQ2] = ACTIONS(971), + [anon_sym_EQ_TILDE2] = ACTIONS(971), + [anon_sym_BANG_TILDE2] = ACTIONS(971), + [anon_sym_STAR_STAR2] = ACTIONS(971), + [anon_sym_PLUS_PLUS2] = ACTIONS(969), + [anon_sym_SLASH2] = ACTIONS(969), + [anon_sym_mod2] = ACTIONS(971), + [anon_sym_SLASH_SLASH2] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_bit_DASHshl2] = ACTIONS(971), + [anon_sym_bit_DASHshr2] = ACTIONS(971), + [anon_sym_bit_DASHand2] = ACTIONS(971), + [anon_sym_bit_DASHxor2] = ACTIONS(971), + [anon_sym_bit_DASHor2] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(251), }, [1368] = { - [sym__expr_parenthesized_immediate] = STATE(7675), + [sym__expr_parenthesized_immediate] = STATE(1954), + [sym__immediate_decimal] = STATE(1955), + [sym_val_variable] = STATE(1954), [sym_comment] = STATE(1368), - [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(1695), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT2] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_DOT_DOT_LT] = ACTIONS(1695), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4676), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4676), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [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(1695), - [sym_filesize_unit] = ACTIONS(4678), - [sym_duration_unit] = ACTIONS(4680), - [anon_sym_0o] = ACTIONS(1695), - [anon_sym_0x] = ACTIONS(1695), - [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(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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(1695), - [aux_sym_unquoted_token2] = ACTIONS(4682), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), + [ts_builtin_sym_end] = ACTIONS(1745), + [sym__newline] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_err_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_GT_PIPE] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(1745), + [anon_sym_DASH2] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_DOT_DOT_LT] = ACTIONS(1745), + [aux_sym__immediate_decimal_token1] = ACTIONS(4671), + [aux_sym__immediate_decimal_token3] = ACTIONS(4673), + [aux_sym__immediate_decimal_token4] = ACTIONS(4675), + [aux_sym__immediate_decimal_token5] = ACTIONS(4677), + [anon_sym_null] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(1745), + [anon_sym_false] = ACTIONS(1745), + [aux_sym__val_number_decimal_token1] = ACTIONS(1743), + [aux_sym__val_number_decimal_token2] = ACTIONS(1743), + [aux_sym__val_number_decimal_token3] = ACTIONS(1743), + [aux_sym__val_number_decimal_token4] = ACTIONS(1743), + [aux_sym__val_number_token1] = ACTIONS(1745), + [aux_sym__val_number_token2] = ACTIONS(1745), + [aux_sym__val_number_token3] = ACTIONS(1745), + [aux_sym__val_number_token4] = ACTIONS(1745), + [aux_sym__val_number_token5] = ACTIONS(1745), + [aux_sym__val_number_token6] = ACTIONS(1745), + [anon_sym_0b] = ACTIONS(1743), + [anon_sym_0o] = ACTIONS(1743), + [anon_sym_0x] = ACTIONS(1743), + [sym_val_date] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__str_single_quotes] = ACTIONS(1745), + [sym__str_back_ticks] = ACTIONS(1745), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), + [anon_sym_err_GT] = ACTIONS(1743), + [anon_sym_out_GT] = ACTIONS(1743), + [anon_sym_e_GT] = ACTIONS(1743), + [anon_sym_o_GT] = ACTIONS(1743), + [anon_sym_err_PLUSout_GT] = ACTIONS(1743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), + [anon_sym_o_PLUSe_GT] = ACTIONS(1743), + [anon_sym_e_PLUSo_GT] = ACTIONS(1743), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [aux_sym_unquoted_token1] = ACTIONS(1743), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1745), }, [1369] = { - [sym_path] = STATE(1424), [sym_comment] = STATE(1369), - [aux_sym_cell_path_repeat1] = STATE(1343), + [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(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4700), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), + }, + [1370] = { + [sym__expr_parenthesized_immediate] = STATE(1947), + [sym__immediate_decimal] = STATE(1948), + [sym_val_variable] = STATE(1947), + [sym_comment] = STATE(1370), + [ts_builtin_sym_end] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(4671), + [aux_sym__immediate_decimal_token3] = ACTIONS(4673), + [aux_sym__immediate_decimal_token4] = ACTIONS(4675), + [aux_sym__immediate_decimal_token5] = ACTIONS(4677), + [anon_sym_null] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1685), + [aux_sym__val_number_token2] = ACTIONS(1685), + [aux_sym__val_number_token3] = ACTIONS(1685), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [anon_sym_0b] = ACTIONS(1677), + [anon_sym_0o] = ACTIONS(1677), + [anon_sym_0x] = ACTIONS(1677), + [sym_val_date] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [sym__str_single_quotes] = ACTIONS(1685), + [sym__str_back_ticks] = ACTIONS(1685), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1685), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [aux_sym_unquoted_token1] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1685), + }, + [1371] = { + [sym_comment] = STATE(1371), [anon_sym_EQ] = ACTIONS(986), [anon_sym_PLUS_EQ] = ACTIONS(988), [anon_sym_DASH_EQ] = ACTIONS(988), @@ -214563,6 +217403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(988), [anon_sym_RBRACE] = ACTIONS(988), [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), [anon_sym_and2] = ACTIONS(988), [anon_sym_xor2] = ACTIONS(988), [anon_sym_or2] = ACTIONS(988), @@ -214588,7 +217429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(988), [anon_sym_bit_DASHor2] = ACTIONS(988), [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4235), + [anon_sym_DOT] = ACTIONS(986), [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), [anon_sym_DOT_DOT_LT2] = ACTIONS(988), [aux_sym_record_entry_token1] = ACTIONS(988), @@ -214610,229 +217451,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(251), }, - [1370] = { - [sym_comment] = STATE(1370), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - }, - [1371] = { - [sym_comment] = STATE(1371), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4684), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4686), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), - }, [1372] = { + [sym__expr_parenthesized_immediate] = STATE(1914), + [sym__immediate_decimal] = STATE(1915), + [sym_val_variable] = STATE(1914), [sym_comment] = STATE(1372), - [ts_builtin_sym_end] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(4688), - [aux_sym__immediate_decimal_token2] = ACTIONS(4690), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(4702), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1643), + [anon_sym_xor2] = ACTIONS(1643), + [anon_sym_or2] = ACTIONS(1643), + [anon_sym_not_DASHin2] = ACTIONS(1643), + [anon_sym_starts_DASHwith2] = ACTIONS(1643), + [anon_sym_ends_DASHwith2] = ACTIONS(1643), + [anon_sym_EQ_EQ2] = ACTIONS(1643), + [anon_sym_BANG_EQ2] = ACTIONS(1643), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1643), + [anon_sym_GT_EQ2] = ACTIONS(1643), + [anon_sym_EQ_TILDE2] = ACTIONS(1643), + [anon_sym_BANG_TILDE2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1643), + [anon_sym_PLUS_PLUS2] = ACTIONS(1643), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1643), + [anon_sym_SLASH_SLASH2] = ACTIONS(1643), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1643), + [anon_sym_bit_DASHshr2] = ACTIONS(1643), + [anon_sym_bit_DASHand2] = ACTIONS(1643), + [anon_sym_bit_DASHxor2] = ACTIONS(1643), + [anon_sym_bit_DASHor2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(4706), + [aux_sym__immediate_decimal_token1] = ACTIONS(4708), + [aux_sym__immediate_decimal_token3] = ACTIONS(4708), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(251), }, [1373] = { - [sym_path] = STATE(1446), [sym_comment] = STATE(1373), - [aux_sym_cell_path_repeat1] = STATE(1345), [anon_sym_EQ] = ACTIONS(986), [anon_sym_PLUS_EQ] = ACTIONS(988), [anon_sym_DASH_EQ] = ACTIONS(988), @@ -214856,6 +217548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(988), [anon_sym_RBRACE] = ACTIONS(988), [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), [anon_sym_and2] = ACTIONS(988), [anon_sym_xor2] = ACTIONS(988), [anon_sym_or2] = ACTIONS(988), @@ -214881,7 +217574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(988), [anon_sym_bit_DASHor2] = ACTIONS(988), [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4291), + [anon_sym_DOT] = ACTIONS(986), [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), [anon_sym_DOT_DOT_LT2] = ACTIONS(988), [anon_sym_err_GT] = ACTIONS(986), @@ -214903,492 +217596,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), }, [1374] = { + [sym_cell_path] = STATE(1609), + [sym_path] = STATE(1533), [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(4692), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), + [aux_sym_cell_path_repeat1] = STATE(1434), + [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] = ACTIONS(4714), + [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), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1765), }, [1375] = { - [sym__expr_parenthesized_immediate] = STATE(1878), - [sym__immediate_decimal] = STATE(1879), - [sym_val_variable] = STATE(1878), [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(4267), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [aux_sym__immediate_decimal_token1] = ACTIONS(4575), - [aux_sym__immediate_decimal_token3] = ACTIONS(4577), - [aux_sym__immediate_decimal_token4] = ACTIONS(4579), - [aux_sym__immediate_decimal_token5] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(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_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), + [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(1669), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, [1376] = { [sym_comment] = STATE(1376), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(996), + [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), + [anon_sym_DOT_DOT_LT2] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(996), + [anon_sym_out_GT] = ACTIONS(996), + [anon_sym_e_GT] = ACTIONS(996), + [anon_sym_o_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(251), }, [1377] = { [sym_comment] = STATE(1377), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), - }, - [1378] = { - [sym_comment] = STATE(1378), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym__newline] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_err_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_GT_PIPE] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [anon_sym_null] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1783), - [anon_sym_false] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1781), - [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_0b] = ACTIONS(1781), - [sym_filesize_unit] = ACTIONS(1783), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1781), - [anon_sym_0x] = ACTIONS(1781), - [sym_val_date] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1783), - [anon_sym_out_GT_GT] = ACTIONS(1783), - [anon_sym_e_GT_GT] = ACTIONS(1783), - [anon_sym_o_GT_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), - [aux_sym_unquoted_token1] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1783), - }, - [1379] = { - [sym_path] = STATE(1459), - [sym_comment] = STATE(1379), - [aux_sym_cell_path_repeat1] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(986), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - }, - [1380] = { - [sym_cell_path] = STATE(1580), - [sym_path] = STATE(1541), - [sym_comment] = STATE(1380), - [aux_sym_cell_path_repeat1] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(1775), - [sym__newline] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_err_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_GT_PIPE] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1775), + [anon_sym_DASH_DASH] = ACTIONS(1773), [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1773), [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(4694), [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [anon_sym_null] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1775), - [anon_sym_false] = ACTIONS(1775), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token2] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1775), - [aux_sym__val_number_decimal_token3] = ACTIONS(1775), - [aux_sym__val_number_decimal_token4] = ACTIONS(1775), - [aux_sym__val_number_token1] = ACTIONS(1775), - [aux_sym__val_number_token2] = ACTIONS(1775), - [aux_sym__val_number_token3] = ACTIONS(1775), - [aux_sym__val_number_token4] = ACTIONS(1775), - [aux_sym__val_number_token5] = ACTIONS(1775), - [aux_sym__val_number_token6] = ACTIONS(1775), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), [anon_sym_0b] = ACTIONS(1771), [anon_sym_0o] = ACTIONS(1771), [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym__str_single_quotes] = ACTIONS(1775), - [sym__str_back_ticks] = ACTIONS(1775), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1775), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), [anon_sym_err_GT] = ACTIONS(1771), [anon_sym_out_GT] = ACTIONS(1771), [anon_sym_e_GT] = ACTIONS(1771), @@ -215397,164 +217870,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), [anon_sym_o_PLUSe_GT] = ACTIONS(1771), [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1775), - [anon_sym_out_GT_GT] = ACTIONS(1775), - [anon_sym_e_GT_GT] = ACTIONS(1775), - [anon_sym_o_GT_GT] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1775), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1378] = { + [sym_comment] = STATE(1378), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(4720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT] = ACTIONS(1687), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4722), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1699), + [aux_sym__val_number_token5] = ACTIONS(1699), + [aux_sym__val_number_token6] = ACTIONS(1699), + [anon_sym_0b] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(4724), + [sym_duration_unit] = ACTIONS(4726), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [sym_val_date] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token1] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [1379] = { + [sym_path] = STATE(1482), + [sym_comment] = STATE(1379), + [aux_sym_cell_path_repeat1] = STATE(1403), + [ts_builtin_sym_end] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1775), + }, + [1380] = { + [sym_comment] = STATE(1380), + [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_DASH2] = 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), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), }, [1381] = { - [sym_cell_path] = STATE(1582), - [sym_path] = STATE(1541), [sym_comment] = STATE(1381), - [aux_sym_cell_path_repeat1] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(4694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1777), - [anon_sym_DOT_DOT_LT] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_null] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1779), - [anon_sym_false] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_0b] = ACTIONS(1777), - [anon_sym_0o] = ACTIONS(1777), - [anon_sym_0x] = ACTIONS(1777), - [sym_val_date] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1779), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), - [aux_sym_unquoted_token1] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1779), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(4730), + [anon_sym_and2] = ACTIONS(1010), + [anon_sym_xor2] = ACTIONS(1010), + [anon_sym_or2] = ACTIONS(1010), + [anon_sym_not_DASHin2] = ACTIONS(1010), + [anon_sym_starts_DASHwith2] = ACTIONS(1010), + [anon_sym_ends_DASHwith2] = ACTIONS(1010), + [anon_sym_EQ_EQ2] = ACTIONS(1010), + [anon_sym_BANG_EQ2] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1010), + [anon_sym_GT_EQ2] = ACTIONS(1010), + [anon_sym_EQ_TILDE2] = ACTIONS(1010), + [anon_sym_BANG_TILDE2] = ACTIONS(1010), + [anon_sym_STAR_STAR2] = ACTIONS(1010), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1010), + [anon_sym_SLASH_SLASH2] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1010), + [anon_sym_bit_DASHshr2] = ACTIONS(1010), + [anon_sym_bit_DASHand2] = ACTIONS(1010), + [anon_sym_bit_DASHxor2] = ACTIONS(1010), + [anon_sym_bit_DASHor2] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), + [aux_sym_record_entry_token1] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(251), }, [1382] = { [sym_comment] = STATE(1382), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(4696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_DOT_DOT_LT] = ACTIONS(1695), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4698), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4698), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [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(1695), - [sym_filesize_unit] = ACTIONS(4700), - [sym_duration_unit] = ACTIONS(4702), - [anon_sym_0o] = ACTIONS(1695), - [anon_sym_0x] = ACTIONS(1695), - [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(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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(1695), - [aux_sym_unquoted_token2] = ACTIONS(4704), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [1383] = { - [sym_comment] = STATE(1383), [anon_sym_EQ] = ACTIONS(990), [anon_sym_PLUS_EQ] = ACTIONS(992), [anon_sym_DASH_EQ] = ACTIONS(992), @@ -215577,7 +218195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(992), [anon_sym_RBRACE] = ACTIONS(992), [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4706), + [anon_sym_QMARK2] = ACTIONS(4732), [anon_sym_and2] = ACTIONS(992), [anon_sym_xor2] = ACTIONS(992), [anon_sym_or2] = ACTIONS(992), @@ -215625,440 +218243,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(251), }, + [1383] = { + [sym_comment] = STATE(1383), + [sym__newline] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_err_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_GT_PIPE] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1767), + [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), + [aux_sym__val_number_token4] = ACTIONS(1769), + [aux_sym__val_number_token5] = ACTIONS(1769), + [aux_sym__val_number_token6] = ACTIONS(1769), + [anon_sym_0b] = ACTIONS(1767), + [sym_filesize_unit] = ACTIONS(1769), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1767), + [anon_sym_0x] = ACTIONS(1767), + [sym_val_date] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1769), + [anon_sym_out_GT_GT] = ACTIONS(1769), + [anon_sym_e_GT_GT] = ACTIONS(1769), + [anon_sym_o_GT_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), + [aux_sym_unquoted_token1] = ACTIONS(1767), + [aux_sym_unquoted_token2] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1769), + }, [1384] = { + [sym__match_pattern] = STATE(8088), + [sym__match_pattern_expression] = STATE(7510), + [sym__match_pattern_value] = STATE(7539), + [sym__match_pattern_list] = STATE(7540), + [sym__match_pattern_record] = STATE(7543), + [sym_expr_parenthesized] = STATE(6127), + [sym_val_range] = STATE(7539), + [sym__val_range] = STATE(8344), + [sym_val_nothing] = STATE(7547), + [sym_val_bool] = STATE(7399), + [sym_val_variable] = STATE(6134), + [sym_val_number] = STATE(7547), + [sym__val_number_decimal] = STATE(5827), + [sym__val_number] = STATE(1860), + [sym_val_duration] = STATE(7547), + [sym_val_filesize] = STATE(7547), + [sym_val_binary] = STATE(7547), + [sym_val_string] = STATE(7547), + [sym__raw_str] = STATE(1868), + [sym__str_double_quotes] = STATE(1868), + [sym_val_table] = STATE(7547), + [sym_unquoted] = STATE(7555), + [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1384), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1014), - [anon_sym_DASH_EQ] = ACTIONS(1014), - [anon_sym_STAR_EQ] = ACTIONS(1014), - [anon_sym_SLASH_EQ] = ACTIONS(1014), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1014), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_GT2] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_STAR2] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(4708), - [anon_sym_and2] = ACTIONS(1014), - [anon_sym_xor2] = ACTIONS(1014), - [anon_sym_or2] = ACTIONS(1014), - [anon_sym_not_DASHin2] = ACTIONS(1014), - [anon_sym_starts_DASHwith2] = ACTIONS(1014), - [anon_sym_ends_DASHwith2] = ACTIONS(1014), - [anon_sym_EQ_EQ2] = ACTIONS(1014), - [anon_sym_BANG_EQ2] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1012), - [anon_sym_LT_EQ2] = ACTIONS(1014), - [anon_sym_GT_EQ2] = ACTIONS(1014), - [anon_sym_EQ_TILDE2] = ACTIONS(1014), - [anon_sym_BANG_TILDE2] = ACTIONS(1014), - [anon_sym_STAR_STAR2] = ACTIONS(1014), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1014), - [anon_sym_SLASH_SLASH2] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_bit_DASHshl2] = ACTIONS(1014), - [anon_sym_bit_DASHshr2] = ACTIONS(1014), - [anon_sym_bit_DASHand2] = ACTIONS(1014), - [anon_sym_bit_DASHxor2] = ACTIONS(1014), - [anon_sym_bit_DASHor2] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [aux_sym_record_entry_token1] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3699), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4736), + [anon_sym_DOT_DOT_LT] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4738), + [anon_sym_true] = ACTIONS(4740), + [anon_sym_false] = ACTIONS(4740), + [aux_sym__val_number_decimal_token1] = ACTIONS(4742), + [aux_sym__val_number_decimal_token2] = ACTIONS(4744), + [aux_sym__val_number_decimal_token3] = ACTIONS(4746), + [aux_sym__val_number_decimal_token4] = ACTIONS(4748), + [aux_sym__val_number_token1] = ACTIONS(431), + [aux_sym__val_number_token2] = ACTIONS(431), + [aux_sym__val_number_token3] = ACTIONS(431), + [aux_sym__val_number_token4] = ACTIONS(4750), + [aux_sym__val_number_token5] = ACTIONS(4750), + [aux_sym__val_number_token6] = ACTIONS(4750), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(4752), + [anon_sym_DQUOTE] = ACTIONS(435), + [sym__str_single_quotes] = ACTIONS(437), + [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_err_GT] = ACTIONS(2695), + [anon_sym_out_GT] = ACTIONS(2695), + [anon_sym_e_GT] = ACTIONS(2695), + [anon_sym_o_GT] = ACTIONS(2695), + [anon_sym_err_PLUSout_GT] = ACTIONS(2695), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), + [anon_sym_o_PLUSe_GT] = ACTIONS(2695), + [anon_sym_e_PLUSo_GT] = ACTIONS(2695), + [anon_sym_err_GT_GT] = ACTIONS(2697), + [anon_sym_out_GT_GT] = ACTIONS(2697), + [anon_sym_e_GT_GT] = ACTIONS(2697), + [anon_sym_o_GT_GT] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), + [aux_sym_unquoted_token1] = ACTIONS(3239), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(439), }, [1385] = { - [sym_cell_path] = STATE(1587), - [sym_path] = STATE(1541), [sym_comment] = STATE(1385), - [aux_sym_cell_path_repeat1] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(975), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_DOT_DOT_LT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(973), - [anon_sym_0o] = ACTIONS(973), - [anon_sym_0x] = ACTIONS(973), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), }, [1386] = { [sym_comment] = STATE(1386), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4585), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(1002), + [anon_sym_DASH_EQ] = ACTIONS(1002), + [anon_sym_STAR_EQ] = ACTIONS(1002), + [anon_sym_SLASH_EQ] = ACTIONS(1002), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1000), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1000), + [anon_sym_SLASH2] = ACTIONS(1000), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), + [aux_sym_record_entry_token1] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1000), + [anon_sym_out_GT] = ACTIONS(1000), + [anon_sym_e_GT] = ACTIONS(1000), + [anon_sym_o_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT] = ACTIONS(1000), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(251), }, [1387] = { [sym_comment] = STATE(1387), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(4710), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), }, [1388] = { + [sym_cell_path] = STATE(1650), + [sym_path] = STATE(1533), [sym_comment] = STATE(1388), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [aux_sym_record_entry_token1] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(971), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_DOT_DOT_LT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_null] = ACTIONS(971), + [anon_sym_true] = ACTIONS(971), + [anon_sym_false] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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_0b] = ACTIONS(969), + [anon_sym_0o] = ACTIONS(969), + [anon_sym_0x] = ACTIONS(969), + [sym_val_date] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym__str_single_quotes] = ACTIONS(971), + [sym__str_back_ticks] = ACTIONS(971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [aux_sym_unquoted_token1] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), }, [1389] = { [sym_comment] = STATE(1389), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [aux_sym_record_entry_token1] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - }, - [1390] = { - [sym_comment] = STATE(1390), [anon_sym_EQ] = ACTIONS(996), [anon_sym_PLUS_EQ] = ACTIONS(998), [anon_sym_DASH_EQ] = ACTIONS(998), @@ -216129,15 +218747,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(251), }, + [1390] = { + [sym_comment] = STATE(1390), + [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(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), + }, [1391] = { [sym_comment] = STATE(1391), + [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_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH2] = 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__immediate_decimal_token2] = ACTIONS(4754), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), + }, + [1392] = { + [sym_comment] = STATE(1392), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4758), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1393] = { + [sym_comment] = STATE(1393), [anon_sym_EQ] = ACTIONS(1000), [anon_sym_PLUS_EQ] = ACTIONS(1002), [anon_sym_DASH_EQ] = ACTIONS(1002), [anon_sym_STAR_EQ] = ACTIONS(1002), [anon_sym_SLASH_EQ] = ACTIONS(1002), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [sym__newline] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), [anon_sym_SEMI] = ACTIONS(1002), [anon_sym_PIPE] = ACTIONS(1002), [anon_sym_err_GT_PIPE] = ACTIONS(1002), @@ -216148,6 +218982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), [anon_sym_GT2] = ACTIONS(1000), [anon_sym_DASH2] = ACTIONS(1000), [anon_sym_in2] = ACTIONS(1002), @@ -216182,7 +219017,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1000), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [aux_sym_record_entry_token1] = ACTIONS(1002), [anon_sym_err_GT] = ACTIONS(1000), [anon_sym_out_GT] = ACTIONS(1000), [anon_sym_e_GT] = ACTIONS(1000), @@ -216201,1232 +219035,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(251), }, - [1392] = { - [sym_path] = STATE(1489), - [sym_comment] = STATE(1392), - [aux_sym_cell_path_repeat1] = STATE(1393), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [1393] = { - [sym_path] = STATE(1489), - [sym_comment] = STATE(1393), - [aux_sym_cell_path_repeat1] = STATE(1393), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_DOT_DOT_LT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_null] = ACTIONS(981), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(981), - [aux_sym__val_number_token5] = ACTIONS(981), - [aux_sym__val_number_token6] = ACTIONS(981), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [aux_sym_unquoted_token1] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), - }, [1394] = { [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(4715), - [aux_sym__immediate_decimal_token2] = ACTIONS(4717), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [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_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH2] = 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), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), }, [1395] = { [sym_comment] = STATE(1395), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4686), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_err_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_GT_PIPE] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_QMARK2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1006), + [anon_sym_xor2] = ACTIONS(1006), + [anon_sym_or2] = ACTIONS(1006), + [anon_sym_not_DASHin2] = ACTIONS(1006), + [anon_sym_starts_DASHwith2] = ACTIONS(1006), + [anon_sym_ends_DASHwith2] = ACTIONS(1006), + [anon_sym_EQ_EQ2] = ACTIONS(1006), + [anon_sym_BANG_EQ2] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1006), + [anon_sym_GT_EQ2] = ACTIONS(1006), + [anon_sym_EQ_TILDE2] = ACTIONS(1006), + [anon_sym_BANG_TILDE2] = ACTIONS(1006), + [anon_sym_STAR_STAR2] = ACTIONS(1006), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1006), + [anon_sym_SLASH_SLASH2] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1006), + [anon_sym_bit_DASHshr2] = ACTIONS(1006), + [anon_sym_bit_DASHand2] = ACTIONS(1006), + [anon_sym_bit_DASHxor2] = ACTIONS(1006), + [anon_sym_bit_DASHor2] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1006), + [anon_sym_out_GT_GT] = ACTIONS(1006), + [anon_sym_e_GT_GT] = ACTIONS(1006), + [anon_sym_o_GT_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), }, [1396] = { [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(4719), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(4760), + [anon_sym_and2] = ACTIONS(1010), + [anon_sym_xor2] = ACTIONS(1010), + [anon_sym_or2] = ACTIONS(1010), + [anon_sym_not_DASHin2] = ACTIONS(1010), + [anon_sym_starts_DASHwith2] = ACTIONS(1010), + [anon_sym_ends_DASHwith2] = ACTIONS(1010), + [anon_sym_EQ_EQ2] = ACTIONS(1010), + [anon_sym_BANG_EQ2] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1010), + [anon_sym_GT_EQ2] = ACTIONS(1010), + [anon_sym_EQ_TILDE2] = ACTIONS(1010), + [anon_sym_BANG_TILDE2] = ACTIONS(1010), + [anon_sym_STAR_STAR2] = ACTIONS(1010), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1010), + [anon_sym_SLASH_SLASH2] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1010), + [anon_sym_bit_DASHshr2] = ACTIONS(1010), + [anon_sym_bit_DASHand2] = ACTIONS(1010), + [anon_sym_bit_DASHxor2] = ACTIONS(1010), + [anon_sym_bit_DASHor2] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(251), }, [1397] = { [sym_comment] = STATE(1397), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1014), - [anon_sym_DASH_EQ] = ACTIONS(1014), - [anon_sym_STAR_EQ] = ACTIONS(1014), - [anon_sym_SLASH_EQ] = ACTIONS(1014), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1014), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_GT2] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_STAR2] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(4721), - [anon_sym_and2] = ACTIONS(1014), - [anon_sym_xor2] = ACTIONS(1014), - [anon_sym_or2] = ACTIONS(1014), - [anon_sym_not_DASHin2] = ACTIONS(1014), - [anon_sym_starts_DASHwith2] = ACTIONS(1014), - [anon_sym_ends_DASHwith2] = ACTIONS(1014), - [anon_sym_EQ_EQ2] = ACTIONS(1014), - [anon_sym_BANG_EQ2] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1012), - [anon_sym_LT_EQ2] = ACTIONS(1014), - [anon_sym_GT_EQ2] = ACTIONS(1014), - [anon_sym_EQ_TILDE2] = ACTIONS(1014), - [anon_sym_BANG_TILDE2] = ACTIONS(1014), - [anon_sym_STAR_STAR2] = ACTIONS(1014), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1014), - [anon_sym_SLASH_SLASH2] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_bit_DASHshl2] = ACTIONS(1014), - [anon_sym_bit_DASHshr2] = ACTIONS(1014), - [anon_sym_bit_DASHand2] = ACTIONS(1014), - [anon_sym_bit_DASHxor2] = ACTIONS(1014), - [anon_sym_bit_DASHor2] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), }, [1398] = { - [sym__match_pattern] = STATE(7663), - [sym__match_pattern_expression] = STATE(6938), - [sym__match_pattern_value] = STATE(6942), - [sym__match_pattern_list] = STATE(6944), - [sym__match_pattern_record] = STATE(6955), - [sym_expr_parenthesized] = STATE(5876), - [sym_val_range] = STATE(6942), - [sym__val_range] = STATE(7747), - [sym_val_nothing] = STATE(6968), - [sym_val_bool] = STATE(6890), - [sym_val_variable] = STATE(5878), - [sym_val_number] = STATE(6968), - [sym__val_number_decimal] = STATE(5618), - [sym__val_number] = STATE(1850), - [sym_val_duration] = STATE(6968), - [sym_val_filesize] = STATE(6968), - [sym_val_binary] = STATE(6968), - [sym_val_string] = STATE(6968), - [sym__raw_str] = STATE(1779), - [sym__str_double_quotes] = STATE(1779), - [sym_val_table] = STATE(6968), - [sym_unquoted] = STATE(7029), - [sym__unquoted_anonymous_prefix] = STATE(7793), [sym_comment] = STATE(1398), - [anon_sym_LBRACK] = ACTIONS(3609), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_DOLLAR] = ACTIONS(3613), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4725), - [anon_sym_DOT_DOT_LT] = ACTIONS(4725), - [anon_sym_null] = ACTIONS(4727), - [anon_sym_true] = ACTIONS(4729), - [anon_sym_false] = ACTIONS(4729), - [aux_sym__val_number_decimal_token1] = ACTIONS(4731), - [aux_sym__val_number_decimal_token2] = ACTIONS(4733), - [aux_sym__val_number_decimal_token3] = ACTIONS(4735), - [aux_sym__val_number_decimal_token4] = ACTIONS(4737), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4739), - [aux_sym__val_number_token5] = ACTIONS(4739), - [aux_sym__val_number_token6] = ACTIONS(4739), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4741), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2697), - [anon_sym_out_GT] = ACTIONS(2697), - [anon_sym_e_GT] = ACTIONS(2697), - [anon_sym_o_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT] = ACTIONS(2697), - [anon_sym_err_GT_GT] = ACTIONS(2699), - [anon_sym_out_GT_GT] = ACTIONS(2699), - [anon_sym_e_GT_GT] = ACTIONS(2699), - [anon_sym_o_GT_GT] = ACTIONS(2699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2699), - [aux_sym_unquoted_token1] = ACTIONS(3331), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4591), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(1781), }, [1399] = { + [sym_path] = STATE(1499), [sym_comment] = STATE(1399), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1401), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), }, [1400] = { + [sym__expr_parenthesized_immediate] = STATE(2006), + [sym__immediate_decimal] = STATE(2015), + [sym_val_variable] = STATE(2006), [sym_comment] = STATE(1400), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4702), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(4762), + [aux_sym__immediate_decimal_token1] = ACTIONS(4708), + [aux_sym__immediate_decimal_token3] = ACTIONS(4708), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), }, [1401] = { + [sym_path] = STATE(1499), [sym_comment] = STATE(1401), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1401), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(4764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_DOT_DOT_LT] = ACTIONS(975), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_null] = ACTIONS(977), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(977), + [aux_sym__val_number_token5] = ACTIONS(977), + [aux_sym__val_number_token6] = ACTIONS(977), + [anon_sym_0b] = ACTIONS(975), + [anon_sym_0o] = ACTIONS(975), + [anon_sym_0x] = ACTIONS(975), + [sym_val_date] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [aux_sym_unquoted_token1] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(977), }, [1402] = { [sym_comment] = STATE(1402), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(4767), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, [1403] = { + [sym_path] = STATE(1482), [sym_comment] = STATE(1403), - [sym__newline] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_err_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_GT_PIPE] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [anon_sym_null] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1783), - [anon_sym_false] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1781), - [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_0b] = ACTIONS(1781), - [sym_filesize_unit] = ACTIONS(1783), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1781), - [anon_sym_0x] = ACTIONS(1781), - [sym_val_date] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1783), - [anon_sym_out_GT_GT] = ACTIONS(1783), - [anon_sym_e_GT_GT] = ACTIONS(1783), - [anon_sym_o_GT_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), - [aux_sym_unquoted_token1] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1783), + [aux_sym_cell_path_repeat1] = STATE(1403), + [ts_builtin_sym_end] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_GT2] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_in2] = ACTIONS(977), + [anon_sym_STAR2] = ACTIONS(975), + [anon_sym_and2] = ACTIONS(977), + [anon_sym_xor2] = ACTIONS(977), + [anon_sym_or2] = ACTIONS(977), + [anon_sym_not_DASHin2] = ACTIONS(977), + [anon_sym_starts_DASHwith2] = ACTIONS(977), + [anon_sym_ends_DASHwith2] = ACTIONS(977), + [anon_sym_EQ_EQ2] = ACTIONS(977), + [anon_sym_BANG_EQ2] = ACTIONS(977), + [anon_sym_LT2] = ACTIONS(975), + [anon_sym_LT_EQ2] = ACTIONS(977), + [anon_sym_GT_EQ2] = ACTIONS(977), + [anon_sym_EQ_TILDE2] = ACTIONS(977), + [anon_sym_BANG_TILDE2] = ACTIONS(977), + [anon_sym_STAR_STAR2] = ACTIONS(977), + [anon_sym_PLUS_PLUS2] = ACTIONS(975), + [anon_sym_SLASH2] = ACTIONS(975), + [anon_sym_mod2] = ACTIONS(977), + [anon_sym_SLASH_SLASH2] = ACTIONS(977), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_bit_DASHshl2] = ACTIONS(977), + [anon_sym_bit_DASHshr2] = ACTIONS(977), + [anon_sym_bit_DASHand2] = ACTIONS(977), + [anon_sym_bit_DASHxor2] = ACTIONS(977), + [anon_sym_bit_DASHor2] = ACTIONS(977), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(4769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), }, [1404] = { + [sym__expr_parenthesized_immediate] = STATE(2006), + [sym__immediate_decimal] = STATE(1762), + [sym_val_variable] = STATE(2006), [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4702), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(4772), + [aux_sym__immediate_decimal_token1] = ACTIONS(4708), + [aux_sym__immediate_decimal_token3] = ACTIONS(4708), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), }, [1405] = { [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(4743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4745), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1406] = { - [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), - }, - [1407] = { - [sym_path] = STATE(1459), - [sym_comment] = STATE(1407), - [aux_sym_cell_path_repeat1] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(981), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_GT2] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_in2] = ACTIONS(981), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_and2] = ACTIONS(981), - [anon_sym_xor2] = ACTIONS(981), - [anon_sym_or2] = ACTIONS(981), - [anon_sym_not_DASHin2] = ACTIONS(981), - [anon_sym_starts_DASHwith2] = ACTIONS(981), - [anon_sym_ends_DASHwith2] = ACTIONS(981), - [anon_sym_EQ_EQ2] = ACTIONS(981), - [anon_sym_BANG_EQ2] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ2] = ACTIONS(981), - [anon_sym_GT_EQ2] = ACTIONS(981), - [anon_sym_EQ_TILDE2] = ACTIONS(981), - [anon_sym_BANG_TILDE2] = ACTIONS(981), - [anon_sym_STAR_STAR2] = ACTIONS(981), - [anon_sym_PLUS_PLUS2] = ACTIONS(979), - [anon_sym_SLASH2] = ACTIONS(979), - [anon_sym_mod2] = ACTIONS(981), - [anon_sym_SLASH_SLASH2] = ACTIONS(981), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_bit_DASHshl2] = ACTIONS(981), - [anon_sym_bit_DASHshr2] = ACTIONS(981), - [anon_sym_bit_DASHand2] = ACTIONS(981), - [anon_sym_bit_DASHxor2] = ACTIONS(981), - [anon_sym_bit_DASHor2] = ACTIONS(981), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), - }, - [1408] = { - [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), - }, - [1409] = { - [sym_comment] = STATE(1409), [anon_sym_EQ] = ACTIONS(990), [anon_sym_PLUS_EQ] = ACTIONS(992), [anon_sym_DASH_EQ] = ACTIONS(992), @@ -217450,7 +219852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(992), [anon_sym_RBRACE] = ACTIONS(992), [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4750), + [anon_sym_QMARK2] = ACTIONS(4774), [anon_sym_and2] = ACTIONS(992), [anon_sym_xor2] = ACTIONS(992), [anon_sym_or2] = ACTIONS(992), @@ -217497,363 +219899,510 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(251), }, - [1410] = { - [sym_comment] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DASH2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [anon_sym_null] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1747), - [anon_sym_false] = ACTIONS(1747), - [aux_sym__val_number_decimal_token1] = ACTIONS(1745), - [aux_sym__val_number_decimal_token2] = ACTIONS(1747), - [aux_sym__val_number_decimal_token3] = ACTIONS(1747), - [aux_sym__val_number_decimal_token4] = ACTIONS(1747), - [aux_sym__val_number_token1] = ACTIONS(1747), - [aux_sym__val_number_token2] = ACTIONS(1747), - [aux_sym__val_number_token3] = ACTIONS(1747), - [aux_sym__val_number_token4] = ACTIONS(1747), - [aux_sym__val_number_token5] = ACTIONS(1747), - [aux_sym__val_number_token6] = ACTIONS(1747), - [anon_sym_0b] = ACTIONS(1745), - [sym_filesize_unit] = ACTIONS(1747), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__str_single_quotes] = ACTIONS(1747), - [sym__str_back_ticks] = ACTIONS(1747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token1] = ACTIONS(1745), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1747), + [1406] = { + [sym_comment] = STATE(1406), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), }, - [1411] = { - [sym_path] = STATE(1541), - [sym_comment] = STATE(1411), - [aux_sym_cell_path_repeat1] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(981), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4752), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_DOT_DOT_LT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_null] = ACTIONS(981), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(981), - [aux_sym__val_number_token5] = ACTIONS(981), - [aux_sym__val_number_token6] = ACTIONS(981), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [aux_sym_unquoted_token1] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), + [1407] = { + [sym_comment] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym__newline] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_err_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_GT_PIPE] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1767), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1767), + [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), + [aux_sym__val_number_token4] = ACTIONS(1769), + [aux_sym__val_number_token5] = ACTIONS(1769), + [aux_sym__val_number_token6] = ACTIONS(1769), + [anon_sym_0b] = ACTIONS(1767), + [sym_filesize_unit] = ACTIONS(1769), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1767), + [anon_sym_0x] = ACTIONS(1767), + [sym_val_date] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1769), + [anon_sym_out_GT_GT] = ACTIONS(1769), + [anon_sym_e_GT_GT] = ACTIONS(1769), + [anon_sym_o_GT_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), + [aux_sym_unquoted_token1] = ACTIONS(1767), + [aux_sym_unquoted_token2] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1769), }, - [1412] = { - [sym_comment] = STATE(1412), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [1408] = { + [sym_comment] = STATE(1408), + [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(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4700), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), }, - [1413] = { - [sym_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [1409] = { + [sym_cell_path] = STATE(1605), + [sym_path] = STATE(1533), + [sym_comment] = STATE(1409), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), + [anon_sym_null] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(1761), + [anon_sym_false] = ACTIONS(1761), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1761), + [aux_sym__val_number_decimal_token3] = ACTIONS(1761), + [aux_sym__val_number_decimal_token4] = ACTIONS(1761), + [aux_sym__val_number_token1] = ACTIONS(1761), + [aux_sym__val_number_token2] = ACTIONS(1761), + [aux_sym__val_number_token3] = ACTIONS(1761), + [aux_sym__val_number_token4] = ACTIONS(1761), + [aux_sym__val_number_token5] = ACTIONS(1761), + [aux_sym__val_number_token6] = ACTIONS(1761), + [anon_sym_0b] = ACTIONS(1757), + [anon_sym_0o] = ACTIONS(1757), + [anon_sym_0x] = ACTIONS(1757), + [sym_val_date] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [sym__str_single_quotes] = ACTIONS(1761), + [sym__str_back_ticks] = ACTIONS(1761), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1761), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1761), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [aux_sym_unquoted_token1] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1761), + }, + [1410] = { + [sym_comment] = STATE(1410), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1006), + [anon_sym_DASH_EQ] = ACTIONS(1006), + [anon_sym_STAR_EQ] = ACTIONS(1006), + [anon_sym_SLASH_EQ] = ACTIONS(1006), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_err_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_GT_PIPE] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_QMARK2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1006), + [anon_sym_xor2] = ACTIONS(1006), + [anon_sym_or2] = ACTIONS(1006), + [anon_sym_not_DASHin2] = ACTIONS(1006), + [anon_sym_starts_DASHwith2] = ACTIONS(1006), + [anon_sym_ends_DASHwith2] = ACTIONS(1006), + [anon_sym_EQ_EQ2] = ACTIONS(1006), + [anon_sym_BANG_EQ2] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1006), + [anon_sym_GT_EQ2] = ACTIONS(1006), + [anon_sym_EQ_TILDE2] = ACTIONS(1006), + [anon_sym_BANG_TILDE2] = ACTIONS(1006), + [anon_sym_STAR_STAR2] = ACTIONS(1006), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1006), + [anon_sym_SLASH_SLASH2] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1006), + [anon_sym_bit_DASHshr2] = ACTIONS(1006), + [anon_sym_bit_DASHand2] = ACTIONS(1006), + [anon_sym_bit_DASHxor2] = ACTIONS(1006), + [anon_sym_bit_DASHor2] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), + [aux_sym_record_entry_token1] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1006), + [anon_sym_out_GT_GT] = ACTIONS(1006), + [anon_sym_e_GT_GT] = ACTIONS(1006), + [anon_sym_o_GT_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(251), }, - [1414] = { - [sym_comment] = STATE(1414), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [1411] = { + [sym__expr_parenthesized_immediate] = STATE(2133), + [sym__immediate_decimal] = STATE(2222), + [sym_val_variable] = STATE(2133), + [sym_comment] = STATE(1411), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(4776), + [anon_sym_GT2] = ACTIONS(1645), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_in2] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_STAR2] = ACTIONS(1645), + [anon_sym_and2] = ACTIONS(1657), + [anon_sym_xor2] = ACTIONS(1657), + [anon_sym_or2] = ACTIONS(1657), + [anon_sym_not_DASHin2] = ACTIONS(1657), + [anon_sym_starts_DASHwith2] = ACTIONS(1657), + [anon_sym_ends_DASHwith2] = ACTIONS(1657), + [anon_sym_EQ_EQ2] = ACTIONS(1657), + [anon_sym_BANG_EQ2] = ACTIONS(1657), + [anon_sym_LT2] = ACTIONS(1645), + [anon_sym_LT_EQ2] = ACTIONS(1657), + [anon_sym_GT_EQ2] = ACTIONS(1657), + [anon_sym_EQ_TILDE2] = ACTIONS(1657), + [anon_sym_BANG_TILDE2] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1657), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1645), + [anon_sym_mod2] = ACTIONS(1657), + [anon_sym_SLASH_SLASH2] = ACTIONS(1657), + [anon_sym_PLUS2] = ACTIONS(1645), + [anon_sym_bit_DASHshl2] = ACTIONS(1657), + [anon_sym_bit_DASHshr2] = ACTIONS(1657), + [anon_sym_bit_DASHand2] = ACTIONS(1657), + [anon_sym_bit_DASHxor2] = ACTIONS(1657), + [anon_sym_bit_DASHor2] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(4778), + [aux_sym__immediate_decimal_token3] = ACTIONS(4778), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [anon_sym_err_GT] = ACTIONS(1645), + [anon_sym_out_GT] = ACTIONS(1645), + [anon_sym_e_GT] = ACTIONS(1645), + [anon_sym_o_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT] = ACTIONS(1645), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(251), }, - [1415] = { - [sym_comment] = STATE(1415), + [1412] = { + [sym_comment] = STATE(1412), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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_0b] = ACTIONS(1000), + [anon_sym_0o] = ACTIONS(1000), + [anon_sym_0x] = ACTIONS(1000), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1000), + [anon_sym_out_GT] = ACTIONS(1000), + [anon_sym_e_GT] = ACTIONS(1000), + [anon_sym_o_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT] = ACTIONS(1000), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1002), + }, + [1413] = { + [sym_comment] = STATE(1413), [anon_sym_EQ] = ACTIONS(1022), [anon_sym_PLUS_EQ] = ACTIONS(1024), [anon_sym_DASH_EQ] = ACTIONS(1024), @@ -217923,147 +220472,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(251), }, + [1414] = { + [sym__expr_parenthesized_immediate] = STATE(2123), + [sym__immediate_decimal] = STATE(2177), + [sym_val_variable] = STATE(2123), + [sym_comment] = STATE(1414), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4776), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(4780), + [aux_sym__immediate_decimal_token3] = ACTIONS(4780), + [aux_sym__immediate_decimal_token4] = ACTIONS(4782), + [aux_sym__immediate_decimal_token5] = ACTIONS(4784), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + }, + [1415] = { + [sym_comment] = STATE(1415), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym__newline] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_err_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_GT_PIPE] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_DASH2] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_DOT_DOT] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1767), + [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), + [aux_sym__val_number_token4] = ACTIONS(1769), + [aux_sym__val_number_token5] = ACTIONS(1769), + [aux_sym__val_number_token6] = ACTIONS(1769), + [anon_sym_0b] = ACTIONS(1767), + [sym_filesize_unit] = ACTIONS(1769), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1767), + [anon_sym_0x] = ACTIONS(1767), + [sym_val_date] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1769), + [anon_sym_out_GT_GT] = ACTIONS(1769), + [anon_sym_e_GT_GT] = ACTIONS(1769), + [anon_sym_o_GT_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), + [aux_sym_unquoted_token1] = ACTIONS(1767), + [aux_sym_unquoted_token2] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1769), + }, [1416] = { [sym_comment] = STATE(1416), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [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] = 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(251), }, [1417] = { [sym_comment] = STATE(1417), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), - [anon_sym_DOT_DOT_LT] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1826), - [aux_sym__val_number_token5] = ACTIONS(1826), - [aux_sym__val_number_token6] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [aux_sym_unquoted_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), + [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(251), }, [1418] = { [sym_comment] = STATE(1418), @@ -218138,1071 +220829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1419] = { [sym_comment] = STATE(1419), - [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(4755), - [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(251), - }, - [1420] = { - [sym_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4745), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1421] = { - [sym_comment] = STATE(1421), - [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(4757), - [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(251), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1422] = { - [sym_comment] = STATE(1422), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(4759), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_null] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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_0b] = ACTIONS(1012), - [anon_sym_0o] = ACTIONS(1012), - [anon_sym_0x] = ACTIONS(1012), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), - [aux_sym_unquoted_token1] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), - }, - [1423] = { - [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), - }, - [1424] = { - [sym_comment] = STATE(1424), - [anon_sym_EQ] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1028), - [anon_sym_DASH_EQ] = ACTIONS(1028), - [anon_sym_STAR_EQ] = ACTIONS(1028), - [anon_sym_SLASH_EQ] = ACTIONS(1028), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1028), - [sym__newline] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [aux_sym_record_entry_token1] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(251), - }, - [1425] = { - [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [anon_sym_null] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = ACTIONS(1647), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1647), - [aux_sym__val_number_decimal_token3] = ACTIONS(1647), - [aux_sym__val_number_decimal_token4] = ACTIONS(1647), - [aux_sym__val_number_token1] = ACTIONS(1647), - [aux_sym__val_number_token2] = ACTIONS(1647), - [aux_sym__val_number_token3] = ACTIONS(1647), - [aux_sym__val_number_token4] = ACTIONS(1647), - [aux_sym__val_number_token5] = ACTIONS(1647), - [aux_sym__val_number_token6] = ACTIONS(1647), - [anon_sym_0b] = ACTIONS(1645), - [sym_filesize_unit] = ACTIONS(1647), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym__str_single_quotes] = ACTIONS(1647), - [sym__str_back_ticks] = ACTIONS(1647), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1647), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1647), - }, - [1426] = { - [sym_path] = STATE(1541), - [sym_comment] = STATE(1426), - [aux_sym_cell_path_repeat1] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [1427] = { - [sym_comment] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_DOT_DOT] = ACTIONS(1637), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_LT] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1637), - [aux_sym__val_number_decimal_token2] = ACTIONS(1639), - [aux_sym__val_number_decimal_token3] = ACTIONS(1639), - [aux_sym__val_number_decimal_token4] = ACTIONS(1639), - [aux_sym__val_number_token1] = ACTIONS(1639), - [aux_sym__val_number_token2] = ACTIONS(1639), - [aux_sym__val_number_token3] = ACTIONS(1639), - [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(1637), - [sym_filesize_unit] = ACTIONS(1639), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1637), - [anon_sym_0x] = ACTIONS(1637), - [sym_val_date] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym__str_single_quotes] = ACTIONS(1639), - [sym__str_back_ticks] = ACTIONS(1639), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token1] = ACTIONS(1637), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1639), - }, - [1428] = { - [sym_comment] = STATE(1428), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_in2] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1647), - [anon_sym_xor2] = ACTIONS(1647), - [anon_sym_or2] = ACTIONS(1647), - [anon_sym_not_DASHin2] = ACTIONS(1647), - [anon_sym_starts_DASHwith2] = ACTIONS(1647), - [anon_sym_ends_DASHwith2] = ACTIONS(1647), - [anon_sym_EQ_EQ2] = ACTIONS(1647), - [anon_sym_BANG_EQ2] = ACTIONS(1647), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1647), - [anon_sym_GT_EQ2] = ACTIONS(1647), - [anon_sym_EQ_TILDE2] = ACTIONS(1647), - [anon_sym_BANG_TILDE2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_STAR_STAR2] = ACTIONS(1647), - [anon_sym_PLUS_PLUS2] = ACTIONS(1647), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1647), - [anon_sym_SLASH_SLASH2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1647), - [anon_sym_bit_DASHshr2] = ACTIONS(1647), - [anon_sym_bit_DASHand2] = ACTIONS(1647), - [anon_sym_bit_DASHxor2] = ACTIONS(1647), - [anon_sym_bit_DASHor2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4761), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4763), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - }, - [1429] = { - [sym_comment] = STATE(1429), - [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(1707), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_DOT_DOT2] = ACTIONS(4696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), - [anon_sym_DOT_DOT_LT] = ACTIONS(1695), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4698), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4698), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [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(1695), - [sym_filesize_unit] = ACTIONS(4765), - [sym_duration_unit] = ACTIONS(4767), - [anon_sym_0o] = ACTIONS(1695), - [anon_sym_0x] = ACTIONS(1695), - [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(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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(1695), - [aux_sym_unquoted_token2] = ACTIONS(4769), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [1430] = { - [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym__newline] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_err_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_GT_PIPE] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [anon_sym_null] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1783), - [anon_sym_false] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1781), - [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_0b] = ACTIONS(1781), - [sym_filesize_unit] = ACTIONS(1783), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1781), - [anon_sym_0x] = ACTIONS(1781), - [sym_val_date] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1783), - [anon_sym_out_GT_GT] = ACTIONS(1783), - [anon_sym_e_GT_GT] = ACTIONS(1783), - [anon_sym_o_GT_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), - [aux_sym_unquoted_token1] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1783), - }, - [1431] = { - [sym_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(1803), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(4771), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [1432] = { - [sym_comment] = STATE(1432), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(4773), - [aux_sym__immediate_decimal_token2] = ACTIONS(4775), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [1433] = { - [sym_comment] = STATE(1433), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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_0b] = ACTIONS(1008), - [anon_sym_0o] = ACTIONS(1008), - [anon_sym_0x] = ACTIONS(1008), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [1434] = { - [sym_comment] = STATE(1434), [sym__newline] = ACTIONS(1006), [anon_sym_SEMI] = ACTIONS(1006), [anon_sym_PIPE] = ACTIONS(1006), @@ -219272,8 +220898,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1006), }, - [1435] = { - [sym_comment] = STATE(1435), + [1420] = { + [sym_comment] = STATE(1420), [sym__newline] = ACTIONS(998), [anon_sym_SEMI] = ACTIONS(998), [anon_sym_PIPE] = ACTIONS(998), @@ -219343,505 +220969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(998), }, - [1436] = { - [sym_comment] = STATE(1436), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [1437] = { - [sym_comment] = STATE(1437), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1438] = { - [sym_comment] = STATE(1438), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_err_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_GT_PIPE] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2290), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2290), - [anon_sym_xor2] = ACTIONS(2290), - [anon_sym_or2] = ACTIONS(2290), - [anon_sym_not_DASHin2] = ACTIONS(2290), - [anon_sym_starts_DASHwith2] = ACTIONS(2290), - [anon_sym_ends_DASHwith2] = ACTIONS(2290), - [anon_sym_EQ_EQ2] = ACTIONS(2290), - [anon_sym_BANG_EQ2] = ACTIONS(2290), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2290), - [anon_sym_GT_EQ2] = ACTIONS(2290), - [anon_sym_EQ_TILDE2] = ACTIONS(2290), - [anon_sym_BANG_TILDE2] = ACTIONS(2290), - [anon_sym_STAR_STAR2] = ACTIONS(2290), - [anon_sym_PLUS_PLUS2] = ACTIONS(2290), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2290), - [anon_sym_SLASH_SLASH2] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2290), - [anon_sym_bit_DASHshr2] = ACTIONS(2290), - [anon_sym_bit_DASHand2] = ACTIONS(2290), - [anon_sym_bit_DASHxor2] = ACTIONS(2290), - [anon_sym_bit_DASHor2] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), - }, - [1439] = { - [sym_comment] = STATE(1439), - [anon_sym_STAR_STAR] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_mod] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_bit_DASHshl] = ACTIONS(3207), - [anon_sym_bit_DASHshr] = ACTIONS(3207), - [anon_sym_EQ_TILDE] = ACTIONS(3207), - [anon_sym_BANG_TILDE] = ACTIONS(3207), - [anon_sym_bit_DASHand] = ACTIONS(3207), - [anon_sym_bit_DASHxor] = ACTIONS(3207), - [anon_sym_bit_DASHor] = ACTIONS(3207), - [anon_sym_and] = ACTIONS(3207), - [anon_sym_xor] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_not_DASHin] = ACTIONS(3207), - [anon_sym_starts_DASHwith] = ACTIONS(3207), - [anon_sym_ends_DASHwith] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3207), - [aux_sym_cmd_identifier_token41] = ACTIONS(3211), - [sym__newline] = ACTIONS(2298), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_err_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_GT_PIPE] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2298), - [anon_sym_GT2] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_in2] = ACTIONS(2298), - [anon_sym_STAR2] = ACTIONS(2298), - [anon_sym_and2] = ACTIONS(2298), - [anon_sym_xor2] = ACTIONS(2298), - [anon_sym_or2] = ACTIONS(2298), - [anon_sym_not_DASHin2] = ACTIONS(2298), - [anon_sym_starts_DASHwith2] = ACTIONS(2298), - [anon_sym_ends_DASHwith2] = ACTIONS(2298), - [anon_sym_EQ_EQ2] = ACTIONS(2298), - [anon_sym_BANG_EQ2] = ACTIONS(2298), - [anon_sym_LT2] = ACTIONS(2298), - [anon_sym_LT_EQ2] = ACTIONS(2298), - [anon_sym_GT_EQ2] = ACTIONS(2298), - [anon_sym_EQ_TILDE2] = ACTIONS(2298), - [anon_sym_BANG_TILDE2] = ACTIONS(2298), - [anon_sym_STAR_STAR2] = ACTIONS(2298), - [anon_sym_PLUS_PLUS2] = ACTIONS(2298), - [anon_sym_SLASH2] = ACTIONS(2298), - [anon_sym_mod2] = ACTIONS(2298), - [anon_sym_SLASH_SLASH2] = ACTIONS(2298), - [anon_sym_PLUS2] = ACTIONS(2298), - [anon_sym_bit_DASHshl2] = ACTIONS(2298), - [anon_sym_bit_DASHshr2] = ACTIONS(2298), - [anon_sym_bit_DASHand2] = ACTIONS(2298), - [anon_sym_bit_DASHxor2] = ACTIONS(2298), - [anon_sym_bit_DASHor2] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - }, - [1440] = { - [sym_comment] = STATE(1440), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_GT2] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_STAR2] = ACTIONS(1022), - [anon_sym_and2] = ACTIONS(1024), - [anon_sym_xor2] = ACTIONS(1024), - [anon_sym_or2] = ACTIONS(1024), - [anon_sym_not_DASHin2] = ACTIONS(1024), - [anon_sym_starts_DASHwith2] = ACTIONS(1024), - [anon_sym_ends_DASHwith2] = ACTIONS(1024), - [anon_sym_EQ_EQ2] = ACTIONS(1024), - [anon_sym_BANG_EQ2] = ACTIONS(1024), - [anon_sym_LT2] = ACTIONS(1022), - [anon_sym_LT_EQ2] = ACTIONS(1024), - [anon_sym_GT_EQ2] = ACTIONS(1024), - [anon_sym_EQ_TILDE2] = ACTIONS(1024), - [anon_sym_BANG_TILDE2] = ACTIONS(1024), - [anon_sym_STAR_STAR2] = ACTIONS(1024), - [anon_sym_PLUS_PLUS2] = ACTIONS(1022), - [anon_sym_SLASH2] = ACTIONS(1022), - [anon_sym_mod2] = ACTIONS(1024), - [anon_sym_SLASH_SLASH2] = ACTIONS(1024), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_bit_DASHshl2] = ACTIONS(1024), - [anon_sym_bit_DASHshr2] = ACTIONS(1024), - [anon_sym_bit_DASHand2] = ACTIONS(1024), - [anon_sym_bit_DASHxor2] = ACTIONS(1024), - [anon_sym_bit_DASHor2] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), - }, - [1441] = { - [sym_comment] = STATE(1441), - [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] = 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(251), - }, - [1442] = { - [sym_comment] = STATE(1442), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1639), - [anon_sym_in2] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(4781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4783), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - }, - [1443] = { - [sym_comment] = STATE(1443), + [1421] = { + [sym_comment] = STATE(1421), [ts_builtin_sym_end] = ACTIONS(1006), [anon_sym_EQ] = ACTIONS(1004), [anon_sym_PLUS_EQ] = ACTIONS(1006), @@ -219911,651 +221040,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(251), }, - [1444] = { - [sym_comment] = STATE(1444), - [sym__newline] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_err_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_GT_PIPE] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_DOT_DOT2] = ACTIONS(4785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT] = ACTIONS(1843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4787), - [anon_sym_null] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1851), - [anon_sym_out_GT_GT] = ACTIONS(1851), - [anon_sym_e_GT_GT] = ACTIONS(1851), - [anon_sym_o_GT_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), - [aux_sym_unquoted_token1] = ACTIONS(1843), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1851), - }, - [1445] = { - [sym_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1014), - [anon_sym_DASH_EQ] = ACTIONS(1014), - [anon_sym_STAR_EQ] = ACTIONS(1014), - [anon_sym_SLASH_EQ] = ACTIONS(1014), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1014), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_GT2] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_STAR2] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(4789), - [anon_sym_and2] = ACTIONS(1014), - [anon_sym_xor2] = ACTIONS(1014), - [anon_sym_or2] = ACTIONS(1014), - [anon_sym_not_DASHin2] = ACTIONS(1014), - [anon_sym_starts_DASHwith2] = ACTIONS(1014), - [anon_sym_ends_DASHwith2] = ACTIONS(1014), - [anon_sym_EQ_EQ2] = ACTIONS(1014), - [anon_sym_BANG_EQ2] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1012), - [anon_sym_LT_EQ2] = ACTIONS(1014), - [anon_sym_GT_EQ2] = ACTIONS(1014), - [anon_sym_EQ_TILDE2] = ACTIONS(1014), - [anon_sym_BANG_TILDE2] = ACTIONS(1014), - [anon_sym_STAR_STAR2] = ACTIONS(1014), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1014), - [anon_sym_SLASH_SLASH2] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_bit_DASHshl2] = ACTIONS(1014), - [anon_sym_bit_DASHshr2] = ACTIONS(1014), - [anon_sym_bit_DASHand2] = ACTIONS(1014), - [anon_sym_bit_DASHxor2] = ACTIONS(1014), - [anon_sym_bit_DASHor2] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(251), - }, - [1446] = { - [sym_comment] = STATE(1446), - [anon_sym_EQ] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1028), - [anon_sym_DASH_EQ] = ACTIONS(1028), - [anon_sym_STAR_EQ] = ACTIONS(1028), - [anon_sym_SLASH_EQ] = ACTIONS(1028), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1028), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [1422] = { + [sym_comment] = STATE(1422), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(4786), + [aux_sym__immediate_decimal_token2] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [1447] = { - [sym_comment] = STATE(1447), - [sym__newline] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_err_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_GT_PIPE] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_DOT_DOT2] = ACTIONS(4791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT] = ACTIONS(1828), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4793), - [anon_sym_null] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1836), - [aux_sym__val_number_decimal_token3] = ACTIONS(1836), - [aux_sym__val_number_decimal_token4] = ACTIONS(1836), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1836), - [aux_sym__val_number_token5] = ACTIONS(1836), - [aux_sym__val_number_token6] = ACTIONS(1836), - [anon_sym_0b] = ACTIONS(1828), - [anon_sym_0o] = ACTIONS(1828), - [anon_sym_0x] = ACTIONS(1828), - [sym_val_date] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__str_single_quotes] = ACTIONS(1836), - [sym__str_back_ticks] = ACTIONS(1836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1836), - [anon_sym_err_GT] = ACTIONS(1828), - [anon_sym_out_GT] = ACTIONS(1828), - [anon_sym_e_GT] = ACTIONS(1828), - [anon_sym_o_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT] = ACTIONS(1828), - [anon_sym_err_GT_GT] = ACTIONS(1836), - [anon_sym_out_GT_GT] = ACTIONS(1836), - [anon_sym_e_GT_GT] = ACTIONS(1836), - [anon_sym_o_GT_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1836), - [aux_sym_unquoted_token1] = ACTIONS(1828), - [aux_sym_unquoted_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1836), - }, - [1448] = { - [sym_comment] = STATE(1448), - [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] = 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), + [1423] = { + [sym_comment] = STATE(1423), + [ts_builtin_sym_end] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_GT2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(996), + [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), + [anon_sym_DOT_DOT_LT2] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(996), + [anon_sym_out_GT] = ACTIONS(996), + [anon_sym_e_GT] = ACTIONS(996), + [anon_sym_o_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(251), }, - [1449] = { - [sym_cell_path] = STATE(1776), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1449), - [aux_sym_cell_path_repeat1] = STATE(1550), - [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_DASH2] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), - [anon_sym_DOT_DOT_LT] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1895), - }, - [1450] = { - [sym_comment] = STATE(1450), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4779), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1451] = { - [sym_comment] = STATE(1451), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(4797), - [aux_sym__immediate_decimal_token2] = ACTIONS(4799), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [1452] = { - [sym_comment] = STATE(1452), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(4801), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [1424] = { + [sym_comment] = STATE(1424), + [ts_builtin_sym_end] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(986), + [anon_sym_PLUS_EQ] = ACTIONS(988), + [anon_sym_DASH_EQ] = ACTIONS(988), + [anon_sym_STAR_EQ] = ACTIONS(988), + [anon_sym_SLASH_EQ] = ACTIONS(988), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_GT2] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_and2] = ACTIONS(988), + [anon_sym_xor2] = ACTIONS(988), + [anon_sym_or2] = ACTIONS(988), + [anon_sym_not_DASHin2] = ACTIONS(988), + [anon_sym_starts_DASHwith2] = ACTIONS(988), + [anon_sym_ends_DASHwith2] = ACTIONS(988), + [anon_sym_EQ_EQ2] = ACTIONS(988), + [anon_sym_BANG_EQ2] = ACTIONS(988), + [anon_sym_LT2] = ACTIONS(986), + [anon_sym_LT_EQ2] = ACTIONS(988), + [anon_sym_GT_EQ2] = ACTIONS(988), + [anon_sym_EQ_TILDE2] = ACTIONS(988), + [anon_sym_BANG_TILDE2] = ACTIONS(988), + [anon_sym_STAR_STAR2] = ACTIONS(988), + [anon_sym_PLUS_PLUS2] = ACTIONS(986), + [anon_sym_SLASH2] = ACTIONS(986), + [anon_sym_mod2] = ACTIONS(988), + [anon_sym_SLASH_SLASH2] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_bit_DASHshl2] = ACTIONS(988), + [anon_sym_bit_DASHshr2] = ACTIONS(988), + [anon_sym_bit_DASHand2] = ACTIONS(988), + [anon_sym_bit_DASHxor2] = ACTIONS(988), + [anon_sym_bit_DASHor2] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), }, - [1453] = { - [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(1024), + [1425] = { + [sym_comment] = STATE(1425), [anon_sym_EQ] = ACTIONS(1022), [anon_sym_PLUS_EQ] = ACTIONS(1024), [anon_sym_DASH_EQ] = ACTIONS(1024), [anon_sym_STAR_EQ] = ACTIONS(1024), [anon_sym_SLASH_EQ] = ACTIONS(1024), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), + [sym__newline] = ACTIONS(1022), [anon_sym_SEMI] = ACTIONS(1024), [anon_sym_PIPE] = ACTIONS(1024), [anon_sym_err_GT_PIPE] = ACTIONS(1024), @@ -220569,6 +221275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(1022), [anon_sym_in2] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), [anon_sym_STAR2] = ACTIONS(1022), [anon_sym_and2] = ACTIONS(1024), [anon_sym_xor2] = ACTIONS(1024), @@ -220598,6 +221305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1022), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [aux_sym_record_entry_token1] = ACTIONS(1024), [anon_sym_err_GT] = ACTIONS(1022), [anon_sym_out_GT] = ACTIONS(1022), [anon_sym_e_GT] = ACTIONS(1022), @@ -220616,149 +221324,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(251), }, - [1454] = { - [sym_comment] = STATE(1454), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1455] = { - [sym_comment] = STATE(1455), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), - [anon_sym_DOT_DOT_LT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1024), - [aux_sym__val_number_token5] = ACTIONS(1024), - [aux_sym__val_number_token6] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), + [1426] = { + [sym_comment] = STATE(1426), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), + [sym_raw_string_begin] = ACTIONS(988), }, - [1456] = { - [sym_comment] = STATE(1456), - [sym__newline] = ACTIONS(1020), + [1427] = { + [sym_comment] = STATE(1427), + [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), @@ -220769,43 +221414,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_in2] = ACTIONS(1020), [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_DOT_DOT] = 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(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] = 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), + [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), @@ -220822,61 +221464,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(251), - [sym_raw_string_begin] = ACTIONS(1020), }, - [1457] = { - [sym_comment] = STATE(1457), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), + [1428] = { + [sym_comment] = STATE(1428), + [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(251), + }, + [1429] = { + [sym_comment] = STATE(1429), + [ts_builtin_sym_end] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(4790), + [anon_sym_and2] = ACTIONS(1010), + [anon_sym_xor2] = ACTIONS(1010), + [anon_sym_or2] = ACTIONS(1010), + [anon_sym_not_DASHin2] = ACTIONS(1010), + [anon_sym_starts_DASHwith2] = ACTIONS(1010), + [anon_sym_ends_DASHwith2] = ACTIONS(1010), + [anon_sym_EQ_EQ2] = ACTIONS(1010), + [anon_sym_BANG_EQ2] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1010), + [anon_sym_GT_EQ2] = ACTIONS(1010), + [anon_sym_EQ_TILDE2] = ACTIONS(1010), + [anon_sym_BANG_TILDE2] = ACTIONS(1010), + [anon_sym_STAR_STAR2] = ACTIONS(1010), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1010), + [anon_sym_SLASH_SLASH2] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1010), + [anon_sym_bit_DASHshr2] = ACTIONS(1010), + [anon_sym_bit_DASHand2] = ACTIONS(1010), + [anon_sym_bit_DASHxor2] = ACTIONS(1010), + [anon_sym_bit_DASHor2] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(251), + }, + [1430] = { + [sym_comment] = STATE(1430), + [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(4792), + [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(251), + }, + [1431] = { + [sym_comment] = STATE(1431), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1661), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1661), + [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_0b] = ACTIONS(1661), + [sym_filesize_unit] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1661), + [anon_sym_0x] = ACTIONS(1661), + [sym_val_date] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token1] = ACTIONS(1661), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1663), + }, + [1432] = { + [sym__expr_parenthesized_immediate] = STATE(2133), + [sym__immediate_decimal] = STATE(2183), + [sym_val_variable] = STATE(2133), + [sym_comment] = STATE(1432), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(4776), [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_in2] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_in2] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1647), - [anon_sym_xor2] = ACTIONS(1647), - [anon_sym_or2] = ACTIONS(1647), - [anon_sym_not_DASHin2] = ACTIONS(1647), - [anon_sym_starts_DASHwith2] = ACTIONS(1647), - [anon_sym_ends_DASHwith2] = ACTIONS(1647), - [anon_sym_EQ_EQ2] = ACTIONS(1647), - [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_and2] = ACTIONS(1657), + [anon_sym_xor2] = ACTIONS(1657), + [anon_sym_or2] = ACTIONS(1657), + [anon_sym_not_DASHin2] = ACTIONS(1657), + [anon_sym_starts_DASHwith2] = ACTIONS(1657), + [anon_sym_ends_DASHwith2] = ACTIONS(1657), + [anon_sym_EQ_EQ2] = ACTIONS(1657), + [anon_sym_BANG_EQ2] = ACTIONS(1657), [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1647), - [anon_sym_GT_EQ2] = ACTIONS(1647), - [anon_sym_EQ_TILDE2] = ACTIONS(1647), - [anon_sym_BANG_TILDE2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_STAR_STAR2] = ACTIONS(1647), - [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_LT_EQ2] = ACTIONS(1657), + [anon_sym_GT_EQ2] = ACTIONS(1657), + [anon_sym_EQ_TILDE2] = ACTIONS(1657), + [anon_sym_BANG_TILDE2] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1657), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1647), - [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_mod2] = ACTIONS(1657), + [anon_sym_SLASH_SLASH2] = ACTIONS(1657), [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1647), - [anon_sym_bit_DASHshr2] = ACTIONS(1647), - [anon_sym_bit_DASHand2] = ACTIONS(1647), - [anon_sym_bit_DASHxor2] = ACTIONS(1647), - [anon_sym_bit_DASHor2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4763), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), + [anon_sym_bit_DASHshl2] = ACTIONS(1657), + [anon_sym_bit_DASHshr2] = ACTIONS(1657), + [anon_sym_bit_DASHand2] = ACTIONS(1657), + [anon_sym_bit_DASHxor2] = ACTIONS(1657), + [anon_sym_bit_DASHor2] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(4780), + [aux_sym__immediate_decimal_token3] = ACTIONS(4780), + [aux_sym__immediate_decimal_token4] = ACTIONS(4782), + [aux_sym__immediate_decimal_token5] = ACTIONS(4784), [anon_sym_err_GT] = ACTIONS(1645), [anon_sym_out_GT] = ACTIONS(1645), [anon_sym_e_GT] = ACTIONS(1645), @@ -220885,300 +221810,1368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), [anon_sym_o_PLUSe_GT] = ACTIONS(1645), [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [aux_sym_unquoted_token2] = ACTIONS(1659), [anon_sym_POUND] = ACTIONS(251), }, - [1458] = { - [sym_comment] = STATE(1458), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [sym__newline] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_GT2] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_STAR2] = ACTIONS(1056), - [anon_sym_and2] = ACTIONS(1058), - [anon_sym_xor2] = ACTIONS(1058), - [anon_sym_or2] = ACTIONS(1058), - [anon_sym_not_DASHin2] = ACTIONS(1058), - [anon_sym_starts_DASHwith2] = ACTIONS(1058), - [anon_sym_ends_DASHwith2] = ACTIONS(1058), - [anon_sym_EQ_EQ2] = ACTIONS(1058), - [anon_sym_BANG_EQ2] = ACTIONS(1058), - [anon_sym_LT2] = ACTIONS(1056), - [anon_sym_LT_EQ2] = ACTIONS(1058), - [anon_sym_GT_EQ2] = ACTIONS(1058), - [anon_sym_EQ_TILDE2] = ACTIONS(1058), - [anon_sym_BANG_TILDE2] = ACTIONS(1058), - [anon_sym_STAR_STAR2] = ACTIONS(1058), - [anon_sym_PLUS_PLUS2] = ACTIONS(1056), - [anon_sym_SLASH2] = ACTIONS(1056), - [anon_sym_mod2] = ACTIONS(1058), - [anon_sym_SLASH_SLASH2] = ACTIONS(1058), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_bit_DASHshl2] = ACTIONS(1058), - [anon_sym_bit_DASHshr2] = ACTIONS(1058), - [anon_sym_bit_DASHand2] = ACTIONS(1058), - [anon_sym_bit_DASHxor2] = ACTIONS(1058), - [anon_sym_bit_DASHor2] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [aux_sym_record_entry_token1] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [1433] = { + [sym_comment] = STATE(1433), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4758), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, - [1459] = { - [sym_comment] = STATE(1459), - [ts_builtin_sym_end] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1028), - [anon_sym_DASH_EQ] = ACTIONS(1028), - [anon_sym_STAR_EQ] = ACTIONS(1028), - [anon_sym_SLASH_EQ] = ACTIONS(1028), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1028), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1026), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [1434] = { + [sym_path] = STATE(1533), + [sym_comment] = STATE(1434), + [aux_sym_cell_path_repeat1] = STATE(1435), + [ts_builtin_sym_end] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), + }, + [1435] = { + [sym_path] = STATE(1533), + [sym_comment] = STATE(1435), + [aux_sym_cell_path_repeat1] = STATE(1435), + [ts_builtin_sym_end] = ACTIONS(977), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_DOT_DOT_LT] = ACTIONS(975), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_null] = ACTIONS(977), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(977), + [aux_sym__val_number_token5] = ACTIONS(977), + [aux_sym__val_number_token6] = ACTIONS(977), + [anon_sym_0b] = ACTIONS(975), + [anon_sym_0o] = ACTIONS(975), + [anon_sym_0x] = ACTIONS(975), + [sym_val_date] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [aux_sym_unquoted_token1] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(977), + }, + [1436] = { + [sym_comment] = STATE(1436), + [ts_builtin_sym_end] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(4720), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT] = ACTIONS(1687), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4722), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4722), + [anon_sym_null] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1699), + [aux_sym__val_number_token5] = ACTIONS(1699), + [aux_sym__val_number_token6] = ACTIONS(1699), + [anon_sym_0b] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(4797), + [sym_duration_unit] = ACTIONS(4799), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [sym_val_date] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token1] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(4801), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [1437] = { + [sym_comment] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(4803), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1438] = { + [sym__expr_parenthesized_immediate] = STATE(2090), + [sym__immediate_decimal] = STATE(2093), + [sym_val_variable] = STATE(2090), + [sym_comment] = STATE(1438), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(4776), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1643), + [anon_sym_xor2] = ACTIONS(1643), + [anon_sym_or2] = ACTIONS(1643), + [anon_sym_not_DASHin2] = ACTIONS(1643), + [anon_sym_starts_DASHwith2] = ACTIONS(1643), + [anon_sym_ends_DASHwith2] = ACTIONS(1643), + [anon_sym_EQ_EQ2] = ACTIONS(1643), + [anon_sym_BANG_EQ2] = ACTIONS(1643), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1643), + [anon_sym_GT_EQ2] = ACTIONS(1643), + [anon_sym_EQ_TILDE2] = ACTIONS(1643), + [anon_sym_BANG_TILDE2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1643), + [anon_sym_PLUS_PLUS2] = ACTIONS(1643), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1643), + [anon_sym_SLASH_SLASH2] = ACTIONS(1643), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1643), + [anon_sym_bit_DASHshr2] = ACTIONS(1643), + [anon_sym_bit_DASHand2] = ACTIONS(1643), + [anon_sym_bit_DASHxor2] = ACTIONS(1643), + [anon_sym_bit_DASHor2] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(4778), + [aux_sym__immediate_decimal_token3] = ACTIONS(4778), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(251), }, - [1460] = { - [sym_comment] = STATE(1460), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [1439] = { + [sym_comment] = STATE(1439), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(4805), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4807), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, - [1461] = { - [sym_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(1851), - [sym__newline] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_err_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_GT_PIPE] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_DOT_DOT2] = ACTIONS(4803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT] = ACTIONS(1843), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4805), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4805), - [anon_sym_null] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1851), - [anon_sym_out_GT_GT] = ACTIONS(1851), - [anon_sym_e_GT_GT] = ACTIONS(1851), - [anon_sym_o_GT_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), - [aux_sym_unquoted_token1] = ACTIONS(1843), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1851), + [1440] = { + [sym__expr_parenthesized_immediate] = STATE(2123), + [sym__immediate_decimal] = STATE(2264), + [sym_val_variable] = STATE(2123), + [sym_comment] = STATE(1440), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4776), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(4778), + [aux_sym__immediate_decimal_token3] = ACTIONS(4778), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(251), }, - [1462] = { - [sym_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(1010), + [1441] = { + [sym__expr_parenthesized_immediate] = STATE(2080), + [sym__immediate_decimal] = STATE(2091), + [sym_val_variable] = STATE(2080), + [sym_comment] = STATE(1441), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(4776), + [anon_sym_GT2] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1677), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1677), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1677), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1677), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(4778), + [aux_sym__immediate_decimal_token3] = ACTIONS(4778), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + }, + [1442] = { + [sym__expr_parenthesized_immediate] = STATE(2138), + [sym__immediate_decimal] = STATE(2140), + [sym_val_variable] = STATE(2138), + [sym_comment] = STATE(1442), + [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_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(4776), + [anon_sym_GT2] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1741), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_STAR2] = ACTIONS(1739), + [anon_sym_and2] = ACTIONS(1741), + [anon_sym_xor2] = ACTIONS(1741), + [anon_sym_or2] = ACTIONS(1741), + [anon_sym_not_DASHin2] = ACTIONS(1741), + [anon_sym_starts_DASHwith2] = ACTIONS(1741), + [anon_sym_ends_DASHwith2] = ACTIONS(1741), + [anon_sym_EQ_EQ2] = ACTIONS(1741), + [anon_sym_BANG_EQ2] = ACTIONS(1741), + [anon_sym_LT2] = ACTIONS(1739), + [anon_sym_LT_EQ2] = ACTIONS(1741), + [anon_sym_GT_EQ2] = ACTIONS(1741), + [anon_sym_EQ_TILDE2] = ACTIONS(1741), + [anon_sym_BANG_TILDE2] = ACTIONS(1741), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1741), + [anon_sym_PLUS_PLUS2] = ACTIONS(1741), + [anon_sym_SLASH2] = ACTIONS(1739), + [anon_sym_mod2] = ACTIONS(1741), + [anon_sym_SLASH_SLASH2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_bit_DASHshl2] = ACTIONS(1741), + [anon_sym_bit_DASHshr2] = ACTIONS(1741), + [anon_sym_bit_DASHand2] = ACTIONS(1741), + [anon_sym_bit_DASHxor2] = ACTIONS(1741), + [anon_sym_bit_DASHor2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4778), + [aux_sym__immediate_decimal_token3] = ACTIONS(4778), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [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), + [anon_sym_POUND] = ACTIONS(251), + }, + [1443] = { + [sym_comment] = STATE(1443), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_err_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_GT_PIPE] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), + [anon_sym_GT2] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_STAR2] = ACTIONS(2272), + [anon_sym_and2] = ACTIONS(2272), + [anon_sym_xor2] = ACTIONS(2272), + [anon_sym_or2] = ACTIONS(2272), + [anon_sym_not_DASHin2] = ACTIONS(2272), + [anon_sym_starts_DASHwith2] = ACTIONS(2272), + [anon_sym_ends_DASHwith2] = ACTIONS(2272), + [anon_sym_EQ_EQ2] = ACTIONS(2272), + [anon_sym_BANG_EQ2] = ACTIONS(2272), + [anon_sym_LT2] = ACTIONS(2272), + [anon_sym_LT_EQ2] = ACTIONS(2272), + [anon_sym_GT_EQ2] = ACTIONS(2272), + [anon_sym_EQ_TILDE2] = ACTIONS(2272), + [anon_sym_BANG_TILDE2] = ACTIONS(2272), + [anon_sym_STAR_STAR2] = ACTIONS(2272), + [anon_sym_PLUS_PLUS2] = ACTIONS(2272), + [anon_sym_SLASH2] = ACTIONS(2272), + [anon_sym_mod2] = ACTIONS(2272), + [anon_sym_SLASH_SLASH2] = ACTIONS(2272), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_bit_DASHshl2] = ACTIONS(2272), + [anon_sym_bit_DASHshr2] = ACTIONS(2272), + [anon_sym_bit_DASHand2] = ACTIONS(2272), + [anon_sym_bit_DASHxor2] = ACTIONS(2272), + [anon_sym_bit_DASHor2] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(3), + }, + [1444] = { + [sym_comment] = STATE(1444), + [anon_sym_STAR_STAR] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_bit_DASHshl] = ACTIONS(3197), + [anon_sym_bit_DASHshr] = ACTIONS(3197), + [anon_sym_EQ_TILDE] = ACTIONS(3197), + [anon_sym_BANG_TILDE] = ACTIONS(3197), + [anon_sym_bit_DASHand] = ACTIONS(3197), + [anon_sym_bit_DASHxor] = ACTIONS(3197), + [anon_sym_bit_DASHor] = ACTIONS(3197), + [anon_sym_and] = ACTIONS(3197), + [anon_sym_xor] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_not_DASHin] = ACTIONS(3197), + [anon_sym_starts_DASHwith] = ACTIONS(3197), + [anon_sym_ends_DASHwith] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3197), + [aux_sym_cmd_identifier_token41] = ACTIONS(3201), + [sym__newline] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2234), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2234), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2234), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2234), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), + }, + [1445] = { + [sym_comment] = STATE(1445), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_DOT_DOT2] = ACTIONS(4809), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), + [anon_sym_DOT_DOT_LT] = ACTIONS(1830), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4811), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4811), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [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(1830), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0x] = ACTIONS(1830), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_err_GT] = ACTIONS(1830), + [anon_sym_out_GT] = ACTIONS(1830), + [anon_sym_e_GT] = ACTIONS(1830), + [anon_sym_o_GT] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT] = ACTIONS(1830), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1838), + }, + [1446] = { + [sym__expr_parenthesized_immediate] = STATE(2097), + [sym__immediate_decimal] = STATE(2158), + [sym_val_variable] = STATE(2097), + [sym_comment] = STATE(1446), + [sym__newline] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_err_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_GT_PIPE] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), + [anon_sym_RPAREN] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(4776), + [anon_sym_GT2] = ACTIONS(1743), + [anon_sym_DASH2] = ACTIONS(1743), + [anon_sym_in2] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_RBRACE] = ACTIONS(1745), + [anon_sym_STAR2] = ACTIONS(1743), + [anon_sym_and2] = ACTIONS(1745), + [anon_sym_xor2] = ACTIONS(1745), + [anon_sym_or2] = ACTIONS(1745), + [anon_sym_not_DASHin2] = ACTIONS(1745), + [anon_sym_starts_DASHwith2] = ACTIONS(1745), + [anon_sym_ends_DASHwith2] = ACTIONS(1745), + [anon_sym_EQ_EQ2] = ACTIONS(1745), + [anon_sym_BANG_EQ2] = ACTIONS(1745), + [anon_sym_LT2] = ACTIONS(1743), + [anon_sym_LT_EQ2] = ACTIONS(1745), + [anon_sym_GT_EQ2] = ACTIONS(1745), + [anon_sym_EQ_TILDE2] = ACTIONS(1745), + [anon_sym_BANG_TILDE2] = ACTIONS(1745), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_STAR_STAR2] = ACTIONS(1745), + [anon_sym_PLUS_PLUS2] = ACTIONS(1745), + [anon_sym_SLASH2] = ACTIONS(1743), + [anon_sym_mod2] = ACTIONS(1745), + [anon_sym_SLASH_SLASH2] = ACTIONS(1745), + [anon_sym_PLUS2] = ACTIONS(1743), + [anon_sym_bit_DASHshl2] = ACTIONS(1745), + [anon_sym_bit_DASHshr2] = ACTIONS(1745), + [anon_sym_bit_DASHand2] = ACTIONS(1745), + [anon_sym_bit_DASHxor2] = ACTIONS(1745), + [anon_sym_bit_DASHor2] = ACTIONS(1745), + [aux_sym__immediate_decimal_token1] = ACTIONS(4778), + [aux_sym__immediate_decimal_token3] = ACTIONS(4778), + [aux_sym__immediate_decimal_token4] = ACTIONS(4710), + [aux_sym__immediate_decimal_token5] = ACTIONS(4712), + [anon_sym_err_GT] = ACTIONS(1743), + [anon_sym_out_GT] = ACTIONS(1743), + [anon_sym_e_GT] = ACTIONS(1743), + [anon_sym_o_GT] = ACTIONS(1743), + [anon_sym_err_PLUSout_GT] = ACTIONS(1743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), + [anon_sym_o_PLUSe_GT] = ACTIONS(1743), + [anon_sym_e_PLUSo_GT] = ACTIONS(1743), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [anon_sym_POUND] = ACTIONS(251), + }, + [1447] = { + [sym_comment] = STATE(1447), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_DOT_DOT2] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1840), + [anon_sym_DOT_DOT_LT] = ACTIONS(1840), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4815), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4815), + [anon_sym_null] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1848), + [aux_sym__val_number_token5] = ACTIONS(1848), + [aux_sym__val_number_token6] = ACTIONS(1848), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1840), + [anon_sym_0x] = ACTIONS(1840), + [sym_val_date] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [aux_sym_unquoted_token1] = ACTIONS(1840), + [aux_sym_unquoted_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1848), + }, + [1448] = { + [sym_comment] = STATE(1448), + [sym__newline] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_err_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_GT_PIPE] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_in2] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1671), + [anon_sym_xor2] = ACTIONS(1671), + [anon_sym_or2] = ACTIONS(1671), + [anon_sym_not_DASHin2] = ACTIONS(1671), + [anon_sym_starts_DASHwith2] = ACTIONS(1671), + [anon_sym_ends_DASHwith2] = ACTIONS(1671), + [anon_sym_EQ_EQ2] = ACTIONS(1671), + [anon_sym_BANG_EQ2] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1671), + [anon_sym_GT_EQ2] = ACTIONS(1671), + [anon_sym_EQ_TILDE2] = ACTIONS(1671), + [anon_sym_BANG_TILDE2] = ACTIONS(1671), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_STAR_STAR2] = ACTIONS(1671), + [anon_sym_PLUS_PLUS2] = ACTIONS(1671), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1671), + [anon_sym_SLASH_SLASH2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1671), + [anon_sym_bit_DASHshr2] = ACTIONS(1671), + [anon_sym_bit_DASHand2] = ACTIONS(1671), + [anon_sym_bit_DASHxor2] = ACTIONS(1671), + [anon_sym_bit_DASHor2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4819), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + }, + [1449] = { + [sym_comment] = STATE(1449), + [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_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH2] = 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), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(1713), + [aux_sym__val_number_token5] = ACTIONS(1713), + [aux_sym__val_number_token6] = 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(251), + [sym_raw_string_begin] = ACTIONS(1713), + }, + [1450] = { + [sym_comment] = STATE(1450), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1451] = { + [sym_comment] = STATE(1451), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1452] = { + [sym_comment] = STATE(1452), [sym__newline] = ACTIONS(1010), [anon_sym_SEMI] = ACTIONS(1010), [anon_sym_PIPE] = ACTIONS(1010), @@ -221192,12 +223185,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_DOLLAR] = ACTIONS(1008), [anon_sym_DASH_DASH] = ACTIONS(1010), [anon_sym_DASH2] = ACTIONS(1008), [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), + [anon_sym_QMARK2] = ACTIONS(4821), [anon_sym_DOT_DOT2] = ACTIONS(1008), [anon_sym_DOT] = ACTIONS(1008), [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), @@ -221246,641 +223241,1627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1010), }, - [1463] = { - [sym_cell_path] = STATE(1747), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1463), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_err_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_GT_PIPE] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), - [anon_sym_DOT_DOT_LT] = ACTIONS(1887), - [anon_sym_null] = ACTIONS(1887), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [aux_sym__val_number_decimal_token1] = ACTIONS(1885), - [aux_sym__val_number_decimal_token2] = ACTIONS(1887), - [aux_sym__val_number_decimal_token3] = ACTIONS(1887), - [aux_sym__val_number_decimal_token4] = ACTIONS(1887), - [aux_sym__val_number_token1] = ACTIONS(1887), - [aux_sym__val_number_token2] = ACTIONS(1887), - [aux_sym__val_number_token3] = ACTIONS(1887), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_0b] = ACTIONS(1885), - [anon_sym_0o] = ACTIONS(1885), - [anon_sym_0x] = ACTIONS(1885), - [sym_val_date] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym__str_single_quotes] = ACTIONS(1887), - [sym__str_back_ticks] = ACTIONS(1887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), - [anon_sym_err_GT] = ACTIONS(1885), - [anon_sym_out_GT] = ACTIONS(1885), - [anon_sym_e_GT] = ACTIONS(1885), - [anon_sym_o_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT] = ACTIONS(1885), - [anon_sym_err_GT_GT] = ACTIONS(1887), - [anon_sym_out_GT_GT] = ACTIONS(1887), - [anon_sym_e_GT_GT] = ACTIONS(1887), - [anon_sym_o_GT_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), - [aux_sym_unquoted_token1] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1887), + [1453] = { + [sym_comment] = STATE(1453), + [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(4823), + [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(251), + [sym_raw_string_begin] = ACTIONS(992), }, - [1464] = { - [sym_comment] = STATE(1464), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(4807), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4809), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [1454] = { + [sym_comment] = STATE(1454), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1663), + [anon_sym_GT_EQ2] = ACTIONS(1663), + [anon_sym_EQ_TILDE2] = ACTIONS(1663), + [anon_sym_BANG_TILDE2] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(4825), + [aux_sym__immediate_decimal_token2] = ACTIONS(4827), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), }, - [1465] = { - [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(1006), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [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_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1004), + [1455] = { + [sym_comment] = STATE(1455), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1456] = { + [sym_comment] = STATE(1456), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), + [anon_sym_DOT_DOT_LT] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_0b] = ACTIONS(1818), + [anon_sym_0o] = ACTIONS(1818), + [anon_sym_0x] = ACTIONS(1818), + [sym_val_date] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [aux_sym_unquoted_token1] = ACTIONS(1818), + [aux_sym_unquoted_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [1457] = { + [sym_comment] = STATE(1457), + [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(1671), + [anon_sym_DOLLAR] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_DOT_DOT] = ACTIONS(1669), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), + [anon_sym_DOT_DOT_LT] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [aux_sym__val_number_decimal_token1] = ACTIONS(1669), + [aux_sym__val_number_decimal_token2] = ACTIONS(1671), + [aux_sym__val_number_decimal_token3] = ACTIONS(1671), + [aux_sym__val_number_decimal_token4] = ACTIONS(1671), + [aux_sym__val_number_token1] = ACTIONS(1671), + [aux_sym__val_number_token2] = ACTIONS(1671), + [aux_sym__val_number_token3] = ACTIONS(1671), + [aux_sym__val_number_token4] = ACTIONS(1671), + [aux_sym__val_number_token5] = ACTIONS(1671), + [aux_sym__val_number_token6] = ACTIONS(1671), + [anon_sym_0b] = ACTIONS(1669), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_0o] = ACTIONS(1669), + [anon_sym_0x] = ACTIONS(1669), + [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(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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(1669), + [aux_sym_unquoted_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1671), + }, + [1458] = { + [sym__expr_parenthesized_immediate] = STATE(2185), + [sym__immediate_decimal] = STATE(1929), + [sym_val_variable] = STATE(2185), + [sym_comment] = STATE(1458), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(4833), + [aux_sym__immediate_decimal_token1] = ACTIONS(4835), + [aux_sym__immediate_decimal_token3] = ACTIONS(4835), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), + }, + [1459] = { + [sym_comment] = STATE(1459), + [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(251), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [1460] = { + [sym_comment] = STATE(1460), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1461] = { + [sym_cell_path] = STATE(1822), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1461), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [1462] = { + [sym_comment] = STATE(1462), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(4843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1463] = { + [sym_comment] = STATE(1463), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4807), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1464] = { + [sym_comment] = STATE(1464), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(4847), + [aux_sym__immediate_decimal_token2] = ACTIONS(4849), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1465] = { + [sym_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(1010), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(4851), + [anon_sym_DOT_DOT2] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [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_0b] = ACTIONS(1008), + [anon_sym_0o] = ACTIONS(1008), + [anon_sym_0x] = ACTIONS(1008), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1010), }, [1466] = { [sym_comment] = STATE(1466), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_GT2] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_STAR2] = ACTIONS(1056), - [anon_sym_and2] = ACTIONS(1058), - [anon_sym_xor2] = ACTIONS(1058), - [anon_sym_or2] = ACTIONS(1058), - [anon_sym_not_DASHin2] = ACTIONS(1058), - [anon_sym_starts_DASHwith2] = ACTIONS(1058), - [anon_sym_ends_DASHwith2] = ACTIONS(1058), - [anon_sym_EQ_EQ2] = ACTIONS(1058), - [anon_sym_BANG_EQ2] = ACTIONS(1058), - [anon_sym_LT2] = ACTIONS(1056), - [anon_sym_LT_EQ2] = ACTIONS(1058), - [anon_sym_GT_EQ2] = ACTIONS(1058), - [anon_sym_EQ_TILDE2] = ACTIONS(1058), - [anon_sym_BANG_TILDE2] = ACTIONS(1058), - [anon_sym_STAR_STAR2] = ACTIONS(1058), - [anon_sym_PLUS_PLUS2] = ACTIONS(1056), - [anon_sym_SLASH2] = ACTIONS(1056), - [anon_sym_mod2] = ACTIONS(1058), - [anon_sym_SLASH_SLASH2] = ACTIONS(1058), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_bit_DASHshl2] = ACTIONS(1058), - [anon_sym_bit_DASHshr2] = ACTIONS(1058), - [anon_sym_bit_DASHand2] = ACTIONS(1058), - [anon_sym_bit_DASHxor2] = ACTIONS(1058), - [anon_sym_bit_DASHor2] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [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(4853), + [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(251), + [sym_raw_string_begin] = ACTIONS(992), }, [1467] = { - [sym_cell_path] = STATE(1751), - [sym_path] = STATE(1663), + [sym_cell_path] = STATE(1823), + [sym_path] = STATE(1676), [sym_comment] = STATE(1467), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_err_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_GT_PIPE] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1891), - [anon_sym_DOT_DOT_LT] = ACTIONS(1891), - [anon_sym_null] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1889), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_0b] = ACTIONS(1889), - [anon_sym_0o] = ACTIONS(1889), - [anon_sym_0x] = ACTIONS(1889), - [sym_val_date] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), - [anon_sym_err_GT] = ACTIONS(1889), - [anon_sym_out_GT] = ACTIONS(1889), - [anon_sym_e_GT] = ACTIONS(1889), - [anon_sym_o_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT] = ACTIONS(1889), - [anon_sym_err_GT_GT] = ACTIONS(1891), - [anon_sym_out_GT_GT] = ACTIONS(1891), - [anon_sym_e_GT_GT] = ACTIONS(1891), - [anon_sym_o_GT_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), - [aux_sym_unquoted_token1] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1891), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym_unquoted_token1] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1885), }, [1468] = { [sym_comment] = STATE(1468), - [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_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] = 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), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, [1469] = { + [sym_cell_path] = STATE(1824), + [sym_path] = STATE(1676), [sym_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [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_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_LT] = ACTIONS(1889), + [anon_sym_null] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_0b] = ACTIONS(1887), + [anon_sym_0o] = ACTIONS(1887), + [anon_sym_0x] = ACTIONS(1887), + [sym_val_date] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), + [aux_sym_unquoted_token1] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1889), }, [1470] = { - [sym_cell_path] = STATE(1753), - [sym_path] = STATE(1663), + [sym_cell_path] = STATE(1759), + [sym_path] = STATE(1676), [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1550), - [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_DASH2] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), - [anon_sym_DOT_DOT_LT] = ACTIONS(1903), - [anon_sym_null] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1903), - [aux_sym__val_number_token5] = ACTIONS(1903), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1903), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), + [anon_sym_DOT_DOT_LT] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1893), }, [1471] = { - [sym_cell_path] = STATE(1754), - [sym_path] = STATE(1663), [sym_comment] = STATE(1471), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), - [anon_sym_DOT_DOT_LT] = ACTIONS(1907), - [anon_sym_null] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_0b] = ACTIONS(1905), - [anon_sym_0o] = ACTIONS(1905), - [anon_sym_0x] = ACTIONS(1905), - [sym_val_date] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), - [anon_sym_err_GT] = ACTIONS(1905), - [anon_sym_out_GT] = ACTIONS(1905), - [anon_sym_e_GT] = ACTIONS(1905), - [anon_sym_o_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT] = ACTIONS(1905), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), - [aux_sym_unquoted_token1] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1907), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, [1472] = { - [sym_cell_path] = STATE(1755), - [sym_path] = STATE(1663), [sym_comment] = STATE(1472), - [aux_sym_cell_path_repeat1] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), + [anon_sym_DOT_DOT_LT] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_0b] = ACTIONS(1818), + [anon_sym_0o] = ACTIONS(1818), + [anon_sym_0x] = ACTIONS(1818), + [sym_val_date] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [aux_sym_unquoted_token1] = ACTIONS(1818), + [aux_sym_unquoted_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [1473] = { + [sym_cell_path] = STATE(1825), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1473), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [aux_sym__val_number_token4] = ACTIONS(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = ACTIONS(1897), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [1474] = { + [sym_cell_path] = STATE(1826), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1474), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_err_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_GT_PIPE] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), + [anon_sym_DOT_DOT_LT] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [aux_sym__val_number_decimal_token1] = ACTIONS(1903), + [aux_sym__val_number_decimal_token2] = ACTIONS(1905), + [aux_sym__val_number_decimal_token3] = ACTIONS(1905), + [aux_sym__val_number_decimal_token4] = ACTIONS(1905), + [aux_sym__val_number_token1] = ACTIONS(1905), + [aux_sym__val_number_token2] = ACTIONS(1905), + [aux_sym__val_number_token3] = ACTIONS(1905), + [aux_sym__val_number_token4] = ACTIONS(1905), + [aux_sym__val_number_token5] = ACTIONS(1905), + [aux_sym__val_number_token6] = ACTIONS(1905), + [anon_sym_0b] = ACTIONS(1903), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0x] = ACTIONS(1903), + [sym_val_date] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), + [anon_sym_err_GT] = ACTIONS(1903), + [anon_sym_out_GT] = ACTIONS(1903), + [anon_sym_e_GT] = ACTIONS(1903), + [anon_sym_o_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT] = ACTIONS(1903), + [anon_sym_err_GT_GT] = ACTIONS(1905), + [anon_sym_out_GT_GT] = ACTIONS(1905), + [anon_sym_e_GT_GT] = ACTIONS(1905), + [anon_sym_o_GT_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), + [aux_sym_unquoted_token1] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1905), + }, + [1475] = { + [sym_comment] = STATE(1475), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [sym__newline] = ACTIONS(1052), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_GT2] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_STAR2] = ACTIONS(1052), + [anon_sym_and2] = ACTIONS(1054), + [anon_sym_xor2] = ACTIONS(1054), + [anon_sym_or2] = ACTIONS(1054), + [anon_sym_not_DASHin2] = ACTIONS(1054), + [anon_sym_starts_DASHwith2] = ACTIONS(1054), + [anon_sym_ends_DASHwith2] = ACTIONS(1054), + [anon_sym_EQ_EQ2] = ACTIONS(1054), + [anon_sym_BANG_EQ2] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1052), + [anon_sym_LT_EQ2] = ACTIONS(1054), + [anon_sym_GT_EQ2] = ACTIONS(1054), + [anon_sym_EQ_TILDE2] = ACTIONS(1054), + [anon_sym_BANG_TILDE2] = ACTIONS(1054), + [anon_sym_STAR_STAR2] = ACTIONS(1054), + [anon_sym_PLUS_PLUS2] = ACTIONS(1052), + [anon_sym_SLASH2] = ACTIONS(1052), + [anon_sym_mod2] = ACTIONS(1054), + [anon_sym_SLASH_SLASH2] = ACTIONS(1054), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_bit_DASHshl2] = ACTIONS(1054), + [anon_sym_bit_DASHshr2] = ACTIONS(1054), + [anon_sym_bit_DASHand2] = ACTIONS(1054), + [anon_sym_bit_DASHxor2] = ACTIONS(1054), + [anon_sym_bit_DASHor2] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [aux_sym_record_entry_token1] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(251), + }, + [1476] = { + [sym_cell_path] = STATE(1827), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1476), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1911), [anon_sym_SEMI] = ACTIONS(1911), [anon_sym_PIPE] = ACTIONS(1911), @@ -221901,7 +224882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1911), [anon_sym_RBRACE] = ACTIONS(1911), [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), [anon_sym_DOT_DOT_LT] = ACTIONS(1911), [anon_sym_null] = ACTIONS(1911), @@ -221946,151 +224927,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1911), }, - [1473] = { - [sym_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(1014), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(4811), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_null] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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_0b] = ACTIONS(1012), - [anon_sym_0o] = ACTIONS(1012), - [anon_sym_0x] = ACTIONS(1012), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), - [aux_sym_unquoted_token1] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), + [1477] = { + [sym_cell_path] = STATE(1828), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1477), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_err_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_GT_PIPE] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_LT] = ACTIONS(1919), + [anon_sym_null] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(1919), + [anon_sym_false] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1917), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_0b] = ACTIONS(1917), + [anon_sym_0o] = ACTIONS(1917), + [anon_sym_0x] = ACTIONS(1917), + [sym_val_date] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), + [anon_sym_err_GT] = ACTIONS(1917), + [anon_sym_out_GT] = ACTIONS(1917), + [anon_sym_e_GT] = ACTIONS(1917), + [anon_sym_o_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT] = ACTIONS(1917), + [anon_sym_err_GT_GT] = ACTIONS(1919), + [anon_sym_out_GT_GT] = ACTIONS(1919), + [anon_sym_e_GT_GT] = ACTIONS(1919), + [anon_sym_o_GT_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), + [aux_sym_unquoted_token1] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1919), }, - [1474] = { - [sym_cell_path] = STATE(1758), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1474), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_err_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_GT_PIPE] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1923), - [anon_sym_DOT_DOT_LT] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1923), - [aux_sym__val_number_token5] = ACTIONS(1923), - [aux_sym__val_number_token6] = 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), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1923), - [anon_sym_out_GT_GT] = ACTIONS(1923), - [anon_sym_e_GT_GT] = ACTIONS(1923), - [anon_sym_o_GT_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1923), - [aux_sym_unquoted_token1] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1923), + [1478] = { + [sym_comment] = STATE(1478), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_GT2] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_STAR2] = ACTIONS(1052), + [anon_sym_and2] = ACTIONS(1054), + [anon_sym_xor2] = ACTIONS(1054), + [anon_sym_or2] = ACTIONS(1054), + [anon_sym_not_DASHin2] = ACTIONS(1054), + [anon_sym_starts_DASHwith2] = ACTIONS(1054), + [anon_sym_ends_DASHwith2] = ACTIONS(1054), + [anon_sym_EQ_EQ2] = ACTIONS(1054), + [anon_sym_BANG_EQ2] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1052), + [anon_sym_LT_EQ2] = ACTIONS(1054), + [anon_sym_GT_EQ2] = ACTIONS(1054), + [anon_sym_EQ_TILDE2] = ACTIONS(1054), + [anon_sym_BANG_TILDE2] = ACTIONS(1054), + [anon_sym_STAR_STAR2] = ACTIONS(1054), + [anon_sym_PLUS_PLUS2] = ACTIONS(1052), + [anon_sym_SLASH2] = ACTIONS(1052), + [anon_sym_mod2] = ACTIONS(1054), + [anon_sym_SLASH_SLASH2] = ACTIONS(1054), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_bit_DASHshl2] = ACTIONS(1054), + [anon_sym_bit_DASHshr2] = ACTIONS(1054), + [anon_sym_bit_DASHand2] = ACTIONS(1054), + [anon_sym_bit_DASHxor2] = ACTIONS(1054), + [anon_sym_bit_DASHor2] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(251), }, - [1475] = { - [sym_cell_path] = STATE(1759), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1475), - [aux_sym_cell_path_repeat1] = STATE(1550), + [1479] = { + [sym_cell_path] = STATE(1829), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1927), [anon_sym_SEMI] = ACTIONS(1927), [anon_sym_PIPE] = ACTIONS(1927), @@ -222111,7 +225092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1927), [anon_sym_RBRACE] = ACTIONS(1927), [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), [anon_sym_DOT_DOT_LT] = ACTIONS(1927), [anon_sym_null] = ACTIONS(1927), @@ -222156,11 +225137,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1927), }, - [1476] = { - [sym_cell_path] = STATE(1760), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1476), - [aux_sym_cell_path_repeat1] = STATE(1550), + [1480] = { + [sym_cell_path] = STATE(1830), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1480), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1931), [anon_sym_SEMI] = ACTIONS(1931), [anon_sym_PIPE] = ACTIONS(1931), @@ -222181,7 +225162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1931), [anon_sym_RBRACE] = ACTIONS(1931), [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), [anon_sym_DOT_DOT_LT] = ACTIONS(1931), [anon_sym_null] = ACTIONS(1931), @@ -222226,233 +225207,1213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1931), }, - [1477] = { - [sym_cell_path] = STATE(1761), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1477), - [aux_sym_cell_path_repeat1] = STATE(1550), - [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(4795), - [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(251), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [1478] = { - [sym_cell_path] = STATE(1762), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1478), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1939), - [aux_sym__val_number_token5] = ACTIONS(1939), - [aux_sym__val_number_token6] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), + [1481] = { + [sym_comment] = STATE(1481), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1034), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1036), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [aux_sym_record_entry_token1] = ACTIONS(4855), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), }, - [1479] = { - [sym_cell_path] = STATE(1763), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1479), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1943), - [aux_sym__val_number_token5] = ACTIONS(1943), - [aux_sym__val_number_token6] = ACTIONS(1943), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [aux_sym_unquoted_token1] = ACTIONS(1941), + [1482] = { + [sym_comment] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_GT2] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_in2] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1022), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1022), + [anon_sym_SLASH2] = ACTIONS(1022), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1022), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), }, - [1480] = { - [sym_cell_path] = STATE(1766), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1480), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), + [1483] = { + [sym_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(1002), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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_0b] = ACTIONS(1000), + [anon_sym_0o] = ACTIONS(1000), + [anon_sym_0x] = ACTIONS(1000), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1000), + [anon_sym_out_GT] = ACTIONS(1000), + [anon_sym_e_GT] = ACTIONS(1000), + [anon_sym_o_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT] = ACTIONS(1000), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1002), + }, + [1484] = { + [sym_comment] = STATE(1484), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(4857), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4859), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1485] = { + [sym_comment] = STATE(1485), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(4861), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1486] = { + [sym_comment] = STATE(1486), + [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_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] = 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(251), + }, + [1487] = { + [sym_cell_path] = STATE(1815), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1487), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_err_GT_PIPE] = ACTIONS(2055), + [anon_sym_out_GT_PIPE] = ACTIONS(2055), + [anon_sym_e_GT_PIPE] = ACTIONS(2055), + [anon_sym_o_GT_PIPE] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_DASH2] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [anon_sym_null] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2053), + [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), + [aux_sym__val_number_token4] = ACTIONS(2055), + [aux_sym__val_number_token5] = ACTIONS(2055), + [aux_sym__val_number_token6] = ACTIONS(2055), + [anon_sym_0b] = ACTIONS(2053), + [anon_sym_0o] = ACTIONS(2053), + [anon_sym_0x] = ACTIONS(2053), + [sym_val_date] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [sym__str_single_quotes] = ACTIONS(2055), + [sym__str_back_ticks] = ACTIONS(2055), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), + [anon_sym_err_GT] = ACTIONS(2053), + [anon_sym_out_GT] = ACTIONS(2053), + [anon_sym_e_GT] = ACTIONS(2053), + [anon_sym_o_GT] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT] = ACTIONS(2053), + [anon_sym_err_GT_GT] = ACTIONS(2055), + [anon_sym_out_GT_GT] = ACTIONS(2055), + [anon_sym_e_GT_GT] = ACTIONS(2055), + [anon_sym_o_GT_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2055), + [aux_sym_unquoted_token1] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2055), + }, + [1488] = { + [sym_comment] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_DOT_DOT2] = ACTIONS(4863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), + [anon_sym_DOT_DOT_LT] = ACTIONS(1830), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4865), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4865), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [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(1830), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0x] = ACTIONS(1830), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_err_GT] = ACTIONS(1830), + [anon_sym_out_GT] = ACTIONS(1830), + [anon_sym_e_GT] = ACTIONS(1830), + [anon_sym_o_GT] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT] = ACTIONS(1830), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1838), + }, + [1489] = { + [sym_cell_path] = STATE(1832), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1489), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_err_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_GT_PIPE] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_RPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1937), + [anon_sym_DASH_DASH] = ACTIONS(1939), + [anon_sym_DASH2] = ACTIONS(1937), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1937), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), + [anon_sym_DOT_DOT_LT] = ACTIONS(1939), + [anon_sym_null] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [aux_sym__val_number_token4] = ACTIONS(1939), + [aux_sym__val_number_token5] = ACTIONS(1939), + [aux_sym__val_number_token6] = ACTIONS(1939), + [anon_sym_0b] = ACTIONS(1937), + [anon_sym_0o] = ACTIONS(1937), + [anon_sym_0x] = ACTIONS(1937), + [sym_val_date] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), + [anon_sym_err_GT] = ACTIONS(1937), + [anon_sym_out_GT] = ACTIONS(1937), + [anon_sym_e_GT] = ACTIONS(1937), + [anon_sym_o_GT] = ACTIONS(1937), + [anon_sym_err_PLUSout_GT] = ACTIONS(1937), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), + [anon_sym_o_PLUSe_GT] = ACTIONS(1937), + [anon_sym_e_PLUSo_GT] = ACTIONS(1937), + [anon_sym_err_GT_GT] = ACTIONS(1939), + [anon_sym_out_GT_GT] = ACTIONS(1939), + [anon_sym_e_GT_GT] = ACTIONS(1939), + [anon_sym_o_GT_GT] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), + [aux_sym_unquoted_token1] = ACTIONS(1937), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1939), + }, + [1490] = { + [sym_comment] = STATE(1490), + [sym__newline] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_err_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_GT_PIPE] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_in2] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1671), + [anon_sym_xor2] = ACTIONS(1671), + [anon_sym_or2] = ACTIONS(1671), + [anon_sym_not_DASHin2] = ACTIONS(1671), + [anon_sym_starts_DASHwith2] = ACTIONS(1671), + [anon_sym_ends_DASHwith2] = ACTIONS(1671), + [anon_sym_EQ_EQ2] = ACTIONS(1671), + [anon_sym_BANG_EQ2] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1671), + [anon_sym_GT_EQ2] = ACTIONS(1671), + [anon_sym_EQ_TILDE2] = ACTIONS(1671), + [anon_sym_BANG_TILDE2] = ACTIONS(1671), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_STAR_STAR2] = ACTIONS(1671), + [anon_sym_PLUS_PLUS2] = ACTIONS(1671), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1671), + [anon_sym_SLASH_SLASH2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1671), + [anon_sym_bit_DASHshr2] = ACTIONS(1671), + [anon_sym_bit_DASHand2] = ACTIONS(1671), + [anon_sym_bit_DASHxor2] = ACTIONS(1671), + [anon_sym_bit_DASHor2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4819), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + }, + [1491] = { + [sym__expr_parenthesized_immediate] = STATE(2179), + [sym__immediate_decimal] = STATE(2182), + [sym_val_variable] = STATE(2179), + [sym_comment] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(1643), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1643), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1643), + [anon_sym_xor2] = ACTIONS(1643), + [anon_sym_or2] = ACTIONS(1643), + [anon_sym_not_DASHin2] = ACTIONS(1643), + [anon_sym_starts_DASHwith2] = ACTIONS(1643), + [anon_sym_ends_DASHwith2] = ACTIONS(1643), + [anon_sym_EQ_EQ2] = ACTIONS(1643), + [anon_sym_BANG_EQ2] = ACTIONS(1643), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1643), + [anon_sym_GT_EQ2] = ACTIONS(1643), + [anon_sym_EQ_TILDE2] = ACTIONS(1643), + [anon_sym_BANG_TILDE2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1643), + [anon_sym_PLUS_PLUS2] = ACTIONS(1643), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1643), + [anon_sym_SLASH_SLASH2] = ACTIONS(1643), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1643), + [anon_sym_bit_DASHshr2] = ACTIONS(1643), + [anon_sym_bit_DASHand2] = ACTIONS(1643), + [anon_sym_bit_DASHxor2] = ACTIONS(1643), + [anon_sym_bit_DASHor2] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(4867), + [aux_sym__immediate_decimal_token1] = ACTIONS(4835), + [aux_sym__immediate_decimal_token3] = ACTIONS(4835), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(251), + }, + [1492] = { + [sym_comment] = STATE(1492), + [ts_builtin_sym_end] = ACTIONS(1006), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_err_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_GT_PIPE] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_QMARK2] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [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_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1006), + [anon_sym_out_GT_GT] = ACTIONS(1006), + [anon_sym_e_GT_GT] = ACTIONS(1006), + [anon_sym_o_GT_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), + [aux_sym_unquoted_token1] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1006), + }, + [1493] = { + [sym_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(998), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(996), + [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_DOT_DOT_LT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), + [anon_sym_DOT_DOT_LT2] = ACTIONS(998), + [anon_sym_null] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(996), + [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_0b] = ACTIONS(996), + [anon_sym_0o] = ACTIONS(996), + [anon_sym_0x] = ACTIONS(996), + [sym_val_date] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(996), + [anon_sym_out_GT] = ACTIONS(996), + [anon_sym_e_GT] = ACTIONS(996), + [anon_sym_o_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [aux_sym_unquoted_token1] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(998), + }, + [1494] = { + [sym_comment] = STATE(1494), + [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_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_in2] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(4869), + [sym_filesize_unit] = ACTIONS(1711), + [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(251), + }, + [1495] = { + [sym_comment] = STATE(1495), + [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(251), + }, + [1496] = { + [sym_comment] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), + [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(988), + }, + [1497] = { + [sym_cell_path] = STATE(1835), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1497), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_err_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_GT_PIPE] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1953), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), + [anon_sym_DOT_DOT_LT] = ACTIONS(1955), + [anon_sym_null] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1953), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [aux_sym__val_number_token4] = ACTIONS(1955), + [aux_sym__val_number_token5] = ACTIONS(1955), + [aux_sym__val_number_token6] = ACTIONS(1955), + [anon_sym_0b] = ACTIONS(1953), + [anon_sym_0o] = ACTIONS(1953), + [anon_sym_0x] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_err_GT] = ACTIONS(1953), + [anon_sym_out_GT] = ACTIONS(1953), + [anon_sym_e_GT] = ACTIONS(1953), + [anon_sym_o_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT] = ACTIONS(1953), + [anon_sym_err_GT_GT] = ACTIONS(1955), + [anon_sym_out_GT_GT] = ACTIONS(1955), + [anon_sym_e_GT_GT] = ACTIONS(1955), + [anon_sym_o_GT_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [aux_sym_unquoted_token1] = ACTIONS(1953), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1955), + }, + [1498] = { + [sym_cell_path] = STATE(1808), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1498), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), [anon_sym_LPAREN] = ACTIONS(1947), [anon_sym_RPAREN] = ACTIONS(1947), [anon_sym_DOLLAR] = ACTIONS(1945), @@ -222461,7 +226422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1947), [anon_sym_RBRACE] = ACTIONS(1947), [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), [anon_sym_DOT_DOT_LT] = ACTIONS(1947), [anon_sym_null] = ACTIONS(1947), @@ -222506,11 +226467,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1947), }, - [1481] = { - [sym_cell_path] = STATE(1767), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1481), - [aux_sym_cell_path_repeat1] = STATE(1550), + [1499] = { + [sym_comment] = STATE(1499), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [aux_sym_unquoted_token1] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1024), + }, + [1500] = { + [sym__expr_parenthesized_immediate] = STATE(2185), + [sym__immediate_decimal] = STATE(2188), + [sym_val_variable] = STATE(2185), + [sym_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT] = ACTIONS(4871), + [aux_sym__immediate_decimal_token1] = ACTIONS(4835), + [aux_sym__immediate_decimal_token3] = ACTIONS(4835), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(251), + }, + [1501] = { + [sym_cell_path] = STATE(1816), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1501), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_err_GT_PIPE] = ACTIONS(1943), + [anon_sym_out_GT_PIPE] = ACTIONS(1943), + [anon_sym_e_GT_PIPE] = ACTIONS(1943), + [anon_sym_o_GT_PIPE] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_RPAREN] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_DASH2] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1941), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), + [anon_sym_DOT_DOT_LT] = ACTIONS(1943), + [anon_sym_null] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(1943), + [anon_sym_false] = ACTIONS(1943), + [aux_sym__val_number_decimal_token1] = ACTIONS(1941), + [aux_sym__val_number_decimal_token2] = ACTIONS(1943), + [aux_sym__val_number_decimal_token3] = ACTIONS(1943), + [aux_sym__val_number_decimal_token4] = ACTIONS(1943), + [aux_sym__val_number_token1] = ACTIONS(1943), + [aux_sym__val_number_token2] = ACTIONS(1943), + [aux_sym__val_number_token3] = ACTIONS(1943), + [aux_sym__val_number_token4] = ACTIONS(1943), + [aux_sym__val_number_token5] = ACTIONS(1943), + [aux_sym__val_number_token6] = ACTIONS(1943), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0o] = ACTIONS(1941), + [anon_sym_0x] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym__str_single_quotes] = ACTIONS(1943), + [sym__str_back_ticks] = ACTIONS(1943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), + [anon_sym_err_GT] = ACTIONS(1941), + [anon_sym_out_GT] = ACTIONS(1941), + [anon_sym_e_GT] = ACTIONS(1941), + [anon_sym_o_GT] = ACTIONS(1941), + [anon_sym_err_PLUSout_GT] = ACTIONS(1941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), + [anon_sym_o_PLUSe_GT] = ACTIONS(1941), + [anon_sym_e_PLUSo_GT] = ACTIONS(1941), + [anon_sym_err_GT_GT] = ACTIONS(1943), + [anon_sym_out_GT_GT] = ACTIONS(1943), + [anon_sym_e_GT_GT] = ACTIONS(1943), + [anon_sym_o_GT_GT] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), + [aux_sym_unquoted_token1] = ACTIONS(1941), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1943), + }, + [1502] = { + [sym_cell_path] = STATE(1817), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1502), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1873), + [aux_sym__val_number_token5] = ACTIONS(1873), + [aux_sym__val_number_token6] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1873), + }, + [1503] = { + [sym_cell_path] = STATE(1820), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1503), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1877), + }, + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_DOT_DOT2] = ACTIONS(4873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1840), + [anon_sym_DOT_DOT_LT] = ACTIONS(1840), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), + [anon_sym_null] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1848), + [aux_sym__val_number_token5] = ACTIONS(1848), + [aux_sym__val_number_token6] = ACTIONS(1848), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1840), + [anon_sym_0x] = ACTIONS(1840), + [sym_val_date] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [aux_sym_unquoted_token1] = ACTIONS(1840), + [aux_sym_unquoted_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1848), + }, + [1505] = { + [sym__expr_parenthesized_immediate] = STATE(2611), + [sym__immediate_decimal] = STATE(2384), + [sym_val_variable] = STATE(2611), + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(4879), + [aux_sym__immediate_decimal_token3] = ACTIONS(4879), + [aux_sym__immediate_decimal_token4] = ACTIONS(4881), + [aux_sym__immediate_decimal_token5] = ACTIONS(4883), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + }, + [1506] = { + [sym_cell_path] = STATE(1811), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1506), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1951), [anon_sym_SEMI] = ACTIONS(1951), [anon_sym_PIPE] = ACTIONS(1951), @@ -222531,7 +226982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1951), [anon_sym_RBRACE] = ACTIONS(1951), [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), [anon_sym_DOT_DOT_LT] = ACTIONS(1951), [anon_sym_null] = ACTIONS(1951), @@ -222576,221 +227027,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1951), }, - [1482] = { - [sym_cell_path] = STATE(1768), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1482), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [aux_sym_unquoted_token1] = ACTIONS(1953), + [1507] = { + [sym_comment] = STATE(1507), + [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] = 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(251), - [sym_raw_string_begin] = ACTIONS(1955), + [sym_raw_string_begin] = ACTIONS(1020), }, - [1483] = { - [sym_comment] = STATE(1483), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), - [anon_sym_STAR_EQ] = ACTIONS(1034), - [anon_sym_SLASH_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1034), - [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_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1040), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [aux_sym_record_entry_token1] = ACTIONS(4813), - [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), + [1508] = { + [sym_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(1054), + [anon_sym_EQ] = ACTIONS(1052), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_GT2] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_in2] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_STAR2] = ACTIONS(1052), + [anon_sym_and2] = ACTIONS(1054), + [anon_sym_xor2] = ACTIONS(1054), + [anon_sym_or2] = ACTIONS(1054), + [anon_sym_not_DASHin2] = ACTIONS(1054), + [anon_sym_starts_DASHwith2] = ACTIONS(1054), + [anon_sym_ends_DASHwith2] = ACTIONS(1054), + [anon_sym_EQ_EQ2] = ACTIONS(1054), + [anon_sym_BANG_EQ2] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1052), + [anon_sym_LT_EQ2] = ACTIONS(1054), + [anon_sym_GT_EQ2] = ACTIONS(1054), + [anon_sym_EQ_TILDE2] = ACTIONS(1054), + [anon_sym_BANG_TILDE2] = ACTIONS(1054), + [anon_sym_STAR_STAR2] = ACTIONS(1054), + [anon_sym_PLUS_PLUS2] = ACTIONS(1052), + [anon_sym_SLASH2] = ACTIONS(1052), + [anon_sym_mod2] = ACTIONS(1054), + [anon_sym_SLASH_SLASH2] = ACTIONS(1054), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_bit_DASHshl2] = ACTIONS(1054), + [anon_sym_bit_DASHshr2] = ACTIONS(1054), + [anon_sym_bit_DASHand2] = ACTIONS(1054), + [anon_sym_bit_DASHxor2] = ACTIONS(1054), + [anon_sym_bit_DASHor2] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(251), }, - [1484] = { - [sym_cell_path] = STATE(1769), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1484), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_err_GT_PIPE] = ACTIONS(2066), - [anon_sym_out_GT_PIPE] = ACTIONS(2066), - [anon_sym_e_GT_PIPE] = ACTIONS(2066), - [anon_sym_o_GT_PIPE] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(2066), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2066), - [anon_sym_DOT_DOT_LT] = ACTIONS(2066), - [anon_sym_null] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2066), - [aux_sym__val_number_decimal_token3] = ACTIONS(2066), - [aux_sym__val_number_decimal_token4] = ACTIONS(2066), - [aux_sym__val_number_token1] = ACTIONS(2066), - [aux_sym__val_number_token2] = ACTIONS(2066), - [aux_sym__val_number_token3] = ACTIONS(2066), - [aux_sym__val_number_token4] = ACTIONS(2066), - [aux_sym__val_number_token5] = ACTIONS(2066), - [aux_sym__val_number_token6] = ACTIONS(2066), - [anon_sym_0b] = ACTIONS(2064), - [anon_sym_0o] = ACTIONS(2064), - [anon_sym_0x] = ACTIONS(2064), - [sym_val_date] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [sym__str_single_quotes] = ACTIONS(2066), - [sym__str_back_ticks] = ACTIONS(2066), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(2064), - [anon_sym_out_GT] = ACTIONS(2064), - [anon_sym_e_GT] = ACTIONS(2064), - [anon_sym_o_GT] = ACTIONS(2064), - [anon_sym_err_PLUSout_GT] = ACTIONS(2064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), - [anon_sym_o_PLUSe_GT] = ACTIONS(2064), - [anon_sym_e_PLUSo_GT] = ACTIONS(2064), - [anon_sym_err_GT_GT] = ACTIONS(2066), - [anon_sym_out_GT_GT] = ACTIONS(2066), - [anon_sym_e_GT_GT] = ACTIONS(2066), - [anon_sym_o_GT_GT] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2066), - [aux_sym_unquoted_token1] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2066), + [1509] = { + [sym_cell_path] = STATE(1814), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1509), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_err_GT_PIPE] = ACTIONS(2051), + [anon_sym_out_GT_PIPE] = ACTIONS(2051), + [anon_sym_e_GT_PIPE] = ACTIONS(2051), + [anon_sym_o_GT_PIPE] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2049), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), + [anon_sym_DOT_DOT_LT] = ACTIONS(2051), + [anon_sym_null] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2049), + [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), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_0b] = ACTIONS(2049), + [anon_sym_0o] = ACTIONS(2049), + [anon_sym_0x] = ACTIONS(2049), + [sym_val_date] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), + [anon_sym_err_GT] = ACTIONS(2049), + [anon_sym_out_GT] = ACTIONS(2049), + [anon_sym_e_GT] = ACTIONS(2049), + [anon_sym_o_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT] = ACTIONS(2049), + [anon_sym_err_GT_GT] = ACTIONS(2051), + [anon_sym_out_GT_GT] = ACTIONS(2051), + [anon_sym_e_GT_GT] = ACTIONS(2051), + [anon_sym_o_GT_GT] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2051), + [aux_sym_unquoted_token1] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2051), }, - [1485] = { - [sym_cell_path] = STATE(1770), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1485), - [aux_sym_cell_path_repeat1] = STATE(1550), + [1510] = { + [sym__expr_parenthesized_immediate] = STATE(2655), + [sym__immediate_decimal] = STATE(2287), + [sym_val_variable] = STATE(2655), + [sym_comment] = STATE(1510), + [ts_builtin_sym_end] = ACTIONS(1657), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1645), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_in2] = ACTIONS(1657), + [anon_sym_STAR2] = ACTIONS(1645), + [anon_sym_and2] = ACTIONS(1657), + [anon_sym_xor2] = ACTIONS(1657), + [anon_sym_or2] = ACTIONS(1657), + [anon_sym_not_DASHin2] = ACTIONS(1657), + [anon_sym_starts_DASHwith2] = ACTIONS(1657), + [anon_sym_ends_DASHwith2] = ACTIONS(1657), + [anon_sym_EQ_EQ2] = ACTIONS(1657), + [anon_sym_BANG_EQ2] = ACTIONS(1657), + [anon_sym_LT2] = ACTIONS(1645), + [anon_sym_LT_EQ2] = ACTIONS(1657), + [anon_sym_GT_EQ2] = ACTIONS(1657), + [anon_sym_EQ_TILDE2] = ACTIONS(1657), + [anon_sym_BANG_TILDE2] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1657), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1645), + [anon_sym_mod2] = ACTIONS(1657), + [anon_sym_SLASH_SLASH2] = ACTIONS(1657), + [anon_sym_PLUS2] = ACTIONS(1645), + [anon_sym_bit_DASHshl2] = ACTIONS(1657), + [anon_sym_bit_DASHshr2] = ACTIONS(1657), + [anon_sym_bit_DASHand2] = ACTIONS(1657), + [anon_sym_bit_DASHxor2] = ACTIONS(1657), + [anon_sym_bit_DASHor2] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(4879), + [aux_sym__immediate_decimal_token3] = ACTIONS(4879), + [aux_sym__immediate_decimal_token4] = ACTIONS(4881), + [aux_sym__immediate_decimal_token5] = ACTIONS(4883), + [anon_sym_err_GT] = ACTIONS(1645), + [anon_sym_out_GT] = ACTIONS(1645), + [anon_sym_e_GT] = ACTIONS(1645), + [anon_sym_o_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT] = ACTIONS(1645), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [aux_sym_unquoted_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(251), + }, + [1511] = { + [sym_comment] = STATE(1511), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(4885), + [aux_sym__immediate_decimal_token2] = ACTIONS(4887), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1512] = { + [sym_cell_path] = STATE(1836), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1512), + [aux_sym_cell_path_repeat1] = STATE(1547), [sym__newline] = ACTIONS(1959), [anon_sym_SEMI] = ACTIONS(1959), [anon_sym_PIPE] = ACTIONS(1959), @@ -222811,7 +227402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1959), [anon_sym_RBRACE] = ACTIONS(1959), [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(4795), + [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), [anon_sym_DOT_DOT_LT] = ACTIONS(1959), [anon_sym_null] = ACTIONS(1959), @@ -222856,1338 +227447,1601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1959), }, - [1486] = { - [sym_cell_path] = STATE(1771), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1486), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), + [1513] = { + [sym_cell_path] = STATE(1813), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1513), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_err_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_GT_PIPE] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [aux_sym__val_number_token4] = ACTIONS(2035), + [aux_sym__val_number_token5] = ACTIONS(2035), + [aux_sym__val_number_token6] = ACTIONS(2035), + [anon_sym_0b] = ACTIONS(2033), + [anon_sym_0o] = ACTIONS(2033), + [anon_sym_0x] = ACTIONS(2033), + [sym_val_date] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), + [anon_sym_err_GT] = ACTIONS(2033), + [anon_sym_out_GT] = ACTIONS(2033), + [anon_sym_e_GT] = ACTIONS(2033), + [anon_sym_o_GT] = ACTIONS(2033), + [anon_sym_err_PLUSout_GT] = ACTIONS(2033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), + [anon_sym_o_PLUSe_GT] = ACTIONS(2033), + [anon_sym_e_PLUSo_GT] = ACTIONS(2033), + [anon_sym_err_GT_GT] = ACTIONS(2035), + [anon_sym_out_GT_GT] = ACTIONS(2035), + [anon_sym_e_GT_GT] = ACTIONS(2035), + [anon_sym_o_GT_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), + [aux_sym_unquoted_token1] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2035), }, - [1487] = { - [sym_cell_path] = STATE(1772), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1487), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [1514] = { + [sym_cell_path] = STATE(1866), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1514), + [aux_sym_cell_path_repeat1] = STATE(1547), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_DOT_DOT_LT] = ACTIONS(971), + [anon_sym_null] = ACTIONS(971), + [anon_sym_true] = ACTIONS(971), + [anon_sym_false] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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_0b] = ACTIONS(969), + [anon_sym_0o] = ACTIONS(969), + [anon_sym_0x] = ACTIONS(969), + [sym_val_date] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym__str_single_quotes] = ACTIONS(971), + [sym__str_back_ticks] = ACTIONS(971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [aux_sym_unquoted_token1] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), }, - [1488] = { - [sym_cell_path] = STATE(1773), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1488), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1971), - [aux_sym__val_number_token5] = ACTIONS(1971), - [aux_sym__val_number_token6] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [1515] = { + [sym_cell_path] = STATE(1890), + [sym_path] = STATE(1676), + [sym_comment] = STATE(1515), + [aux_sym_cell_path_repeat1] = STATE(1547), + [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(4841), + [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(251), + [sym_raw_string_begin] = ACTIONS(1935), }, - [1489] = { - [sym_comment] = STATE(1489), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [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(1028), - [aux_sym__val_number_token5] = ACTIONS(1028), - [aux_sym__val_number_token6] = ACTIONS(1028), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1028), + [1516] = { + [sym__expr_parenthesized_immediate] = STATE(2611), + [sym__immediate_decimal] = STATE(2648), + [sym_val_variable] = STATE(2611), + [sym_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1565), + [anon_sym_DASH2] = ACTIONS(1565), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1565), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1565), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1565), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1565), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [aux_sym__immediate_decimal_token1] = ACTIONS(4889), + [aux_sym__immediate_decimal_token3] = ACTIONS(4889), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [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(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(251), }, - [1490] = { - [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(4815), - [aux_sym__immediate_decimal_token2] = ACTIONS(4817), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [1517] = { + [sym_comment] = STATE(1517), + [sym__newline] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_err_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_GT_PIPE] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1769), + [anon_sym_in2] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1769), + [anon_sym_xor2] = ACTIONS(1769), + [anon_sym_or2] = ACTIONS(1769), + [anon_sym_not_DASHin2] = ACTIONS(1769), + [anon_sym_starts_DASHwith2] = ACTIONS(1769), + [anon_sym_ends_DASHwith2] = ACTIONS(1769), + [anon_sym_EQ_EQ2] = ACTIONS(1769), + [anon_sym_BANG_EQ2] = ACTIONS(1769), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1769), + [anon_sym_GT_EQ2] = ACTIONS(1769), + [anon_sym_EQ_TILDE2] = ACTIONS(1769), + [anon_sym_BANG_TILDE2] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR_STAR2] = ACTIONS(1769), + [anon_sym_PLUS_PLUS2] = ACTIONS(1769), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1769), + [anon_sym_SLASH_SLASH2] = ACTIONS(1769), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1769), + [anon_sym_bit_DASHshr2] = ACTIONS(1769), + [anon_sym_bit_DASHand2] = ACTIONS(1769), + [anon_sym_bit_DASHxor2] = ACTIONS(1769), + [anon_sym_bit_DASHor2] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1769), + [anon_sym_out_GT_GT] = ACTIONS(1769), + [anon_sym_e_GT_GT] = ACTIONS(1769), + [anon_sym_o_GT_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(251), }, - [1491] = { - [sym_comment] = STATE(1491), - [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(4819), - [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), + [1518] = { + [sym_cell_path] = STATE(1907), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1518), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1945), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1947), + [aux_sym__val_number_token5] = ACTIONS(1947), + [aux_sym__val_number_token6] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1945), + [anon_sym_0o] = ACTIONS(1945), + [anon_sym_0x] = ACTIONS(1945), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), + [aux_sym_unquoted_token1] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [sym_raw_string_begin] = ACTIONS(1947), }, - [1492] = { - [sym_cell_path] = STATE(1840), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1492), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_DOT_DOT_LT] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(973), - [anon_sym_0o] = ACTIONS(973), - [anon_sym_0x] = ACTIONS(973), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), + [1519] = { + [sym__expr_parenthesized_immediate] = STATE(2594), + [sym__immediate_decimal] = STATE(2598), + [sym_val_variable] = STATE(2594), + [sym_comment] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1677), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1677), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1677), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1677), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(4889), + [aux_sym__immediate_decimal_token3] = ACTIONS(4889), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), }, - [1493] = { - [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1836), - [sym__newline] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_err_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_GT_PIPE] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_DOT_DOT2] = ACTIONS(4821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), - [anon_sym_DOT_DOT_LT] = ACTIONS(1828), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4823), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4823), - [anon_sym_null] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1836), - [aux_sym__val_number_decimal_token3] = ACTIONS(1836), - [aux_sym__val_number_decimal_token4] = ACTIONS(1836), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1836), - [aux_sym__val_number_token5] = ACTIONS(1836), - [aux_sym__val_number_token6] = ACTIONS(1836), - [anon_sym_0b] = ACTIONS(1828), - [anon_sym_0o] = ACTIONS(1828), - [anon_sym_0x] = ACTIONS(1828), - [sym_val_date] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__str_single_quotes] = ACTIONS(1836), - [sym__str_back_ticks] = ACTIONS(1836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1836), - [anon_sym_err_GT] = ACTIONS(1828), - [anon_sym_out_GT] = ACTIONS(1828), - [anon_sym_e_GT] = ACTIONS(1828), - [anon_sym_o_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT] = ACTIONS(1828), - [anon_sym_err_GT_GT] = ACTIONS(1836), - [anon_sym_out_GT_GT] = ACTIONS(1836), - [anon_sym_e_GT_GT] = ACTIONS(1836), - [anon_sym_o_GT_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1836), - [aux_sym_unquoted_token1] = ACTIONS(1828), - [aux_sym_unquoted_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1836), + [1520] = { + [sym__expr_parenthesized_immediate] = STATE(2604), + [sym__immediate_decimal] = STATE(2613), + [sym_val_variable] = STATE(2604), + [sym_comment] = STATE(1520), + [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_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1741), + [anon_sym_STAR2] = ACTIONS(1739), + [anon_sym_and2] = ACTIONS(1741), + [anon_sym_xor2] = ACTIONS(1741), + [anon_sym_or2] = ACTIONS(1741), + [anon_sym_not_DASHin2] = ACTIONS(1741), + [anon_sym_starts_DASHwith2] = ACTIONS(1741), + [anon_sym_ends_DASHwith2] = ACTIONS(1741), + [anon_sym_EQ_EQ2] = ACTIONS(1741), + [anon_sym_BANG_EQ2] = ACTIONS(1741), + [anon_sym_LT2] = ACTIONS(1739), + [anon_sym_LT_EQ2] = ACTIONS(1741), + [anon_sym_GT_EQ2] = ACTIONS(1741), + [anon_sym_EQ_TILDE2] = ACTIONS(1741), + [anon_sym_BANG_TILDE2] = ACTIONS(1741), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1741), + [anon_sym_PLUS_PLUS2] = ACTIONS(1741), + [anon_sym_SLASH2] = ACTIONS(1739), + [anon_sym_mod2] = ACTIONS(1741), + [anon_sym_SLASH_SLASH2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_bit_DASHshl2] = ACTIONS(1741), + [anon_sym_bit_DASHshr2] = ACTIONS(1741), + [anon_sym_bit_DASHand2] = ACTIONS(1741), + [anon_sym_bit_DASHxor2] = ACTIONS(1741), + [anon_sym_bit_DASHor2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4889), + [aux_sym__immediate_decimal_token3] = ACTIONS(4889), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [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), + [anon_sym_POUND] = ACTIONS(251), }, - [1494] = { - [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4827), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [1521] = { + [sym_cell_path] = STATE(1961), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1521), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym__newline] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_err_GT_PIPE] = ACTIONS(2055), + [anon_sym_out_GT_PIPE] = ACTIONS(2055), + [anon_sym_e_GT_PIPE] = ACTIONS(2055), + [anon_sym_o_GT_PIPE] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_DASH2] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [anon_sym_null] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2053), + [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), + [aux_sym__val_number_token4] = ACTIONS(2055), + [aux_sym__val_number_token5] = ACTIONS(2055), + [aux_sym__val_number_token6] = ACTIONS(2055), + [anon_sym_0b] = ACTIONS(2053), + [anon_sym_0o] = ACTIONS(2053), + [anon_sym_0x] = ACTIONS(2053), + [sym_val_date] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [sym__str_single_quotes] = ACTIONS(2055), + [sym__str_back_ticks] = ACTIONS(2055), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), + [anon_sym_err_GT] = ACTIONS(2053), + [anon_sym_out_GT] = ACTIONS(2053), + [anon_sym_e_GT] = ACTIONS(2053), + [anon_sym_o_GT] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT] = ACTIONS(2053), + [anon_sym_err_GT_GT] = ACTIONS(2055), + [anon_sym_out_GT_GT] = ACTIONS(2055), + [anon_sym_e_GT_GT] = ACTIONS(2055), + [anon_sym_o_GT_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2055), + [aux_sym_unquoted_token1] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2055), }, - [1495] = { - [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), + [1522] = { + [sym__expr_parenthesized_immediate] = STATE(2639), + [sym__immediate_decimal] = STATE(2647), + [sym_val_variable] = STATE(2639), + [sym_comment] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(1745), + [sym__newline] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_err_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_GT_PIPE] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), + [anon_sym_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1743), + [anon_sym_DASH2] = ACTIONS(1743), + [anon_sym_in2] = ACTIONS(1745), + [anon_sym_STAR2] = ACTIONS(1743), + [anon_sym_and2] = ACTIONS(1745), + [anon_sym_xor2] = ACTIONS(1745), + [anon_sym_or2] = ACTIONS(1745), + [anon_sym_not_DASHin2] = ACTIONS(1745), + [anon_sym_starts_DASHwith2] = ACTIONS(1745), + [anon_sym_ends_DASHwith2] = ACTIONS(1745), + [anon_sym_EQ_EQ2] = ACTIONS(1745), + [anon_sym_BANG_EQ2] = ACTIONS(1745), + [anon_sym_LT2] = ACTIONS(1743), + [anon_sym_LT_EQ2] = ACTIONS(1745), + [anon_sym_GT_EQ2] = ACTIONS(1745), + [anon_sym_EQ_TILDE2] = ACTIONS(1745), + [anon_sym_BANG_TILDE2] = ACTIONS(1745), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1745), + [anon_sym_PLUS_PLUS2] = ACTIONS(1745), + [anon_sym_SLASH2] = ACTIONS(1743), + [anon_sym_mod2] = ACTIONS(1745), + [anon_sym_SLASH_SLASH2] = ACTIONS(1745), + [anon_sym_PLUS2] = ACTIONS(1743), + [anon_sym_bit_DASHshl2] = ACTIONS(1745), + [anon_sym_bit_DASHshr2] = ACTIONS(1745), + [anon_sym_bit_DASHand2] = ACTIONS(1745), + [anon_sym_bit_DASHxor2] = ACTIONS(1745), + [anon_sym_bit_DASHor2] = ACTIONS(1745), + [aux_sym__immediate_decimal_token1] = ACTIONS(4889), + [aux_sym__immediate_decimal_token3] = ACTIONS(4889), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [anon_sym_err_GT] = ACTIONS(1743), + [anon_sym_out_GT] = ACTIONS(1743), + [anon_sym_e_GT] = ACTIONS(1743), + [anon_sym_o_GT] = ACTIONS(1743), + [anon_sym_err_PLUSout_GT] = ACTIONS(1743), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), + [anon_sym_o_PLUSe_GT] = ACTIONS(1743), + [anon_sym_e_PLUSo_GT] = ACTIONS(1743), + [anon_sym_err_GT_GT] = ACTIONS(1745), + [anon_sym_out_GT_GT] = ACTIONS(1745), + [anon_sym_e_GT_GT] = ACTIONS(1745), + [anon_sym_o_GT_GT] = ACTIONS(1745), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), }, - [1496] = { - [sym_cell_path] = STATE(1778), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1496), - [aux_sym_cell_path_repeat1] = STATE(1550), - [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_DASH2] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_LT] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1899), - [aux_sym__val_number_token5] = ACTIONS(1899), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1899), + [1523] = { + [sym__expr_parenthesized_immediate] = STATE(2655), + [sym__immediate_decimal] = STATE(2657), + [sym_val_variable] = STATE(2655), + [sym_comment] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(1657), + [sym__newline] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_err_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_GT_PIPE] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1645), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_in2] = ACTIONS(1657), + [anon_sym_STAR2] = ACTIONS(1645), + [anon_sym_and2] = ACTIONS(1657), + [anon_sym_xor2] = ACTIONS(1657), + [anon_sym_or2] = ACTIONS(1657), + [anon_sym_not_DASHin2] = ACTIONS(1657), + [anon_sym_starts_DASHwith2] = ACTIONS(1657), + [anon_sym_ends_DASHwith2] = ACTIONS(1657), + [anon_sym_EQ_EQ2] = ACTIONS(1657), + [anon_sym_BANG_EQ2] = ACTIONS(1657), + [anon_sym_LT2] = ACTIONS(1645), + [anon_sym_LT_EQ2] = ACTIONS(1657), + [anon_sym_GT_EQ2] = ACTIONS(1657), + [anon_sym_EQ_TILDE2] = ACTIONS(1657), + [anon_sym_BANG_TILDE2] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1657), + [anon_sym_PLUS_PLUS2] = ACTIONS(1657), + [anon_sym_SLASH2] = ACTIONS(1645), + [anon_sym_mod2] = ACTIONS(1657), + [anon_sym_SLASH_SLASH2] = ACTIONS(1657), + [anon_sym_PLUS2] = ACTIONS(1645), + [anon_sym_bit_DASHshl2] = ACTIONS(1657), + [anon_sym_bit_DASHshr2] = ACTIONS(1657), + [anon_sym_bit_DASHand2] = ACTIONS(1657), + [anon_sym_bit_DASHxor2] = ACTIONS(1657), + [anon_sym_bit_DASHor2] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(4889), + [aux_sym__immediate_decimal_token3] = ACTIONS(4889), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [anon_sym_err_GT] = ACTIONS(1645), + [anon_sym_out_GT] = ACTIONS(1645), + [anon_sym_e_GT] = ACTIONS(1645), + [anon_sym_o_GT] = ACTIONS(1645), + [anon_sym_err_PLUSout_GT] = ACTIONS(1645), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), + [anon_sym_o_PLUSe_GT] = ACTIONS(1645), + [anon_sym_e_PLUSo_GT] = ACTIONS(1645), + [anon_sym_err_GT_GT] = ACTIONS(1657), + [anon_sym_out_GT_GT] = ACTIONS(1657), + [anon_sym_e_GT_GT] = ACTIONS(1657), + [anon_sym_o_GT_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(251), }, - [1497] = { - [sym_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1058), - [anon_sym_DASH_EQ] = ACTIONS(1058), - [anon_sym_STAR_EQ] = ACTIONS(1058), - [anon_sym_SLASH_EQ] = ACTIONS(1058), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1058), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_GT2] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_in2] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_STAR2] = ACTIONS(1056), - [anon_sym_and2] = ACTIONS(1058), - [anon_sym_xor2] = ACTIONS(1058), - [anon_sym_or2] = ACTIONS(1058), - [anon_sym_not_DASHin2] = ACTIONS(1058), - [anon_sym_starts_DASHwith2] = ACTIONS(1058), - [anon_sym_ends_DASHwith2] = ACTIONS(1058), - [anon_sym_EQ_EQ2] = ACTIONS(1058), - [anon_sym_BANG_EQ2] = ACTIONS(1058), - [anon_sym_LT2] = ACTIONS(1056), - [anon_sym_LT_EQ2] = ACTIONS(1058), - [anon_sym_GT_EQ2] = ACTIONS(1058), - [anon_sym_EQ_TILDE2] = ACTIONS(1058), - [anon_sym_BANG_TILDE2] = ACTIONS(1058), - [anon_sym_STAR_STAR2] = ACTIONS(1058), - [anon_sym_PLUS_PLUS2] = ACTIONS(1056), - [anon_sym_SLASH2] = ACTIONS(1056), - [anon_sym_mod2] = ACTIONS(1058), - [anon_sym_SLASH_SLASH2] = ACTIONS(1058), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_bit_DASHshl2] = ACTIONS(1058), - [anon_sym_bit_DASHshr2] = ACTIONS(1058), - [anon_sym_bit_DASHand2] = ACTIONS(1058), - [anon_sym_bit_DASHxor2] = ACTIONS(1058), - [anon_sym_bit_DASHor2] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [1524] = { + [sym_comment] = STATE(1524), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1036), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(251), }, - [1498] = { - [sym_comment] = STATE(1498), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_in2] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1747), - [anon_sym_xor2] = ACTIONS(1747), - [anon_sym_or2] = ACTIONS(1747), - [anon_sym_not_DASHin2] = ACTIONS(1747), - [anon_sym_starts_DASHwith2] = ACTIONS(1747), - [anon_sym_ends_DASHwith2] = ACTIONS(1747), - [anon_sym_EQ_EQ2] = ACTIONS(1747), - [anon_sym_BANG_EQ2] = ACTIONS(1747), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1747), - [anon_sym_GT_EQ2] = ACTIONS(1747), - [anon_sym_EQ_TILDE2] = ACTIONS(1747), - [anon_sym_BANG_TILDE2] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_STAR_STAR2] = ACTIONS(1747), - [anon_sym_PLUS_PLUS2] = ACTIONS(1747), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1747), - [anon_sym_SLASH_SLASH2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1747), - [anon_sym_bit_DASHshr2] = ACTIONS(1747), - [anon_sym_bit_DASHand2] = ACTIONS(1747), - [anon_sym_bit_DASHxor2] = ACTIONS(1747), - [anon_sym_bit_DASHor2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(4829), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token2] = ACTIONS(1745), + [1525] = { + [sym_cell_path] = STATE(1975), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1525), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1889), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_LT] = ACTIONS(1889), + [anon_sym_null] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_0b] = ACTIONS(1887), + [anon_sym_0o] = ACTIONS(1887), + [anon_sym_0x] = ACTIONS(1887), + [sym_val_date] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), + [aux_sym_unquoted_token1] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1889), + }, + [1526] = { + [sym_cell_path] = STATE(2001), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1526), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(971), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_DOT_DOT_LT] = ACTIONS(971), + [anon_sym_null] = ACTIONS(971), + [anon_sym_true] = ACTIONS(971), + [anon_sym_false] = ACTIONS(971), + [aux_sym__val_number_decimal_token1] = ACTIONS(969), + [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_0b] = ACTIONS(969), + [anon_sym_0o] = ACTIONS(969), + [anon_sym_0x] = ACTIONS(969), + [sym_val_date] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym__str_single_quotes] = ACTIONS(971), + [sym__str_back_ticks] = ACTIONS(971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [aux_sym_unquoted_token1] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(971), + }, + [1527] = { + [sym_comment] = STATE(1527), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_GT2] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1781), + [anon_sym_in2] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_STAR2] = ACTIONS(1779), + [anon_sym_and2] = ACTIONS(1781), + [anon_sym_xor2] = ACTIONS(1781), + [anon_sym_or2] = ACTIONS(1781), + [anon_sym_not_DASHin2] = ACTIONS(1781), + [anon_sym_starts_DASHwith2] = ACTIONS(1781), + [anon_sym_ends_DASHwith2] = ACTIONS(1781), + [anon_sym_EQ_EQ2] = ACTIONS(1781), + [anon_sym_BANG_EQ2] = ACTIONS(1781), + [anon_sym_LT2] = ACTIONS(1779), + [anon_sym_LT_EQ2] = ACTIONS(1781), + [anon_sym_GT_EQ2] = ACTIONS(1781), + [anon_sym_EQ_TILDE2] = ACTIONS(1781), + [anon_sym_BANG_TILDE2] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_STAR_STAR2] = ACTIONS(1781), + [anon_sym_PLUS_PLUS2] = ACTIONS(1781), + [anon_sym_SLASH2] = ACTIONS(1779), + [anon_sym_mod2] = ACTIONS(1781), + [anon_sym_SLASH_SLASH2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_bit_DASHshl2] = ACTIONS(1781), + [anon_sym_bit_DASHshr2] = ACTIONS(1781), + [anon_sym_bit_DASHand2] = ACTIONS(1781), + [anon_sym_bit_DASHxor2] = ACTIONS(1781), + [anon_sym_bit_DASHor2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(4893), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4895), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), }, - [1499] = { - [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(1803), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [1528] = { + [sym_comment] = STATE(1528), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [1500] = { - [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), - [anon_sym_DOT_DOT_LT] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1826), - [aux_sym__val_number_token5] = ACTIONS(1826), - [aux_sym__val_number_token6] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [aux_sym_unquoted_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), + [1529] = { + [sym_cell_path] = STATE(1978), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1529), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), + [anon_sym_DOT_DOT_LT] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1893), }, - [1501] = { - [sym_cell_path] = STATE(1757), - [sym_path] = STATE(1663), - [sym_comment] = STATE(1501), - [aux_sym_cell_path_repeat1] = STATE(1550), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), - [anon_sym_DOT_DOT_LT] = ACTIONS(1919), - [anon_sym_null] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1919), - [aux_sym__val_number_token5] = ACTIONS(1919), - [aux_sym__val_number_token6] = ACTIONS(1919), - [anon_sym_0b] = ACTIONS(1917), - [anon_sym_0o] = ACTIONS(1917), - [anon_sym_0x] = ACTIONS(1917), - [sym_val_date] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), - [anon_sym_err_GT] = ACTIONS(1917), - [anon_sym_out_GT] = ACTIONS(1917), - [anon_sym_e_GT] = ACTIONS(1917), - [anon_sym_o_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT] = ACTIONS(1917), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [aux_sym_unquoted_token1] = ACTIONS(1917), + [1530] = { + [sym_comment] = STATE(1530), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_DOT_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1052), + [anon_sym_0o] = ACTIONS(1052), + [anon_sym_0x] = ACTIONS(1052), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1054), + }, + [1531] = { + [sym_cell_path] = STATE(1979), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1531), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [aux_sym__val_number_token4] = ACTIONS(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = ACTIONS(1897), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [1532] = { + [sym_comment] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4859), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), + [sym_raw_string_begin] = ACTIONS(1781), }, - [1502] = { - [sym__expr_parenthesized_immediate] = STATE(7710), - [sym_comment] = STATE(1502), - [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_RPAREN] = ACTIONS(1707), - [anon_sym_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(4831), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4833), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4833), - [sym_filesize_unit] = ACTIONS(4835), - [sym_duration_unit] = ACTIONS(4837), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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_token2] = ACTIONS(4839), + [1533] = { + [sym_comment] = STATE(1533), + [ts_builtin_sym_end] = ACTIONS(1024), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT2] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_DOT_DOT_LT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [aux_sym_unquoted_token1] = ACTIONS(1022), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1024), }, - [1503] = { - [sym_cell_path] = STATE(1945), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1503), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(975), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_DOT_DOT_LT] = ACTIONS(975), - [anon_sym_null] = ACTIONS(975), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(973), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(973), - [anon_sym_0o] = ACTIONS(973), - [anon_sym_0x] = ACTIONS(973), - [sym_val_date] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [aux_sym_unquoted_token1] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(975), + [1534] = { + [sym_comment] = STATE(1534), + [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_DOT2] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2082), + [anon_sym_DOT_DOT_LT] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT2] = 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(251), + [sym_raw_string_begin] = ACTIONS(2084), }, - [1504] = { - [sym_cell_path] = STATE(1900), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1504), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(2066), - [sym__newline] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_err_GT_PIPE] = ACTIONS(2066), - [anon_sym_out_GT_PIPE] = ACTIONS(2066), - [anon_sym_e_GT_PIPE] = ACTIONS(2066), - [anon_sym_o_GT_PIPE] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(2066), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_DOT_DOT] = ACTIONS(2064), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2066), - [anon_sym_DOT_DOT_LT] = ACTIONS(2066), - [anon_sym_null] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2066), - [anon_sym_false] = ACTIONS(2066), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2066), - [aux_sym__val_number_decimal_token3] = ACTIONS(2066), - [aux_sym__val_number_decimal_token4] = ACTIONS(2066), - [aux_sym__val_number_token1] = ACTIONS(2066), - [aux_sym__val_number_token2] = ACTIONS(2066), - [aux_sym__val_number_token3] = ACTIONS(2066), - [aux_sym__val_number_token4] = ACTIONS(2066), - [aux_sym__val_number_token5] = ACTIONS(2066), - [aux_sym__val_number_token6] = ACTIONS(2066), - [anon_sym_0b] = ACTIONS(2064), - [anon_sym_0o] = ACTIONS(2064), - [anon_sym_0x] = ACTIONS(2064), - [sym_val_date] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [sym__str_single_quotes] = ACTIONS(2066), - [sym__str_back_ticks] = ACTIONS(2066), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(2064), - [anon_sym_out_GT] = ACTIONS(2064), - [anon_sym_e_GT] = ACTIONS(2064), - [anon_sym_o_GT] = ACTIONS(2064), - [anon_sym_err_PLUSout_GT] = ACTIONS(2064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), - [anon_sym_o_PLUSe_GT] = ACTIONS(2064), - [anon_sym_e_PLUSo_GT] = ACTIONS(2064), - [anon_sym_err_GT_GT] = ACTIONS(2066), - [anon_sym_out_GT_GT] = ACTIONS(2066), - [anon_sym_e_GT_GT] = ACTIONS(2066), - [anon_sym_o_GT_GT] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2066), - [aux_sym_unquoted_token1] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2066), + [1535] = { + [sym_comment] = STATE(1535), + [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), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1765), }, - [1505] = { - [sym_cell_path] = STATE(1901), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1505), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1536] = { + [sym_cell_path] = STATE(1994), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1536), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1959), [sym__newline] = ACTIONS(1959), [anon_sym_SEMI] = ACTIONS(1959), @@ -224207,7 +229061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1957), [anon_sym_LBRACE] = ACTIONS(1959), [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), [anon_sym_DOT_DOT_LT] = ACTIONS(1959), [anon_sym_null] = ACTIONS(1959), @@ -224252,1736 +229106,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1959), }, - [1506] = { - [sym_cell_path] = STATE(1902), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1506), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), - }, - [1507] = { - [sym_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT] = ACTIONS(4843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4845), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1508] = { - [sym_cell_path] = STATE(1903), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1508), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1967), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [1537] = { + [sym_cell_path] = STATE(1970), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1537), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1881), }, - [1509] = { - [sym_comment] = STATE(1509), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), - [anon_sym_STAR_EQ] = ACTIONS(1034), - [anon_sym_SLASH_EQ] = ACTIONS(1034), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1034), - [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_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1040), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [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), + [1538] = { + [sym_comment] = STATE(1538), + [anon_sym_EQ] = ACTIONS(4897), + [anon_sym_PLUS_EQ] = ACTIONS(4899), + [anon_sym_DASH_EQ] = ACTIONS(4899), + [anon_sym_STAR_EQ] = ACTIONS(4899), + [anon_sym_SLASH_EQ] = ACTIONS(4899), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4899), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1036), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1036), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(251), }, - [1510] = { - [sym_cell_path] = STATE(1876), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1510), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), - [anon_sym_DOT_DOT_LT] = ACTIONS(1903), - [anon_sym_null] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1903), - [aux_sym__val_number_token5] = ACTIONS(1903), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1903), + [1539] = { + [sym_cell_path] = STATE(1982), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1539), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1905), + [sym__newline] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_err_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_GT_PIPE] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_DOLLAR] = ACTIONS(1903), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), + [anon_sym_DOT_DOT_LT] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [aux_sym__val_number_decimal_token1] = ACTIONS(1903), + [aux_sym__val_number_decimal_token2] = ACTIONS(1905), + [aux_sym__val_number_decimal_token3] = ACTIONS(1905), + [aux_sym__val_number_decimal_token4] = ACTIONS(1905), + [aux_sym__val_number_token1] = ACTIONS(1905), + [aux_sym__val_number_token2] = ACTIONS(1905), + [aux_sym__val_number_token3] = ACTIONS(1905), + [aux_sym__val_number_token4] = ACTIONS(1905), + [aux_sym__val_number_token5] = ACTIONS(1905), + [aux_sym__val_number_token6] = ACTIONS(1905), + [anon_sym_0b] = ACTIONS(1903), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0x] = ACTIONS(1903), + [sym_val_date] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym__str_single_quotes] = ACTIONS(1905), + [sym__str_back_ticks] = ACTIONS(1905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), + [anon_sym_err_GT] = ACTIONS(1903), + [anon_sym_out_GT] = ACTIONS(1903), + [anon_sym_e_GT] = ACTIONS(1903), + [anon_sym_o_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT] = ACTIONS(1903), + [anon_sym_err_GT_GT] = ACTIONS(1905), + [anon_sym_out_GT_GT] = ACTIONS(1905), + [anon_sym_e_GT_GT] = ACTIONS(1905), + [anon_sym_o_GT_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), + [aux_sym_unquoted_token1] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1905), }, - [1511] = { - [sym_cell_path] = STATE(1904), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1511), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1971), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1971), - [aux_sym__val_number_token5] = ACTIONS(1971), - [aux_sym__val_number_token6] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [1540] = { + [sym_comment] = STATE(1540), + [sym__newline] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_err_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_GT_PIPE] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_DASH_DASH] = ACTIONS(2088), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_DOT_DOT] = ACTIONS(2086), + [anon_sym_DOT_DOT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2086), + [anon_sym_DOT_DOT_LT] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), + [anon_sym_null] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = 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(2088), + [aux_sym__val_number_token5] = ACTIONS(2088), + [aux_sym__val_number_token6] = ACTIONS(2088), + [anon_sym_0b] = ACTIONS(2086), + [anon_sym_0o] = ACTIONS(2086), + [anon_sym_0x] = ACTIONS(2086), + [sym_val_date] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym__str_single_quotes] = ACTIONS(2088), + [sym__str_back_ticks] = ACTIONS(2088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2088), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2088), + [anon_sym_err_GT] = ACTIONS(2086), + [anon_sym_out_GT] = ACTIONS(2086), + [anon_sym_e_GT] = ACTIONS(2086), + [anon_sym_o_GT] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT] = ACTIONS(2086), + [anon_sym_err_GT_GT] = ACTIONS(2088), + [anon_sym_out_GT_GT] = ACTIONS(2088), + [anon_sym_e_GT_GT] = ACTIONS(2088), + [anon_sym_o_GT_GT] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [aux_sym_unquoted_token1] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2088), }, - [1512] = { - [sym_comment] = STATE(1512), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_in2] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1647), - [anon_sym_xor2] = ACTIONS(1647), - [anon_sym_or2] = ACTIONS(1647), - [anon_sym_not_DASHin2] = ACTIONS(1647), - [anon_sym_starts_DASHwith2] = ACTIONS(1647), - [anon_sym_ends_DASHwith2] = ACTIONS(1647), - [anon_sym_EQ_EQ2] = ACTIONS(1647), - [anon_sym_BANG_EQ2] = ACTIONS(1647), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1647), - [anon_sym_GT_EQ2] = ACTIONS(1647), - [anon_sym_EQ_TILDE2] = ACTIONS(1647), - [anon_sym_BANG_TILDE2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_STAR_STAR2] = ACTIONS(1647), - [anon_sym_PLUS_PLUS2] = ACTIONS(1647), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1647), - [anon_sym_SLASH_SLASH2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1647), - [anon_sym_bit_DASHshr2] = ACTIONS(1647), - [anon_sym_bit_DASHand2] = ACTIONS(1647), - [anon_sym_bit_DASHxor2] = ACTIONS(1647), - [anon_sym_bit_DASHor2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [1541] = { + [sym_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(4901), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1542] = { + [sym_comment] = STATE(1542), + [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] = 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(251), + [sym_raw_string_begin] = ACTIONS(1020), }, - [1513] = { - [sym_cell_path] = STATE(1863), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1891), - [sym__newline] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_err_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_GT_PIPE] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1891), - [anon_sym_DOT_DOT_LT] = ACTIONS(1891), - [anon_sym_null] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1889), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_0b] = ACTIONS(1889), - [anon_sym_0o] = ACTIONS(1889), - [anon_sym_0x] = ACTIONS(1889), - [sym_val_date] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), - [anon_sym_err_GT] = ACTIONS(1889), - [anon_sym_out_GT] = ACTIONS(1889), - [anon_sym_e_GT] = ACTIONS(1889), - [anon_sym_o_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT] = ACTIONS(1889), - [anon_sym_err_GT_GT] = ACTIONS(1891), - [anon_sym_out_GT_GT] = ACTIONS(1891), - [anon_sym_e_GT_GT] = ACTIONS(1891), - [anon_sym_o_GT_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), - [aux_sym_unquoted_token1] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1891), + [1543] = { + [sym_cell_path] = STATE(1974), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1543), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym_unquoted_token1] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1885), }, - [1514] = { - [sym_comment] = STATE(1514), - [sym__newline] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_PIPE] = ACTIONS(2187), - [anon_sym_err_GT_PIPE] = ACTIONS(2187), - [anon_sym_out_GT_PIPE] = ACTIONS(2187), - [anon_sym_e_GT_PIPE] = ACTIONS(2187), - [anon_sym_o_GT_PIPE] = ACTIONS(2187), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2187), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2187), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2187), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_RPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_DASH2] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2181), - [anon_sym_DOT_DOT2] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2181), - [anon_sym_DOT_DOT_LT] = ACTIONS(2181), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4849), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2187), - [anon_sym_false] = ACTIONS(2187), - [aux_sym__val_number_decimal_token1] = ACTIONS(2181), - [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_0b] = ACTIONS(2181), - [anon_sym_0o] = ACTIONS(2181), - [anon_sym_0x] = ACTIONS(2181), - [sym_val_date] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym__str_single_quotes] = ACTIONS(2187), - [sym__str_back_ticks] = ACTIONS(2187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), - [anon_sym_err_GT] = ACTIONS(2181), - [anon_sym_out_GT] = ACTIONS(2181), - [anon_sym_e_GT] = ACTIONS(2181), - [anon_sym_o_GT] = ACTIONS(2181), - [anon_sym_err_PLUSout_GT] = ACTIONS(2181), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2181), - [anon_sym_o_PLUSe_GT] = ACTIONS(2181), - [anon_sym_e_PLUSo_GT] = ACTIONS(2181), - [anon_sym_err_GT_GT] = ACTIONS(2187), - [anon_sym_out_GT_GT] = ACTIONS(2187), - [anon_sym_e_GT_GT] = ACTIONS(2187), - [anon_sym_o_GT_GT] = ACTIONS(2187), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2187), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2187), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2187), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2187), - [aux_sym_unquoted_token1] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2187), + [1544] = { + [sym_cell_path] = STATE(1959), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1544), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym__newline] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_err_GT_PIPE] = ACTIONS(2051), + [anon_sym_out_GT_PIPE] = ACTIONS(2051), + [anon_sym_e_GT_PIPE] = ACTIONS(2051), + [anon_sym_o_GT_PIPE] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2049), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), + [anon_sym_DOT_DOT_LT] = ACTIONS(2051), + [anon_sym_null] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2049), + [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), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_0b] = ACTIONS(2049), + [anon_sym_0o] = ACTIONS(2049), + [anon_sym_0x] = ACTIONS(2049), + [sym_val_date] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), + [anon_sym_err_GT] = ACTIONS(2049), + [anon_sym_out_GT] = ACTIONS(2049), + [anon_sym_e_GT] = ACTIONS(2049), + [anon_sym_o_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT] = ACTIONS(2049), + [anon_sym_err_GT_GT] = ACTIONS(2051), + [anon_sym_out_GT_GT] = ACTIONS(2051), + [anon_sym_e_GT_GT] = ACTIONS(2051), + [anon_sym_o_GT_GT] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2051), + [aux_sym_unquoted_token1] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2051), }, - [1515] = { - [sym_comment] = STATE(1515), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_EQ_GT] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1010), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [aux_sym_record_entry_token1] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [1545] = { + [sym_comment] = STATE(1545), + [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_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_in2] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1671), + [anon_sym_xor2] = ACTIONS(1671), + [anon_sym_or2] = ACTIONS(1671), + [anon_sym_not_DASHin2] = ACTIONS(1671), + [anon_sym_starts_DASHwith2] = ACTIONS(1671), + [anon_sym_ends_DASHwith2] = ACTIONS(1671), + [anon_sym_EQ_EQ2] = ACTIONS(1671), + [anon_sym_BANG_EQ2] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1671), + [anon_sym_GT_EQ2] = ACTIONS(1671), + [anon_sym_EQ_TILDE2] = ACTIONS(1671), + [anon_sym_BANG_TILDE2] = ACTIONS(1671), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_STAR_STAR2] = ACTIONS(1671), + [anon_sym_PLUS_PLUS2] = ACTIONS(1671), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1671), + [anon_sym_SLASH_SLASH2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1671), + [anon_sym_bit_DASHshr2] = ACTIONS(1671), + [anon_sym_bit_DASHand2] = ACTIONS(1671), + [anon_sym_bit_DASHxor2] = ACTIONS(1671), + [anon_sym_bit_DASHor2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT] = ACTIONS(4903), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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_token2] = ACTIONS(1669), [anon_sym_POUND] = ACTIONS(251), }, - [1516] = { - [sym_cell_path] = STATE(1922), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1516), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1893), + [1546] = { + [sym_comment] = STATE(1546), + [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(251), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [1547] = { + [sym_path] = STATE(1676), + [sym_comment] = STATE(1547), + [aux_sym_cell_path_repeat1] = STATE(1551), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), - [anon_sym_DOT_DOT_LT] = ACTIONS(1895), - [anon_sym_null] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), }, - [1517] = { - [sym_comment] = STATE(1517), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_DOT_DOT2] = ACTIONS(4851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4853), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4853), - [anon_sym_null] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [aux_sym__val_number_decimal_token1] = ACTIONS(2070), - [aux_sym__val_number_decimal_token2] = ACTIONS(2076), - [aux_sym__val_number_decimal_token3] = ACTIONS(2076), - [aux_sym__val_number_decimal_token4] = ACTIONS(2076), - [aux_sym__val_number_token1] = ACTIONS(2076), - [aux_sym__val_number_token2] = ACTIONS(2076), - [aux_sym__val_number_token3] = ACTIONS(2076), - [aux_sym__val_number_token4] = ACTIONS(2076), - [aux_sym__val_number_token5] = ACTIONS(2076), - [aux_sym__val_number_token6] = ACTIONS(2076), - [anon_sym_0b] = ACTIONS(2070), - [anon_sym_0o] = ACTIONS(2070), - [anon_sym_0x] = ACTIONS(2070), - [sym_val_date] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2076), - [sym__str_single_quotes] = ACTIONS(2076), - [sym__str_back_ticks] = ACTIONS(2076), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2070), - [anon_sym_out_GT] = ACTIONS(2070), - [anon_sym_e_GT] = ACTIONS(2070), - [anon_sym_o_GT] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT] = ACTIONS(2070), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [aux_sym_unquoted_token1] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2076), + [1548] = { + [sym_comment] = STATE(1548), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_LT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [anon_sym_null] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [aux_sym__val_number_token4] = ACTIONS(1036), + [aux_sym__val_number_token5] = ACTIONS(1036), + [aux_sym__val_number_token6] = ACTIONS(1036), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_unquoted_token1] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1036), }, - [1518] = { - [sym_comment] = STATE(1518), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2102), - [anon_sym_DOT_DOT_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = 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(2104), - [aux_sym__val_number_token5] = ACTIONS(2104), - [aux_sym__val_number_token6] = ACTIONS(2104), - [anon_sym_0b] = ACTIONS(2102), - [anon_sym_0o] = ACTIONS(2102), - [anon_sym_0x] = ACTIONS(2102), - [sym_val_date] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), - [aux_sym_unquoted_token1] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [1519] = { - [sym_comment] = STATE(1519), - [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(2078), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_DOT_DOT2] = ACTIONS(4855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2078), - [anon_sym_DOT_DOT_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4857), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4857), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2078), - [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(2078), - [anon_sym_0o] = ACTIONS(2078), - [anon_sym_0x] = ACTIONS(2078), - [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(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(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(2078), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2084), - }, - [1520] = { - [sym_comment] = STATE(1520), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1639), - [anon_sym_in2] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1637), - [anon_sym_POUND] = ACTIONS(251), - }, - [1521] = { - [sym_comment] = STATE(1521), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_EQ_GT] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [aux_sym_record_entry_token1] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - }, - [1522] = { - [sym_comment] = STATE(1522), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_EQ_GT] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [aux_sym_record_entry_token1] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - }, - [1523] = { - [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_in2] = ACTIONS(1647), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1647), - [anon_sym_xor2] = ACTIONS(1647), - [anon_sym_or2] = ACTIONS(1647), - [anon_sym_not_DASHin2] = ACTIONS(1647), - [anon_sym_starts_DASHwith2] = ACTIONS(1647), - [anon_sym_ends_DASHwith2] = ACTIONS(1647), - [anon_sym_EQ_EQ2] = ACTIONS(1647), - [anon_sym_BANG_EQ2] = ACTIONS(1647), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1647), - [anon_sym_GT_EQ2] = ACTIONS(1647), - [anon_sym_EQ_TILDE2] = ACTIONS(1647), - [anon_sym_BANG_TILDE2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_STAR_STAR2] = ACTIONS(1647), - [anon_sym_PLUS_PLUS2] = ACTIONS(1647), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1647), - [anon_sym_SLASH_SLASH2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1647), - [anon_sym_bit_DASHshr2] = ACTIONS(1647), - [anon_sym_bit_DASHand2] = ACTIONS(1647), - [anon_sym_bit_DASHxor2] = ACTIONS(1647), - [anon_sym_bit_DASHor2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT] = ACTIONS(4859), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4861), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), - }, - [1524] = { - [sym_comment] = STATE(1524), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1525] = { - [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4827), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1526] = { - [sym_comment] = STATE(1526), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [1527] = { - [sym_comment] = STATE(1527), - [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_DASH2] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT2] = ACTIONS(4863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_LT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1040), - [aux_sym__val_number_token5] = ACTIONS(1040), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [1528] = { - [sym_comment] = STATE(1528), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [1529] = { - [sym_comment] = STATE(1529), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), - [anon_sym_DOT_DOT_LT] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1826), - [aux_sym__val_number_token5] = ACTIONS(1826), - [aux_sym__val_number_token6] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), - }, - [1530] = { - [sym_cell_path] = STATE(1887), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1530), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1907), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_DASH_DASH] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), - [anon_sym_DOT_DOT_LT] = ACTIONS(1907), - [anon_sym_null] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_0b] = ACTIONS(1905), - [anon_sym_0o] = ACTIONS(1905), - [anon_sym_0x] = ACTIONS(1905), - [sym_val_date] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), - [anon_sym_err_GT] = ACTIONS(1905), - [anon_sym_out_GT] = ACTIONS(1905), - [anon_sym_e_GT] = ACTIONS(1905), - [anon_sym_o_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT] = ACTIONS(1905), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), - [aux_sym_unquoted_token1] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1907), - }, - [1531] = { - [sym_cell_path] = STATE(1888), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1531), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1549] = { + [sym_cell_path] = STATE(1983), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1549), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1911), [sym__newline] = ACTIONS(1911), [anon_sym_SEMI] = ACTIONS(1911), @@ -226001,7 +229958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1909), [anon_sym_LBRACE] = ACTIONS(1911), [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), [anon_sym_DOT_DOT_LT] = ACTIONS(1911), [anon_sym_null] = ACTIONS(1911), @@ -226046,356 +230003,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1911), }, - [1532] = { - [sym_comment] = STATE(1532), - [sym__newline] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_err_GT_PIPE] = ACTIONS(2094), - [anon_sym_out_GT_PIPE] = ACTIONS(2094), - [anon_sym_e_GT_PIPE] = ACTIONS(2094), - [anon_sym_o_GT_PIPE] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2088), - [anon_sym_DOT_DOT2] = ACTIONS(4867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT] = ACTIONS(2088), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4869), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4869), - [anon_sym_null] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2094), - [anon_sym_false] = ACTIONS(2094), - [aux_sym__val_number_decimal_token1] = ACTIONS(2088), - [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_0b] = ACTIONS(2088), - [anon_sym_0o] = ACTIONS(2088), - [anon_sym_0x] = ACTIONS(2088), - [sym_val_date] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2094), - [sym__str_single_quotes] = ACTIONS(2094), - [sym__str_back_ticks] = ACTIONS(2094), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2094), - [anon_sym_err_GT] = ACTIONS(2088), - [anon_sym_out_GT] = ACTIONS(2088), - [anon_sym_e_GT] = ACTIONS(2088), - [anon_sym_o_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT] = ACTIONS(2088), - [anon_sym_err_GT_GT] = ACTIONS(2094), - [anon_sym_out_GT_GT] = ACTIONS(2094), - [anon_sym_e_GT_GT] = ACTIONS(2094), - [anon_sym_o_GT_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), - [aux_sym_unquoted_token1] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2094), - }, - [1533] = { - [sym_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1639), - [anon_sym_in2] = ACTIONS(1639), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [aux_sym__immediate_decimal_token1] = ACTIONS(4871), - [aux_sym__immediate_decimal_token2] = ACTIONS(4873), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1637), + [1550] = { + [sym_comment] = STATE(1550), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_GT2] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1773), + [anon_sym_in2] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_STAR2] = ACTIONS(1771), + [anon_sym_and2] = ACTIONS(1773), + [anon_sym_xor2] = ACTIONS(1773), + [anon_sym_or2] = ACTIONS(1773), + [anon_sym_not_DASHin2] = ACTIONS(1773), + [anon_sym_starts_DASHwith2] = ACTIONS(1773), + [anon_sym_ends_DASHwith2] = ACTIONS(1773), + [anon_sym_EQ_EQ2] = ACTIONS(1773), + [anon_sym_BANG_EQ2] = ACTIONS(1773), + [anon_sym_LT2] = ACTIONS(1771), + [anon_sym_LT_EQ2] = ACTIONS(1773), + [anon_sym_GT_EQ2] = ACTIONS(1773), + [anon_sym_EQ_TILDE2] = ACTIONS(1773), + [anon_sym_BANG_TILDE2] = ACTIONS(1773), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_STAR_STAR2] = ACTIONS(1773), + [anon_sym_PLUS_PLUS2] = ACTIONS(1773), + [anon_sym_SLASH2] = ACTIONS(1771), + [anon_sym_mod2] = ACTIONS(1773), + [anon_sym_SLASH_SLASH2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_bit_DASHshl2] = ACTIONS(1773), + [anon_sym_bit_DASHshr2] = ACTIONS(1773), + [anon_sym_bit_DASHand2] = ACTIONS(1773), + [anon_sym_bit_DASHxor2] = ACTIONS(1773), + [anon_sym_bit_DASHor2] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(4911), + [aux_sym__immediate_decimal_token2] = ACTIONS(4913), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), }, - [1534] = { - [sym_cell_path] = STATE(1929), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1534), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_LT] = ACTIONS(1899), - [anon_sym_null] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1899), - [aux_sym__val_number_token5] = ACTIONS(1899), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1899), - }, - [1535] = { - [sym_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(4875), - [aux_sym__immediate_decimal_token2] = ACTIONS(4877), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [1551] = { + [sym_path] = STATE(1676), + [sym_comment] = STATE(1551), + [aux_sym_cell_path_repeat1] = STATE(1551), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(4915), + [anon_sym_DOT_DOT_EQ] = ACTIONS(977), + [anon_sym_DOT_DOT_LT] = ACTIONS(977), + [anon_sym_null] = ACTIONS(977), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(977), + [aux_sym__val_number_token5] = ACTIONS(977), + [aux_sym__val_number_token6] = ACTIONS(977), + [anon_sym_0b] = ACTIONS(975), + [anon_sym_0o] = ACTIONS(975), + [anon_sym_0x] = ACTIONS(975), + [sym_val_date] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [aux_sym_unquoted_token1] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(977), }, - [1536] = { - [sym_comment] = STATE(1536), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [aux_sym__val_number_token4] = ACTIONS(1058), - [aux_sym__val_number_token5] = ACTIONS(1058), - [aux_sym__val_number_token6] = ACTIONS(1058), - [anon_sym_0b] = ACTIONS(1056), - [anon_sym_0o] = ACTIONS(1056), - [anon_sym_0x] = ACTIONS(1056), - [sym_val_date] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [aux_sym_unquoted_token1] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1058), + [1552] = { + [sym_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1663), + [anon_sym_GT_EQ2] = ACTIONS(1663), + [anon_sym_EQ_TILDE2] = ACTIONS(1663), + [anon_sym_BANG_TILDE2] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token1] = ACTIONS(4918), + [aux_sym__immediate_decimal_token2] = ACTIONS(4920), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), }, - [1537] = { - [sym_cell_path] = STATE(1889), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1537), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1553] = { + [sym_cell_path] = STATE(1984), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1553), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1919), [sym__newline] = ACTIONS(1919), [anon_sym_SEMI] = ACTIONS(1919), @@ -226415,7 +230234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1917), [anon_sym_LBRACE] = ACTIONS(1919), [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), [anon_sym_DOT_DOT_LT] = ACTIONS(1919), [anon_sym_null] = ACTIONS(1919), @@ -226460,356 +230279,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1919), }, - [1538] = { - [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(1040), - [anon_sym_EQ] = ACTIONS(4879), - [anon_sym_PLUS_EQ] = ACTIONS(4881), - [anon_sym_DASH_EQ] = ACTIONS(4881), - [anon_sym_STAR_EQ] = ACTIONS(4881), - [anon_sym_SLASH_EQ] = ACTIONS(4881), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4881), - [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_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1040), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(4883), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4885), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4885), - [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(251), - }, - [1539] = { - [sym_comment] = STATE(1539), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_EQ_GT] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [aux_sym_record_entry_token1] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - }, - [1540] = { - [sym_cell_path] = STATE(1682), - [sym_path] = STATE(1590), - [sym_comment] = STATE(1540), - [aux_sym_cell_path_repeat1] = STATE(1591), - [sym__newline] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_err_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_GT_PIPE] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1775), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_GT2] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1775), - [anon_sym_in2] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_STAR2] = ACTIONS(1771), - [anon_sym_and2] = ACTIONS(1775), - [anon_sym_xor2] = ACTIONS(1775), - [anon_sym_or2] = ACTIONS(1775), - [anon_sym_not_DASHin2] = ACTIONS(1775), - [anon_sym_starts_DASHwith2] = ACTIONS(1775), - [anon_sym_ends_DASHwith2] = ACTIONS(1775), - [anon_sym_EQ_EQ2] = ACTIONS(1775), - [anon_sym_BANG_EQ2] = ACTIONS(1775), - [anon_sym_LT2] = ACTIONS(1771), - [anon_sym_LT_EQ2] = ACTIONS(1775), - [anon_sym_GT_EQ2] = ACTIONS(1775), - [anon_sym_EQ_TILDE2] = ACTIONS(1775), - [anon_sym_BANG_TILDE2] = ACTIONS(1775), - [anon_sym_STAR_STAR2] = ACTIONS(1775), - [anon_sym_PLUS_PLUS2] = ACTIONS(1775), - [anon_sym_SLASH2] = ACTIONS(1771), - [anon_sym_mod2] = ACTIONS(1775), - [anon_sym_SLASH_SLASH2] = ACTIONS(1775), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_bit_DASHshl2] = ACTIONS(1775), - [anon_sym_bit_DASHshr2] = ACTIONS(1775), - [anon_sym_bit_DASHand2] = ACTIONS(1775), - [anon_sym_bit_DASHxor2] = ACTIONS(1775), - [anon_sym_bit_DASHor2] = ACTIONS(1775), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1775), - [anon_sym_out_GT_GT] = ACTIONS(1775), - [anon_sym_e_GT_GT] = ACTIONS(1775), - [anon_sym_o_GT_GT] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(251), - }, - [1541] = { - [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(1028), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), - [anon_sym_DOT_DOT_LT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [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(1028), - [aux_sym__val_number_token5] = ACTIONS(1028), - [aux_sym__val_number_token6] = ACTIONS(1028), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1028), - }, - [1542] = { - [sym_cell_path] = STATE(1890), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1542), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1923), - [sym__newline] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_err_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_GT_PIPE] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1923), - [anon_sym_DOT_DOT_LT] = ACTIONS(1923), - [anon_sym_null] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1923), - [aux_sym__val_number_token5] = ACTIONS(1923), - [aux_sym__val_number_token6] = 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), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1923), - [anon_sym_out_GT_GT] = ACTIONS(1923), - [anon_sym_e_GT_GT] = ACTIONS(1923), - [anon_sym_o_GT_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1923), - [aux_sym_unquoted_token1] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1923), - }, - [1543] = { - [sym_cell_path] = STATE(1891), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1543), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1554] = { + [sym_cell_path] = STATE(1986), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1554), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1927), [sym__newline] = ACTIONS(1927), [anon_sym_SEMI] = ACTIONS(1927), @@ -226829,7 +230303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1925), [anon_sym_LBRACE] = ACTIONS(1927), [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), [anon_sym_DOT_DOT_LT] = ACTIONS(1927), [anon_sym_null] = ACTIONS(1927), @@ -226874,356 +230348,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1927), }, - [1544] = { - [sym_comment] = STATE(1544), - [sym__newline] = ACTIONS(4889), - [anon_sym_SEMI] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4889), - [anon_sym_err_GT_PIPE] = ACTIONS(4889), - [anon_sym_out_GT_PIPE] = ACTIONS(4889), - [anon_sym_e_GT_PIPE] = ACTIONS(4889), - [anon_sym_o_GT_PIPE] = ACTIONS(4889), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4889), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4889), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4889), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_DASH_DASH] = ACTIONS(4889), - [anon_sym_DASH2] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_DOT_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT2] = ACTIONS(4863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4891), - [anon_sym_DOT_DOT_LT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(4889), - [anon_sym_true] = ACTIONS(4889), - [anon_sym_false] = ACTIONS(4889), - [aux_sym__val_number_decimal_token1] = ACTIONS(4891), - [aux_sym__val_number_decimal_token2] = ACTIONS(4889), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_decimal_token4] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(4889), - [aux_sym__val_number_token2] = ACTIONS(4889), - [aux_sym__val_number_token3] = ACTIONS(4889), - [aux_sym__val_number_token4] = ACTIONS(4889), - [aux_sym__val_number_token5] = ACTIONS(4889), - [aux_sym__val_number_token6] = ACTIONS(4889), - [anon_sym_0b] = ACTIONS(4891), - [anon_sym_0o] = ACTIONS(4891), - [anon_sym_0x] = ACTIONS(4891), - [sym_val_date] = ACTIONS(4889), - [anon_sym_DQUOTE] = ACTIONS(4889), - [sym__str_single_quotes] = ACTIONS(4889), - [sym__str_back_ticks] = ACTIONS(4889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4889), - [anon_sym_err_GT] = ACTIONS(4891), - [anon_sym_out_GT] = ACTIONS(4891), - [anon_sym_e_GT] = ACTIONS(4891), - [anon_sym_o_GT] = ACTIONS(4891), - [anon_sym_err_PLUSout_GT] = ACTIONS(4891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4891), - [anon_sym_o_PLUSe_GT] = ACTIONS(4891), - [anon_sym_e_PLUSo_GT] = ACTIONS(4891), - [anon_sym_err_GT_GT] = ACTIONS(4889), - [anon_sym_out_GT_GT] = ACTIONS(4889), - [anon_sym_e_GT_GT] = ACTIONS(4889), - [anon_sym_o_GT_GT] = ACTIONS(4889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4889), - [aux_sym_unquoted_token1] = ACTIONS(4891), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4889), - }, - [1545] = { - [sym_comment] = STATE(1545), - [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_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(4893), - [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), + [1555] = { + [sym_comment] = STATE(1555), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(4922), + [aux_sym__immediate_decimal_token2] = ACTIONS(4924), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [1546] = { - [sym_comment] = STATE(1546), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_GT2] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_EQ_GT] = ACTIONS(1014), - [anon_sym_STAR2] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(4895), - [anon_sym_and2] = ACTIONS(1014), - [anon_sym_xor2] = ACTIONS(1014), - [anon_sym_or2] = ACTIONS(1014), - [anon_sym_not_DASHin2] = ACTIONS(1014), - [anon_sym_starts_DASHwith2] = ACTIONS(1014), - [anon_sym_ends_DASHwith2] = ACTIONS(1014), - [anon_sym_EQ_EQ2] = ACTIONS(1014), - [anon_sym_BANG_EQ2] = ACTIONS(1014), - [anon_sym_LT2] = ACTIONS(1012), - [anon_sym_LT_EQ2] = ACTIONS(1014), - [anon_sym_GT_EQ2] = ACTIONS(1014), - [anon_sym_EQ_TILDE2] = ACTIONS(1014), - [anon_sym_BANG_TILDE2] = ACTIONS(1014), - [anon_sym_STAR_STAR2] = ACTIONS(1014), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1012), - [anon_sym_mod2] = ACTIONS(1014), - [anon_sym_SLASH_SLASH2] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1012), - [anon_sym_bit_DASHshl2] = ACTIONS(1014), - [anon_sym_bit_DASHshr2] = ACTIONS(1014), - [anon_sym_bit_DASHand2] = ACTIONS(1014), - [anon_sym_bit_DASHxor2] = ACTIONS(1014), - [anon_sym_bit_DASHor2] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), + [1556] = { + [sym_comment] = STATE(1556), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_err_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_GT_PIPE] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_EQ_GT] = ACTIONS(1006), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_QMARK2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1006), + [anon_sym_xor2] = ACTIONS(1006), + [anon_sym_or2] = ACTIONS(1006), + [anon_sym_not_DASHin2] = ACTIONS(1006), + [anon_sym_starts_DASHwith2] = ACTIONS(1006), + [anon_sym_ends_DASHwith2] = ACTIONS(1006), + [anon_sym_EQ_EQ2] = ACTIONS(1006), + [anon_sym_BANG_EQ2] = ACTIONS(1006), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1006), + [anon_sym_GT_EQ2] = ACTIONS(1006), + [anon_sym_EQ_TILDE2] = ACTIONS(1006), + [anon_sym_BANG_TILDE2] = ACTIONS(1006), + [anon_sym_STAR_STAR2] = ACTIONS(1006), + [anon_sym_PLUS_PLUS2] = ACTIONS(1006), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1006), + [anon_sym_SLASH_SLASH2] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1006), + [anon_sym_bit_DASHshr2] = ACTIONS(1006), + [anon_sym_bit_DASHand2] = ACTIONS(1006), + [anon_sym_bit_DASHxor2] = ACTIONS(1006), + [anon_sym_bit_DASHor2] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), + [aux_sym_record_entry_token1] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1006), + [anon_sym_out_GT_GT] = ACTIONS(1006), + [anon_sym_e_GT_GT] = ACTIONS(1006), + [anon_sym_o_GT_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(251), }, - [1547] = { - [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), - [anon_sym_DOT_DOT_LT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1024), - [aux_sym__val_number_token5] = ACTIONS(1024), - [aux_sym__val_number_token6] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), + [1557] = { + [sym_comment] = STATE(1557), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_DOLLAR] = ACTIONS(2098), + [anon_sym_DASH_DASH] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_DOT_DOT] = ACTIONS(2098), + [anon_sym_DOT_DOT2] = ACTIONS(4926), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2098), + [anon_sym_DOT_DOT_LT] = ACTIONS(2098), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4928), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4928), + [anon_sym_null] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2104), + [anon_sym_false] = ACTIONS(2104), + [aux_sym__val_number_decimal_token1] = ACTIONS(2098), + [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(2104), + [aux_sym__val_number_token5] = ACTIONS(2104), + [aux_sym__val_number_token6] = ACTIONS(2104), + [anon_sym_0b] = ACTIONS(2098), + [anon_sym_0o] = ACTIONS(2098), + [anon_sym_0x] = ACTIONS(2098), + [sym_val_date] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(2104), + [sym__str_single_quotes] = ACTIONS(2104), + [sym__str_back_ticks] = ACTIONS(2104), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), + [anon_sym_err_GT] = ACTIONS(2098), + [anon_sym_out_GT] = ACTIONS(2098), + [anon_sym_e_GT] = ACTIONS(2098), + [anon_sym_o_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT] = ACTIONS(2098), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [aux_sym_unquoted_token1] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), + [sym_raw_string_begin] = ACTIONS(2104), }, - [1548] = { - [sym_comment] = STATE(1548), - [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] = 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), + [1558] = { + [sym_comment] = STATE(1558), + [sym__newline] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_err_GT_PIPE] = ACTIONS(2137), + [anon_sym_out_GT_PIPE] = ACTIONS(2137), + [anon_sym_e_GT_PIPE] = ACTIONS(2137), + [anon_sym_o_GT_PIPE] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_DASH2] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_DOT_DOT2] = ACTIONS(4930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4932), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2137), + [aux_sym__val_number_decimal_token3] = ACTIONS(2137), + [aux_sym__val_number_decimal_token4] = ACTIONS(2137), + [aux_sym__val_number_token1] = ACTIONS(2137), + [aux_sym__val_number_token2] = ACTIONS(2137), + [aux_sym__val_number_token3] = ACTIONS(2137), + [aux_sym__val_number_token4] = ACTIONS(2137), + [aux_sym__val_number_token5] = ACTIONS(2137), + [aux_sym__val_number_token6] = ACTIONS(2137), + [anon_sym_0b] = ACTIONS(2131), + [anon_sym_0o] = ACTIONS(2131), + [anon_sym_0x] = ACTIONS(2131), + [sym_val_date] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [sym__str_single_quotes] = ACTIONS(2137), + [sym__str_back_ticks] = ACTIONS(2137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2137), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2137), + [anon_sym_err_GT] = ACTIONS(2131), + [anon_sym_out_GT] = ACTIONS(2131), + [anon_sym_e_GT] = ACTIONS(2131), + [anon_sym_o_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT] = ACTIONS(2131), + [anon_sym_err_GT_GT] = ACTIONS(2137), + [anon_sym_out_GT_GT] = ACTIONS(2137), + [anon_sym_e_GT_GT] = ACTIONS(2137), + [anon_sym_o_GT_GT] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2137), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2137), + }, + [1559] = { + [sym_comment] = STATE(1559), + [sym__newline] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_err_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_GT_PIPE] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_DOT_DOT2] = ACTIONS(4934), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [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_0b] = ACTIONS(2072), + [anon_sym_0o] = ACTIONS(2072), + [anon_sym_0x] = ACTIONS(2072), + [sym_val_date] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [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(2078), + [anon_sym_out_GT_GT] = ACTIONS(2078), + [anon_sym_e_GT_GT] = ACTIONS(2078), + [anon_sym_o_GT_GT] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2078), + [aux_sym_unquoted_token1] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [1560] = { + [sym__expr_parenthesized_immediate] = STATE(8201), + [sym_comment] = STATE(1560), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_in2] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(4938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4940), + [sym_filesize_unit] = ACTIONS(4942), + [sym_duration_unit] = ACTIONS(4944), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token2] = ACTIONS(4946), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), }, - [1549] = { - [sym_cell_path] = STATE(1892), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1549), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1561] = { + [sym_cell_path] = STATE(1987), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1561), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1931), [sym__newline] = ACTIONS(1931), [anon_sym_SEMI] = ACTIONS(1931), @@ -227243,7 +230786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1929), [anon_sym_LBRACE] = ACTIONS(1931), [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), [anon_sym_DOT_DOT_LT] = ACTIONS(1931), [anon_sym_null] = ACTIONS(1931), @@ -227288,149 +230831,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1931), }, - [1550] = { - [sym_path] = STATE(1663), - [sym_comment] = STATE(1550), - [aux_sym_cell_path_repeat1] = STATE(1553), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [1551] = { - [sym_comment] = STATE(1551), - [sym__newline] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_err_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_GT_PIPE] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1783), - [anon_sym_xor2] = ACTIONS(1783), - [anon_sym_or2] = ACTIONS(1783), - [anon_sym_not_DASHin2] = ACTIONS(1783), - [anon_sym_starts_DASHwith2] = ACTIONS(1783), - [anon_sym_ends_DASHwith2] = ACTIONS(1783), - [anon_sym_EQ_EQ2] = ACTIONS(1783), - [anon_sym_BANG_EQ2] = ACTIONS(1783), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1783), - [anon_sym_GT_EQ2] = ACTIONS(1783), - [anon_sym_EQ_TILDE2] = ACTIONS(1783), - [anon_sym_BANG_TILDE2] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1783), - [anon_sym_STAR_STAR2] = ACTIONS(1783), - [anon_sym_PLUS_PLUS2] = ACTIONS(1783), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1783), - [anon_sym_SLASH_SLASH2] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1783), - [anon_sym_bit_DASHshr2] = ACTIONS(1783), - [anon_sym_bit_DASHand2] = ACTIONS(1783), - [anon_sym_bit_DASHxor2] = ACTIONS(1783), - [anon_sym_bit_DASHor2] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1783), - [anon_sym_out_GT_GT] = ACTIONS(1783), - [anon_sym_e_GT_GT] = ACTIONS(1783), - [anon_sym_o_GT_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), + [1562] = { + [sym_cell_path] = STATE(1965), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1562), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1873), + [aux_sym__val_number_token5] = ACTIONS(1873), + [aux_sym__val_number_token6] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1873), }, - [1552] = { - [sym_cell_path] = STATE(1893), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1552), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1563] = { + [sym_cell_path] = STATE(1990), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1563), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1935), [sym__newline] = ACTIONS(1935), [anon_sym_SEMI] = ACTIONS(1935), @@ -227450,7 +230924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1933), [anon_sym_LBRACE] = ACTIONS(1935), [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), [anon_sym_DOT_DOT_LT] = ACTIONS(1935), [anon_sym_null] = ACTIONS(1935), @@ -227495,80 +230969,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1935), }, - [1553] = { - [sym_path] = STATE(1663), - [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1553), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_DOT_DOT_LT] = ACTIONS(981), - [anon_sym_null] = ACTIONS(981), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(981), - [aux_sym__val_number_token5] = ACTIONS(981), - [aux_sym__val_number_token6] = ACTIONS(981), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [aux_sym_unquoted_token1] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), + [1564] = { + [sym_cell_path] = STATE(1966), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1564), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1877), }, - [1554] = { - [sym_cell_path] = STATE(1894), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1554), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1565] = { + [sym_comment] = STATE(1565), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1566] = { + [sym_cell_path] = STATE(1993), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1566), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1939), [sym__newline] = ACTIONS(1939), [anon_sym_SEMI] = ACTIONS(1939), @@ -227588,7 +231131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1937), [anon_sym_LBRACE] = ACTIONS(1939), [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), [anon_sym_DOT_DOT_LT] = ACTIONS(1939), [anon_sym_null] = ACTIONS(1939), @@ -227633,102 +231176,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1939), }, - [1555] = { - [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(1803), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(4900), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [1567] = { + [sym_cell_path] = STATE(1934), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1567), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1951), + [sym__newline] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_err_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_GT_PIPE] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), + [anon_sym_DOT_DOT_LT] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [aux_sym__val_number_token4] = ACTIONS(1951), + [aux_sym__val_number_token5] = ACTIONS(1951), + [aux_sym__val_number_token6] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1949), + [anon_sym_0x] = ACTIONS(1949), + [sym_val_date] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1951), + [anon_sym_out_GT_GT] = ACTIONS(1951), + [anon_sym_e_GT_GT] = ACTIONS(1951), + [anon_sym_o_GT_GT] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), + [aux_sym_unquoted_token1] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1951), }, - [1556] = { - [sym_cell_path] = STATE(1895), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1556), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1943), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), + [1568] = { + [sym_comment] = STATE(1568), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1569] = { + [sym_comment] = STATE(1569), + [sym__newline] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_err_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_GT_PIPE] = ACTIONS(1671), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_in2] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1671), + [anon_sym_xor2] = ACTIONS(1671), + [anon_sym_or2] = ACTIONS(1671), + [anon_sym_not_DASHin2] = ACTIONS(1671), + [anon_sym_starts_DASHwith2] = ACTIONS(1671), + [anon_sym_ends_DASHwith2] = ACTIONS(1671), + [anon_sym_EQ_EQ2] = ACTIONS(1671), + [anon_sym_BANG_EQ2] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1671), + [anon_sym_GT_EQ2] = ACTIONS(1671), + [anon_sym_EQ_TILDE2] = ACTIONS(1671), + [anon_sym_BANG_TILDE2] = ACTIONS(1671), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_STAR_STAR2] = ACTIONS(1671), + [anon_sym_PLUS_PLUS2] = ACTIONS(1671), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1671), + [anon_sym_SLASH_SLASH2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1671), + [anon_sym_bit_DASHshr2] = ACTIONS(1671), + [anon_sym_bit_DASHand2] = ACTIONS(1671), + [anon_sym_bit_DASHxor2] = ACTIONS(1671), + [anon_sym_bit_DASHor2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + }, + [1570] = { + [sym_comment] = STATE(1570), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), + [anon_sym_DOT_DOT_LT] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_0b] = ACTIONS(1818), + [anon_sym_0o] = ACTIONS(1818), + [anon_sym_0x] = ACTIONS(1818), + [sym_val_date] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [aux_sym_unquoted_token1] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [1571] = { + [sym_comment] = STATE(1571), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_EQ_GT] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1000), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1000), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), + [aux_sym_record_entry_token1] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1000), + [anon_sym_out_GT] = ACTIONS(1000), + [anon_sym_e_GT] = ACTIONS(1000), + [anon_sym_o_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT] = ACTIONS(1000), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(251), + }, + [1572] = { + [sym_comment] = STATE(1572), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_RPAREN] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [anon_sym_DASH2] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2123), + [anon_sym_DOT_DOT2] = ACTIONS(2123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2123), + [anon_sym_DOT_DOT_LT] = ACTIONS(2123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), + [anon_sym_null] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [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_0b] = ACTIONS(2123), + [anon_sym_0o] = ACTIONS(2123), + [anon_sym_0x] = ACTIONS(2123), + [sym_val_date] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [sym__str_single_quotes] = ACTIONS(2125), + [sym__str_back_ticks] = ACTIONS(2125), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), + [anon_sym_err_GT] = ACTIONS(2123), + [anon_sym_out_GT] = ACTIONS(2123), + [anon_sym_e_GT] = ACTIONS(2123), + [anon_sym_o_GT] = ACTIONS(2123), + [anon_sym_err_PLUSout_GT] = ACTIONS(2123), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), + [anon_sym_o_PLUSe_GT] = ACTIONS(2123), + [anon_sym_e_PLUSo_GT] = ACTIONS(2123), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [aux_sym_unquoted_token1] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2125), + }, + [1573] = { + [sym_comment] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4950), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1574] = { + [sym__expr_parenthesized_immediate] = STATE(2650), + [sym__immediate_decimal] = STATE(2672), + [sym_val_variable] = STATE(2650), + [sym_comment] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1643), + [sym__newline] = ACTIONS(1643), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_PIPE] = ACTIONS(1643), + [anon_sym_err_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_GT_PIPE] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(4877), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_in2] = ACTIONS(1643), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1643), + [anon_sym_xor2] = ACTIONS(1643), + [anon_sym_or2] = ACTIONS(1643), + [anon_sym_not_DASHin2] = ACTIONS(1643), + [anon_sym_starts_DASHwith2] = ACTIONS(1643), + [anon_sym_ends_DASHwith2] = ACTIONS(1643), + [anon_sym_EQ_EQ2] = ACTIONS(1643), + [anon_sym_BANG_EQ2] = ACTIONS(1643), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1643), + [anon_sym_GT_EQ2] = ACTIONS(1643), + [anon_sym_EQ_TILDE2] = ACTIONS(1643), + [anon_sym_BANG_TILDE2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(4831), + [anon_sym_STAR_STAR2] = ACTIONS(1643), + [anon_sym_PLUS_PLUS2] = ACTIONS(1643), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1643), + [anon_sym_SLASH_SLASH2] = ACTIONS(1643), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1643), + [anon_sym_bit_DASHshr2] = ACTIONS(1643), + [anon_sym_bit_DASHand2] = ACTIONS(1643), + [anon_sym_bit_DASHxor2] = ACTIONS(1643), + [anon_sym_bit_DASHor2] = ACTIONS(1643), + [aux_sym__immediate_decimal_token1] = ACTIONS(4889), + [aux_sym__immediate_decimal_token3] = ACTIONS(4889), + [aux_sym__immediate_decimal_token4] = ACTIONS(4837), + [aux_sym__immediate_decimal_token5] = ACTIONS(4839), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1643), + [anon_sym_out_GT_GT] = ACTIONS(1643), + [anon_sym_e_GT_GT] = ACTIONS(1643), + [anon_sym_o_GT_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [anon_sym_POUND] = ACTIONS(251), + }, + [1575] = { + [sym_cell_path] = STATE(1964), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1575), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1943), + [sym__newline] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_err_GT_PIPE] = ACTIONS(1943), + [anon_sym_out_GT_PIPE] = ACTIONS(1943), + [anon_sym_e_GT_PIPE] = ACTIONS(1943), + [anon_sym_o_GT_PIPE] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1943), + [anon_sym_DOLLAR] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1943), + [anon_sym_DASH2] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1941), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), + [anon_sym_DOT_DOT_LT] = ACTIONS(1943), [anon_sym_null] = ACTIONS(1943), [anon_sym_true] = ACTIONS(1943), [anon_sym_false] = ACTIONS(1943), @@ -227771,287 +231797,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1943), }, - [1557] = { - [sym_comment] = STATE(1557), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4809), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1558] = { - [sym_cell_path] = STATE(1897), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1558), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1947), - [aux_sym__val_number_token5] = ACTIONS(1947), - [aux_sym__val_number_token6] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), - }, - [1559] = { - [sym_cell_path] = STATE(1898), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1559), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [aux_sym__val_number_token4] = ACTIONS(1951), - [aux_sym__val_number_token5] = ACTIONS(1951), - [aux_sym__val_number_token6] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), - }, - [1560] = { - [sym_cell_path] = STATE(1702), - [sym_path] = STATE(1590), - [sym_comment] = STATE(1560), - [aux_sym_cell_path_repeat1] = STATE(1591), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_GT2] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_STAR2] = ACTIONS(1777), - [anon_sym_and2] = ACTIONS(1779), - [anon_sym_xor2] = ACTIONS(1779), - [anon_sym_or2] = ACTIONS(1779), - [anon_sym_not_DASHin2] = ACTIONS(1779), - [anon_sym_starts_DASHwith2] = ACTIONS(1779), - [anon_sym_ends_DASHwith2] = ACTIONS(1779), - [anon_sym_EQ_EQ2] = ACTIONS(1779), - [anon_sym_BANG_EQ2] = ACTIONS(1779), - [anon_sym_LT2] = ACTIONS(1777), - [anon_sym_LT_EQ2] = ACTIONS(1779), - [anon_sym_GT_EQ2] = ACTIONS(1779), - [anon_sym_EQ_TILDE2] = ACTIONS(1779), - [anon_sym_BANG_TILDE2] = ACTIONS(1779), - [anon_sym_STAR_STAR2] = ACTIONS(1779), - [anon_sym_PLUS_PLUS2] = ACTIONS(1779), - [anon_sym_SLASH2] = ACTIONS(1777), - [anon_sym_mod2] = ACTIONS(1779), - [anon_sym_SLASH_SLASH2] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1777), - [anon_sym_bit_DASHshl2] = ACTIONS(1779), - [anon_sym_bit_DASHshr2] = ACTIONS(1779), - [anon_sym_bit_DASHand2] = ACTIONS(1779), - [anon_sym_bit_DASHxor2] = ACTIONS(1779), - [anon_sym_bit_DASHor2] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), + [1576] = { + [sym_comment] = STATE(1576), + [sym__newline] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_err_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_GT_PIPE] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_DASH2] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), + [anon_sym_DOT_DOT_LT] = ACTIONS(4954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [aux_sym__val_number_decimal_token1] = ACTIONS(4954), + [aux_sym__val_number_decimal_token2] = ACTIONS(4952), + [aux_sym__val_number_decimal_token3] = ACTIONS(4952), + [aux_sym__val_number_decimal_token4] = ACTIONS(4952), + [aux_sym__val_number_token1] = ACTIONS(4952), + [aux_sym__val_number_token2] = ACTIONS(4952), + [aux_sym__val_number_token3] = ACTIONS(4952), + [aux_sym__val_number_token4] = ACTIONS(4952), + [aux_sym__val_number_token5] = ACTIONS(4952), + [aux_sym__val_number_token6] = ACTIONS(4952), + [anon_sym_0b] = ACTIONS(4954), + [anon_sym_0o] = ACTIONS(4954), + [anon_sym_0x] = ACTIONS(4954), + [sym_val_date] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [sym__str_single_quotes] = ACTIONS(4952), + [sym__str_back_ticks] = ACTIONS(4952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), + [anon_sym_err_GT] = ACTIONS(4954), + [anon_sym_out_GT] = ACTIONS(4954), + [anon_sym_e_GT] = ACTIONS(4954), + [anon_sym_o_GT] = ACTIONS(4954), + [anon_sym_err_PLUSout_GT] = ACTIONS(4954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4954), + [anon_sym_o_PLUSe_GT] = ACTIONS(4954), + [anon_sym_e_PLUSo_GT] = ACTIONS(4954), + [anon_sym_err_GT_GT] = ACTIONS(4952), + [anon_sym_out_GT_GT] = ACTIONS(4952), + [anon_sym_e_GT_GT] = ACTIONS(4952), + [anon_sym_o_GT_GT] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4952), + [aux_sym_unquoted_token1] = ACTIONS(4954), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4952), }, - [1561] = { - [sym_cell_path] = STATE(1899), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1561), - [aux_sym_cell_path_repeat1] = STATE(1593), + [1577] = { + [sym_cell_path] = STATE(2023), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1577), + [aux_sym_cell_path_repeat1] = STATE(1624), [ts_builtin_sym_end] = ACTIONS(1955), [sym__newline] = ACTIONS(1955), [anon_sym_SEMI] = ACTIONS(1955), @@ -228071,7 +231890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1953), [anon_sym_LBRACE] = ACTIONS(1955), [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(4841), + [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), [anon_sym_DOT_DOT_LT] = ACTIONS(1955), [anon_sym_null] = ACTIONS(1955), @@ -228116,1650 +231935,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1955), }, - [1562] = { - [sym_comment] = STATE(1562), - [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_PLUS_EQ] = ACTIONS(4904), - [anon_sym_DASH_EQ] = ACTIONS(4904), - [anon_sym_STAR_EQ] = ACTIONS(4904), - [anon_sym_SLASH_EQ] = ACTIONS(4904), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4904), - [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_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1040), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [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(251), - }, - [1563] = { - [sym_cell_path] = STATE(1664), - [sym_path] = STATE(1590), - [sym_comment] = STATE(1563), - [aux_sym_cell_path_repeat1] = STATE(1591), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_STAR2] = ACTIONS(973), - [anon_sym_and2] = ACTIONS(975), - [anon_sym_xor2] = ACTIONS(975), - [anon_sym_or2] = ACTIONS(975), - [anon_sym_not_DASHin2] = ACTIONS(975), - [anon_sym_starts_DASHwith2] = ACTIONS(975), - [anon_sym_ends_DASHwith2] = ACTIONS(975), - [anon_sym_EQ_EQ2] = ACTIONS(975), - [anon_sym_BANG_EQ2] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_LT_EQ2] = ACTIONS(975), - [anon_sym_GT_EQ2] = ACTIONS(975), - [anon_sym_EQ_TILDE2] = ACTIONS(975), - [anon_sym_BANG_TILDE2] = ACTIONS(975), - [anon_sym_STAR_STAR2] = ACTIONS(975), - [anon_sym_PLUS_PLUS2] = ACTIONS(975), - [anon_sym_SLASH2] = ACTIONS(973), - [anon_sym_mod2] = ACTIONS(975), - [anon_sym_SLASH_SLASH2] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_bit_DASHshl2] = ACTIONS(975), - [anon_sym_bit_DASHshr2] = ACTIONS(975), - [anon_sym_bit_DASHand2] = ACTIONS(975), - [anon_sym_bit_DASHxor2] = ACTIONS(975), - [anon_sym_bit_DASHor2] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(4887), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - }, - [1564] = { - [sym_comment] = STATE(1564), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(4906), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [1565] = { - [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1777), - [anon_sym_DOT_DOT_LT] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_null] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1779), - [anon_sym_false] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_0b] = ACTIONS(1777), - [anon_sym_0o] = ACTIONS(1777), - [anon_sym_0x] = ACTIONS(1777), - [sym_val_date] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1779), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), - [aux_sym_unquoted_token1] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1779), - }, - [1566] = { - [sym_comment] = STATE(1566), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_PLUS_EQ] = ACTIONS(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4910), - [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_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1040), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [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(251), - }, - [1567] = { - [sym_comment] = STATE(1567), - [sym__newline] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_err_GT_PIPE] = ACTIONS(2195), - [anon_sym_out_GT_PIPE] = ACTIONS(2195), - [anon_sym_e_GT_PIPE] = ACTIONS(2195), - [anon_sym_o_GT_PIPE] = ACTIONS(2195), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2195), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2195), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2195), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_DASH2] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [anon_sym_DOT_DOT2] = ACTIONS(2193), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2193), - [anon_sym_DOT_DOT_LT] = ACTIONS(2193), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2195), - [anon_sym_null] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [aux_sym__val_number_decimal_token1] = ACTIONS(2193), - [aux_sym__val_number_decimal_token2] = ACTIONS(2195), - [aux_sym__val_number_decimal_token3] = ACTIONS(2195), - [aux_sym__val_number_decimal_token4] = ACTIONS(2195), - [aux_sym__val_number_token1] = ACTIONS(2195), - [aux_sym__val_number_token2] = ACTIONS(2195), - [aux_sym__val_number_token3] = ACTIONS(2195), - [aux_sym__val_number_token4] = ACTIONS(2195), - [aux_sym__val_number_token5] = ACTIONS(2195), - [aux_sym__val_number_token6] = ACTIONS(2195), - [anon_sym_0b] = ACTIONS(2193), - [anon_sym_0o] = ACTIONS(2193), - [anon_sym_0x] = ACTIONS(2193), - [sym_val_date] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), - [anon_sym_err_GT] = ACTIONS(2193), - [anon_sym_out_GT] = ACTIONS(2193), - [anon_sym_e_GT] = ACTIONS(2193), - [anon_sym_o_GT] = ACTIONS(2193), - [anon_sym_err_PLUSout_GT] = ACTIONS(2193), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2193), - [anon_sym_o_PLUSe_GT] = ACTIONS(2193), - [anon_sym_e_PLUSo_GT] = ACTIONS(2193), - [anon_sym_err_GT_GT] = ACTIONS(2195), - [anon_sym_out_GT_GT] = ACTIONS(2195), - [anon_sym_e_GT_GT] = ACTIONS(2195), - [anon_sym_o_GT_GT] = ACTIONS(2195), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2195), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2195), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2195), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2195), - [aux_sym_unquoted_token1] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2195), - }, - [1568] = { - [sym_comment] = STATE(1568), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_DOT_DOT2] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2098), - [anon_sym_DOT_DOT_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2100), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2100), - [anon_sym_null] = ACTIONS(2100), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = 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(2100), - [aux_sym__val_number_token5] = ACTIONS(2100), - [aux_sym__val_number_token6] = ACTIONS(2100), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [sym__str_single_quotes] = ACTIONS(2100), - [sym__str_back_ticks] = ACTIONS(2100), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2100), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [aux_sym_unquoted_token1] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2100), - }, - [1569] = { - [sym_cell_path] = STATE(1951), - [sym_path] = STATE(1795), - [sym_comment] = STATE(1569), - [aux_sym_cell_path_repeat1] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym__newline] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_err_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_GT_PIPE] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), - [anon_sym_DOT_DOT_LT] = ACTIONS(1887), - [anon_sym_null] = ACTIONS(1887), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [aux_sym__val_number_decimal_token1] = ACTIONS(1885), - [aux_sym__val_number_decimal_token2] = ACTIONS(1887), - [aux_sym__val_number_decimal_token3] = ACTIONS(1887), - [aux_sym__val_number_decimal_token4] = ACTIONS(1887), - [aux_sym__val_number_token1] = ACTIONS(1887), - [aux_sym__val_number_token2] = ACTIONS(1887), - [aux_sym__val_number_token3] = ACTIONS(1887), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_0b] = ACTIONS(1885), - [anon_sym_0o] = ACTIONS(1885), - [anon_sym_0x] = ACTIONS(1885), - [sym_val_date] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym__str_single_quotes] = ACTIONS(1887), - [sym__str_back_ticks] = ACTIONS(1887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), - [anon_sym_err_GT] = ACTIONS(1885), - [anon_sym_out_GT] = ACTIONS(1885), - [anon_sym_e_GT] = ACTIONS(1885), - [anon_sym_o_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT] = ACTIONS(1885), - [anon_sym_err_GT_GT] = ACTIONS(1887), - [anon_sym_out_GT_GT] = ACTIONS(1887), - [anon_sym_e_GT_GT] = ACTIONS(1887), - [anon_sym_o_GT_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), - [aux_sym_unquoted_token1] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1887), - }, - [1570] = { - [sym_comment] = STATE(1570), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_in2] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1747), - [anon_sym_xor2] = ACTIONS(1747), - [anon_sym_or2] = ACTIONS(1747), - [anon_sym_not_DASHin2] = ACTIONS(1747), - [anon_sym_starts_DASHwith2] = ACTIONS(1747), - [anon_sym_ends_DASHwith2] = ACTIONS(1747), - [anon_sym_EQ_EQ2] = ACTIONS(1747), - [anon_sym_BANG_EQ2] = ACTIONS(1747), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1747), - [anon_sym_GT_EQ2] = ACTIONS(1747), - [anon_sym_EQ_TILDE2] = ACTIONS(1747), - [anon_sym_BANG_TILDE2] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_STAR_STAR2] = ACTIONS(1747), - [anon_sym_PLUS_PLUS2] = ACTIONS(1747), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1747), - [anon_sym_SLASH_SLASH2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1747), - [anon_sym_bit_DASHshr2] = ACTIONS(1747), - [anon_sym_bit_DASHand2] = ACTIONS(1747), - [anon_sym_bit_DASHxor2] = ACTIONS(1747), - [anon_sym_bit_DASHor2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - }, - [1571] = { - [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(4889), - [sym__newline] = ACTIONS(4889), - [anon_sym_SEMI] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4889), - [anon_sym_err_GT_PIPE] = ACTIONS(4889), - [anon_sym_out_GT_PIPE] = ACTIONS(4889), - [anon_sym_e_GT_PIPE] = ACTIONS(4889), - [anon_sym_o_GT_PIPE] = ACTIONS(4889), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4889), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4889), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4889), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4889), - [anon_sym_LBRACK] = ACTIONS(4889), - [anon_sym_LPAREN] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(4891), - [anon_sym_DASH_DASH] = ACTIONS(4889), - [anon_sym_DASH2] = ACTIONS(4891), - [anon_sym_LBRACE] = ACTIONS(4889), - [anon_sym_DOT_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT2] = ACTIONS(4912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4891), - [anon_sym_DOT_DOT_LT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4914), - [anon_sym_null] = ACTIONS(4889), - [anon_sym_true] = ACTIONS(4889), - [anon_sym_false] = ACTIONS(4889), - [aux_sym__val_number_decimal_token1] = ACTIONS(4891), - [aux_sym__val_number_decimal_token2] = ACTIONS(4889), - [aux_sym__val_number_decimal_token3] = ACTIONS(4889), - [aux_sym__val_number_decimal_token4] = ACTIONS(4889), - [aux_sym__val_number_token1] = ACTIONS(4889), - [aux_sym__val_number_token2] = ACTIONS(4889), - [aux_sym__val_number_token3] = ACTIONS(4889), - [aux_sym__val_number_token4] = ACTIONS(4889), - [aux_sym__val_number_token5] = ACTIONS(4889), - [aux_sym__val_number_token6] = ACTIONS(4889), - [anon_sym_0b] = ACTIONS(4891), - [anon_sym_0o] = ACTIONS(4891), - [anon_sym_0x] = ACTIONS(4891), - [sym_val_date] = ACTIONS(4889), - [anon_sym_DQUOTE] = ACTIONS(4889), - [sym__str_single_quotes] = ACTIONS(4889), - [sym__str_back_ticks] = ACTIONS(4889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4889), - [anon_sym_err_GT] = ACTIONS(4891), - [anon_sym_out_GT] = ACTIONS(4891), - [anon_sym_e_GT] = ACTIONS(4891), - [anon_sym_o_GT] = ACTIONS(4891), - [anon_sym_err_PLUSout_GT] = ACTIONS(4891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4891), - [anon_sym_o_PLUSe_GT] = ACTIONS(4891), - [anon_sym_e_PLUSo_GT] = ACTIONS(4891), - [anon_sym_err_GT_GT] = ACTIONS(4889), - [anon_sym_out_GT_GT] = ACTIONS(4889), - [anon_sym_e_GT_GT] = ACTIONS(4889), - [anon_sym_o_GT_GT] = ACTIONS(4889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4889), - [aux_sym_unquoted_token1] = ACTIONS(4891), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4889), - }, - [1572] = { - [sym_cell_path] = STATE(2004), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1572), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_GT2] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_in2] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_EQ_GT] = ACTIONS(1963), - [anon_sym_STAR2] = ACTIONS(1961), - [anon_sym_and2] = ACTIONS(1963), - [anon_sym_xor2] = ACTIONS(1963), - [anon_sym_or2] = ACTIONS(1963), - [anon_sym_not_DASHin2] = ACTIONS(1963), - [anon_sym_starts_DASHwith2] = ACTIONS(1963), - [anon_sym_ends_DASHwith2] = ACTIONS(1963), - [anon_sym_EQ_EQ2] = ACTIONS(1963), - [anon_sym_BANG_EQ2] = ACTIONS(1963), - [anon_sym_LT2] = ACTIONS(1961), - [anon_sym_LT_EQ2] = ACTIONS(1963), - [anon_sym_GT_EQ2] = ACTIONS(1963), - [anon_sym_EQ_TILDE2] = ACTIONS(1963), - [anon_sym_BANG_TILDE2] = ACTIONS(1963), - [anon_sym_STAR_STAR2] = ACTIONS(1963), - [anon_sym_PLUS_PLUS2] = ACTIONS(1963), - [anon_sym_SLASH2] = ACTIONS(1961), - [anon_sym_mod2] = ACTIONS(1963), - [anon_sym_SLASH_SLASH2] = ACTIONS(1963), - [anon_sym_PLUS2] = ACTIONS(1961), - [anon_sym_bit_DASHshl2] = ACTIONS(1963), - [anon_sym_bit_DASHshr2] = ACTIONS(1963), - [anon_sym_bit_DASHand2] = ACTIONS(1963), - [anon_sym_bit_DASHxor2] = ACTIONS(1963), - [anon_sym_bit_DASHor2] = ACTIONS(1963), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(251), - }, - [1573] = { - [sym_cell_path] = STATE(2007), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1573), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_GT2] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_in2] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1967), - [anon_sym_STAR2] = ACTIONS(1965), - [anon_sym_and2] = ACTIONS(1967), - [anon_sym_xor2] = ACTIONS(1967), - [anon_sym_or2] = ACTIONS(1967), - [anon_sym_not_DASHin2] = ACTIONS(1967), - [anon_sym_starts_DASHwith2] = ACTIONS(1967), - [anon_sym_ends_DASHwith2] = ACTIONS(1967), - [anon_sym_EQ_EQ2] = ACTIONS(1967), - [anon_sym_BANG_EQ2] = ACTIONS(1967), - [anon_sym_LT2] = ACTIONS(1965), - [anon_sym_LT_EQ2] = ACTIONS(1967), - [anon_sym_GT_EQ2] = ACTIONS(1967), - [anon_sym_EQ_TILDE2] = ACTIONS(1967), - [anon_sym_BANG_TILDE2] = ACTIONS(1967), - [anon_sym_STAR_STAR2] = ACTIONS(1967), - [anon_sym_PLUS_PLUS2] = ACTIONS(1967), - [anon_sym_SLASH2] = ACTIONS(1965), - [anon_sym_mod2] = ACTIONS(1967), - [anon_sym_SLASH_SLASH2] = ACTIONS(1967), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_bit_DASHshl2] = ACTIONS(1967), - [anon_sym_bit_DASHshr2] = ACTIONS(1967), - [anon_sym_bit_DASHand2] = ACTIONS(1967), - [anon_sym_bit_DASHxor2] = ACTIONS(1967), - [anon_sym_bit_DASHor2] = ACTIONS(1967), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(251), - }, - [1574] = { - [sym_cell_path] = STATE(2008), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1574), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_GT2] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1971), - [anon_sym_in2] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_STAR2] = ACTIONS(1969), - [anon_sym_and2] = ACTIONS(1971), - [anon_sym_xor2] = ACTIONS(1971), - [anon_sym_or2] = ACTIONS(1971), - [anon_sym_not_DASHin2] = ACTIONS(1971), - [anon_sym_starts_DASHwith2] = ACTIONS(1971), - [anon_sym_ends_DASHwith2] = ACTIONS(1971), - [anon_sym_EQ_EQ2] = ACTIONS(1971), - [anon_sym_BANG_EQ2] = ACTIONS(1971), - [anon_sym_LT2] = ACTIONS(1969), - [anon_sym_LT_EQ2] = ACTIONS(1971), - [anon_sym_GT_EQ2] = ACTIONS(1971), - [anon_sym_EQ_TILDE2] = ACTIONS(1971), - [anon_sym_BANG_TILDE2] = ACTIONS(1971), - [anon_sym_STAR_STAR2] = ACTIONS(1971), - [anon_sym_PLUS_PLUS2] = ACTIONS(1971), - [anon_sym_SLASH2] = ACTIONS(1969), - [anon_sym_mod2] = ACTIONS(1971), - [anon_sym_SLASH_SLASH2] = ACTIONS(1971), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_bit_DASHshl2] = ACTIONS(1971), - [anon_sym_bit_DASHshr2] = ACTIONS(1971), - [anon_sym_bit_DASHand2] = ACTIONS(1971), - [anon_sym_bit_DASHxor2] = ACTIONS(1971), - [anon_sym_bit_DASHor2] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(251), - }, - [1575] = { - [sym_cell_path] = STATE(2026), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1575), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1907), - [anon_sym_err_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_GT_PIPE] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1907), - [anon_sym_RPAREN] = ACTIONS(1907), - [anon_sym_GT2] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_EQ_GT] = ACTIONS(1907), - [anon_sym_STAR2] = ACTIONS(1905), - [anon_sym_and2] = ACTIONS(1907), - [anon_sym_xor2] = ACTIONS(1907), - [anon_sym_or2] = ACTIONS(1907), - [anon_sym_not_DASHin2] = ACTIONS(1907), - [anon_sym_starts_DASHwith2] = ACTIONS(1907), - [anon_sym_ends_DASHwith2] = ACTIONS(1907), - [anon_sym_EQ_EQ2] = ACTIONS(1907), - [anon_sym_BANG_EQ2] = ACTIONS(1907), - [anon_sym_LT2] = ACTIONS(1905), - [anon_sym_LT_EQ2] = ACTIONS(1907), - [anon_sym_GT_EQ2] = ACTIONS(1907), - [anon_sym_EQ_TILDE2] = ACTIONS(1907), - [anon_sym_BANG_TILDE2] = ACTIONS(1907), - [anon_sym_STAR_STAR2] = ACTIONS(1907), - [anon_sym_PLUS_PLUS2] = ACTIONS(1907), - [anon_sym_SLASH2] = ACTIONS(1905), - [anon_sym_mod2] = ACTIONS(1907), - [anon_sym_SLASH_SLASH2] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_bit_DASHshl2] = ACTIONS(1907), - [anon_sym_bit_DASHshr2] = ACTIONS(1907), - [anon_sym_bit_DASHand2] = ACTIONS(1907), - [anon_sym_bit_DASHxor2] = ACTIONS(1907), - [anon_sym_bit_DASHor2] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1905), - [anon_sym_out_GT] = ACTIONS(1905), - [anon_sym_e_GT] = ACTIONS(1905), - [anon_sym_o_GT] = ACTIONS(1905), - [anon_sym_err_PLUSout_GT] = ACTIONS(1905), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1905), - [anon_sym_o_PLUSe_GT] = ACTIONS(1905), - [anon_sym_e_PLUSo_GT] = ACTIONS(1905), - [anon_sym_err_GT_GT] = ACTIONS(1907), - [anon_sym_out_GT_GT] = ACTIONS(1907), - [anon_sym_e_GT_GT] = ACTIONS(1907), - [anon_sym_o_GT_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(251), - }, - [1576] = { - [sym_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1577] = { - [sym_comment] = STATE(1577), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [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_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), - }, [1578] = { - [sym__expr_parenthesized_immediate] = STATE(7577), [sym_comment] = STATE(1578), - [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_GT2] = ACTIONS(1695), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_STAR2] = ACTIONS(1695), - [anon_sym_and2] = ACTIONS(1707), - [anon_sym_xor2] = ACTIONS(1707), - [anon_sym_or2] = ACTIONS(1707), - [anon_sym_not_DASHin2] = ACTIONS(1707), - [anon_sym_starts_DASHwith2] = ACTIONS(1707), - [anon_sym_ends_DASHwith2] = ACTIONS(1707), - [anon_sym_EQ_EQ2] = ACTIONS(1707), - [anon_sym_BANG_EQ2] = ACTIONS(1707), - [anon_sym_LT2] = ACTIONS(1695), - [anon_sym_LT_EQ2] = ACTIONS(1707), - [anon_sym_GT_EQ2] = ACTIONS(1707), - [anon_sym_EQ_TILDE2] = ACTIONS(1707), - [anon_sym_BANG_TILDE2] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_STAR_STAR2] = ACTIONS(1707), - [anon_sym_PLUS_PLUS2] = ACTIONS(1707), - [anon_sym_SLASH2] = ACTIONS(1695), - [anon_sym_mod2] = ACTIONS(1707), - [anon_sym_SLASH_SLASH2] = ACTIONS(1707), - [anon_sym_PLUS2] = ACTIONS(1695), - [anon_sym_bit_DASHshl2] = ACTIONS(1707), - [anon_sym_bit_DASHshr2] = ACTIONS(1707), - [anon_sym_bit_DASHand2] = ACTIONS(1707), - [anon_sym_bit_DASHxor2] = ACTIONS(1707), - [anon_sym_bit_DASHor2] = ACTIONS(1707), - [anon_sym_DOT_DOT2] = ACTIONS(4831), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4833), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4833), - [sym_filesize_unit] = ACTIONS(4918), - [sym_duration_unit] = ACTIONS(4920), - [anon_sym_err_GT] = ACTIONS(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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_token2] = ACTIONS(4922), + [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_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_in2] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = 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(1711), + [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(251), }, [1579] = { + [sym_cell_path] = STATE(1738), + [sym_path] = STATE(1643), [sym_comment] = STATE(1579), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [aux_sym_cell_path_repeat1] = STATE(1644), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1757), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1757), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1757), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(251), }, [1580] = { [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1777), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1777), - [anon_sym_DOT_DOT_LT] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_null] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1779), - [anon_sym_false] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1777), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_0b] = ACTIONS(1777), - [anon_sym_0o] = ACTIONS(1777), - [anon_sym_0x] = ACTIONS(1777), - [sym_val_date] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1779), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), - [aux_sym_unquoted_token1] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1779), + [anon_sym_EQ] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4960), + [anon_sym_DASH_EQ] = ACTIONS(4960), + [anon_sym_STAR_EQ] = ACTIONS(4960), + [anon_sym_SLASH_EQ] = ACTIONS(4960), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4960), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1036), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1036), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(251), }, [1581] = { + [sym_cell_path] = STATE(1694), + [sym_path] = STATE(1643), [sym_comment] = STATE(1581), - [sym__newline] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_err_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_GT_PIPE] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(4928), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_DOT_DOT2] = ACTIONS(4863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), - [anon_sym_DOT_DOT_LT] = ACTIONS(4928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(2726), - [anon_sym_true] = ACTIONS(2726), - [anon_sym_false] = ACTIONS(2726), - [aux_sym__val_number_decimal_token1] = ACTIONS(4928), - [aux_sym__val_number_decimal_token2] = ACTIONS(2726), - [aux_sym__val_number_decimal_token3] = ACTIONS(2726), - [aux_sym__val_number_decimal_token4] = ACTIONS(2726), - [aux_sym__val_number_token1] = ACTIONS(2726), - [aux_sym__val_number_token2] = ACTIONS(2726), - [aux_sym__val_number_token3] = ACTIONS(2726), - [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(4928), - [anon_sym_0o] = ACTIONS(4928), - [anon_sym_0x] = ACTIONS(4928), - [sym_val_date] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [sym__str_single_quotes] = ACTIONS(2726), - [sym__str_back_ticks] = ACTIONS(2726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [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(2726), - [anon_sym_out_GT_GT] = ACTIONS(2726), - [anon_sym_e_GT_GT] = ACTIONS(2726), - [anon_sym_o_GT_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2726), - [aux_sym_unquoted_token1] = ACTIONS(4928), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2726), + [aux_sym_cell_path_repeat1] = STATE(1644), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_STAR2] = ACTIONS(969), + [anon_sym_and2] = ACTIONS(971), + [anon_sym_xor2] = ACTIONS(971), + [anon_sym_or2] = ACTIONS(971), + [anon_sym_not_DASHin2] = ACTIONS(971), + [anon_sym_starts_DASHwith2] = ACTIONS(971), + [anon_sym_ends_DASHwith2] = ACTIONS(971), + [anon_sym_EQ_EQ2] = ACTIONS(971), + [anon_sym_BANG_EQ2] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_LT_EQ2] = ACTIONS(971), + [anon_sym_GT_EQ2] = ACTIONS(971), + [anon_sym_EQ_TILDE2] = ACTIONS(971), + [anon_sym_BANG_TILDE2] = ACTIONS(971), + [anon_sym_STAR_STAR2] = ACTIONS(971), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(969), + [anon_sym_mod2] = ACTIONS(971), + [anon_sym_SLASH_SLASH2] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_bit_DASHshl2] = ACTIONS(971), + [anon_sym_bit_DASHshr2] = ACTIONS(971), + [anon_sym_bit_DASHand2] = ACTIONS(971), + [anon_sym_bit_DASHxor2] = ACTIONS(971), + [anon_sym_bit_DASHor2] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(251), }, [1582] = { [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym__newline] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_err_GT_PIPE] = ACTIONS(2195), - [anon_sym_out_GT_PIPE] = ACTIONS(2195), - [anon_sym_e_GT_PIPE] = ACTIONS(2195), - [anon_sym_o_GT_PIPE] = ACTIONS(2195), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2195), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2195), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2195), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2193), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [anon_sym_DASH2] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [anon_sym_DOT_DOT2] = ACTIONS(2193), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2193), - [anon_sym_DOT_DOT_LT] = ACTIONS(2193), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2195), - [anon_sym_null] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [aux_sym__val_number_decimal_token1] = ACTIONS(2193), - [aux_sym__val_number_decimal_token2] = ACTIONS(2195), - [aux_sym__val_number_decimal_token3] = ACTIONS(2195), - [aux_sym__val_number_decimal_token4] = ACTIONS(2195), - [aux_sym__val_number_token1] = ACTIONS(2195), - [aux_sym__val_number_token2] = ACTIONS(2195), - [aux_sym__val_number_token3] = ACTIONS(2195), - [aux_sym__val_number_token4] = ACTIONS(2195), - [aux_sym__val_number_token5] = ACTIONS(2195), - [aux_sym__val_number_token6] = ACTIONS(2195), - [anon_sym_0b] = ACTIONS(2193), - [anon_sym_0o] = ACTIONS(2193), - [anon_sym_0x] = ACTIONS(2193), - [sym_val_date] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [sym__str_single_quotes] = ACTIONS(2195), - [sym__str_back_ticks] = ACTIONS(2195), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2195), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2195), - [anon_sym_err_GT] = ACTIONS(2193), - [anon_sym_out_GT] = ACTIONS(2193), - [anon_sym_e_GT] = ACTIONS(2193), - [anon_sym_o_GT] = ACTIONS(2193), - [anon_sym_err_PLUSout_GT] = ACTIONS(2193), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2193), - [anon_sym_o_PLUSe_GT] = ACTIONS(2193), - [anon_sym_e_PLUSo_GT] = ACTIONS(2193), - [anon_sym_err_GT_GT] = ACTIONS(2195), - [anon_sym_out_GT_GT] = ACTIONS(2195), - [anon_sym_e_GT_GT] = ACTIONS(2195), - [anon_sym_o_GT_GT] = ACTIONS(2195), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2195), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2195), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2195), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2195), - [aux_sym_unquoted_token1] = ACTIONS(2193), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1663), + [anon_sym_GT_EQ2] = ACTIONS(1663), + [anon_sym_EQ_TILDE2] = ACTIONS(1663), + [anon_sym_BANG_TILDE2] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2195), }, [1583] = { [sym_comment] = STATE(1583), - [ts_builtin_sym_end] = 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_DASH2] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT2] = ACTIONS(4912), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_LT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4914), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4914), - [anon_sym_null] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1040), - [aux_sym__val_number_token5] = ACTIONS(1040), - [aux_sym__val_number_token6] = 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(251), - [sym_raw_string_begin] = ACTIONS(1040), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_GT2] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_in2] = ACTIONS(1010), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_EQ_GT] = ACTIONS(1010), + [anon_sym_STAR2] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(4962), + [anon_sym_and2] = ACTIONS(1010), + [anon_sym_xor2] = ACTIONS(1010), + [anon_sym_or2] = ACTIONS(1010), + [anon_sym_not_DASHin2] = ACTIONS(1010), + [anon_sym_starts_DASHwith2] = ACTIONS(1010), + [anon_sym_ends_DASHwith2] = ACTIONS(1010), + [anon_sym_EQ_EQ2] = ACTIONS(1010), + [anon_sym_BANG_EQ2] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1008), + [anon_sym_LT_EQ2] = ACTIONS(1010), + [anon_sym_GT_EQ2] = ACTIONS(1010), + [anon_sym_EQ_TILDE2] = ACTIONS(1010), + [anon_sym_BANG_TILDE2] = ACTIONS(1010), + [anon_sym_STAR_STAR2] = ACTIONS(1010), + [anon_sym_PLUS_PLUS2] = ACTIONS(1010), + [anon_sym_SLASH2] = ACTIONS(1008), + [anon_sym_mod2] = ACTIONS(1010), + [anon_sym_SLASH_SLASH2] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1008), + [anon_sym_bit_DASHshl2] = ACTIONS(1010), + [anon_sym_bit_DASHshr2] = ACTIONS(1010), + [anon_sym_bit_DASHand2] = ACTIONS(1010), + [anon_sym_bit_DASHxor2] = ACTIONS(1010), + [anon_sym_bit_DASHor2] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(251), }, [1584] = { [sym_comment] = STATE(1584), - [sym__newline] = ACTIONS(4930), - [anon_sym_SEMI] = ACTIONS(4930), - [anon_sym_PIPE] = ACTIONS(4930), - [anon_sym_err_GT_PIPE] = ACTIONS(4930), - [anon_sym_out_GT_PIPE] = ACTIONS(4930), - [anon_sym_e_GT_PIPE] = ACTIONS(4930), - [anon_sym_o_GT_PIPE] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4930), - [anon_sym_LBRACK] = ACTIONS(4930), - [anon_sym_LPAREN] = ACTIONS(4930), - [anon_sym_RPAREN] = ACTIONS(4930), - [anon_sym_DOLLAR] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_DASH2] = ACTIONS(4932), - [anon_sym_LBRACE] = ACTIONS(4930), - [anon_sym_RBRACE] = ACTIONS(4930), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4930), - [anon_sym_DOT_DOT_LT] = ACTIONS(4930), - [anon_sym_null] = ACTIONS(4932), - [anon_sym_true] = ACTIONS(4932), - [anon_sym_false] = ACTIONS(4932), - [aux_sym__val_number_decimal_token1] = ACTIONS(4932), - [aux_sym__val_number_decimal_token2] = ACTIONS(4932), - [aux_sym__val_number_decimal_token3] = ACTIONS(4930), - [aux_sym__val_number_decimal_token4] = ACTIONS(4930), - [aux_sym__val_number_token1] = ACTIONS(4932), - [aux_sym__val_number_token2] = ACTIONS(4932), - [aux_sym__val_number_token3] = ACTIONS(4932), - [aux_sym__val_number_token4] = ACTIONS(4932), - [aux_sym__val_number_token5] = ACTIONS(4932), - [aux_sym__val_number_token6] = ACTIONS(4932), - [anon_sym_0b] = ACTIONS(4932), - [anon_sym_0o] = ACTIONS(4932), - [anon_sym_0x] = ACTIONS(4932), - [sym_val_date] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4930), - [sym__str_single_quotes] = ACTIONS(4930), - [sym__str_back_ticks] = ACTIONS(4930), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4930), - [anon_sym_err_GT] = ACTIONS(4932), - [anon_sym_out_GT] = ACTIONS(4932), - [anon_sym_e_GT] = ACTIONS(4932), - [anon_sym_o_GT] = ACTIONS(4932), - [anon_sym_err_PLUSout_GT] = ACTIONS(4932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4932), - [anon_sym_o_PLUSe_GT] = ACTIONS(4932), - [anon_sym_e_PLUSo_GT] = ACTIONS(4932), - [anon_sym_err_GT_GT] = ACTIONS(4930), - [anon_sym_out_GT_GT] = ACTIONS(4930), - [anon_sym_e_GT_GT] = ACTIONS(4930), - [anon_sym_o_GT_GT] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4930), - [anon_sym_EQ2] = ACTIONS(4934), - [sym_short_flag_identifier] = ACTIONS(4936), - [aux_sym_unquoted_token1] = ACTIONS(4932), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4930), - }, - [1585] = { - [sym_comment] = STATE(1585), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_DASH2] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_DOT_DOT] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), - [anon_sym_DOT_DOT_LT] = ACTIONS(2280), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = 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(2280), - [aux_sym__val_number_token5] = ACTIONS(2280), - [aux_sym__val_number_token6] = ACTIONS(2280), - [anon_sym_0b] = ACTIONS(2278), - [anon_sym_0o] = ACTIONS(2278), - [anon_sym_0x] = ACTIONS(2278), - [sym_val_date] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym__str_single_quotes] = ACTIONS(2280), - [sym__str_back_ticks] = ACTIONS(2280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [aux_sym_unquoted_token1] = ACTIONS(2278), - [aux_sym_unquoted_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2280), - }, - [1586] = { - [sym_comment] = STATE(1586), - [sym__newline] = ACTIONS(998), + [sym__newline] = ACTIONS(996), [anon_sym_SEMI] = ACTIONS(998), [anon_sym_PIPE] = ACTIONS(998), [anon_sym_err_GT_PIPE] = ACTIONS(998), @@ -229770,41 +232362,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(998), [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), + [anon_sym_EQ_GT] = ACTIONS(998), + [anon_sym_STAR2] = ACTIONS(996), [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_and2] = ACTIONS(998), + [anon_sym_xor2] = ACTIONS(998), + [anon_sym_or2] = ACTIONS(998), + [anon_sym_not_DASHin2] = ACTIONS(998), + [anon_sym_starts_DASHwith2] = ACTIONS(998), + [anon_sym_ends_DASHwith2] = ACTIONS(998), + [anon_sym_EQ_EQ2] = ACTIONS(998), + [anon_sym_BANG_EQ2] = ACTIONS(998), + [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT_EQ2] = ACTIONS(998), + [anon_sym_GT_EQ2] = ACTIONS(998), + [anon_sym_EQ_TILDE2] = ACTIONS(998), + [anon_sym_BANG_TILDE2] = ACTIONS(998), + [anon_sym_STAR_STAR2] = ACTIONS(998), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_mod2] = ACTIONS(998), + [anon_sym_SLASH_SLASH2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_bit_DASHshl2] = ACTIONS(998), + [anon_sym_bit_DASHshr2] = ACTIONS(998), + [anon_sym_bit_DASHand2] = ACTIONS(998), + [anon_sym_bit_DASHxor2] = ACTIONS(998), + [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(996), [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [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_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), + [anon_sym_DOT_DOT_LT2] = ACTIONS(998), + [aux_sym_record_entry_token1] = ACTIONS(998), [anon_sym_err_GT] = ACTIONS(996), [anon_sym_out_GT] = ACTIONS(996), [anon_sym_e_GT] = ACTIONS(996), @@ -229821,287 +232416,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + }, + [1585] = { + [sym_comment] = STATE(1585), + [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_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(4964), + [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(251), + }, + [1586] = { + [sym_cell_path] = STATE(1742), + [sym_path] = STATE(1643), + [sym_comment] = STATE(1586), + [aux_sym_cell_path_repeat1] = STATE(1644), + [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_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] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = 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), + [anon_sym_POUND] = ACTIONS(251), }, [1587] = { [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(1058), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DASH2] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1056), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [aux_sym__val_number_token4] = ACTIONS(1058), - [aux_sym__val_number_token5] = ACTIONS(1058), - [aux_sym__val_number_token6] = ACTIONS(1058), - [anon_sym_0b] = ACTIONS(1056), - [anon_sym_0o] = ACTIONS(1056), - [anon_sym_0x] = ACTIONS(1056), - [sym_val_date] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), - [aux_sym_unquoted_token1] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1058), + [ts_builtin_sym_end] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4968), + [anon_sym_DASH_EQ] = ACTIONS(4968), + [anon_sym_STAR_EQ] = ACTIONS(4968), + [anon_sym_SLASH_EQ] = ACTIONS(4968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4968), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1036), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1036), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(4970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4972), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(251), }, [1588] = { [sym_comment] = STATE(1588), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [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_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), + [sym_raw_string_begin] = ACTIONS(1781), }, [1589] = { [sym_comment] = STATE(1589), - [sym__newline] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_err_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_GT_PIPE] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_DASH2] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_LPAREN2] = ACTIONS(2249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2247), - [anon_sym_DOT_DOT_LT] = ACTIONS(2247), - [anon_sym_null] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(2247), - [anon_sym_false] = ACTIONS(2247), - [aux_sym__val_number_decimal_token1] = ACTIONS(2247), - [aux_sym__val_number_decimal_token2] = ACTIONS(2247), - [aux_sym__val_number_decimal_token3] = ACTIONS(2247), - [aux_sym__val_number_decimal_token4] = ACTIONS(2247), - [aux_sym__val_number_token1] = ACTIONS(2247), - [aux_sym__val_number_token2] = ACTIONS(2247), - [aux_sym__val_number_token3] = ACTIONS(2247), - [aux_sym__val_number_token4] = ACTIONS(2247), - [aux_sym__val_number_token5] = ACTIONS(2247), - [aux_sym__val_number_token6] = ACTIONS(2247), - [anon_sym_0b] = ACTIONS(2247), - [anon_sym_0o] = ACTIONS(2247), - [anon_sym_0x] = ACTIONS(2247), - [sym_val_date] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym__str_single_quotes] = ACTIONS(2249), - [sym__str_back_ticks] = ACTIONS(2249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), - [anon_sym_err_GT] = ACTIONS(2247), - [anon_sym_out_GT] = ACTIONS(2247), - [anon_sym_e_GT] = ACTIONS(2247), - [anon_sym_o_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT] = ACTIONS(2247), - [anon_sym_err_GT_GT] = ACTIONS(2247), - [anon_sym_out_GT_GT] = ACTIONS(2247), - [anon_sym_e_GT_GT] = ACTIONS(2247), - [anon_sym_o_GT_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), - [aux_sym_unquoted_token1] = ACTIONS(2247), - [aux_sym_unquoted_token4] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2249), - }, - [1590] = { - [sym_comment] = STATE(1590), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_GT2] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1028), - [anon_sym_in2] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_EQ_GT] = ACTIONS(1028), - [anon_sym_STAR2] = ACTIONS(1026), - [anon_sym_and2] = ACTIONS(1028), - [anon_sym_xor2] = ACTIONS(1028), - [anon_sym_or2] = ACTIONS(1028), - [anon_sym_not_DASHin2] = ACTIONS(1028), - [anon_sym_starts_DASHwith2] = ACTIONS(1028), - [anon_sym_ends_DASHwith2] = ACTIONS(1028), - [anon_sym_EQ_EQ2] = ACTIONS(1028), - [anon_sym_BANG_EQ2] = ACTIONS(1028), - [anon_sym_LT2] = ACTIONS(1026), - [anon_sym_LT_EQ2] = ACTIONS(1028), - [anon_sym_GT_EQ2] = ACTIONS(1028), - [anon_sym_EQ_TILDE2] = ACTIONS(1028), - [anon_sym_BANG_TILDE2] = ACTIONS(1028), - [anon_sym_STAR_STAR2] = ACTIONS(1028), - [anon_sym_PLUS_PLUS2] = ACTIONS(1028), - [anon_sym_SLASH2] = ACTIONS(1026), - [anon_sym_mod2] = ACTIONS(1028), - [anon_sym_SLASH_SLASH2] = ACTIONS(1028), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_bit_DASHshl2] = ACTIONS(1028), - [anon_sym_bit_DASHshr2] = ACTIONS(1028), - [anon_sym_bit_DASHand2] = ACTIONS(1028), - [anon_sym_bit_DASHxor2] = ACTIONS(1028), - [anon_sym_bit_DASHor2] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(251), - }, - [1591] = { - [sym_path] = STATE(1590), - [sym_comment] = STATE(1591), - [aux_sym_cell_path_repeat1] = STATE(1599), - [sym__newline] = ACTIONS(988), + [sym__newline] = ACTIONS(986), [anon_sym_SEMI] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(988), [anon_sym_err_GT_PIPE] = ACTIONS(988), @@ -230112,13 +232707,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), [anon_sym_GT2] = ACTIONS(986), [anon_sym_DASH2] = ACTIONS(988), [anon_sym_in2] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), [anon_sym_LBRACE] = ACTIONS(988), [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_EQ_GT] = ACTIONS(988), [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), [anon_sym_and2] = ACTIONS(988), [anon_sym_xor2] = ACTIONS(988), [anon_sym_or2] = ACTIONS(988), @@ -230144,9 +232741,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(988), [anon_sym_bit_DASHor2] = ACTIONS(988), [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4887), + [anon_sym_DOT] = ACTIONS(986), [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), [anon_sym_DOT_DOT_LT2] = ACTIONS(988), + [aux_sym_record_entry_token1] = ACTIONS(988), [anon_sym_err_GT] = ACTIONS(986), [anon_sym_out_GT] = ACTIONS(986), [anon_sym_e_GT] = ACTIONS(986), @@ -230165,1232 +232763,1575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(251), }, + [1590] = { + [sym_comment] = STATE(1590), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(4974), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1591] = { + [sym_cell_path] = STATE(1944), + [sym_path] = STATE(1843), + [sym_comment] = STATE(1591), + [aux_sym_cell_path_repeat1] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym__newline] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_err_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_GT_PIPE] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [aux_sym__val_number_token4] = ACTIONS(2035), + [aux_sym__val_number_token5] = ACTIONS(2035), + [aux_sym__val_number_token6] = ACTIONS(2035), + [anon_sym_0b] = ACTIONS(2033), + [anon_sym_0o] = ACTIONS(2033), + [anon_sym_0x] = ACTIONS(2033), + [sym_val_date] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), + [anon_sym_err_GT] = ACTIONS(2033), + [anon_sym_out_GT] = ACTIONS(2033), + [anon_sym_e_GT] = ACTIONS(2033), + [anon_sym_o_GT] = ACTIONS(2033), + [anon_sym_err_PLUSout_GT] = ACTIONS(2033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), + [anon_sym_o_PLUSe_GT] = ACTIONS(2033), + [anon_sym_e_PLUSo_GT] = ACTIONS(2033), + [anon_sym_err_GT_GT] = ACTIONS(2035), + [anon_sym_out_GT_GT] = ACTIONS(2035), + [anon_sym_e_GT_GT] = ACTIONS(2035), + [anon_sym_o_GT_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), + [aux_sym_unquoted_token1] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2035), + }, [1592] = { [sym_comment] = STATE(1592), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_in2] = ACTIONS(1647), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1647), - [anon_sym_xor2] = ACTIONS(1647), - [anon_sym_or2] = ACTIONS(1647), - [anon_sym_not_DASHin2] = ACTIONS(1647), - [anon_sym_starts_DASHwith2] = ACTIONS(1647), - [anon_sym_ends_DASHwith2] = ACTIONS(1647), - [anon_sym_EQ_EQ2] = ACTIONS(1647), - [anon_sym_BANG_EQ2] = ACTIONS(1647), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1647), - [anon_sym_GT_EQ2] = ACTIONS(1647), - [anon_sym_EQ_TILDE2] = ACTIONS(1647), - [anon_sym_BANG_TILDE2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_STAR_STAR2] = ACTIONS(1647), - [anon_sym_PLUS_PLUS2] = ACTIONS(1647), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1647), - [anon_sym_SLASH_SLASH2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1647), - [anon_sym_bit_DASHshr2] = ACTIONS(1647), - [anon_sym_bit_DASHand2] = ACTIONS(1647), - [anon_sym_bit_DASHxor2] = ACTIONS(1647), - [anon_sym_bit_DASHor2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(4861), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token2] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(251), + [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(2090), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2090), + [anon_sym_DOT_DOT_LT] = ACTIONS(2090), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4978), + [anon_sym_null] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [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(2090), + [anon_sym_0o] = ACTIONS(2090), + [anon_sym_0x] = ACTIONS(2090), + [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(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(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(2090), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2096), }, [1593] = { - [sym_path] = STATE(1795), + [sym_cell_path] = STATE(2071), + [sym_path] = STATE(1898), [sym_comment] = STATE(1593), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_GT2] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_EQ_GT] = ACTIONS(1893), + [anon_sym_STAR2] = ACTIONS(1891), + [anon_sym_and2] = ACTIONS(1893), + [anon_sym_xor2] = ACTIONS(1893), + [anon_sym_or2] = ACTIONS(1893), + [anon_sym_not_DASHin2] = ACTIONS(1893), + [anon_sym_starts_DASHwith2] = ACTIONS(1893), + [anon_sym_ends_DASHwith2] = ACTIONS(1893), + [anon_sym_EQ_EQ2] = ACTIONS(1893), + [anon_sym_BANG_EQ2] = ACTIONS(1893), + [anon_sym_LT2] = ACTIONS(1891), + [anon_sym_LT_EQ2] = ACTIONS(1893), + [anon_sym_GT_EQ2] = ACTIONS(1893), + [anon_sym_EQ_TILDE2] = ACTIONS(1893), + [anon_sym_BANG_TILDE2] = ACTIONS(1893), + [anon_sym_STAR_STAR2] = ACTIONS(1893), + [anon_sym_PLUS_PLUS2] = ACTIONS(1893), + [anon_sym_SLASH2] = ACTIONS(1891), + [anon_sym_mod2] = ACTIONS(1893), + [anon_sym_SLASH_SLASH2] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_bit_DASHshl2] = ACTIONS(1893), + [anon_sym_bit_DASHshr2] = ACTIONS(1893), + [anon_sym_bit_DASHand2] = ACTIONS(1893), + [anon_sym_bit_DASHxor2] = ACTIONS(1893), + [anon_sym_bit_DASHor2] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), }, [1594] = { [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT2] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_LT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1795), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym__newline] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_err_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_GT_PIPE] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_DOT_DOT2] = ACTIONS(4982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [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_0b] = ACTIONS(2072), + [anon_sym_0o] = ACTIONS(2072), + [anon_sym_0x] = ACTIONS(2072), + [sym_val_date] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [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(2078), + [anon_sym_out_GT_GT] = ACTIONS(2078), + [anon_sym_e_GT_GT] = ACTIONS(2078), + [anon_sym_o_GT_GT] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2078), + [aux_sym_unquoted_token1] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), }, [1595] = { - [sym_cell_path] = STATE(1994), - [sym_path] = STATE(1921), + [sym__expr_parenthesized_immediate] = STATE(8466), [sym_comment] = STATE(1595), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_GT2] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1939), - [anon_sym_in2] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(1939), - [anon_sym_STAR2] = ACTIONS(1937), - [anon_sym_and2] = ACTIONS(1939), - [anon_sym_xor2] = ACTIONS(1939), - [anon_sym_or2] = ACTIONS(1939), - [anon_sym_not_DASHin2] = ACTIONS(1939), - [anon_sym_starts_DASHwith2] = ACTIONS(1939), - [anon_sym_ends_DASHwith2] = ACTIONS(1939), - [anon_sym_EQ_EQ2] = ACTIONS(1939), - [anon_sym_BANG_EQ2] = ACTIONS(1939), - [anon_sym_LT2] = ACTIONS(1937), - [anon_sym_LT_EQ2] = ACTIONS(1939), - [anon_sym_GT_EQ2] = ACTIONS(1939), - [anon_sym_EQ_TILDE2] = ACTIONS(1939), - [anon_sym_BANG_TILDE2] = ACTIONS(1939), - [anon_sym_STAR_STAR2] = ACTIONS(1939), - [anon_sym_PLUS_PLUS2] = ACTIONS(1939), - [anon_sym_SLASH2] = ACTIONS(1937), - [anon_sym_mod2] = ACTIONS(1939), - [anon_sym_SLASH_SLASH2] = ACTIONS(1939), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_bit_DASHshl2] = ACTIONS(1939), - [anon_sym_bit_DASHshr2] = ACTIONS(1939), - [anon_sym_bit_DASHand2] = ACTIONS(1939), - [anon_sym_bit_DASHxor2] = ACTIONS(1939), - [anon_sym_bit_DASHor2] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), + [sym__newline] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_err_GT_PIPE] = ACTIONS(4986), + [anon_sym_out_GT_PIPE] = ACTIONS(4986), + [anon_sym_e_GT_PIPE] = ACTIONS(4986), + [anon_sym_o_GT_PIPE] = ACTIONS(4986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH2] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_DOT_DOT] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_DOT_DOT_LT] = ACTIONS(4986), + [anon_sym_null] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4986), + [anon_sym_false] = ACTIONS(4986), + [aux_sym__val_number_decimal_token1] = ACTIONS(4988), + [aux_sym__val_number_decimal_token2] = ACTIONS(4986), + [aux_sym__val_number_decimal_token3] = ACTIONS(4986), + [aux_sym__val_number_decimal_token4] = ACTIONS(4986), + [aux_sym__val_number_token1] = ACTIONS(4986), + [aux_sym__val_number_token2] = ACTIONS(4986), + [aux_sym__val_number_token3] = ACTIONS(4986), + [aux_sym__val_number_token4] = ACTIONS(4986), + [aux_sym__val_number_token5] = ACTIONS(4986), + [aux_sym__val_number_token6] = ACTIONS(4986), + [anon_sym_0b] = ACTIONS(4988), + [anon_sym_0o] = ACTIONS(4988), + [anon_sym_0x] = ACTIONS(4988), + [sym_val_date] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(4986), + [sym__str_single_quotes] = ACTIONS(4986), + [sym__str_back_ticks] = ACTIONS(4986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4986), + [anon_sym_err_GT] = ACTIONS(4988), + [anon_sym_out_GT] = ACTIONS(4988), + [anon_sym_e_GT] = ACTIONS(4988), + [anon_sym_o_GT] = ACTIONS(4988), + [anon_sym_err_PLUSout_GT] = ACTIONS(4988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4988), + [anon_sym_o_PLUSe_GT] = ACTIONS(4988), + [anon_sym_e_PLUSo_GT] = ACTIONS(4988), + [anon_sym_err_GT_GT] = ACTIONS(4986), + [anon_sym_out_GT_GT] = ACTIONS(4986), + [anon_sym_e_GT_GT] = ACTIONS(4986), + [anon_sym_o_GT_GT] = ACTIONS(4986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4986), + [aux_sym_unquoted_token1] = ACTIONS(4988), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4986), }, [1596] = { - [sym__expr_parenthesized_immediate] = STATE(7492), [sym_comment] = STATE(1596), - [sym__newline] = ACTIONS(4938), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4938), - [anon_sym_err_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_GT_PIPE] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4940), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_DOLLAR] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_DASH2] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4940), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), - [anon_sym_DOT_DOT_LT] = ACTIONS(4938), - [anon_sym_null] = ACTIONS(4938), - [anon_sym_true] = ACTIONS(4938), - [anon_sym_false] = ACTIONS(4938), - [aux_sym__val_number_decimal_token1] = ACTIONS(4940), - [aux_sym__val_number_decimal_token2] = ACTIONS(4938), - [aux_sym__val_number_decimal_token3] = ACTIONS(4938), - [aux_sym__val_number_decimal_token4] = ACTIONS(4938), - [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(4938), - [aux_sym__val_number_token6] = ACTIONS(4938), - [anon_sym_0b] = ACTIONS(4940), - [anon_sym_0o] = ACTIONS(4940), - [anon_sym_0x] = ACTIONS(4940), - [sym_val_date] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4938), - [sym__str_single_quotes] = ACTIONS(4938), - [sym__str_back_ticks] = ACTIONS(4938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4938), - [anon_sym_err_GT] = ACTIONS(4940), - [anon_sym_out_GT] = ACTIONS(4940), - [anon_sym_e_GT] = ACTIONS(4940), - [anon_sym_o_GT] = ACTIONS(4940), - [anon_sym_err_PLUSout_GT] = ACTIONS(4940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), - [anon_sym_o_PLUSe_GT] = ACTIONS(4940), - [anon_sym_e_PLUSo_GT] = ACTIONS(4940), - [anon_sym_err_GT_GT] = ACTIONS(4938), - [anon_sym_out_GT_GT] = ACTIONS(4938), - [anon_sym_e_GT_GT] = ACTIONS(4938), - [anon_sym_o_GT_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), - [aux_sym_unquoted_token1] = ACTIONS(4940), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4938), + [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_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_in2] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1671), + [anon_sym_xor2] = ACTIONS(1671), + [anon_sym_or2] = ACTIONS(1671), + [anon_sym_not_DASHin2] = ACTIONS(1671), + [anon_sym_starts_DASHwith2] = ACTIONS(1671), + [anon_sym_ends_DASHwith2] = ACTIONS(1671), + [anon_sym_EQ_EQ2] = ACTIONS(1671), + [anon_sym_BANG_EQ2] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1671), + [anon_sym_GT_EQ2] = ACTIONS(1671), + [anon_sym_EQ_TILDE2] = ACTIONS(1671), + [anon_sym_BANG_TILDE2] = ACTIONS(1671), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_STAR_STAR2] = ACTIONS(1671), + [anon_sym_PLUS_PLUS2] = ACTIONS(1671), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1671), + [anon_sym_SLASH_SLASH2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1671), + [anon_sym_bit_DASHshr2] = ACTIONS(1671), + [anon_sym_bit_DASHand2] = ACTIONS(1671), + [anon_sym_bit_DASHxor2] = ACTIONS(1671), + [anon_sym_bit_DASHor2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), }, [1597] = { - [sym_cell_path] = STATE(2018), - [sym_path] = STATE(1921), + [sym_cell_path] = STATE(2051), + [sym_path] = STATE(1898), [sym_comment] = STATE(1597), - [aux_sym_cell_path_repeat1] = STATE(1681), - [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_RPAREN] = ACTIONS(1903), - [anon_sym_GT2] = ACTIONS(1901), - [anon_sym_DASH2] = ACTIONS(1903), - [anon_sym_in2] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_EQ_GT] = ACTIONS(1903), - [anon_sym_STAR2] = ACTIONS(1901), - [anon_sym_and2] = ACTIONS(1903), - [anon_sym_xor2] = ACTIONS(1903), - [anon_sym_or2] = ACTIONS(1903), - [anon_sym_not_DASHin2] = ACTIONS(1903), - [anon_sym_starts_DASHwith2] = ACTIONS(1903), - [anon_sym_ends_DASHwith2] = ACTIONS(1903), - [anon_sym_EQ_EQ2] = ACTIONS(1903), - [anon_sym_BANG_EQ2] = ACTIONS(1903), - [anon_sym_LT2] = ACTIONS(1901), - [anon_sym_LT_EQ2] = ACTIONS(1903), - [anon_sym_GT_EQ2] = ACTIONS(1903), - [anon_sym_EQ_TILDE2] = ACTIONS(1903), - [anon_sym_BANG_TILDE2] = ACTIONS(1903), - [anon_sym_STAR_STAR2] = ACTIONS(1903), - [anon_sym_PLUS_PLUS2] = ACTIONS(1903), - [anon_sym_SLASH2] = ACTIONS(1901), - [anon_sym_mod2] = ACTIONS(1903), - [anon_sym_SLASH_SLASH2] = ACTIONS(1903), - [anon_sym_PLUS2] = ACTIONS(1901), - [anon_sym_bit_DASHshl2] = ACTIONS(1903), - [anon_sym_bit_DASHshr2] = ACTIONS(1903), - [anon_sym_bit_DASHand2] = ACTIONS(1903), - [anon_sym_bit_DASHxor2] = ACTIONS(1903), - [anon_sym_bit_DASHor2] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(4916), - [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_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_GT2] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_EQ_GT] = ACTIONS(1885), + [anon_sym_STAR2] = ACTIONS(1883), + [anon_sym_and2] = ACTIONS(1885), + [anon_sym_xor2] = ACTIONS(1885), + [anon_sym_or2] = ACTIONS(1885), + [anon_sym_not_DASHin2] = ACTIONS(1885), + [anon_sym_starts_DASHwith2] = ACTIONS(1885), + [anon_sym_ends_DASHwith2] = ACTIONS(1885), + [anon_sym_EQ_EQ2] = ACTIONS(1885), + [anon_sym_BANG_EQ2] = ACTIONS(1885), + [anon_sym_LT2] = ACTIONS(1883), + [anon_sym_LT_EQ2] = ACTIONS(1885), + [anon_sym_GT_EQ2] = ACTIONS(1885), + [anon_sym_EQ_TILDE2] = ACTIONS(1885), + [anon_sym_BANG_TILDE2] = ACTIONS(1885), + [anon_sym_STAR_STAR2] = ACTIONS(1885), + [anon_sym_PLUS_PLUS2] = ACTIONS(1885), + [anon_sym_SLASH2] = ACTIONS(1883), + [anon_sym_mod2] = ACTIONS(1885), + [anon_sym_SLASH_SLASH2] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_bit_DASHshl2] = ACTIONS(1885), + [anon_sym_bit_DASHshr2] = ACTIONS(1885), + [anon_sym_bit_DASHand2] = ACTIONS(1885), + [anon_sym_bit_DASHxor2] = ACTIONS(1885), + [anon_sym_bit_DASHor2] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), [anon_sym_POUND] = ACTIONS(251), }, [1598] = { - [sym_cell_path] = STATE(2017), - [sym_path] = STATE(1921), [sym_comment] = STATE(1598), - [aux_sym_cell_path_repeat1] = STATE(1681), - [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_RPAREN] = ACTIONS(1931), - [anon_sym_GT2] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_in2] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_EQ_GT] = ACTIONS(1931), - [anon_sym_STAR2] = ACTIONS(1929), - [anon_sym_and2] = ACTIONS(1931), - [anon_sym_xor2] = ACTIONS(1931), - [anon_sym_or2] = ACTIONS(1931), - [anon_sym_not_DASHin2] = ACTIONS(1931), - [anon_sym_starts_DASHwith2] = ACTIONS(1931), - [anon_sym_ends_DASHwith2] = ACTIONS(1931), - [anon_sym_EQ_EQ2] = ACTIONS(1931), - [anon_sym_BANG_EQ2] = ACTIONS(1931), - [anon_sym_LT2] = ACTIONS(1929), - [anon_sym_LT_EQ2] = ACTIONS(1931), - [anon_sym_GT_EQ2] = ACTIONS(1931), - [anon_sym_EQ_TILDE2] = ACTIONS(1931), - [anon_sym_BANG_TILDE2] = ACTIONS(1931), - [anon_sym_STAR_STAR2] = ACTIONS(1931), - [anon_sym_PLUS_PLUS2] = ACTIONS(1931), - [anon_sym_SLASH2] = ACTIONS(1929), - [anon_sym_mod2] = ACTIONS(1931), - [anon_sym_SLASH_SLASH2] = ACTIONS(1931), - [anon_sym_PLUS2] = ACTIONS(1929), - [anon_sym_bit_DASHshl2] = ACTIONS(1931), - [anon_sym_bit_DASHshr2] = ACTIONS(1931), - [anon_sym_bit_DASHand2] = ACTIONS(1931), - [anon_sym_bit_DASHxor2] = ACTIONS(1931), - [anon_sym_bit_DASHor2] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(4916), - [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), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2258), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_err_GT_PIPE] = ACTIONS(2258), + [anon_sym_out_GT_PIPE] = ACTIONS(2258), + [anon_sym_e_GT_PIPE] = ACTIONS(2258), + [anon_sym_o_GT_PIPE] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), + [anon_sym_DOT_DOT_LT] = ACTIONS(2254), + [anon_sym_null] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_0b] = ACTIONS(2254), + [anon_sym_0o] = ACTIONS(2254), + [anon_sym_0x] = ACTIONS(2254), + [sym_val_date] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym__str_single_quotes] = ACTIONS(2258), + [sym__str_back_ticks] = ACTIONS(2258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [aux_sym_unquoted_token1] = ACTIONS(2254), + [aux_sym_unquoted_token4] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2258), }, [1599] = { - [sym_path] = STATE(1590), + [sym_cell_path] = STATE(2065), + [sym_path] = STATE(1898), [sym_comment] = STATE(1599), - [aux_sym_cell_path_repeat1] = STATE(1599), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_GT2] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(981), - [anon_sym_in2] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_and2] = ACTIONS(981), - [anon_sym_xor2] = ACTIONS(981), - [anon_sym_or2] = ACTIONS(981), - [anon_sym_not_DASHin2] = ACTIONS(981), - [anon_sym_starts_DASHwith2] = ACTIONS(981), - [anon_sym_ends_DASHwith2] = ACTIONS(981), - [anon_sym_EQ_EQ2] = ACTIONS(981), - [anon_sym_BANG_EQ2] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ2] = ACTIONS(981), - [anon_sym_GT_EQ2] = ACTIONS(981), - [anon_sym_EQ_TILDE2] = ACTIONS(981), - [anon_sym_BANG_TILDE2] = ACTIONS(981), - [anon_sym_STAR_STAR2] = ACTIONS(981), - [anon_sym_PLUS_PLUS2] = ACTIONS(981), - [anon_sym_SLASH2] = ACTIONS(979), - [anon_sym_mod2] = ACTIONS(981), - [anon_sym_SLASH_SLASH2] = ACTIONS(981), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_bit_DASHshl2] = ACTIONS(981), - [anon_sym_bit_DASHshr2] = ACTIONS(981), - [anon_sym_bit_DASHand2] = ACTIONS(981), - [anon_sym_bit_DASHxor2] = ACTIONS(981), - [anon_sym_bit_DASHor2] = ACTIONS(981), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4942), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_GT2] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_in2] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_EQ_GT] = ACTIONS(1889), + [anon_sym_STAR2] = ACTIONS(1887), + [anon_sym_and2] = ACTIONS(1889), + [anon_sym_xor2] = ACTIONS(1889), + [anon_sym_or2] = ACTIONS(1889), + [anon_sym_not_DASHin2] = ACTIONS(1889), + [anon_sym_starts_DASHwith2] = ACTIONS(1889), + [anon_sym_ends_DASHwith2] = ACTIONS(1889), + [anon_sym_EQ_EQ2] = ACTIONS(1889), + [anon_sym_BANG_EQ2] = ACTIONS(1889), + [anon_sym_LT2] = ACTIONS(1887), + [anon_sym_LT_EQ2] = ACTIONS(1889), + [anon_sym_GT_EQ2] = ACTIONS(1889), + [anon_sym_EQ_TILDE2] = ACTIONS(1889), + [anon_sym_BANG_TILDE2] = ACTIONS(1889), + [anon_sym_STAR_STAR2] = ACTIONS(1889), + [anon_sym_PLUS_PLUS2] = ACTIONS(1889), + [anon_sym_SLASH2] = ACTIONS(1887), + [anon_sym_mod2] = ACTIONS(1889), + [anon_sym_SLASH_SLASH2] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_bit_DASHshl2] = ACTIONS(1889), + [anon_sym_bit_DASHshr2] = ACTIONS(1889), + [anon_sym_bit_DASHand2] = ACTIONS(1889), + [anon_sym_bit_DASHxor2] = ACTIONS(1889), + [anon_sym_bit_DASHor2] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), [anon_sym_POUND] = ACTIONS(251), }, [1600] = { + [sym_cell_path] = STATE(2156), + [sym_path] = STATE(1971), [sym_comment] = STATE(1600), - [sym__newline] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_err_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_GT_PIPE] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_LT] = ACTIONS(1836), - [anon_sym_null] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1836), - [aux_sym__val_number_decimal_token3] = ACTIONS(1836), - [aux_sym__val_number_decimal_token4] = ACTIONS(1836), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1836), - [aux_sym__val_number_token5] = ACTIONS(1836), - [aux_sym__val_number_token6] = ACTIONS(1836), - [anon_sym_0b] = ACTIONS(1828), - [anon_sym_0o] = ACTIONS(1828), - [anon_sym_0x] = ACTIONS(1828), - [sym_val_date] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__str_single_quotes] = ACTIONS(1836), - [sym__str_back_ticks] = ACTIONS(1836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1836), - [anon_sym_err_GT] = ACTIONS(1828), - [anon_sym_out_GT] = ACTIONS(1828), - [anon_sym_e_GT] = ACTIONS(1828), - [anon_sym_o_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT] = ACTIONS(1828), - [anon_sym_err_GT_GT] = ACTIONS(1836), - [anon_sym_out_GT_GT] = ACTIONS(1836), - [anon_sym_e_GT_GT] = ACTIONS(1836), - [anon_sym_o_GT_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1836), - [aux_sym_unquoted_token1] = ACTIONS(1828), - [aux_sym_unquoted_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1836), + [aux_sym_cell_path_repeat1] = STATE(1750), + [sym__newline] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1757), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1757), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1757), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), + [aux_sym_record_entry_token1] = ACTIONS(1761), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(251), }, [1601] = { + [sym__expr_parenthesized_immediate] = STATE(8466), [sym_comment] = STATE(1601), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_GT2] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1024), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_EQ_GT] = ACTIONS(1024), - [anon_sym_STAR2] = ACTIONS(1022), - [anon_sym_and2] = ACTIONS(1024), - [anon_sym_xor2] = ACTIONS(1024), - [anon_sym_or2] = ACTIONS(1024), - [anon_sym_not_DASHin2] = ACTIONS(1024), - [anon_sym_starts_DASHwith2] = ACTIONS(1024), - [anon_sym_ends_DASHwith2] = ACTIONS(1024), - [anon_sym_EQ_EQ2] = ACTIONS(1024), - [anon_sym_BANG_EQ2] = ACTIONS(1024), - [anon_sym_LT2] = ACTIONS(1022), - [anon_sym_LT_EQ2] = ACTIONS(1024), - [anon_sym_GT_EQ2] = ACTIONS(1024), - [anon_sym_EQ_TILDE2] = ACTIONS(1024), - [anon_sym_BANG_TILDE2] = ACTIONS(1024), - [anon_sym_STAR_STAR2] = ACTIONS(1024), - [anon_sym_PLUS_PLUS2] = ACTIONS(1024), - [anon_sym_SLASH2] = ACTIONS(1022), - [anon_sym_mod2] = ACTIONS(1024), - [anon_sym_SLASH_SLASH2] = ACTIONS(1024), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_bit_DASHshl2] = ACTIONS(1024), - [anon_sym_bit_DASHshr2] = ACTIONS(1024), - [anon_sym_bit_DASHand2] = ACTIONS(1024), - [anon_sym_bit_DASHxor2] = ACTIONS(1024), - [anon_sym_bit_DASHor2] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_err_GT_PIPE] = ACTIONS(4992), + [anon_sym_out_GT_PIPE] = ACTIONS(4992), + [anon_sym_e_GT_PIPE] = ACTIONS(4992), + [anon_sym_o_GT_PIPE] = ACTIONS(4992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4992), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_DASH2] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_RBRACE] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), + [anon_sym_DOT_DOT_LT] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [aux_sym__val_number_decimal_token1] = ACTIONS(4994), + [aux_sym__val_number_decimal_token2] = ACTIONS(4992), + [aux_sym__val_number_decimal_token3] = ACTIONS(4992), + [aux_sym__val_number_decimal_token4] = ACTIONS(4992), + [aux_sym__val_number_token1] = ACTIONS(4992), + [aux_sym__val_number_token2] = ACTIONS(4992), + [aux_sym__val_number_token3] = ACTIONS(4992), + [aux_sym__val_number_token4] = ACTIONS(4992), + [aux_sym__val_number_token5] = ACTIONS(4992), + [aux_sym__val_number_token6] = ACTIONS(4992), + [anon_sym_0b] = ACTIONS(4994), + [anon_sym_0o] = ACTIONS(4994), + [anon_sym_0x] = ACTIONS(4994), + [sym_val_date] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [sym__str_single_quotes] = ACTIONS(4992), + [sym__str_back_ticks] = ACTIONS(4992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4992), + [anon_sym_err_GT] = ACTIONS(4994), + [anon_sym_out_GT] = ACTIONS(4994), + [anon_sym_e_GT] = ACTIONS(4994), + [anon_sym_o_GT] = ACTIONS(4994), + [anon_sym_err_PLUSout_GT] = ACTIONS(4994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4994), + [anon_sym_o_PLUSe_GT] = ACTIONS(4994), + [anon_sym_e_PLUSo_GT] = ACTIONS(4994), + [anon_sym_err_GT_GT] = ACTIONS(4992), + [anon_sym_out_GT_GT] = ACTIONS(4992), + [anon_sym_e_GT_GT] = ACTIONS(4992), + [anon_sym_o_GT_GT] = ACTIONS(4992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4992), + [aux_sym_unquoted_token1] = ACTIONS(4994), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4992), }, [1602] = { [sym_comment] = STATE(1602), - [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] = 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(251), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [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(1830), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0x] = ACTIONS(1830), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_err_GT] = ACTIONS(1830), + [anon_sym_out_GT] = ACTIONS(1830), + [anon_sym_e_GT] = ACTIONS(1830), + [anon_sym_o_GT] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT] = ACTIONS(1830), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1838), }, [1603] = { [sym_comment] = STATE(1603), - [sym__newline] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_err_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_GT_PIPE] = ACTIONS(2300), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_RPAREN] = ACTIONS(2300), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_DOT_DOT] = ACTIONS(2298), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2298), - [anon_sym_DOT_DOT_LT] = ACTIONS(2298), - [anon_sym_null] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2298), - [anon_sym_false] = ACTIONS(2298), - [aux_sym__val_number_decimal_token1] = ACTIONS(2298), - [aux_sym__val_number_decimal_token2] = ACTIONS(2298), - [aux_sym__val_number_decimal_token3] = ACTIONS(2298), - [aux_sym__val_number_decimal_token4] = ACTIONS(2298), - [aux_sym__val_number_token1] = ACTIONS(2298), - [aux_sym__val_number_token2] = ACTIONS(2298), - [aux_sym__val_number_token3] = ACTIONS(2298), - [aux_sym__val_number_token4] = ACTIONS(2298), - [aux_sym__val_number_token5] = ACTIONS(2298), - [aux_sym__val_number_token6] = ACTIONS(2298), - [anon_sym_0b] = ACTIONS(2298), - [anon_sym_0o] = ACTIONS(2298), - [anon_sym_0x] = ACTIONS(2298), - [sym_val_date] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [aux_sym_unquoted_token1] = ACTIONS(2298), - [aux_sym_unquoted_token4] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), + [anon_sym_DOT_DOT_LT] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_0b] = ACTIONS(1818), + [anon_sym_0o] = ACTIONS(1818), + [anon_sym_0x] = ACTIONS(1818), + [sym_val_date] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [aux_sym_unquoted_token1] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), }, [1604] = { - [sym_cell_path] = STATE(2037), - [sym_path] = STATE(1921), [sym_comment] = STATE(1604), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_GT2] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1943), - [anon_sym_in2] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_EQ_GT] = ACTIONS(1943), - [anon_sym_STAR2] = ACTIONS(1941), - [anon_sym_and2] = ACTIONS(1943), - [anon_sym_xor2] = ACTIONS(1943), - [anon_sym_or2] = ACTIONS(1943), - [anon_sym_not_DASHin2] = ACTIONS(1943), - [anon_sym_starts_DASHwith2] = ACTIONS(1943), - [anon_sym_ends_DASHwith2] = ACTIONS(1943), - [anon_sym_EQ_EQ2] = ACTIONS(1943), - [anon_sym_BANG_EQ2] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1941), - [anon_sym_LT_EQ2] = ACTIONS(1943), - [anon_sym_GT_EQ2] = ACTIONS(1943), - [anon_sym_EQ_TILDE2] = ACTIONS(1943), - [anon_sym_BANG_TILDE2] = ACTIONS(1943), - [anon_sym_STAR_STAR2] = ACTIONS(1943), - [anon_sym_PLUS_PLUS2] = ACTIONS(1943), - [anon_sym_SLASH2] = ACTIONS(1941), - [anon_sym_mod2] = ACTIONS(1943), - [anon_sym_SLASH_SLASH2] = ACTIONS(1943), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_bit_DASHshl2] = ACTIONS(1943), - [anon_sym_bit_DASHshr2] = ACTIONS(1943), - [anon_sym_bit_DASHand2] = ACTIONS(1943), - [anon_sym_bit_DASHxor2] = ACTIONS(1943), - [anon_sym_bit_DASHor2] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_err_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_GT_PIPE] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2272), + [anon_sym_DOT_DOT_LT] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [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(2272), + [aux_sym__val_number_token5] = ACTIONS(2272), + [aux_sym__val_number_token6] = ACTIONS(2272), + [anon_sym_0b] = ACTIONS(2272), + [anon_sym_0o] = ACTIONS(2272), + [anon_sym_0x] = ACTIONS(2272), + [sym_val_date] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym__str_single_quotes] = ACTIONS(2274), + [sym__str_back_ticks] = ACTIONS(2274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2274), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [aux_sym_unquoted_token1] = ACTIONS(2272), + [aux_sym_unquoted_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2274), }, [1605] = { [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_DOT_DOT2] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2098), - [anon_sym_DOT_DOT_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2100), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2100), - [anon_sym_null] = ACTIONS(2100), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = 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(2100), - [aux_sym__val_number_token5] = ACTIONS(2100), - [aux_sym__val_number_token6] = ACTIONS(2100), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [sym__str_single_quotes] = ACTIONS(2100), - [sym__str_back_ticks] = ACTIONS(2100), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2100), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [aux_sym_unquoted_token1] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2100), + [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), + [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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1765), }, [1606] = { - [sym_cell_path] = STATE(1664), - [sym_path] = STATE(1921), [sym_comment] = STATE(1606), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_STAR2] = ACTIONS(973), - [anon_sym_and2] = ACTIONS(975), - [anon_sym_xor2] = ACTIONS(975), - [anon_sym_or2] = ACTIONS(975), - [anon_sym_not_DASHin2] = ACTIONS(975), - [anon_sym_starts_DASHwith2] = ACTIONS(975), - [anon_sym_ends_DASHwith2] = ACTIONS(975), - [anon_sym_EQ_EQ2] = ACTIONS(975), - [anon_sym_BANG_EQ2] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_LT_EQ2] = ACTIONS(975), - [anon_sym_GT_EQ2] = ACTIONS(975), - [anon_sym_EQ_TILDE2] = ACTIONS(975), - [anon_sym_BANG_TILDE2] = ACTIONS(975), - [anon_sym_STAR_STAR2] = ACTIONS(975), - [anon_sym_PLUS_PLUS2] = ACTIONS(975), - [anon_sym_SLASH2] = ACTIONS(973), - [anon_sym_mod2] = ACTIONS(975), - [anon_sym_SLASH_SLASH2] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_bit_DASHshl2] = ACTIONS(975), - [anon_sym_bit_DASHshr2] = ACTIONS(975), - [anon_sym_bit_DASHand2] = ACTIONS(975), - [anon_sym_bit_DASHxor2] = ACTIONS(975), - [anon_sym_bit_DASHor2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), + [sym__newline] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_err_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_GT_PIPE] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_RPAREN] = ACTIONS(2294), + [anon_sym_DOLLAR] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_DOT_DOT] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2294), + [anon_sym_DOT_DOT_LT] = ACTIONS(2294), + [anon_sym_null] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [aux_sym__val_number_decimal_token1] = ACTIONS(2292), + [aux_sym__val_number_decimal_token2] = ACTIONS(2294), + [aux_sym__val_number_decimal_token3] = ACTIONS(2294), + [aux_sym__val_number_decimal_token4] = ACTIONS(2294), + [aux_sym__val_number_token1] = ACTIONS(2294), + [aux_sym__val_number_token2] = ACTIONS(2294), + [aux_sym__val_number_token3] = ACTIONS(2294), + [aux_sym__val_number_token4] = ACTIONS(2294), + [aux_sym__val_number_token5] = ACTIONS(2294), + [aux_sym__val_number_token6] = ACTIONS(2294), + [anon_sym_0b] = ACTIONS(2292), + [anon_sym_0o] = ACTIONS(2292), + [anon_sym_0x] = ACTIONS(2292), + [sym_val_date] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [sym__str_single_quotes] = ACTIONS(2294), + [sym__str_back_ticks] = ACTIONS(2294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), + [anon_sym_err_GT] = ACTIONS(2292), + [anon_sym_out_GT] = ACTIONS(2292), + [anon_sym_e_GT] = ACTIONS(2292), + [anon_sym_o_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT] = ACTIONS(2292), + [anon_sym_err_GT_GT] = ACTIONS(2294), + [anon_sym_out_GT_GT] = ACTIONS(2294), + [anon_sym_e_GT_GT] = ACTIONS(2294), + [anon_sym_o_GT_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), + [aux_sym_unquoted_token1] = ACTIONS(2292), + [aux_sym_unquoted_token2] = ACTIONS(1850), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2294), }, [1607] = { - [sym_cell_path] = STATE(2014), - [sym_path] = STATE(1928), [sym_comment] = STATE(1607), - [aux_sym_cell_path_repeat1] = STATE(1712), - [sym__newline] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_GT2] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_STAR2] = ACTIONS(1777), - [anon_sym_and2] = ACTIONS(1779), - [anon_sym_xor2] = ACTIONS(1779), - [anon_sym_or2] = ACTIONS(1779), - [anon_sym_not_DASHin2] = ACTIONS(1779), - [anon_sym_starts_DASHwith2] = ACTIONS(1779), - [anon_sym_ends_DASHwith2] = ACTIONS(1779), - [anon_sym_EQ_EQ2] = ACTIONS(1779), - [anon_sym_BANG_EQ2] = ACTIONS(1779), - [anon_sym_LT2] = ACTIONS(1777), - [anon_sym_LT_EQ2] = ACTIONS(1779), - [anon_sym_GT_EQ2] = ACTIONS(1779), - [anon_sym_EQ_TILDE2] = ACTIONS(1779), - [anon_sym_BANG_TILDE2] = ACTIONS(1779), - [anon_sym_STAR_STAR2] = ACTIONS(1779), - [anon_sym_PLUS_PLUS2] = ACTIONS(1779), - [anon_sym_SLASH2] = ACTIONS(1777), - [anon_sym_mod2] = ACTIONS(1779), - [anon_sym_SLASH_SLASH2] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1777), - [anon_sym_bit_DASHshl2] = ACTIONS(1779), - [anon_sym_bit_DASHshr2] = ACTIONS(1779), - [anon_sym_bit_DASHand2] = ACTIONS(1779), - [anon_sym_bit_DASHxor2] = ACTIONS(1779), - [anon_sym_bit_DASHor2] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [aux_sym_record_entry_token1] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), + [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(2234), + [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(2234), + [anon_sym_DOT_DOT_LT] = ACTIONS(2234), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2234), + [aux_sym__val_number_token5] = ACTIONS(2234), + [aux_sym__val_number_token6] = ACTIONS(2234), + [anon_sym_0b] = ACTIONS(2234), + [anon_sym_0o] = ACTIONS(2234), + [anon_sym_0x] = ACTIONS(2234), + [sym_val_date] = ACTIONS(2234), + [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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [aux_sym_unquoted_token1] = ACTIONS(2234), + [aux_sym_unquoted_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2238), }, [1608] = { [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4845), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1848), + [anon_sym_DOT_DOT_LT] = ACTIONS(1848), + [anon_sym_null] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1848), + [aux_sym__val_number_token5] = ACTIONS(1848), + [aux_sym__val_number_token6] = ACTIONS(1848), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1840), + [anon_sym_0x] = ACTIONS(1840), + [sym_val_date] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [aux_sym_unquoted_token1] = ACTIONS(1840), + [aux_sym_unquoted_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1848), }, [1609] = { [sym_comment] = STATE(1609), - [sym__newline] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_err_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_GT_PIPE] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_LPAREN2] = ACTIONS(2284), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2282), - [anon_sym_DOT_DOT_LT] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2282), - [anon_sym_false] = 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_0b] = ACTIONS(2282), - [anon_sym_0o] = ACTIONS(2282), - [anon_sym_0x] = ACTIONS(2282), - [sym_val_date] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2286), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2282), - [anon_sym_out_GT_GT] = ACTIONS(2282), - [anon_sym_e_GT_GT] = ACTIONS(2282), - [anon_sym_o_GT_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2282), - [aux_sym_unquoted_token1] = ACTIONS(2282), - [aux_sym_unquoted_token4] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2286), + [ts_builtin_sym_end] = ACTIONS(2125), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_DOLLAR] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [anon_sym_DASH2] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2123), + [anon_sym_DOT_DOT2] = ACTIONS(2123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2123), + [anon_sym_DOT_DOT_LT] = ACTIONS(2123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), + [anon_sym_null] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [aux_sym__val_number_decimal_token1] = ACTIONS(2123), + [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_0b] = ACTIONS(2123), + [anon_sym_0o] = ACTIONS(2123), + [anon_sym_0x] = ACTIONS(2123), + [sym_val_date] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [sym__str_single_quotes] = ACTIONS(2125), + [sym__str_back_ticks] = ACTIONS(2125), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), + [anon_sym_err_GT] = ACTIONS(2123), + [anon_sym_out_GT] = ACTIONS(2123), + [anon_sym_e_GT] = ACTIONS(2123), + [anon_sym_o_GT] = ACTIONS(2123), + [anon_sym_err_PLUSout_GT] = ACTIONS(2123), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), + [anon_sym_o_PLUSe_GT] = ACTIONS(2123), + [anon_sym_e_PLUSo_GT] = ACTIONS(2123), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [aux_sym_unquoted_token1] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2125), }, [1610] = { [sym_comment] = STATE(1610), + [sym__newline] = ACTIONS(4996), + [anon_sym_SEMI] = ACTIONS(4996), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_err_GT_PIPE] = ACTIONS(4996), + [anon_sym_out_GT_PIPE] = ACTIONS(4996), + [anon_sym_e_GT_PIPE] = ACTIONS(4996), + [anon_sym_o_GT_PIPE] = ACTIONS(4996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_LPAREN] = ACTIONS(4996), + [anon_sym_RPAREN] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(4998), + [anon_sym_DASH_DASH] = ACTIONS(4996), + [anon_sym_DASH2] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4996), + [anon_sym_DOT_DOT] = ACTIONS(4998), + [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4998), + [anon_sym_DOT_DOT_LT] = ACTIONS(4998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [anon_sym_null] = ACTIONS(4996), + [anon_sym_true] = ACTIONS(4996), + [anon_sym_false] = ACTIONS(4996), + [aux_sym__val_number_decimal_token1] = ACTIONS(4998), + [aux_sym__val_number_decimal_token2] = ACTIONS(4996), + [aux_sym__val_number_decimal_token3] = ACTIONS(4996), + [aux_sym__val_number_decimal_token4] = ACTIONS(4996), + [aux_sym__val_number_token1] = ACTIONS(4996), + [aux_sym__val_number_token2] = ACTIONS(4996), + [aux_sym__val_number_token3] = ACTIONS(4996), + [aux_sym__val_number_token4] = ACTIONS(4996), + [aux_sym__val_number_token5] = ACTIONS(4996), + [aux_sym__val_number_token6] = ACTIONS(4996), + [anon_sym_0b] = ACTIONS(4998), + [anon_sym_0o] = ACTIONS(4998), + [anon_sym_0x] = ACTIONS(4998), + [sym_val_date] = ACTIONS(4996), + [anon_sym_DQUOTE] = ACTIONS(4996), + [sym__str_single_quotes] = ACTIONS(4996), + [sym__str_back_ticks] = ACTIONS(4996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4996), + [anon_sym_err_GT] = ACTIONS(4998), + [anon_sym_out_GT] = ACTIONS(4998), + [anon_sym_e_GT] = ACTIONS(4998), + [anon_sym_o_GT] = ACTIONS(4998), + [anon_sym_err_PLUSout_GT] = ACTIONS(4998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4998), + [anon_sym_o_PLUSe_GT] = ACTIONS(4998), + [anon_sym_e_PLUSo_GT] = ACTIONS(4998), + [anon_sym_err_GT_GT] = ACTIONS(4996), + [anon_sym_out_GT_GT] = ACTIONS(4996), + [anon_sym_e_GT_GT] = ACTIONS(4996), + [anon_sym_o_GT_GT] = ACTIONS(4996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4996), + [aux_sym_unquoted_token1] = ACTIONS(4998), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4996), + }, + [1611] = { + [sym_cell_path] = STATE(2086), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1611), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_GT2] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_EQ_GT] = ACTIONS(1897), + [anon_sym_STAR2] = ACTIONS(1895), + [anon_sym_and2] = ACTIONS(1897), + [anon_sym_xor2] = ACTIONS(1897), + [anon_sym_or2] = ACTIONS(1897), + [anon_sym_not_DASHin2] = ACTIONS(1897), + [anon_sym_starts_DASHwith2] = ACTIONS(1897), + [anon_sym_ends_DASHwith2] = ACTIONS(1897), + [anon_sym_EQ_EQ2] = ACTIONS(1897), + [anon_sym_BANG_EQ2] = ACTIONS(1897), + [anon_sym_LT2] = ACTIONS(1895), + [anon_sym_LT_EQ2] = ACTIONS(1897), + [anon_sym_GT_EQ2] = ACTIONS(1897), + [anon_sym_EQ_TILDE2] = ACTIONS(1897), + [anon_sym_BANG_TILDE2] = ACTIONS(1897), + [anon_sym_STAR_STAR2] = ACTIONS(1897), + [anon_sym_PLUS_PLUS2] = ACTIONS(1897), + [anon_sym_SLASH2] = ACTIONS(1895), + [anon_sym_mod2] = ACTIONS(1897), + [anon_sym_SLASH_SLASH2] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_bit_DASHshl2] = ACTIONS(1897), + [anon_sym_bit_DASHshr2] = ACTIONS(1897), + [anon_sym_bit_DASHand2] = ACTIONS(1897), + [anon_sym_bit_DASHxor2] = ACTIONS(1897), + [anon_sym_bit_DASHor2] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(251), + }, + [1612] = { + [sym_comment] = STATE(1612), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(5000), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [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_0b] = ACTIONS(1008), + [anon_sym_0o] = ACTIONS(1008), + [anon_sym_0x] = ACTIONS(1008), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1010), + }, + [1613] = { + [sym_comment] = STATE(1613), [sym__newline] = ACTIONS(992), [anon_sym_SEMI] = ACTIONS(992), [anon_sym_PIPE] = ACTIONS(992), @@ -231411,7 +234352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(992), [anon_sym_RBRACE] = ACTIONS(992), [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4947), + [anon_sym_QMARK2] = ACTIONS(5002), [anon_sym_DOT] = ACTIONS(990), [anon_sym_DOT_DOT_EQ] = ACTIONS(992), [anon_sym_DOT_DOT_LT] = ACTIONS(992), @@ -231457,555 +234398,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(992), }, - [1611] = { - [sym_comment] = STATE(1611), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(4949), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_null] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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_0b] = ACTIONS(1012), - [anon_sym_0o] = ACTIONS(1012), - [anon_sym_0x] = ACTIONS(1012), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), - [aux_sym_unquoted_token1] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), - }, - [1612] = { - [sym_comment] = STATE(1612), - [sym__newline] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_err_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_GT_PIPE] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [anon_sym_DOT_DOT_LT] = ACTIONS(1851), - [anon_sym_null] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1851), - [anon_sym_out_GT_GT] = ACTIONS(1851), - [anon_sym_e_GT_GT] = ACTIONS(1851), - [anon_sym_o_GT_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), - [aux_sym_unquoted_token1] = ACTIONS(1843), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1851), - }, - [1613] = { - [sym_cell_path] = STATE(1979), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1613), - [aux_sym_cell_path_repeat1] = STATE(1681), - [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(4916), - [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(251), - }, [1614] = { - [sym_path] = STATE(1795), + [sym_cell_path] = STATE(2048), + [sym_path] = STATE(1898), [sym_comment] = STATE(1614), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(981), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(981), - [anon_sym_DASH2] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_DOT_DOT_LT] = ACTIONS(981), - [anon_sym_null] = ACTIONS(981), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [aux_sym__val_number_decimal_token1] = ACTIONS(979), - [aux_sym__val_number_decimal_token2] = ACTIONS(981), - [aux_sym__val_number_decimal_token3] = ACTIONS(981), - [aux_sym__val_number_decimal_token4] = ACTIONS(981), - [aux_sym__val_number_token1] = ACTIONS(981), - [aux_sym__val_number_token2] = ACTIONS(981), - [aux_sym__val_number_token3] = ACTIONS(981), - [aux_sym__val_number_token4] = ACTIONS(981), - [aux_sym__val_number_token5] = ACTIONS(981), - [aux_sym__val_number_token6] = ACTIONS(981), - [anon_sym_0b] = ACTIONS(979), - [anon_sym_0o] = ACTIONS(979), - [anon_sym_0x] = ACTIONS(979), - [sym_val_date] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [sym__str_single_quotes] = ACTIONS(981), - [sym__str_back_ticks] = ACTIONS(981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [aux_sym_unquoted_token1] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(981), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_err_GT_PIPE] = ACTIONS(1943), + [anon_sym_out_GT_PIPE] = ACTIONS(1943), + [anon_sym_e_GT_PIPE] = ACTIONS(1943), + [anon_sym_o_GT_PIPE] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), + [anon_sym_RPAREN] = ACTIONS(1943), + [anon_sym_GT2] = ACTIONS(1941), + [anon_sym_DASH2] = ACTIONS(1943), + [anon_sym_in2] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_EQ_GT] = ACTIONS(1943), + [anon_sym_STAR2] = ACTIONS(1941), + [anon_sym_and2] = ACTIONS(1943), + [anon_sym_xor2] = ACTIONS(1943), + [anon_sym_or2] = ACTIONS(1943), + [anon_sym_not_DASHin2] = ACTIONS(1943), + [anon_sym_starts_DASHwith2] = ACTIONS(1943), + [anon_sym_ends_DASHwith2] = ACTIONS(1943), + [anon_sym_EQ_EQ2] = ACTIONS(1943), + [anon_sym_BANG_EQ2] = ACTIONS(1943), + [anon_sym_LT2] = ACTIONS(1941), + [anon_sym_LT_EQ2] = ACTIONS(1943), + [anon_sym_GT_EQ2] = ACTIONS(1943), + [anon_sym_EQ_TILDE2] = ACTIONS(1943), + [anon_sym_BANG_TILDE2] = ACTIONS(1943), + [anon_sym_STAR_STAR2] = ACTIONS(1943), + [anon_sym_PLUS_PLUS2] = ACTIONS(1943), + [anon_sym_SLASH2] = ACTIONS(1941), + [anon_sym_mod2] = ACTIONS(1943), + [anon_sym_SLASH_SLASH2] = ACTIONS(1943), + [anon_sym_PLUS2] = ACTIONS(1941), + [anon_sym_bit_DASHshl2] = ACTIONS(1943), + [anon_sym_bit_DASHshr2] = ACTIONS(1943), + [anon_sym_bit_DASHand2] = ACTIONS(1943), + [anon_sym_bit_DASHxor2] = ACTIONS(1943), + [anon_sym_bit_DASHor2] = ACTIONS(1943), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1941), + [anon_sym_out_GT] = ACTIONS(1941), + [anon_sym_e_GT] = ACTIONS(1941), + [anon_sym_o_GT] = ACTIONS(1941), + [anon_sym_err_PLUSout_GT] = ACTIONS(1941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), + [anon_sym_o_PLUSe_GT] = ACTIONS(1941), + [anon_sym_e_PLUSo_GT] = ACTIONS(1941), + [anon_sym_err_GT_GT] = ACTIONS(1943), + [anon_sym_out_GT_GT] = ACTIONS(1943), + [anon_sym_e_GT_GT] = ACTIONS(1943), + [anon_sym_o_GT_GT] = ACTIONS(1943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(251), }, [1615] = { - [sym_cell_path] = STATE(2083), - [sym_path] = STATE(1921), [sym_comment] = STATE(1615), - [aux_sym_cell_path_repeat1] = STATE(1681), - [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(4916), - [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), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, [1616] = { [sym_comment] = STATE(1616), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(4954), - [aux_sym__immediate_decimal_token2] = ACTIONS(4956), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [sym__newline] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_err_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_GT_PIPE] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2266), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_DASH2] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_DOT_DOT] = ACTIONS(2266), + [anon_sym_LPAREN2] = ACTIONS(2268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2270), + [anon_sym_DOT_DOT_LT] = ACTIONS(2270), + [anon_sym_null] = ACTIONS(2270), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [aux_sym__val_number_decimal_token1] = ACTIONS(2266), + [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_0b] = ACTIONS(2266), + [anon_sym_0o] = ACTIONS(2266), + [anon_sym_0x] = ACTIONS(2266), + [sym_val_date] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__str_single_quotes] = ACTIONS(2270), + [sym__str_back_ticks] = ACTIONS(2270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), + [anon_sym_err_GT] = ACTIONS(2266), + [anon_sym_out_GT] = ACTIONS(2266), + [anon_sym_e_GT] = ACTIONS(2266), + [anon_sym_o_GT] = ACTIONS(2266), + [anon_sym_err_PLUSout_GT] = ACTIONS(2266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2266), + [anon_sym_o_PLUSe_GT] = ACTIONS(2266), + [anon_sym_e_PLUSo_GT] = ACTIONS(2266), + [anon_sym_err_GT_GT] = ACTIONS(2270), + [anon_sym_out_GT_GT] = ACTIONS(2270), + [anon_sym_e_GT_GT] = ACTIONS(2270), + [anon_sym_o_GT_GT] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2270), + [aux_sym_unquoted_token1] = ACTIONS(2266), + [aux_sym_unquoted_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2270), }, [1617] = { + [sym__expr_parenthesized_immediate] = STATE(8466), [sym_comment] = STATE(1617), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [sym__newline] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_err_GT_PIPE] = ACTIONS(5004), + [anon_sym_out_GT_PIPE] = ACTIONS(5004), + [anon_sym_e_GT_PIPE] = ACTIONS(5004), + [anon_sym_o_GT_PIPE] = ACTIONS(5004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_DASH2] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_RBRACE] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5004), + [anon_sym_DOT_DOT_LT] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), + [anon_sym_true] = ACTIONS(5004), + [anon_sym_false] = ACTIONS(5004), + [aux_sym__val_number_decimal_token1] = ACTIONS(5006), + [aux_sym__val_number_decimal_token2] = ACTIONS(5004), + [aux_sym__val_number_decimal_token3] = ACTIONS(5004), + [aux_sym__val_number_decimal_token4] = ACTIONS(5004), + [aux_sym__val_number_token1] = ACTIONS(5004), + [aux_sym__val_number_token2] = ACTIONS(5004), + [aux_sym__val_number_token3] = ACTIONS(5004), + [aux_sym__val_number_token4] = ACTIONS(5004), + [aux_sym__val_number_token5] = ACTIONS(5004), + [aux_sym__val_number_token6] = ACTIONS(5004), + [anon_sym_0b] = ACTIONS(5006), + [anon_sym_0o] = ACTIONS(5006), + [anon_sym_0x] = ACTIONS(5006), + [sym_val_date] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [sym__str_single_quotes] = ACTIONS(5004), + [sym__str_back_ticks] = ACTIONS(5004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5004), + [anon_sym_err_GT] = ACTIONS(5006), + [anon_sym_out_GT] = ACTIONS(5006), + [anon_sym_e_GT] = ACTIONS(5006), + [anon_sym_o_GT] = ACTIONS(5006), + [anon_sym_err_PLUSout_GT] = ACTIONS(5006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5006), + [anon_sym_o_PLUSe_GT] = ACTIONS(5006), + [anon_sym_e_PLUSo_GT] = ACTIONS(5006), + [anon_sym_err_GT_GT] = ACTIONS(5004), + [anon_sym_out_GT_GT] = ACTIONS(5004), + [anon_sym_e_GT_GT] = ACTIONS(5004), + [anon_sym_o_GT_GT] = ACTIONS(5004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5004), + [aux_sym_unquoted_token1] = ACTIONS(5006), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5004), }, [1618] = { [sym_comment] = STATE(1618), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_PLUS_EQ] = ACTIONS(4960), - [anon_sym_DASH_EQ] = ACTIONS(4960), - [anon_sym_STAR_EQ] = ACTIONS(4960), - [anon_sym_SLASH_EQ] = ACTIONS(4960), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4960), - [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_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1040), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [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(251), + [sym_long_flag_identifier] = ACTIONS(5008), + [sym__newline] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5010), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_err_GT_PIPE] = ACTIONS(5010), + [anon_sym_out_GT_PIPE] = ACTIONS(5010), + [anon_sym_e_GT_PIPE] = ACTIONS(5010), + [anon_sym_o_GT_PIPE] = ACTIONS(5010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_RPAREN] = ACTIONS(5010), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH2] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5010), + [anon_sym_RBRACE] = ACTIONS(5010), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), + [anon_sym_DOT_DOT_LT] = ACTIONS(5010), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [aux_sym__val_number_decimal_token1] = ACTIONS(5012), + [aux_sym__val_number_decimal_token2] = ACTIONS(5010), + [aux_sym__val_number_decimal_token3] = ACTIONS(5010), + [aux_sym__val_number_decimal_token4] = ACTIONS(5010), + [aux_sym__val_number_token1] = ACTIONS(5012), + [aux_sym__val_number_token2] = ACTIONS(5012), + [aux_sym__val_number_token3] = ACTIONS(5012), + [aux_sym__val_number_token4] = ACTIONS(5012), + [aux_sym__val_number_token5] = ACTIONS(5010), + [aux_sym__val_number_token6] = ACTIONS(5012), + [anon_sym_0b] = ACTIONS(5012), + [anon_sym_0o] = ACTIONS(5012), + [anon_sym_0x] = ACTIONS(5012), + [sym_val_date] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5010), + [sym__str_single_quotes] = ACTIONS(5010), + [sym__str_back_ticks] = ACTIONS(5010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5010), + [anon_sym_err_GT] = ACTIONS(5012), + [anon_sym_out_GT] = ACTIONS(5012), + [anon_sym_e_GT] = ACTIONS(5012), + [anon_sym_o_GT] = ACTIONS(5012), + [anon_sym_err_PLUSout_GT] = ACTIONS(5012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5012), + [anon_sym_o_PLUSe_GT] = ACTIONS(5012), + [anon_sym_e_PLUSo_GT] = ACTIONS(5012), + [anon_sym_err_GT_GT] = ACTIONS(5010), + [anon_sym_out_GT_GT] = ACTIONS(5010), + [anon_sym_e_GT_GT] = ACTIONS(5010), + [anon_sym_o_GT_GT] = ACTIONS(5010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5010), + [anon_sym_EQ2] = ACTIONS(5014), + [aux_sym_unquoted_token1] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5010), }, [1619] = { - [sym_cell_path] = STATE(2063), - [sym_path] = STATE(1921), + [sym_cell_path] = STATE(2163), + [sym_path] = STATE(1898), [sym_comment] = STATE(1619), - [aux_sym_cell_path_repeat1] = STATE(1681), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_err_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_GT_PIPE] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(1905), + [anon_sym_GT2] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1905), + [anon_sym_in2] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_EQ_GT] = ACTIONS(1905), + [anon_sym_STAR2] = ACTIONS(1903), + [anon_sym_and2] = ACTIONS(1905), + [anon_sym_xor2] = ACTIONS(1905), + [anon_sym_or2] = ACTIONS(1905), + [anon_sym_not_DASHin2] = ACTIONS(1905), + [anon_sym_starts_DASHwith2] = ACTIONS(1905), + [anon_sym_ends_DASHwith2] = ACTIONS(1905), + [anon_sym_EQ_EQ2] = ACTIONS(1905), + [anon_sym_BANG_EQ2] = ACTIONS(1905), + [anon_sym_LT2] = ACTIONS(1903), + [anon_sym_LT_EQ2] = ACTIONS(1905), + [anon_sym_GT_EQ2] = ACTIONS(1905), + [anon_sym_EQ_TILDE2] = ACTIONS(1905), + [anon_sym_BANG_TILDE2] = ACTIONS(1905), + [anon_sym_STAR_STAR2] = ACTIONS(1905), + [anon_sym_PLUS_PLUS2] = ACTIONS(1905), + [anon_sym_SLASH2] = ACTIONS(1903), + [anon_sym_mod2] = ACTIONS(1905), + [anon_sym_SLASH_SLASH2] = ACTIONS(1905), + [anon_sym_PLUS2] = ACTIONS(1903), + [anon_sym_bit_DASHshl2] = ACTIONS(1905), + [anon_sym_bit_DASHshr2] = ACTIONS(1905), + [anon_sym_bit_DASHand2] = ACTIONS(1905), + [anon_sym_bit_DASHxor2] = ACTIONS(1905), + [anon_sym_bit_DASHor2] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1903), + [anon_sym_out_GT] = ACTIONS(1903), + [anon_sym_e_GT] = ACTIONS(1903), + [anon_sym_o_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT] = ACTIONS(1903), + [anon_sym_err_GT_GT] = ACTIONS(1905), + [anon_sym_out_GT_GT] = ACTIONS(1905), + [anon_sym_e_GT_GT] = ACTIONS(1905), + [anon_sym_o_GT_GT] = ACTIONS(1905), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1905), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1905), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1905), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(251), + }, + [1620] = { + [sym_cell_path] = STATE(2141), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1620), + [aux_sym_cell_path_repeat1] = STATE(1733), [sym__newline] = ACTIONS(1911), [anon_sym_SEMI] = ACTIONS(1911), [anon_sym_PIPE] = ACTIONS(1911), @@ -232050,7 +234855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1911), [anon_sym_bit_DASHxor2] = ACTIONS(1911), [anon_sym_bit_DASHor2] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4980), [anon_sym_err_GT] = ACTIONS(1909), [anon_sym_out_GT] = ACTIONS(1909), [anon_sym_e_GT] = ACTIONS(1909), @@ -232069,963 +234874,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), [anon_sym_POUND] = ACTIONS(251), }, - [1620] = { - [sym_comment] = STATE(1620), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2290), - [anon_sym_DOT_DOT_LT] = ACTIONS(2290), - [anon_sym_null] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2290), - [anon_sym_false] = ACTIONS(2290), - [aux_sym__val_number_decimal_token1] = ACTIONS(2290), - [aux_sym__val_number_decimal_token2] = ACTIONS(2290), - [aux_sym__val_number_decimal_token3] = ACTIONS(2290), - [aux_sym__val_number_decimal_token4] = ACTIONS(2290), - [aux_sym__val_number_token1] = ACTIONS(2290), - [aux_sym__val_number_token2] = ACTIONS(2290), - [aux_sym__val_number_token3] = ACTIONS(2290), - [aux_sym__val_number_token4] = ACTIONS(2290), - [aux_sym__val_number_token5] = ACTIONS(2290), - [aux_sym__val_number_token6] = ACTIONS(2290), - [anon_sym_0b] = ACTIONS(2290), - [anon_sym_0o] = ACTIONS(2290), - [anon_sym_0x] = ACTIONS(2290), - [sym_val_date] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), - [aux_sym_unquoted_token1] = ACTIONS(2290), - [aux_sym_unquoted_token4] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), - }, [1621] = { + [sym_path] = STATE(1843), [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(2104), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2102), - [anon_sym_DOT_DOT_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = 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(2104), - [aux_sym__val_number_token5] = ACTIONS(2104), - [aux_sym__val_number_token6] = ACTIONS(2104), - [anon_sym_0b] = ACTIONS(2102), - [anon_sym_0o] = ACTIONS(2102), - [anon_sym_0x] = ACTIONS(2102), - [sym_val_date] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), - [aux_sym_unquoted_token1] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), + [aux_sym_cell_path_repeat1] = STATE(1621), + [ts_builtin_sym_end] = ACTIONS(977), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_DASH2] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(977), + [anon_sym_DOT_DOT_LT] = ACTIONS(977), + [anon_sym_null] = ACTIONS(977), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [aux_sym__val_number_decimal_token1] = ACTIONS(975), + [aux_sym__val_number_decimal_token2] = ACTIONS(977), + [aux_sym__val_number_decimal_token3] = ACTIONS(977), + [aux_sym__val_number_decimal_token4] = ACTIONS(977), + [aux_sym__val_number_token1] = ACTIONS(977), + [aux_sym__val_number_token2] = ACTIONS(977), + [aux_sym__val_number_token3] = ACTIONS(977), + [aux_sym__val_number_token4] = ACTIONS(977), + [aux_sym__val_number_token5] = ACTIONS(977), + [aux_sym__val_number_token6] = ACTIONS(977), + [anon_sym_0b] = ACTIONS(975), + [anon_sym_0o] = ACTIONS(975), + [anon_sym_0x] = ACTIONS(975), + [sym_val_date] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(977), + [sym__str_single_quotes] = ACTIONS(977), + [sym__str_back_ticks] = ACTIONS(977), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [aux_sym_unquoted_token1] = ACTIONS(975), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(977), }, [1622] = { - [sym_cell_path] = STATE(2046), - [sym_path] = STATE(1921), [sym_comment] = STATE(1622), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_GT2] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1947), - [anon_sym_in2] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_STAR2] = ACTIONS(1945), - [anon_sym_and2] = ACTIONS(1947), - [anon_sym_xor2] = ACTIONS(1947), - [anon_sym_or2] = ACTIONS(1947), - [anon_sym_not_DASHin2] = ACTIONS(1947), - [anon_sym_starts_DASHwith2] = ACTIONS(1947), - [anon_sym_ends_DASHwith2] = ACTIONS(1947), - [anon_sym_EQ_EQ2] = ACTIONS(1947), - [anon_sym_BANG_EQ2] = ACTIONS(1947), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LT_EQ2] = ACTIONS(1947), - [anon_sym_GT_EQ2] = ACTIONS(1947), - [anon_sym_EQ_TILDE2] = ACTIONS(1947), - [anon_sym_BANG_TILDE2] = ACTIONS(1947), - [anon_sym_STAR_STAR2] = ACTIONS(1947), - [anon_sym_PLUS_PLUS2] = ACTIONS(1947), - [anon_sym_SLASH2] = ACTIONS(1945), - [anon_sym_mod2] = ACTIONS(1947), - [anon_sym_SLASH_SLASH2] = ACTIONS(1947), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_bit_DASHshl2] = ACTIONS(1947), - [anon_sym_bit_DASHshr2] = ACTIONS(1947), - [anon_sym_bit_DASHand2] = ACTIONS(1947), - [anon_sym_bit_DASHxor2] = ACTIONS(1947), - [anon_sym_bit_DASHor2] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(5021), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, [1623] = { [sym_comment] = STATE(1623), - [sym__newline] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_err_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_GT_PIPE] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_LT] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2233), - [aux_sym__val_number_decimal_token3] = ACTIONS(2233), - [aux_sym__val_number_decimal_token4] = ACTIONS(2233), - [aux_sym__val_number_token1] = ACTIONS(2233), - [aux_sym__val_number_token2] = ACTIONS(2233), - [aux_sym__val_number_token3] = ACTIONS(2233), - [aux_sym__val_number_token4] = ACTIONS(2233), - [aux_sym__val_number_token5] = ACTIONS(2233), - [aux_sym__val_number_token6] = ACTIONS(2233), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2233), - [anon_sym_out_GT_GT] = ACTIONS(2233), - [anon_sym_e_GT_GT] = ACTIONS(2233), - [anon_sym_o_GT_GT] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2233), - [aux_sym_unquoted_token1] = ACTIONS(2229), - [aux_sym_unquoted_token2] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2233), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4950), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, [1624] = { - [sym_cell_path] = STATE(2071), - [sym_path] = STATE(1921), + [sym_path] = STATE(1843), [sym_comment] = STATE(1624), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_GT2] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1951), - [anon_sym_in2] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_STAR2] = ACTIONS(1949), - [anon_sym_and2] = ACTIONS(1951), - [anon_sym_xor2] = ACTIONS(1951), - [anon_sym_or2] = ACTIONS(1951), - [anon_sym_not_DASHin2] = ACTIONS(1951), - [anon_sym_starts_DASHwith2] = ACTIONS(1951), - [anon_sym_ends_DASHwith2] = ACTIONS(1951), - [anon_sym_EQ_EQ2] = ACTIONS(1951), - [anon_sym_BANG_EQ2] = ACTIONS(1951), - [anon_sym_LT2] = ACTIONS(1949), - [anon_sym_LT_EQ2] = ACTIONS(1951), - [anon_sym_GT_EQ2] = ACTIONS(1951), - [anon_sym_EQ_TILDE2] = ACTIONS(1951), - [anon_sym_BANG_TILDE2] = ACTIONS(1951), - [anon_sym_STAR_STAR2] = ACTIONS(1951), - [anon_sym_PLUS_PLUS2] = ACTIONS(1951), - [anon_sym_SLASH2] = ACTIONS(1949), - [anon_sym_mod2] = ACTIONS(1951), - [anon_sym_SLASH_SLASH2] = ACTIONS(1951), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_bit_DASHshl2] = ACTIONS(1951), - [anon_sym_bit_DASHshr2] = ACTIONS(1951), - [anon_sym_bit_DASHand2] = ACTIONS(1951), - [anon_sym_bit_DASHxor2] = ACTIONS(1951), - [anon_sym_bit_DASHor2] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1621), + [ts_builtin_sym_end] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [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_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(984), }, [1625] = { + [sym__expr_parenthesized_immediate] = STATE(8149), [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(2187), - [sym__newline] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_PIPE] = ACTIONS(2187), - [anon_sym_err_GT_PIPE] = ACTIONS(2187), - [anon_sym_out_GT_PIPE] = ACTIONS(2187), - [anon_sym_e_GT_PIPE] = ACTIONS(2187), - [anon_sym_o_GT_PIPE] = ACTIONS(2187), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2187), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2187), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2187), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2187), - [anon_sym_DASH2] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2181), - [anon_sym_DOT_DOT2] = ACTIONS(4962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2181), - [anon_sym_DOT_DOT_LT] = ACTIONS(2181), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4964), - [anon_sym_null] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2187), - [anon_sym_false] = ACTIONS(2187), - [aux_sym__val_number_decimal_token1] = ACTIONS(2181), - [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_0b] = ACTIONS(2181), - [anon_sym_0o] = ACTIONS(2181), - [anon_sym_0x] = ACTIONS(2181), - [sym_val_date] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym__str_single_quotes] = ACTIONS(2187), - [sym__str_back_ticks] = ACTIONS(2187), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), - [anon_sym_err_GT] = ACTIONS(2181), - [anon_sym_out_GT] = ACTIONS(2181), - [anon_sym_e_GT] = ACTIONS(2181), - [anon_sym_o_GT] = ACTIONS(2181), - [anon_sym_err_PLUSout_GT] = ACTIONS(2181), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2181), - [anon_sym_o_PLUSe_GT] = ACTIONS(2181), - [anon_sym_e_PLUSo_GT] = ACTIONS(2181), - [anon_sym_err_GT_GT] = ACTIONS(2187), - [anon_sym_out_GT_GT] = ACTIONS(2187), - [anon_sym_e_GT_GT] = ACTIONS(2187), - [anon_sym_o_GT_GT] = ACTIONS(2187), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2187), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2187), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2187), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2187), - [aux_sym_unquoted_token1] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2187), + [sym__newline] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_PIPE] = ACTIONS(5023), + [anon_sym_err_GT_PIPE] = ACTIONS(5023), + [anon_sym_out_GT_PIPE] = ACTIONS(5023), + [anon_sym_e_GT_PIPE] = ACTIONS(5023), + [anon_sym_o_GT_PIPE] = ACTIONS(5023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_DASH2] = ACTIONS(5025), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5025), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5023), + [anon_sym_DOT_DOT_LT] = ACTIONS(5023), + [anon_sym_null] = ACTIONS(5023), + [anon_sym_true] = ACTIONS(5023), + [anon_sym_false] = ACTIONS(5023), + [aux_sym__val_number_decimal_token1] = ACTIONS(5025), + [aux_sym__val_number_decimal_token2] = ACTIONS(5023), + [aux_sym__val_number_decimal_token3] = ACTIONS(5023), + [aux_sym__val_number_decimal_token4] = ACTIONS(5023), + [aux_sym__val_number_token1] = ACTIONS(5023), + [aux_sym__val_number_token2] = ACTIONS(5023), + [aux_sym__val_number_token3] = ACTIONS(5023), + [aux_sym__val_number_token4] = ACTIONS(5023), + [aux_sym__val_number_token5] = ACTIONS(5023), + [aux_sym__val_number_token6] = ACTIONS(5023), + [anon_sym_0b] = ACTIONS(5025), + [anon_sym_0o] = ACTIONS(5025), + [anon_sym_0x] = ACTIONS(5025), + [sym_val_date] = ACTIONS(5023), + [anon_sym_DQUOTE] = ACTIONS(5023), + [sym__str_single_quotes] = ACTIONS(5023), + [sym__str_back_ticks] = ACTIONS(5023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5023), + [anon_sym_err_GT] = ACTIONS(5025), + [anon_sym_out_GT] = ACTIONS(5025), + [anon_sym_e_GT] = ACTIONS(5025), + [anon_sym_o_GT] = ACTIONS(5025), + [anon_sym_err_PLUSout_GT] = ACTIONS(5025), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5025), + [anon_sym_o_PLUSe_GT] = ACTIONS(5025), + [anon_sym_e_PLUSo_GT] = ACTIONS(5025), + [anon_sym_err_GT_GT] = ACTIONS(5023), + [anon_sym_out_GT_GT] = ACTIONS(5023), + [anon_sym_e_GT_GT] = ACTIONS(5023), + [anon_sym_o_GT_GT] = ACTIONS(5023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5023), + [aux_sym_unquoted_token1] = ACTIONS(5025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5023), }, [1626] = { [sym_comment] = STATE(1626), - [sym_long_flag_identifier] = ACTIONS(4966), - [sym__newline] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4968), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_err_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_GT_PIPE] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4968), - [anon_sym_RPAREN] = ACTIONS(4968), - [anon_sym_DOLLAR] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4968), - [anon_sym_DASH2] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4968), - [anon_sym_RBRACE] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), - [anon_sym_DOT_DOT_LT] = ACTIONS(4968), - [anon_sym_null] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4970), - [anon_sym_false] = ACTIONS(4970), - [aux_sym__val_number_decimal_token1] = ACTIONS(4970), - [aux_sym__val_number_decimal_token2] = ACTIONS(4968), - [aux_sym__val_number_decimal_token3] = ACTIONS(4968), - [aux_sym__val_number_decimal_token4] = ACTIONS(4968), - [aux_sym__val_number_token1] = ACTIONS(4970), - [aux_sym__val_number_token2] = ACTIONS(4970), - [aux_sym__val_number_token3] = ACTIONS(4970), - [aux_sym__val_number_token4] = ACTIONS(4970), - [aux_sym__val_number_token5] = ACTIONS(4968), - [aux_sym__val_number_token6] = ACTIONS(4970), - [anon_sym_0b] = ACTIONS(4970), - [anon_sym_0o] = ACTIONS(4970), - [anon_sym_0x] = ACTIONS(4970), - [sym_val_date] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4968), - [sym__str_single_quotes] = ACTIONS(4968), - [sym__str_back_ticks] = ACTIONS(4968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4968), - [anon_sym_err_GT] = ACTIONS(4970), - [anon_sym_out_GT] = ACTIONS(4970), - [anon_sym_e_GT] = ACTIONS(4970), - [anon_sym_o_GT] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT] = ACTIONS(4970), - [anon_sym_err_GT_GT] = ACTIONS(4968), - [anon_sym_out_GT_GT] = ACTIONS(4968), - [anon_sym_e_GT_GT] = ACTIONS(4968), - [anon_sym_o_GT_GT] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4968), - [anon_sym_EQ2] = ACTIONS(4972), - [aux_sym_unquoted_token1] = ACTIONS(4970), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4968), + [sym__newline] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_err_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_GT_PIPE] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), + [anon_sym_DOT_DOT_LT] = ACTIONS(2230), + [anon_sym_null] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [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), + [aux_sym__val_number_token4] = ACTIONS(2230), + [aux_sym__val_number_token5] = ACTIONS(2230), + [aux_sym__val_number_token6] = ACTIONS(2230), + [anon_sym_0b] = ACTIONS(2226), + [anon_sym_0o] = ACTIONS(2226), + [anon_sym_0x] = ACTIONS(2226), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), + [anon_sym_err_GT] = ACTIONS(2226), + [anon_sym_out_GT] = ACTIONS(2226), + [anon_sym_e_GT] = ACTIONS(2226), + [anon_sym_o_GT] = ACTIONS(2226), + [anon_sym_err_PLUSout_GT] = ACTIONS(2226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), + [anon_sym_o_PLUSe_GT] = ACTIONS(2226), + [anon_sym_e_PLUSo_GT] = ACTIONS(2226), + [anon_sym_err_GT_GT] = ACTIONS(2230), + [anon_sym_out_GT_GT] = ACTIONS(2230), + [anon_sym_e_GT_GT] = ACTIONS(2230), + [anon_sym_o_GT_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [aux_sym_unquoted_token2] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2230), }, [1627] = { - [sym_cell_path] = STATE(2061), - [sym_path] = STATE(1921), + [sym_cell_path] = STATE(2084), + [sym_path] = STATE(1898), [sym_comment] = STATE(1627), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1953), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1953), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1953), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_err_GT_PIPE] = ACTIONS(2051), + [anon_sym_out_GT_PIPE] = ACTIONS(2051), + [anon_sym_e_GT_PIPE] = ACTIONS(2051), + [anon_sym_o_GT_PIPE] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2051), + [anon_sym_RPAREN] = ACTIONS(2051), + [anon_sym_GT2] = ACTIONS(2049), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_in2] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_EQ_GT] = ACTIONS(2051), + [anon_sym_STAR2] = ACTIONS(2049), + [anon_sym_and2] = ACTIONS(2051), + [anon_sym_xor2] = ACTIONS(2051), + [anon_sym_or2] = ACTIONS(2051), + [anon_sym_not_DASHin2] = ACTIONS(2051), + [anon_sym_starts_DASHwith2] = ACTIONS(2051), + [anon_sym_ends_DASHwith2] = ACTIONS(2051), + [anon_sym_EQ_EQ2] = ACTIONS(2051), + [anon_sym_BANG_EQ2] = ACTIONS(2051), + [anon_sym_LT2] = ACTIONS(2049), + [anon_sym_LT_EQ2] = ACTIONS(2051), + [anon_sym_GT_EQ2] = ACTIONS(2051), + [anon_sym_EQ_TILDE2] = ACTIONS(2051), + [anon_sym_BANG_TILDE2] = ACTIONS(2051), + [anon_sym_STAR_STAR2] = ACTIONS(2051), + [anon_sym_PLUS_PLUS2] = ACTIONS(2051), + [anon_sym_SLASH2] = ACTIONS(2049), + [anon_sym_mod2] = ACTIONS(2051), + [anon_sym_SLASH_SLASH2] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2049), + [anon_sym_bit_DASHshl2] = ACTIONS(2051), + [anon_sym_bit_DASHshr2] = ACTIONS(2051), + [anon_sym_bit_DASHand2] = ACTIONS(2051), + [anon_sym_bit_DASHxor2] = ACTIONS(2051), + [anon_sym_bit_DASHor2] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(2049), + [anon_sym_out_GT] = ACTIONS(2049), + [anon_sym_e_GT] = ACTIONS(2049), + [anon_sym_o_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT] = ACTIONS(2049), + [anon_sym_err_GT_GT] = ACTIONS(2051), + [anon_sym_out_GT_GT] = ACTIONS(2051), + [anon_sym_e_GT_GT] = ACTIONS(2051), + [anon_sym_o_GT_GT] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2051), [anon_sym_POUND] = ACTIONS(251), }, [1628] = { - [sym_cell_path] = STATE(1986), - [sym_path] = STATE(1921), + [sym_cell_path] = STATE(2058), + [sym_path] = STATE(1898), [sym_comment] = STATE(1628), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_err_GT_PIPE] = ACTIONS(2066), - [anon_sym_out_GT_PIPE] = ACTIONS(2066), - [anon_sym_e_GT_PIPE] = ACTIONS(2066), - [anon_sym_o_GT_PIPE] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2066), - [anon_sym_in2] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2066), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2066), - [anon_sym_xor2] = ACTIONS(2066), - [anon_sym_or2] = ACTIONS(2066), - [anon_sym_not_DASHin2] = ACTIONS(2066), - [anon_sym_starts_DASHwith2] = ACTIONS(2066), - [anon_sym_ends_DASHwith2] = ACTIONS(2066), - [anon_sym_EQ_EQ2] = ACTIONS(2066), - [anon_sym_BANG_EQ2] = ACTIONS(2066), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2066), - [anon_sym_GT_EQ2] = ACTIONS(2066), - [anon_sym_EQ_TILDE2] = ACTIONS(2066), - [anon_sym_BANG_TILDE2] = ACTIONS(2066), - [anon_sym_STAR_STAR2] = ACTIONS(2066), - [anon_sym_PLUS_PLUS2] = ACTIONS(2066), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2066), - [anon_sym_SLASH_SLASH2] = ACTIONS(2066), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2066), - [anon_sym_bit_DASHshr2] = ACTIONS(2066), - [anon_sym_bit_DASHand2] = ACTIONS(2066), - [anon_sym_bit_DASHxor2] = ACTIONS(2066), - [anon_sym_bit_DASHor2] = ACTIONS(2066), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(2064), - [anon_sym_out_GT] = ACTIONS(2064), - [anon_sym_e_GT] = ACTIONS(2064), - [anon_sym_o_GT] = ACTIONS(2064), - [anon_sym_err_PLUSout_GT] = ACTIONS(2064), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2064), - [anon_sym_o_PLUSe_GT] = ACTIONS(2064), - [anon_sym_e_PLUSo_GT] = ACTIONS(2064), - [anon_sym_err_GT_GT] = ACTIONS(2066), - [anon_sym_out_GT_GT] = ACTIONS(2066), - [anon_sym_e_GT_GT] = ACTIONS(2066), - [anon_sym_o_GT_GT] = ACTIONS(2066), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2066), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2066), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2066), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(251), - }, - [1629] = { - [sym_comment] = STATE(1629), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT] = ACTIONS(1795), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [1630] = { - [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1824), - [anon_sym_DOT_DOT_LT] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1826), - [aux_sym__val_number_token5] = ACTIONS(1826), - [aux_sym__val_number_token6] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), - }, - [1631] = { - [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_DOT_DOT] = ACTIONS(2070), - [anon_sym_DOT_DOT2] = ACTIONS(4974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT] = ACTIONS(2070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4976), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4976), - [anon_sym_null] = ACTIONS(2076), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [aux_sym__val_number_decimal_token1] = ACTIONS(2070), - [aux_sym__val_number_decimal_token2] = ACTIONS(2076), - [aux_sym__val_number_decimal_token3] = ACTIONS(2076), - [aux_sym__val_number_decimal_token4] = ACTIONS(2076), - [aux_sym__val_number_token1] = ACTIONS(2076), - [aux_sym__val_number_token2] = ACTIONS(2076), - [aux_sym__val_number_token3] = ACTIONS(2076), - [aux_sym__val_number_token4] = ACTIONS(2076), - [aux_sym__val_number_token5] = ACTIONS(2076), - [aux_sym__val_number_token6] = ACTIONS(2076), - [anon_sym_0b] = ACTIONS(2070), - [anon_sym_0o] = ACTIONS(2070), - [anon_sym_0x] = ACTIONS(2070), - [sym_val_date] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2076), - [sym__str_single_quotes] = ACTIONS(2076), - [sym__str_back_ticks] = ACTIONS(2076), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2070), - [anon_sym_out_GT] = ACTIONS(2070), - [anon_sym_e_GT] = ACTIONS(2070), - [anon_sym_o_GT] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT] = ACTIONS(2070), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [aux_sym_unquoted_token1] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2076), - }, - [1632] = { - [sym_comment] = STATE(1632), - [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(2078), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2078), - [anon_sym_DOT_DOT2] = ACTIONS(4978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2078), - [anon_sym_DOT_DOT_LT] = ACTIONS(2078), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4980), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2078), - [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(2078), - [anon_sym_0o] = ACTIONS(2078), - [anon_sym_0x] = ACTIONS(2078), - [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(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(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(2078), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2084), - }, - [1633] = { - [sym_comment] = STATE(1633), - [anon_sym_EQ] = ACTIONS(4982), - [anon_sym_PLUS_EQ] = ACTIONS(4984), - [anon_sym_DASH_EQ] = ACTIONS(4984), - [anon_sym_STAR_EQ] = ACTIONS(4984), - [anon_sym_SLASH_EQ] = ACTIONS(4984), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4984), - [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_GT2] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_STAR2] = ACTIONS(1038), - [anon_sym_and2] = ACTIONS(1040), - [anon_sym_xor2] = ACTIONS(1040), - [anon_sym_or2] = ACTIONS(1040), - [anon_sym_not_DASHin2] = ACTIONS(1040), - [anon_sym_starts_DASHwith2] = ACTIONS(1040), - [anon_sym_ends_DASHwith2] = ACTIONS(1040), - [anon_sym_EQ_EQ2] = ACTIONS(1040), - [anon_sym_BANG_EQ2] = ACTIONS(1040), - [anon_sym_LT2] = ACTIONS(1038), - [anon_sym_LT_EQ2] = ACTIONS(1040), - [anon_sym_GT_EQ2] = ACTIONS(1040), - [anon_sym_EQ_TILDE2] = ACTIONS(1040), - [anon_sym_BANG_TILDE2] = ACTIONS(1040), - [anon_sym_STAR_STAR2] = ACTIONS(1040), - [anon_sym_PLUS_PLUS2] = ACTIONS(1038), - [anon_sym_SLASH2] = ACTIONS(1038), - [anon_sym_mod2] = ACTIONS(1040), - [anon_sym_SLASH_SLASH2] = ACTIONS(1040), - [anon_sym_PLUS2] = ACTIONS(1038), - [anon_sym_bit_DASHshl2] = ACTIONS(1040), - [anon_sym_bit_DASHshr2] = ACTIONS(1040), - [anon_sym_bit_DASHand2] = ACTIONS(1040), - [anon_sym_bit_DASHxor2] = ACTIONS(1040), - [anon_sym_bit_DASHor2] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [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(251), - }, - [1634] = { - [sym_cell_path] = STATE(2053), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1634), - [aux_sym_cell_path_repeat1] = STATE(1681), + [aux_sym_cell_path_repeat1] = STATE(1733), [sym__newline] = ACTIONS(1919), [anon_sym_SEMI] = ACTIONS(1919), [anon_sym_PIPE] = ACTIONS(1919), @@ -233070,7 +235399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1919), [anon_sym_bit_DASHxor2] = ACTIONS(1919), [anon_sym_bit_DASHor2] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4980), [anon_sym_err_GT] = ACTIONS(1917), [anon_sym_out_GT] = ACTIONS(1917), [anon_sym_e_GT] = ACTIONS(1917), @@ -233089,1164 +235418,960 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), [anon_sym_POUND] = ACTIONS(251), }, + [1629] = { + [sym_comment] = STATE(1629), + [sym__newline] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5027), + [anon_sym_PIPE] = ACTIONS(5027), + [anon_sym_err_GT_PIPE] = ACTIONS(5027), + [anon_sym_out_GT_PIPE] = ACTIONS(5027), + [anon_sym_e_GT_PIPE] = ACTIONS(5027), + [anon_sym_o_GT_PIPE] = ACTIONS(5027), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5027), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5027), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5027), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_DASH2] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5027), + [anon_sym_DOT_DOT_LT] = ACTIONS(5027), + [anon_sym_null] = ACTIONS(5029), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [aux_sym__val_number_decimal_token1] = ACTIONS(5029), + [aux_sym__val_number_decimal_token2] = ACTIONS(5029), + [aux_sym__val_number_decimal_token3] = ACTIONS(5027), + [aux_sym__val_number_decimal_token4] = ACTIONS(5027), + [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(5029), + [anon_sym_0o] = ACTIONS(5029), + [anon_sym_0x] = ACTIONS(5029), + [sym_val_date] = ACTIONS(5029), + [anon_sym_DQUOTE] = ACTIONS(5027), + [sym__str_single_quotes] = ACTIONS(5027), + [sym__str_back_ticks] = ACTIONS(5027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5027), + [anon_sym_err_GT] = ACTIONS(5029), + [anon_sym_out_GT] = ACTIONS(5029), + [anon_sym_e_GT] = ACTIONS(5029), + [anon_sym_o_GT] = ACTIONS(5029), + [anon_sym_err_PLUSout_GT] = ACTIONS(5029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5029), + [anon_sym_o_PLUSe_GT] = ACTIONS(5029), + [anon_sym_e_PLUSo_GT] = ACTIONS(5029), + [anon_sym_err_GT_GT] = ACTIONS(5027), + [anon_sym_out_GT_GT] = ACTIONS(5027), + [anon_sym_e_GT_GT] = ACTIONS(5027), + [anon_sym_o_GT_GT] = ACTIONS(5027), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5027), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5027), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5027), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5027), + [anon_sym_EQ2] = ACTIONS(5031), + [sym_short_flag_identifier] = ACTIONS(5033), + [aux_sym_unquoted_token1] = ACTIONS(5029), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5027), + }, + [1630] = { + [sym_cell_path] = STATE(2067), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1630), + [aux_sym_cell_path_repeat1] = STATE(1733), + [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(4980), + [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(251), + }, + [1631] = { + [sym_comment] = STATE(1631), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_PLUS_EQ] = ACTIONS(5037), + [anon_sym_DASH_EQ] = ACTIONS(5037), + [anon_sym_STAR_EQ] = ACTIONS(5037), + [anon_sym_SLASH_EQ] = ACTIONS(5037), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(5037), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1036), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1036), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(251), + }, + [1632] = { + [sym_cell_path] = STATE(2081), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1632), + [aux_sym_cell_path_repeat1] = STATE(1733), + [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_RPAREN] = ACTIONS(1931), + [anon_sym_GT2] = ACTIONS(1929), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_in2] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_EQ_GT] = ACTIONS(1931), + [anon_sym_STAR2] = ACTIONS(1929), + [anon_sym_and2] = ACTIONS(1931), + [anon_sym_xor2] = ACTIONS(1931), + [anon_sym_or2] = ACTIONS(1931), + [anon_sym_not_DASHin2] = ACTIONS(1931), + [anon_sym_starts_DASHwith2] = ACTIONS(1931), + [anon_sym_ends_DASHwith2] = ACTIONS(1931), + [anon_sym_EQ_EQ2] = ACTIONS(1931), + [anon_sym_BANG_EQ2] = ACTIONS(1931), + [anon_sym_LT2] = ACTIONS(1929), + [anon_sym_LT_EQ2] = ACTIONS(1931), + [anon_sym_GT_EQ2] = ACTIONS(1931), + [anon_sym_EQ_TILDE2] = ACTIONS(1931), + [anon_sym_BANG_TILDE2] = ACTIONS(1931), + [anon_sym_STAR_STAR2] = ACTIONS(1931), + [anon_sym_PLUS_PLUS2] = ACTIONS(1931), + [anon_sym_SLASH2] = ACTIONS(1929), + [anon_sym_mod2] = ACTIONS(1931), + [anon_sym_SLASH_SLASH2] = ACTIONS(1931), + [anon_sym_PLUS2] = ACTIONS(1929), + [anon_sym_bit_DASHshl2] = ACTIONS(1931), + [anon_sym_bit_DASHshr2] = ACTIONS(1931), + [anon_sym_bit_DASHand2] = ACTIONS(1931), + [anon_sym_bit_DASHxor2] = ACTIONS(1931), + [anon_sym_bit_DASHor2] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(4980), + [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), + [anon_sym_POUND] = ACTIONS(251), + }, + [1633] = { + [sym_cell_path] = STATE(2113), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1633), + [aux_sym_cell_path_repeat1] = STATE(1733), + [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(4980), + [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(251), + }, + [1634] = { + [sym_comment] = STATE(1634), + [sym__newline] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DASH2] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(2244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT] = ACTIONS(2242), + [anon_sym_null] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2242), + [aux_sym__val_number_token5] = ACTIONS(2242), + [aux_sym__val_number_token6] = ACTIONS(2242), + [anon_sym_0b] = ACTIONS(2242), + [anon_sym_0o] = ACTIONS(2242), + [anon_sym_0x] = ACTIONS(2242), + [sym_val_date] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2244), + [sym__str_single_quotes] = ACTIONS(2244), + [sym__str_back_ticks] = ACTIONS(2244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2244), + [anon_sym_err_GT] = ACTIONS(2242), + [anon_sym_out_GT] = ACTIONS(2242), + [anon_sym_e_GT] = ACTIONS(2242), + [anon_sym_o_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT] = ACTIONS(2242), + [anon_sym_err_GT_GT] = ACTIONS(2242), + [anon_sym_out_GT_GT] = ACTIONS(2242), + [anon_sym_e_GT_GT] = ACTIONS(2242), + [anon_sym_o_GT_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [aux_sym_unquoted_token1] = ACTIONS(2242), + [aux_sym_unquoted_token4] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2244), + }, [1635] = { [sym_comment] = STATE(1635), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_GT2] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1781), + [anon_sym_in2] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_STAR2] = ACTIONS(1779), + [anon_sym_and2] = ACTIONS(1781), + [anon_sym_xor2] = ACTIONS(1781), + [anon_sym_or2] = ACTIONS(1781), + [anon_sym_not_DASHin2] = ACTIONS(1781), + [anon_sym_starts_DASHwith2] = ACTIONS(1781), + [anon_sym_ends_DASHwith2] = ACTIONS(1781), + [anon_sym_EQ_EQ2] = ACTIONS(1781), + [anon_sym_BANG_EQ2] = ACTIONS(1781), + [anon_sym_LT2] = ACTIONS(1779), + [anon_sym_LT_EQ2] = ACTIONS(1781), + [anon_sym_GT_EQ2] = ACTIONS(1781), + [anon_sym_EQ_TILDE2] = ACTIONS(1781), + [anon_sym_BANG_TILDE2] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_STAR_STAR2] = ACTIONS(1781), + [anon_sym_PLUS_PLUS2] = ACTIONS(1781), + [anon_sym_SLASH2] = ACTIONS(1779), + [anon_sym_mod2] = ACTIONS(1781), + [anon_sym_SLASH_SLASH2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_bit_DASHshl2] = ACTIONS(1781), + [anon_sym_bit_DASHshr2] = ACTIONS(1781), + [anon_sym_bit_DASHand2] = ACTIONS(1781), + [anon_sym_bit_DASHxor2] = ACTIONS(1781), + [anon_sym_bit_DASHor2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4895), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), }, [1636] = { + [sym_cell_path] = STATE(2150), + [sym_path] = STATE(1898), [sym_comment] = STATE(1636), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1826), - [aux_sym__val_number_token5] = ACTIONS(1826), - [aux_sym__val_number_token6] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [aux_sym_unquoted_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_err_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_GT_PIPE] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), + [anon_sym_RPAREN] = ACTIONS(1939), + [anon_sym_GT2] = ACTIONS(1937), + [anon_sym_DASH2] = ACTIONS(1939), + [anon_sym_in2] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_EQ_GT] = ACTIONS(1939), + [anon_sym_STAR2] = ACTIONS(1937), + [anon_sym_and2] = ACTIONS(1939), + [anon_sym_xor2] = ACTIONS(1939), + [anon_sym_or2] = ACTIONS(1939), + [anon_sym_not_DASHin2] = ACTIONS(1939), + [anon_sym_starts_DASHwith2] = ACTIONS(1939), + [anon_sym_ends_DASHwith2] = ACTIONS(1939), + [anon_sym_EQ_EQ2] = ACTIONS(1939), + [anon_sym_BANG_EQ2] = ACTIONS(1939), + [anon_sym_LT2] = ACTIONS(1937), + [anon_sym_LT_EQ2] = ACTIONS(1939), + [anon_sym_GT_EQ2] = ACTIONS(1939), + [anon_sym_EQ_TILDE2] = ACTIONS(1939), + [anon_sym_BANG_TILDE2] = ACTIONS(1939), + [anon_sym_STAR_STAR2] = ACTIONS(1939), + [anon_sym_PLUS_PLUS2] = ACTIONS(1939), + [anon_sym_SLASH2] = ACTIONS(1937), + [anon_sym_mod2] = ACTIONS(1939), + [anon_sym_SLASH_SLASH2] = ACTIONS(1939), + [anon_sym_PLUS2] = ACTIONS(1937), + [anon_sym_bit_DASHshl2] = ACTIONS(1939), + [anon_sym_bit_DASHshr2] = ACTIONS(1939), + [anon_sym_bit_DASHand2] = ACTIONS(1939), + [anon_sym_bit_DASHxor2] = ACTIONS(1939), + [anon_sym_bit_DASHor2] = ACTIONS(1939), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1937), + [anon_sym_out_GT] = ACTIONS(1937), + [anon_sym_e_GT] = ACTIONS(1937), + [anon_sym_o_GT] = ACTIONS(1937), + [anon_sym_err_PLUSout_GT] = ACTIONS(1937), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), + [anon_sym_o_PLUSe_GT] = ACTIONS(1937), + [anon_sym_e_PLUSo_GT] = ACTIONS(1937), + [anon_sym_err_GT_GT] = ACTIONS(1939), + [anon_sym_out_GT_GT] = ACTIONS(1939), + [anon_sym_e_GT_GT] = ACTIONS(1939), + [anon_sym_o_GT_GT] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(251), }, [1637] = { - [sym_cell_path] = STATE(2003), - [sym_path] = STATE(1928), [sym_comment] = STATE(1637), - [aux_sym_cell_path_repeat1] = STATE(1712), - [sym__newline] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_err_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_GT_PIPE] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1775), - [anon_sym_GT2] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1775), - [anon_sym_in2] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_STAR2] = ACTIONS(1771), - [anon_sym_and2] = ACTIONS(1775), - [anon_sym_xor2] = ACTIONS(1775), - [anon_sym_or2] = ACTIONS(1775), - [anon_sym_not_DASHin2] = ACTIONS(1775), - [anon_sym_starts_DASHwith2] = ACTIONS(1775), - [anon_sym_ends_DASHwith2] = ACTIONS(1775), - [anon_sym_EQ_EQ2] = ACTIONS(1775), - [anon_sym_BANG_EQ2] = ACTIONS(1775), - [anon_sym_LT2] = ACTIONS(1771), - [anon_sym_LT_EQ2] = ACTIONS(1775), - [anon_sym_GT_EQ2] = ACTIONS(1775), - [anon_sym_EQ_TILDE2] = ACTIONS(1775), - [anon_sym_BANG_TILDE2] = ACTIONS(1775), - [anon_sym_STAR_STAR2] = ACTIONS(1775), - [anon_sym_PLUS_PLUS2] = ACTIONS(1775), - [anon_sym_SLASH2] = ACTIONS(1771), - [anon_sym_mod2] = ACTIONS(1775), - [anon_sym_SLASH_SLASH2] = ACTIONS(1775), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_bit_DASHshl2] = ACTIONS(1775), - [anon_sym_bit_DASHshr2] = ACTIONS(1775), - [anon_sym_bit_DASHand2] = ACTIONS(1775), - [anon_sym_bit_DASHxor2] = ACTIONS(1775), - [anon_sym_bit_DASHor2] = ACTIONS(1775), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(4945), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [aux_sym_record_entry_token1] = ACTIONS(1775), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1775), - [anon_sym_out_GT_GT] = ACTIONS(1775), - [anon_sym_e_GT_GT] = ACTIONS(1775), - [anon_sym_o_GT_GT] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1775), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_GT2] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1801), + [anon_sym_in2] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_STAR2] = ACTIONS(1799), + [anon_sym_and2] = ACTIONS(1801), + [anon_sym_xor2] = ACTIONS(1801), + [anon_sym_or2] = ACTIONS(1801), + [anon_sym_not_DASHin2] = ACTIONS(1801), + [anon_sym_starts_DASHwith2] = ACTIONS(1801), + [anon_sym_ends_DASHwith2] = ACTIONS(1801), + [anon_sym_EQ_EQ2] = ACTIONS(1801), + [anon_sym_BANG_EQ2] = ACTIONS(1801), + [anon_sym_LT2] = ACTIONS(1799), + [anon_sym_LT_EQ2] = ACTIONS(1801), + [anon_sym_GT_EQ2] = ACTIONS(1801), + [anon_sym_EQ_TILDE2] = ACTIONS(1801), + [anon_sym_BANG_TILDE2] = ACTIONS(1801), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_STAR_STAR2] = ACTIONS(1801), + [anon_sym_PLUS_PLUS2] = ACTIONS(1801), + [anon_sym_SLASH2] = ACTIONS(1799), + [anon_sym_mod2] = ACTIONS(1801), + [anon_sym_SLASH_SLASH2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_bit_DASHshl2] = ACTIONS(1801), + [anon_sym_bit_DASHshr2] = ACTIONS(1801), + [anon_sym_bit_DASHand2] = ACTIONS(1801), + [anon_sym_bit_DASHxor2] = ACTIONS(1801), + [anon_sym_bit_DASHor2] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(5039), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token2] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(251), }, [1638] = { - [sym_cell_path] = STATE(2055), - [sym_path] = STATE(1921), [sym_comment] = STATE(1638), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_err_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_GT_PIPE] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_GT2] = ACTIONS(1921), - [anon_sym_DASH2] = ACTIONS(1923), - [anon_sym_in2] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_EQ_GT] = ACTIONS(1923), - [anon_sym_STAR2] = ACTIONS(1921), - [anon_sym_and2] = ACTIONS(1923), - [anon_sym_xor2] = ACTIONS(1923), - [anon_sym_or2] = ACTIONS(1923), - [anon_sym_not_DASHin2] = ACTIONS(1923), - [anon_sym_starts_DASHwith2] = ACTIONS(1923), - [anon_sym_ends_DASHwith2] = ACTIONS(1923), - [anon_sym_EQ_EQ2] = ACTIONS(1923), - [anon_sym_BANG_EQ2] = ACTIONS(1923), - [anon_sym_LT2] = ACTIONS(1921), - [anon_sym_LT_EQ2] = ACTIONS(1923), - [anon_sym_GT_EQ2] = ACTIONS(1923), - [anon_sym_EQ_TILDE2] = ACTIONS(1923), - [anon_sym_BANG_TILDE2] = ACTIONS(1923), - [anon_sym_STAR_STAR2] = ACTIONS(1923), - [anon_sym_PLUS_PLUS2] = ACTIONS(1923), - [anon_sym_SLASH2] = ACTIONS(1921), - [anon_sym_mod2] = ACTIONS(1923), - [anon_sym_SLASH_SLASH2] = ACTIONS(1923), - [anon_sym_PLUS2] = ACTIONS(1921), - [anon_sym_bit_DASHshl2] = ACTIONS(1923), - [anon_sym_bit_DASHshr2] = ACTIONS(1923), - [anon_sym_bit_DASHand2] = ACTIONS(1923), - [anon_sym_bit_DASHxor2] = ACTIONS(1923), - [anon_sym_bit_DASHor2] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1921), - [anon_sym_out_GT] = ACTIONS(1921), - [anon_sym_e_GT] = ACTIONS(1921), - [anon_sym_o_GT] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT] = ACTIONS(1921), - [anon_sym_err_GT_GT] = ACTIONS(1923), - [anon_sym_out_GT_GT] = ACTIONS(1923), - [anon_sym_e_GT_GT] = ACTIONS(1923), - [anon_sym_o_GT_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1923), + [ts_builtin_sym_end] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT2] = ACTIONS(5041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_LT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5043), + [anon_sym_null] = ACTIONS(1036), + [anon_sym_true] = ACTIONS(1036), + [anon_sym_false] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1036), + [aux_sym__val_number_decimal_token3] = ACTIONS(1036), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(1036), + [aux_sym__val_number_token2] = ACTIONS(1036), + [aux_sym__val_number_token3] = ACTIONS(1036), + [aux_sym__val_number_token4] = ACTIONS(1036), + [aux_sym__val_number_token5] = ACTIONS(1036), + [aux_sym__val_number_token6] = ACTIONS(1036), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_unquoted_token1] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1036), }, [1639] = { - [sym__expr_parenthesized_immediate] = STATE(7966), [sym_comment] = STATE(1639), - [sym__newline] = ACTIONS(4986), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4986), - [anon_sym_err_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_GT_PIPE] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_DOLLAR] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_DASH2] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_DOT_DOT] = ACTIONS(4988), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), - [anon_sym_DOT_DOT_LT] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4986), - [anon_sym_true] = ACTIONS(4986), - [anon_sym_false] = ACTIONS(4986), - [aux_sym__val_number_decimal_token1] = ACTIONS(4988), - [aux_sym__val_number_decimal_token2] = ACTIONS(4986), - [aux_sym__val_number_decimal_token3] = ACTIONS(4986), - [aux_sym__val_number_decimal_token4] = ACTIONS(4986), - [aux_sym__val_number_token1] = ACTIONS(4986), - [aux_sym__val_number_token2] = ACTIONS(4986), - [aux_sym__val_number_token3] = ACTIONS(4986), - [aux_sym__val_number_token4] = ACTIONS(4986), - [aux_sym__val_number_token5] = ACTIONS(4986), - [aux_sym__val_number_token6] = ACTIONS(4986), - [anon_sym_0b] = ACTIONS(4988), - [anon_sym_0o] = ACTIONS(4988), - [anon_sym_0x] = ACTIONS(4988), - [sym_val_date] = ACTIONS(4986), - [anon_sym_DQUOTE] = ACTIONS(4986), - [sym__str_single_quotes] = ACTIONS(4986), - [sym__str_back_ticks] = ACTIONS(4986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4986), - [anon_sym_err_GT] = ACTIONS(4988), - [anon_sym_out_GT] = ACTIONS(4988), - [anon_sym_e_GT] = ACTIONS(4988), - [anon_sym_o_GT] = ACTIONS(4988), - [anon_sym_err_PLUSout_GT] = ACTIONS(4988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4988), - [anon_sym_o_PLUSe_GT] = ACTIONS(4988), - [anon_sym_e_PLUSo_GT] = ACTIONS(4988), - [anon_sym_err_GT_GT] = ACTIONS(4986), - [anon_sym_out_GT_GT] = ACTIONS(4986), - [anon_sym_e_GT_GT] = ACTIONS(4986), - [anon_sym_o_GT_GT] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4986), - [aux_sym_unquoted_token1] = ACTIONS(4988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4986), + [sym__newline] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2815), + [anon_sym_err_GT_PIPE] = ACTIONS(2815), + [anon_sym_out_GT_PIPE] = ACTIONS(2815), + [anon_sym_e_GT_PIPE] = ACTIONS(2815), + [anon_sym_o_GT_PIPE] = ACTIONS(2815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_RPAREN] = ACTIONS(2815), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_DASH2] = ACTIONS(5045), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_DOT_DOT] = ACTIONS(5045), + [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), + [anon_sym_DOT_DOT_LT] = ACTIONS(5045), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [anon_sym_null] = ACTIONS(2815), + [anon_sym_true] = ACTIONS(2815), + [anon_sym_false] = ACTIONS(2815), + [aux_sym__val_number_decimal_token1] = ACTIONS(5045), + [aux_sym__val_number_decimal_token2] = ACTIONS(2815), + [aux_sym__val_number_decimal_token3] = ACTIONS(2815), + [aux_sym__val_number_decimal_token4] = ACTIONS(2815), + [aux_sym__val_number_token1] = ACTIONS(2815), + [aux_sym__val_number_token2] = ACTIONS(2815), + [aux_sym__val_number_token3] = ACTIONS(2815), + [aux_sym__val_number_token4] = ACTIONS(2815), + [aux_sym__val_number_token5] = ACTIONS(2815), + [aux_sym__val_number_token6] = ACTIONS(2815), + [anon_sym_0b] = ACTIONS(5045), + [anon_sym_0o] = ACTIONS(5045), + [anon_sym_0x] = ACTIONS(5045), + [sym_val_date] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym__str_single_quotes] = ACTIONS(2815), + [sym__str_back_ticks] = ACTIONS(2815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2815), + [anon_sym_err_GT] = ACTIONS(5045), + [anon_sym_out_GT] = ACTIONS(5045), + [anon_sym_e_GT] = ACTIONS(5045), + [anon_sym_o_GT] = ACTIONS(5045), + [anon_sym_err_PLUSout_GT] = ACTIONS(5045), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5045), + [anon_sym_o_PLUSe_GT] = ACTIONS(5045), + [anon_sym_e_PLUSo_GT] = ACTIONS(5045), + [anon_sym_err_GT_GT] = ACTIONS(2815), + [anon_sym_out_GT_GT] = ACTIONS(2815), + [anon_sym_e_GT_GT] = ACTIONS(2815), + [anon_sym_o_GT_GT] = ACTIONS(2815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2815), + [aux_sym_unquoted_token1] = ACTIONS(5045), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2815), }, [1640] = { [sym_comment] = STATE(1640), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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_0b] = ACTIONS(1008), - [anon_sym_0o] = ACTIONS(1008), - [anon_sym_0x] = ACTIONS(1008), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_LT] = ACTIONS(1034), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1034), + [anon_sym_out_GT_GT] = ACTIONS(1034), + [anon_sym_e_GT_GT] = ACTIONS(1034), + [anon_sym_o_GT_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1034), + [aux_sym_unquoted_token1] = ACTIONS(1034), + [aux_sym_unquoted_token4] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1036), }, [1641] = { [sym_comment] = STATE(1641), - [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(1038), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_LPAREN2] = ACTIONS(2266), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_LT] = ACTIONS(1038), - [anon_sym_null] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = ACTIONS(1038), - [anon_sym_0b] = ACTIONS(1038), - [anon_sym_0o] = ACTIONS(1038), - [anon_sym_0x] = ACTIONS(1038), - [sym_val_date] = ACTIONS(1038), - [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(1038), - [anon_sym_out_GT_GT] = ACTIONS(1038), - [anon_sym_e_GT_GT] = ACTIONS(1038), - [anon_sym_o_GT_GT] = ACTIONS(1038), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1038), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1038), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1038), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1038), - [aux_sym_unquoted_token1] = ACTIONS(1038), - [aux_sym_unquoted_token4] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), + [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_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_in2] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__immediate_decimal_token2] = ACTIONS(5047), + [sym_filesize_unit] = ACTIONS(1711), + [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(251), }, [1642] = { [sym_comment] = STATE(1642), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_in2] = ACTIONS(1747), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1747), - [anon_sym_xor2] = ACTIONS(1747), - [anon_sym_or2] = ACTIONS(1747), - [anon_sym_not_DASHin2] = ACTIONS(1747), - [anon_sym_starts_DASHwith2] = ACTIONS(1747), - [anon_sym_ends_DASHwith2] = ACTIONS(1747), - [anon_sym_EQ_EQ2] = ACTIONS(1747), - [anon_sym_BANG_EQ2] = ACTIONS(1747), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1747), - [anon_sym_GT_EQ2] = ACTIONS(1747), - [anon_sym_EQ_TILDE2] = ACTIONS(1747), - [anon_sym_BANG_TILDE2] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_STAR_STAR2] = ACTIONS(1747), - [anon_sym_PLUS_PLUS2] = ACTIONS(1747), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1747), - [anon_sym_SLASH_SLASH2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1747), - [anon_sym_bit_DASHshr2] = ACTIONS(1747), - [anon_sym_bit_DASHand2] = ACTIONS(1747), - [anon_sym_bit_DASHxor2] = ACTIONS(1747), - [anon_sym_bit_DASHor2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [aux_sym__immediate_decimal_token2] = ACTIONS(4990), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token2] = ACTIONS(1745), + [anon_sym_EQ] = ACTIONS(5049), + [anon_sym_PLUS_EQ] = ACTIONS(5051), + [anon_sym_DASH_EQ] = ACTIONS(5051), + [anon_sym_STAR_EQ] = ACTIONS(5051), + [anon_sym_SLASH_EQ] = ACTIONS(5051), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(5051), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_GT2] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_in2] = ACTIONS(1036), + [anon_sym_STAR2] = ACTIONS(1034), + [anon_sym_and2] = ACTIONS(1036), + [anon_sym_xor2] = ACTIONS(1036), + [anon_sym_or2] = ACTIONS(1036), + [anon_sym_not_DASHin2] = ACTIONS(1036), + [anon_sym_starts_DASHwith2] = ACTIONS(1036), + [anon_sym_ends_DASHwith2] = ACTIONS(1036), + [anon_sym_EQ_EQ2] = ACTIONS(1036), + [anon_sym_BANG_EQ2] = ACTIONS(1036), + [anon_sym_LT2] = ACTIONS(1034), + [anon_sym_LT_EQ2] = ACTIONS(1036), + [anon_sym_GT_EQ2] = ACTIONS(1036), + [anon_sym_EQ_TILDE2] = ACTIONS(1036), + [anon_sym_BANG_TILDE2] = ACTIONS(1036), + [anon_sym_STAR_STAR2] = ACTIONS(1036), + [anon_sym_PLUS_PLUS2] = ACTIONS(1034), + [anon_sym_SLASH2] = ACTIONS(1034), + [anon_sym_mod2] = ACTIONS(1036), + [anon_sym_SLASH_SLASH2] = ACTIONS(1036), + [anon_sym_PLUS2] = ACTIONS(1034), + [anon_sym_bit_DASHshl2] = ACTIONS(1036), + [anon_sym_bit_DASHshr2] = ACTIONS(1036), + [anon_sym_bit_DASHand2] = ACTIONS(1036), + [anon_sym_bit_DASHxor2] = ACTIONS(1036), + [anon_sym_bit_DASHor2] = ACTIONS(1036), + [anon_sym_DOT_DOT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1036), + [anon_sym_out_GT_GT] = ACTIONS(1036), + [anon_sym_e_GT_GT] = ACTIONS(1036), + [anon_sym_o_GT_GT] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), [anon_sym_POUND] = ACTIONS(251), }, [1643] = { [sym_comment] = STATE(1643), - [ts_builtin_sym_end] = ACTIONS(1803), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(4992), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [1644] = { - [sym__expr_parenthesized_immediate] = STATE(7966), - [sym_comment] = STATE(1644), - [sym__newline] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4994), - [anon_sym_err_GT_PIPE] = ACTIONS(4994), - [anon_sym_out_GT_PIPE] = ACTIONS(4994), - [anon_sym_e_GT_PIPE] = ACTIONS(4994), - [anon_sym_o_GT_PIPE] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_DOLLAR] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_DASH2] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_DOT_DOT] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4994), - [anon_sym_DOT_DOT_LT] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4994), - [anon_sym_true] = ACTIONS(4994), - [anon_sym_false] = ACTIONS(4994), - [aux_sym__val_number_decimal_token1] = ACTIONS(4996), - [aux_sym__val_number_decimal_token2] = ACTIONS(4994), - [aux_sym__val_number_decimal_token3] = ACTIONS(4994), - [aux_sym__val_number_decimal_token4] = ACTIONS(4994), - [aux_sym__val_number_token1] = ACTIONS(4994), - [aux_sym__val_number_token2] = ACTIONS(4994), - [aux_sym__val_number_token3] = ACTIONS(4994), - [aux_sym__val_number_token4] = ACTIONS(4994), - [aux_sym__val_number_token5] = ACTIONS(4994), - [aux_sym__val_number_token6] = ACTIONS(4994), - [anon_sym_0b] = ACTIONS(4996), - [anon_sym_0o] = ACTIONS(4996), - [anon_sym_0x] = ACTIONS(4996), - [sym_val_date] = ACTIONS(4994), - [anon_sym_DQUOTE] = ACTIONS(4994), - [sym__str_single_quotes] = ACTIONS(4994), - [sym__str_back_ticks] = ACTIONS(4994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4994), - [anon_sym_err_GT] = ACTIONS(4996), - [anon_sym_out_GT] = ACTIONS(4996), - [anon_sym_e_GT] = ACTIONS(4996), - [anon_sym_o_GT] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT] = ACTIONS(4996), - [anon_sym_err_GT_GT] = ACTIONS(4994), - [anon_sym_out_GT_GT] = ACTIONS(4994), - [anon_sym_e_GT_GT] = ACTIONS(4994), - [anon_sym_o_GT_GT] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4994), - [aux_sym_unquoted_token1] = ACTIONS(4996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4994), - }, - [1645] = { - [sym_comment] = STATE(1645), - [sym__newline] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_err_GT_PIPE] = ACTIONS(2243), - [anon_sym_out_GT_PIPE] = ACTIONS(2243), - [anon_sym_e_GT_PIPE] = ACTIONS(2243), - [anon_sym_o_GT_PIPE] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_DASH2] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_DOT_DOT] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(2241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), - [anon_sym_DOT_DOT_LT] = ACTIONS(2243), - [anon_sym_null] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2239), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [aux_sym__val_number_token4] = ACTIONS(2243), - [aux_sym__val_number_token5] = ACTIONS(2243), - [aux_sym__val_number_token6] = ACTIONS(2243), - [anon_sym_0b] = ACTIONS(2239), - [anon_sym_0o] = ACTIONS(2239), - [anon_sym_0x] = ACTIONS(2239), - [sym_val_date] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2243), - [sym__str_single_quotes] = ACTIONS(2243), - [sym__str_back_ticks] = ACTIONS(2243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2243), - [anon_sym_err_GT] = ACTIONS(2239), - [anon_sym_out_GT] = ACTIONS(2239), - [anon_sym_e_GT] = ACTIONS(2239), - [anon_sym_o_GT] = ACTIONS(2239), - [anon_sym_err_PLUSout_GT] = ACTIONS(2239), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2239), - [anon_sym_o_PLUSe_GT] = ACTIONS(2239), - [anon_sym_e_PLUSo_GT] = ACTIONS(2239), - [anon_sym_err_GT_GT] = ACTIONS(2243), - [anon_sym_out_GT_GT] = ACTIONS(2243), - [anon_sym_e_GT_GT] = ACTIONS(2243), - [anon_sym_o_GT_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2243), - [aux_sym_unquoted_token1] = ACTIONS(2239), - [aux_sym_unquoted_token2] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2243), - }, - [1646] = { - [sym_cell_path] = STATE(1996), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1646), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_GT2] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_EQ_GT] = ACTIONS(1959), - [anon_sym_STAR2] = ACTIONS(1957), - [anon_sym_and2] = ACTIONS(1959), - [anon_sym_xor2] = ACTIONS(1959), - [anon_sym_or2] = ACTIONS(1959), - [anon_sym_not_DASHin2] = ACTIONS(1959), - [anon_sym_starts_DASHwith2] = ACTIONS(1959), - [anon_sym_ends_DASHwith2] = ACTIONS(1959), - [anon_sym_EQ_EQ2] = ACTIONS(1959), - [anon_sym_BANG_EQ2] = ACTIONS(1959), - [anon_sym_LT2] = ACTIONS(1957), - [anon_sym_LT_EQ2] = ACTIONS(1959), - [anon_sym_GT_EQ2] = ACTIONS(1959), - [anon_sym_EQ_TILDE2] = ACTIONS(1959), - [anon_sym_BANG_TILDE2] = ACTIONS(1959), - [anon_sym_STAR_STAR2] = ACTIONS(1959), - [anon_sym_PLUS_PLUS2] = ACTIONS(1959), - [anon_sym_SLASH2] = ACTIONS(1957), - [anon_sym_mod2] = ACTIONS(1959), - [anon_sym_SLASH_SLASH2] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_bit_DASHshl2] = ACTIONS(1959), - [anon_sym_bit_DASHshr2] = ACTIONS(1959), - [anon_sym_bit_DASHand2] = ACTIONS(1959), - [anon_sym_bit_DASHxor2] = ACTIONS(1959), - [anon_sym_bit_DASHor2] = ACTIONS(1959), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(251), - }, - [1647] = { - [sym_comment] = STATE(1647), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_DOLLAR] = ACTIONS(5000), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_DASH2] = ACTIONS(5000), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_DOT_DOT] = ACTIONS(5000), - [anon_sym_DOT_DOT2] = ACTIONS(4863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5000), - [anon_sym_DOT_DOT_LT] = ACTIONS(5000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(4998), - [anon_sym_true] = ACTIONS(4998), - [anon_sym_false] = ACTIONS(4998), - [aux_sym__val_number_decimal_token1] = ACTIONS(5000), - [aux_sym__val_number_decimal_token2] = ACTIONS(4998), - [aux_sym__val_number_decimal_token3] = ACTIONS(4998), - [aux_sym__val_number_decimal_token4] = ACTIONS(4998), - [aux_sym__val_number_token1] = ACTIONS(4998), - [aux_sym__val_number_token2] = ACTIONS(4998), - [aux_sym__val_number_token3] = ACTIONS(4998), - [aux_sym__val_number_token4] = ACTIONS(4998), - [aux_sym__val_number_token5] = ACTIONS(4998), - [aux_sym__val_number_token6] = ACTIONS(4998), - [anon_sym_0b] = ACTIONS(5000), - [anon_sym_0o] = ACTIONS(5000), - [anon_sym_0x] = ACTIONS(5000), - [sym_val_date] = ACTIONS(4998), - [anon_sym_DQUOTE] = ACTIONS(4998), - [sym__str_single_quotes] = ACTIONS(4998), - [sym__str_back_ticks] = ACTIONS(4998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [aux_sym_unquoted_token1] = ACTIONS(5000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4998), - }, - [1648] = { - [sym__expr_parenthesized_immediate] = STATE(7966), - [sym_comment] = STATE(1648), - [sym__newline] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5002), - [anon_sym_err_GT_PIPE] = ACTIONS(5002), - [anon_sym_out_GT_PIPE] = ACTIONS(5002), - [anon_sym_e_GT_PIPE] = ACTIONS(5002), - [anon_sym_o_GT_PIPE] = ACTIONS(5002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5004), - [anon_sym_RPAREN] = ACTIONS(5002), - [anon_sym_DOLLAR] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_DASH2] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), - [anon_sym_DOT_DOT_LT] = ACTIONS(5002), - [anon_sym_null] = ACTIONS(5002), - [anon_sym_true] = ACTIONS(5002), - [anon_sym_false] = ACTIONS(5002), - [aux_sym__val_number_decimal_token1] = ACTIONS(5004), - [aux_sym__val_number_decimal_token2] = ACTIONS(5002), - [aux_sym__val_number_decimal_token3] = ACTIONS(5002), - [aux_sym__val_number_decimal_token4] = ACTIONS(5002), - [aux_sym__val_number_token1] = ACTIONS(5002), - [aux_sym__val_number_token2] = ACTIONS(5002), - [aux_sym__val_number_token3] = ACTIONS(5002), - [aux_sym__val_number_token4] = ACTIONS(5002), - [aux_sym__val_number_token5] = ACTIONS(5002), - [aux_sym__val_number_token6] = ACTIONS(5002), - [anon_sym_0b] = ACTIONS(5004), - [anon_sym_0o] = ACTIONS(5004), - [anon_sym_0x] = ACTIONS(5004), - [sym_val_date] = ACTIONS(5002), - [anon_sym_DQUOTE] = ACTIONS(5002), - [sym__str_single_quotes] = ACTIONS(5002), - [sym__str_back_ticks] = ACTIONS(5002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5002), - [anon_sym_err_GT] = ACTIONS(5004), - [anon_sym_out_GT] = ACTIONS(5004), - [anon_sym_e_GT] = ACTIONS(5004), - [anon_sym_o_GT] = ACTIONS(5004), - [anon_sym_err_PLUSout_GT] = ACTIONS(5004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5004), - [anon_sym_o_PLUSe_GT] = ACTIONS(5004), - [anon_sym_e_PLUSo_GT] = ACTIONS(5004), - [anon_sym_err_GT_GT] = ACTIONS(5002), - [anon_sym_out_GT_GT] = ACTIONS(5002), - [anon_sym_e_GT_GT] = ACTIONS(5002), - [anon_sym_o_GT_GT] = ACTIONS(5002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5002), - [aux_sym_unquoted_token1] = ACTIONS(5004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5002), - }, - [1649] = { - [sym__expr_parenthesized_immediate] = STATE(7966), - [sym_comment] = STATE(1649), - [sym__newline] = ACTIONS(5006), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5006), - [anon_sym_err_GT_PIPE] = ACTIONS(5006), - [anon_sym_out_GT_PIPE] = ACTIONS(5006), - [anon_sym_e_GT_PIPE] = ACTIONS(5006), - [anon_sym_o_GT_PIPE] = ACTIONS(5006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5008), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_DOLLAR] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_DASH2] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_DOT_DOT] = ACTIONS(5008), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5006), - [anon_sym_true] = ACTIONS(5006), - [anon_sym_false] = ACTIONS(5006), - [aux_sym__val_number_decimal_token1] = ACTIONS(5008), - [aux_sym__val_number_decimal_token2] = ACTIONS(5006), - [aux_sym__val_number_decimal_token3] = ACTIONS(5006), - [aux_sym__val_number_decimal_token4] = ACTIONS(5006), - [aux_sym__val_number_token1] = ACTIONS(5006), - [aux_sym__val_number_token2] = ACTIONS(5006), - [aux_sym__val_number_token3] = ACTIONS(5006), - [aux_sym__val_number_token4] = ACTIONS(5006), - [aux_sym__val_number_token5] = ACTIONS(5006), - [aux_sym__val_number_token6] = ACTIONS(5006), - [anon_sym_0b] = ACTIONS(5008), - [anon_sym_0o] = ACTIONS(5008), - [anon_sym_0x] = ACTIONS(5008), - [sym_val_date] = ACTIONS(5006), - [anon_sym_DQUOTE] = ACTIONS(5006), - [sym__str_single_quotes] = ACTIONS(5006), - [sym__str_back_ticks] = ACTIONS(5006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5006), - [anon_sym_err_GT] = ACTIONS(5008), - [anon_sym_out_GT] = ACTIONS(5008), - [anon_sym_e_GT] = ACTIONS(5008), - [anon_sym_o_GT] = ACTIONS(5008), - [anon_sym_err_PLUSout_GT] = ACTIONS(5008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5008), - [anon_sym_o_PLUSe_GT] = ACTIONS(5008), - [anon_sym_e_PLUSo_GT] = ACTIONS(5008), - [anon_sym_err_GT_GT] = ACTIONS(5006), - [anon_sym_out_GT_GT] = ACTIONS(5006), - [anon_sym_e_GT_GT] = ACTIONS(5006), - [anon_sym_o_GT_GT] = ACTIONS(5006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5006), - [aux_sym_unquoted_token1] = ACTIONS(5008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5006), - }, - [1650] = { - [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(2094), - [sym__newline] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_err_GT_PIPE] = ACTIONS(2094), - [anon_sym_out_GT_PIPE] = ACTIONS(2094), - [anon_sym_e_GT_PIPE] = ACTIONS(2094), - [anon_sym_o_GT_PIPE] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(2088), - [anon_sym_DOT_DOT2] = ACTIONS(5010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT] = ACTIONS(2088), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5012), - [anon_sym_null] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2094), - [anon_sym_false] = ACTIONS(2094), - [aux_sym__val_number_decimal_token1] = ACTIONS(2088), - [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_0b] = ACTIONS(2088), - [anon_sym_0o] = ACTIONS(2088), - [anon_sym_0x] = ACTIONS(2088), - [sym_val_date] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2094), - [sym__str_single_quotes] = ACTIONS(2094), - [sym__str_back_ticks] = ACTIONS(2094), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2094), - [anon_sym_err_GT] = ACTIONS(2088), - [anon_sym_out_GT] = ACTIONS(2088), - [anon_sym_e_GT] = ACTIONS(2088), - [anon_sym_o_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT] = ACTIONS(2088), - [anon_sym_err_GT_GT] = ACTIONS(2094), - [anon_sym_out_GT_GT] = ACTIONS(2094), - [anon_sym_e_GT_GT] = ACTIONS(2094), - [anon_sym_o_GT_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), - [aux_sym_unquoted_token1] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2094), - }, - [1651] = { - [sym_comment] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1803), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [1652] = { - [sym_comment] = STATE(1652), [sym__newline] = ACTIONS(1024), [anon_sym_SEMI] = ACTIONS(1024), [anon_sym_PIPE] = ACTIONS(1024), @@ -234258,40 +236383,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_GT2] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(1024), + [anon_sym_in2] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), [anon_sym_LBRACE] = ACTIONS(1024), [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_EQ_GT] = ACTIONS(1024), + [anon_sym_STAR2] = ACTIONS(1022), + [anon_sym_and2] = ACTIONS(1024), + [anon_sym_xor2] = ACTIONS(1024), + [anon_sym_or2] = ACTIONS(1024), + [anon_sym_not_DASHin2] = ACTIONS(1024), + [anon_sym_starts_DASHwith2] = ACTIONS(1024), + [anon_sym_ends_DASHwith2] = ACTIONS(1024), + [anon_sym_EQ_EQ2] = ACTIONS(1024), + [anon_sym_BANG_EQ2] = ACTIONS(1024), + [anon_sym_LT2] = ACTIONS(1022), + [anon_sym_LT_EQ2] = ACTIONS(1024), + [anon_sym_GT_EQ2] = ACTIONS(1024), + [anon_sym_EQ_TILDE2] = ACTIONS(1024), + [anon_sym_BANG_TILDE2] = ACTIONS(1024), + [anon_sym_STAR_STAR2] = ACTIONS(1024), + [anon_sym_PLUS_PLUS2] = ACTIONS(1024), + [anon_sym_SLASH2] = ACTIONS(1022), + [anon_sym_mod2] = ACTIONS(1024), + [anon_sym_SLASH_SLASH2] = ACTIONS(1024), + [anon_sym_PLUS2] = ACTIONS(1022), + [anon_sym_bit_DASHshl2] = ACTIONS(1024), + [anon_sym_bit_DASHshr2] = ACTIONS(1024), + [anon_sym_bit_DASHand2] = ACTIONS(1024), + [anon_sym_bit_DASHxor2] = ACTIONS(1024), + [anon_sym_bit_DASHor2] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1022), [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1024), - [aux_sym__val_number_token5] = ACTIONS(1024), - [aux_sym__val_number_token6] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), [anon_sym_err_GT] = ACTIONS(1022), [anon_sym_out_GT] = ACTIONS(1022), [anon_sym_e_GT] = ACTIONS(1022), @@ -234308,415 +236436,962 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), + }, + [1644] = { + [sym_path] = STATE(1643), + [sym_comment] = STATE(1644), + [aux_sym_cell_path_repeat1] = STATE(1669), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + }, + [1645] = { + [sym__expr_parenthesized_immediate] = STATE(8150), + [sym_comment] = STATE(1645), + [ts_builtin_sym_end] = ACTIONS(1699), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_GT2] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1699), + [anon_sym_in2] = ACTIONS(1699), + [anon_sym_STAR2] = ACTIONS(1687), + [anon_sym_and2] = ACTIONS(1699), + [anon_sym_xor2] = ACTIONS(1699), + [anon_sym_or2] = ACTIONS(1699), + [anon_sym_not_DASHin2] = ACTIONS(1699), + [anon_sym_starts_DASHwith2] = ACTIONS(1699), + [anon_sym_ends_DASHwith2] = ACTIONS(1699), + [anon_sym_EQ_EQ2] = ACTIONS(1699), + [anon_sym_BANG_EQ2] = ACTIONS(1699), + [anon_sym_LT2] = ACTIONS(1687), + [anon_sym_LT_EQ2] = ACTIONS(1699), + [anon_sym_GT_EQ2] = ACTIONS(1699), + [anon_sym_EQ_TILDE2] = ACTIONS(1699), + [anon_sym_BANG_TILDE2] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_STAR_STAR2] = ACTIONS(1699), + [anon_sym_PLUS_PLUS2] = ACTIONS(1699), + [anon_sym_SLASH2] = ACTIONS(1687), + [anon_sym_mod2] = ACTIONS(1699), + [anon_sym_SLASH_SLASH2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1687), + [anon_sym_bit_DASHshl2] = ACTIONS(1699), + [anon_sym_bit_DASHshr2] = ACTIONS(1699), + [anon_sym_bit_DASHand2] = ACTIONS(1699), + [anon_sym_bit_DASHxor2] = ACTIONS(1699), + [anon_sym_bit_DASHor2] = ACTIONS(1699), + [anon_sym_DOT_DOT2] = ACTIONS(5053), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5055), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5055), + [sym_filesize_unit] = ACTIONS(5057), + [sym_duration_unit] = ACTIONS(5059), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token2] = ACTIONS(5061), + [anon_sym_POUND] = ACTIONS(251), + }, + [1646] = { + [sym_cell_path] = STATE(2035), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1646), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_err_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_GT_PIPE] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), + [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_GT2] = ACTIONS(2033), + [anon_sym_DASH2] = ACTIONS(2035), + [anon_sym_in2] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_EQ_GT] = ACTIONS(2035), + [anon_sym_STAR2] = ACTIONS(2033), + [anon_sym_and2] = ACTIONS(2035), + [anon_sym_xor2] = ACTIONS(2035), + [anon_sym_or2] = ACTIONS(2035), + [anon_sym_not_DASHin2] = ACTIONS(2035), + [anon_sym_starts_DASHwith2] = ACTIONS(2035), + [anon_sym_ends_DASHwith2] = ACTIONS(2035), + [anon_sym_EQ_EQ2] = ACTIONS(2035), + [anon_sym_BANG_EQ2] = ACTIONS(2035), + [anon_sym_LT2] = ACTIONS(2033), + [anon_sym_LT_EQ2] = ACTIONS(2035), + [anon_sym_GT_EQ2] = ACTIONS(2035), + [anon_sym_EQ_TILDE2] = ACTIONS(2035), + [anon_sym_BANG_TILDE2] = ACTIONS(2035), + [anon_sym_STAR_STAR2] = ACTIONS(2035), + [anon_sym_PLUS_PLUS2] = ACTIONS(2035), + [anon_sym_SLASH2] = ACTIONS(2033), + [anon_sym_mod2] = ACTIONS(2035), + [anon_sym_SLASH_SLASH2] = ACTIONS(2035), + [anon_sym_PLUS2] = ACTIONS(2033), + [anon_sym_bit_DASHshl2] = ACTIONS(2035), + [anon_sym_bit_DASHshr2] = ACTIONS(2035), + [anon_sym_bit_DASHand2] = ACTIONS(2035), + [anon_sym_bit_DASHxor2] = ACTIONS(2035), + [anon_sym_bit_DASHor2] = ACTIONS(2035), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(2033), + [anon_sym_out_GT] = ACTIONS(2033), + [anon_sym_e_GT] = ACTIONS(2033), + [anon_sym_o_GT] = ACTIONS(2033), + [anon_sym_err_PLUSout_GT] = ACTIONS(2033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), + [anon_sym_o_PLUSe_GT] = ACTIONS(2033), + [anon_sym_e_PLUSo_GT] = ACTIONS(2033), + [anon_sym_err_GT_GT] = ACTIONS(2035), + [anon_sym_out_GT_GT] = ACTIONS(2035), + [anon_sym_e_GT_GT] = ACTIONS(2035), + [anon_sym_o_GT_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(251), + }, + [1647] = { + [sym_comment] = STATE(1647), + [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(251), + }, + [1648] = { + [sym_cell_path] = STATE(1694), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1648), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_STAR2] = ACTIONS(969), + [anon_sym_and2] = ACTIONS(971), + [anon_sym_xor2] = ACTIONS(971), + [anon_sym_or2] = ACTIONS(971), + [anon_sym_not_DASHin2] = ACTIONS(971), + [anon_sym_starts_DASHwith2] = ACTIONS(971), + [anon_sym_ends_DASHwith2] = ACTIONS(971), + [anon_sym_EQ_EQ2] = ACTIONS(971), + [anon_sym_BANG_EQ2] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_LT_EQ2] = ACTIONS(971), + [anon_sym_GT_EQ2] = ACTIONS(971), + [anon_sym_EQ_TILDE2] = ACTIONS(971), + [anon_sym_BANG_TILDE2] = ACTIONS(971), + [anon_sym_STAR_STAR2] = ACTIONS(971), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(969), + [anon_sym_mod2] = ACTIONS(971), + [anon_sym_SLASH_SLASH2] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_bit_DASHshl2] = ACTIONS(971), + [anon_sym_bit_DASHshr2] = ACTIONS(971), + [anon_sym_bit_DASHand2] = ACTIONS(971), + [anon_sym_bit_DASHxor2] = ACTIONS(971), + [anon_sym_bit_DASHor2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(251), + }, + [1649] = { + [sym_cell_path] = STATE(2104), + [sym_path] = STATE(1971), + [sym_comment] = STATE(1649), + [aux_sym_cell_path_repeat1] = STATE(1750), + [sym__newline] = ACTIONS(1763), + [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_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_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] = ACTIONS(4990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [aux_sym_record_entry_token1] = 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), + [anon_sym_POUND] = ACTIONS(251), + }, + [1650] = { + [sym_comment] = STATE(1650), + [ts_builtin_sym_end] = ACTIONS(1054), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_DASH2] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_DOT_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), + [anon_sym_DOT_DOT_LT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1052), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [aux_sym__val_number_token4] = ACTIONS(1054), + [aux_sym__val_number_token5] = ACTIONS(1054), + [aux_sym__val_number_token6] = ACTIONS(1054), + [anon_sym_0b] = ACTIONS(1052), + [anon_sym_0o] = ACTIONS(1052), + [anon_sym_0x] = ACTIONS(1052), + [sym_val_date] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), + [aux_sym_unquoted_token1] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1054), + }, + [1651] = { + [sym__expr_parenthesized_immediate] = STATE(8466), + [sym_comment] = STATE(1651), + [sym__newline] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5063), + [anon_sym_err_GT_PIPE] = ACTIONS(5063), + [anon_sym_out_GT_PIPE] = ACTIONS(5063), + [anon_sym_e_GT_PIPE] = ACTIONS(5063), + [anon_sym_o_GT_PIPE] = ACTIONS(5063), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5063), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5063), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5063), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_DASH2] = ACTIONS(5065), + [anon_sym_LBRACE] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5063), + [anon_sym_DOT_DOT_LT] = ACTIONS(5063), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [aux_sym__val_number_decimal_token1] = ACTIONS(5065), + [aux_sym__val_number_decimal_token2] = ACTIONS(5063), + [aux_sym__val_number_decimal_token3] = ACTIONS(5063), + [aux_sym__val_number_decimal_token4] = ACTIONS(5063), + [aux_sym__val_number_token1] = ACTIONS(5063), + [aux_sym__val_number_token2] = ACTIONS(5063), + [aux_sym__val_number_token3] = ACTIONS(5063), + [aux_sym__val_number_token4] = ACTIONS(5063), + [aux_sym__val_number_token5] = ACTIONS(5063), + [aux_sym__val_number_token6] = ACTIONS(5063), + [anon_sym_0b] = ACTIONS(5065), + [anon_sym_0o] = ACTIONS(5065), + [anon_sym_0x] = ACTIONS(5065), + [sym_val_date] = ACTIONS(5063), + [anon_sym_DQUOTE] = ACTIONS(5063), + [sym__str_single_quotes] = ACTIONS(5063), + [sym__str_back_ticks] = ACTIONS(5063), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5063), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5063), + [anon_sym_err_GT] = ACTIONS(5065), + [anon_sym_out_GT] = ACTIONS(5065), + [anon_sym_e_GT] = ACTIONS(5065), + [anon_sym_o_GT] = ACTIONS(5065), + [anon_sym_err_PLUSout_GT] = ACTIONS(5065), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5065), + [anon_sym_o_PLUSe_GT] = ACTIONS(5065), + [anon_sym_e_PLUSo_GT] = ACTIONS(5065), + [anon_sym_err_GT_GT] = ACTIONS(5063), + [anon_sym_out_GT_GT] = ACTIONS(5063), + [anon_sym_e_GT_GT] = ACTIONS(5063), + [anon_sym_o_GT_GT] = ACTIONS(5063), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5063), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5063), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5063), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5063), + [aux_sym_unquoted_token1] = ACTIONS(5065), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5063), + }, + [1652] = { + [sym_cell_path] = STATE(2060), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1652), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_GT2] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1873), + [anon_sym_in2] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_EQ_GT] = ACTIONS(1873), + [anon_sym_STAR2] = ACTIONS(1871), + [anon_sym_and2] = ACTIONS(1873), + [anon_sym_xor2] = ACTIONS(1873), + [anon_sym_or2] = ACTIONS(1873), + [anon_sym_not_DASHin2] = ACTIONS(1873), + [anon_sym_starts_DASHwith2] = ACTIONS(1873), + [anon_sym_ends_DASHwith2] = ACTIONS(1873), + [anon_sym_EQ_EQ2] = ACTIONS(1873), + [anon_sym_BANG_EQ2] = ACTIONS(1873), + [anon_sym_LT2] = ACTIONS(1871), + [anon_sym_LT_EQ2] = ACTIONS(1873), + [anon_sym_GT_EQ2] = ACTIONS(1873), + [anon_sym_EQ_TILDE2] = ACTIONS(1873), + [anon_sym_BANG_TILDE2] = ACTIONS(1873), + [anon_sym_STAR_STAR2] = ACTIONS(1873), + [anon_sym_PLUS_PLUS2] = ACTIONS(1873), + [anon_sym_SLASH2] = ACTIONS(1871), + [anon_sym_mod2] = ACTIONS(1873), + [anon_sym_SLASH_SLASH2] = ACTIONS(1873), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_bit_DASHshl2] = ACTIONS(1873), + [anon_sym_bit_DASHshr2] = ACTIONS(1873), + [anon_sym_bit_DASHand2] = ACTIONS(1873), + [anon_sym_bit_DASHxor2] = ACTIONS(1873), + [anon_sym_bit_DASHor2] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(251), }, [1653] = { - [sym_cell_path] = STATE(2126), - [sym_path] = STATE(1921), [sym_comment] = STATE(1653), - [aux_sym_cell_path_repeat1] = STATE(1681), - [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_RPAREN] = ACTIONS(1899), - [anon_sym_GT2] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1899), - [anon_sym_in2] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_EQ_GT] = ACTIONS(1899), - [anon_sym_STAR2] = ACTIONS(1897), - [anon_sym_and2] = ACTIONS(1899), - [anon_sym_xor2] = ACTIONS(1899), - [anon_sym_or2] = ACTIONS(1899), - [anon_sym_not_DASHin2] = ACTIONS(1899), - [anon_sym_starts_DASHwith2] = ACTIONS(1899), - [anon_sym_ends_DASHwith2] = ACTIONS(1899), - [anon_sym_EQ_EQ2] = ACTIONS(1899), - [anon_sym_BANG_EQ2] = ACTIONS(1899), - [anon_sym_LT2] = ACTIONS(1897), - [anon_sym_LT_EQ2] = ACTIONS(1899), - [anon_sym_GT_EQ2] = ACTIONS(1899), - [anon_sym_EQ_TILDE2] = ACTIONS(1899), - [anon_sym_BANG_TILDE2] = ACTIONS(1899), - [anon_sym_STAR_STAR2] = ACTIONS(1899), - [anon_sym_PLUS_PLUS2] = ACTIONS(1899), - [anon_sym_SLASH2] = ACTIONS(1897), - [anon_sym_mod2] = ACTIONS(1899), - [anon_sym_SLASH_SLASH2] = ACTIONS(1899), - [anon_sym_PLUS2] = ACTIONS(1897), - [anon_sym_bit_DASHshl2] = ACTIONS(1899), - [anon_sym_bit_DASHshr2] = ACTIONS(1899), - [anon_sym_bit_DASHand2] = ACTIONS(1899), - [anon_sym_bit_DASHxor2] = ACTIONS(1899), - [anon_sym_bit_DASHor2] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(4916), - [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), - [anon_sym_POUND] = ACTIONS(251), + [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(2090), + [anon_sym_DASH_DASH] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(5067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2090), + [anon_sym_DOT_DOT_LT] = ACTIONS(2090), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5069), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5069), + [anon_sym_null] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), + [aux_sym__val_number_decimal_token1] = ACTIONS(2090), + [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(2090), + [anon_sym_0o] = ACTIONS(2090), + [anon_sym_0x] = ACTIONS(2090), + [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(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(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(2090), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2096), }, [1654] = { - [sym__expr_parenthesized_immediate] = STATE(7492), [sym_comment] = STATE(1654), - [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(5016), - [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_DOT_DOT] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(4223), - [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), - [aux_sym_unquoted_token1] = ACTIONS(5016), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5014), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, [1655] = { [sym_comment] = STATE(1655), - [ts_builtin_sym_end] = ACTIONS(4968), - [sym_long_flag_identifier] = ACTIONS(5018), - [sym__newline] = ACTIONS(4968), - [anon_sym_SEMI] = ACTIONS(4968), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_err_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_GT_PIPE] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(4968), - [anon_sym_LPAREN] = ACTIONS(4968), - [anon_sym_DOLLAR] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4968), - [anon_sym_DASH2] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4968), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), - [anon_sym_DOT_DOT_LT] = ACTIONS(4968), - [anon_sym_null] = ACTIONS(4970), - [anon_sym_true] = ACTIONS(4970), - [anon_sym_false] = ACTIONS(4970), - [aux_sym__val_number_decimal_token1] = ACTIONS(4970), - [aux_sym__val_number_decimal_token2] = ACTIONS(4968), - [aux_sym__val_number_decimal_token3] = ACTIONS(4968), - [aux_sym__val_number_decimal_token4] = ACTIONS(4968), - [aux_sym__val_number_token1] = ACTIONS(4970), - [aux_sym__val_number_token2] = ACTIONS(4970), - [aux_sym__val_number_token3] = ACTIONS(4970), - [aux_sym__val_number_token4] = ACTIONS(4970), - [aux_sym__val_number_token5] = ACTIONS(4968), - [aux_sym__val_number_token6] = ACTIONS(4970), - [anon_sym_0b] = ACTIONS(4970), - [anon_sym_0o] = ACTIONS(4970), - [anon_sym_0x] = ACTIONS(4970), - [sym_val_date] = ACTIONS(4970), - [anon_sym_DQUOTE] = ACTIONS(4968), - [sym__str_single_quotes] = ACTIONS(4968), - [sym__str_back_ticks] = ACTIONS(4968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4968), - [anon_sym_err_GT] = ACTIONS(4970), - [anon_sym_out_GT] = ACTIONS(4970), - [anon_sym_e_GT] = ACTIONS(4970), - [anon_sym_o_GT] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT] = ACTIONS(4970), - [anon_sym_err_GT_GT] = ACTIONS(4968), - [anon_sym_out_GT_GT] = ACTIONS(4968), - [anon_sym_e_GT_GT] = ACTIONS(4968), - [anon_sym_o_GT_GT] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4968), - [anon_sym_EQ2] = ACTIONS(5020), - [aux_sym_unquoted_token1] = ACTIONS(4970), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4968), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_false] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1000), + [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_0b] = ACTIONS(1000), + [anon_sym_0o] = ACTIONS(1000), + [anon_sym_0x] = ACTIONS(1000), + [sym_val_date] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1000), + [anon_sym_out_GT] = ACTIONS(1000), + [anon_sym_e_GT] = ACTIONS(1000), + [anon_sym_o_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT] = ACTIONS(1000), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [aux_sym_unquoted_token1] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1002), }, [1656] = { [sym_comment] = STATE(1656), - [ts_builtin_sym_end] = ACTIONS(4930), - [sym__newline] = ACTIONS(4930), - [anon_sym_SEMI] = ACTIONS(4930), - [anon_sym_PIPE] = ACTIONS(4930), - [anon_sym_err_GT_PIPE] = ACTIONS(4930), - [anon_sym_out_GT_PIPE] = ACTIONS(4930), - [anon_sym_e_GT_PIPE] = ACTIONS(4930), - [anon_sym_o_GT_PIPE] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4930), - [anon_sym_LBRACK] = ACTIONS(4930), - [anon_sym_LPAREN] = ACTIONS(4930), - [anon_sym_DOLLAR] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_DASH2] = ACTIONS(4932), - [anon_sym_LBRACE] = ACTIONS(4930), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4930), - [anon_sym_DOT_DOT_LT] = ACTIONS(4930), - [anon_sym_null] = ACTIONS(4932), - [anon_sym_true] = ACTIONS(4932), - [anon_sym_false] = ACTIONS(4932), - [aux_sym__val_number_decimal_token1] = ACTIONS(4932), - [aux_sym__val_number_decimal_token2] = ACTIONS(4932), - [aux_sym__val_number_decimal_token3] = ACTIONS(4930), - [aux_sym__val_number_decimal_token4] = ACTIONS(4930), - [aux_sym__val_number_token1] = ACTIONS(4932), - [aux_sym__val_number_token2] = ACTIONS(4932), - [aux_sym__val_number_token3] = ACTIONS(4932), - [aux_sym__val_number_token4] = ACTIONS(4932), - [aux_sym__val_number_token5] = ACTIONS(4932), - [aux_sym__val_number_token6] = ACTIONS(4932), - [anon_sym_0b] = ACTIONS(4932), - [anon_sym_0o] = ACTIONS(4932), - [anon_sym_0x] = ACTIONS(4932), - [sym_val_date] = ACTIONS(4932), - [anon_sym_DQUOTE] = ACTIONS(4930), - [sym__str_single_quotes] = ACTIONS(4930), - [sym__str_back_ticks] = ACTIONS(4930), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4930), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4930), - [anon_sym_err_GT] = ACTIONS(4932), - [anon_sym_out_GT] = ACTIONS(4932), - [anon_sym_e_GT] = ACTIONS(4932), - [anon_sym_o_GT] = ACTIONS(4932), - [anon_sym_err_PLUSout_GT] = ACTIONS(4932), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4932), - [anon_sym_o_PLUSe_GT] = ACTIONS(4932), - [anon_sym_e_PLUSo_GT] = ACTIONS(4932), - [anon_sym_err_GT_GT] = ACTIONS(4930), - [anon_sym_out_GT_GT] = ACTIONS(4930), - [anon_sym_e_GT_GT] = ACTIONS(4930), - [anon_sym_o_GT_GT] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4930), - [anon_sym_EQ2] = ACTIONS(5022), - [sym_short_flag_identifier] = ACTIONS(5024), - [aux_sym_unquoted_token1] = ACTIONS(4932), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4930), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, [1657] = { [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(1010), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [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_0b] = ACTIONS(1008), - [anon_sym_0o] = ACTIONS(1008), - [anon_sym_0x] = ACTIONS(1008), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(5071), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, [1658] = { [sym_comment] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(5026), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(5028), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1659] = { - [sym_comment] = STATE(1659), - [ts_builtin_sym_end] = ACTIONS(1006), [sym__newline] = ACTIONS(1006), [anon_sym_SEMI] = ACTIONS(1006), [anon_sym_PIPE] = ACTIONS(1006), @@ -234730,10 +237405,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), [anon_sym_LBRACK] = ACTIONS(1006), [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_RPAREN] = ACTIONS(1006), [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH_DASH] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(1004), [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), [anon_sym_DOT_DOT] = ACTIONS(1004), [anon_sym_QMARK2] = ACTIONS(1006), [anon_sym_DOT] = ACTIONS(1004), @@ -234781,9 +237458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1006), }, - [1660] = { - [sym_comment] = STATE(1660), - [ts_builtin_sym_end] = ACTIONS(998), + [1659] = { + [sym_comment] = STATE(1659), [sym__newline] = ACTIONS(998), [anon_sym_SEMI] = ACTIONS(998), [anon_sym_PIPE] = ACTIONS(998), @@ -234797,10 +237473,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), [anon_sym_LBRACK] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), [anon_sym_DOLLAR] = ACTIONS(996), [anon_sym_DASH_DASH] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(996), [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), [anon_sym_DOT_DOT] = ACTIONS(996), [anon_sym_QMARK2] = ACTIONS(998), [anon_sym_DOT] = ACTIONS(996), @@ -234848,8 +237526,1230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(998), }, + [1660] = { + [sym_cell_path] = STATE(2062), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1660), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_GT2] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_in2] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_EQ_GT] = ACTIONS(1877), + [anon_sym_STAR2] = ACTIONS(1875), + [anon_sym_and2] = ACTIONS(1877), + [anon_sym_xor2] = ACTIONS(1877), + [anon_sym_or2] = ACTIONS(1877), + [anon_sym_not_DASHin2] = ACTIONS(1877), + [anon_sym_starts_DASHwith2] = ACTIONS(1877), + [anon_sym_ends_DASHwith2] = ACTIONS(1877), + [anon_sym_EQ_EQ2] = ACTIONS(1877), + [anon_sym_BANG_EQ2] = ACTIONS(1877), + [anon_sym_LT2] = ACTIONS(1875), + [anon_sym_LT_EQ2] = ACTIONS(1877), + [anon_sym_GT_EQ2] = ACTIONS(1877), + [anon_sym_EQ_TILDE2] = ACTIONS(1877), + [anon_sym_BANG_TILDE2] = ACTIONS(1877), + [anon_sym_STAR_STAR2] = ACTIONS(1877), + [anon_sym_PLUS_PLUS2] = ACTIONS(1877), + [anon_sym_SLASH2] = ACTIONS(1875), + [anon_sym_mod2] = ACTIONS(1877), + [anon_sym_SLASH_SLASH2] = ACTIONS(1877), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_bit_DASHshl2] = ACTIONS(1877), + [anon_sym_bit_DASHshr2] = ACTIONS(1877), + [anon_sym_bit_DASHand2] = ACTIONS(1877), + [anon_sym_bit_DASHxor2] = ACTIONS(1877), + [anon_sym_bit_DASHor2] = ACTIONS(1877), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(251), + }, [1661] = { [sym_comment] = STATE(1661), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1662] = { + [sym_comment] = STATE(1662), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(988), + }, + [1663] = { + [sym_cell_path] = STATE(2126), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1663), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_err_GT_PIPE] = ACTIONS(2055), + [anon_sym_out_GT_PIPE] = ACTIONS(2055), + [anon_sym_e_GT_PIPE] = ACTIONS(2055), + [anon_sym_o_GT_PIPE] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_GT2] = ACTIONS(2053), + [anon_sym_DASH2] = ACTIONS(2055), + [anon_sym_in2] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_EQ_GT] = ACTIONS(2055), + [anon_sym_STAR2] = ACTIONS(2053), + [anon_sym_and2] = ACTIONS(2055), + [anon_sym_xor2] = ACTIONS(2055), + [anon_sym_or2] = ACTIONS(2055), + [anon_sym_not_DASHin2] = ACTIONS(2055), + [anon_sym_starts_DASHwith2] = ACTIONS(2055), + [anon_sym_ends_DASHwith2] = ACTIONS(2055), + [anon_sym_EQ_EQ2] = ACTIONS(2055), + [anon_sym_BANG_EQ2] = ACTIONS(2055), + [anon_sym_LT2] = ACTIONS(2053), + [anon_sym_LT_EQ2] = ACTIONS(2055), + [anon_sym_GT_EQ2] = ACTIONS(2055), + [anon_sym_EQ_TILDE2] = ACTIONS(2055), + [anon_sym_BANG_TILDE2] = ACTIONS(2055), + [anon_sym_STAR_STAR2] = ACTIONS(2055), + [anon_sym_PLUS_PLUS2] = ACTIONS(2055), + [anon_sym_SLASH2] = ACTIONS(2053), + [anon_sym_mod2] = ACTIONS(2055), + [anon_sym_SLASH_SLASH2] = ACTIONS(2055), + [anon_sym_PLUS2] = ACTIONS(2053), + [anon_sym_bit_DASHshl2] = ACTIONS(2055), + [anon_sym_bit_DASHshr2] = ACTIONS(2055), + [anon_sym_bit_DASHand2] = ACTIONS(2055), + [anon_sym_bit_DASHxor2] = ACTIONS(2055), + [anon_sym_bit_DASHor2] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(2053), + [anon_sym_out_GT] = ACTIONS(2053), + [anon_sym_e_GT] = ACTIONS(2053), + [anon_sym_o_GT] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT] = ACTIONS(2053), + [anon_sym_err_GT_GT] = ACTIONS(2055), + [anon_sym_out_GT_GT] = ACTIONS(2055), + [anon_sym_e_GT_GT] = ACTIONS(2055), + [anon_sym_o_GT_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(251), + }, + [1664] = { + [sym_comment] = STATE(1664), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1665] = { + [sym_comment] = STATE(1665), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_0b] = ACTIONS(1818), + [anon_sym_0o] = ACTIONS(1818), + [anon_sym_0x] = ACTIONS(1818), + [sym_val_date] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [aux_sym_unquoted_token1] = ACTIONS(1818), + [aux_sym_unquoted_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [1666] = { + [sym_comment] = STATE(1666), + [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_DOT2] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2082), + [anon_sym_DOT_DOT_LT] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT2] = 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(251), + [sym_raw_string_begin] = ACTIONS(2084), + }, + [1667] = { + [sym_cell_path] = STATE(2096), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1667), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_GT2] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1881), + [anon_sym_in2] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_EQ_GT] = ACTIONS(1881), + [anon_sym_STAR2] = ACTIONS(1879), + [anon_sym_and2] = ACTIONS(1881), + [anon_sym_xor2] = ACTIONS(1881), + [anon_sym_or2] = ACTIONS(1881), + [anon_sym_not_DASHin2] = ACTIONS(1881), + [anon_sym_starts_DASHwith2] = ACTIONS(1881), + [anon_sym_ends_DASHwith2] = ACTIONS(1881), + [anon_sym_EQ_EQ2] = ACTIONS(1881), + [anon_sym_BANG_EQ2] = ACTIONS(1881), + [anon_sym_LT2] = ACTIONS(1879), + [anon_sym_LT_EQ2] = ACTIONS(1881), + [anon_sym_GT_EQ2] = ACTIONS(1881), + [anon_sym_EQ_TILDE2] = ACTIONS(1881), + [anon_sym_BANG_TILDE2] = ACTIONS(1881), + [anon_sym_STAR_STAR2] = ACTIONS(1881), + [anon_sym_PLUS_PLUS2] = ACTIONS(1881), + [anon_sym_SLASH2] = ACTIONS(1879), + [anon_sym_mod2] = ACTIONS(1881), + [anon_sym_SLASH_SLASH2] = ACTIONS(1881), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_bit_DASHshl2] = ACTIONS(1881), + [anon_sym_bit_DASHshr2] = ACTIONS(1881), + [anon_sym_bit_DASHand2] = ACTIONS(1881), + [anon_sym_bit_DASHxor2] = ACTIONS(1881), + [anon_sym_bit_DASHor2] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(251), + }, + [1668] = { + [sym_comment] = STATE(1668), + [ts_builtin_sym_end] = ACTIONS(4952), + [sym__newline] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_err_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_GT_PIPE] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [anon_sym_DOLLAR] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4952), + [anon_sym_DASH2] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_DOT_DOT2] = ACTIONS(5041), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), + [anon_sym_DOT_DOT_LT] = ACTIONS(4954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5043), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5043), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [aux_sym__val_number_decimal_token1] = ACTIONS(4954), + [aux_sym__val_number_decimal_token2] = ACTIONS(4952), + [aux_sym__val_number_decimal_token3] = ACTIONS(4952), + [aux_sym__val_number_decimal_token4] = ACTIONS(4952), + [aux_sym__val_number_token1] = ACTIONS(4952), + [aux_sym__val_number_token2] = ACTIONS(4952), + [aux_sym__val_number_token3] = ACTIONS(4952), + [aux_sym__val_number_token4] = ACTIONS(4952), + [aux_sym__val_number_token5] = ACTIONS(4952), + [aux_sym__val_number_token6] = ACTIONS(4952), + [anon_sym_0b] = ACTIONS(4954), + [anon_sym_0o] = ACTIONS(4954), + [anon_sym_0x] = ACTIONS(4954), + [sym_val_date] = ACTIONS(4952), + [anon_sym_DQUOTE] = ACTIONS(4952), + [sym__str_single_quotes] = ACTIONS(4952), + [sym__str_back_ticks] = ACTIONS(4952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), + [anon_sym_err_GT] = ACTIONS(4954), + [anon_sym_out_GT] = ACTIONS(4954), + [anon_sym_e_GT] = ACTIONS(4954), + [anon_sym_o_GT] = ACTIONS(4954), + [anon_sym_err_PLUSout_GT] = ACTIONS(4954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4954), + [anon_sym_o_PLUSe_GT] = ACTIONS(4954), + [anon_sym_e_PLUSo_GT] = ACTIONS(4954), + [anon_sym_err_GT_GT] = ACTIONS(4952), + [anon_sym_out_GT_GT] = ACTIONS(4952), + [anon_sym_e_GT_GT] = ACTIONS(4952), + [anon_sym_o_GT_GT] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4952), + [aux_sym_unquoted_token1] = ACTIONS(4954), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4952), + }, + [1669] = { + [sym_path] = STATE(1643), + [sym_comment] = STATE(1669), + [aux_sym_cell_path_repeat1] = STATE(1669), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_GT2] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(977), + [anon_sym_in2] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_STAR2] = ACTIONS(975), + [anon_sym_and2] = ACTIONS(977), + [anon_sym_xor2] = ACTIONS(977), + [anon_sym_or2] = ACTIONS(977), + [anon_sym_not_DASHin2] = ACTIONS(977), + [anon_sym_starts_DASHwith2] = ACTIONS(977), + [anon_sym_ends_DASHwith2] = ACTIONS(977), + [anon_sym_EQ_EQ2] = ACTIONS(977), + [anon_sym_BANG_EQ2] = ACTIONS(977), + [anon_sym_LT2] = ACTIONS(975), + [anon_sym_LT_EQ2] = ACTIONS(977), + [anon_sym_GT_EQ2] = ACTIONS(977), + [anon_sym_EQ_TILDE2] = ACTIONS(977), + [anon_sym_BANG_TILDE2] = ACTIONS(977), + [anon_sym_STAR_STAR2] = ACTIONS(977), + [anon_sym_PLUS_PLUS2] = ACTIONS(977), + [anon_sym_SLASH2] = ACTIONS(975), + [anon_sym_mod2] = ACTIONS(977), + [anon_sym_SLASH_SLASH2] = ACTIONS(977), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_bit_DASHshl2] = ACTIONS(977), + [anon_sym_bit_DASHshr2] = ACTIONS(977), + [anon_sym_bit_DASHand2] = ACTIONS(977), + [anon_sym_bit_DASHxor2] = ACTIONS(977), + [anon_sym_bit_DASHor2] = ACTIONS(977), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(5073), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), + }, + [1670] = { + [sym_comment] = STATE(1670), + [ts_builtin_sym_end] = ACTIONS(2104), + [sym__newline] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_err_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_GT_PIPE] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_DOLLAR] = ACTIONS(2098), + [anon_sym_DASH_DASH] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_DOT_DOT] = ACTIONS(2098), + [anon_sym_DOT_DOT2] = ACTIONS(5076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2098), + [anon_sym_DOT_DOT_LT] = ACTIONS(2098), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5078), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5078), + [anon_sym_null] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2104), + [anon_sym_false] = ACTIONS(2104), + [aux_sym__val_number_decimal_token1] = ACTIONS(2098), + [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(2104), + [aux_sym__val_number_token5] = ACTIONS(2104), + [aux_sym__val_number_token6] = ACTIONS(2104), + [anon_sym_0b] = ACTIONS(2098), + [anon_sym_0o] = ACTIONS(2098), + [anon_sym_0x] = ACTIONS(2098), + [sym_val_date] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(2104), + [sym__str_single_quotes] = ACTIONS(2104), + [sym__str_back_ticks] = ACTIONS(2104), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), + [anon_sym_err_GT] = ACTIONS(2098), + [anon_sym_out_GT] = ACTIONS(2098), + [anon_sym_e_GT] = ACTIONS(2098), + [anon_sym_o_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT] = ACTIONS(2098), + [anon_sym_err_GT_GT] = ACTIONS(2104), + [anon_sym_out_GT_GT] = ACTIONS(2104), + [anon_sym_e_GT_GT] = ACTIONS(2104), + [anon_sym_o_GT_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [aux_sym_unquoted_token1] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2104), + }, + [1671] = { + [sym_comment] = STATE(1671), + [ts_builtin_sym_end] = ACTIONS(2137), + [sym__newline] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_err_GT_PIPE] = ACTIONS(2137), + [anon_sym_out_GT_PIPE] = ACTIONS(2137), + [anon_sym_e_GT_PIPE] = ACTIONS(2137), + [anon_sym_o_GT_PIPE] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [anon_sym_DASH2] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_DOT_DOT2] = ACTIONS(5080), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), + [anon_sym_DOT_DOT_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5082), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5082), + [anon_sym_null] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [aux_sym__val_number_decimal_token1] = ACTIONS(2131), + [aux_sym__val_number_decimal_token2] = ACTIONS(2137), + [aux_sym__val_number_decimal_token3] = ACTIONS(2137), + [aux_sym__val_number_decimal_token4] = ACTIONS(2137), + [aux_sym__val_number_token1] = ACTIONS(2137), + [aux_sym__val_number_token2] = ACTIONS(2137), + [aux_sym__val_number_token3] = ACTIONS(2137), + [aux_sym__val_number_token4] = ACTIONS(2137), + [aux_sym__val_number_token5] = ACTIONS(2137), + [aux_sym__val_number_token6] = ACTIONS(2137), + [anon_sym_0b] = ACTIONS(2131), + [anon_sym_0o] = ACTIONS(2131), + [anon_sym_0x] = ACTIONS(2131), + [sym_val_date] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [sym__str_single_quotes] = ACTIONS(2137), + [sym__str_back_ticks] = ACTIONS(2137), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2137), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2137), + [anon_sym_err_GT] = ACTIONS(2131), + [anon_sym_out_GT] = ACTIONS(2131), + [anon_sym_e_GT] = ACTIONS(2131), + [anon_sym_o_GT] = ACTIONS(2131), + [anon_sym_err_PLUSout_GT] = ACTIONS(2131), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), + [anon_sym_o_PLUSe_GT] = ACTIONS(2131), + [anon_sym_e_PLUSo_GT] = ACTIONS(2131), + [anon_sym_err_GT_GT] = ACTIONS(2137), + [anon_sym_out_GT_GT] = ACTIONS(2137), + [anon_sym_e_GT_GT] = ACTIONS(2137), + [anon_sym_o_GT_GT] = ACTIONS(2137), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2137), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2137), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2137), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2137), + [aux_sym_unquoted_token1] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2137), + }, + [1672] = { + [sym_comment] = STATE(1672), + [ts_builtin_sym_end] = ACTIONS(2088), + [sym__newline] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_err_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_GT_PIPE] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_DASH_DASH] = ACTIONS(2088), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_DOT_DOT] = ACTIONS(2086), + [anon_sym_DOT_DOT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2086), + [anon_sym_DOT_DOT_LT] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), + [anon_sym_null] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = 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(2088), + [aux_sym__val_number_token5] = ACTIONS(2088), + [aux_sym__val_number_token6] = ACTIONS(2088), + [anon_sym_0b] = ACTIONS(2086), + [anon_sym_0o] = ACTIONS(2086), + [anon_sym_0x] = ACTIONS(2086), + [sym_val_date] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [sym__str_single_quotes] = ACTIONS(2088), + [sym__str_back_ticks] = ACTIONS(2088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2088), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2088), + [anon_sym_err_GT] = ACTIONS(2086), + [anon_sym_out_GT] = ACTIONS(2086), + [anon_sym_e_GT] = ACTIONS(2086), + [anon_sym_o_GT] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT] = ACTIONS(2086), + [anon_sym_err_GT_GT] = ACTIONS(2088), + [anon_sym_out_GT_GT] = ACTIONS(2088), + [anon_sym_e_GT_GT] = ACTIONS(2088), + [anon_sym_o_GT_GT] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [aux_sym_unquoted_token1] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2088), + }, + [1673] = { + [sym_comment] = STATE(1673), + [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] = 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(251), + }, + [1674] = { + [sym_comment] = STATE(1674), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_LT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1675] = { + [sym_comment] = STATE(1675), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(5084), + [aux_sym__immediate_decimal_token2] = ACTIONS(5086), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1676] = { + [sym_comment] = STATE(1676), + [sym__newline] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_err_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_GT_PIPE] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), + [anon_sym_LBRACK] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), + [anon_sym_DOT_DOT_LT] = ACTIONS(1024), + [anon_sym_null] = ACTIONS(1024), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1022), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1024), + [aux_sym__val_number_token5] = ACTIONS(1024), + [aux_sym__val_number_token6] = ACTIONS(1024), + [anon_sym_0b] = ACTIONS(1022), + [anon_sym_0o] = ACTIONS(1022), + [anon_sym_0x] = ACTIONS(1022), + [sym_val_date] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), + [anon_sym_err_GT] = ACTIONS(1022), + [anon_sym_out_GT] = ACTIONS(1022), + [anon_sym_e_GT] = ACTIONS(1022), + [anon_sym_o_GT] = ACTIONS(1022), + [anon_sym_err_PLUSout_GT] = ACTIONS(1022), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), + [anon_sym_o_PLUSe_GT] = ACTIONS(1022), + [anon_sym_e_PLUSo_GT] = ACTIONS(1022), + [anon_sym_err_GT_GT] = ACTIONS(1024), + [anon_sym_out_GT_GT] = ACTIONS(1024), + [anon_sym_e_GT_GT] = ACTIONS(1024), + [anon_sym_o_GT_GT] = ACTIONS(1024), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [aux_sym_unquoted_token1] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1024), + }, + [1677] = { + [sym__expr_parenthesized_immediate] = STATE(8149), + [sym_comment] = STATE(1677), + [sym__newline] = ACTIONS(5088), + [anon_sym_SEMI] = ACTIONS(5088), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_err_GT_PIPE] = ACTIONS(5088), + [anon_sym_out_GT_PIPE] = ACTIONS(5088), + [anon_sym_e_GT_PIPE] = ACTIONS(5088), + [anon_sym_o_GT_PIPE] = ACTIONS(5088), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5088), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5088), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5088), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5088), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5088), + [anon_sym_DOLLAR] = ACTIONS(5090), + [anon_sym_DASH_DASH] = ACTIONS(5088), + [anon_sym_DASH2] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5088), + [anon_sym_DOT_DOT] = ACTIONS(5090), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5088), + [anon_sym_DOT_DOT_LT] = ACTIONS(5088), + [anon_sym_null] = ACTIONS(5088), + [anon_sym_true] = ACTIONS(5088), + [anon_sym_false] = ACTIONS(5088), + [aux_sym__val_number_decimal_token1] = ACTIONS(5090), + [aux_sym__val_number_decimal_token2] = ACTIONS(5088), + [aux_sym__val_number_decimal_token3] = ACTIONS(5088), + [aux_sym__val_number_decimal_token4] = ACTIONS(5088), + [aux_sym__val_number_token1] = ACTIONS(5088), + [aux_sym__val_number_token2] = ACTIONS(5088), + [aux_sym__val_number_token3] = ACTIONS(5088), + [aux_sym__val_number_token4] = ACTIONS(5088), + [aux_sym__val_number_token5] = ACTIONS(5088), + [aux_sym__val_number_token6] = ACTIONS(5088), + [anon_sym_0b] = ACTIONS(5090), + [anon_sym_0o] = ACTIONS(5090), + [anon_sym_0x] = ACTIONS(5090), + [sym_val_date] = ACTIONS(5088), + [anon_sym_DQUOTE] = ACTIONS(5088), + [sym__str_single_quotes] = ACTIONS(5088), + [sym__str_back_ticks] = ACTIONS(5088), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5088), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5088), + [anon_sym_err_GT] = ACTIONS(5090), + [anon_sym_out_GT] = ACTIONS(5090), + [anon_sym_e_GT] = ACTIONS(5090), + [anon_sym_o_GT] = ACTIONS(5090), + [anon_sym_err_PLUSout_GT] = ACTIONS(5090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5090), + [anon_sym_o_PLUSe_GT] = ACTIONS(5090), + [anon_sym_e_PLUSo_GT] = ACTIONS(5090), + [anon_sym_err_GT_GT] = ACTIONS(5088), + [anon_sym_out_GT_GT] = ACTIONS(5088), + [anon_sym_e_GT_GT] = ACTIONS(5088), + [anon_sym_o_GT_GT] = ACTIONS(5088), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5088), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5088), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5088), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5088), + [aux_sym_unquoted_token1] = ACTIONS(5090), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5088), + }, + [1678] = { + [sym_comment] = STATE(1678), [ts_builtin_sym_end] = ACTIONS(1002), [sym__newline] = ACTIONS(1002), [anon_sym_SEMI] = ACTIONS(1002), @@ -234915,209 +238815,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1002), }, - [1662] = { - [sym_cell_path] = STATE(2132), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1662), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_err_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_GT_PIPE] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1891), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_GT2] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_in2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_EQ_GT] = ACTIONS(1891), - [anon_sym_STAR2] = ACTIONS(1889), - [anon_sym_and2] = ACTIONS(1891), - [anon_sym_xor2] = ACTIONS(1891), - [anon_sym_or2] = ACTIONS(1891), - [anon_sym_not_DASHin2] = ACTIONS(1891), - [anon_sym_starts_DASHwith2] = ACTIONS(1891), - [anon_sym_ends_DASHwith2] = ACTIONS(1891), - [anon_sym_EQ_EQ2] = ACTIONS(1891), - [anon_sym_BANG_EQ2] = ACTIONS(1891), - [anon_sym_LT2] = ACTIONS(1889), - [anon_sym_LT_EQ2] = ACTIONS(1891), - [anon_sym_GT_EQ2] = ACTIONS(1891), - [anon_sym_EQ_TILDE2] = ACTIONS(1891), - [anon_sym_BANG_TILDE2] = ACTIONS(1891), - [anon_sym_STAR_STAR2] = ACTIONS(1891), - [anon_sym_PLUS_PLUS2] = ACTIONS(1891), - [anon_sym_SLASH2] = ACTIONS(1889), - [anon_sym_mod2] = ACTIONS(1891), - [anon_sym_SLASH_SLASH2] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_bit_DASHshl2] = ACTIONS(1891), - [anon_sym_bit_DASHshr2] = ACTIONS(1891), - [anon_sym_bit_DASHand2] = ACTIONS(1891), - [anon_sym_bit_DASHxor2] = ACTIONS(1891), - [anon_sym_bit_DASHor2] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1889), - [anon_sym_out_GT] = ACTIONS(1889), - [anon_sym_e_GT] = ACTIONS(1889), - [anon_sym_o_GT] = ACTIONS(1889), - [anon_sym_err_PLUSout_GT] = ACTIONS(1889), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1889), - [anon_sym_o_PLUSe_GT] = ACTIONS(1889), - [anon_sym_e_PLUSo_GT] = ACTIONS(1889), - [anon_sym_err_GT_GT] = ACTIONS(1891), - [anon_sym_out_GT_GT] = ACTIONS(1891), - [anon_sym_e_GT_GT] = ACTIONS(1891), - [anon_sym_o_GT_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1891), + [1679] = { + [sym_comment] = STATE(1679), + [ts_builtin_sym_end] = ACTIONS(1006), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_err_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_GT_PIPE] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_QMARK2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_null] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1006), + [anon_sym_false] = ACTIONS(1006), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [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_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym__str_single_quotes] = ACTIONS(1006), + [sym__str_back_ticks] = ACTIONS(1006), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1006), + [anon_sym_out_GT_GT] = ACTIONS(1006), + [anon_sym_e_GT_GT] = ACTIONS(1006), + [anon_sym_o_GT_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), + [aux_sym_unquoted_token1] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1006), }, - [1663] = { - [sym_comment] = STATE(1663), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_PIPE] = ACTIONS(1028), - [anon_sym_err_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_GT_PIPE] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_DASH_DASH] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [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(1028), - [aux_sym__val_number_token5] = ACTIONS(1028), - [aux_sym__val_number_token6] = ACTIONS(1028), - [anon_sym_0b] = ACTIONS(1026), - [anon_sym_0o] = ACTIONS(1026), - [anon_sym_0x] = ACTIONS(1026), - [sym_val_date] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1026), - [anon_sym_out_GT] = ACTIONS(1026), - [anon_sym_e_GT] = ACTIONS(1026), - [anon_sym_o_GT] = ACTIONS(1026), - [anon_sym_err_PLUSout_GT] = ACTIONS(1026), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), - [anon_sym_o_PLUSe_GT] = ACTIONS(1026), - [anon_sym_e_PLUSo_GT] = ACTIONS(1026), - [anon_sym_err_GT_GT] = ACTIONS(1028), - [anon_sym_out_GT_GT] = ACTIONS(1028), - [anon_sym_e_GT_GT] = ACTIONS(1028), - [anon_sym_o_GT_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), - [aux_sym_unquoted_token1] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1028), + [1680] = { + [sym_comment] = STATE(1680), + [ts_builtin_sym_end] = ACTIONS(998), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(998), + [anon_sym_err_GT_PIPE] = ACTIONS(998), + [anon_sym_out_GT_PIPE] = ACTIONS(998), + [anon_sym_e_GT_PIPE] = ACTIONS(998), + [anon_sym_o_GT_PIPE] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(996), + [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_null] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(996), + [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_0b] = ACTIONS(996), + [anon_sym_0o] = ACTIONS(996), + [anon_sym_0x] = ACTIONS(996), + [sym_val_date] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_err_GT] = ACTIONS(996), + [anon_sym_out_GT] = ACTIONS(996), + [anon_sym_e_GT] = ACTIONS(996), + [anon_sym_o_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT_GT] = ACTIONS(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [aux_sym_unquoted_token1] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(998), }, - [1664] = { - [sym_comment] = STATE(1664), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1058), - [anon_sym_PIPE] = ACTIONS(1058), - [anon_sym_err_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_GT_PIPE] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1058), - [anon_sym_RPAREN] = ACTIONS(1058), - [anon_sym_GT2] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(1058), - [anon_sym_in2] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_EQ_GT] = ACTIONS(1058), - [anon_sym_STAR2] = ACTIONS(1056), - [anon_sym_and2] = ACTIONS(1058), - [anon_sym_xor2] = ACTIONS(1058), - [anon_sym_or2] = ACTIONS(1058), - [anon_sym_not_DASHin2] = ACTIONS(1058), - [anon_sym_starts_DASHwith2] = ACTIONS(1058), - [anon_sym_ends_DASHwith2] = ACTIONS(1058), - [anon_sym_EQ_EQ2] = ACTIONS(1058), - [anon_sym_BANG_EQ2] = ACTIONS(1058), - [anon_sym_LT2] = ACTIONS(1056), - [anon_sym_LT_EQ2] = ACTIONS(1058), - [anon_sym_GT_EQ2] = ACTIONS(1058), - [anon_sym_EQ_TILDE2] = ACTIONS(1058), - [anon_sym_BANG_TILDE2] = ACTIONS(1058), - [anon_sym_STAR_STAR2] = ACTIONS(1058), - [anon_sym_PLUS_PLUS2] = ACTIONS(1058), - [anon_sym_SLASH2] = ACTIONS(1056), - [anon_sym_mod2] = ACTIONS(1058), - [anon_sym_SLASH_SLASH2] = ACTIONS(1058), - [anon_sym_PLUS2] = ACTIONS(1056), - [anon_sym_bit_DASHshl2] = ACTIONS(1058), - [anon_sym_bit_DASHshr2] = ACTIONS(1058), - [anon_sym_bit_DASHand2] = ACTIONS(1058), - [anon_sym_bit_DASHxor2] = ACTIONS(1058), - [anon_sym_bit_DASHor2] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1058), - [anon_sym_err_GT] = ACTIONS(1056), - [anon_sym_out_GT] = ACTIONS(1056), - [anon_sym_e_GT] = ACTIONS(1056), - [anon_sym_o_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT] = ACTIONS(1056), - [anon_sym_err_GT_GT] = ACTIONS(1058), - [anon_sym_out_GT_GT] = ACTIONS(1058), - [anon_sym_e_GT_GT] = ACTIONS(1058), - [anon_sym_o_GT_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1058), + [1681] = { + [sym_comment] = STATE(1681), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_GT2] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1773), + [anon_sym_in2] = ACTIONS(1773), + [anon_sym_STAR2] = ACTIONS(1771), + [anon_sym_and2] = ACTIONS(1773), + [anon_sym_xor2] = ACTIONS(1773), + [anon_sym_or2] = ACTIONS(1773), + [anon_sym_not_DASHin2] = ACTIONS(1773), + [anon_sym_starts_DASHwith2] = ACTIONS(1773), + [anon_sym_ends_DASHwith2] = ACTIONS(1773), + [anon_sym_EQ_EQ2] = ACTIONS(1773), + [anon_sym_BANG_EQ2] = ACTIONS(1773), + [anon_sym_LT2] = ACTIONS(1771), + [anon_sym_LT_EQ2] = ACTIONS(1773), + [anon_sym_GT_EQ2] = ACTIONS(1773), + [anon_sym_EQ_TILDE2] = ACTIONS(1773), + [anon_sym_BANG_TILDE2] = ACTIONS(1773), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_STAR_STAR2] = ACTIONS(1773), + [anon_sym_PLUS_PLUS2] = ACTIONS(1773), + [anon_sym_SLASH2] = ACTIONS(1771), + [anon_sym_mod2] = ACTIONS(1773), + [anon_sym_SLASH_SLASH2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_bit_DASHshl2] = ACTIONS(1773), + [anon_sym_bit_DASHshr2] = ACTIONS(1773), + [anon_sym_bit_DASHand2] = ACTIONS(1773), + [anon_sym_bit_DASHxor2] = ACTIONS(1773), + [anon_sym_bit_DASHor2] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(5092), + [aux_sym__immediate_decimal_token2] = ACTIONS(5094), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), }, - [1665] = { - [sym_comment] = STATE(1665), + [1682] = { + [sym_comment] = STATE(1682), + [ts_builtin_sym_end] = ACTIONS(988), + [sym__newline] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_err_GT_PIPE] = ACTIONS(988), + [anon_sym_out_GT_PIPE] = ACTIONS(988), + [anon_sym_e_GT_PIPE] = ACTIONS(988), + [anon_sym_o_GT_PIPE] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_null] = ACTIONS(988), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(986), + [anon_sym_0o] = ACTIONS(986), + [anon_sym_0x] = ACTIONS(986), + [sym_val_date] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(986), + [anon_sym_out_GT] = ACTIONS(986), + [anon_sym_e_GT] = ACTIONS(986), + [anon_sym_o_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT] = ACTIONS(986), + [anon_sym_err_GT_GT] = ACTIONS(988), + [anon_sym_out_GT_GT] = ACTIONS(988), + [anon_sym_e_GT_GT] = ACTIONS(988), + [anon_sym_o_GT_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [aux_sym_unquoted_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(988), + }, + [1683] = { + [sym_comment] = STATE(1683), + [ts_builtin_sym_end] = ACTIONS(2270), + [sym__newline] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_err_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_GT_PIPE] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2266), + [anon_sym_DASH_DASH] = ACTIONS(2270), + [anon_sym_DASH2] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_DOT_DOT] = ACTIONS(2266), + [anon_sym_LPAREN2] = ACTIONS(2268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2270), + [anon_sym_DOT_DOT_LT] = ACTIONS(2270), + [anon_sym_null] = ACTIONS(2270), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [aux_sym__val_number_decimal_token1] = ACTIONS(2266), + [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_0b] = ACTIONS(2266), + [anon_sym_0o] = ACTIONS(2266), + [anon_sym_0x] = ACTIONS(2266), + [sym_val_date] = ACTIONS(2270), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__str_single_quotes] = ACTIONS(2270), + [sym__str_back_ticks] = ACTIONS(2270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), + [anon_sym_err_GT] = ACTIONS(2266), + [anon_sym_out_GT] = ACTIONS(2266), + [anon_sym_e_GT] = ACTIONS(2266), + [anon_sym_o_GT] = ACTIONS(2266), + [anon_sym_err_PLUSout_GT] = ACTIONS(2266), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2266), + [anon_sym_o_PLUSe_GT] = ACTIONS(2266), + [anon_sym_e_PLUSo_GT] = ACTIONS(2266), + [anon_sym_err_GT_GT] = ACTIONS(2270), + [anon_sym_out_GT_GT] = ACTIONS(2270), + [anon_sym_e_GT_GT] = ACTIONS(2270), + [anon_sym_o_GT_GT] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2270), + [aux_sym_unquoted_token1] = ACTIONS(2266), + [aux_sym_unquoted_token2] = ACTIONS(1659), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2270), + }, + [1684] = { + [sym_comment] = STATE(1684), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [aux_sym__immediate_decimal_token1] = ACTIONS(5096), + [aux_sym__immediate_decimal_token2] = ACTIONS(5098), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1685] = { + [sym_comment] = STATE(1685), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -235183,1348 +239284,2621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [1666] = { - [sym_comment] = STATE(1666), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [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(1695), - [anon_sym_0o] = ACTIONS(1695), - [anon_sym_0x] = ACTIONS(1695), - [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(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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(1695), - [aux_sym_unquoted_token2] = ACTIONS(4704), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [1667] = { - [sym_comment] = STATE(1667), - [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(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_LT] = ACTIONS(1038), - [anon_sym_null] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = ACTIONS(1038), - [anon_sym_0b] = ACTIONS(1038), - [anon_sym_0o] = ACTIONS(1038), - [anon_sym_0x] = ACTIONS(1038), - [sym_val_date] = ACTIONS(1038), - [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(1038), - [anon_sym_out_GT_GT] = ACTIONS(1038), - [anon_sym_e_GT_GT] = ACTIONS(1038), - [anon_sym_o_GT_GT] = ACTIONS(1038), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1038), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1038), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1038), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1038), - [aux_sym_unquoted_token1] = ACTIONS(1038), - [aux_sym_unquoted_token4] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [1668] = { - [sym_comment] = STATE(1668), - [sym__newline] = ACTIONS(5030), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_PIPE] = ACTIONS(5030), - [anon_sym_err_GT_PIPE] = ACTIONS(5030), - [anon_sym_out_GT_PIPE] = ACTIONS(5030), - [anon_sym_e_GT_PIPE] = ACTIONS(5030), - [anon_sym_o_GT_PIPE] = ACTIONS(5030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_DOLLAR] = ACTIONS(5032), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_DASH2] = ACTIONS(5032), - [anon_sym_LBRACE] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_DOT_DOT] = ACTIONS(5032), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5030), - [anon_sym_DOT_DOT_LT] = ACTIONS(5030), - [anon_sym_null] = ACTIONS(5030), - [anon_sym_true] = ACTIONS(5030), - [anon_sym_false] = ACTIONS(5030), - [aux_sym__val_number_decimal_token1] = ACTIONS(5032), - [aux_sym__val_number_decimal_token2] = ACTIONS(5030), - [aux_sym__val_number_decimal_token3] = ACTIONS(5030), - [aux_sym__val_number_decimal_token4] = ACTIONS(5030), - [aux_sym__val_number_token1] = ACTIONS(5030), - [aux_sym__val_number_token2] = ACTIONS(5030), - [aux_sym__val_number_token3] = ACTIONS(5030), - [aux_sym__val_number_token4] = ACTIONS(5030), - [aux_sym__val_number_token5] = ACTIONS(5030), - [aux_sym__val_number_token6] = ACTIONS(5030), - [anon_sym_0b] = ACTIONS(5032), - [anon_sym_0o] = ACTIONS(5032), - [anon_sym_0x] = ACTIONS(5032), - [sym_val_date] = ACTIONS(5030), - [anon_sym_DQUOTE] = ACTIONS(5030), - [sym__str_single_quotes] = ACTIONS(5030), - [sym__str_back_ticks] = ACTIONS(5030), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5030), - [anon_sym_err_GT] = ACTIONS(5032), - [anon_sym_out_GT] = ACTIONS(5032), - [anon_sym_e_GT] = ACTIONS(5032), - [anon_sym_o_GT] = ACTIONS(5032), - [anon_sym_err_PLUSout_GT] = ACTIONS(5032), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5032), - [anon_sym_o_PLUSe_GT] = ACTIONS(5032), - [anon_sym_e_PLUSo_GT] = ACTIONS(5032), - [anon_sym_err_GT_GT] = ACTIONS(5030), - [anon_sym_out_GT_GT] = ACTIONS(5030), - [anon_sym_e_GT_GT] = ACTIONS(5030), - [anon_sym_o_GT_GT] = ACTIONS(5030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5030), - [anon_sym_EQ2] = ACTIONS(5034), - [aux_sym_unquoted_token1] = ACTIONS(5032), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5030), - }, - [1669] = { - [sym_comment] = STATE(1669), - [sym__newline] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_err_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_GT_PIPE] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2282), - [anon_sym_DOT_DOT_LT] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2282), - [anon_sym_false] = 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_0b] = ACTIONS(2282), - [anon_sym_0o] = ACTIONS(2282), - [anon_sym_0x] = ACTIONS(2282), - [sym_val_date] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2286), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2282), - [anon_sym_out_GT_GT] = ACTIONS(2282), - [anon_sym_e_GT_GT] = ACTIONS(2282), - [anon_sym_o_GT_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2282), - [aux_sym_unquoted_token1] = ACTIONS(2282), - [aux_sym_unquoted_token4] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2286), - }, - [1670] = { - [sym_comment] = STATE(1670), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2290), - [anon_sym_DOT_DOT_LT] = ACTIONS(2290), - [anon_sym_null] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2290), - [anon_sym_false] = ACTIONS(2290), - [aux_sym__val_number_decimal_token1] = ACTIONS(2290), - [aux_sym__val_number_decimal_token2] = ACTIONS(2290), - [aux_sym__val_number_decimal_token3] = ACTIONS(2290), - [aux_sym__val_number_decimal_token4] = ACTIONS(2290), - [aux_sym__val_number_token1] = ACTIONS(2290), - [aux_sym__val_number_token2] = ACTIONS(2290), - [aux_sym__val_number_token3] = ACTIONS(2290), - [aux_sym__val_number_token4] = ACTIONS(2290), - [aux_sym__val_number_token5] = ACTIONS(2290), - [aux_sym__val_number_token6] = ACTIONS(2290), - [anon_sym_0b] = ACTIONS(2290), - [anon_sym_0o] = ACTIONS(2290), - [anon_sym_0x] = ACTIONS(2290), - [sym_val_date] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), - [aux_sym_unquoted_token1] = ACTIONS(2290), - [aux_sym_unquoted_token4] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), + [1686] = { + [sym_comment] = STATE(1686), + [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(251), + [sym_raw_string_begin] = ACTIONS(1016), }, - [1671] = { - [sym_comment] = STATE(1671), - [sym__newline] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_err_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_GT_PIPE] = ACTIONS(2300), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_RPAREN] = ACTIONS(2300), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_DOT_DOT] = ACTIONS(2298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2298), - [anon_sym_DOT_DOT_LT] = ACTIONS(2298), - [anon_sym_null] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2298), - [anon_sym_false] = ACTIONS(2298), - [aux_sym__val_number_decimal_token1] = ACTIONS(2298), - [aux_sym__val_number_decimal_token2] = ACTIONS(2298), - [aux_sym__val_number_decimal_token3] = ACTIONS(2298), - [aux_sym__val_number_decimal_token4] = ACTIONS(2298), - [aux_sym__val_number_token1] = ACTIONS(2298), - [aux_sym__val_number_token2] = ACTIONS(2298), - [aux_sym__val_number_token3] = ACTIONS(2298), - [aux_sym__val_number_token4] = ACTIONS(2298), - [aux_sym__val_number_token5] = ACTIONS(2298), - [aux_sym__val_number_token6] = ACTIONS(2298), - [anon_sym_0b] = ACTIONS(2298), - [anon_sym_0o] = ACTIONS(2298), - [anon_sym_0x] = ACTIONS(2298), - [sym_val_date] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [aux_sym_unquoted_token1] = ACTIONS(2298), - [aux_sym_unquoted_token4] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), + [1687] = { + [sym_comment] = STATE(1687), + [ts_builtin_sym_end] = ACTIONS(2230), + [sym__newline] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_err_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_GT_PIPE] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), + [anon_sym_DOT_DOT_LT] = ACTIONS(2230), + [anon_sym_null] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [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), + [aux_sym__val_number_token4] = ACTIONS(2230), + [aux_sym__val_number_token5] = ACTIONS(2230), + [aux_sym__val_number_token6] = ACTIONS(2230), + [anon_sym_0b] = ACTIONS(2226), + [anon_sym_0o] = ACTIONS(2226), + [anon_sym_0x] = ACTIONS(2226), + [sym_val_date] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), + [anon_sym_err_GT] = ACTIONS(2226), + [anon_sym_out_GT] = ACTIONS(2226), + [anon_sym_e_GT] = ACTIONS(2226), + [anon_sym_o_GT] = ACTIONS(2226), + [anon_sym_err_PLUSout_GT] = ACTIONS(2226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), + [anon_sym_o_PLUSe_GT] = ACTIONS(2226), + [anon_sym_e_PLUSo_GT] = ACTIONS(2226), + [anon_sym_err_GT_GT] = ACTIONS(2230), + [anon_sym_out_GT_GT] = ACTIONS(2230), + [anon_sym_e_GT_GT] = ACTIONS(2230), + [anon_sym_o_GT_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [aux_sym_unquoted_token2] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2230), }, - [1672] = { - [sym_comment] = STATE(1672), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [aux_sym__immediate_decimal_token2] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), + [1688] = { + [sym_comment] = STATE(1688), + [ts_builtin_sym_end] = ACTIONS(5010), + [sym_long_flag_identifier] = ACTIONS(5100), + [sym__newline] = ACTIONS(5010), + [anon_sym_SEMI] = ACTIONS(5010), + [anon_sym_PIPE] = ACTIONS(5010), + [anon_sym_err_GT_PIPE] = ACTIONS(5010), + [anon_sym_out_GT_PIPE] = ACTIONS(5010), + [anon_sym_e_GT_PIPE] = ACTIONS(5010), + [anon_sym_o_GT_PIPE] = ACTIONS(5010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_LPAREN] = ACTIONS(5010), + [anon_sym_DOLLAR] = ACTIONS(5012), + [anon_sym_DASH_DASH] = ACTIONS(5010), + [anon_sym_DASH2] = ACTIONS(5012), + [anon_sym_LBRACE] = ACTIONS(5010), + [anon_sym_DOT_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), + [anon_sym_DOT_DOT_LT] = ACTIONS(5010), + [anon_sym_null] = ACTIONS(5012), + [anon_sym_true] = ACTIONS(5012), + [anon_sym_false] = ACTIONS(5012), + [aux_sym__val_number_decimal_token1] = ACTIONS(5012), + [aux_sym__val_number_decimal_token2] = ACTIONS(5010), + [aux_sym__val_number_decimal_token3] = ACTIONS(5010), + [aux_sym__val_number_decimal_token4] = ACTIONS(5010), + [aux_sym__val_number_token1] = ACTIONS(5012), + [aux_sym__val_number_token2] = ACTIONS(5012), + [aux_sym__val_number_token3] = ACTIONS(5012), + [aux_sym__val_number_token4] = ACTIONS(5012), + [aux_sym__val_number_token5] = ACTIONS(5010), + [aux_sym__val_number_token6] = ACTIONS(5012), + [anon_sym_0b] = ACTIONS(5012), + [anon_sym_0o] = ACTIONS(5012), + [anon_sym_0x] = ACTIONS(5012), + [sym_val_date] = ACTIONS(5012), + [anon_sym_DQUOTE] = ACTIONS(5010), + [sym__str_single_quotes] = ACTIONS(5010), + [sym__str_back_ticks] = ACTIONS(5010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5010), + [anon_sym_err_GT] = ACTIONS(5012), + [anon_sym_out_GT] = ACTIONS(5012), + [anon_sym_e_GT] = ACTIONS(5012), + [anon_sym_o_GT] = ACTIONS(5012), + [anon_sym_err_PLUSout_GT] = ACTIONS(5012), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5012), + [anon_sym_o_PLUSe_GT] = ACTIONS(5012), + [anon_sym_e_PLUSo_GT] = ACTIONS(5012), + [anon_sym_err_GT_GT] = ACTIONS(5010), + [anon_sym_out_GT_GT] = ACTIONS(5010), + [anon_sym_e_GT_GT] = ACTIONS(5010), + [anon_sym_o_GT_GT] = ACTIONS(5010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5010), + [anon_sym_EQ2] = ACTIONS(5102), + [aux_sym_unquoted_token1] = ACTIONS(5012), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5010), }, - [1673] = { - [sym_comment] = STATE(1673), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT] = ACTIONS(1803), - [aux_sym__immediate_decimal_token2] = ACTIONS(5036), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), + [1689] = { + [sym_comment] = STATE(1689), + [ts_builtin_sym_end] = ACTIONS(5027), + [sym__newline] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5027), + [anon_sym_PIPE] = ACTIONS(5027), + [anon_sym_err_GT_PIPE] = ACTIONS(5027), + [anon_sym_out_GT_PIPE] = ACTIONS(5027), + [anon_sym_e_GT_PIPE] = ACTIONS(5027), + [anon_sym_o_GT_PIPE] = ACTIONS(5027), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5027), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5027), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5027), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_DASH2] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_DOT_DOT] = ACTIONS(5029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5027), + [anon_sym_DOT_DOT_LT] = ACTIONS(5027), + [anon_sym_null] = ACTIONS(5029), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [aux_sym__val_number_decimal_token1] = ACTIONS(5029), + [aux_sym__val_number_decimal_token2] = ACTIONS(5029), + [aux_sym__val_number_decimal_token3] = ACTIONS(5027), + [aux_sym__val_number_decimal_token4] = ACTIONS(5027), + [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(5029), + [anon_sym_0o] = ACTIONS(5029), + [anon_sym_0x] = ACTIONS(5029), + [sym_val_date] = ACTIONS(5029), + [anon_sym_DQUOTE] = ACTIONS(5027), + [sym__str_single_quotes] = ACTIONS(5027), + [sym__str_back_ticks] = ACTIONS(5027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5027), + [anon_sym_err_GT] = ACTIONS(5029), + [anon_sym_out_GT] = ACTIONS(5029), + [anon_sym_e_GT] = ACTIONS(5029), + [anon_sym_o_GT] = ACTIONS(5029), + [anon_sym_err_PLUSout_GT] = ACTIONS(5029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5029), + [anon_sym_o_PLUSe_GT] = ACTIONS(5029), + [anon_sym_e_PLUSo_GT] = ACTIONS(5029), + [anon_sym_err_GT_GT] = ACTIONS(5027), + [anon_sym_out_GT_GT] = ACTIONS(5027), + [anon_sym_e_GT_GT] = ACTIONS(5027), + [anon_sym_o_GT_GT] = ACTIONS(5027), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5027), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5027), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5027), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5027), + [anon_sym_EQ2] = ACTIONS(5104), + [sym_short_flag_identifier] = ACTIONS(5106), + [aux_sym_unquoted_token1] = ACTIONS(5029), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5027), }, - [1674] = { - [sym__expr_parenthesized_immediate] = STATE(7966), - [sym_comment] = STATE(1674), - [ts_builtin_sym_end] = ACTIONS(4986), - [sym__newline] = ACTIONS(4986), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4986), - [anon_sym_err_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_GT_PIPE] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_DOLLAR] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_DASH2] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_DOT_DOT] = ACTIONS(4988), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), - [anon_sym_DOT_DOT_LT] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4986), - [anon_sym_true] = ACTIONS(4986), - [anon_sym_false] = ACTIONS(4986), - [aux_sym__val_number_decimal_token1] = ACTIONS(4988), - [aux_sym__val_number_decimal_token2] = ACTIONS(4986), - [aux_sym__val_number_decimal_token3] = ACTIONS(4986), - [aux_sym__val_number_decimal_token4] = ACTIONS(4986), - [aux_sym__val_number_token1] = ACTIONS(4986), - [aux_sym__val_number_token2] = ACTIONS(4986), - [aux_sym__val_number_token3] = ACTIONS(4986), - [aux_sym__val_number_token4] = ACTIONS(4986), - [aux_sym__val_number_token5] = ACTIONS(4986), - [aux_sym__val_number_token6] = ACTIONS(4986), - [anon_sym_0b] = ACTIONS(4988), - [anon_sym_0o] = ACTIONS(4988), - [anon_sym_0x] = ACTIONS(4988), - [sym_val_date] = ACTIONS(4986), - [anon_sym_DQUOTE] = ACTIONS(4986), - [sym__str_single_quotes] = ACTIONS(4986), - [sym__str_back_ticks] = ACTIONS(4986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4986), - [anon_sym_err_GT] = ACTIONS(4988), - [anon_sym_out_GT] = ACTIONS(4988), - [anon_sym_e_GT] = ACTIONS(4988), - [anon_sym_o_GT] = ACTIONS(4988), - [anon_sym_err_PLUSout_GT] = ACTIONS(4988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4988), - [anon_sym_o_PLUSe_GT] = ACTIONS(4988), - [anon_sym_e_PLUSo_GT] = ACTIONS(4988), - [anon_sym_err_GT_GT] = ACTIONS(4986), - [anon_sym_out_GT_GT] = ACTIONS(4986), - [anon_sym_e_GT_GT] = ACTIONS(4986), - [anon_sym_o_GT_GT] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4986), - [aux_sym_unquoted_token1] = ACTIONS(4988), + [1690] = { + [sym_comment] = STATE(1690), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_GT2] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1781), + [anon_sym_in2] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_STAR2] = ACTIONS(1779), + [anon_sym_and2] = ACTIONS(1781), + [anon_sym_xor2] = ACTIONS(1781), + [anon_sym_or2] = ACTIONS(1781), + [anon_sym_not_DASHin2] = ACTIONS(1781), + [anon_sym_starts_DASHwith2] = ACTIONS(1781), + [anon_sym_ends_DASHwith2] = ACTIONS(1781), + [anon_sym_EQ_EQ2] = ACTIONS(1781), + [anon_sym_BANG_EQ2] = ACTIONS(1781), + [anon_sym_LT2] = ACTIONS(1779), + [anon_sym_LT_EQ2] = ACTIONS(1781), + [anon_sym_GT_EQ2] = ACTIONS(1781), + [anon_sym_EQ_TILDE2] = ACTIONS(1781), + [anon_sym_BANG_TILDE2] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_STAR_STAR2] = ACTIONS(1781), + [anon_sym_PLUS_PLUS2] = ACTIONS(1781), + [anon_sym_SLASH2] = ACTIONS(1779), + [anon_sym_mod2] = ACTIONS(1781), + [anon_sym_SLASH_SLASH2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_bit_DASHshl2] = ACTIONS(1781), + [anon_sym_bit_DASHshr2] = ACTIONS(1781), + [anon_sym_bit_DASHand2] = ACTIONS(1781), + [anon_sym_bit_DASHxor2] = ACTIONS(1781), + [anon_sym_bit_DASHor2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4986), - }, - [1675] = { - [sym_comment] = STATE(1675), - [sym__newline] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_err_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_GT_PIPE] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_RPAREN] = ACTIONS(2249), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_DASH2] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2247), - [anon_sym_DOT_DOT_LT] = ACTIONS(2247), - [anon_sym_null] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(2247), - [anon_sym_false] = ACTIONS(2247), - [aux_sym__val_number_decimal_token1] = ACTIONS(2247), - [aux_sym__val_number_decimal_token2] = ACTIONS(2247), - [aux_sym__val_number_decimal_token3] = ACTIONS(2247), - [aux_sym__val_number_decimal_token4] = ACTIONS(2247), - [aux_sym__val_number_token1] = ACTIONS(2247), - [aux_sym__val_number_token2] = ACTIONS(2247), - [aux_sym__val_number_token3] = ACTIONS(2247), - [aux_sym__val_number_token4] = ACTIONS(2247), - [aux_sym__val_number_token5] = ACTIONS(2247), - [aux_sym__val_number_token6] = ACTIONS(2247), - [anon_sym_0b] = ACTIONS(2247), - [anon_sym_0o] = ACTIONS(2247), - [anon_sym_0x] = ACTIONS(2247), - [sym_val_date] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym__str_single_quotes] = ACTIONS(2249), - [sym__str_back_ticks] = ACTIONS(2249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), - [anon_sym_err_GT] = ACTIONS(2247), - [anon_sym_out_GT] = ACTIONS(2247), - [anon_sym_e_GT] = ACTIONS(2247), - [anon_sym_o_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT] = ACTIONS(2247), - [anon_sym_err_GT_GT] = ACTIONS(2247), - [anon_sym_out_GT_GT] = ACTIONS(2247), - [anon_sym_e_GT_GT] = ACTIONS(2247), - [anon_sym_o_GT_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), - [aux_sym_unquoted_token1] = ACTIONS(2247), - [aux_sym_unquoted_token4] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2249), }, - [1676] = { - [sym__expr_parenthesized_immediate] = STATE(7966), - [sym_comment] = STATE(1676), - [ts_builtin_sym_end] = ACTIONS(4994), - [sym__newline] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4994), - [anon_sym_err_GT_PIPE] = ACTIONS(4994), - [anon_sym_out_GT_PIPE] = ACTIONS(4994), - [anon_sym_e_GT_PIPE] = ACTIONS(4994), - [anon_sym_o_GT_PIPE] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4996), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_DASH2] = ACTIONS(4996), - [anon_sym_LBRACE] = ACTIONS(4994), - [anon_sym_DOT_DOT] = ACTIONS(4996), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4994), - [anon_sym_DOT_DOT_LT] = ACTIONS(4994), - [anon_sym_null] = ACTIONS(4994), - [anon_sym_true] = ACTIONS(4994), - [anon_sym_false] = ACTIONS(4994), - [aux_sym__val_number_decimal_token1] = ACTIONS(4996), - [aux_sym__val_number_decimal_token2] = ACTIONS(4994), - [aux_sym__val_number_decimal_token3] = ACTIONS(4994), - [aux_sym__val_number_decimal_token4] = ACTIONS(4994), - [aux_sym__val_number_token1] = ACTIONS(4994), - [aux_sym__val_number_token2] = ACTIONS(4994), - [aux_sym__val_number_token3] = ACTIONS(4994), - [aux_sym__val_number_token4] = ACTIONS(4994), - [aux_sym__val_number_token5] = ACTIONS(4994), - [aux_sym__val_number_token6] = ACTIONS(4994), - [anon_sym_0b] = ACTIONS(4996), - [anon_sym_0o] = ACTIONS(4996), - [anon_sym_0x] = ACTIONS(4996), - [sym_val_date] = ACTIONS(4994), - [anon_sym_DQUOTE] = ACTIONS(4994), - [sym__str_single_quotes] = ACTIONS(4994), - [sym__str_back_ticks] = ACTIONS(4994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4994), - [anon_sym_err_GT] = ACTIONS(4996), - [anon_sym_out_GT] = ACTIONS(4996), - [anon_sym_e_GT] = ACTIONS(4996), - [anon_sym_o_GT] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT] = ACTIONS(4996), - [anon_sym_err_GT_GT] = ACTIONS(4994), - [anon_sym_out_GT_GT] = ACTIONS(4994), - [anon_sym_e_GT_GT] = ACTIONS(4994), - [anon_sym_o_GT_GT] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4994), - [aux_sym_unquoted_token1] = ACTIONS(4996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4994), + [1691] = { + [sym__expr_parenthesized_immediate] = STATE(8128), + [sym_comment] = STATE(1691), + [ts_builtin_sym_end] = ACTIONS(5023), + [sym__newline] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5023), + [anon_sym_PIPE] = ACTIONS(5023), + [anon_sym_err_GT_PIPE] = ACTIONS(5023), + [anon_sym_out_GT_PIPE] = ACTIONS(5023), + [anon_sym_e_GT_PIPE] = ACTIONS(5023), + [anon_sym_o_GT_PIPE] = ACTIONS(5023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_DASH_DASH] = ACTIONS(5023), + [anon_sym_DASH2] = ACTIONS(5025), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5025), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5023), + [anon_sym_DOT_DOT_LT] = ACTIONS(5023), + [anon_sym_null] = ACTIONS(5023), + [anon_sym_true] = ACTIONS(5023), + [anon_sym_false] = ACTIONS(5023), + [aux_sym__val_number_decimal_token1] = ACTIONS(5025), + [aux_sym__val_number_decimal_token2] = ACTIONS(5023), + [aux_sym__val_number_decimal_token3] = ACTIONS(5023), + [aux_sym__val_number_decimal_token4] = ACTIONS(5023), + [aux_sym__val_number_token1] = ACTIONS(5023), + [aux_sym__val_number_token2] = ACTIONS(5023), + [aux_sym__val_number_token3] = ACTIONS(5023), + [aux_sym__val_number_token4] = ACTIONS(5023), + [aux_sym__val_number_token5] = ACTIONS(5023), + [aux_sym__val_number_token6] = ACTIONS(5023), + [anon_sym_0b] = ACTIONS(5025), + [anon_sym_0o] = ACTIONS(5025), + [anon_sym_0x] = ACTIONS(5025), + [sym_val_date] = ACTIONS(5023), + [anon_sym_DQUOTE] = ACTIONS(5023), + [sym__str_single_quotes] = ACTIONS(5023), + [sym__str_back_ticks] = ACTIONS(5023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5023), + [anon_sym_err_GT] = ACTIONS(5025), + [anon_sym_out_GT] = ACTIONS(5025), + [anon_sym_e_GT] = ACTIONS(5025), + [anon_sym_o_GT] = ACTIONS(5025), + [anon_sym_err_PLUSout_GT] = ACTIONS(5025), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5025), + [anon_sym_o_PLUSe_GT] = ACTIONS(5025), + [anon_sym_e_PLUSo_GT] = ACTIONS(5025), + [anon_sym_err_GT_GT] = ACTIONS(5023), + [anon_sym_out_GT_GT] = ACTIONS(5023), + [anon_sym_e_GT_GT] = ACTIONS(5023), + [anon_sym_o_GT_GT] = ACTIONS(5023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5023), + [aux_sym_unquoted_token1] = ACTIONS(5025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5023), }, - [1677] = { - [sym__expr_parenthesized_immediate] = STATE(7492), - [sym_comment] = STATE(1677), - [sym__newline] = ACTIONS(5038), - [anon_sym_SEMI] = ACTIONS(5038), - [anon_sym_PIPE] = ACTIONS(5038), - [anon_sym_err_GT_PIPE] = ACTIONS(5038), - [anon_sym_out_GT_PIPE] = ACTIONS(5038), - [anon_sym_e_GT_PIPE] = ACTIONS(5038), - [anon_sym_o_GT_PIPE] = ACTIONS(5038), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5038), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5038), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5038), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(5038), - [anon_sym_LPAREN] = ACTIONS(5040), - [anon_sym_RPAREN] = ACTIONS(5038), - [anon_sym_DOLLAR] = ACTIONS(5040), - [anon_sym_DASH_DASH] = ACTIONS(5038), - [anon_sym_DASH2] = ACTIONS(5040), - [anon_sym_LBRACE] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5040), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5038), - [anon_sym_DOT_DOT_LT] = ACTIONS(5038), - [anon_sym_null] = ACTIONS(5038), - [anon_sym_true] = ACTIONS(5038), - [anon_sym_false] = ACTIONS(5038), - [aux_sym__val_number_decimal_token1] = ACTIONS(5040), - [aux_sym__val_number_decimal_token2] = ACTIONS(5038), - [aux_sym__val_number_decimal_token3] = ACTIONS(5038), - [aux_sym__val_number_decimal_token4] = ACTIONS(5038), - [aux_sym__val_number_token1] = ACTIONS(5038), - [aux_sym__val_number_token2] = ACTIONS(5038), - [aux_sym__val_number_token3] = ACTIONS(5038), - [aux_sym__val_number_token4] = ACTIONS(5038), - [aux_sym__val_number_token5] = ACTIONS(5038), - [aux_sym__val_number_token6] = ACTIONS(5038), - [anon_sym_0b] = ACTIONS(5040), - [anon_sym_0o] = ACTIONS(5040), - [anon_sym_0x] = ACTIONS(5040), - [sym_val_date] = ACTIONS(5038), - [anon_sym_DQUOTE] = ACTIONS(5038), - [sym__str_single_quotes] = ACTIONS(5038), - [sym__str_back_ticks] = ACTIONS(5038), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5038), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5038), - [anon_sym_err_GT] = ACTIONS(5040), - [anon_sym_out_GT] = ACTIONS(5040), - [anon_sym_e_GT] = ACTIONS(5040), - [anon_sym_o_GT] = ACTIONS(5040), - [anon_sym_err_PLUSout_GT] = ACTIONS(5040), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5040), - [anon_sym_o_PLUSe_GT] = ACTIONS(5040), - [anon_sym_e_PLUSo_GT] = ACTIONS(5040), - [anon_sym_err_GT_GT] = ACTIONS(5038), - [anon_sym_out_GT_GT] = ACTIONS(5038), - [anon_sym_e_GT_GT] = ACTIONS(5038), - [anon_sym_o_GT_GT] = ACTIONS(5038), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5038), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5038), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5038), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5038), - [aux_sym_unquoted_token1] = ACTIONS(5040), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5038), + [1692] = { + [sym_comment] = STATE(1692), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1699), + [anon_sym_DOT_DOT_LT] = ACTIONS(1699), + [anon_sym_null] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1699), + [aux_sym__val_number_token5] = ACTIONS(1699), + [aux_sym__val_number_token6] = ACTIONS(1699), + [anon_sym_0b] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [sym_val_date] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token1] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), }, - [1678] = { - [sym_comment] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(1647), - [sym__newline] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_err_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_GT_PIPE] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1647), - [anon_sym_in2] = ACTIONS(1647), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1647), - [anon_sym_xor2] = ACTIONS(1647), - [anon_sym_or2] = ACTIONS(1647), - [anon_sym_not_DASHin2] = ACTIONS(1647), - [anon_sym_starts_DASHwith2] = ACTIONS(1647), - [anon_sym_ends_DASHwith2] = ACTIONS(1647), - [anon_sym_EQ_EQ2] = ACTIONS(1647), - [anon_sym_BANG_EQ2] = ACTIONS(1647), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1647), - [anon_sym_GT_EQ2] = ACTIONS(1647), - [anon_sym_EQ_TILDE2] = ACTIONS(1647), - [anon_sym_BANG_TILDE2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_STAR_STAR2] = ACTIONS(1647), - [anon_sym_PLUS_PLUS2] = ACTIONS(1647), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1647), - [anon_sym_SLASH_SLASH2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1647), - [anon_sym_bit_DASHshr2] = ACTIONS(1647), - [anon_sym_bit_DASHand2] = ACTIONS(1647), - [anon_sym_bit_DASHxor2] = ACTIONS(1647), - [anon_sym_bit_DASHor2] = ACTIONS(1647), - [anon_sym_DOT_DOT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), - [sym_filesize_unit] = ACTIONS(1645), - [sym_duration_unit] = ACTIONS(1647), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1647), - [anon_sym_out_GT_GT] = ACTIONS(1647), - [anon_sym_e_GT_GT] = ACTIONS(1647), - [anon_sym_o_GT_GT] = ACTIONS(1647), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), - [aux_sym_unquoted_token2] = ACTIONS(1645), + [1693] = { + [sym_comment] = STATE(1693), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(5108), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(5110), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, - [1679] = { - [sym_comment] = STATE(1679), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym__newline] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_err_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_GT_PIPE] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [anon_sym_DASH2] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1785), - [anon_sym_LPAREN2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [anon_sym_null] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym__val_number_decimal_token1] = ACTIONS(1785), - [aux_sym__val_number_decimal_token2] = ACTIONS(1787), - [aux_sym__val_number_decimal_token3] = ACTIONS(1787), - [aux_sym__val_number_decimal_token4] = ACTIONS(1787), - [aux_sym__val_number_token1] = ACTIONS(1787), - [aux_sym__val_number_token2] = ACTIONS(1787), - [aux_sym__val_number_token3] = ACTIONS(1787), - [aux_sym__val_number_token4] = ACTIONS(1787), - [aux_sym__val_number_token5] = ACTIONS(1787), - [aux_sym__val_number_token6] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1785), - [anon_sym_0o] = ACTIONS(1785), - [anon_sym_0x] = ACTIONS(1785), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_err_GT] = ACTIONS(1785), - [anon_sym_out_GT] = ACTIONS(1785), - [anon_sym_e_GT] = ACTIONS(1785), - [anon_sym_o_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT] = ACTIONS(1785), - [anon_sym_err_GT_GT] = ACTIONS(1787), - [anon_sym_out_GT_GT] = ACTIONS(1787), - [anon_sym_e_GT_GT] = ACTIONS(1787), - [anon_sym_o_GT_GT] = ACTIONS(1787), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), - [aux_sym_unquoted_token1] = ACTIONS(1785), - [aux_sym_unquoted_token2] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1787), - }, - [1680] = { - [sym_comment] = STATE(1680), - [ts_builtin_sym_end] = ACTIONS(1639), - [sym__newline] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_err_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_GT_PIPE] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1639), - [anon_sym_GT2] = ACTIONS(1637), - [anon_sym_DASH2] = ACTIONS(1639), - [anon_sym_in2] = ACTIONS(1639), - [anon_sym_STAR2] = ACTIONS(1637), - [anon_sym_and2] = ACTIONS(1639), - [anon_sym_xor2] = ACTIONS(1639), - [anon_sym_or2] = ACTIONS(1639), - [anon_sym_not_DASHin2] = ACTIONS(1639), - [anon_sym_starts_DASHwith2] = ACTIONS(1639), - [anon_sym_ends_DASHwith2] = ACTIONS(1639), - [anon_sym_EQ_EQ2] = ACTIONS(1639), - [anon_sym_BANG_EQ2] = ACTIONS(1639), - [anon_sym_LT2] = ACTIONS(1637), - [anon_sym_LT_EQ2] = ACTIONS(1639), - [anon_sym_GT_EQ2] = ACTIONS(1639), - [anon_sym_EQ_TILDE2] = ACTIONS(1639), - [anon_sym_BANG_TILDE2] = ACTIONS(1639), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_STAR_STAR2] = ACTIONS(1639), - [anon_sym_PLUS_PLUS2] = ACTIONS(1639), - [anon_sym_SLASH2] = ACTIONS(1637), - [anon_sym_mod2] = ACTIONS(1639), - [anon_sym_SLASH_SLASH2] = ACTIONS(1639), - [anon_sym_PLUS2] = ACTIONS(1637), - [anon_sym_bit_DASHshl2] = ACTIONS(1639), - [anon_sym_bit_DASHshr2] = ACTIONS(1639), - [anon_sym_bit_DASHand2] = ACTIONS(1639), - [anon_sym_bit_DASHxor2] = ACTIONS(1639), - [anon_sym_bit_DASHor2] = ACTIONS(1639), - [anon_sym_DOT_DOT2] = ACTIONS(1637), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1639), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1639), - [sym_filesize_unit] = ACTIONS(1637), - [sym_duration_unit] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1637), - [anon_sym_out_GT] = ACTIONS(1637), - [anon_sym_e_GT] = ACTIONS(1637), - [anon_sym_o_GT] = ACTIONS(1637), - [anon_sym_err_PLUSout_GT] = ACTIONS(1637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1637), - [anon_sym_o_PLUSe_GT] = ACTIONS(1637), - [anon_sym_e_PLUSo_GT] = ACTIONS(1637), - [anon_sym_err_GT_GT] = ACTIONS(1639), - [anon_sym_out_GT_GT] = ACTIONS(1639), - [anon_sym_e_GT_GT] = ACTIONS(1639), - [anon_sym_o_GT_GT] = ACTIONS(1639), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1639), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1639), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1639), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1639), - [aux_sym_unquoted_token2] = ACTIONS(1637), + [1694] = { + [sym_comment] = STATE(1694), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_err_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_GT_PIPE] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_GT2] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1054), + [anon_sym_in2] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_EQ_GT] = ACTIONS(1054), + [anon_sym_STAR2] = ACTIONS(1052), + [anon_sym_and2] = ACTIONS(1054), + [anon_sym_xor2] = ACTIONS(1054), + [anon_sym_or2] = ACTIONS(1054), + [anon_sym_not_DASHin2] = ACTIONS(1054), + [anon_sym_starts_DASHwith2] = ACTIONS(1054), + [anon_sym_ends_DASHwith2] = ACTIONS(1054), + [anon_sym_EQ_EQ2] = ACTIONS(1054), + [anon_sym_BANG_EQ2] = ACTIONS(1054), + [anon_sym_LT2] = ACTIONS(1052), + [anon_sym_LT_EQ2] = ACTIONS(1054), + [anon_sym_GT_EQ2] = ACTIONS(1054), + [anon_sym_EQ_TILDE2] = ACTIONS(1054), + [anon_sym_BANG_TILDE2] = ACTIONS(1054), + [anon_sym_STAR_STAR2] = ACTIONS(1054), + [anon_sym_PLUS_PLUS2] = ACTIONS(1054), + [anon_sym_SLASH2] = ACTIONS(1052), + [anon_sym_mod2] = ACTIONS(1054), + [anon_sym_SLASH_SLASH2] = ACTIONS(1054), + [anon_sym_PLUS2] = ACTIONS(1052), + [anon_sym_bit_DASHshl2] = ACTIONS(1054), + [anon_sym_bit_DASHshr2] = ACTIONS(1054), + [anon_sym_bit_DASHand2] = ACTIONS(1054), + [anon_sym_bit_DASHxor2] = ACTIONS(1054), + [anon_sym_bit_DASHor2] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), + [anon_sym_err_GT] = ACTIONS(1052), + [anon_sym_out_GT] = ACTIONS(1052), + [anon_sym_e_GT] = ACTIONS(1052), + [anon_sym_o_GT] = ACTIONS(1052), + [anon_sym_err_PLUSout_GT] = ACTIONS(1052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), + [anon_sym_o_PLUSe_GT] = ACTIONS(1052), + [anon_sym_e_PLUSo_GT] = ACTIONS(1052), + [anon_sym_err_GT_GT] = ACTIONS(1054), + [anon_sym_out_GT_GT] = ACTIONS(1054), + [anon_sym_e_GT_GT] = ACTIONS(1054), + [anon_sym_o_GT_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(251), }, - [1681] = { - [sym_path] = STATE(1921), - [sym_comment] = STATE(1681), - [aux_sym_cell_path_repeat1] = STATE(1700), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_EQ_GT] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(988), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), + [1695] = { + [sym_comment] = STATE(1695), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_GT2] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1773), + [anon_sym_in2] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_STAR2] = ACTIONS(1771), + [anon_sym_and2] = ACTIONS(1773), + [anon_sym_xor2] = ACTIONS(1773), + [anon_sym_or2] = ACTIONS(1773), + [anon_sym_not_DASHin2] = ACTIONS(1773), + [anon_sym_starts_DASHwith2] = ACTIONS(1773), + [anon_sym_ends_DASHwith2] = ACTIONS(1773), + [anon_sym_EQ_EQ2] = ACTIONS(1773), + [anon_sym_BANG_EQ2] = ACTIONS(1773), + [anon_sym_LT2] = ACTIONS(1771), + [anon_sym_LT_EQ2] = ACTIONS(1773), + [anon_sym_GT_EQ2] = ACTIONS(1773), + [anon_sym_EQ_TILDE2] = ACTIONS(1773), + [anon_sym_BANG_TILDE2] = ACTIONS(1773), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_STAR_STAR2] = ACTIONS(1773), + [anon_sym_PLUS_PLUS2] = ACTIONS(1773), + [anon_sym_SLASH2] = ACTIONS(1771), + [anon_sym_mod2] = ACTIONS(1773), + [anon_sym_SLASH_SLASH2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_bit_DASHshl2] = ACTIONS(1773), + [anon_sym_bit_DASHshr2] = ACTIONS(1773), + [anon_sym_bit_DASHand2] = ACTIONS(1773), + [anon_sym_bit_DASHxor2] = ACTIONS(1773), + [anon_sym_bit_DASHor2] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), }, - [1682] = { - [sym_comment] = STATE(1682), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_GT2] = ACTIONS(1777), + [1696] = { + [sym_cell_path] = STATE(2189), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1696), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_err_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_GT_PIPE] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_GT2] = ACTIONS(1953), + [anon_sym_DASH2] = ACTIONS(1955), + [anon_sym_in2] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_EQ_GT] = ACTIONS(1955), + [anon_sym_STAR2] = ACTIONS(1953), + [anon_sym_and2] = ACTIONS(1955), + [anon_sym_xor2] = ACTIONS(1955), + [anon_sym_or2] = ACTIONS(1955), + [anon_sym_not_DASHin2] = ACTIONS(1955), + [anon_sym_starts_DASHwith2] = ACTIONS(1955), + [anon_sym_ends_DASHwith2] = ACTIONS(1955), + [anon_sym_EQ_EQ2] = ACTIONS(1955), + [anon_sym_BANG_EQ2] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1953), + [anon_sym_LT_EQ2] = ACTIONS(1955), + [anon_sym_GT_EQ2] = ACTIONS(1955), + [anon_sym_EQ_TILDE2] = ACTIONS(1955), + [anon_sym_BANG_TILDE2] = ACTIONS(1955), + [anon_sym_STAR_STAR2] = ACTIONS(1955), + [anon_sym_PLUS_PLUS2] = ACTIONS(1955), + [anon_sym_SLASH2] = ACTIONS(1953), + [anon_sym_mod2] = ACTIONS(1955), + [anon_sym_SLASH_SLASH2] = ACTIONS(1955), + [anon_sym_PLUS2] = ACTIONS(1953), + [anon_sym_bit_DASHshl2] = ACTIONS(1955), + [anon_sym_bit_DASHshr2] = ACTIONS(1955), + [anon_sym_bit_DASHand2] = ACTIONS(1955), + [anon_sym_bit_DASHxor2] = ACTIONS(1955), + [anon_sym_bit_DASHor2] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1953), + [anon_sym_out_GT] = ACTIONS(1953), + [anon_sym_e_GT] = ACTIONS(1953), + [anon_sym_o_GT] = ACTIONS(1953), + [anon_sym_err_PLUSout_GT] = ACTIONS(1953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), + [anon_sym_o_PLUSe_GT] = ACTIONS(1953), + [anon_sym_e_PLUSo_GT] = ACTIONS(1953), + [anon_sym_err_GT_GT] = ACTIONS(1955), + [anon_sym_out_GT_GT] = ACTIONS(1955), + [anon_sym_e_GT_GT] = ACTIONS(1955), + [anon_sym_o_GT_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(251), + }, + [1697] = { + [sym_comment] = STATE(1697), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_RBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_LT] = ACTIONS(1034), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1034), + [anon_sym_out_GT_GT] = ACTIONS(1034), + [anon_sym_e_GT_GT] = ACTIONS(1034), + [anon_sym_o_GT_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1034), + [aux_sym_unquoted_token1] = ACTIONS(1034), + [aux_sym_unquoted_token4] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1036), + }, + [1698] = { + [sym_comment] = STATE(1698), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym__newline] = ACTIONS(2258), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_err_GT_PIPE] = ACTIONS(2258), + [anon_sym_out_GT_PIPE] = ACTIONS(2258), + [anon_sym_e_GT_PIPE] = ACTIONS(2258), + [anon_sym_o_GT_PIPE] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2256), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), + [anon_sym_DOT_DOT_LT] = ACTIONS(2254), + [anon_sym_null] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_0b] = ACTIONS(2254), + [anon_sym_0o] = ACTIONS(2254), + [anon_sym_0x] = ACTIONS(2254), + [sym_val_date] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym__str_single_quotes] = ACTIONS(2258), + [sym__str_back_ticks] = ACTIONS(2258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [aux_sym_unquoted_token1] = ACTIONS(2254), + [aux_sym_unquoted_token4] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2258), + }, + [1699] = { + [sym_comment] = STATE(1699), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_GT2] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1801), + [anon_sym_in2] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_STAR2] = ACTIONS(1799), + [anon_sym_and2] = ACTIONS(1801), + [anon_sym_xor2] = ACTIONS(1801), + [anon_sym_or2] = ACTIONS(1801), + [anon_sym_not_DASHin2] = ACTIONS(1801), + [anon_sym_starts_DASHwith2] = ACTIONS(1801), + [anon_sym_ends_DASHwith2] = ACTIONS(1801), + [anon_sym_EQ_EQ2] = ACTIONS(1801), + [anon_sym_BANG_EQ2] = ACTIONS(1801), + [anon_sym_LT2] = ACTIONS(1799), + [anon_sym_LT_EQ2] = ACTIONS(1801), + [anon_sym_GT_EQ2] = ACTIONS(1801), + [anon_sym_EQ_TILDE2] = ACTIONS(1801), + [anon_sym_BANG_TILDE2] = ACTIONS(1801), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_STAR_STAR2] = ACTIONS(1801), + [anon_sym_PLUS_PLUS2] = ACTIONS(1801), + [anon_sym_SLASH2] = ACTIONS(1799), + [anon_sym_mod2] = ACTIONS(1801), + [anon_sym_SLASH_SLASH2] = ACTIONS(1801), + [anon_sym_PLUS2] = ACTIONS(1799), + [anon_sym_bit_DASHshl2] = ACTIONS(1801), + [anon_sym_bit_DASHshr2] = ACTIONS(1801), + [anon_sym_bit_DASHand2] = ACTIONS(1801), + [anon_sym_bit_DASHxor2] = ACTIONS(1801), + [anon_sym_bit_DASHor2] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + }, + [1700] = { + [sym_comment] = STATE(1700), + [ts_builtin_sym_end] = ACTIONS(1036), + [sym__newline] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_err_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_GT_PIPE] = ACTIONS(1036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), + [anon_sym_LBRACK] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_DASH2] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1036), + [anon_sym_DOT_DOT] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_DOT_DOT_LT] = ACTIONS(1034), + [anon_sym_null] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1034), + [anon_sym_false] = ACTIONS(1034), + [aux_sym__val_number_decimal_token1] = ACTIONS(1034), + [aux_sym__val_number_decimal_token2] = ACTIONS(1034), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1034), + [aux_sym__val_number_token1] = ACTIONS(1034), + [aux_sym__val_number_token2] = ACTIONS(1034), + [aux_sym__val_number_token3] = ACTIONS(1034), + [aux_sym__val_number_token4] = ACTIONS(1034), + [aux_sym__val_number_token5] = ACTIONS(1034), + [aux_sym__val_number_token6] = ACTIONS(1034), + [anon_sym_0b] = ACTIONS(1034), + [anon_sym_0o] = ACTIONS(1034), + [anon_sym_0x] = ACTIONS(1034), + [sym_val_date] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym__str_single_quotes] = ACTIONS(1036), + [sym__str_back_ticks] = ACTIONS(1036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), + [anon_sym_err_GT] = ACTIONS(1034), + [anon_sym_out_GT] = ACTIONS(1034), + [anon_sym_e_GT] = ACTIONS(1034), + [anon_sym_o_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT] = ACTIONS(1034), + [anon_sym_err_GT_GT] = ACTIONS(1034), + [anon_sym_out_GT_GT] = ACTIONS(1034), + [anon_sym_e_GT_GT] = ACTIONS(1034), + [anon_sym_o_GT_GT] = ACTIONS(1034), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1034), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1034), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1034), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1034), + [aux_sym_unquoted_token1] = ACTIONS(1034), + [aux_sym_unquoted_token4] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1036), + }, + [1701] = { + [sym_comment] = STATE(1701), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1820), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1820), + [anon_sym_xor2] = ACTIONS(1820), + [anon_sym_or2] = ACTIONS(1820), + [anon_sym_not_DASHin2] = ACTIONS(1820), + [anon_sym_starts_DASHwith2] = ACTIONS(1820), + [anon_sym_ends_DASHwith2] = ACTIONS(1820), + [anon_sym_EQ_EQ2] = ACTIONS(1820), + [anon_sym_BANG_EQ2] = ACTIONS(1820), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1820), + [anon_sym_GT_EQ2] = ACTIONS(1820), + [anon_sym_EQ_TILDE2] = ACTIONS(1820), + [anon_sym_BANG_TILDE2] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_STAR_STAR2] = ACTIONS(1820), + [anon_sym_PLUS_PLUS2] = ACTIONS(1820), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1820), + [anon_sym_SLASH_SLASH2] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1820), + [anon_sym_bit_DASHshr2] = ACTIONS(1820), + [anon_sym_bit_DASHand2] = ACTIONS(1820), + [anon_sym_bit_DASHxor2] = ACTIONS(1820), + [anon_sym_bit_DASHor2] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + }, + [1702] = { + [sym_comment] = STATE(1702), + [sym__newline] = ACTIONS(2258), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_err_GT_PIPE] = ACTIONS(2258), + [anon_sym_out_GT_PIPE] = ACTIONS(2258), + [anon_sym_e_GT_PIPE] = ACTIONS(2258), + [anon_sym_o_GT_PIPE] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_RPAREN] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), + [anon_sym_DOT_DOT_LT] = ACTIONS(2254), + [anon_sym_null] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_0b] = ACTIONS(2254), + [anon_sym_0o] = ACTIONS(2254), + [anon_sym_0x] = ACTIONS(2254), + [sym_val_date] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym__str_single_quotes] = ACTIONS(2258), + [sym__str_back_ticks] = ACTIONS(2258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [aux_sym_unquoted_token1] = ACTIONS(2254), + [aux_sym_unquoted_token4] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2258), + }, + [1703] = { + [sym_comment] = STATE(1703), + [sym__newline] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_err_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_GT_PIPE] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_RPAREN] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2272), + [anon_sym_DOT_DOT_LT] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [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(2272), + [aux_sym__val_number_token5] = ACTIONS(2272), + [aux_sym__val_number_token6] = ACTIONS(2272), + [anon_sym_0b] = ACTIONS(2272), + [anon_sym_0o] = ACTIONS(2272), + [anon_sym_0x] = ACTIONS(2272), + [sym_val_date] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym__str_single_quotes] = ACTIONS(2274), + [sym__str_back_ticks] = ACTIONS(2274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2274), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [aux_sym_unquoted_token1] = ACTIONS(2272), + [aux_sym_unquoted_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2274), + }, + [1704] = { + [sym_comment] = STATE(1704), + [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(2238), + [anon_sym_RPAREN] = ACTIONS(2238), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_DOT_DOT] = ACTIONS(2234), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), + [anon_sym_DOT_DOT_LT] = ACTIONS(2234), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2234), + [aux_sym__val_number_token5] = ACTIONS(2234), + [aux_sym__val_number_token6] = ACTIONS(2234), + [anon_sym_0b] = ACTIONS(2234), + [anon_sym_0o] = ACTIONS(2234), + [anon_sym_0x] = ACTIONS(2234), + [sym_val_date] = ACTIONS(2234), + [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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [aux_sym_unquoted_token1] = ACTIONS(2234), + [aux_sym_unquoted_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2238), + }, + [1705] = { + [sym_comment] = STATE(1705), + [sym__newline] = ACTIONS(5112), + [anon_sym_SEMI] = ACTIONS(5112), + [anon_sym_PIPE] = ACTIONS(5112), + [anon_sym_err_GT_PIPE] = ACTIONS(5112), + [anon_sym_out_GT_PIPE] = ACTIONS(5112), + [anon_sym_e_GT_PIPE] = ACTIONS(5112), + [anon_sym_o_GT_PIPE] = ACTIONS(5112), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5112), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5112), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5112), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_DOLLAR] = ACTIONS(5114), + [anon_sym_DASH_DASH] = ACTIONS(5112), + [anon_sym_DASH2] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_DOT_DOT] = ACTIONS(5114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5112), + [anon_sym_DOT_DOT_LT] = ACTIONS(5112), + [anon_sym_null] = ACTIONS(5112), + [anon_sym_true] = ACTIONS(5112), + [anon_sym_false] = ACTIONS(5112), + [aux_sym__val_number_decimal_token1] = ACTIONS(5114), + [aux_sym__val_number_decimal_token2] = ACTIONS(5112), + [aux_sym__val_number_decimal_token3] = ACTIONS(5112), + [aux_sym__val_number_decimal_token4] = ACTIONS(5112), + [aux_sym__val_number_token1] = ACTIONS(5112), + [aux_sym__val_number_token2] = ACTIONS(5112), + [aux_sym__val_number_token3] = ACTIONS(5112), + [aux_sym__val_number_token4] = ACTIONS(5112), + [aux_sym__val_number_token5] = ACTIONS(5112), + [aux_sym__val_number_token6] = ACTIONS(5112), + [anon_sym_0b] = ACTIONS(5114), + [anon_sym_0o] = ACTIONS(5114), + [anon_sym_0x] = ACTIONS(5114), + [sym_val_date] = ACTIONS(5112), + [anon_sym_DQUOTE] = ACTIONS(5112), + [sym__str_single_quotes] = ACTIONS(5112), + [sym__str_back_ticks] = ACTIONS(5112), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5112), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5112), + [anon_sym_err_GT] = ACTIONS(5114), + [anon_sym_out_GT] = ACTIONS(5114), + [anon_sym_e_GT] = ACTIONS(5114), + [anon_sym_o_GT] = ACTIONS(5114), + [anon_sym_err_PLUSout_GT] = ACTIONS(5114), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5114), + [anon_sym_o_PLUSe_GT] = ACTIONS(5114), + [anon_sym_e_PLUSo_GT] = ACTIONS(5114), + [anon_sym_err_GT_GT] = ACTIONS(5112), + [anon_sym_out_GT_GT] = ACTIONS(5112), + [anon_sym_e_GT_GT] = ACTIONS(5112), + [anon_sym_o_GT_GT] = ACTIONS(5112), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5112), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5112), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5112), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5112), + [anon_sym_EQ2] = ACTIONS(5116), + [aux_sym_unquoted_token1] = ACTIONS(5114), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5112), + }, + [1706] = { + [sym_comment] = STATE(1706), + [sym__newline] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_RPAREN] = ACTIONS(2244), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DASH2] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT] = ACTIONS(2242), + [anon_sym_null] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2242), + [aux_sym__val_number_token5] = ACTIONS(2242), + [aux_sym__val_number_token6] = ACTIONS(2242), + [anon_sym_0b] = ACTIONS(2242), + [anon_sym_0o] = ACTIONS(2242), + [anon_sym_0x] = ACTIONS(2242), + [sym_val_date] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2244), + [sym__str_single_quotes] = ACTIONS(2244), + [sym__str_back_ticks] = ACTIONS(2244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2244), + [anon_sym_err_GT] = ACTIONS(2242), + [anon_sym_out_GT] = ACTIONS(2242), + [anon_sym_e_GT] = ACTIONS(2242), + [anon_sym_o_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT] = ACTIONS(2242), + [anon_sym_err_GT_GT] = ACTIONS(2242), + [anon_sym_out_GT_GT] = ACTIONS(2242), + [anon_sym_e_GT_GT] = ACTIONS(2242), + [anon_sym_o_GT_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [aux_sym_unquoted_token1] = ACTIONS(2242), + [aux_sym_unquoted_token4] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2244), + }, + [1707] = { + [sym__expr_parenthesized_immediate] = STATE(8466), + [sym_comment] = STATE(1707), + [ts_builtin_sym_end] = ACTIONS(4992), + [sym__newline] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4992), + [anon_sym_PIPE] = ACTIONS(4992), + [anon_sym_err_GT_PIPE] = ACTIONS(4992), + [anon_sym_out_GT_PIPE] = ACTIONS(4992), + [anon_sym_e_GT_PIPE] = ACTIONS(4992), + [anon_sym_o_GT_PIPE] = ACTIONS(4992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4992), + [anon_sym_LBRACK] = ACTIONS(4992), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_DOLLAR] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4992), + [anon_sym_DASH2] = ACTIONS(4994), + [anon_sym_LBRACE] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), + [anon_sym_DOT_DOT_LT] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [aux_sym__val_number_decimal_token1] = ACTIONS(4994), + [aux_sym__val_number_decimal_token2] = ACTIONS(4992), + [aux_sym__val_number_decimal_token3] = ACTIONS(4992), + [aux_sym__val_number_decimal_token4] = ACTIONS(4992), + [aux_sym__val_number_token1] = ACTIONS(4992), + [aux_sym__val_number_token2] = ACTIONS(4992), + [aux_sym__val_number_token3] = ACTIONS(4992), + [aux_sym__val_number_token4] = ACTIONS(4992), + [aux_sym__val_number_token5] = ACTIONS(4992), + [aux_sym__val_number_token6] = ACTIONS(4992), + [anon_sym_0b] = ACTIONS(4994), + [anon_sym_0o] = ACTIONS(4994), + [anon_sym_0x] = ACTIONS(4994), + [sym_val_date] = ACTIONS(4992), + [anon_sym_DQUOTE] = ACTIONS(4992), + [sym__str_single_quotes] = ACTIONS(4992), + [sym__str_back_ticks] = ACTIONS(4992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4992), + [anon_sym_err_GT] = ACTIONS(4994), + [anon_sym_out_GT] = ACTIONS(4994), + [anon_sym_e_GT] = ACTIONS(4994), + [anon_sym_o_GT] = ACTIONS(4994), + [anon_sym_err_PLUSout_GT] = ACTIONS(4994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4994), + [anon_sym_o_PLUSe_GT] = ACTIONS(4994), + [anon_sym_e_PLUSo_GT] = ACTIONS(4994), + [anon_sym_err_GT_GT] = ACTIONS(4992), + [anon_sym_out_GT_GT] = ACTIONS(4992), + [anon_sym_e_GT_GT] = ACTIONS(4992), + [anon_sym_o_GT_GT] = ACTIONS(4992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4992), + [aux_sym_unquoted_token1] = ACTIONS(4994), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4992), + }, + [1708] = { + [sym__expr_parenthesized_immediate] = STATE(8466), + [sym_comment] = STATE(1708), + [ts_builtin_sym_end] = ACTIONS(5004), + [sym__newline] = ACTIONS(5004), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5004), + [anon_sym_err_GT_PIPE] = ACTIONS(5004), + [anon_sym_out_GT_PIPE] = ACTIONS(5004), + [anon_sym_e_GT_PIPE] = ACTIONS(5004), + [anon_sym_o_GT_PIPE] = ACTIONS(5004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5004), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_LPAREN] = ACTIONS(5006), + [anon_sym_DOLLAR] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5004), + [anon_sym_DASH2] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5004), + [anon_sym_DOT_DOT] = ACTIONS(5006), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5004), + [anon_sym_DOT_DOT_LT] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), + [anon_sym_true] = ACTIONS(5004), + [anon_sym_false] = ACTIONS(5004), + [aux_sym__val_number_decimal_token1] = ACTIONS(5006), + [aux_sym__val_number_decimal_token2] = ACTIONS(5004), + [aux_sym__val_number_decimal_token3] = ACTIONS(5004), + [aux_sym__val_number_decimal_token4] = ACTIONS(5004), + [aux_sym__val_number_token1] = ACTIONS(5004), + [aux_sym__val_number_token2] = ACTIONS(5004), + [aux_sym__val_number_token3] = ACTIONS(5004), + [aux_sym__val_number_token4] = ACTIONS(5004), + [aux_sym__val_number_token5] = ACTIONS(5004), + [aux_sym__val_number_token6] = ACTIONS(5004), + [anon_sym_0b] = ACTIONS(5006), + [anon_sym_0o] = ACTIONS(5006), + [anon_sym_0x] = ACTIONS(5006), + [sym_val_date] = ACTIONS(5004), + [anon_sym_DQUOTE] = ACTIONS(5004), + [sym__str_single_quotes] = ACTIONS(5004), + [sym__str_back_ticks] = ACTIONS(5004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5004), + [anon_sym_err_GT] = ACTIONS(5006), + [anon_sym_out_GT] = ACTIONS(5006), + [anon_sym_e_GT] = ACTIONS(5006), + [anon_sym_o_GT] = ACTIONS(5006), + [anon_sym_err_PLUSout_GT] = ACTIONS(5006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5006), + [anon_sym_o_PLUSe_GT] = ACTIONS(5006), + [anon_sym_e_PLUSo_GT] = ACTIONS(5006), + [anon_sym_err_GT_GT] = ACTIONS(5004), + [anon_sym_out_GT_GT] = ACTIONS(5004), + [anon_sym_e_GT_GT] = ACTIONS(5004), + [anon_sym_o_GT_GT] = ACTIONS(5004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5004), + [aux_sym_unquoted_token1] = ACTIONS(5006), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5004), + }, + [1709] = { + [sym_comment] = STATE(1709), + [ts_builtin_sym_end] = ACTIONS(2274), + [sym__newline] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_err_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_GT_PIPE] = ACTIONS(2274), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2272), + [anon_sym_DOT_DOT_LT] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [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(2272), + [aux_sym__val_number_token5] = ACTIONS(2272), + [aux_sym__val_number_token6] = ACTIONS(2272), + [anon_sym_0b] = ACTIONS(2272), + [anon_sym_0o] = ACTIONS(2272), + [anon_sym_0x] = ACTIONS(2272), + [sym_val_date] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2274), + [sym__str_single_quotes] = ACTIONS(2274), + [sym__str_back_ticks] = ACTIONS(2274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2274), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2272), + [anon_sym_out_GT_GT] = ACTIONS(2272), + [anon_sym_e_GT_GT] = ACTIONS(2272), + [anon_sym_o_GT_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [aux_sym_unquoted_token1] = ACTIONS(2272), + [aux_sym_unquoted_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2274), + }, + [1710] = { + [sym_comment] = STATE(1710), + [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_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1671), + [anon_sym_in2] = ACTIONS(1671), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1671), + [anon_sym_xor2] = ACTIONS(1671), + [anon_sym_or2] = ACTIONS(1671), + [anon_sym_not_DASHin2] = ACTIONS(1671), + [anon_sym_starts_DASHwith2] = ACTIONS(1671), + [anon_sym_ends_DASHwith2] = ACTIONS(1671), + [anon_sym_EQ_EQ2] = ACTIONS(1671), + [anon_sym_BANG_EQ2] = ACTIONS(1671), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1671), + [anon_sym_GT_EQ2] = ACTIONS(1671), + [anon_sym_EQ_TILDE2] = ACTIONS(1671), + [anon_sym_BANG_TILDE2] = ACTIONS(1671), + [anon_sym_LPAREN2] = ACTIONS(1671), + [anon_sym_STAR_STAR2] = ACTIONS(1671), + [anon_sym_PLUS_PLUS2] = ACTIONS(1671), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1671), + [anon_sym_SLASH_SLASH2] = ACTIONS(1671), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1671), + [anon_sym_bit_DASHshr2] = ACTIONS(1671), + [anon_sym_bit_DASHand2] = ACTIONS(1671), + [anon_sym_bit_DASHxor2] = ACTIONS(1671), + [anon_sym_bit_DASHor2] = ACTIONS(1671), + [anon_sym_DOT_DOT2] = ACTIONS(1669), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), + [sym_filesize_unit] = ACTIONS(1669), + [sym_duration_unit] = ACTIONS(1671), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(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_token2] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(251), + }, + [1711] = { + [sym_comment] = STATE(1711), + [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(2234), + [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(2234), + [anon_sym_DOT_DOT_LT] = ACTIONS(2234), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2234), + [aux_sym__val_number_token5] = ACTIONS(2234), + [aux_sym__val_number_token6] = ACTIONS(2234), + [anon_sym_0b] = ACTIONS(2234), + [anon_sym_0o] = ACTIONS(2234), + [anon_sym_0x] = ACTIONS(2234), + [sym_val_date] = ACTIONS(2234), + [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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [aux_sym_unquoted_token1] = ACTIONS(2234), + [aux_sym_unquoted_token4] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2238), + }, + [1712] = { + [sym_cell_path] = STATE(2266), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1712), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_err_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_GT_PIPE] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_GT2] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1959), + [anon_sym_in2] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_EQ_GT] = ACTIONS(1959), + [anon_sym_STAR2] = ACTIONS(1957), + [anon_sym_and2] = ACTIONS(1959), + [anon_sym_xor2] = ACTIONS(1959), + [anon_sym_or2] = ACTIONS(1959), + [anon_sym_not_DASHin2] = ACTIONS(1959), + [anon_sym_starts_DASHwith2] = ACTIONS(1959), + [anon_sym_ends_DASHwith2] = ACTIONS(1959), + [anon_sym_EQ_EQ2] = ACTIONS(1959), + [anon_sym_BANG_EQ2] = ACTIONS(1959), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LT_EQ2] = ACTIONS(1959), + [anon_sym_GT_EQ2] = ACTIONS(1959), + [anon_sym_EQ_TILDE2] = ACTIONS(1959), + [anon_sym_BANG_TILDE2] = ACTIONS(1959), + [anon_sym_STAR_STAR2] = ACTIONS(1959), + [anon_sym_PLUS_PLUS2] = ACTIONS(1959), + [anon_sym_SLASH2] = ACTIONS(1957), + [anon_sym_mod2] = ACTIONS(1959), + [anon_sym_SLASH_SLASH2] = ACTIONS(1959), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_bit_DASHshl2] = ACTIONS(1959), + [anon_sym_bit_DASHshr2] = ACTIONS(1959), + [anon_sym_bit_DASHand2] = ACTIONS(1959), + [anon_sym_bit_DASHxor2] = ACTIONS(1959), + [anon_sym_bit_DASHor2] = ACTIONS(1959), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1959), + [anon_sym_out_GT_GT] = ACTIONS(1959), + [anon_sym_e_GT_GT] = ACTIONS(1959), + [anon_sym_o_GT_GT] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(251), + }, + [1713] = { + [sym_comment] = STATE(1713), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_EQ_GT] = ACTIONS(1779), - [anon_sym_STAR2] = ACTIONS(1777), - [anon_sym_and2] = ACTIONS(1779), - [anon_sym_xor2] = ACTIONS(1779), - [anon_sym_or2] = ACTIONS(1779), - [anon_sym_not_DASHin2] = ACTIONS(1779), - [anon_sym_starts_DASHwith2] = ACTIONS(1779), - [anon_sym_ends_DASHwith2] = ACTIONS(1779), - [anon_sym_EQ_EQ2] = ACTIONS(1779), - [anon_sym_BANG_EQ2] = ACTIONS(1779), - [anon_sym_LT2] = ACTIONS(1777), - [anon_sym_LT_EQ2] = ACTIONS(1779), - [anon_sym_GT_EQ2] = ACTIONS(1779), - [anon_sym_EQ_TILDE2] = ACTIONS(1779), - [anon_sym_BANG_TILDE2] = ACTIONS(1779), - [anon_sym_STAR_STAR2] = ACTIONS(1779), - [anon_sym_PLUS_PLUS2] = ACTIONS(1779), - [anon_sym_SLASH2] = ACTIONS(1777), - [anon_sym_mod2] = ACTIONS(1779), - [anon_sym_SLASH_SLASH2] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1777), - [anon_sym_bit_DASHshl2] = ACTIONS(1779), - [anon_sym_bit_DASHshr2] = ACTIONS(1779), - [anon_sym_bit_DASHand2] = ACTIONS(1779), - [anon_sym_bit_DASHxor2] = ACTIONS(1779), - [anon_sym_bit_DASHor2] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [aux_sym_unquoted_token2] = ACTIONS(1779), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), }, - [1683] = { - [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_LPAREN2] = ACTIONS(1795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT] = ACTIONS(1795), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [aux_sym_unquoted_token2] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), + [1714] = { + [sym_comment] = STATE(1714), + [ts_builtin_sym_end] = ACTIONS(1663), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1661), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1661), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1661), + [anon_sym_LT_EQ2] = ACTIONS(1663), + [anon_sym_GT_EQ2] = ACTIONS(1663), + [anon_sym_EQ_TILDE2] = ACTIONS(1663), + [anon_sym_BANG_TILDE2] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1663), + [anon_sym_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1661), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1661), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(1661), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1661), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_err_GT] = ACTIONS(1661), + [anon_sym_out_GT] = ACTIONS(1661), + [anon_sym_e_GT] = ACTIONS(1661), + [anon_sym_o_GT] = ACTIONS(1661), + [anon_sym_err_PLUSout_GT] = ACTIONS(1661), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), + [anon_sym_o_PLUSe_GT] = ACTIONS(1661), + [anon_sym_e_PLUSo_GT] = ACTIONS(1661), + [anon_sym_err_GT_GT] = ACTIONS(1663), + [anon_sym_out_GT_GT] = ACTIONS(1663), + [anon_sym_e_GT_GT] = ACTIONS(1663), + [anon_sym_o_GT_GT] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(251), }, - [1684] = { - [sym_comment] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym__newline] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_err_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_GT_PIPE] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1747), - [anon_sym_GT2] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1747), - [anon_sym_in2] = ACTIONS(1747), - [anon_sym_STAR2] = ACTIONS(1745), - [anon_sym_and2] = ACTIONS(1747), - [anon_sym_xor2] = ACTIONS(1747), - [anon_sym_or2] = ACTIONS(1747), - [anon_sym_not_DASHin2] = ACTIONS(1747), - [anon_sym_starts_DASHwith2] = ACTIONS(1747), - [anon_sym_ends_DASHwith2] = ACTIONS(1747), - [anon_sym_EQ_EQ2] = ACTIONS(1747), - [anon_sym_BANG_EQ2] = ACTIONS(1747), - [anon_sym_LT2] = ACTIONS(1745), - [anon_sym_LT_EQ2] = ACTIONS(1747), - [anon_sym_GT_EQ2] = ACTIONS(1747), - [anon_sym_EQ_TILDE2] = ACTIONS(1747), - [anon_sym_BANG_TILDE2] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(1747), - [anon_sym_STAR_STAR2] = ACTIONS(1747), - [anon_sym_PLUS_PLUS2] = ACTIONS(1747), - [anon_sym_SLASH2] = ACTIONS(1745), - [anon_sym_mod2] = ACTIONS(1747), - [anon_sym_SLASH_SLASH2] = ACTIONS(1747), - [anon_sym_PLUS2] = ACTIONS(1745), - [anon_sym_bit_DASHshl2] = ACTIONS(1747), - [anon_sym_bit_DASHshr2] = ACTIONS(1747), - [anon_sym_bit_DASHand2] = ACTIONS(1747), - [anon_sym_bit_DASHxor2] = ACTIONS(1747), - [anon_sym_bit_DASHor2] = ACTIONS(1747), - [anon_sym_DOT_DOT2] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1747), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1747), - [sym_filesize_unit] = ACTIONS(1745), - [sym_duration_unit] = ACTIONS(1747), - [anon_sym_err_GT] = ACTIONS(1745), - [anon_sym_out_GT] = ACTIONS(1745), - [anon_sym_e_GT] = ACTIONS(1745), - [anon_sym_o_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT] = ACTIONS(1745), - [anon_sym_err_GT_GT] = ACTIONS(1747), - [anon_sym_out_GT_GT] = ACTIONS(1747), - [anon_sym_e_GT_GT] = ACTIONS(1747), - [anon_sym_o_GT_GT] = ACTIONS(1747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1747), - [aux_sym_unquoted_token2] = ACTIONS(1745), + [1715] = { + [sym_cell_path] = STATE(2174), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1715), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_GT2] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1947), + [anon_sym_in2] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(1947), + [anon_sym_STAR2] = ACTIONS(1945), + [anon_sym_and2] = ACTIONS(1947), + [anon_sym_xor2] = ACTIONS(1947), + [anon_sym_or2] = ACTIONS(1947), + [anon_sym_not_DASHin2] = ACTIONS(1947), + [anon_sym_starts_DASHwith2] = ACTIONS(1947), + [anon_sym_ends_DASHwith2] = ACTIONS(1947), + [anon_sym_EQ_EQ2] = ACTIONS(1947), + [anon_sym_BANG_EQ2] = ACTIONS(1947), + [anon_sym_LT2] = ACTIONS(1945), + [anon_sym_LT_EQ2] = ACTIONS(1947), + [anon_sym_GT_EQ2] = ACTIONS(1947), + [anon_sym_EQ_TILDE2] = ACTIONS(1947), + [anon_sym_BANG_TILDE2] = ACTIONS(1947), + [anon_sym_STAR_STAR2] = ACTIONS(1947), + [anon_sym_PLUS_PLUS2] = ACTIONS(1947), + [anon_sym_SLASH2] = ACTIONS(1945), + [anon_sym_mod2] = ACTIONS(1947), + [anon_sym_SLASH_SLASH2] = ACTIONS(1947), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_bit_DASHshl2] = ACTIONS(1947), + [anon_sym_bit_DASHshr2] = ACTIONS(1947), + [anon_sym_bit_DASHand2] = ACTIONS(1947), + [anon_sym_bit_DASHxor2] = ACTIONS(1947), + [anon_sym_bit_DASHor2] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), [anon_sym_POUND] = ACTIONS(251), }, - [1685] = { - [sym_comment] = STATE(1685), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1010), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [1716] = { + [sym_comment] = STATE(1716), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [1686] = { - [sym_comment] = STATE(1686), + [1717] = { + [sym_comment] = STATE(1717), + [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_GT2] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1713), + [anon_sym_in2] = ACTIONS(1713), + [anon_sym_STAR2] = ACTIONS(1711), + [anon_sym_and2] = ACTIONS(1713), + [anon_sym_xor2] = ACTIONS(1713), + [anon_sym_or2] = ACTIONS(1713), + [anon_sym_not_DASHin2] = ACTIONS(1713), + [anon_sym_starts_DASHwith2] = ACTIONS(1713), + [anon_sym_ends_DASHwith2] = ACTIONS(1713), + [anon_sym_EQ_EQ2] = ACTIONS(1713), + [anon_sym_BANG_EQ2] = ACTIONS(1713), + [anon_sym_LT2] = ACTIONS(1711), + [anon_sym_LT_EQ2] = ACTIONS(1713), + [anon_sym_GT_EQ2] = ACTIONS(1713), + [anon_sym_EQ_TILDE2] = ACTIONS(1713), + [anon_sym_BANG_TILDE2] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_STAR_STAR2] = ACTIONS(1713), + [anon_sym_PLUS_PLUS2] = ACTIONS(1713), + [anon_sym_SLASH2] = ACTIONS(1711), + [anon_sym_mod2] = ACTIONS(1713), + [anon_sym_SLASH_SLASH2] = ACTIONS(1713), + [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_bit_DASHshl2] = ACTIONS(1713), + [anon_sym_bit_DASHshr2] = ACTIONS(1713), + [anon_sym_bit_DASHand2] = ACTIONS(1713), + [anon_sym_bit_DASHxor2] = ACTIONS(1713), + [anon_sym_bit_DASHor2] = 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(1711), + [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(251), + }, + [1718] = { + [sym__expr_parenthesized_immediate] = STATE(8149), + [sym_comment] = STATE(1718), + [sym__newline] = ACTIONS(5118), + [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_err_GT_PIPE] = ACTIONS(5118), + [anon_sym_out_GT_PIPE] = ACTIONS(5118), + [anon_sym_e_GT_PIPE] = ACTIONS(5118), + [anon_sym_o_GT_PIPE] = ACTIONS(5118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_DOLLAR] = ACTIONS(5120), + [anon_sym_DASH_DASH] = ACTIONS(5118), + [anon_sym_DASH2] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(5118), + [anon_sym_DOT_DOT] = ACTIONS(5120), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5118), + [anon_sym_DOT_DOT_LT] = ACTIONS(5118), + [anon_sym_null] = ACTIONS(5118), + [anon_sym_true] = ACTIONS(5118), + [anon_sym_false] = ACTIONS(5118), + [aux_sym__val_number_decimal_token1] = ACTIONS(5120), + [aux_sym__val_number_decimal_token2] = ACTIONS(5118), + [aux_sym__val_number_decimal_token3] = ACTIONS(5118), + [aux_sym__val_number_decimal_token4] = ACTIONS(5118), + [aux_sym__val_number_token1] = ACTIONS(5118), + [aux_sym__val_number_token2] = ACTIONS(5118), + [aux_sym__val_number_token3] = ACTIONS(5118), + [aux_sym__val_number_token4] = ACTIONS(5118), + [aux_sym__val_number_token5] = ACTIONS(5118), + [aux_sym__val_number_token6] = ACTIONS(5118), + [anon_sym_0b] = ACTIONS(5120), + [anon_sym_0o] = ACTIONS(5120), + [anon_sym_0x] = ACTIONS(5120), + [sym_val_date] = ACTIONS(5118), + [anon_sym_DQUOTE] = ACTIONS(5118), + [sym__str_single_quotes] = ACTIONS(5118), + [sym__str_back_ticks] = ACTIONS(5118), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5118), + [anon_sym_err_GT] = ACTIONS(5120), + [anon_sym_out_GT] = ACTIONS(5120), + [anon_sym_e_GT] = ACTIONS(5120), + [anon_sym_o_GT] = ACTIONS(5120), + [anon_sym_err_PLUSout_GT] = ACTIONS(5120), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5120), + [anon_sym_o_PLUSe_GT] = ACTIONS(5120), + [anon_sym_e_PLUSo_GT] = ACTIONS(5120), + [anon_sym_err_GT_GT] = ACTIONS(5118), + [anon_sym_out_GT_GT] = ACTIONS(5118), + [anon_sym_e_GT_GT] = ACTIONS(5118), + [anon_sym_o_GT_GT] = ACTIONS(5118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5118), + [aux_sym_unquoted_token1] = ACTIONS(5120), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5118), + }, + [1719] = { + [sym_comment] = STATE(1719), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_DASH2] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(5021), + [anon_sym_null] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym__val_number_decimal_token1] = ACTIONS(1779), + [aux_sym__val_number_decimal_token2] = ACTIONS(1781), + [aux_sym__val_number_decimal_token3] = ACTIONS(1781), + [aux_sym__val_number_decimal_token4] = ACTIONS(1781), + [aux_sym__val_number_token1] = ACTIONS(1781), + [aux_sym__val_number_token2] = ACTIONS(1781), + [aux_sym__val_number_token3] = ACTIONS(1781), + [aux_sym__val_number_token4] = ACTIONS(1781), + [aux_sym__val_number_token5] = ACTIONS(1781), + [aux_sym__val_number_token6] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1779), + [anon_sym_0o] = ACTIONS(1779), + [anon_sym_0x] = ACTIONS(1779), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token1] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1781), + }, + [1720] = { + [sym_comment] = STATE(1720), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym__newline] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_err_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_GT_PIPE] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1848), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1848), + [anon_sym_DOT_DOT_LT] = ACTIONS(1848), + [anon_sym_null] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [aux_sym__val_number_decimal_token1] = ACTIONS(1840), + [aux_sym__val_number_decimal_token2] = ACTIONS(1848), + [aux_sym__val_number_decimal_token3] = ACTIONS(1848), + [aux_sym__val_number_decimal_token4] = ACTIONS(1848), + [aux_sym__val_number_token1] = ACTIONS(1848), + [aux_sym__val_number_token2] = ACTIONS(1848), + [aux_sym__val_number_token3] = ACTIONS(1848), + [aux_sym__val_number_token4] = ACTIONS(1848), + [aux_sym__val_number_token5] = ACTIONS(1848), + [aux_sym__val_number_token6] = ACTIONS(1848), + [anon_sym_0b] = ACTIONS(1840), + [anon_sym_0o] = ACTIONS(1840), + [anon_sym_0x] = ACTIONS(1840), + [sym_val_date] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [sym__str_single_quotes] = ACTIONS(1848), + [sym__str_back_ticks] = ACTIONS(1848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(1848), + [anon_sym_out_GT_GT] = ACTIONS(1848), + [anon_sym_e_GT_GT] = ACTIONS(1848), + [anon_sym_o_GT_GT] = ACTIONS(1848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), + [aux_sym_unquoted_token1] = ACTIONS(1840), + [aux_sym_unquoted_token2] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1848), + }, + [1721] = { + [sym_comment] = STATE(1721), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(5122), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1722] = { + [sym_comment] = STATE(1722), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym__newline] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_err_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_GT_PIPE] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), + [anon_sym_GT2] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1769), + [anon_sym_in2] = ACTIONS(1769), + [anon_sym_STAR2] = ACTIONS(1767), + [anon_sym_and2] = ACTIONS(1769), + [anon_sym_xor2] = ACTIONS(1769), + [anon_sym_or2] = ACTIONS(1769), + [anon_sym_not_DASHin2] = ACTIONS(1769), + [anon_sym_starts_DASHwith2] = ACTIONS(1769), + [anon_sym_ends_DASHwith2] = ACTIONS(1769), + [anon_sym_EQ_EQ2] = ACTIONS(1769), + [anon_sym_BANG_EQ2] = ACTIONS(1769), + [anon_sym_LT2] = ACTIONS(1767), + [anon_sym_LT_EQ2] = ACTIONS(1769), + [anon_sym_GT_EQ2] = ACTIONS(1769), + [anon_sym_EQ_TILDE2] = ACTIONS(1769), + [anon_sym_BANG_TILDE2] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1769), + [anon_sym_STAR_STAR2] = ACTIONS(1769), + [anon_sym_PLUS_PLUS2] = ACTIONS(1769), + [anon_sym_SLASH2] = ACTIONS(1767), + [anon_sym_mod2] = ACTIONS(1769), + [anon_sym_SLASH_SLASH2] = ACTIONS(1769), + [anon_sym_PLUS2] = ACTIONS(1767), + [anon_sym_bit_DASHshl2] = ACTIONS(1769), + [anon_sym_bit_DASHshr2] = ACTIONS(1769), + [anon_sym_bit_DASHand2] = ACTIONS(1769), + [anon_sym_bit_DASHxor2] = ACTIONS(1769), + [anon_sym_bit_DASHor2] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), + [sym_filesize_unit] = ACTIONS(1767), + [sym_duration_unit] = ACTIONS(1769), + [anon_sym_err_GT] = ACTIONS(1767), + [anon_sym_out_GT] = ACTIONS(1767), + [anon_sym_e_GT] = ACTIONS(1767), + [anon_sym_o_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT] = ACTIONS(1767), + [anon_sym_err_GT_GT] = ACTIONS(1769), + [anon_sym_out_GT_GT] = ACTIONS(1769), + [anon_sym_e_GT_GT] = ACTIONS(1769), + [anon_sym_o_GT_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(251), + }, + [1723] = { + [sym_comment] = STATE(1723), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym__newline] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_err_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_GT_PIPE] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_LPAREN2] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_null] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1818), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_0b] = ACTIONS(1818), + [anon_sym_0o] = ACTIONS(1818), + [anon_sym_0x] = ACTIONS(1818), + [sym_val_date] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1820), + [anon_sym_out_GT_GT] = ACTIONS(1820), + [anon_sym_e_GT_GT] = ACTIONS(1820), + [anon_sym_o_GT_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), + [aux_sym_unquoted_token1] = ACTIONS(1818), + [aux_sym_unquoted_token2] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1820), + }, + [1724] = { + [sym_comment] = STATE(1724), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1000), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1000), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1000), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1000), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1000), + [anon_sym_out_GT] = ACTIONS(1000), + [anon_sym_e_GT] = ACTIONS(1000), + [anon_sym_o_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT] = ACTIONS(1000), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(251), + }, + [1725] = { + [sym_comment] = STATE(1725), [sym__newline] = ACTIONS(1006), [anon_sym_SEMI] = ACTIONS(1006), [anon_sym_PIPE] = ACTIONS(1006), @@ -236590,8 +241964,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(251), }, - [1687] = { - [sym_comment] = STATE(1687), + [1726] = { + [sym_comment] = STATE(1726), [sym__newline] = ACTIONS(998), [anon_sym_SEMI] = ACTIONS(998), [anon_sym_PIPE] = ACTIONS(998), @@ -236657,1619 +242031,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(251), }, - [1688] = { - [sym_comment] = STATE(1688), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - }, - [1689] = { - [sym__expr_parenthesized_immediate] = STATE(7966), - [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(5002), - [sym__newline] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5002), - [anon_sym_PIPE] = ACTIONS(5002), - [anon_sym_err_GT_PIPE] = ACTIONS(5002), - [anon_sym_out_GT_PIPE] = ACTIONS(5002), - [anon_sym_e_GT_PIPE] = ACTIONS(5002), - [anon_sym_o_GT_PIPE] = ACTIONS(5002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(5002), - [anon_sym_LPAREN] = ACTIONS(5004), - [anon_sym_DOLLAR] = ACTIONS(5004), - [anon_sym_DASH_DASH] = ACTIONS(5002), - [anon_sym_DASH2] = ACTIONS(5004), - [anon_sym_LBRACE] = ACTIONS(5002), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), - [anon_sym_DOT_DOT_LT] = ACTIONS(5002), - [anon_sym_null] = ACTIONS(5002), - [anon_sym_true] = ACTIONS(5002), - [anon_sym_false] = ACTIONS(5002), - [aux_sym__val_number_decimal_token1] = ACTIONS(5004), - [aux_sym__val_number_decimal_token2] = ACTIONS(5002), - [aux_sym__val_number_decimal_token3] = ACTIONS(5002), - [aux_sym__val_number_decimal_token4] = ACTIONS(5002), - [aux_sym__val_number_token1] = ACTIONS(5002), - [aux_sym__val_number_token2] = ACTIONS(5002), - [aux_sym__val_number_token3] = ACTIONS(5002), - [aux_sym__val_number_token4] = ACTIONS(5002), - [aux_sym__val_number_token5] = ACTIONS(5002), - [aux_sym__val_number_token6] = ACTIONS(5002), - [anon_sym_0b] = ACTIONS(5004), - [anon_sym_0o] = ACTIONS(5004), - [anon_sym_0x] = ACTIONS(5004), - [sym_val_date] = ACTIONS(5002), - [anon_sym_DQUOTE] = ACTIONS(5002), - [sym__str_single_quotes] = ACTIONS(5002), - [sym__str_back_ticks] = ACTIONS(5002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5002), - [anon_sym_err_GT] = ACTIONS(5004), - [anon_sym_out_GT] = ACTIONS(5004), - [anon_sym_e_GT] = ACTIONS(5004), - [anon_sym_o_GT] = ACTIONS(5004), - [anon_sym_err_PLUSout_GT] = ACTIONS(5004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5004), - [anon_sym_o_PLUSe_GT] = ACTIONS(5004), - [anon_sym_e_PLUSo_GT] = ACTIONS(5004), - [anon_sym_err_GT_GT] = ACTIONS(5002), - [anon_sym_out_GT_GT] = ACTIONS(5002), - [anon_sym_e_GT_GT] = ACTIONS(5002), - [anon_sym_o_GT_GT] = ACTIONS(5002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5002), - [aux_sym_unquoted_token1] = ACTIONS(5004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5002), - }, - [1690] = { - [sym__expr_parenthesized_immediate] = STATE(7966), - [sym_comment] = STATE(1690), - [ts_builtin_sym_end] = ACTIONS(5006), - [sym__newline] = ACTIONS(5006), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5006), - [anon_sym_err_GT_PIPE] = ACTIONS(5006), - [anon_sym_out_GT_PIPE] = ACTIONS(5006), - [anon_sym_e_GT_PIPE] = ACTIONS(5006), - [anon_sym_o_GT_PIPE] = ACTIONS(5006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5008), - [anon_sym_DOLLAR] = ACTIONS(5008), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_DASH2] = ACTIONS(5008), - [anon_sym_LBRACE] = ACTIONS(5006), - [anon_sym_DOT_DOT] = ACTIONS(5008), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5006), - [anon_sym_true] = ACTIONS(5006), - [anon_sym_false] = ACTIONS(5006), - [aux_sym__val_number_decimal_token1] = ACTIONS(5008), - [aux_sym__val_number_decimal_token2] = ACTIONS(5006), - [aux_sym__val_number_decimal_token3] = ACTIONS(5006), - [aux_sym__val_number_decimal_token4] = ACTIONS(5006), - [aux_sym__val_number_token1] = ACTIONS(5006), - [aux_sym__val_number_token2] = ACTIONS(5006), - [aux_sym__val_number_token3] = ACTIONS(5006), - [aux_sym__val_number_token4] = ACTIONS(5006), - [aux_sym__val_number_token5] = ACTIONS(5006), - [aux_sym__val_number_token6] = ACTIONS(5006), - [anon_sym_0b] = ACTIONS(5008), - [anon_sym_0o] = ACTIONS(5008), - [anon_sym_0x] = ACTIONS(5008), - [sym_val_date] = ACTIONS(5006), - [anon_sym_DQUOTE] = ACTIONS(5006), - [sym__str_single_quotes] = ACTIONS(5006), - [sym__str_back_ticks] = ACTIONS(5006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5006), - [anon_sym_err_GT] = ACTIONS(5008), - [anon_sym_out_GT] = ACTIONS(5008), - [anon_sym_e_GT] = ACTIONS(5008), - [anon_sym_o_GT] = ACTIONS(5008), - [anon_sym_err_PLUSout_GT] = ACTIONS(5008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5008), - [anon_sym_o_PLUSe_GT] = ACTIONS(5008), - [anon_sym_e_PLUSo_GT] = ACTIONS(5008), - [anon_sym_err_GT_GT] = ACTIONS(5006), - [anon_sym_out_GT_GT] = ACTIONS(5006), - [anon_sym_e_GT_GT] = ACTIONS(5006), - [anon_sym_o_GT_GT] = ACTIONS(5006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5006), - [aux_sym_unquoted_token1] = ACTIONS(5008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5006), - }, - [1691] = { - [sym_comment] = STATE(1691), - [ts_builtin_sym_end] = ACTIONS(1803), - [sym__newline] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_err_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_GT_PIPE] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), - [anon_sym_DOT_DOT_LT] = ACTIONS(1803), - [anon_sym_null] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [aux_sym__val_number_decimal_token1] = ACTIONS(1801), - [aux_sym__val_number_decimal_token2] = ACTIONS(1803), - [aux_sym__val_number_decimal_token3] = ACTIONS(1803), - [aux_sym__val_number_decimal_token4] = ACTIONS(1803), - [aux_sym__val_number_token1] = ACTIONS(1803), - [aux_sym__val_number_token2] = ACTIONS(1803), - [aux_sym__val_number_token3] = ACTIONS(1803), - [aux_sym__val_number_token4] = ACTIONS(1803), - [aux_sym__val_number_token5] = ACTIONS(1803), - [aux_sym__val_number_token6] = ACTIONS(1803), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1803), - [sym__str_single_quotes] = ACTIONS(1803), - [sym__str_back_ticks] = ACTIONS(1803), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), - [anon_sym_err_GT] = ACTIONS(1801), - [anon_sym_out_GT] = ACTIONS(1801), - [anon_sym_e_GT] = ACTIONS(1801), - [anon_sym_o_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT] = ACTIONS(1801), - [anon_sym_err_GT_GT] = ACTIONS(1803), - [anon_sym_out_GT_GT] = ACTIONS(1803), - [anon_sym_e_GT_GT] = ACTIONS(1803), - [anon_sym_o_GT_GT] = ACTIONS(1803), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1803), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1803), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1803), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1803), - [aux_sym_unquoted_token1] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1803), - }, - [1692] = { - [sym_comment] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym__newline] = ACTIONS(2300), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_err_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_GT_PIPE] = ACTIONS(2300), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2300), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2300), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2300), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_DASH2] = ACTIONS(2298), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_DOT_DOT] = ACTIONS(2298), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2298), - [anon_sym_DOT_DOT_LT] = ACTIONS(2298), - [anon_sym_null] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2298), - [anon_sym_false] = ACTIONS(2298), - [aux_sym__val_number_decimal_token1] = ACTIONS(2298), - [aux_sym__val_number_decimal_token2] = ACTIONS(2298), - [aux_sym__val_number_decimal_token3] = ACTIONS(2298), - [aux_sym__val_number_decimal_token4] = ACTIONS(2298), - [aux_sym__val_number_token1] = ACTIONS(2298), - [aux_sym__val_number_token2] = ACTIONS(2298), - [aux_sym__val_number_token3] = ACTIONS(2298), - [aux_sym__val_number_token4] = ACTIONS(2298), - [aux_sym__val_number_token5] = ACTIONS(2298), - [aux_sym__val_number_token6] = ACTIONS(2298), - [anon_sym_0b] = ACTIONS(2298), - [anon_sym_0o] = ACTIONS(2298), - [anon_sym_0x] = ACTIONS(2298), - [sym_val_date] = ACTIONS(2298), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), - [anon_sym_err_GT] = ACTIONS(2298), - [anon_sym_out_GT] = ACTIONS(2298), - [anon_sym_e_GT] = ACTIONS(2298), - [anon_sym_o_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT] = ACTIONS(2298), - [anon_sym_err_GT_GT] = ACTIONS(2298), - [anon_sym_out_GT_GT] = ACTIONS(2298), - [anon_sym_e_GT_GT] = ACTIONS(2298), - [anon_sym_o_GT_GT] = ACTIONS(2298), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2298), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2298), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2298), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2298), - [aux_sym_unquoted_token1] = ACTIONS(2298), - [aux_sym_unquoted_token4] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), - }, - [1693] = { - [sym_comment] = STATE(1693), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH2] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_LPAREN2] = ACTIONS(1826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1824), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [aux_sym__val_number_token4] = ACTIONS(1826), - [aux_sym__val_number_token5] = ACTIONS(1826), - [aux_sym__val_number_token6] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1824), - [anon_sym_0o] = ACTIONS(1824), - [anon_sym_0x] = ACTIONS(1824), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1824), - [aux_sym_unquoted_token2] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1826), - }, - [1694] = { - [sym_comment] = STATE(1694), - [sym__newline] = ACTIONS(5042), - [anon_sym_SEMI] = ACTIONS(5042), - [anon_sym_PIPE] = ACTIONS(5042), - [anon_sym_err_GT_PIPE] = ACTIONS(5042), - [anon_sym_out_GT_PIPE] = ACTIONS(5042), - [anon_sym_e_GT_PIPE] = ACTIONS(5042), - [anon_sym_o_GT_PIPE] = ACTIONS(5042), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5042), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5042), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5042), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5042), - [anon_sym_LPAREN] = ACTIONS(5044), - [anon_sym_RPAREN] = ACTIONS(5042), - [anon_sym_DOLLAR] = ACTIONS(5044), - [anon_sym_DASH_DASH] = ACTIONS(5042), - [anon_sym_DASH2] = ACTIONS(5044), - [anon_sym_LBRACE] = ACTIONS(5042), - [anon_sym_RBRACE] = ACTIONS(5042), - [anon_sym_DOT_DOT] = ACTIONS(5044), - [anon_sym_LPAREN2] = ACTIONS(5042), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5042), - [anon_sym_DOT_DOT_LT] = ACTIONS(5042), - [anon_sym_null] = ACTIONS(5042), - [anon_sym_true] = ACTIONS(5042), - [anon_sym_false] = ACTIONS(5042), - [aux_sym__val_number_decimal_token1] = ACTIONS(5044), - [aux_sym__val_number_decimal_token2] = ACTIONS(5042), - [aux_sym__val_number_decimal_token3] = ACTIONS(5042), - [aux_sym__val_number_decimal_token4] = ACTIONS(5042), - [aux_sym__val_number_token1] = ACTIONS(5042), - [aux_sym__val_number_token2] = ACTIONS(5042), - [aux_sym__val_number_token3] = ACTIONS(5042), - [aux_sym__val_number_token4] = ACTIONS(5042), - [aux_sym__val_number_token5] = ACTIONS(5042), - [aux_sym__val_number_token6] = ACTIONS(5042), - [anon_sym_0b] = ACTIONS(5044), - [anon_sym_0o] = ACTIONS(5044), - [anon_sym_0x] = ACTIONS(5044), - [sym_val_date] = ACTIONS(5042), - [anon_sym_DQUOTE] = ACTIONS(5042), - [sym__str_single_quotes] = ACTIONS(5042), - [sym__str_back_ticks] = ACTIONS(5042), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5042), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5042), - [anon_sym_err_GT] = ACTIONS(5044), - [anon_sym_out_GT] = ACTIONS(5044), - [anon_sym_e_GT] = ACTIONS(5044), - [anon_sym_o_GT] = ACTIONS(5044), - [anon_sym_err_PLUSout_GT] = ACTIONS(5044), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5044), - [anon_sym_o_PLUSe_GT] = ACTIONS(5044), - [anon_sym_e_PLUSo_GT] = ACTIONS(5044), - [anon_sym_err_GT_GT] = ACTIONS(5042), - [anon_sym_out_GT_GT] = ACTIONS(5042), - [anon_sym_e_GT_GT] = ACTIONS(5042), - [anon_sym_o_GT_GT] = ACTIONS(5042), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5042), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5042), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5042), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5042), - [aux_sym_unquoted_token1] = ACTIONS(5044), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5042), - }, - [1695] = { - [sym_cell_path] = STATE(2105), - [sym_path] = STATE(1995), - [sym_comment] = STATE(1695), - [aux_sym_cell_path_repeat1] = STATE(1807), - [ts_builtin_sym_end] = ACTIONS(975), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_err_GT_PIPE] = ACTIONS(975), - [anon_sym_out_GT_PIPE] = ACTIONS(975), - [anon_sym_e_GT_PIPE] = ACTIONS(975), - [anon_sym_o_GT_PIPE] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(975), - [anon_sym_GT2] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_STAR2] = ACTIONS(973), - [anon_sym_and2] = ACTIONS(975), - [anon_sym_xor2] = ACTIONS(975), - [anon_sym_or2] = ACTIONS(975), - [anon_sym_not_DASHin2] = ACTIONS(975), - [anon_sym_starts_DASHwith2] = ACTIONS(975), - [anon_sym_ends_DASHwith2] = ACTIONS(975), - [anon_sym_EQ_EQ2] = ACTIONS(975), - [anon_sym_BANG_EQ2] = ACTIONS(975), - [anon_sym_LT2] = ACTIONS(973), - [anon_sym_LT_EQ2] = ACTIONS(975), - [anon_sym_GT_EQ2] = ACTIONS(975), - [anon_sym_EQ_TILDE2] = ACTIONS(975), - [anon_sym_BANG_TILDE2] = ACTIONS(975), - [anon_sym_STAR_STAR2] = ACTIONS(975), - [anon_sym_PLUS_PLUS2] = ACTIONS(975), - [anon_sym_SLASH2] = ACTIONS(973), - [anon_sym_mod2] = ACTIONS(975), - [anon_sym_SLASH_SLASH2] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(973), - [anon_sym_bit_DASHshl2] = ACTIONS(975), - [anon_sym_bit_DASHshr2] = ACTIONS(975), - [anon_sym_bit_DASHand2] = ACTIONS(975), - [anon_sym_bit_DASHxor2] = ACTIONS(975), - [anon_sym_bit_DASHor2] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(5046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(975), - [anon_sym_DOT_DOT_LT2] = ACTIONS(975), - [anon_sym_err_GT] = ACTIONS(973), - [anon_sym_out_GT] = ACTIONS(973), - [anon_sym_e_GT] = ACTIONS(973), - [anon_sym_o_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT] = ACTIONS(973), - [anon_sym_err_GT_GT] = ACTIONS(975), - [anon_sym_out_GT_GT] = ACTIONS(975), - [anon_sym_e_GT_GT] = ACTIONS(975), - [anon_sym_o_GT_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - }, - [1696] = { - [sym_comment] = STATE(1696), - [sym__newline] = ACTIONS(5048), - [anon_sym_SEMI] = ACTIONS(5048), - [anon_sym_PIPE] = ACTIONS(5048), - [anon_sym_err_GT_PIPE] = ACTIONS(5048), - [anon_sym_out_GT_PIPE] = ACTIONS(5048), - [anon_sym_e_GT_PIPE] = ACTIONS(5048), - [anon_sym_o_GT_PIPE] = ACTIONS(5048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5048), - [anon_sym_LBRACK] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5048), - [anon_sym_RPAREN] = ACTIONS(5048), - [anon_sym_DOLLAR] = ACTIONS(5050), - [anon_sym_DASH_DASH] = ACTIONS(5048), - [anon_sym_DASH2] = ACTIONS(5050), - [anon_sym_LBRACE] = ACTIONS(5048), - [anon_sym_RBRACE] = ACTIONS(5048), - [anon_sym_DOT_DOT] = ACTIONS(5050), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5048), - [anon_sym_DOT_DOT_LT] = ACTIONS(5048), - [anon_sym_null] = ACTIONS(5048), - [anon_sym_true] = ACTIONS(5048), - [anon_sym_false] = ACTIONS(5048), - [aux_sym__val_number_decimal_token1] = ACTIONS(5050), - [aux_sym__val_number_decimal_token2] = ACTIONS(5048), - [aux_sym__val_number_decimal_token3] = ACTIONS(5048), - [aux_sym__val_number_decimal_token4] = ACTIONS(5048), - [aux_sym__val_number_token1] = ACTIONS(5048), - [aux_sym__val_number_token2] = ACTIONS(5048), - [aux_sym__val_number_token3] = ACTIONS(5048), - [aux_sym__val_number_token4] = ACTIONS(5048), - [aux_sym__val_number_token5] = ACTIONS(5048), - [aux_sym__val_number_token6] = ACTIONS(5048), - [anon_sym_0b] = ACTIONS(5050), - [anon_sym_0o] = ACTIONS(5050), - [anon_sym_0x] = ACTIONS(5050), - [sym_val_date] = ACTIONS(5048), - [anon_sym_DQUOTE] = ACTIONS(5048), - [sym__str_single_quotes] = ACTIONS(5048), - [sym__str_back_ticks] = ACTIONS(5048), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5048), - [anon_sym_err_GT] = ACTIONS(5050), - [anon_sym_out_GT] = ACTIONS(5050), - [anon_sym_e_GT] = ACTIONS(5050), - [anon_sym_o_GT] = ACTIONS(5050), - [anon_sym_err_PLUSout_GT] = ACTIONS(5050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5050), - [anon_sym_o_PLUSe_GT] = ACTIONS(5050), - [anon_sym_e_PLUSo_GT] = ACTIONS(5050), - [anon_sym_err_GT_GT] = ACTIONS(5048), - [anon_sym_out_GT_GT] = ACTIONS(5048), - [anon_sym_e_GT_GT] = ACTIONS(5048), - [anon_sym_o_GT_GT] = ACTIONS(5048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5048), - [anon_sym_EQ2] = ACTIONS(5052), - [aux_sym_unquoted_token1] = ACTIONS(5050), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5048), - }, - [1697] = { - [sym_comment] = STATE(1697), - [sym__newline] = ACTIONS(5054), - [anon_sym_SEMI] = ACTIONS(5054), - [anon_sym_PIPE] = ACTIONS(5054), - [anon_sym_err_GT_PIPE] = ACTIONS(5054), - [anon_sym_out_GT_PIPE] = ACTIONS(5054), - [anon_sym_e_GT_PIPE] = ACTIONS(5054), - [anon_sym_o_GT_PIPE] = ACTIONS(5054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5054), - [anon_sym_LPAREN] = ACTIONS(5056), - [anon_sym_RPAREN] = ACTIONS(5054), - [anon_sym_DOLLAR] = ACTIONS(5056), - [anon_sym_DASH_DASH] = ACTIONS(5054), - [anon_sym_DASH2] = ACTIONS(5056), - [anon_sym_LBRACE] = ACTIONS(5054), - [anon_sym_RBRACE] = ACTIONS(5054), - [anon_sym_DOT_DOT] = ACTIONS(5056), - [anon_sym_LPAREN2] = ACTIONS(5054), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5054), - [anon_sym_DOT_DOT_LT] = ACTIONS(5054), - [anon_sym_null] = ACTIONS(5054), - [anon_sym_true] = ACTIONS(5054), - [anon_sym_false] = ACTIONS(5054), - [aux_sym__val_number_decimal_token1] = ACTIONS(5056), - [aux_sym__val_number_decimal_token2] = ACTIONS(5054), - [aux_sym__val_number_decimal_token3] = ACTIONS(5054), - [aux_sym__val_number_decimal_token4] = ACTIONS(5054), - [aux_sym__val_number_token1] = ACTIONS(5054), - [aux_sym__val_number_token2] = ACTIONS(5054), - [aux_sym__val_number_token3] = ACTIONS(5054), - [aux_sym__val_number_token4] = ACTIONS(5054), - [aux_sym__val_number_token5] = ACTIONS(5054), - [aux_sym__val_number_token6] = ACTIONS(5054), - [anon_sym_0b] = ACTIONS(5056), - [anon_sym_0o] = ACTIONS(5056), - [anon_sym_0x] = ACTIONS(5056), - [sym_val_date] = ACTIONS(5054), - [anon_sym_DQUOTE] = ACTIONS(5054), - [sym__str_single_quotes] = ACTIONS(5054), - [sym__str_back_ticks] = ACTIONS(5054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5054), - [anon_sym_err_GT] = ACTIONS(5056), - [anon_sym_out_GT] = ACTIONS(5056), - [anon_sym_e_GT] = ACTIONS(5056), - [anon_sym_o_GT] = ACTIONS(5056), - [anon_sym_err_PLUSout_GT] = ACTIONS(5056), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5056), - [anon_sym_o_PLUSe_GT] = ACTIONS(5056), - [anon_sym_e_PLUSo_GT] = ACTIONS(5056), - [anon_sym_err_GT_GT] = ACTIONS(5054), - [anon_sym_out_GT_GT] = ACTIONS(5054), - [anon_sym_e_GT_GT] = ACTIONS(5054), - [anon_sym_o_GT_GT] = ACTIONS(5054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5054), - [aux_sym_unquoted_token1] = ACTIONS(5056), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5054), - }, - [1698] = { - [sym_comment] = STATE(1698), - [sym__newline] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_err_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_GT_PIPE] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_DOLLAR] = ACTIONS(2333), - [anon_sym_DASH_DASH] = ACTIONS(2337), - [anon_sym_DASH2] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_DOT_DOT] = ACTIONS(2333), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2337), - [anon_sym_DOT_DOT_LT] = ACTIONS(2337), - [anon_sym_null] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2337), - [anon_sym_false] = ACTIONS(2337), - [aux_sym__val_number_decimal_token1] = ACTIONS(2333), - [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_0b] = ACTIONS(2333), - [anon_sym_0o] = ACTIONS(2333), - [anon_sym_0x] = ACTIONS(2333), - [anon_sym_LBRACK2] = ACTIONS(5058), - [sym_val_date] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [sym__str_single_quotes] = ACTIONS(2337), - [sym__str_back_ticks] = ACTIONS(2337), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2333), - [anon_sym_out_GT] = ACTIONS(2333), - [anon_sym_e_GT] = ACTIONS(2333), - [anon_sym_o_GT] = ACTIONS(2333), - [anon_sym_err_PLUSout_GT] = ACTIONS(2333), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2333), - [anon_sym_o_PLUSe_GT] = ACTIONS(2333), - [anon_sym_e_PLUSo_GT] = ACTIONS(2333), - [anon_sym_err_GT_GT] = ACTIONS(2337), - [anon_sym_out_GT_GT] = ACTIONS(2337), - [anon_sym_e_GT_GT] = ACTIONS(2337), - [anon_sym_o_GT_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2337), - [aux_sym_unquoted_token1] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2337), - }, - [1699] = { - [sym_cell_path] = STATE(1682), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1699), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_err_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_GT_PIPE] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1775), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_GT2] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1775), - [anon_sym_in2] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_EQ_GT] = ACTIONS(1775), - [anon_sym_STAR2] = ACTIONS(1771), - [anon_sym_and2] = ACTIONS(1775), - [anon_sym_xor2] = ACTIONS(1775), - [anon_sym_or2] = ACTIONS(1775), - [anon_sym_not_DASHin2] = ACTIONS(1775), - [anon_sym_starts_DASHwith2] = ACTIONS(1775), - [anon_sym_ends_DASHwith2] = ACTIONS(1775), - [anon_sym_EQ_EQ2] = ACTIONS(1775), - [anon_sym_BANG_EQ2] = ACTIONS(1775), - [anon_sym_LT2] = ACTIONS(1771), - [anon_sym_LT_EQ2] = ACTIONS(1775), - [anon_sym_GT_EQ2] = ACTIONS(1775), - [anon_sym_EQ_TILDE2] = ACTIONS(1775), - [anon_sym_BANG_TILDE2] = ACTIONS(1775), - [anon_sym_STAR_STAR2] = ACTIONS(1775), - [anon_sym_PLUS_PLUS2] = ACTIONS(1775), - [anon_sym_SLASH2] = ACTIONS(1771), - [anon_sym_mod2] = ACTIONS(1775), - [anon_sym_SLASH_SLASH2] = ACTIONS(1775), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_bit_DASHshl2] = ACTIONS(1775), - [anon_sym_bit_DASHshr2] = ACTIONS(1775), - [anon_sym_bit_DASHand2] = ACTIONS(1775), - [anon_sym_bit_DASHxor2] = ACTIONS(1775), - [anon_sym_bit_DASHor2] = ACTIONS(1775), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1775), - [anon_sym_out_GT_GT] = ACTIONS(1775), - [anon_sym_e_GT_GT] = ACTIONS(1775), - [anon_sym_o_GT_GT] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(251), - }, - [1700] = { - [sym_path] = STATE(1921), - [sym_comment] = STATE(1700), - [aux_sym_cell_path_repeat1] = STATE(1700), - [sym__newline] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_GT2] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(981), - [anon_sym_in2] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_EQ_GT] = ACTIONS(981), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_and2] = ACTIONS(981), - [anon_sym_xor2] = ACTIONS(981), - [anon_sym_or2] = ACTIONS(981), - [anon_sym_not_DASHin2] = ACTIONS(981), - [anon_sym_starts_DASHwith2] = ACTIONS(981), - [anon_sym_ends_DASHwith2] = ACTIONS(981), - [anon_sym_EQ_EQ2] = ACTIONS(981), - [anon_sym_BANG_EQ2] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ2] = ACTIONS(981), - [anon_sym_GT_EQ2] = ACTIONS(981), - [anon_sym_EQ_TILDE2] = ACTIONS(981), - [anon_sym_BANG_TILDE2] = ACTIONS(981), - [anon_sym_STAR_STAR2] = ACTIONS(981), - [anon_sym_PLUS_PLUS2] = ACTIONS(981), - [anon_sym_SLASH2] = ACTIONS(979), - [anon_sym_mod2] = ACTIONS(981), - [anon_sym_SLASH_SLASH2] = ACTIONS(981), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_bit_DASHshl2] = ACTIONS(981), - [anon_sym_bit_DASHshr2] = ACTIONS(981), - [anon_sym_bit_DASHand2] = ACTIONS(981), - [anon_sym_bit_DASHxor2] = ACTIONS(981), - [anon_sym_bit_DASHor2] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(5060), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), - }, - [1701] = { - [sym_cell_path] = STATE(1702), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1701), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_GT2] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_EQ_GT] = ACTIONS(1779), - [anon_sym_STAR2] = ACTIONS(1777), - [anon_sym_and2] = ACTIONS(1779), - [anon_sym_xor2] = ACTIONS(1779), - [anon_sym_or2] = ACTIONS(1779), - [anon_sym_not_DASHin2] = ACTIONS(1779), - [anon_sym_starts_DASHwith2] = ACTIONS(1779), - [anon_sym_ends_DASHwith2] = ACTIONS(1779), - [anon_sym_EQ_EQ2] = ACTIONS(1779), - [anon_sym_BANG_EQ2] = ACTIONS(1779), - [anon_sym_LT2] = ACTIONS(1777), - [anon_sym_LT_EQ2] = ACTIONS(1779), - [anon_sym_GT_EQ2] = ACTIONS(1779), - [anon_sym_EQ_TILDE2] = ACTIONS(1779), - [anon_sym_BANG_TILDE2] = ACTIONS(1779), - [anon_sym_STAR_STAR2] = ACTIONS(1779), - [anon_sym_PLUS_PLUS2] = ACTIONS(1779), - [anon_sym_SLASH2] = ACTIONS(1777), - [anon_sym_mod2] = ACTIONS(1779), - [anon_sym_SLASH_SLASH2] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1777), - [anon_sym_bit_DASHshl2] = ACTIONS(1779), - [anon_sym_bit_DASHshr2] = ACTIONS(1779), - [anon_sym_bit_DASHand2] = ACTIONS(1779), - [anon_sym_bit_DASHxor2] = ACTIONS(1779), - [anon_sym_bit_DASHor2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - }, - [1702] = { - [sym_comment] = STATE(1702), - [sym__newline] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_err_GT_PIPE] = ACTIONS(2195), - [anon_sym_out_GT_PIPE] = ACTIONS(2195), - [anon_sym_e_GT_PIPE] = ACTIONS(2195), - [anon_sym_o_GT_PIPE] = ACTIONS(2195), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2195), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2195), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2195), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2195), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_GT2] = ACTIONS(2193), - [anon_sym_DASH2] = ACTIONS(2195), - [anon_sym_in2] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(2195), - [anon_sym_STAR2] = ACTIONS(2193), - [anon_sym_and2] = ACTIONS(2195), - [anon_sym_xor2] = ACTIONS(2195), - [anon_sym_or2] = ACTIONS(2195), - [anon_sym_not_DASHin2] = ACTIONS(2195), - [anon_sym_starts_DASHwith2] = ACTIONS(2195), - [anon_sym_ends_DASHwith2] = ACTIONS(2195), - [anon_sym_EQ_EQ2] = ACTIONS(2195), - [anon_sym_BANG_EQ2] = ACTIONS(2195), - [anon_sym_LT2] = ACTIONS(2193), - [anon_sym_LT_EQ2] = ACTIONS(2195), - [anon_sym_GT_EQ2] = ACTIONS(2195), - [anon_sym_EQ_TILDE2] = ACTIONS(2195), - [anon_sym_BANG_TILDE2] = ACTIONS(2195), - [anon_sym_STAR_STAR2] = ACTIONS(2195), - [anon_sym_PLUS_PLUS2] = ACTIONS(2195), - [anon_sym_SLASH2] = ACTIONS(2193), - [anon_sym_mod2] = ACTIONS(2195), - [anon_sym_SLASH_SLASH2] = ACTIONS(2195), - [anon_sym_PLUS2] = ACTIONS(2193), - [anon_sym_bit_DASHshl2] = ACTIONS(2195), - [anon_sym_bit_DASHshr2] = ACTIONS(2195), - [anon_sym_bit_DASHand2] = ACTIONS(2195), - [anon_sym_bit_DASHxor2] = ACTIONS(2195), - [anon_sym_bit_DASHor2] = ACTIONS(2195), - [anon_sym_DOT_DOT2] = ACTIONS(2193), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2195), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2195), - [anon_sym_err_GT] = ACTIONS(2193), - [anon_sym_out_GT] = ACTIONS(2193), - [anon_sym_e_GT] = ACTIONS(2193), - [anon_sym_o_GT] = ACTIONS(2193), - [anon_sym_err_PLUSout_GT] = ACTIONS(2193), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2193), - [anon_sym_o_PLUSe_GT] = ACTIONS(2193), - [anon_sym_e_PLUSo_GT] = ACTIONS(2193), - [anon_sym_err_GT_GT] = ACTIONS(2195), - [anon_sym_out_GT_GT] = ACTIONS(2195), - [anon_sym_e_GT_GT] = ACTIONS(2195), - [anon_sym_o_GT_GT] = ACTIONS(2195), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2195), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2195), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2195), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2195), - [anon_sym_POUND] = ACTIONS(251), - }, - [1703] = { - [sym_comment] = STATE(1703), - [ts_builtin_sym_end] = ACTIONS(2249), - [sym__newline] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_err_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_GT_PIPE] = ACTIONS(2249), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2249), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2249), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2249), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_DASH_DASH] = ACTIONS(2247), - [anon_sym_DASH2] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_LPAREN2] = ACTIONS(2249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2247), - [anon_sym_DOT_DOT_LT] = ACTIONS(2247), - [anon_sym_null] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(2247), - [anon_sym_false] = ACTIONS(2247), - [aux_sym__val_number_decimal_token1] = ACTIONS(2247), - [aux_sym__val_number_decimal_token2] = ACTIONS(2247), - [aux_sym__val_number_decimal_token3] = ACTIONS(2247), - [aux_sym__val_number_decimal_token4] = ACTIONS(2247), - [aux_sym__val_number_token1] = ACTIONS(2247), - [aux_sym__val_number_token2] = ACTIONS(2247), - [aux_sym__val_number_token3] = ACTIONS(2247), - [aux_sym__val_number_token4] = ACTIONS(2247), - [aux_sym__val_number_token5] = ACTIONS(2247), - [aux_sym__val_number_token6] = ACTIONS(2247), - [anon_sym_0b] = ACTIONS(2247), - [anon_sym_0o] = ACTIONS(2247), - [anon_sym_0x] = ACTIONS(2247), - [sym_val_date] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2249), - [sym__str_single_quotes] = ACTIONS(2249), - [sym__str_back_ticks] = ACTIONS(2249), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2249), - [anon_sym_err_GT] = ACTIONS(2247), - [anon_sym_out_GT] = ACTIONS(2247), - [anon_sym_e_GT] = ACTIONS(2247), - [anon_sym_o_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT] = ACTIONS(2247), - [anon_sym_err_GT_GT] = ACTIONS(2247), - [anon_sym_out_GT_GT] = ACTIONS(2247), - [anon_sym_e_GT_GT] = ACTIONS(2247), - [anon_sym_o_GT_GT] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2247), - [aux_sym_unquoted_token1] = ACTIONS(2247), - [aux_sym_unquoted_token4] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2249), - }, - [1704] = { - [sym_cmd_identifier] = STATE(4183), - [sym__command_name] = STATE(6658), - [sym_scope_pattern] = STATE(6659), - [sym_wild_card] = STATE(6662), - [sym_command_list] = STATE(6663), - [sym__val_number_decimal] = STATE(3820), - [sym_val_string] = STATE(4210), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_comment] = STATE(1704), - [aux_sym_cmd_identifier_token1] = ACTIONS(5063), - [aux_sym_cmd_identifier_token2] = ACTIONS(5065), - [aux_sym_cmd_identifier_token3] = ACTIONS(5065), - [aux_sym_cmd_identifier_token4] = ACTIONS(5065), - [aux_sym_cmd_identifier_token5] = ACTIONS(5065), - [aux_sym_cmd_identifier_token6] = ACTIONS(5065), - [aux_sym_cmd_identifier_token7] = ACTIONS(5065), - [aux_sym_cmd_identifier_token8] = ACTIONS(5065), - [aux_sym_cmd_identifier_token9] = ACTIONS(5063), - [aux_sym_cmd_identifier_token10] = ACTIONS(5065), - [aux_sym_cmd_identifier_token11] = ACTIONS(5065), - [aux_sym_cmd_identifier_token12] = ACTIONS(5065), - [aux_sym_cmd_identifier_token13] = ACTIONS(5063), - [aux_sym_cmd_identifier_token14] = ACTIONS(5065), - [aux_sym_cmd_identifier_token15] = ACTIONS(5063), - [aux_sym_cmd_identifier_token16] = ACTIONS(5065), - [aux_sym_cmd_identifier_token17] = ACTIONS(5065), - [aux_sym_cmd_identifier_token18] = ACTIONS(5065), - [aux_sym_cmd_identifier_token19] = ACTIONS(5065), - [aux_sym_cmd_identifier_token20] = ACTIONS(5065), - [aux_sym_cmd_identifier_token21] = ACTIONS(5065), - [aux_sym_cmd_identifier_token22] = ACTIONS(5065), - [aux_sym_cmd_identifier_token23] = ACTIONS(5065), - [aux_sym_cmd_identifier_token24] = ACTIONS(5065), - [aux_sym_cmd_identifier_token25] = ACTIONS(5065), - [aux_sym_cmd_identifier_token26] = ACTIONS(5065), - [aux_sym_cmd_identifier_token27] = ACTIONS(5065), - [aux_sym_cmd_identifier_token28] = ACTIONS(5065), - [aux_sym_cmd_identifier_token29] = ACTIONS(5065), - [aux_sym_cmd_identifier_token30] = ACTIONS(5065), - [aux_sym_cmd_identifier_token31] = ACTIONS(5065), - [aux_sym_cmd_identifier_token32] = ACTIONS(5065), - [aux_sym_cmd_identifier_token33] = ACTIONS(5065), - [aux_sym_cmd_identifier_token34] = ACTIONS(5063), - [aux_sym_cmd_identifier_token35] = ACTIONS(5065), - [aux_sym_cmd_identifier_token36] = ACTIONS(5065), - [aux_sym_cmd_identifier_token37] = ACTIONS(5065), - [aux_sym_cmd_identifier_token38] = ACTIONS(5063), - [aux_sym_cmd_identifier_token39] = ACTIONS(5065), - [aux_sym_cmd_identifier_token40] = ACTIONS(5065), - [sym__newline] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_STAR2] = ACTIONS(5071), - [aux_sym__val_number_decimal_token1] = ACTIONS(5073), - [aux_sym__val_number_decimal_token2] = ACTIONS(5073), - [aux_sym__val_number_decimal_token3] = ACTIONS(5075), - [aux_sym__val_number_decimal_token4] = ACTIONS(5077), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), - }, - [1705] = { - [sym_cmd_identifier] = STATE(4183), - [sym__command_name] = STATE(6658), - [sym_scope_pattern] = STATE(6712), - [sym_wild_card] = STATE(6662), - [sym_command_list] = STATE(6663), - [sym__val_number_decimal] = STATE(3820), - [sym_val_string] = STATE(4210), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_comment] = STATE(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(5063), - [aux_sym_cmd_identifier_token2] = ACTIONS(5065), - [aux_sym_cmd_identifier_token3] = ACTIONS(5065), - [aux_sym_cmd_identifier_token4] = ACTIONS(5065), - [aux_sym_cmd_identifier_token5] = ACTIONS(5065), - [aux_sym_cmd_identifier_token6] = ACTIONS(5065), - [aux_sym_cmd_identifier_token7] = ACTIONS(5065), - [aux_sym_cmd_identifier_token8] = ACTIONS(5065), - [aux_sym_cmd_identifier_token9] = ACTIONS(5063), - [aux_sym_cmd_identifier_token10] = ACTIONS(5065), - [aux_sym_cmd_identifier_token11] = ACTIONS(5065), - [aux_sym_cmd_identifier_token12] = ACTIONS(5065), - [aux_sym_cmd_identifier_token13] = ACTIONS(5063), - [aux_sym_cmd_identifier_token14] = ACTIONS(5065), - [aux_sym_cmd_identifier_token15] = ACTIONS(5063), - [aux_sym_cmd_identifier_token16] = ACTIONS(5065), - [aux_sym_cmd_identifier_token17] = ACTIONS(5065), - [aux_sym_cmd_identifier_token18] = ACTIONS(5065), - [aux_sym_cmd_identifier_token19] = ACTIONS(5065), - [aux_sym_cmd_identifier_token20] = ACTIONS(5065), - [aux_sym_cmd_identifier_token21] = ACTIONS(5065), - [aux_sym_cmd_identifier_token22] = ACTIONS(5065), - [aux_sym_cmd_identifier_token23] = ACTIONS(5065), - [aux_sym_cmd_identifier_token24] = ACTIONS(5065), - [aux_sym_cmd_identifier_token25] = ACTIONS(5065), - [aux_sym_cmd_identifier_token26] = ACTIONS(5065), - [aux_sym_cmd_identifier_token27] = ACTIONS(5065), - [aux_sym_cmd_identifier_token28] = ACTIONS(5065), - [aux_sym_cmd_identifier_token29] = ACTIONS(5065), - [aux_sym_cmd_identifier_token30] = ACTIONS(5065), - [aux_sym_cmd_identifier_token31] = ACTIONS(5065), - [aux_sym_cmd_identifier_token32] = ACTIONS(5065), - [aux_sym_cmd_identifier_token33] = ACTIONS(5065), - [aux_sym_cmd_identifier_token34] = ACTIONS(5063), - [aux_sym_cmd_identifier_token35] = ACTIONS(5065), - [aux_sym_cmd_identifier_token36] = ACTIONS(5065), - [aux_sym_cmd_identifier_token37] = ACTIONS(5065), - [aux_sym_cmd_identifier_token38] = ACTIONS(5063), - [aux_sym_cmd_identifier_token39] = ACTIONS(5065), - [aux_sym_cmd_identifier_token40] = ACTIONS(5065), - [sym__newline] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5079), - [anon_sym_STAR2] = ACTIONS(5071), - [aux_sym__val_number_decimal_token1] = ACTIONS(5073), - [aux_sym__val_number_decimal_token2] = ACTIONS(5073), - [aux_sym__val_number_decimal_token3] = ACTIONS(5075), - [aux_sym__val_number_decimal_token4] = ACTIONS(5077), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), - }, - [1706] = { - [sym_comment] = STATE(1706), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1695), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [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(1695), - [anon_sym_0o] = ACTIONS(1695), - [anon_sym_0x] = ACTIONS(1695), - [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(1695), - [anon_sym_out_GT] = ACTIONS(1695), - [anon_sym_e_GT] = ACTIONS(1695), - [anon_sym_o_GT] = ACTIONS(1695), - [anon_sym_err_PLUSout_GT] = ACTIONS(1695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1695), - [anon_sym_o_PLUSe_GT] = ACTIONS(1695), - [anon_sym_e_PLUSo_GT] = ACTIONS(1695), - [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(1695), - [aux_sym_unquoted_token2] = ACTIONS(4233), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [1707] = { - [sym_cell_path] = STATE(2121), - [sym_path] = STATE(1995), - [sym_comment] = STATE(1707), - [aux_sym_cell_path_repeat1] = STATE(1807), - [ts_builtin_sym_end] = ACTIONS(1775), - [sym__newline] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_err_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_GT_PIPE] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1775), - [anon_sym_GT2] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1775), - [anon_sym_in2] = ACTIONS(1775), - [anon_sym_STAR2] = ACTIONS(1771), - [anon_sym_and2] = ACTIONS(1775), - [anon_sym_xor2] = ACTIONS(1775), - [anon_sym_or2] = ACTIONS(1775), - [anon_sym_not_DASHin2] = ACTIONS(1775), - [anon_sym_starts_DASHwith2] = ACTIONS(1775), - [anon_sym_ends_DASHwith2] = ACTIONS(1775), - [anon_sym_EQ_EQ2] = ACTIONS(1775), - [anon_sym_BANG_EQ2] = ACTIONS(1775), - [anon_sym_LT2] = ACTIONS(1771), - [anon_sym_LT_EQ2] = ACTIONS(1775), - [anon_sym_GT_EQ2] = ACTIONS(1775), - [anon_sym_EQ_TILDE2] = ACTIONS(1775), - [anon_sym_BANG_TILDE2] = ACTIONS(1775), - [anon_sym_STAR_STAR2] = ACTIONS(1775), - [anon_sym_PLUS_PLUS2] = ACTIONS(1775), - [anon_sym_SLASH2] = ACTIONS(1771), - [anon_sym_mod2] = ACTIONS(1775), - [anon_sym_SLASH_SLASH2] = ACTIONS(1775), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_bit_DASHshl2] = ACTIONS(1775), - [anon_sym_bit_DASHshr2] = ACTIONS(1775), - [anon_sym_bit_DASHand2] = ACTIONS(1775), - [anon_sym_bit_DASHxor2] = ACTIONS(1775), - [anon_sym_bit_DASHor2] = ACTIONS(1775), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(5046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1775), - [anon_sym_out_GT_GT] = ACTIONS(1775), - [anon_sym_e_GT_GT] = ACTIONS(1775), - [anon_sym_o_GT_GT] = ACTIONS(1775), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1775), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1775), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1775), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(251), - }, - [1708] = { - [sym_comment] = STATE(1708), - [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(5081), - [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(251), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1709] = { - [sym_comment] = STATE(1709), - [ts_builtin_sym_end] = ACTIONS(1014), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_err_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_GT_PIPE] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_QMARK2] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_null] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1014), - [anon_sym_false] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1012), - [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_0b] = ACTIONS(1012), - [anon_sym_0o] = ACTIONS(1012), - [anon_sym_0x] = ACTIONS(1012), - [sym_val_date] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1012), - [anon_sym_out_GT] = ACTIONS(1012), - [anon_sym_e_GT] = ACTIONS(1012), - [anon_sym_o_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT] = ACTIONS(1012), - [anon_sym_err_GT_GT] = ACTIONS(1014), - [anon_sym_out_GT_GT] = ACTIONS(1014), - [anon_sym_e_GT_GT] = ACTIONS(1014), - [anon_sym_o_GT_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1014), - [aux_sym_unquoted_token1] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1014), - }, - [1710] = { - [sym_cmd_identifier] = STATE(4183), - [sym__command_name] = STATE(6658), - [sym_scope_pattern] = STATE(6338), - [sym_wild_card] = STATE(6662), - [sym_command_list] = STATE(6663), - [sym__val_number_decimal] = STATE(3820), - [sym_val_string] = STATE(4210), - [sym__raw_str] = STATE(4386), - [sym__str_double_quotes] = STATE(4386), - [sym_comment] = STATE(1710), - [aux_sym_cmd_identifier_token1] = ACTIONS(5063), - [aux_sym_cmd_identifier_token2] = ACTIONS(5065), - [aux_sym_cmd_identifier_token3] = ACTIONS(5065), - [aux_sym_cmd_identifier_token4] = ACTIONS(5065), - [aux_sym_cmd_identifier_token5] = ACTIONS(5065), - [aux_sym_cmd_identifier_token6] = ACTIONS(5065), - [aux_sym_cmd_identifier_token7] = ACTIONS(5065), - [aux_sym_cmd_identifier_token8] = ACTIONS(5065), - [aux_sym_cmd_identifier_token9] = ACTIONS(5063), - [aux_sym_cmd_identifier_token10] = ACTIONS(5065), - [aux_sym_cmd_identifier_token11] = ACTIONS(5065), - [aux_sym_cmd_identifier_token12] = ACTIONS(5065), - [aux_sym_cmd_identifier_token13] = ACTIONS(5063), - [aux_sym_cmd_identifier_token14] = ACTIONS(5065), - [aux_sym_cmd_identifier_token15] = ACTIONS(5063), - [aux_sym_cmd_identifier_token16] = ACTIONS(5065), - [aux_sym_cmd_identifier_token17] = ACTIONS(5065), - [aux_sym_cmd_identifier_token18] = ACTIONS(5065), - [aux_sym_cmd_identifier_token19] = ACTIONS(5065), - [aux_sym_cmd_identifier_token20] = ACTIONS(5065), - [aux_sym_cmd_identifier_token21] = ACTIONS(5065), - [aux_sym_cmd_identifier_token22] = ACTIONS(5065), - [aux_sym_cmd_identifier_token23] = ACTIONS(5065), - [aux_sym_cmd_identifier_token24] = ACTIONS(5065), - [aux_sym_cmd_identifier_token25] = ACTIONS(5065), - [aux_sym_cmd_identifier_token26] = ACTIONS(5065), - [aux_sym_cmd_identifier_token27] = ACTIONS(5065), - [aux_sym_cmd_identifier_token28] = ACTIONS(5065), - [aux_sym_cmd_identifier_token29] = ACTIONS(5065), - [aux_sym_cmd_identifier_token30] = ACTIONS(5065), - [aux_sym_cmd_identifier_token31] = ACTIONS(5065), - [aux_sym_cmd_identifier_token32] = ACTIONS(5065), - [aux_sym_cmd_identifier_token33] = ACTIONS(5065), - [aux_sym_cmd_identifier_token34] = ACTIONS(5063), - [aux_sym_cmd_identifier_token35] = ACTIONS(5065), - [aux_sym_cmd_identifier_token36] = ACTIONS(5065), - [aux_sym_cmd_identifier_token37] = ACTIONS(5065), - [aux_sym_cmd_identifier_token38] = ACTIONS(5063), - [aux_sym_cmd_identifier_token39] = ACTIONS(5065), - [aux_sym_cmd_identifier_token40] = ACTIONS(5065), - [sym__newline] = ACTIONS(5085), - [anon_sym_SEMI] = ACTIONS(5085), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5085), - [anon_sym_RBRACE] = ACTIONS(5085), - [anon_sym_STAR2] = ACTIONS(5071), - [aux_sym__val_number_decimal_token1] = ACTIONS(5073), - [aux_sym__val_number_decimal_token2] = ACTIONS(5073), - [aux_sym__val_number_decimal_token3] = ACTIONS(5075), - [aux_sym__val_number_decimal_token4] = ACTIONS(5077), - [anon_sym_DQUOTE] = ACTIONS(3901), - [sym__str_single_quotes] = ACTIONS(3903), - [sym__str_back_ticks] = ACTIONS(3903), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3905), - }, - [1711] = { - [sym_comment] = STATE(1711), - [ts_builtin_sym_end] = ACTIONS(1851), - [sym__newline] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_err_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_GT_PIPE] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [anon_sym_DOT_DOT_LT] = ACTIONS(1851), - [anon_sym_null] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1851), - [aux_sym__val_number_decimal_token3] = ACTIONS(1851), - [aux_sym__val_number_decimal_token4] = ACTIONS(1851), - [aux_sym__val_number_token1] = ACTIONS(1851), - [aux_sym__val_number_token2] = ACTIONS(1851), - [aux_sym__val_number_token3] = ACTIONS(1851), - [aux_sym__val_number_token4] = ACTIONS(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1851), - [anon_sym_out_GT_GT] = ACTIONS(1851), - [anon_sym_e_GT_GT] = ACTIONS(1851), - [anon_sym_o_GT_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), - [aux_sym_unquoted_token1] = ACTIONS(1843), - [aux_sym_unquoted_token2] = ACTIONS(1605), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1851), - }, - [1712] = { - [sym_path] = STATE(1928), - [sym_comment] = STATE(1712), - [aux_sym_cell_path_repeat1] = STATE(1713), - [sym__newline] = ACTIONS(986), + [1727] = { + [sym_comment] = STATE(1727), + [sym__newline] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5124), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_err_GT_PIPE] = ACTIONS(5124), + [anon_sym_out_GT_PIPE] = ACTIONS(5124), + [anon_sym_e_GT_PIPE] = ACTIONS(5124), + [anon_sym_o_GT_PIPE] = ACTIONS(5124), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5124), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5124), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5124), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5126), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_DOLLAR] = ACTIONS(5126), + [anon_sym_DASH_DASH] = ACTIONS(5124), + [anon_sym_DASH2] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_DOT_DOT] = ACTIONS(5126), + [anon_sym_LPAREN2] = ACTIONS(5124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5124), + [anon_sym_DOT_DOT_LT] = ACTIONS(5124), + [anon_sym_null] = ACTIONS(5124), + [anon_sym_true] = ACTIONS(5124), + [anon_sym_false] = ACTIONS(5124), + [aux_sym__val_number_decimal_token1] = ACTIONS(5126), + [aux_sym__val_number_decimal_token2] = ACTIONS(5124), + [aux_sym__val_number_decimal_token3] = ACTIONS(5124), + [aux_sym__val_number_decimal_token4] = ACTIONS(5124), + [aux_sym__val_number_token1] = ACTIONS(5124), + [aux_sym__val_number_token2] = ACTIONS(5124), + [aux_sym__val_number_token3] = ACTIONS(5124), + [aux_sym__val_number_token4] = ACTIONS(5124), + [aux_sym__val_number_token5] = ACTIONS(5124), + [aux_sym__val_number_token6] = ACTIONS(5124), + [anon_sym_0b] = ACTIONS(5126), + [anon_sym_0o] = ACTIONS(5126), + [anon_sym_0x] = ACTIONS(5126), + [sym_val_date] = ACTIONS(5124), + [anon_sym_DQUOTE] = ACTIONS(5124), + [sym__str_single_quotes] = ACTIONS(5124), + [sym__str_back_ticks] = ACTIONS(5124), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5124), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5124), + [anon_sym_err_GT] = ACTIONS(5126), + [anon_sym_out_GT] = ACTIONS(5126), + [anon_sym_e_GT] = ACTIONS(5126), + [anon_sym_o_GT] = ACTIONS(5126), + [anon_sym_err_PLUSout_GT] = ACTIONS(5126), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5126), + [anon_sym_o_PLUSe_GT] = ACTIONS(5126), + [anon_sym_e_PLUSo_GT] = ACTIONS(5126), + [anon_sym_err_GT_GT] = ACTIONS(5124), + [anon_sym_out_GT_GT] = ACTIONS(5124), + [anon_sym_e_GT_GT] = ACTIONS(5124), + [anon_sym_o_GT_GT] = ACTIONS(5124), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5124), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5124), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5124), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5124), + [aux_sym_unquoted_token1] = ACTIONS(5126), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5124), + }, + [1728] = { + [sym_cell_path] = STATE(2171), + [sym_path] = STATE(2088), + [sym_comment] = STATE(1728), + [aux_sym_cell_path_repeat1] = STATE(1865), + [ts_builtin_sym_end] = ACTIONS(971), + [sym__newline] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_err_GT_PIPE] = ACTIONS(971), + [anon_sym_out_GT_PIPE] = ACTIONS(971), + [anon_sym_e_GT_PIPE] = ACTIONS(971), + [anon_sym_o_GT_PIPE] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), + [anon_sym_GT2] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(971), + [anon_sym_STAR2] = ACTIONS(969), + [anon_sym_and2] = ACTIONS(971), + [anon_sym_xor2] = ACTIONS(971), + [anon_sym_or2] = ACTIONS(971), + [anon_sym_not_DASHin2] = ACTIONS(971), + [anon_sym_starts_DASHwith2] = ACTIONS(971), + [anon_sym_ends_DASHwith2] = ACTIONS(971), + [anon_sym_EQ_EQ2] = ACTIONS(971), + [anon_sym_BANG_EQ2] = ACTIONS(971), + [anon_sym_LT2] = ACTIONS(969), + [anon_sym_LT_EQ2] = ACTIONS(971), + [anon_sym_GT_EQ2] = ACTIONS(971), + [anon_sym_EQ_TILDE2] = ACTIONS(971), + [anon_sym_BANG_TILDE2] = ACTIONS(971), + [anon_sym_STAR_STAR2] = ACTIONS(971), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(969), + [anon_sym_mod2] = ACTIONS(971), + [anon_sym_SLASH_SLASH2] = ACTIONS(971), + [anon_sym_PLUS2] = ACTIONS(969), + [anon_sym_bit_DASHshl2] = ACTIONS(971), + [anon_sym_bit_DASHshr2] = ACTIONS(971), + [anon_sym_bit_DASHand2] = ACTIONS(971), + [anon_sym_bit_DASHxor2] = ACTIONS(971), + [anon_sym_bit_DASHor2] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), + [anon_sym_DOT_DOT_LT2] = ACTIONS(971), + [anon_sym_err_GT] = ACTIONS(969), + [anon_sym_out_GT] = ACTIONS(969), + [anon_sym_e_GT] = ACTIONS(969), + [anon_sym_o_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT] = ACTIONS(969), + [anon_sym_err_GT_GT] = ACTIONS(971), + [anon_sym_out_GT_GT] = ACTIONS(971), + [anon_sym_e_GT_GT] = ACTIONS(971), + [anon_sym_o_GT_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(251), + }, + [1729] = { + [sym_comment] = STATE(1729), + [sym__newline] = ACTIONS(988), [anon_sym_SEMI] = ACTIONS(988), [anon_sym_PIPE] = ACTIONS(988), [anon_sym_err_GT_PIPE] = ACTIONS(988), @@ -238280,11 +242178,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), [anon_sym_GT2] = ACTIONS(986), [anon_sym_DASH2] = ACTIONS(988), [anon_sym_in2] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), [anon_sym_RBRACE] = ACTIONS(988), [anon_sym_STAR2] = ACTIONS(986), + [anon_sym_QMARK2] = ACTIONS(988), [anon_sym_and2] = ACTIONS(988), [anon_sym_xor2] = ACTIONS(988), [anon_sym_or2] = ACTIONS(988), @@ -238310,10 +242211,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(988), [anon_sym_bit_DASHor2] = ACTIONS(988), [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(4945), + [anon_sym_DOT] = ACTIONS(986), [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), [anon_sym_err_GT] = ACTIONS(986), [anon_sym_out_GT] = ACTIONS(986), [anon_sym_e_GT] = ACTIONS(986), @@ -238332,1039 +242232,1958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(251), }, - [1713] = { - [sym_path] = STATE(1928), - [sym_comment] = STATE(1713), - [aux_sym_cell_path_repeat1] = STATE(1713), - [sym__newline] = ACTIONS(979), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_err_GT_PIPE] = ACTIONS(981), - [anon_sym_out_GT_PIPE] = ACTIONS(981), - [anon_sym_e_GT_PIPE] = ACTIONS(981), - [anon_sym_o_GT_PIPE] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(981), - [anon_sym_GT2] = ACTIONS(979), - [anon_sym_DASH2] = ACTIONS(981), - [anon_sym_in2] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_STAR2] = ACTIONS(979), - [anon_sym_and2] = ACTIONS(981), - [anon_sym_xor2] = ACTIONS(981), - [anon_sym_or2] = ACTIONS(981), - [anon_sym_not_DASHin2] = ACTIONS(981), - [anon_sym_starts_DASHwith2] = ACTIONS(981), - [anon_sym_ends_DASHwith2] = ACTIONS(981), - [anon_sym_EQ_EQ2] = ACTIONS(981), - [anon_sym_BANG_EQ2] = ACTIONS(981), - [anon_sym_LT2] = ACTIONS(979), - [anon_sym_LT_EQ2] = ACTIONS(981), - [anon_sym_GT_EQ2] = ACTIONS(981), - [anon_sym_EQ_TILDE2] = ACTIONS(981), - [anon_sym_BANG_TILDE2] = ACTIONS(981), - [anon_sym_STAR_STAR2] = ACTIONS(981), - [anon_sym_PLUS_PLUS2] = ACTIONS(981), - [anon_sym_SLASH2] = ACTIONS(979), - [anon_sym_mod2] = ACTIONS(981), - [anon_sym_SLASH_SLASH2] = ACTIONS(981), - [anon_sym_PLUS2] = ACTIONS(979), - [anon_sym_bit_DASHshl2] = ACTIONS(981), - [anon_sym_bit_DASHshr2] = ACTIONS(981), - [anon_sym_bit_DASHand2] = ACTIONS(981), - [anon_sym_bit_DASHxor2] = ACTIONS(981), - [anon_sym_bit_DASHor2] = ACTIONS(981), - [anon_sym_DOT_DOT2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(5087), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(981), - [aux_sym_record_entry_token1] = ACTIONS(981), - [anon_sym_err_GT] = ACTIONS(979), - [anon_sym_out_GT] = ACTIONS(979), - [anon_sym_e_GT] = ACTIONS(979), - [anon_sym_o_GT] = ACTIONS(979), - [anon_sym_err_PLUSout_GT] = ACTIONS(979), - [anon_sym_out_PLUSerr_GT] = ACTIONS(979), - [anon_sym_o_PLUSe_GT] = ACTIONS(979), - [anon_sym_e_PLUSo_GT] = ACTIONS(979), - [anon_sym_err_GT_GT] = ACTIONS(981), - [anon_sym_out_GT_GT] = ACTIONS(981), - [anon_sym_e_GT_GT] = ACTIONS(981), - [anon_sym_o_GT_GT] = ACTIONS(981), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(981), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(981), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(981), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(251), - }, - [1714] = { - [sym_cell_path] = STATE(2097), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1714), - [aux_sym_cell_path_repeat1] = STATE(1681), - [sym__newline] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1887), - [anon_sym_err_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_GT_PIPE] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), - [anon_sym_RPAREN] = ACTIONS(1887), - [anon_sym_GT2] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_in2] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_EQ_GT] = ACTIONS(1887), - [anon_sym_STAR2] = ACTIONS(1885), - [anon_sym_and2] = ACTIONS(1887), - [anon_sym_xor2] = ACTIONS(1887), - [anon_sym_or2] = ACTIONS(1887), - [anon_sym_not_DASHin2] = ACTIONS(1887), - [anon_sym_starts_DASHwith2] = ACTIONS(1887), - [anon_sym_ends_DASHwith2] = ACTIONS(1887), - [anon_sym_EQ_EQ2] = ACTIONS(1887), - [anon_sym_BANG_EQ2] = ACTIONS(1887), - [anon_sym_LT2] = ACTIONS(1885), - [anon_sym_LT_EQ2] = ACTIONS(1887), - [anon_sym_GT_EQ2] = ACTIONS(1887), - [anon_sym_EQ_TILDE2] = ACTIONS(1887), - [anon_sym_BANG_TILDE2] = ACTIONS(1887), - [anon_sym_STAR_STAR2] = ACTIONS(1887), - [anon_sym_PLUS_PLUS2] = ACTIONS(1887), - [anon_sym_SLASH2] = ACTIONS(1885), - [anon_sym_mod2] = ACTIONS(1887), - [anon_sym_SLASH_SLASH2] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1885), - [anon_sym_bit_DASHshl2] = ACTIONS(1887), - [anon_sym_bit_DASHshr2] = ACTIONS(1887), - [anon_sym_bit_DASHand2] = ACTIONS(1887), - [anon_sym_bit_DASHxor2] = ACTIONS(1887), - [anon_sym_bit_DASHor2] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_err_GT] = ACTIONS(1885), - [anon_sym_out_GT] = ACTIONS(1885), - [anon_sym_e_GT] = ACTIONS(1885), - [anon_sym_o_GT] = ACTIONS(1885), - [anon_sym_err_PLUSout_GT] = ACTIONS(1885), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1885), - [anon_sym_o_PLUSe_GT] = ACTIONS(1885), - [anon_sym_e_PLUSo_GT] = ACTIONS(1885), - [anon_sym_err_GT_GT] = ACTIONS(1887), - [anon_sym_out_GT_GT] = ACTIONS(1887), - [anon_sym_e_GT_GT] = ACTIONS(1887), - [anon_sym_o_GT_GT] = ACTIONS(1887), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [1730] = { + [sym__expr_parenthesized_immediate] = STATE(8466), + [sym_comment] = STATE(1730), + [ts_builtin_sym_end] = ACTIONS(5063), + [sym__newline] = ACTIONS(5063), + [anon_sym_SEMI] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5063), + [anon_sym_err_GT_PIPE] = ACTIONS(5063), + [anon_sym_out_GT_PIPE] = ACTIONS(5063), + [anon_sym_e_GT_PIPE] = ACTIONS(5063), + [anon_sym_o_GT_PIPE] = ACTIONS(5063), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5063), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5063), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5063), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_DASH2] = ACTIONS(5065), + [anon_sym_LBRACE] = ACTIONS(5063), + [anon_sym_DOT_DOT] = ACTIONS(5065), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5063), + [anon_sym_DOT_DOT_LT] = ACTIONS(5063), + [anon_sym_null] = ACTIONS(5063), + [anon_sym_true] = ACTIONS(5063), + [anon_sym_false] = ACTIONS(5063), + [aux_sym__val_number_decimal_token1] = ACTIONS(5065), + [aux_sym__val_number_decimal_token2] = ACTIONS(5063), + [aux_sym__val_number_decimal_token3] = ACTIONS(5063), + [aux_sym__val_number_decimal_token4] = ACTIONS(5063), + [aux_sym__val_number_token1] = ACTIONS(5063), + [aux_sym__val_number_token2] = ACTIONS(5063), + [aux_sym__val_number_token3] = ACTIONS(5063), + [aux_sym__val_number_token4] = ACTIONS(5063), + [aux_sym__val_number_token5] = ACTIONS(5063), + [aux_sym__val_number_token6] = ACTIONS(5063), + [anon_sym_0b] = ACTIONS(5065), + [anon_sym_0o] = ACTIONS(5065), + [anon_sym_0x] = ACTIONS(5065), + [sym_val_date] = ACTIONS(5063), + [anon_sym_DQUOTE] = ACTIONS(5063), + [sym__str_single_quotes] = ACTIONS(5063), + [sym__str_back_ticks] = ACTIONS(5063), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5063), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5063), + [anon_sym_err_GT] = ACTIONS(5065), + [anon_sym_out_GT] = ACTIONS(5065), + [anon_sym_e_GT] = ACTIONS(5065), + [anon_sym_o_GT] = ACTIONS(5065), + [anon_sym_err_PLUSout_GT] = ACTIONS(5065), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5065), + [anon_sym_o_PLUSe_GT] = ACTIONS(5065), + [anon_sym_e_PLUSo_GT] = ACTIONS(5065), + [anon_sym_err_GT_GT] = ACTIONS(5063), + [anon_sym_out_GT_GT] = ACTIONS(5063), + [anon_sym_e_GT_GT] = ACTIONS(5063), + [anon_sym_o_GT_GT] = ACTIONS(5063), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5063), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5063), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5063), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5063), + [aux_sym_unquoted_token1] = ACTIONS(5065), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5063), + }, + [1731] = { + [sym_comment] = STATE(1731), + [sym__newline] = ACTIONS(5130), + [anon_sym_SEMI] = ACTIONS(5130), + [anon_sym_PIPE] = ACTIONS(5130), + [anon_sym_err_GT_PIPE] = ACTIONS(5130), + [anon_sym_out_GT_PIPE] = ACTIONS(5130), + [anon_sym_e_GT_PIPE] = ACTIONS(5130), + [anon_sym_o_GT_PIPE] = ACTIONS(5130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5130), + [anon_sym_LBRACK] = ACTIONS(5130), + [anon_sym_LPAREN] = ACTIONS(5130), + [anon_sym_RPAREN] = ACTIONS(5130), + [anon_sym_DOLLAR] = ACTIONS(5132), + [anon_sym_DASH_DASH] = ACTIONS(5130), + [anon_sym_DASH2] = ACTIONS(5132), + [anon_sym_LBRACE] = ACTIONS(5130), + [anon_sym_RBRACE] = ACTIONS(5130), + [anon_sym_DOT_DOT] = ACTIONS(5132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5130), + [anon_sym_DOT_DOT_LT] = ACTIONS(5130), + [anon_sym_null] = ACTIONS(5130), + [anon_sym_true] = ACTIONS(5130), + [anon_sym_false] = ACTIONS(5130), + [aux_sym__val_number_decimal_token1] = ACTIONS(5132), + [aux_sym__val_number_decimal_token2] = ACTIONS(5130), + [aux_sym__val_number_decimal_token3] = ACTIONS(5130), + [aux_sym__val_number_decimal_token4] = ACTIONS(5130), + [aux_sym__val_number_token1] = ACTIONS(5130), + [aux_sym__val_number_token2] = ACTIONS(5130), + [aux_sym__val_number_token3] = ACTIONS(5130), + [aux_sym__val_number_token4] = ACTIONS(5130), + [aux_sym__val_number_token5] = ACTIONS(5130), + [aux_sym__val_number_token6] = ACTIONS(5130), + [anon_sym_0b] = ACTIONS(5132), + [anon_sym_0o] = ACTIONS(5132), + [anon_sym_0x] = ACTIONS(5132), + [sym_val_date] = ACTIONS(5130), + [anon_sym_DQUOTE] = ACTIONS(5130), + [sym__str_single_quotes] = ACTIONS(5130), + [sym__str_back_ticks] = ACTIONS(5130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5130), + [anon_sym_err_GT] = ACTIONS(5132), + [anon_sym_out_GT] = ACTIONS(5132), + [anon_sym_e_GT] = ACTIONS(5132), + [anon_sym_o_GT] = ACTIONS(5132), + [anon_sym_err_PLUSout_GT] = ACTIONS(5132), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5132), + [anon_sym_o_PLUSe_GT] = ACTIONS(5132), + [anon_sym_e_PLUSo_GT] = ACTIONS(5132), + [anon_sym_err_GT_GT] = ACTIONS(5130), + [anon_sym_out_GT_GT] = ACTIONS(5130), + [anon_sym_e_GT_GT] = ACTIONS(5130), + [anon_sym_o_GT_GT] = ACTIONS(5130), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5130), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5130), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5130), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5130), + [anon_sym_EQ2] = ACTIONS(5134), + [aux_sym_unquoted_token1] = ACTIONS(5132), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5130), + }, + [1732] = { + [sym_comment] = STATE(1732), + [sym__newline] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym_PIPE] = ACTIONS(5136), + [anon_sym_err_GT_PIPE] = ACTIONS(5136), + [anon_sym_out_GT_PIPE] = ACTIONS(5136), + [anon_sym_e_GT_PIPE] = ACTIONS(5136), + [anon_sym_o_GT_PIPE] = ACTIONS(5136), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5136), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5136), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5136), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5138), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_DOLLAR] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5136), + [anon_sym_DASH2] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_DOT_DOT] = ACTIONS(5138), + [anon_sym_LPAREN2] = ACTIONS(5136), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5136), + [anon_sym_DOT_DOT_LT] = ACTIONS(5136), + [anon_sym_null] = ACTIONS(5136), + [anon_sym_true] = ACTIONS(5136), + [anon_sym_false] = ACTIONS(5136), + [aux_sym__val_number_decimal_token1] = ACTIONS(5138), + [aux_sym__val_number_decimal_token2] = ACTIONS(5136), + [aux_sym__val_number_decimal_token3] = ACTIONS(5136), + [aux_sym__val_number_decimal_token4] = ACTIONS(5136), + [aux_sym__val_number_token1] = ACTIONS(5136), + [aux_sym__val_number_token2] = ACTIONS(5136), + [aux_sym__val_number_token3] = ACTIONS(5136), + [aux_sym__val_number_token4] = ACTIONS(5136), + [aux_sym__val_number_token5] = ACTIONS(5136), + [aux_sym__val_number_token6] = ACTIONS(5136), + [anon_sym_0b] = ACTIONS(5138), + [anon_sym_0o] = ACTIONS(5138), + [anon_sym_0x] = ACTIONS(5138), + [sym_val_date] = ACTIONS(5136), + [anon_sym_DQUOTE] = ACTIONS(5136), + [sym__str_single_quotes] = ACTIONS(5136), + [sym__str_back_ticks] = ACTIONS(5136), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5136), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5136), + [anon_sym_err_GT] = ACTIONS(5138), + [anon_sym_out_GT] = ACTIONS(5138), + [anon_sym_e_GT] = ACTIONS(5138), + [anon_sym_o_GT] = ACTIONS(5138), + [anon_sym_err_PLUSout_GT] = ACTIONS(5138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5138), + [anon_sym_o_PLUSe_GT] = ACTIONS(5138), + [anon_sym_e_PLUSo_GT] = ACTIONS(5138), + [anon_sym_err_GT_GT] = ACTIONS(5136), + [anon_sym_out_GT_GT] = ACTIONS(5136), + [anon_sym_e_GT_GT] = ACTIONS(5136), + [anon_sym_o_GT_GT] = ACTIONS(5136), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5136), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5136), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5136), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5136), + [aux_sym_unquoted_token1] = ACTIONS(5138), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(5136), + }, + [1733] = { + [sym_path] = STATE(1898), + [sym_comment] = STATE(1733), + [aux_sym_cell_path_repeat1] = STATE(1741), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + }, + [1734] = { + [sym_comment] = STATE(1734), + [sym__newline] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_PIPE] = ACTIONS(2308), + [anon_sym_err_GT_PIPE] = ACTIONS(2308), + [anon_sym_out_GT_PIPE] = ACTIONS(2308), + [anon_sym_e_GT_PIPE] = ACTIONS(2308), + [anon_sym_o_GT_PIPE] = ACTIONS(2308), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2308), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2308), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2308), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_RPAREN] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_DOT_DOT] = ACTIONS(2304), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2308), + [anon_sym_DOT_DOT_LT] = ACTIONS(2308), + [anon_sym_null] = ACTIONS(2308), + [anon_sym_true] = ACTIONS(2308), + [anon_sym_false] = 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(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_0b] = ACTIONS(2304), + [anon_sym_0o] = ACTIONS(2304), + [anon_sym_0x] = ACTIONS(2304), + [anon_sym_LBRACK2] = ACTIONS(5140), + [sym_val_date] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2308), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2308), + [anon_sym_err_GT] = ACTIONS(2304), + [anon_sym_out_GT] = ACTIONS(2304), + [anon_sym_e_GT] = ACTIONS(2304), + [anon_sym_o_GT] = ACTIONS(2304), + [anon_sym_err_PLUSout_GT] = ACTIONS(2304), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), + [anon_sym_o_PLUSe_GT] = ACTIONS(2304), + [anon_sym_e_PLUSo_GT] = ACTIONS(2304), + [anon_sym_err_GT_GT] = ACTIONS(2308), + [anon_sym_out_GT_GT] = ACTIONS(2308), + [anon_sym_e_GT_GT] = ACTIONS(2308), + [anon_sym_o_GT_GT] = ACTIONS(2308), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2308), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2308), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2308), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2308), + [aux_sym_unquoted_token1] = ACTIONS(2304), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2308), + }, + [1735] = { + [sym__expr_parenthesized_immediate] = STATE(8466), + [sym_comment] = STATE(1735), + [ts_builtin_sym_end] = ACTIONS(4986), + [sym__newline] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4986), + [anon_sym_err_GT_PIPE] = ACTIONS(4986), + [anon_sym_out_GT_PIPE] = ACTIONS(4986), + [anon_sym_e_GT_PIPE] = ACTIONS(4986), + [anon_sym_o_GT_PIPE] = ACTIONS(4986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(4988), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_DASH2] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_DOT_DOT] = ACTIONS(4988), + [anon_sym_LPAREN2] = ACTIONS(4149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_DOT_DOT_LT] = ACTIONS(4986), + [anon_sym_null] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4986), + [anon_sym_false] = ACTIONS(4986), + [aux_sym__val_number_decimal_token1] = ACTIONS(4988), + [aux_sym__val_number_decimal_token2] = ACTIONS(4986), + [aux_sym__val_number_decimal_token3] = ACTIONS(4986), + [aux_sym__val_number_decimal_token4] = ACTIONS(4986), + [aux_sym__val_number_token1] = ACTIONS(4986), + [aux_sym__val_number_token2] = ACTIONS(4986), + [aux_sym__val_number_token3] = ACTIONS(4986), + [aux_sym__val_number_token4] = ACTIONS(4986), + [aux_sym__val_number_token5] = ACTIONS(4986), + [aux_sym__val_number_token6] = ACTIONS(4986), + [anon_sym_0b] = ACTIONS(4988), + [anon_sym_0o] = ACTIONS(4988), + [anon_sym_0x] = ACTIONS(4988), + [sym_val_date] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(4986), + [sym__str_single_quotes] = ACTIONS(4986), + [sym__str_back_ticks] = ACTIONS(4986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4986), + [anon_sym_err_GT] = ACTIONS(4988), + [anon_sym_out_GT] = ACTIONS(4988), + [anon_sym_e_GT] = ACTIONS(4988), + [anon_sym_o_GT] = ACTIONS(4988), + [anon_sym_err_PLUSout_GT] = ACTIONS(4988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4988), + [anon_sym_o_PLUSe_GT] = ACTIONS(4988), + [anon_sym_e_PLUSo_GT] = ACTIONS(4988), + [anon_sym_err_GT_GT] = ACTIONS(4986), + [anon_sym_out_GT_GT] = ACTIONS(4986), + [anon_sym_e_GT_GT] = ACTIONS(4986), + [anon_sym_o_GT_GT] = ACTIONS(4986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4986), + [aux_sym_unquoted_token1] = ACTIONS(4988), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4986), }, - [1715] = { - [sym_comment] = STATE(1715), - [ts_builtin_sym_end] = ACTIONS(2294), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2290), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2290), - [anon_sym_DOT_DOT_LT] = ACTIONS(2290), - [anon_sym_null] = ACTIONS(2290), - [anon_sym_true] = ACTIONS(2290), - [anon_sym_false] = ACTIONS(2290), - [aux_sym__val_number_decimal_token1] = ACTIONS(2290), - [aux_sym__val_number_decimal_token2] = ACTIONS(2290), - [aux_sym__val_number_decimal_token3] = ACTIONS(2290), - [aux_sym__val_number_decimal_token4] = ACTIONS(2290), - [aux_sym__val_number_token1] = ACTIONS(2290), - [aux_sym__val_number_token2] = ACTIONS(2290), - [aux_sym__val_number_token3] = ACTIONS(2290), - [aux_sym__val_number_token4] = ACTIONS(2290), - [aux_sym__val_number_token5] = ACTIONS(2290), - [aux_sym__val_number_token6] = ACTIONS(2290), - [anon_sym_0b] = ACTIONS(2290), - [anon_sym_0o] = ACTIONS(2290), - [anon_sym_0x] = ACTIONS(2290), - [sym_val_date] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2290), - [anon_sym_out_GT_GT] = ACTIONS(2290), - [anon_sym_e_GT_GT] = ACTIONS(2290), - [anon_sym_o_GT_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2290), - [aux_sym_unquoted_token1] = ACTIONS(2290), - [aux_sym_unquoted_token4] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), - }, - [1716] = { - [sym_comment] = STATE(1716), - [ts_builtin_sym_end] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_DOLLAR] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_DASH2] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_DOT_DOT] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), - [anon_sym_DOT_DOT_LT] = ACTIONS(2280), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = 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(2280), - [aux_sym__val_number_token5] = ACTIONS(2280), - [aux_sym__val_number_token6] = ACTIONS(2280), - [anon_sym_0b] = ACTIONS(2278), - [anon_sym_0o] = ACTIONS(2278), - [anon_sym_0x] = ACTIONS(2278), - [sym_val_date] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym__str_single_quotes] = ACTIONS(2280), - [sym__str_back_ticks] = ACTIONS(2280), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2280), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [aux_sym_unquoted_token1] = ACTIONS(2278), - [aux_sym_unquoted_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2280), - }, - [1717] = { - [sym_comment] = STATE(1717), - [ts_builtin_sym_end] = ACTIONS(1836), - [sym__newline] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_err_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_GT_PIPE] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_DASH2] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_LPAREN2] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1836), - [anon_sym_DOT_DOT_LT] = ACTIONS(1836), - [anon_sym_null] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1836), - [aux_sym__val_number_decimal_token3] = ACTIONS(1836), - [aux_sym__val_number_decimal_token4] = ACTIONS(1836), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1836), - [aux_sym__val_number_token5] = ACTIONS(1836), - [aux_sym__val_number_token6] = ACTIONS(1836), - [anon_sym_0b] = ACTIONS(1828), - [anon_sym_0o] = ACTIONS(1828), - [anon_sym_0x] = ACTIONS(1828), - [sym_val_date] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__str_single_quotes] = ACTIONS(1836), - [sym__str_back_ticks] = ACTIONS(1836), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1836), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1836), - [anon_sym_err_GT] = ACTIONS(1828), - [anon_sym_out_GT] = ACTIONS(1828), - [anon_sym_e_GT] = ACTIONS(1828), - [anon_sym_o_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT] = ACTIONS(1828), - [anon_sym_err_GT_GT] = ACTIONS(1836), - [anon_sym_out_GT_GT] = ACTIONS(1836), - [anon_sym_e_GT_GT] = ACTIONS(1836), - [anon_sym_o_GT_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1836), - [aux_sym_unquoted_token1] = ACTIONS(1828), - [aux_sym_unquoted_token2] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1836), - }, - [1718] = { - [sym_cell_path] = STATE(2153), - [sym_path] = STATE(1995), - [sym_comment] = STATE(1718), - [aux_sym_cell_path_repeat1] = STATE(1807), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym__newline] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_err_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_GT_PIPE] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1779), - [anon_sym_GT2] = ACTIONS(1777), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_STAR2] = ACTIONS(1777), - [anon_sym_and2] = ACTIONS(1779), - [anon_sym_xor2] = ACTIONS(1779), - [anon_sym_or2] = ACTIONS(1779), - [anon_sym_not_DASHin2] = ACTIONS(1779), - [anon_sym_starts_DASHwith2] = ACTIONS(1779), - [anon_sym_ends_DASHwith2] = ACTIONS(1779), - [anon_sym_EQ_EQ2] = ACTIONS(1779), - [anon_sym_BANG_EQ2] = ACTIONS(1779), - [anon_sym_LT2] = ACTIONS(1777), - [anon_sym_LT_EQ2] = ACTIONS(1779), - [anon_sym_GT_EQ2] = ACTIONS(1779), - [anon_sym_EQ_TILDE2] = ACTIONS(1779), - [anon_sym_BANG_TILDE2] = ACTIONS(1779), - [anon_sym_STAR_STAR2] = ACTIONS(1779), - [anon_sym_PLUS_PLUS2] = ACTIONS(1779), - [anon_sym_SLASH2] = ACTIONS(1777), - [anon_sym_mod2] = ACTIONS(1779), - [anon_sym_SLASH_SLASH2] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1777), - [anon_sym_bit_DASHshl2] = ACTIONS(1779), - [anon_sym_bit_DASHshr2] = ACTIONS(1779), - [anon_sym_bit_DASHand2] = ACTIONS(1779), - [anon_sym_bit_DASHxor2] = ACTIONS(1779), - [anon_sym_bit_DASHor2] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1777), - [anon_sym_DOT] = ACTIONS(5046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1779), - [anon_sym_err_GT] = ACTIONS(1777), - [anon_sym_out_GT] = ACTIONS(1777), - [anon_sym_e_GT] = ACTIONS(1777), - [anon_sym_o_GT] = ACTIONS(1777), - [anon_sym_err_PLUSout_GT] = ACTIONS(1777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1777), - [anon_sym_o_PLUSe_GT] = ACTIONS(1777), - [anon_sym_e_PLUSo_GT] = ACTIONS(1777), - [anon_sym_err_GT_GT] = ACTIONS(1779), - [anon_sym_out_GT_GT] = ACTIONS(1779), - [anon_sym_e_GT_GT] = ACTIONS(1779), - [anon_sym_o_GT_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1779), + [1736] = { + [sym_cell_path] = STATE(1738), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1736), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_EQ_GT] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1757), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1757), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1757), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(251), + }, + [1737] = { + [sym_cell_path] = STATE(2202), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1737), + [aux_sym_cell_path_repeat1] = STATE(1733), + [sym__newline] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_err_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_GT_PIPE] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), + [anon_sym_RPAREN] = ACTIONS(1951), + [anon_sym_GT2] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1951), + [anon_sym_in2] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_EQ_GT] = ACTIONS(1951), + [anon_sym_STAR2] = ACTIONS(1949), + [anon_sym_and2] = ACTIONS(1951), + [anon_sym_xor2] = ACTIONS(1951), + [anon_sym_or2] = ACTIONS(1951), + [anon_sym_not_DASHin2] = ACTIONS(1951), + [anon_sym_starts_DASHwith2] = ACTIONS(1951), + [anon_sym_ends_DASHwith2] = ACTIONS(1951), + [anon_sym_EQ_EQ2] = ACTIONS(1951), + [anon_sym_BANG_EQ2] = ACTIONS(1951), + [anon_sym_LT2] = ACTIONS(1949), + [anon_sym_LT_EQ2] = ACTIONS(1951), + [anon_sym_GT_EQ2] = ACTIONS(1951), + [anon_sym_EQ_TILDE2] = ACTIONS(1951), + [anon_sym_BANG_TILDE2] = ACTIONS(1951), + [anon_sym_STAR_STAR2] = ACTIONS(1951), + [anon_sym_PLUS_PLUS2] = ACTIONS(1951), + [anon_sym_SLASH2] = ACTIONS(1949), + [anon_sym_mod2] = ACTIONS(1951), + [anon_sym_SLASH_SLASH2] = ACTIONS(1951), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_bit_DASHshl2] = ACTIONS(1951), + [anon_sym_bit_DASHshr2] = ACTIONS(1951), + [anon_sym_bit_DASHand2] = ACTIONS(1951), + [anon_sym_bit_DASHxor2] = ACTIONS(1951), + [anon_sym_bit_DASHor2] = ACTIONS(1951), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1951), + [anon_sym_out_GT_GT] = ACTIONS(1951), + [anon_sym_e_GT_GT] = ACTIONS(1951), + [anon_sym_o_GT_GT] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(251), }, - [1719] = { - [sym_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym__newline] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_err_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_GT_PIPE] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_DOLLAR] = ACTIONS(1793), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DASH2] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), - [anon_sym_DOT_DOT_LT] = ACTIONS(1795), - [aux_sym__immediate_decimal_token1] = ACTIONS(5090), - [aux_sym__immediate_decimal_token2] = ACTIONS(5092), - [anon_sym_null] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [aux_sym__val_number_decimal_token1] = ACTIONS(1793), - [aux_sym__val_number_decimal_token2] = ACTIONS(1795), - [aux_sym__val_number_decimal_token3] = ACTIONS(1795), - [aux_sym__val_number_decimal_token4] = ACTIONS(1795), - [aux_sym__val_number_token1] = ACTIONS(1795), - [aux_sym__val_number_token2] = ACTIONS(1795), - [aux_sym__val_number_token3] = ACTIONS(1795), - [aux_sym__val_number_token4] = ACTIONS(1795), - [aux_sym__val_number_token5] = ACTIONS(1795), - [aux_sym__val_number_token6] = ACTIONS(1795), - [anon_sym_0b] = ACTIONS(1793), - [anon_sym_0o] = ACTIONS(1793), - [anon_sym_0x] = ACTIONS(1793), - [sym_val_date] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [sym__str_single_quotes] = ACTIONS(1795), - [sym__str_back_ticks] = ACTIONS(1795), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), - [anon_sym_err_GT] = ACTIONS(1793), - [anon_sym_out_GT] = ACTIONS(1793), - [anon_sym_e_GT] = ACTIONS(1793), - [anon_sym_o_GT] = ACTIONS(1793), - [anon_sym_err_PLUSout_GT] = ACTIONS(1793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), - [anon_sym_o_PLUSe_GT] = ACTIONS(1793), - [anon_sym_e_PLUSo_GT] = ACTIONS(1793), - [anon_sym_err_GT_GT] = ACTIONS(1795), - [anon_sym_out_GT_GT] = ACTIONS(1795), - [anon_sym_e_GT_GT] = ACTIONS(1795), - [anon_sym_o_GT_GT] = ACTIONS(1795), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1795), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1795), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1795), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1795), - [aux_sym_unquoted_token1] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1795), - }, - [1720] = { - [sym__expr_parenthesized_immediate] = STATE(7677), - [sym_comment] = STATE(1720), - [ts_builtin_sym_end] = ACTIONS(4938), - [sym__newline] = ACTIONS(4938), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4938), - [anon_sym_err_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_GT_PIPE] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4940), - [anon_sym_DOLLAR] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_DASH2] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4940), - [anon_sym_LPAREN2] = ACTIONS(4223), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), - [anon_sym_DOT_DOT_LT] = ACTIONS(4938), - [anon_sym_null] = ACTIONS(4938), - [anon_sym_true] = ACTIONS(4938), - [anon_sym_false] = ACTIONS(4938), - [aux_sym__val_number_decimal_token1] = ACTIONS(4940), - [aux_sym__val_number_decimal_token2] = ACTIONS(4938), - [aux_sym__val_number_decimal_token3] = ACTIONS(4938), - [aux_sym__val_number_decimal_token4] = ACTIONS(4938), - [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(4938), - [aux_sym__val_number_token6] = ACTIONS(4938), - [anon_sym_0b] = ACTIONS(4940), - [anon_sym_0o] = ACTIONS(4940), - [anon_sym_0x] = ACTIONS(4940), - [sym_val_date] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4938), - [sym__str_single_quotes] = ACTIONS(4938), - [sym__str_back_ticks] = ACTIONS(4938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4938), - [anon_sym_err_GT] = ACTIONS(4940), - [anon_sym_out_GT] = ACTIONS(4940), - [anon_sym_e_GT] = ACTIONS(4940), - [anon_sym_o_GT] = ACTIONS(4940), - [anon_sym_err_PLUSout_GT] = ACTIONS(4940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), - [anon_sym_o_PLUSe_GT] = ACTIONS(4940), - [anon_sym_e_PLUSo_GT] = ACTIONS(4940), - [anon_sym_err_GT_GT] = ACTIONS(4938), - [anon_sym_out_GT_GT] = ACTIONS(4938), - [anon_sym_e_GT_GT] = ACTIONS(4938), - [anon_sym_o_GT_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), - [aux_sym_unquoted_token1] = ACTIONS(4940), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4938), - }, - [1721] = { - [sym_comment] = STATE(1721), - [ts_builtin_sym_end] = ACTIONS(2233), - [sym__newline] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_err_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_GT_PIPE] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_LT] = ACTIONS(2233), - [anon_sym_null] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2233), - [aux_sym__val_number_decimal_token3] = ACTIONS(2233), - [aux_sym__val_number_decimal_token4] = ACTIONS(2233), - [aux_sym__val_number_token1] = ACTIONS(2233), - [aux_sym__val_number_token2] = ACTIONS(2233), - [aux_sym__val_number_token3] = ACTIONS(2233), - [aux_sym__val_number_token4] = ACTIONS(2233), - [aux_sym__val_number_token5] = ACTIONS(2233), - [aux_sym__val_number_token6] = ACTIONS(2233), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2233), - [anon_sym_out_GT_GT] = ACTIONS(2233), - [anon_sym_e_GT_GT] = ACTIONS(2233), - [anon_sym_o_GT_GT] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2233), - [aux_sym_unquoted_token1] = ACTIONS(2229), - [aux_sym_unquoted_token2] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2233), - }, - [1722] = { - [sym_comment] = STATE(1722), - [ts_builtin_sym_end] = ACTIONS(2243), - [sym__newline] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_err_GT_PIPE] = ACTIONS(2243), - [anon_sym_out_GT_PIPE] = ACTIONS(2243), - [anon_sym_e_GT_PIPE] = ACTIONS(2243), - [anon_sym_o_GT_PIPE] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_DOLLAR] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2243), - [anon_sym_DASH2] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_DOT_DOT] = ACTIONS(2239), - [anon_sym_LPAREN2] = ACTIONS(2241), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2243), - [anon_sym_DOT_DOT_LT] = ACTIONS(2243), - [anon_sym_null] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [aux_sym__val_number_decimal_token1] = ACTIONS(2239), - [aux_sym__val_number_decimal_token2] = ACTIONS(2243), - [aux_sym__val_number_decimal_token3] = ACTIONS(2243), - [aux_sym__val_number_decimal_token4] = ACTIONS(2243), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [aux_sym__val_number_token4] = ACTIONS(2243), - [aux_sym__val_number_token5] = ACTIONS(2243), - [aux_sym__val_number_token6] = ACTIONS(2243), - [anon_sym_0b] = ACTIONS(2239), - [anon_sym_0o] = ACTIONS(2239), - [anon_sym_0x] = ACTIONS(2239), - [sym_val_date] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2243), - [sym__str_single_quotes] = ACTIONS(2243), - [sym__str_back_ticks] = ACTIONS(2243), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2243), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2243), - [anon_sym_err_GT] = ACTIONS(2239), - [anon_sym_out_GT] = ACTIONS(2239), - [anon_sym_e_GT] = ACTIONS(2239), - [anon_sym_o_GT] = ACTIONS(2239), - [anon_sym_err_PLUSout_GT] = ACTIONS(2239), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2239), - [anon_sym_o_PLUSe_GT] = ACTIONS(2239), - [anon_sym_e_PLUSo_GT] = ACTIONS(2239), - [anon_sym_err_GT_GT] = ACTIONS(2243), - [anon_sym_out_GT_GT] = ACTIONS(2243), - [anon_sym_e_GT_GT] = ACTIONS(2243), - [anon_sym_o_GT_GT] = ACTIONS(2243), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2243), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2243), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2243), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2243), - [aux_sym_unquoted_token1] = ACTIONS(2239), - [aux_sym_unquoted_token2] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2243), + [1738] = { + [sym_comment] = STATE(1738), + [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_if] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_EQ_GT] = 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_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), + [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), + [anon_sym_POUND] = ACTIONS(251), + }, + [1739] = { + [sym_cell_path] = STATE(1742), + [sym_path] = STATE(1898), + [sym_comment] = STATE(1739), + [aux_sym_cell_path_repeat1] = STATE(1733), + [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_EQ_GT] = 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_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] = ACTIONS(4980), + [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), + [anon_sym_POUND] = ACTIONS(251), + }, + [1740] = { + [sym_comment] = STATE(1740), + [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_if] = 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_DOT2] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT2] = 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), + [anon_sym_POUND] = ACTIONS(251), }, - [1723] = { - [sym_cell_path] = STATE(2134), - [sym_path] = STATE(1921), - [sym_comment] = STATE(1723), - [aux_sym_cell_path_repeat1] = STATE(1681), - [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_RPAREN] = ACTIONS(1895), - [anon_sym_GT2] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_in2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_EQ_GT] = ACTIONS(1895), - [anon_sym_STAR2] = ACTIONS(1893), - [anon_sym_and2] = ACTIONS(1895), - [anon_sym_xor2] = ACTIONS(1895), - [anon_sym_or2] = ACTIONS(1895), - [anon_sym_not_DASHin2] = ACTIONS(1895), - [anon_sym_starts_DASHwith2] = ACTIONS(1895), - [anon_sym_ends_DASHwith2] = ACTIONS(1895), - [anon_sym_EQ_EQ2] = ACTIONS(1895), - [anon_sym_BANG_EQ2] = ACTIONS(1895), - [anon_sym_LT2] = ACTIONS(1893), - [anon_sym_LT_EQ2] = ACTIONS(1895), - [anon_sym_GT_EQ2] = ACTIONS(1895), - [anon_sym_EQ_TILDE2] = ACTIONS(1895), - [anon_sym_BANG_TILDE2] = ACTIONS(1895), - [anon_sym_STAR_STAR2] = ACTIONS(1895), - [anon_sym_PLUS_PLUS2] = ACTIONS(1895), - [anon_sym_SLASH2] = ACTIONS(1893), - [anon_sym_mod2] = ACTIONS(1895), - [anon_sym_SLASH_SLASH2] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1893), - [anon_sym_bit_DASHshl2] = ACTIONS(1895), - [anon_sym_bit_DASHshr2] = ACTIONS(1895), - [anon_sym_bit_DASHand2] = ACTIONS(1895), - [anon_sym_bit_DASHxor2] = ACTIONS(1895), - [anon_sym_bit_DASHor2] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(4916), - [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), + [1741] = { + [sym_path] = STATE(1898), + [sym_comment] = STATE(1741), + [aux_sym_cell_path_repeat1] = STATE(1741), + [sym__newline] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_GT2] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(977), + [anon_sym_in2] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_STAR2] = ACTIONS(975), + [anon_sym_and2] = ACTIONS(977), + [anon_sym_xor2] = ACTIONS(977), + [anon_sym_or2] = ACTIONS(977), + [anon_sym_not_DASHin2] = ACTIONS(977), + [anon_sym_starts_DASHwith2] = ACTIONS(977), + [anon_sym_ends_DASHwith2] = ACTIONS(977), + [anon_sym_EQ_EQ2] = ACTIONS(977), + [anon_sym_BANG_EQ2] = ACTIONS(977), + [anon_sym_LT2] = ACTIONS(975), + [anon_sym_LT_EQ2] = ACTIONS(977), + [anon_sym_GT_EQ2] = ACTIONS(977), + [anon_sym_EQ_TILDE2] = ACTIONS(977), + [anon_sym_BANG_TILDE2] = ACTIONS(977), + [anon_sym_STAR_STAR2] = ACTIONS(977), + [anon_sym_PLUS_PLUS2] = ACTIONS(977), + [anon_sym_SLASH2] = ACTIONS(975), + [anon_sym_mod2] = ACTIONS(977), + [anon_sym_SLASH_SLASH2] = ACTIONS(977), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_bit_DASHshl2] = ACTIONS(977), + [anon_sym_bit_DASHshr2] = ACTIONS(977), + [anon_sym_bit_DASHand2] = ACTIONS(977), + [anon_sym_bit_DASHxor2] = ACTIONS(977), + [anon_sym_bit_DASHor2] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), + }, + [1742] = { + [sym_comment] = STATE(1742), + [sym__newline] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_err_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_GT_PIPE] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), + [anon_sym_RPAREN] = ACTIONS(2125), + [anon_sym_GT2] = ACTIONS(2123), + [anon_sym_DASH2] = ACTIONS(2125), + [anon_sym_in2] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_EQ_GT] = ACTIONS(2125), + [anon_sym_STAR2] = ACTIONS(2123), + [anon_sym_and2] = ACTIONS(2125), + [anon_sym_xor2] = ACTIONS(2125), + [anon_sym_or2] = ACTIONS(2125), + [anon_sym_not_DASHin2] = ACTIONS(2125), + [anon_sym_starts_DASHwith2] = ACTIONS(2125), + [anon_sym_ends_DASHwith2] = ACTIONS(2125), + [anon_sym_EQ_EQ2] = ACTIONS(2125), + [anon_sym_BANG_EQ2] = ACTIONS(2125), + [anon_sym_LT2] = ACTIONS(2123), + [anon_sym_LT_EQ2] = ACTIONS(2125), + [anon_sym_GT_EQ2] = ACTIONS(2125), + [anon_sym_EQ_TILDE2] = ACTIONS(2125), + [anon_sym_BANG_TILDE2] = ACTIONS(2125), + [anon_sym_STAR_STAR2] = ACTIONS(2125), + [anon_sym_PLUS_PLUS2] = ACTIONS(2125), + [anon_sym_SLASH2] = ACTIONS(2123), + [anon_sym_mod2] = ACTIONS(2125), + [anon_sym_SLASH_SLASH2] = ACTIONS(2125), + [anon_sym_PLUS2] = ACTIONS(2123), + [anon_sym_bit_DASHshl2] = ACTIONS(2125), + [anon_sym_bit_DASHshr2] = ACTIONS(2125), + [anon_sym_bit_DASHand2] = ACTIONS(2125), + [anon_sym_bit_DASHxor2] = ACTIONS(2125), + [anon_sym_bit_DASHor2] = ACTIONS(2125), + [anon_sym_DOT_DOT2] = ACTIONS(2123), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), + [anon_sym_err_GT] = ACTIONS(2123), + [anon_sym_out_GT] = ACTIONS(2123), + [anon_sym_e_GT] = ACTIONS(2123), + [anon_sym_o_GT] = ACTIONS(2123), + [anon_sym_err_PLUSout_GT] = ACTIONS(2123), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), + [anon_sym_o_PLUSe_GT] = ACTIONS(2123), + [anon_sym_e_PLUSo_GT] = ACTIONS(2123), + [anon_sym_err_GT_GT] = ACTIONS(2125), + [anon_sym_out_GT_GT] = ACTIONS(2125), + [anon_sym_e_GT_GT] = ACTIONS(2125), + [anon_sym_o_GT_GT] = ACTIONS(2125), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(251), + }, + [1743] = { + [sym_cell_path] = STATE(2214), + [sym_path] = STATE(2088), + [sym_comment] = STATE(1743), + [aux_sym_cell_path_repeat1] = STATE(1865), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1757), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1757), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1757), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(5128), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(251), + }, + [1744] = { + [sym_comment] = STATE(1744), + [sym__newline] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_err_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_GT_PIPE] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2088), + [anon_sym_GT2] = ACTIONS(2086), + [anon_sym_DASH2] = ACTIONS(2088), + [anon_sym_in2] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_EQ_GT] = ACTIONS(2088), + [anon_sym_STAR2] = ACTIONS(2086), + [anon_sym_and2] = ACTIONS(2088), + [anon_sym_xor2] = ACTIONS(2088), + [anon_sym_or2] = ACTIONS(2088), + [anon_sym_not_DASHin2] = ACTIONS(2088), + [anon_sym_starts_DASHwith2] = ACTIONS(2088), + [anon_sym_ends_DASHwith2] = ACTIONS(2088), + [anon_sym_EQ_EQ2] = ACTIONS(2088), + [anon_sym_BANG_EQ2] = ACTIONS(2088), + [anon_sym_LT2] = ACTIONS(2086), + [anon_sym_LT_EQ2] = ACTIONS(2088), + [anon_sym_GT_EQ2] = ACTIONS(2088), + [anon_sym_EQ_TILDE2] = ACTIONS(2088), + [anon_sym_BANG_TILDE2] = ACTIONS(2088), + [anon_sym_STAR_STAR2] = ACTIONS(2088), + [anon_sym_PLUS_PLUS2] = ACTIONS(2088), + [anon_sym_SLASH2] = ACTIONS(2086), + [anon_sym_mod2] = ACTIONS(2088), + [anon_sym_SLASH_SLASH2] = ACTIONS(2088), + [anon_sym_PLUS2] = ACTIONS(2086), + [anon_sym_bit_DASHshl2] = ACTIONS(2088), + [anon_sym_bit_DASHshr2] = ACTIONS(2088), + [anon_sym_bit_DASHand2] = ACTIONS(2088), + [anon_sym_bit_DASHxor2] = ACTIONS(2088), + [anon_sym_bit_DASHor2] = ACTIONS(2088), + [anon_sym_DOT_DOT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), + [anon_sym_err_GT] = ACTIONS(2086), + [anon_sym_out_GT] = ACTIONS(2086), + [anon_sym_e_GT] = ACTIONS(2086), + [anon_sym_o_GT] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT] = ACTIONS(2086), + [anon_sym_err_GT_GT] = ACTIONS(2088), + [anon_sym_out_GT_GT] = ACTIONS(2088), + [anon_sym_e_GT_GT] = ACTIONS(2088), + [anon_sym_o_GT_GT] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(251), + }, + [1745] = { + [sym_comment] = STATE(1745), + [sym__newline] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_err_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_GT_PIPE] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1699), + [anon_sym_DOT_DOT_LT] = ACTIONS(1699), + [anon_sym_null] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [aux_sym__val_number_decimal_token1] = ACTIONS(1687), + [aux_sym__val_number_decimal_token2] = ACTIONS(1699), + [aux_sym__val_number_decimal_token3] = ACTIONS(1699), + [aux_sym__val_number_decimal_token4] = ACTIONS(1699), + [aux_sym__val_number_token1] = ACTIONS(1699), + [aux_sym__val_number_token2] = ACTIONS(1699), + [aux_sym__val_number_token3] = ACTIONS(1699), + [aux_sym__val_number_token4] = ACTIONS(1699), + [aux_sym__val_number_token5] = ACTIONS(1699), + [aux_sym__val_number_token6] = ACTIONS(1699), + [anon_sym_0b] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1687), + [anon_sym_0x] = ACTIONS(1687), + [sym_val_date] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [sym__str_single_quotes] = ACTIONS(1699), + [sym__str_back_ticks] = ACTIONS(1699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1687), + [anon_sym_out_GT] = ACTIONS(1687), + [anon_sym_e_GT] = ACTIONS(1687), + [anon_sym_o_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT] = ACTIONS(1687), + [anon_sym_err_GT_GT] = ACTIONS(1699), + [anon_sym_out_GT_GT] = ACTIONS(1699), + [anon_sym_e_GT_GT] = ACTIONS(1699), + [anon_sym_o_GT_GT] = ACTIONS(1699), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), + [aux_sym_unquoted_token1] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(4159), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1699), + }, + [1746] = { + [sym_comment] = STATE(1746), + [ts_builtin_sym_end] = ACTIONS(1010), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1008), + [anon_sym_QMARK2] = ACTIONS(5145), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_null] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1010), + [anon_sym_false] = ACTIONS(1010), + [aux_sym__val_number_decimal_token1] = ACTIONS(1008), + [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_0b] = ACTIONS(1008), + [anon_sym_0o] = ACTIONS(1008), + [anon_sym_0x] = ACTIONS(1008), + [sym_val_date] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__str_single_quotes] = ACTIONS(1010), + [sym__str_back_ticks] = ACTIONS(1010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1008), + [anon_sym_out_GT] = ACTIONS(1008), + [anon_sym_e_GT] = ACTIONS(1008), + [anon_sym_o_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT] = ACTIONS(1008), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [aux_sym_unquoted_token1] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1010), }, - [1724] = { - [sym_comment] = STATE(1724), - [ts_builtin_sym_end] = ACTIONS(2286), - [sym__newline] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_err_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_GT_PIPE] = ACTIONS(2286), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2286), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2286), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2286), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_LPAREN2] = ACTIONS(2284), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2282), - [anon_sym_DOT_DOT_LT] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2282), - [anon_sym_false] = 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_0b] = ACTIONS(2282), - [anon_sym_0o] = ACTIONS(2282), - [anon_sym_0x] = ACTIONS(2282), - [sym_val_date] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2286), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2282), - [anon_sym_out_GT_GT] = ACTIONS(2282), - [anon_sym_e_GT_GT] = ACTIONS(2282), - [anon_sym_o_GT_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2282), - [aux_sym_unquoted_token1] = ACTIONS(2282), - [aux_sym_unquoted_token4] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2286), + [1747] = { + [sym_comment] = STATE(1747), + [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(5147), + [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(251), + [sym_raw_string_begin] = ACTIONS(992), }, - [1725] = { - [sym_comment] = STATE(1725), - [ts_builtin_sym_end] = 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(1038), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1038), - [anon_sym_DASH2] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_LPAREN2] = ACTIONS(2266), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_LT] = ACTIONS(1038), - [anon_sym_null] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = 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), - [aux_sym__val_number_token4] = ACTIONS(1038), - [aux_sym__val_number_token5] = ACTIONS(1038), - [aux_sym__val_number_token6] = ACTIONS(1038), - [anon_sym_0b] = ACTIONS(1038), - [anon_sym_0o] = ACTIONS(1038), - [anon_sym_0x] = ACTIONS(1038), - [sym_val_date] = ACTIONS(1038), - [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(1038), - [anon_sym_out_GT_GT] = ACTIONS(1038), - [anon_sym_e_GT_GT] = ACTIONS(1038), - [anon_sym_o_GT_GT] = ACTIONS(1038), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1038), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1038), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1038), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1038), - [aux_sym_unquoted_token1] = ACTIONS(1038), - [aux_sym_unquoted_token4] = ACTIONS(2268), + [1748] = { + [sym_cmd_identifier] = STATE(4413), + [sym__command_name] = STATE(7081), + [sym_scope_pattern] = STATE(7124), + [sym_wild_card] = STATE(7145), + [sym_command_list] = STATE(7149), + [sym__val_number_decimal] = STATE(4002), + [sym_val_string] = STATE(4433), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_comment] = STATE(1748), + [aux_sym_cmd_identifier_token1] = ACTIONS(5149), + [aux_sym_cmd_identifier_token2] = ACTIONS(5151), + [aux_sym_cmd_identifier_token3] = ACTIONS(5151), + [aux_sym_cmd_identifier_token4] = ACTIONS(5151), + [aux_sym_cmd_identifier_token5] = ACTIONS(5151), + [aux_sym_cmd_identifier_token6] = ACTIONS(5151), + [aux_sym_cmd_identifier_token7] = ACTIONS(5151), + [aux_sym_cmd_identifier_token8] = ACTIONS(5151), + [aux_sym_cmd_identifier_token9] = ACTIONS(5149), + [aux_sym_cmd_identifier_token10] = ACTIONS(5151), + [aux_sym_cmd_identifier_token11] = ACTIONS(5151), + [aux_sym_cmd_identifier_token12] = ACTIONS(5151), + [aux_sym_cmd_identifier_token13] = ACTIONS(5149), + [aux_sym_cmd_identifier_token14] = ACTIONS(5151), + [aux_sym_cmd_identifier_token15] = ACTIONS(5149), + [aux_sym_cmd_identifier_token16] = ACTIONS(5151), + [aux_sym_cmd_identifier_token17] = ACTIONS(5151), + [aux_sym_cmd_identifier_token18] = ACTIONS(5151), + [aux_sym_cmd_identifier_token19] = ACTIONS(5151), + [aux_sym_cmd_identifier_token20] = ACTIONS(5151), + [aux_sym_cmd_identifier_token21] = ACTIONS(5151), + [aux_sym_cmd_identifier_token22] = ACTIONS(5151), + [aux_sym_cmd_identifier_token23] = ACTIONS(5151), + [aux_sym_cmd_identifier_token24] = ACTIONS(5151), + [aux_sym_cmd_identifier_token25] = ACTIONS(5151), + [aux_sym_cmd_identifier_token26] = ACTIONS(5151), + [aux_sym_cmd_identifier_token27] = ACTIONS(5151), + [aux_sym_cmd_identifier_token28] = ACTIONS(5151), + [aux_sym_cmd_identifier_token29] = ACTIONS(5151), + [aux_sym_cmd_identifier_token30] = ACTIONS(5151), + [aux_sym_cmd_identifier_token31] = ACTIONS(5151), + [aux_sym_cmd_identifier_token32] = ACTIONS(5151), + [aux_sym_cmd_identifier_token33] = ACTIONS(5151), + [aux_sym_cmd_identifier_token34] = ACTIONS(5149), + [aux_sym_cmd_identifier_token35] = ACTIONS(5151), + [aux_sym_cmd_identifier_token36] = ACTIONS(5151), + [aux_sym_cmd_identifier_token37] = ACTIONS(5151), + [aux_sym_cmd_identifier_token38] = ACTIONS(5149), + [aux_sym_cmd_identifier_token39] = ACTIONS(5151), + [aux_sym_cmd_identifier_token40] = ACTIONS(5151), + [sym__newline] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5153), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5153), + [anon_sym_RBRACE] = ACTIONS(5153), + [anon_sym_STAR2] = ACTIONS(5157), + [aux_sym__val_number_decimal_token1] = ACTIONS(5159), + [aux_sym__val_number_decimal_token2] = ACTIONS(5159), + [aux_sym__val_number_decimal_token3] = ACTIONS(5161), + [aux_sym__val_number_decimal_token4] = ACTIONS(5163), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), + }, + [1749] = { + [sym_comment] = STATE(1749), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym__newline] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_err_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_GT_PIPE] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), + [anon_sym_GT2] = ACTIONS(1779), + [anon_sym_DASH2] = ACTIONS(1781), + [anon_sym_in2] = ACTIONS(1781), + [anon_sym_STAR2] = ACTIONS(1779), + [anon_sym_and2] = ACTIONS(1781), + [anon_sym_xor2] = ACTIONS(1781), + [anon_sym_or2] = ACTIONS(1781), + [anon_sym_not_DASHin2] = ACTIONS(1781), + [anon_sym_starts_DASHwith2] = ACTIONS(1781), + [anon_sym_ends_DASHwith2] = ACTIONS(1781), + [anon_sym_EQ_EQ2] = ACTIONS(1781), + [anon_sym_BANG_EQ2] = ACTIONS(1781), + [anon_sym_LT2] = ACTIONS(1779), + [anon_sym_LT_EQ2] = ACTIONS(1781), + [anon_sym_GT_EQ2] = ACTIONS(1781), + [anon_sym_EQ_TILDE2] = ACTIONS(1781), + [anon_sym_BANG_TILDE2] = ACTIONS(1781), + [anon_sym_LPAREN2] = ACTIONS(1781), + [anon_sym_STAR_STAR2] = ACTIONS(1781), + [anon_sym_PLUS_PLUS2] = ACTIONS(1781), + [anon_sym_SLASH2] = ACTIONS(1779), + [anon_sym_mod2] = ACTIONS(1781), + [anon_sym_SLASH_SLASH2] = ACTIONS(1781), + [anon_sym_PLUS2] = ACTIONS(1779), + [anon_sym_bit_DASHshl2] = ACTIONS(1781), + [anon_sym_bit_DASHshr2] = ACTIONS(1781), + [anon_sym_bit_DASHand2] = ACTIONS(1781), + [anon_sym_bit_DASHxor2] = ACTIONS(1781), + [anon_sym_bit_DASHor2] = ACTIONS(1781), + [anon_sym_DOT_DOT2] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(5165), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), + [aux_sym__immediate_decimal_token2] = ACTIONS(5167), + [anon_sym_err_GT] = ACTIONS(1779), + [anon_sym_out_GT] = ACTIONS(1779), + [anon_sym_e_GT] = ACTIONS(1779), + [anon_sym_o_GT] = ACTIONS(1779), + [anon_sym_err_PLUSout_GT] = ACTIONS(1779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), + [anon_sym_o_PLUSe_GT] = ACTIONS(1779), + [anon_sym_e_PLUSo_GT] = ACTIONS(1779), + [anon_sym_err_GT_GT] = ACTIONS(1781), + [anon_sym_out_GT_GT] = ACTIONS(1781), + [anon_sym_e_GT_GT] = ACTIONS(1781), + [anon_sym_o_GT_GT] = ACTIONS(1781), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), + [aux_sym_unquoted_token2] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(251), + }, + [1750] = { + [sym_path] = STATE(1971), + [sym_comment] = STATE(1750), + [aux_sym_cell_path_repeat1] = STATE(1752), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(4990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [aux_sym_record_entry_token1] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + }, + [1751] = { + [sym_cmd_identifier] = STATE(4413), + [sym__command_name] = STATE(7081), + [sym_scope_pattern] = STATE(6861), + [sym_wild_card] = STATE(7145), + [sym_command_list] = STATE(7149), + [sym__val_number_decimal] = STATE(4002), + [sym_val_string] = STATE(4433), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_comment] = STATE(1751), + [aux_sym_cmd_identifier_token1] = ACTIONS(5149), + [aux_sym_cmd_identifier_token2] = ACTIONS(5151), + [aux_sym_cmd_identifier_token3] = ACTIONS(5151), + [aux_sym_cmd_identifier_token4] = ACTIONS(5151), + [aux_sym_cmd_identifier_token5] = ACTIONS(5151), + [aux_sym_cmd_identifier_token6] = ACTIONS(5151), + [aux_sym_cmd_identifier_token7] = ACTIONS(5151), + [aux_sym_cmd_identifier_token8] = ACTIONS(5151), + [aux_sym_cmd_identifier_token9] = ACTIONS(5149), + [aux_sym_cmd_identifier_token10] = ACTIONS(5151), + [aux_sym_cmd_identifier_token11] = ACTIONS(5151), + [aux_sym_cmd_identifier_token12] = ACTIONS(5151), + [aux_sym_cmd_identifier_token13] = ACTIONS(5149), + [aux_sym_cmd_identifier_token14] = ACTIONS(5151), + [aux_sym_cmd_identifier_token15] = ACTIONS(5149), + [aux_sym_cmd_identifier_token16] = ACTIONS(5151), + [aux_sym_cmd_identifier_token17] = ACTIONS(5151), + [aux_sym_cmd_identifier_token18] = ACTIONS(5151), + [aux_sym_cmd_identifier_token19] = ACTIONS(5151), + [aux_sym_cmd_identifier_token20] = ACTIONS(5151), + [aux_sym_cmd_identifier_token21] = ACTIONS(5151), + [aux_sym_cmd_identifier_token22] = ACTIONS(5151), + [aux_sym_cmd_identifier_token23] = ACTIONS(5151), + [aux_sym_cmd_identifier_token24] = ACTIONS(5151), + [aux_sym_cmd_identifier_token25] = ACTIONS(5151), + [aux_sym_cmd_identifier_token26] = ACTIONS(5151), + [aux_sym_cmd_identifier_token27] = ACTIONS(5151), + [aux_sym_cmd_identifier_token28] = ACTIONS(5151), + [aux_sym_cmd_identifier_token29] = ACTIONS(5151), + [aux_sym_cmd_identifier_token30] = ACTIONS(5151), + [aux_sym_cmd_identifier_token31] = ACTIONS(5151), + [aux_sym_cmd_identifier_token32] = ACTIONS(5151), + [aux_sym_cmd_identifier_token33] = ACTIONS(5151), + [aux_sym_cmd_identifier_token34] = ACTIONS(5149), + [aux_sym_cmd_identifier_token35] = ACTIONS(5151), + [aux_sym_cmd_identifier_token36] = ACTIONS(5151), + [aux_sym_cmd_identifier_token37] = ACTIONS(5151), + [aux_sym_cmd_identifier_token38] = ACTIONS(5149), + [aux_sym_cmd_identifier_token39] = ACTIONS(5151), + [aux_sym_cmd_identifier_token40] = ACTIONS(5151), + [sym__newline] = ACTIONS(5169), + [anon_sym_SEMI] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5169), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_STAR2] = ACTIONS(5157), + [aux_sym__val_number_decimal_token1] = ACTIONS(5159), + [aux_sym__val_number_decimal_token2] = ACTIONS(5159), + [aux_sym__val_number_decimal_token3] = ACTIONS(5161), + [aux_sym__val_number_decimal_token4] = ACTIONS(5163), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), + }, + [1752] = { + [sym_path] = STATE(1971), + [sym_comment] = STATE(1752), + [aux_sym_cell_path_repeat1] = STATE(1752), + [sym__newline] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_err_GT_PIPE] = ACTIONS(977), + [anon_sym_out_GT_PIPE] = ACTIONS(977), + [anon_sym_e_GT_PIPE] = ACTIONS(977), + [anon_sym_o_GT_PIPE] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), + [anon_sym_GT2] = ACTIONS(975), + [anon_sym_DASH2] = ACTIONS(977), + [anon_sym_in2] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_STAR2] = ACTIONS(975), + [anon_sym_and2] = ACTIONS(977), + [anon_sym_xor2] = ACTIONS(977), + [anon_sym_or2] = ACTIONS(977), + [anon_sym_not_DASHin2] = ACTIONS(977), + [anon_sym_starts_DASHwith2] = ACTIONS(977), + [anon_sym_ends_DASHwith2] = ACTIONS(977), + [anon_sym_EQ_EQ2] = ACTIONS(977), + [anon_sym_BANG_EQ2] = ACTIONS(977), + [anon_sym_LT2] = ACTIONS(975), + [anon_sym_LT_EQ2] = ACTIONS(977), + [anon_sym_GT_EQ2] = ACTIONS(977), + [anon_sym_EQ_TILDE2] = ACTIONS(977), + [anon_sym_BANG_TILDE2] = ACTIONS(977), + [anon_sym_STAR_STAR2] = ACTIONS(977), + [anon_sym_PLUS_PLUS2] = ACTIONS(977), + [anon_sym_SLASH2] = ACTIONS(975), + [anon_sym_mod2] = ACTIONS(977), + [anon_sym_SLASH_SLASH2] = ACTIONS(977), + [anon_sym_PLUS2] = ACTIONS(975), + [anon_sym_bit_DASHshl2] = ACTIONS(977), + [anon_sym_bit_DASHshr2] = ACTIONS(977), + [anon_sym_bit_DASHand2] = ACTIONS(977), + [anon_sym_bit_DASHxor2] = ACTIONS(977), + [anon_sym_bit_DASHor2] = ACTIONS(977), + [anon_sym_DOT_DOT2] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(5171), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(977), + [aux_sym_record_entry_token1] = ACTIONS(977), + [anon_sym_err_GT] = ACTIONS(975), + [anon_sym_out_GT] = ACTIONS(975), + [anon_sym_e_GT] = ACTIONS(975), + [anon_sym_o_GT] = ACTIONS(975), + [anon_sym_err_PLUSout_GT] = ACTIONS(975), + [anon_sym_out_PLUSerr_GT] = ACTIONS(975), + [anon_sym_o_PLUSe_GT] = ACTIONS(975), + [anon_sym_e_PLUSo_GT] = ACTIONS(975), + [anon_sym_err_GT_GT] = ACTIONS(977), + [anon_sym_out_GT_GT] = ACTIONS(977), + [anon_sym_e_GT_GT] = ACTIONS(977), + [anon_sym_o_GT_GT] = ACTIONS(977), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(251), + }, + [1753] = { + [sym_cmd_identifier] = STATE(4413), + [sym__command_name] = STATE(7081), + [sym_scope_pattern] = STATE(6699), + [sym_wild_card] = STATE(7145), + [sym_command_list] = STATE(7149), + [sym__val_number_decimal] = STATE(4002), + [sym_val_string] = STATE(4433), + [sym__raw_str] = STATE(4608), + [sym__str_double_quotes] = STATE(4608), + [sym_comment] = STATE(1753), + [aux_sym_cmd_identifier_token1] = ACTIONS(5149), + [aux_sym_cmd_identifier_token2] = ACTIONS(5151), + [aux_sym_cmd_identifier_token3] = ACTIONS(5151), + [aux_sym_cmd_identifier_token4] = ACTIONS(5151), + [aux_sym_cmd_identifier_token5] = ACTIONS(5151), + [aux_sym_cmd_identifier_token6] = ACTIONS(5151), + [aux_sym_cmd_identifier_token7] = ACTIONS(5151), + [aux_sym_cmd_identifier_token8] = ACTIONS(5151), + [aux_sym_cmd_identifier_token9] = ACTIONS(5149), + [aux_sym_cmd_identifier_token10] = ACTIONS(5151), + [aux_sym_cmd_identifier_token11] = ACTIONS(5151), + [aux_sym_cmd_identifier_token12] = ACTIONS(5151), + [aux_sym_cmd_identifier_token13] = ACTIONS(5149), + [aux_sym_cmd_identifier_token14] = ACTIONS(5151), + [aux_sym_cmd_identifier_token15] = ACTIONS(5149), + [aux_sym_cmd_identifier_token16] = ACTIONS(5151), + [aux_sym_cmd_identifier_token17] = ACTIONS(5151), + [aux_sym_cmd_identifier_token18] = ACTIONS(5151), + [aux_sym_cmd_identifier_token19] = ACTIONS(5151), + [aux_sym_cmd_identifier_token20] = ACTIONS(5151), + [aux_sym_cmd_identifier_token21] = ACTIONS(5151), + [aux_sym_cmd_identifier_token22] = ACTIONS(5151), + [aux_sym_cmd_identifier_token23] = ACTIONS(5151), + [aux_sym_cmd_identifier_token24] = ACTIONS(5151), + [aux_sym_cmd_identifier_token25] = ACTIONS(5151), + [aux_sym_cmd_identifier_token26] = ACTIONS(5151), + [aux_sym_cmd_identifier_token27] = ACTIONS(5151), + [aux_sym_cmd_identifier_token28] = ACTIONS(5151), + [aux_sym_cmd_identifier_token29] = ACTIONS(5151), + [aux_sym_cmd_identifier_token30] = ACTIONS(5151), + [aux_sym_cmd_identifier_token31] = ACTIONS(5151), + [aux_sym_cmd_identifier_token32] = ACTIONS(5151), + [aux_sym_cmd_identifier_token33] = ACTIONS(5151), + [aux_sym_cmd_identifier_token34] = ACTIONS(5149), + [aux_sym_cmd_identifier_token35] = ACTIONS(5151), + [aux_sym_cmd_identifier_token36] = ACTIONS(5151), + [aux_sym_cmd_identifier_token37] = ACTIONS(5151), + [aux_sym_cmd_identifier_token38] = ACTIONS(5149), + [aux_sym_cmd_identifier_token39] = ACTIONS(5151), + [aux_sym_cmd_identifier_token40] = ACTIONS(5151), + [sym__newline] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_STAR2] = ACTIONS(5157), + [aux_sym__val_number_decimal_token1] = ACTIONS(5159), + [aux_sym__val_number_decimal_token2] = ACTIONS(5159), + [aux_sym__val_number_decimal_token3] = ACTIONS(5161), + [aux_sym__val_number_decimal_token4] = ACTIONS(5163), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym__str_single_quotes] = ACTIONS(3915), + [sym__str_back_ticks] = ACTIONS(3915), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), + }, + [1754] = { + [sym_comment] = STATE(1754), + [ts_builtin_sym_end] = ACTIONS(2244), + [sym__newline] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_err_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_GT_PIPE] = ACTIONS(2244), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_DASH2] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(2244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2242), + [anon_sym_DOT_DOT_LT] = ACTIONS(2242), + [anon_sym_null] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = 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), + [aux_sym__val_number_token4] = ACTIONS(2242), + [aux_sym__val_number_token5] = ACTIONS(2242), + [aux_sym__val_number_token6] = ACTIONS(2242), + [anon_sym_0b] = ACTIONS(2242), + [anon_sym_0o] = ACTIONS(2242), + [anon_sym_0x] = ACTIONS(2242), + [sym_val_date] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2244), + [sym__str_single_quotes] = ACTIONS(2244), + [sym__str_back_ticks] = ACTIONS(2244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2244), + [anon_sym_err_GT] = ACTIONS(2242), + [anon_sym_out_GT] = ACTIONS(2242), + [anon_sym_e_GT] = ACTIONS(2242), + [anon_sym_o_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT] = ACTIONS(2242), + [anon_sym_err_GT_GT] = ACTIONS(2242), + [anon_sym_out_GT_GT] = ACTIONS(2242), + [anon_sym_e_GT_GT] = ACTIONS(2242), + [anon_sym_o_GT_GT] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), + [aux_sym_unquoted_token1] = ACTIONS(2242), + [aux_sym_unquoted_token4] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1040), - }, - [1726] = { - [sym_comment] = STATE(1726), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym__newline] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_err_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_GT_PIPE] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1783), - [anon_sym_GT2] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_STAR2] = ACTIONS(1781), - [anon_sym_and2] = ACTIONS(1783), - [anon_sym_xor2] = ACTIONS(1783), - [anon_sym_or2] = ACTIONS(1783), - [anon_sym_not_DASHin2] = ACTIONS(1783), - [anon_sym_starts_DASHwith2] = ACTIONS(1783), - [anon_sym_ends_DASHwith2] = ACTIONS(1783), - [anon_sym_EQ_EQ2] = ACTIONS(1783), - [anon_sym_BANG_EQ2] = ACTIONS(1783), - [anon_sym_LT2] = ACTIONS(1781), - [anon_sym_LT_EQ2] = ACTIONS(1783), - [anon_sym_GT_EQ2] = ACTIONS(1783), - [anon_sym_EQ_TILDE2] = ACTIONS(1783), - [anon_sym_BANG_TILDE2] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1783), - [anon_sym_STAR_STAR2] = ACTIONS(1783), - [anon_sym_PLUS_PLUS2] = ACTIONS(1783), - [anon_sym_SLASH2] = ACTIONS(1781), - [anon_sym_mod2] = ACTIONS(1783), - [anon_sym_SLASH_SLASH2] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1781), - [anon_sym_bit_DASHshl2] = ACTIONS(1783), - [anon_sym_bit_DASHshr2] = ACTIONS(1783), - [anon_sym_bit_DASHand2] = ACTIONS(1783), - [anon_sym_bit_DASHxor2] = ACTIONS(1783), - [anon_sym_bit_DASHor2] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1783), - [sym_filesize_unit] = ACTIONS(1781), - [sym_duration_unit] = ACTIONS(1783), - [anon_sym_err_GT] = ACTIONS(1781), - [anon_sym_out_GT] = ACTIONS(1781), - [anon_sym_e_GT] = ACTIONS(1781), - [anon_sym_o_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT] = ACTIONS(1781), - [anon_sym_err_GT_GT] = ACTIONS(1783), - [anon_sym_out_GT_GT] = ACTIONS(1783), - [anon_sym_e_GT_GT] = ACTIONS(1783), - [anon_sym_o_GT_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(2244), + }, + [1755] = { + [sym_comment] = STATE(1755), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym__newline] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_err_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_GT_PIPE] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_DASH2] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), + [anon_sym_DOT_DOT_LT] = ACTIONS(1838), + [anon_sym_null] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1838), + [aux_sym__val_number_decimal_token3] = ACTIONS(1838), + [aux_sym__val_number_decimal_token4] = ACTIONS(1838), + [aux_sym__val_number_token1] = ACTIONS(1838), + [aux_sym__val_number_token2] = ACTIONS(1838), + [aux_sym__val_number_token3] = ACTIONS(1838), + [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(1830), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0x] = ACTIONS(1830), + [sym_val_date] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym__str_single_quotes] = ACTIONS(1838), + [sym__str_back_ticks] = ACTIONS(1838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), + [anon_sym_err_GT] = ACTIONS(1830), + [anon_sym_out_GT] = ACTIONS(1830), + [anon_sym_e_GT] = ACTIONS(1830), + [anon_sym_o_GT] = ACTIONS(1830), + [anon_sym_err_PLUSout_GT] = ACTIONS(1830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), + [anon_sym_o_PLUSe_GT] = ACTIONS(1830), + [anon_sym_e_PLUSo_GT] = ACTIONS(1830), + [anon_sym_err_GT_GT] = ACTIONS(1838), + [anon_sym_out_GT_GT] = ACTIONS(1838), + [anon_sym_e_GT_GT] = ACTIONS(1838), + [anon_sym_o_GT_GT] = ACTIONS(1838), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), + [aux_sym_unquoted_token1] = ACTIONS(1830), + [aux_sym_unquoted_token2] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1838), + }, + [1756] = { + [sym_cell_path] = STATE(2268), + [sym_path] = STATE(2088), + [sym_comment] = STATE(1756), + [aux_sym_cell_path_repeat1] = STATE(1865), + [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_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] = ACTIONS(5128), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT2] = 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), + [anon_sym_POUND] = ACTIONS(251), + }, + [1757] = { + [sym_comment] = STATE(1757), + [ts_builtin_sym_end] = ACTIONS(2294), + [sym__newline] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_err_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_GT_PIPE] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_DOT_DOT] = ACTIONS(2292), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2294), + [anon_sym_DOT_DOT_LT] = ACTIONS(2294), + [anon_sym_null] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [aux_sym__val_number_decimal_token1] = ACTIONS(2292), + [aux_sym__val_number_decimal_token2] = ACTIONS(2294), + [aux_sym__val_number_decimal_token3] = ACTIONS(2294), + [aux_sym__val_number_decimal_token4] = ACTIONS(2294), + [aux_sym__val_number_token1] = ACTIONS(2294), + [aux_sym__val_number_token2] = ACTIONS(2294), + [aux_sym__val_number_token3] = ACTIONS(2294), + [aux_sym__val_number_token4] = ACTIONS(2294), + [aux_sym__val_number_token5] = ACTIONS(2294), + [aux_sym__val_number_token6] = ACTIONS(2294), + [anon_sym_0b] = ACTIONS(2292), + [anon_sym_0o] = ACTIONS(2292), + [anon_sym_0x] = ACTIONS(2292), + [sym_val_date] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [sym__str_single_quotes] = ACTIONS(2294), + [sym__str_back_ticks] = ACTIONS(2294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), + [anon_sym_err_GT] = ACTIONS(2292), + [anon_sym_out_GT] = ACTIONS(2292), + [anon_sym_e_GT] = ACTIONS(2292), + [anon_sym_o_GT] = ACTIONS(2292), + [anon_sym_err_PLUSout_GT] = ACTIONS(2292), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), + [anon_sym_o_PLUSe_GT] = ACTIONS(2292), + [anon_sym_e_PLUSo_GT] = ACTIONS(2292), + [anon_sym_err_GT_GT] = ACTIONS(2294), + [anon_sym_out_GT_GT] = ACTIONS(2294), + [anon_sym_e_GT_GT] = ACTIONS(2294), + [anon_sym_o_GT_GT] = ACTIONS(2294), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), + [aux_sym_unquoted_token1] = ACTIONS(2292), + [aux_sym_unquoted_token2] = ACTIONS(1850), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2294), + }, + [1758] = { + [sym_comment] = STATE(1758), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1799), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1799), + [anon_sym_out_GT] = ACTIONS(1799), + [anon_sym_e_GT] = ACTIONS(1799), + [anon_sym_o_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT] = ACTIONS(1799), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5098), 1, - anon_sym_LBRACK, - ACTIONS(5100), 1, - anon_sym_STAR2, - STATE(1727), 1, - sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(7174), 1, - sym_scope_pattern, - STATE(7267), 1, - sym__command_name, - STATE(7302), 1, - sym_wild_card, - STATE(7304), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5085), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5094), 6, - 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), 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, - [107] = 4, + [0] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1728), 1, + STATE(1759), 1, sym_comment, - ACTIONS(5104), 16, + ACTIONS(2363), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239381,7 +244200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5102), 46, + ACTIONS(2365), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239428,12 +244247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [180] = 4, + [73] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1729), 1, + STATE(1760), 1, sym_comment, - ACTIONS(5108), 16, + ACTIONS(2458), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239450,7 +244269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5106), 46, + ACTIONS(2460), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239497,12 +244316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [253] = 4, + [146] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1730), 1, + STATE(1761), 1, sym_comment, - ACTIONS(1785), 16, + ACTIONS(2466), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239519,7 +244338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1787), 46, + ACTIONS(2468), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239566,16 +244385,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [326] = 5, - ACTIONS(3), 1, + [219] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(1731), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(5176), 1, + anon_sym_DOT_DOT2, + STATE(1762), 1, sym_comment, - ACTIONS(2300), 21, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5178), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 13, + anon_sym_GT2, + 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(1848), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239587,25 +244425,154 @@ static const uint16_t 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_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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [300] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1763), 1, + sym_comment, + ACTIONS(986), 13, + anon_sym_GT2, + 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(988), 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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2298), 40, + 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, + [373] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1764), 1, + sym_comment, + ACTIONS(5182), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, 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(5180), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, 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, @@ -239615,18 +244582,12 @@ static const uint16_t ts_small_parse_table[] = { 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_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, @@ -239635,13 +244596,12 @@ static const 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, - [401] = 4, + [446] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1732), 1, + STATE(1765), 1, sym_comment, - ACTIONS(5112), 16, + ACTIONS(5186), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239658,7 +244618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5110), 46, + ACTIONS(5184), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239705,12 +244665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [474] = 4, + [519] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1733), 1, + STATE(1766), 1, sym_comment, - ACTIONS(5116), 16, + ACTIONS(5190), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239727,7 +244687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5114), 46, + ACTIONS(5188), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239774,12 +244734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [547] = 4, + [592] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1734), 1, + STATE(1767), 1, sym_comment, - ACTIONS(5120), 16, + ACTIONS(5194), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239796,7 +244756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5118), 46, + ACTIONS(5192), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239843,12 +244803,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [620] = 4, + [665] = 40, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + anon_sym_DASH_DASH, + ACTIONS(5198), 1, + anon_sym_DASH2, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1768), 1, + sym_comment, + STATE(2166), 1, + sym_short_flag, + STATE(2167), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6286), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [810] = 40, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + anon_sym_DASH_DASH, + ACTIONS(5198), 1, + anon_sym_DASH2, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1769), 1, + sym_comment, + STATE(2168), 1, + sym_short_flag, + STATE(2169), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6290), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [955] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5214), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR2, + STATE(1770), 1, + sym_comment, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7437), 1, + sym__command_name, + STATE(7492), 1, + sym_wild_card, + STATE(7545), 1, + sym_command_list, + STATE(7645), 1, + sym_scope_pattern, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5153), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5210), 6, + 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(5212), 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, + [1062] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1735), 1, + STATE(1771), 1, sym_comment, - ACTIONS(5124), 16, + ACTIONS(2482), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239865,7 +245121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5122), 46, + ACTIONS(2484), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239912,12 +245168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [693] = 4, + [1135] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1736), 1, + STATE(1772), 1, sym_comment, - ACTIONS(1793), 16, + ACTIONS(2072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239934,7 +245190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1795), 46, + ACTIONS(2078), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239981,12 +245237,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [766] = 4, + [1208] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1737), 1, + ACTIONS(5218), 1, + anon_sym_EQ2, + STATE(1773), 1, sym_comment, - ACTIONS(2361), 16, + ACTIONS(5114), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240003,8 +245261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2363), 46, + ACTIONS(5112), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240018,10 +245277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240050,12 +245307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [839] = 4, + [1283] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1738), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(1774), 1, sym_comment, - ACTIONS(2249), 21, + ACTIONS(1036), 21, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -240077,7 +245336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2247), 41, + ACTIONS(1034), 40, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -240118,13 +245377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [912] = 4, + [1358] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1739), 1, + STATE(1775), 1, sym_comment, - ACTIONS(1801), 16, + ACTIONS(2395), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240141,7 +245399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1803), 46, + ACTIONS(2397), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240188,12 +245446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [985] = 4, + [1431] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1740), 1, + STATE(1776), 1, sym_comment, - ACTIONS(1038), 16, + ACTIONS(1779), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240210,7 +245468,7 @@ 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(1781), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240257,12 +245515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1058] = 4, + [1504] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1741), 1, + STATE(1777), 1, sym_comment, - ACTIONS(1824), 16, + ACTIONS(2090), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240279,7 +245537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1826), 46, + ACTIONS(2096), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240326,12 +245584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1131] = 4, + [1577] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1742), 1, + STATE(1778), 1, sym_comment, - ACTIONS(2421), 16, + ACTIONS(2098), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240348,7 +245606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2423), 46, + ACTIONS(2104), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240395,19 +245653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1204] = 5, + [1650] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_QMARK2, - STATE(1743), 1, + STATE(1779), 1, sym_comment, - ACTIONS(990), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2131), 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, @@ -240416,7 +245674,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(992), 48, + aux_sym_unquoted_token1, + ACTIONS(2137), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240428,35 +245688,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_DASH2, - anon_sym_in2, - anon_sym_if, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -240465,19 +245722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1279] = 5, + [1723] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_QMARK2, - STATE(1744), 1, + STATE(1780), 1, sym_comment, - ACTIONS(1012), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5222), 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, @@ -240486,7 +245743,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(1014), 48, + aux_sym_unquoted_token1, + ACTIONS(5220), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240498,35 +245757,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_DASH2, - anon_sym_in2, - anon_sym_if, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -240535,227 +245791,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, - [1354] = 41, + [1796] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1745), 1, - sym_comment, - STATE(2098), 1, - sym_short_flag, - STATE(2099), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5832), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [1501] = 41, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1746), 1, - sym_comment, - STATE(2100), 1, - sym_short_flag, - STATE(2101), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5849), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [1648] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1747), 1, - sym_comment, - ACTIONS(1889), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + STATE(1781), 1, + sym_comment, + ACTIONS(1771), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -240769,7 +245813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1891), 46, + ACTIONS(1773), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240816,12 +245860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1721] = 4, + [1869] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1748), 1, + STATE(1782), 1, sym_comment, - ACTIONS(2391), 16, + ACTIONS(5226), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240838,7 +245882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2393), 46, + ACTIONS(5224), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240885,12 +245929,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1794] = 4, + [1942] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1749), 1, + ACTIONS(5110), 1, + aux_sym__immediate_decimal_token2, + STATE(1783), 1, sym_comment, - ACTIONS(2433), 16, + ACTIONS(1779), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240907,8 +245953,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2435), 46, + ACTIONS(1781), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240922,10 +245969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240954,16 +245999,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, - [1867] = 5, - ACTIONS(3), 1, + [2017] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(1750), 1, + STATE(1784), 1, sym_comment, - ACTIONS(1040), 21, + ACTIONS(1799), 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(1801), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240977,23 +246036,15 @@ 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(1038), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -241003,18 +246054,12 @@ static const uint16_t ts_small_parse_table[] = { 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_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, @@ -241023,13 +246068,12 @@ static const 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, - [1942] = 4, + [2090] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1751), 1, + STATE(1785), 1, sym_comment, - ACTIONS(2399), 16, + ACTIONS(2407), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241046,7 +246090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2401), 46, + ACTIONS(2409), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241093,12 +246137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2015] = 4, + [2163] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1752), 1, + STATE(1786), 1, sym_comment, - ACTIONS(2445), 16, + ACTIONS(1818), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241115,7 +246159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2447), 46, + ACTIONS(1820), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241162,12 +246206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2088] = 4, + [2236] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1753), 1, + STATE(1787), 1, sym_comment, - ACTIONS(2449), 16, + ACTIONS(2411), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241184,7 +246228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2451), 46, + ACTIONS(2413), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241231,12 +246275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2161] = 4, + [2309] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1754), 1, + STATE(1788), 1, sym_comment, - ACTIONS(1917), 16, + ACTIONS(2415), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241253,7 +246297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1919), 46, + ACTIONS(2417), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241300,12 +246344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2234] = 4, + [2382] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1755), 1, + STATE(1789), 1, sym_comment, - ACTIONS(2461), 16, + ACTIONS(5230), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241322,7 +246366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2463), 46, + ACTIONS(5228), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241369,14 +246413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2307] = 5, + [2455] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4769), 1, - aux_sym_unquoted_token2, - STATE(1756), 1, + STATE(1790), 1, sym_comment, - ACTIONS(1695), 16, + ACTIONS(5234), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241393,9 +246435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1707), 45, + ACTIONS(5232), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241409,8 +246450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -241439,12 +246482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2382] = 4, + [2528] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1757), 1, + STATE(1791), 1, sym_comment, - ACTIONS(2465), 16, + ACTIONS(2419), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241461,7 +246504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2467), 46, + ACTIONS(2421), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241508,12 +246551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2455] = 4, + [2601] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1758), 1, + STATE(1792), 1, sym_comment, - ACTIONS(1933), 16, + ACTIONS(2423), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241530,7 +246573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1935), 46, + ACTIONS(2425), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241577,12 +246620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2528] = 4, + [2674] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1759), 1, + STATE(1793), 1, sym_comment, - ACTIONS(1941), 16, + ACTIONS(2427), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241599,7 +246642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1943), 46, + ACTIONS(2429), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241646,12 +246689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2601] = 4, + [2747] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1760), 1, + STATE(1794), 1, sym_comment, - ACTIONS(1945), 16, + ACTIONS(2431), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241668,7 +246711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1947), 46, + ACTIONS(2433), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241715,12 +246758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2674] = 4, + [2820] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1795), 1, sym_comment, - ACTIONS(2469), 16, + ACTIONS(2435), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241737,7 +246780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 46, + ACTIONS(2437), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241784,12 +246827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2747] = 4, + [2893] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1762), 1, + STATE(1796), 1, sym_comment, - ACTIONS(2064), 16, + ACTIONS(2443), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241806,7 +246849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2066), 46, + ACTIONS(2445), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241853,12 +246896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2820] = 4, + [2966] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1763), 1, + STATE(1797), 1, sym_comment, - ACTIONS(2473), 16, + ACTIONS(2447), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241875,7 +246918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2475), 46, + ACTIONS(2449), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241922,14 +246965,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, - [2893] = 5, + [3039] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5148), 1, - aux_sym__immediate_decimal_token2, - STATE(1764), 1, + ACTIONS(5236), 1, + anon_sym_LBRACK2, + STATE(1798), 1, sym_comment, - ACTIONS(1801), 16, + ACTIONS(2304), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241946,7 +246990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1803), 45, + ACTIONS(2308), 44, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -241960,7 +247004,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_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -241992,98 +247035,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2968] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [3114] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5098), 1, - anon_sym_LBRACK, - ACTIONS(5100), 1, - anon_sym_STAR2, - STATE(1765), 1, - sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(7267), 1, - sym__command_name, - STATE(7299), 1, - sym_scope_pattern, - STATE(7302), 1, - sym_wild_card, - STATE(7304), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5067), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5094), 6, - 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), 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, - [3075] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1766), 1, + ACTIONS(5238), 1, + aux_sym__immediate_decimal_token2, + STATE(1799), 1, sym_comment, - ACTIONS(2477), 16, + ACTIONS(1799), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242100,8 +247059,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2479), 46, + ACTIONS(1801), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242115,10 +247075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -242147,19 +247105,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, - [3148] = 4, + [3189] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1767), 1, + ACTIONS(5240), 1, + sym__newline, + STATE(1800), 2, sym_comment, - ACTIONS(1957), 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, + aux_sym_shebang_repeat1, + ACTIONS(1308), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242168,10 +247127,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(1959), 46, - sym_raw_string_begin, - sym__newline, + ACTIONS(1310), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242182,32 +247138,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_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_else, 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, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + 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, @@ -242216,12 +247175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3221] = 4, + [3264] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1768), 1, + STATE(1801), 1, sym_comment, - ACTIONS(1965), 16, + ACTIONS(5245), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242238,7 +247197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1967), 46, + ACTIONS(5243), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242285,30 +247244,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, - [3294] = 4, - ACTIONS(251), 1, + [3337] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1769), 1, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(1802), 1, sym_comment, - ACTIONS(2481), 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(2483), 46, + ACTIONS(2258), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242322,15 +247267,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_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2254), 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, @@ -242340,33 +247293,10 @@ static const uint16_t ts_small_parse_table[] = { aux_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, - [3367] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1770), 1, - sym_comment, - ACTIONS(2485), 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, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242375,46 +247305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2487), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, @@ -242423,12 +247313,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, - [3440] = 4, + aux_sym_unquoted_token1, + [3412] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1771), 1, + STATE(1803), 1, sym_comment, - ACTIONS(1969), 16, + ACTIONS(1034), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242445,7 +247336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1971), 46, + ACTIONS(1036), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242492,12 +247383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3513] = 4, + [3485] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1804), 1, sym_comment, - ACTIONS(2489), 16, + ACTIONS(2399), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242514,7 +247405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2491), 46, + ACTIONS(2401), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242561,19 +247452,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, - [3586] = 4, + [3558] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1773), 1, + STATE(1805), 1, sym_comment, - ACTIONS(2493), 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(1687), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242582,9 +247471,66 @@ 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(2495), 46, + ACTIONS(1699), 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, + [3631] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(1806), 1, + sym_comment, + ACTIONS(2274), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242598,15 +247544,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_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2272), 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, @@ -242616,33 +247570,10 @@ static const uint16_t ts_small_parse_table[] = { aux_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, - [3659] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1774), 1, - sym_comment, - ACTIONS(1695), 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, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242651,9 +247582,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(1707), 46, + [3706] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(1807), 1, + sym_comment, + ACTIONS(2238), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242667,15 +247614,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_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2234), 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, @@ -242685,12 +247640,18 @@ static const uint16_t ts_small_parse_table[] = { 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242699,12 +247660,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, - [3732] = 4, + aux_sym_unquoted_token1, + [3781] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1808), 1, sym_comment, - ACTIONS(2497), 16, + ACTIONS(1949), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242721,7 +247683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2499), 46, + ACTIONS(1951), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242768,12 +247730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3805] = 4, + [3854] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1776), 1, + STATE(1809), 1, sym_comment, - ACTIONS(1897), 16, + ACTIONS(2454), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242790,7 +247752,7 @@ 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(2456), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242837,15 +247799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3878] = 5, + [3927] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5150), 1, - anon_sym_LBRACK2, - STATE(1777), 1, + STATE(1810), 1, sym_comment, - ACTIONS(2333), 17, - anon_sym_LBRACK, + ACTIONS(2470), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242862,9 +247821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2337), 44, + ACTIONS(2472), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242876,9 +247834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -242907,12 +247868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3953] = 4, + [4000] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1811), 1, sym_comment, - ACTIONS(2413), 16, + ACTIONS(2462), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242929,7 +247890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2415), 46, + ACTIONS(2464), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242976,17 +247937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4026] = 4, + [4073] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1812), 1, sym_comment, - ACTIONS(1008), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2486), 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, @@ -242995,7 +247958,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(1010), 49, + aux_sym_unquoted_token1, + ACTIONS(2488), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243007,36 +247972,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_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -243045,96 +248006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4099] = 19, + [4146] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym_raw_string_begin, - ACTIONS(4351), 1, - anon_sym_DOLLAR, - ACTIONS(4377), 1, - anon_sym_DQUOTE, - ACTIONS(4381), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4383), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5152), 1, - anon_sym_LPAREN, - STATE(1780), 1, - sym_comment, - STATE(3861), 1, - sym__val_number_decimal, - STATE(4693), 1, - sym__inter_single_quotes, - STATE(4694), 1, - sym__inter_double_quotes, - ACTIONS(4379), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4475), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4548), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(367), 6, - 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(369), 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, - [4202] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1781), 1, + STATE(1813), 1, sym_comment, - ACTIONS(2088), 16, + ACTIONS(2492), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243151,7 +248028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2094), 46, + ACTIONS(2494), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243198,12 +248075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4275] = 4, + [4219] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1814), 1, sym_comment, - ACTIONS(5156), 16, + ACTIONS(1941), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243220,7 +248097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5154), 46, + ACTIONS(1943), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243267,12 +248144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4348] = 4, + [4292] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1783), 1, + STATE(1815), 1, sym_comment, - ACTIONS(5160), 16, + ACTIONS(2504), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243289,7 +248166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5158), 46, + ACTIONS(2506), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243336,14 +248213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4421] = 5, + [4365] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4682), 1, - aux_sym_unquoted_token2, - STATE(1784), 1, + STATE(1816), 1, sym_comment, - ACTIONS(1695), 16, + ACTIONS(2508), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243360,9 +248235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1707), 45, + ACTIONS(2510), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243376,8 +248250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243406,13 +248282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4496] = 4, + [4438] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1817), 1, sym_comment, - ACTIONS(5044), 17, - anon_sym_LPAREN, + ACTIONS(1883), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243429,9 +248304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5042), 45, + ACTIONS(1885), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243444,9 +248318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243475,12 +248351,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4569] = 4, + [4511] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1786), 1, + ACTIONS(5247), 1, + anon_sym_QMARK2, + STATE(1818), 1, + sym_comment, + ACTIONS(1008), 13, + anon_sym_GT2, + 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(1010), 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, + [4586] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5249), 1, + anon_sym_QMARK2, + STATE(1819), 1, sym_comment, - ACTIONS(2365), 16, + 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), 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, + [4661] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1820), 1, + sym_comment, + ACTIONS(1891), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243497,7 +248513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2367), 46, + ACTIONS(1893), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243544,12 +248560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4642] = 4, + [4734] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4801), 1, + aux_sym_unquoted_token2, + STATE(1821), 1, sym_comment, - ACTIONS(2417), 16, + ACTIONS(1687), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243566,7 +248584,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2419), 46, + ACTIONS(1699), 45, + 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_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, + [4809] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1822), 1, + sym_comment, + ACTIONS(1895), 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(1897), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243613,12 +248699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4715] = 4, + [4882] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1823), 1, sym_comment, - ACTIONS(2417), 16, + ACTIONS(2359), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243635,7 +248721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2419), 46, + ACTIONS(2361), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243682,12 +248768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4788] = 4, + [4955] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1824), 1, sym_comment, - ACTIONS(5044), 16, + ACTIONS(1917), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243704,7 +248790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5042), 46, + ACTIONS(1919), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243751,12 +248837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4861] = 4, + [5028] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1790), 1, + STATE(1825), 1, sym_comment, - ACTIONS(2369), 16, + ACTIONS(2367), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243773,7 +248859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2371), 46, + ACTIONS(2369), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243820,12 +248906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4934] = 4, + [5101] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1826), 1, sym_comment, - ACTIONS(2528), 16, + ACTIONS(1925), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243842,7 +248928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2530), 46, + ACTIONS(1927), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243889,12 +248975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5007] = 4, + [5174] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1827), 1, sym_comment, - ACTIONS(2425), 16, + ACTIONS(1933), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243911,7 +248997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2427), 46, + ACTIONS(1935), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -243958,12 +249044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5080] = 4, + [5247] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1828), 1, sym_comment, - ACTIONS(2429), 16, + ACTIONS(2371), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243980,7 +249066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2431), 46, + ACTIONS(2373), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244027,12 +249113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5153] = 4, + [5320] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1794), 1, + STATE(1829), 1, sym_comment, - ACTIONS(5056), 16, + ACTIONS(2375), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244049,7 +249135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5054), 46, + ACTIONS(2377), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244096,16 +249182,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, - [5226] = 4, + [5393] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1795), 1, + STATE(1830), 1, sym_comment, - ACTIONS(1026), 17, + ACTIONS(1937), 16, 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, @@ -244119,9 +249204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1028), 45, + ACTIONS(1939), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244135,8 +249219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -244165,12 +249251,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, - [5299] = 4, + [5466] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1796), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(5251), 1, + anon_sym_DOT_DOT2, + STATE(1831), 1, sym_comment, - ACTIONS(996), 13, + ACTIONS(5253), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244184,7 +249279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(998), 49, + ACTIONS(1838), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244199,11 +249294,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -244225,7 +249316,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -244234,12 +249324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5372] = 4, + [5547] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1832), 1, sym_comment, - ACTIONS(2098), 16, + ACTIONS(2383), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244256,7 +249346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2100), 46, + ACTIONS(2385), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244303,14 +249393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5445] = 5, + [5620] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_EQ2, - STATE(1798), 1, + STATE(1833), 1, sym_comment, - ACTIONS(5050), 16, + ACTIONS(1687), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244327,9 +249415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5048), 45, + ACTIONS(1699), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244343,8 +249430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -244373,12 +249462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5520] = 4, + [5693] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1834), 1, sym_comment, - ACTIONS(2437), 16, + ACTIONS(2387), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244395,7 +249484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2439), 46, + ACTIONS(2389), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244442,12 +249531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5593] = 4, + [5766] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1835), 1, sym_comment, - ACTIONS(2441), 16, + ACTIONS(1957), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244464,7 +249553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2443), 46, + ACTIONS(1959), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244511,13 +249600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5666] = 4, + [5839] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1801), 1, + STATE(1836), 1, sym_comment, - ACTIONS(5056), 17, - anon_sym_LPAREN, + ACTIONS(2520), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244534,9 +249622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5054), 45, + ACTIONS(2522), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244549,9 +249636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -244580,12 +249669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5739] = 4, + [5912] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1802), 1, + STATE(1837), 1, sym_comment, - ACTIONS(2373), 16, + ACTIONS(2391), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244602,7 +249691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2375), 46, + ACTIONS(2393), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244649,12 +249738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5812] = 4, + [5985] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1803), 1, + STATE(1838), 1, sym_comment, - ACTIONS(2379), 16, + ACTIONS(2391), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244671,7 +249760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2381), 46, + ACTIONS(2393), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244718,12 +249807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5885] = 4, + [6058] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1839), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(5126), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244740,7 +249829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 46, + ACTIONS(5124), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244787,12 +249876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5958] = 4, + [6131] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1840), 1, sym_comment, - ACTIONS(2387), 16, + ACTIONS(2403), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244809,7 +249898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2389), 46, + ACTIONS(2405), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244856,12 +249945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6031] = 4, + [6204] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1841), 1, sym_comment, - ACTIONS(2102), 16, + ACTIONS(2439), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244878,7 +249967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2104), 46, + ACTIONS(2441), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244925,24 +250014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6104] = 7, + [6277] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5046), 1, - anon_sym_DOT, - STATE(1807), 1, + STATE(1842), 1, sym_comment, - STATE(1832), 1, - aux_sym_cell_path_repeat1, - STATE(1995), 1, - sym_path, - ACTIONS(986), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(5138), 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, @@ -244951,8 +250035,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(988), 45, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(5136), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244964,31 +250049,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_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, + 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, @@ -244997,10 +250083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6183] = 4, + [6350] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1843), 1, sym_comment, ACTIONS(1022), 17, anon_sym_DOLLAR, @@ -245066,16 +250152,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6256] = 4, + [6423] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(1809), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5214), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR2, + STATE(1844), 1, sym_comment, - ACTIONS(1018), 17, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7437), 1, + sym__command_name, + STATE(7492), 1, + sym_wild_card, + STATE(7516), 1, + sym_scope_pattern, + STATE(7545), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5174), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5210), 6, + 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(5212), 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, + [6530] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2027), 1, + sym_raw_string_begin, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(4441), 1, + anon_sym_DQUOTE, + ACTIONS(4445), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4447), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5255), 1, + anon_sym_LPAREN, + STATE(1845), 1, + sym_comment, + STATE(4046), 1, + sym__val_number_decimal, + STATE(4967), 1, + sym__inter_single_quotes, + STATE(4983), 1, + sym__inter_double_quotes, + ACTIONS(4443), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4655), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4946), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(367), 6, + 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(369), 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, + [6633] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1846), 1, + sym_comment, + ACTIONS(2474), 16, 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, @@ -245089,9 +250344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1020), 45, + ACTIONS(2476), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245105,8 +250359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245135,56 +250391,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, - [6329] = 19, + [6706] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2172), 1, + STATE(1847), 1, + sym_comment, + ACTIONS(2478), 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(2480), 46, sym_raw_string_begin, - ACTIONS(4315), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_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, + 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, + [6779] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2027), 1, + sym_raw_string_begin, + ACTIONS(4415), 1, anon_sym_DOLLAR, - ACTIONS(4339), 1, + ACTIONS(4441), 1, anon_sym_DQUOTE, - ACTIONS(4343), 1, + ACTIONS(4445), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4345), 1, + ACTIONS(4447), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5075), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5164), 1, + ACTIONS(5255), 1, anon_sym_LPAREN, - STATE(1810), 1, + STATE(1848), 1, sym_comment, - STATE(3795), 1, + STATE(4046), 1, sym__val_number_decimal, - STATE(4933), 1, + STATE(4967), 1, sym__inter_single_quotes, - STATE(4935), 1, + STATE(4983), 1, sym__inter_double_quotes, - ACTIONS(4341), 2, + ACTIONS(4443), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4591), 2, + STATE(4655), 2, sym__raw_str, sym__str_double_quotes, - STATE(4685), 5, + STATE(4851), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(19), 6, + ACTIONS(367), 6, 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, + ACTIONS(369), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -245219,30 +250544,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [6432] = 4, - ACTIONS(251), 1, + [6882] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1811), 1, + STATE(1849), 1, sym_comment, - ACTIONS(4891), 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(4889), 46, + ACTIONS(2244), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245256,15 +250565,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_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2242), 41, + 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, @@ -245274,12 +250591,18 @@ static const uint16_t ts_small_parse_table[] = { 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245288,12 +250611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6505] = 4, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [6955] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1850), 1, sym_comment, - ACTIONS(4940), 16, + ACTIONS(5259), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245310,7 +250635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4938), 46, + ACTIONS(5257), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245357,17 +250682,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, - [6578] = 5, + [7028] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5166), 1, - anon_sym_EQ2, - STATE(1813), 1, + STATE(1851), 1, sym_comment, - ACTIONS(5032), 16, + ACTIONS(1018), 17, 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, @@ -245381,7 +250705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5030), 45, + ACTIONS(1020), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245427,17 +250751,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, - [6653] = 4, + [7101] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1852), 1, sym_comment, - ACTIONS(1000), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1014), 17, + 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, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245446,7 +250773,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(1002), 49, + aux_sym_unquoted_token1, + ACTIONS(1016), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245458,36 +250788,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_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -245496,22 +250820,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, - [6726] = 5, + [7174] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5168), 1, - anon_sym_QMARK2, - STATE(1815), 1, + ACTIONS(5167), 1, + aux_sym__immediate_decimal_token2, + STATE(1853), 1, sym_comment, - ACTIONS(990), 16, - sym__newline, + ACTIONS(1779), 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, @@ -245520,77 +250842,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(992), 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_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6801] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5170), 1, - anon_sym_QMARK2, - STATE(1816), 1, - sym_comment, - ACTIONS(1012), 16, + aux_sym_unquoted_token2, + ACTIONS(1781), 46, + ts_builtin_sym_end, 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1014), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245603,7 +250858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -245616,6 +250870,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -245627,7 +250882,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -245636,12 +250890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6876] = 4, + [7249] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1817), 1, + STATE(1854), 1, sym_comment, - ACTIONS(2532), 16, + ACTIONS(5263), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245658,7 +250912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2534), 46, + ACTIONS(5261), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245705,12 +250959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6949] = 4, + [7322] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1818), 1, + ACTIONS(4690), 1, + aux_sym_unquoted_token2, + STATE(1855), 1, sym_comment, - ACTIONS(2395), 16, + ACTIONS(1687), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245727,8 +250983,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2397), 46, + ACTIONS(1699), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245742,10 +250999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245774,12 +251029,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7022] = 4, + [7397] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1819), 1, + ACTIONS(2195), 1, + sym_raw_string_begin, + ACTIONS(4379), 1, + anon_sym_DOLLAR, + ACTIONS(4403), 1, + anon_sym_DQUOTE, + ACTIONS(4407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5265), 1, + anon_sym_LPAREN, + STATE(1856), 1, sym_comment, - ACTIONS(2403), 16, + STATE(4044), 1, + sym__val_number_decimal, + STATE(5066), 1, + sym__inter_single_quotes, + STATE(5068), 1, + sym__inter_double_quotes, + ACTIONS(4405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4801), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4916), 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, + [7500] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1857), 1, + sym_comment, + ACTIONS(2082), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245796,7 +251135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 46, + ACTIONS(2084), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245843,20 +251182,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, - [7095] = 5, + [7573] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - STATE(1820), 2, + ACTIONS(5267), 1, + anon_sym_QMARK2, + STATE(1858), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1312), 13, + ACTIONS(1008), 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, @@ -245865,7 +251206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1314), 47, + ACTIONS(1010), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245876,14 +251217,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_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_catch, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -245905,6 +251241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245913,19 +251252,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, - [7170] = 4, + [7648] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1821), 1, + ACTIONS(5269), 1, + anon_sym_QMARK2, + STATE(1859), 1, sym_comment, - ACTIONS(5177), 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(990), 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, @@ -245934,10 +251276,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(5175), 46, - sym_raw_string_begin, - sym__newline, + ACTIONS(992), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245948,32 +251287,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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -245982,436 +251322,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, - [7243] = 41, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1822), 1, - sym_comment, - STATE(2151), 1, - sym_short_flag, - STATE(2152), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5735), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [7390] = 41, + [7723] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1823), 1, + STATE(1860), 1, sym_comment, - STATE(2155), 1, - sym_short_flag, - STATE(2156), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5910), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [7537] = 41, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2389), 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, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1824), 1, - sym_comment, - STATE(2157), 1, - sym_short_flag, - STATE(2158), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5911), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [7684] = 41, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1825), 1, - sym_comment, - STATE(2159), 1, - sym_short_flag, - STATE(2160), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5912), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [7831] = 4, + 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, + [7796] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(1861), 1, sym_comment, - ACTIONS(1008), 16, + ACTIONS(2086), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246428,7 +251413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1010), 46, + ACTIONS(2088), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246475,226 +251460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7904] = 41, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1827), 1, - sym_comment, - STATE(2161), 1, - sym_short_flag, - STATE(2162), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5945), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [8051] = 41, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1828), 1, - sym_comment, - STATE(2163), 1, - sym_short_flag, - STATE(2164), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5946), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [8198] = 5, + [7869] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5028), 1, - aux_sym__immediate_decimal_token2, - STATE(1829), 1, + STATE(1862), 1, sym_comment, - ACTIONS(1785), 16, + ACTIONS(1000), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246711,9 +251482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1787), 45, + ACTIONS(1002), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246727,8 +251497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -246757,10 +251529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8273] = 4, + [7942] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1830), 1, + STATE(1863), 1, sym_comment, ACTIONS(1004), 16, anon_sym_DOLLAR, @@ -246826,10 +251598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8346] = 4, + [8015] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1831), 1, + STATE(1864), 1, sym_comment, ACTIONS(996), 16, anon_sym_DOLLAR, @@ -246895,17 +251667,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, - [8419] = 6, + [8088] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5179), 1, + ACTIONS(5128), 1, anon_sym_DOT, - STATE(1995), 1, - sym_path, - STATE(1832), 2, + STATE(1865), 1, sym_comment, + STATE(1879), 1, aux_sym_cell_path_repeat1, - ACTIONS(979), 14, + STATE(2088), 1, + sym_path, + ACTIONS(982), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246920,7 +251693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(981), 45, + ACTIONS(984), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -246966,12 +251739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8496] = 4, + [8167] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1866), 1, sym_comment, - ACTIONS(2181), 16, + ACTIONS(1052), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246988,7 +251761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2187), 46, + ACTIONS(1054), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247035,118 +251808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8569] = 41, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, - anon_sym_DASH_DASH, - ACTIONS(5136), 1, - anon_sym_DASH2, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(1834), 1, - sym_comment, - STATE(2123), 1, - sym_short_flag, - STATE(2124), 1, - sym_long_flag, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5899), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [8716] = 4, + [8240] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1835), 1, + STATE(1867), 1, sym_comment, - ACTIONS(2070), 16, + ACTIONS(986), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247163,7 +251830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2076), 46, + ACTIONS(988), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247210,19 +251877,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, - [8789] = 4, + [8313] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1836), 1, + STATE(1868), 1, sym_comment, - ACTIONS(2078), 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(1000), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247231,9 +251896,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(2084), 46, - sym_raw_string_begin, + ACTIONS(1002), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247245,32 +251908,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + 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, @@ -247279,12 +251946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8862] = 4, + [8386] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1837), 1, + STATE(1869), 1, sym_comment, - ACTIONS(2407), 16, + ACTIONS(4954), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247301,7 +251968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2409), 46, + ACTIONS(4952), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247348,12 +252015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8935] = 4, + [8459] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1838), 1, + STATE(1870), 1, sym_comment, - ACTIONS(5185), 16, + ACTIONS(5025), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247370,7 +252037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5182), 46, + ACTIONS(5023), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247417,96 +252084,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, - [9008] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2031), 1, - sym_raw_string_begin, - ACTIONS(4351), 1, - anon_sym_DOLLAR, - ACTIONS(4377), 1, - anon_sym_DQUOTE, - ACTIONS(4381), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4383), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5152), 1, - anon_sym_LPAREN, - STATE(1839), 1, - sym_comment, - STATE(3861), 1, - sym__val_number_decimal, - STATE(4693), 1, - sym__inter_single_quotes, - STATE(4694), 1, - sym__inter_double_quotes, - ACTIONS(4379), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4475), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4750), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(367), 6, - 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(369), 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, - [9111] = 4, + [8532] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1871), 1, sym_comment, - ACTIONS(1056), 16, + ACTIONS(5126), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247523,8 +252107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1058), 46, + ACTIONS(5124), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247537,11 +252122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247570,100 +252153,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, - [9184] = 41, + [8605] = 40, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, + ACTIONS(3365), 1, anon_sym_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3377), 1, aux_sym_expr_unary_token1, - ACTIONS(3463), 1, + ACTIONS(3385), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, + ACTIONS(3397), 1, anon_sym_0b, - ACTIONS(3481), 1, + ACTIONS(3403), 1, anon_sym_DQUOTE, - ACTIONS(3485), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, + ACTIONS(3413), 1, sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(5196), 1, anon_sym_DASH_DASH, - ACTIONS(5136), 1, + ACTIONS(5198), 1, anon_sym_DASH2, - ACTIONS(5138), 1, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_null, - ACTIONS(5146), 1, + ACTIONS(5208), 1, sym_val_date, - STATE(1841), 1, + STATE(1872), 1, sym_comment, - STATE(2125), 1, + STATE(2237), 1, sym_short_flag, - STATE(2128), 1, + STATE(2238), 1, sym_long_flag, - STATE(3526), 1, + STATE(3693), 1, sym__inter_single_quotes, - STATE(3527), 1, + STATE(3723), 1, sym__inter_double_quotes, - STATE(3528), 1, + STATE(3724), 1, sym__val_number, - STATE(3537), 1, + STATE(3743), 1, sym__val_number_decimal, - STATE(3613), 1, + STATE(3820), 1, sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, + STATE(3836), 1, sym_expr_parenthesized, - STATE(3905), 1, + STATE(4168), 1, sym__expr_unary_minus, - STATE(3980), 1, + STATE(4211), 1, sym__expr_binary_expression, - STATE(5901), 1, + STATE(6093), 1, sym__expression, - ACTIONS(3477), 2, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3483), 2, + ACTIONS(3405), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5140), 2, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - STATE(3588), 2, + STATE(3753), 2, sym__raw_str, sym__str_double_quotes, - STATE(3904), 3, + STATE(4167), 4, sym_expr_unary, sym_expr_binary, + sym_val_range, sym__value, - ACTIONS(3471), 6, + ACTIONS(3393), 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(3530), 12, + STATE(3698), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -247676,100 +252258,99 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9331] = 41, + [8750] = 40, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, + ACTIONS(3365), 1, anon_sym_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3377), 1, aux_sym_expr_unary_token1, - ACTIONS(3463), 1, + ACTIONS(3385), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, + ACTIONS(3397), 1, anon_sym_0b, - ACTIONS(3481), 1, + ACTIONS(3403), 1, anon_sym_DQUOTE, - ACTIONS(3485), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, + ACTIONS(3413), 1, sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(5196), 1, anon_sym_DASH_DASH, - ACTIONS(5136), 1, + ACTIONS(5198), 1, anon_sym_DASH2, - ACTIONS(5138), 1, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_null, - ACTIONS(5146), 1, + ACTIONS(5208), 1, sym_val_date, - STATE(1842), 1, + STATE(1873), 1, sym_comment, - STATE(2167), 1, + STATE(2240), 1, sym_short_flag, - STATE(2168), 1, + STATE(2241), 1, sym_long_flag, - STATE(3526), 1, + STATE(3693), 1, sym__inter_single_quotes, - STATE(3527), 1, + STATE(3723), 1, sym__inter_double_quotes, - STATE(3528), 1, + STATE(3724), 1, sym__val_number, - STATE(3537), 1, + STATE(3743), 1, sym__val_number_decimal, - STATE(3613), 1, + STATE(3820), 1, sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, + STATE(3836), 1, sym_expr_parenthesized, - STATE(3905), 1, + STATE(4168), 1, sym__expr_unary_minus, - STATE(3980), 1, + STATE(4211), 1, sym__expr_binary_expression, - STATE(5915), 1, + STATE(6151), 1, sym__expression, - ACTIONS(3477), 2, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3483), 2, + ACTIONS(3405), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5140), 2, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - STATE(3588), 2, + STATE(3753), 2, sym__raw_str, sym__str_double_quotes, - STATE(3904), 3, + STATE(4167), 4, sym_expr_unary, sym_expr_binary, + sym_val_range, sym__value, - ACTIONS(3471), 6, + ACTIONS(3393), 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(3530), 12, + STATE(3698), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -247782,100 +252363,99 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9478] = 41, + [8895] = 40, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, + ACTIONS(3365), 1, anon_sym_LBRACK, - ACTIONS(3451), 1, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3377), 1, aux_sym_expr_unary_token1, - ACTIONS(3463), 1, + ACTIONS(3385), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, + ACTIONS(3397), 1, anon_sym_0b, - ACTIONS(3481), 1, + ACTIONS(3403), 1, anon_sym_DQUOTE, - ACTIONS(3485), 1, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, + ACTIONS(3413), 1, sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5134), 1, + ACTIONS(5196), 1, anon_sym_DASH_DASH, - ACTIONS(5136), 1, + ACTIONS(5198), 1, anon_sym_DASH2, - ACTIONS(5138), 1, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - ACTIONS(5142), 1, + ACTIONS(5204), 1, anon_sym_null, - ACTIONS(5146), 1, + ACTIONS(5208), 1, sym_val_date, - STATE(1843), 1, + STATE(1874), 1, sym_comment, - STATE(2129), 1, + STATE(2242), 1, sym_short_flag, - STATE(2130), 1, + STATE(2243), 1, sym_long_flag, - STATE(3526), 1, + STATE(3693), 1, sym__inter_single_quotes, - STATE(3527), 1, + STATE(3723), 1, sym__inter_double_quotes, - STATE(3528), 1, + STATE(3724), 1, sym__val_number, - STATE(3537), 1, + STATE(3743), 1, sym__val_number_decimal, - STATE(3613), 1, + STATE(3820), 1, sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, + STATE(3836), 1, sym_expr_parenthesized, - STATE(3905), 1, + STATE(4168), 1, sym__expr_unary_minus, - STATE(3980), 1, + STATE(4211), 1, sym__expr_binary_expression, - STATE(5903), 1, + STATE(6153), 1, sym__expression, - ACTIONS(3477), 2, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3483), 2, + ACTIONS(3405), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5140), 2, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - STATE(3588), 2, + STATE(3753), 2, sym__raw_str, sym__str_double_quotes, - STATE(3904), 3, + STATE(4167), 4, sym_expr_unary, sym_expr_binary, + sym_val_range, sym__value, - ACTIONS(3471), 6, + ACTIONS(3393), 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(3530), 12, + STATE(3698), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -247888,313 +252468,335 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9625] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [9040] = 40, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5098), 1, + ACTIONS(3365), 1, anon_sym_LBRACK, - ACTIONS(5100), 1, - anon_sym_STAR2, - STATE(1844), 1, - sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(7137), 1, - sym_scope_pattern, - STATE(7267), 1, - sym__command_name, - STATE(7302), 1, - sym_wild_card, - STATE(7304), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5079), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5094), 6, - 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), 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, - [9732] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1845), 1, - sym_comment, - ACTIONS(5190), 16, - anon_sym_DOLLAR, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + anon_sym_DASH_DASH, + ACTIONS(5198), 1, anon_sym_DASH2, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1875), 1, + sym_comment, + STATE(2244), 1, + sym_short_flag, + STATE(2245), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6154), 1, + sym__expression, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5188), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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, - 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, - [9805] = 4, + STATE(3698), 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, + [9185] = 40, ACTIONS(251), 1, anon_sym_POUND, - STATE(1846), 1, - sym_comment, - ACTIONS(5194), 16, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 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_token1, - ACTIONS(5192), 46, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + ACTIONS(5196), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5198), 1, + anon_sym_DASH2, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1876), 1, + sym_comment, + STATE(2246), 1, + sym_short_flag, + STATE(2247), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6208), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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, - 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, - [9878] = 5, - ACTIONS(3), 1, + STATE(3698), 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, + [9330] = 40, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(1847), 1, - sym_comment, - ACTIONS(2286), 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, + ACTIONS(3365), 1, anon_sym_LBRACK, + ACTIONS(3367), 1, anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2282), 40, - anon_sym_DOLLAR, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, anon_sym_DASH_DASH, + ACTIONS(5198), 1, anon_sym_DASH2, + ACTIONS(5200), 1, anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1877), 1, + sym_comment, + STATE(2248), 1, + sym_short_flag, + STATE(2249), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6209), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5206), 2, 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, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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, - 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, - [9953] = 4, + STATE(3698), 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, + [9475] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(5271), 1, + aux_sym__immediate_decimal_token2, + STATE(1878), 1, sym_comment, - ACTIONS(1000), 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(1799), 15, + 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, @@ -248203,9 +252805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1002), 46, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1801), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248217,32 +252819,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_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, - 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248251,17 +252853,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, - [10026] = 4, + [9550] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1849), 1, + ACTIONS(5273), 1, + anon_sym_DOT, + STATE(2088), 1, + sym_path, + STATE(1879), 2, sym_comment, - ACTIONS(1695), 13, + aux_sym_cell_path_repeat1, + ACTIONS(975), 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, @@ -248270,7 +252878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1707), 49, + ACTIONS(977), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248282,14 +252891,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_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, @@ -248311,7 +252914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248320,12 +252924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10099] = 4, + [9627] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1850), 1, + STATE(1880), 1, sym_comment, - ACTIONS(2497), 13, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248339,7 +252943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2499), 49, + ACTIONS(1006), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248389,82 +252993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10172] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(1851), 1, - sym_comment, - ACTIONS(2294), 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(2290), 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, - [10247] = 4, + [9700] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1881), 1, sym_comment, - ACTIONS(2520), 16, + ACTIONS(5279), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248481,7 +253015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2522), 46, + ACTIONS(5276), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248528,81 +253062,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, - [10320] = 4, + [9773] = 40, ACTIONS(251), 1, anon_sym_POUND, - STATE(1853), 1, - sym_comment, - ACTIONS(2524), 16, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 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_token1, - ACTIONS(2526), 46, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + ACTIONS(5196), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5198), 1, + anon_sym_DASH2, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1882), 1, + sym_comment, + STATE(2269), 1, + sym_short_flag, + STATE(2270), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6239), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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, - 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, - [10393] = 4, + STATE(3698), 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, + [9918] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1883), 1, sym_comment, - ACTIONS(1004), 13, + ACTIONS(996), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248616,7 +253186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1006), 49, + ACTIONS(998), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248666,82 +253236,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10466] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1855), 1, - sym_comment, - STATE(7711), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5196), 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, - [10542] = 4, + [9991] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1856), 1, + ACTIONS(5282), 1, + anon_sym_EQ2, + STATE(1884), 1, sym_comment, - ACTIONS(5108), 16, + ACTIONS(5132), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248758,7 +253260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5106), 45, + ACTIONS(5130), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248804,12 +253306,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, - [10614] = 4, + [10066] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1885), 1, sym_comment, - ACTIONS(996), 16, + ACTIONS(5138), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248826,7 +253329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(998), 45, + ACTIONS(5136), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248841,9 +253344,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248872,420 +253375,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10686] = 4, + [10139] = 40, ACTIONS(251), 1, anon_sym_POUND, - STATE(1858), 1, - sym_comment, - ACTIONS(5056), 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(5054), 45, - 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, + ACTIONS(3365), 1, anon_sym_LBRACK, + ACTIONS(3367), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_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(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [10758] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1859), 1, - sym_comment, - ACTIONS(5190), 16, - anon_sym_DOLLAR, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + anon_sym_DASH_DASH, + ACTIONS(5198), 1, anon_sym_DASH2, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1886), 1, + sym_comment, + STATE(2194), 1, + sym_short_flag, + STATE(2196), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6358), 1, + sym__expression, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5188), 45, - 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_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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, - 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, - [10830] = 4, + STATE(3698), 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, + [10284] = 40, ACTIONS(251), 1, anon_sym_POUND, - STATE(1860), 1, - sym_comment, - ACTIONS(1000), 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(1002), 45, - 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, + ACTIONS(3365), 1, anon_sym_LBRACK, + ACTIONS(3367), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_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(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [10902] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1861), 1, - sym_comment, - ACTIONS(2395), 16, - anon_sym_DOLLAR, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + anon_sym_DASH_DASH, + ACTIONS(5198), 1, anon_sym_DASH2, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1887), 1, + sym_comment, + STATE(2197), 1, + sym_short_flag, + STATE(2198), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6097), 1, + sym__expression, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2397), 45, - 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_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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, - 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, - [10974] = 4, + STATE(3698), 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, + [10429] = 40, ACTIONS(251), 1, anon_sym_POUND, - STATE(1862), 1, - sym_comment, - ACTIONS(5000), 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(4998), 45, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - 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(3365), 1, anon_sym_LBRACK, + ACTIONS(3367), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3373), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_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(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [11046] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1863), 1, - sym_comment, - ACTIONS(2399), 16, - anon_sym_DOLLAR, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + anon_sym_DASH_DASH, + ACTIONS(5198), 1, anon_sym_DASH2, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(1888), 1, + sym_comment, + STATE(2199), 1, + sym_short_flag, + STATE(2200), 1, + sym_long_flag, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6133), 1, + sym__expression, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2401), 45, - 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_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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, - sym_val_date, + STATE(3698), 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, + [10574] = 21, + ACTIONS(109), 1, anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5214), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + anon_sym_STAR2, + STATE(1889), 1, + sym_comment, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7437), 1, + sym__command_name, + STATE(7473), 1, + sym_scope_pattern, + STATE(7492), 1, + sym_wild_card, + STATE(7545), 1, + sym_command_list, + ACTIONS(111), 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, - [11118] = 4, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5169), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5210), 6, + 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(5212), 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, + [10681] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1864), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2403), 16, + ACTIONS(2379), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249302,9 +253798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 45, + ACTIONS(2381), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249318,8 +253813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249348,19 +253845,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, - [11190] = 4, + [10754] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1865), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(1891), 1, sym_comment, - ACTIONS(1824), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + 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, @@ -249369,10 +253868,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(1826), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249384,30 +253880,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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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_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, @@ -249416,12 +253915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11262] = 4, + [10830] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1892), 1, sym_comment, - ACTIONS(2520), 16, + ACTIONS(1799), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249438,7 +253937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2522), 45, + ACTIONS(1801), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249484,12 +253983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11334] = 4, + [10902] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1893), 1, sym_comment, - ACTIONS(2524), 16, + ACTIONS(5186), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249506,7 +254005,7 @@ 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(5184), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249552,12 +254051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11406] = 4, + [10974] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1868), 1, + STATE(1894), 1, sym_comment, - ACTIONS(2421), 16, + ACTIONS(5090), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249574,9 +254073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2423), 45, + ACTIONS(5088), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249590,6 +254088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -249620,19 +254119,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, - [11478] = 4, + [11046] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1895), 1, sym_comment, - ACTIONS(2528), 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(1304), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249641,10 +254138,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(2530), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1302), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249656,30 +254150,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_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_else, 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_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, @@ -249688,12 +254187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11550] = 4, + [11118] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1896), 1, sym_comment, - ACTIONS(2445), 16, + ACTIONS(2399), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249710,7 +254209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2447), 45, + ACTIONS(2401), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249756,12 +254255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11622] = 4, + [11190] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1897), 1, sym_comment, - ACTIONS(5112), 16, + ACTIONS(2072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249778,7 +254277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5110), 45, + ACTIONS(2078), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249824,19 +254323,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, - [11694] = 4, + [11262] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1898), 1, sym_comment, - ACTIONS(5016), 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(1022), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249845,9 +254342,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(5014), 45, - sym_raw_string_begin, + ACTIONS(1024), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249859,31 +254354,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, 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_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, @@ -249892,12 +254391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11766] = 4, + [11334] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1899), 1, sym_comment, - ACTIONS(5116), 16, + ACTIONS(1818), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249914,7 +254413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5114), 45, + ACTIONS(1820), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249960,80 +254459,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, - [11838] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1874), 1, - sym_comment, - ACTIONS(1022), 13, - anon_sym_GT2, - 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(1024), 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, - [11910] = 4, + [11406] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1875), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(5288), 1, + anon_sym_DOT_DOT2, + STATE(1900), 1, sym_comment, - ACTIONS(1018), 13, + ACTIONS(5290), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250047,7 +254487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1020), 48, + ACTIONS(1838), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250059,13 +254500,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_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, @@ -250087,7 +254523,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -250096,12 +254531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11982] = 4, + [11486] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1876), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2449), 16, + ACTIONS(1000), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250118,7 +254553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2451), 45, + ACTIONS(1002), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250164,12 +254599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12054] = 4, + [11558] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1877), 1, + STATE(1902), 1, sym_comment, - ACTIONS(2407), 16, + ACTIONS(5126), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250186,7 +254621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2409), 45, + ACTIONS(5124), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250232,12 +254667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12126] = 4, + [11630] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1903), 1, sym_comment, - ACTIONS(2361), 16, + ACTIONS(2082), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250254,7 +254689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2363), 45, + ACTIONS(2084), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250300,12 +254735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12198] = 4, + [11702] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1879), 1, + STATE(1904), 1, sym_comment, - ACTIONS(2365), 16, + ACTIONS(1004), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250322,7 +254757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2367), 45, + ACTIONS(1006), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250368,12 +254803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12270] = 4, + [11774] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1905), 1, sym_comment, - ACTIONS(2098), 16, + ACTIONS(996), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250390,7 +254825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2100), 45, + ACTIONS(998), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250436,12 +254871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12342] = 4, + [11846] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1906), 1, sym_comment, - ACTIONS(2369), 16, + ACTIONS(5138), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250458,7 +254893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2371), 45, + ACTIONS(5136), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250504,12 +254939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12414] = 4, + [11918] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1882), 1, + STATE(1907), 1, sym_comment, - ACTIONS(2373), 16, + ACTIONS(1949), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250526,7 +254961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2375), 45, + ACTIONS(1951), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250572,12 +255007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12486] = 4, + [11990] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1908), 1, sym_comment, - ACTIONS(2379), 16, + ACTIONS(2454), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250594,7 +255029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2381), 45, + ACTIONS(2456), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250640,17 +255075,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, - [12558] = 4, + [12062] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1909), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1771), 15, 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, @@ -250659,7 +255095,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(1306), 48, + aux_sym_unquoted_token2, + ACTIONS(1773), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250671,14 +255109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_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, @@ -250691,6 +255123,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -250700,6 +255133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250708,12 +255143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12630] = 4, + [12134] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1910), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(986), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250730,7 +255165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 45, + ACTIONS(988), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250776,12 +255211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12702] = 4, + [12206] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1911), 1, sym_comment, - ACTIONS(2387), 16, + ACTIONS(2470), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250798,7 +255233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2389), 45, + ACTIONS(2472), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250844,12 +255279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12774] = 4, + [12278] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1912), 1, sym_comment, - ACTIONS(1917), 16, + ACTIONS(2395), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250866,7 +255301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1919), 45, + ACTIONS(2397), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250912,19 +255347,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, - [12846] = 4, + [12350] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1888), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(1913), 1, sym_comment, - ACTIONS(2461), 16, - anon_sym_DOLLAR, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4994), 13, + anon_sym_GT2, + 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(4992), 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_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + 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, + [12426] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5292), 1, + anon_sym_DOT_DOT2, + STATE(1914), 1, + sym_comment, + ACTIONS(5294), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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, @@ -250933,10 +255441,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(2463), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2096), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250948,30 +255453,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_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, 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_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, @@ -250980,19 +255487,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, - [12918] = 4, + [12502] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1889), 1, + ACTIONS(5296), 1, + anon_sym_DOT_DOT2, + STATE(1915), 1, sym_comment, - ACTIONS(2465), 16, - anon_sym_DOLLAR, + ACTIONS(5298), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2098), 13, + anon_sym_GT2, + 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(2104), 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_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_LBRACE, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12578] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(1916), 1, + sym_comment, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5006), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251001,10 +255580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2467), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5004), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251016,30 +255592,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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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_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, @@ -251048,12 +255627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12990] = 4, + [12654] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1917), 1, sym_comment, - ACTIONS(1933), 16, + ACTIONS(2090), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251070,7 +255649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1935), 45, + ACTIONS(2096), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251116,12 +255695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13062] = 4, + [12726] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1891), 1, + STATE(1918), 1, sym_comment, - ACTIONS(1941), 16, + ACTIONS(2098), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251138,7 +255717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1943), 45, + ACTIONS(2104), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251184,12 +255763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13134] = 4, + [12798] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1919), 1, sym_comment, - ACTIONS(1945), 16, + ACTIONS(2131), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251206,7 +255785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1947), 45, + ACTIONS(2137), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251252,12 +255831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13206] = 4, + [12870] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1920), 1, sym_comment, - ACTIONS(2469), 16, + ACTIONS(5222), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251274,7 +255853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 45, + ACTIONS(5220), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251320,12 +255899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13278] = 4, + [12942] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1894), 1, + STATE(1921), 1, sym_comment, - ACTIONS(2064), 16, + ACTIONS(5226), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251342,7 +255921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2066), 45, + ACTIONS(5224), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251388,12 +255967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13350] = 4, + [13014] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1922), 1, sym_comment, - ACTIONS(2473), 16, + ACTIONS(2391), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251410,7 +255989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2475), 45, + ACTIONS(2393), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251456,12 +256035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13422] = 4, + [13086] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(1923), 1, sym_comment, - ACTIONS(4928), 16, + ACTIONS(2391), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251478,8 +256057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2726), 45, + ACTIONS(2393), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251493,7 +256073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -251524,12 +256103,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, - [13494] = 4, + [13158] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1897), 1, + ACTIONS(5300), 1, + anon_sym_LBRACK2, + STATE(1924), 1, + sym_comment, + ACTIONS(2304), 13, + anon_sym_GT2, + 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(2308), 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_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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13232] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1925), 1, sym_comment, - ACTIONS(2477), 16, + ACTIONS(4998), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251546,9 +256194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2479), 45, + ACTIONS(4996), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251562,6 +256209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -251592,19 +256240,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, - [13566] = 4, + [13304] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1926), 1, sym_comment, - ACTIONS(1957), 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(1818), 15, + 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, @@ -251613,9 +256260,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(1959), 45, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1820), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251628,44 +256274,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_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13376] = 39, + ACTIONS(155), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(183), 1, anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(383), 1, + anon_sym_LPAREN, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(3217), 1, + sym__newline, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3495), 1, + anon_sym_null, + STATE(1860), 1, + sym__val_number, + STATE(1927), 1, + sym_comment, + STATE(2027), 1, + sym_val_variable, + STATE(2041), 1, + sym_expr_parenthesized, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2960), 1, + aux_sym_shebang_repeat1, + STATE(3307), 1, + sym__val_number_decimal, + STATE(4158), 1, + sym__expr_binary_expression_parenthesized, + STATE(7288), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2441), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(431), 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, - 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, - [13638] = 4, + STATE(2225), 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, + [13518] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1928), 1, sym_comment, - ACTIONS(1965), 16, + ACTIONS(2086), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251682,7 +256433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1967), 45, + ACTIONS(2088), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251728,12 +256479,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, - [13710] = 4, + [13590] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1900), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(5302), 1, + anon_sym_DOT_DOT2, + STATE(1929), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 13, + anon_sym_GT2, + 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(1848), 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, + [13670] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1930), 1, sym_comment, - ACTIONS(2481), 16, + ACTIONS(2403), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251750,7 +256573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2483), 45, + ACTIONS(2405), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251796,12 +256619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13782] = 4, + [13742] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1901), 1, + STATE(1931), 1, sym_comment, - ACTIONS(2485), 16, + ACTIONS(2439), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251818,7 +256641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2487), 45, + ACTIONS(2441), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251864,12 +256687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13854] = 4, + [13814] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1902), 1, + STATE(1932), 1, sym_comment, - ACTIONS(1969), 16, + ACTIONS(5190), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251886,7 +256709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1971), 45, + ACTIONS(5188), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251932,12 +256755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13926] = 4, + [13886] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1933), 1, sym_comment, - ACTIONS(2489), 16, + ACTIONS(2458), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251954,7 +256777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2491), 45, + ACTIONS(2460), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252000,12 +256823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13998] = 4, + [13958] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1934), 1, sym_comment, - ACTIONS(2493), 16, + ACTIONS(2462), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252022,7 +256845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2495), 45, + ACTIONS(2464), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252068,12 +256891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14070] = 4, + [14030] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1935), 1, sym_comment, - ACTIONS(1695), 16, + ACTIONS(2466), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252090,7 +256913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1707), 45, + ACTIONS(2468), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252136,12 +256959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14142] = 4, + [14102] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1936), 1, sym_comment, - ACTIONS(5040), 16, + ACTIONS(2407), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252158,8 +256981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5038), 45, + ACTIONS(2409), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252173,7 +256997,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -252204,12 +257027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14214] = 4, + [14174] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1907), 1, + STATE(1937), 1, sym_comment, - ACTIONS(2497), 16, + ACTIONS(2411), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252226,7 +257049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2499), 45, + ACTIONS(2413), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252272,12 +257095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14286] = 4, + [14246] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1938), 1, sym_comment, - ACTIONS(2088), 16, + ACTIONS(2415), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252294,7 +257117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2094), 45, + ACTIONS(2417), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252340,80 +257163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14358] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1909), 1, - sym_comment, - ACTIONS(5044), 13, - anon_sym_GT2, - 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(5042), 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_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, - [14430] = 4, + [14318] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(1939), 1, sym_comment, - ACTIONS(2417), 16, + ACTIONS(2486), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252430,7 +257185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2419), 45, + ACTIONS(2488), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252476,12 +257231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14502] = 4, + [14390] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1911), 1, + STATE(1940), 1, sym_comment, - ACTIONS(2417), 16, + ACTIONS(5230), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252498,7 +257253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2419), 45, + ACTIONS(5228), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252544,12 +257299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14574] = 4, + [14462] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1912), 1, + STATE(1941), 1, sym_comment, - ACTIONS(2102), 16, + ACTIONS(5234), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252566,7 +257321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2104), 45, + ACTIONS(5232), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252612,116 +257367,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14646] = 40, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [14534] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1062), 1, - anon_sym_DOLLAR, - ACTIONS(3305), 1, + STATE(1942), 1, + sym_comment, + ACTIONS(1018), 13, + anon_sym_GT2, + 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(1020), 48, 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(3377), 1, - anon_sym_null, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(1913), 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_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, + [14606] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1943), 1, sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2826), 1, - aux_sym_shebang_repeat1, - STATE(3549), 1, - sym__val_number_decimal, - STATE(3607), 1, - sym_expr_parenthesized, - STATE(3614), 1, - sym_val_variable, - STATE(3891), 1, - sym__expr_binary_expression_parenthesized, - STATE(3950), 1, - sym_val_range, - STATE(6507), 1, - sym__expression_parenthesized, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2450), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(431), 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(2174), 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, - [14790] = 4, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1016), 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, + [14678] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1944), 1, sym_comment, - ACTIONS(2425), 16, + ACTIONS(2492), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252738,7 +257525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2427), 45, + ACTIONS(2494), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252784,12 +257571,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14862] = 4, + [14750] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1915), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(1945), 1, sym_comment, - ACTIONS(2429), 16, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5065), 13, + anon_sym_GT2, + 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(5063), 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, + [14826] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1946), 1, + sym_comment, + ACTIONS(2482), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252806,7 +257663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2431), 45, + ACTIONS(2484), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252852,12 +257709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14934] = 4, + [14898] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1916), 1, + STATE(1947), 1, sym_comment, - ACTIONS(5160), 16, + ACTIONS(2419), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252874,7 +257731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5158), 45, + ACTIONS(2421), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252920,87 +257777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15006] = 4, + [14970] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1917), 1, + STATE(1948), 1, sym_comment, - ACTIONS(1008), 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(1010), 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, + ACTIONS(2423), 16, + anon_sym_DOLLAR, 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, - [15078] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1918), 1, - sym_comment, - ACTIONS(1004), 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_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253009,7 +257798,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(1006), 46, + aux_sym_unquoted_token1, + ACTIONS(2425), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253022,32 +257813,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_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_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, @@ -253056,12 +257845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15150] = 4, + [15042] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1919), 1, + STATE(1949), 1, sym_comment, - ACTIONS(1004), 16, + ACTIONS(2427), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253078,7 +257867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1006), 45, + ACTIONS(2429), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253124,19 +257913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15222] = 4, + [15114] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1950), 1, sym_comment, - ACTIONS(1000), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(5045), 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, @@ -253145,8 +257934,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(1002), 46, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(2815), 45, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253158,32 +257948,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_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_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, + 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, @@ -253192,12 +257981,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, - [15294] = 4, + [15186] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1921), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(1951), 1, sym_comment, - ACTIONS(1026), 13, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4988), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253211,7 +258004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 48, + ACTIONS(4986), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253226,7 +258019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -253251,7 +258043,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -253260,12 +258051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15366] = 4, + [15262] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1952), 1, sym_comment, - ACTIONS(1897), 16, + ACTIONS(2431), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253282,7 +258073,7 @@ 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(2433), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253328,10 +258119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15438] = 4, + [15334] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1923), 1, + STATE(1953), 1, sym_comment, ACTIONS(5194), 16, anon_sym_DOLLAR, @@ -253396,12 +258187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15510] = 4, + [15406] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1924), 1, + STATE(1954), 1, sym_comment, - ACTIONS(5177), 16, + ACTIONS(2435), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253418,7 +258209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5175), 45, + ACTIONS(2437), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253464,17 +258255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15582] = 4, + [15478] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1955), 1, sym_comment, - ACTIONS(5056), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2443), 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, @@ -253483,7 +258276,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(5054), 48, + aux_sym_unquoted_token1, + ACTIONS(2445), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253495,35 +258291,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_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -253532,12 +258323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15654] = 4, + [15550] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1926), 1, + STATE(1956), 1, sym_comment, - ACTIONS(2437), 16, + ACTIONS(2447), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253554,7 +258345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2439), 45, + ACTIONS(2449), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253600,12 +258391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15726] = 4, + [15622] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1927), 1, + STATE(1957), 1, sym_comment, - ACTIONS(2441), 16, + ACTIONS(5120), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253622,9 +258413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2443), 45, + ACTIONS(5118), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253638,6 +258428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -253668,20 +258459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15798] = 4, + [15694] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1958), 1, sym_comment, - ACTIONS(1026), 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, + ACTIONS(2474), 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, @@ -253690,7 +258480,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(1028), 45, + aux_sym_unquoted_token1, + ACTIONS(2476), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253701,33 +258495,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_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, @@ -253736,12 +258527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15870] = 4, + [15766] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1959), 1, sym_comment, - ACTIONS(2413), 16, + ACTIONS(1941), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253758,7 +258549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2415), 45, + ACTIONS(1943), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253804,12 +258595,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15942] = 4, + [15838] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1930), 1, + ACTIONS(383), 1, + anon_sym_LPAREN, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(3217), 1, + sym__newline, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3495), 1, + anon_sym_null, + STATE(1860), 1, + sym__val_number, + STATE(1960), 1, + sym_comment, + STATE(2027), 1, + sym_val_variable, + STATE(2028), 1, + aux_sym_shebang_repeat1, + STATE(2041), 1, + sym_expr_parenthesized, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3307), 1, + sym__val_number_decimal, + STATE(4158), 1, + sym__expr_binary_expression_parenthesized, + STATE(7281), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2441), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [15980] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1961), 1, sym_comment, - ACTIONS(1038), 16, + ACTIONS(2504), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253826,7 +258720,7 @@ 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(2506), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253872,21 +258766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16014] = 6, + [16052] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1931), 1, + STATE(1962), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2478), 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, @@ -253895,7 +258787,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(5196), 46, + aux_sym_unquoted_token1, + ACTIONS(2480), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253907,33 +258802,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_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -253942,20 +258834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16090] = 4, + [16124] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1932), 1, + STATE(1963), 1, sym_comment, - ACTIONS(1022), 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, + ACTIONS(1779), 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, @@ -253964,7 +258855,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(1024), 45, + aux_sym_unquoted_token1, + ACTIONS(1781), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253975,33 +258870,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_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, @@ -254010,20 +258902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16162] = 4, + [16196] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1933), 1, + STATE(1964), 1, sym_comment, - ACTIONS(1018), 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, + ACTIONS(2508), 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, @@ -254032,7 +258923,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(1020), 45, + aux_sym_unquoted_token1, + ACTIONS(2510), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254043,33 +258938,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_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, @@ -254078,21 +258970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16234] = 6, + [16268] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1934), 1, + STATE(1965), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1883), 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, @@ -254101,7 +258991,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(5196), 46, + aux_sym_unquoted_token1, + ACTIONS(1885), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254113,33 +259006,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_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -254148,21 +259038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16310] = 6, + [16340] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1935), 1, + STATE(1966), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1891), 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, @@ -254171,7 +259059,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(5196), 46, + aux_sym_unquoted_token1, + ACTIONS(1893), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254183,33 +259074,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_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -254218,16 +259106,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16386] = 6, + [16412] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1936), 1, + ACTIONS(383), 1, + anon_sym_LPAREN, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(3217), 1, + sym__newline, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3495), 1, + anon_sym_null, + STATE(1860), 1, + sym__val_number, + STATE(1927), 1, + aux_sym_shebang_repeat1, + STATE(1967), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + STATE(2027), 1, + sym_val_variable, + STATE(2041), 1, + sym_expr_parenthesized, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3307), 1, + sym__val_number_decimal, + STATE(4158), 1, + sym__expr_binary_expression_parenthesized, + STATE(7286), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2441), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [16554] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1968), 1, + sym_comment, + ACTIONS(5126), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254241,7 +259228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(5124), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254256,6 +259243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -254271,6 +259259,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -254288,21 +259277,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, - [16462] = 6, + [16626] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1937), 1, + STATE(1969), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1779), 15, 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, @@ -254311,7 +259297,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(5196), 46, + aux_sym_unquoted_token2, + ACTIONS(1781), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254323,12 +259311,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254341,6 +259325,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -254350,6 +259335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254358,21 +259345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16538] = 6, + [16698] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1938), 1, + STATE(1970), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1895), 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, @@ -254381,7 +259366,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(5196), 46, + aux_sym_unquoted_token1, + ACTIONS(1897), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254393,33 +259381,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_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -254428,21 +259413,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, - [16614] = 6, + [16770] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1939), 1, + STATE(1971), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1022), 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, @@ -254451,8 +259435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, - sym__newline, + ACTIONS(1024), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254463,12 +259446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254490,6 +259470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254498,21 +259481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16690] = 6, + [16842] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1940), 1, + STATE(1972), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4954), 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, @@ -254521,7 +259502,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(5196), 46, + aux_sym_unquoted_token1, + ACTIONS(4952), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254533,33 +259517,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_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -254568,16 +259549,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, - [16766] = 6, + [16914] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1941), 1, + ACTIONS(5306), 1, + anon_sym_DOT_DOT2, + STATE(1973), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5308), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254591,7 +259573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(1838), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254608,7 +259590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254638,125 +259619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16842] = 40, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [16990] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1062), 1, + STATE(1974), 1, + sym_comment, + ACTIONS(2359), 16, anon_sym_DOLLAR, - ACTIONS(3305), 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(3377), 1, - anon_sym_null, - ACTIONS(5200), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(1942), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2826), 1, - aux_sym_shebang_repeat1, - STATE(3549), 1, - sym__val_number_decimal, - STATE(3607), 1, - sym_expr_parenthesized, - STATE(3614), 1, - sym_val_variable, - STATE(3891), 1, - sym__expr_binary_expression_parenthesized, - STATE(3950), 1, - sym_val_range, - STATE(6805), 1, - sym__expression_parenthesized, - ACTIONS(233), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2450), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(431), 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(2174), 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, - [16986] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1943), 1, - sym_comment, - STATE(7711), 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, @@ -254765,7 +259640,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(5196), 46, + aux_sym_unquoted_token1, + ACTIONS(2361), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254777,56 +259655,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_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, - [17062] = 6, - ACTIONS(251), 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, + [17062] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1944), 1, + STATE(1975), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1917), 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(1919), 45, + 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_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, + [17134] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1976), 1, + sym_comment, + ACTIONS(5263), 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(5261), 45, + 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_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, + [17206] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1977), 1, + sym_comment, + ACTIONS(1000), 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, @@ -254835,7 +259844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(1002), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254847,12 +259857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254874,6 +259881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254882,12 +259891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17138] = 4, + [17278] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1978), 1, sym_comment, - ACTIONS(1056), 16, + ACTIONS(2363), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254904,7 +259913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1058), 45, + ACTIONS(2365), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254950,12 +259959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17210] = 4, + [17350] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1979), 1, sym_comment, - ACTIONS(5120), 16, + ACTIONS(2367), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254972,7 +259981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5118), 45, + ACTIONS(2369), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255018,21 +260027,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, - [17282] = 6, + [17422] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1947), 1, + STATE(1980), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 13, + ACTIONS(1018), 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, @@ -255041,8 +260049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4986), 46, - sym__newline, + ACTIONS(1020), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255053,12 +260060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255080,6 +260084,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255088,21 +260095,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, - [17358] = 6, + [17494] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1948), 1, + STATE(1981), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4996), 13, + 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, @@ -255111,8 +260117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4994), 46, - sym__newline, + ACTIONS(1016), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255123,12 +260128,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255150,6 +260152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255158,21 +260163,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17434] = 6, + [17566] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1949), 1, + STATE(1982), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1925), 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, @@ -255181,7 +260184,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(5196), 46, + aux_sym_unquoted_token1, + ACTIONS(1927), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255193,33 +260199,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_LBRACK, + anon_sym_LPAREN, + 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_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -255228,12 +260231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17510] = 4, + [17638] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1983), 1, sym_comment, - ACTIONS(1785), 16, + ACTIONS(1933), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255250,7 +260253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1787), 45, + ACTIONS(1935), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255296,12 +260299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17582] = 4, + [17710] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1984), 1, sym_comment, - ACTIONS(1889), 16, + ACTIONS(2371), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255318,7 +260321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1891), 45, + ACTIONS(2373), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255364,14 +260367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17654] = 5, + [17782] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5204), 1, - anon_sym_QMARK2, - STATE(1952), 1, + STATE(1985), 1, sym_comment, - ACTIONS(990), 15, + ACTIONS(1004), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255387,7 +260388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 45, + ACTIONS(1006), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -255402,6 +260403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255433,12 +260435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17728] = 4, + [17854] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1953), 1, + STATE(1986), 1, sym_comment, - ACTIONS(2391), 16, + ACTIONS(2375), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255455,7 +260457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2393), 45, + ACTIONS(2377), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255501,81 +260503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17800] = 5, + [17926] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5206), 1, - anon_sym_QMARK2, - STATE(1954), 1, - sym_comment, - ACTIONS(1012), 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(1014), 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, - [17874] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1955), 1, + STATE(1987), 1, sym_comment, - ACTIONS(2433), 16, + ACTIONS(1937), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255592,7 +260525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2435), 45, + ACTIONS(1939), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255638,19 +260571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17946] = 4, + [17998] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1956), 1, + STATE(1988), 1, sym_comment, - ACTIONS(5124), 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(996), 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, @@ -255659,9 +260592,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(5122), 45, - sym_raw_string_begin, + ACTIONS(998), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -255674,98 +260605,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_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, - [18018] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1957), 1, - sym_comment, - ACTIONS(2532), 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(2534), 45, - 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_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_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, @@ -255774,123 +260639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18090] = 40, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1062), 1, - anon_sym_DOLLAR, - ACTIONS(3305), 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(3377), 1, - anon_sym_null, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(1913), 1, - aux_sym_shebang_repeat1, - STATE(1958), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3549), 1, - sym__val_number_decimal, - STATE(3607), 1, - sym_expr_parenthesized, - STATE(3614), 1, - sym_val_variable, - STATE(3891), 1, - sym__expr_binary_expression_parenthesized, - STATE(3950), 1, - sym_val_range, - STATE(6733), 1, - sym__expression_parenthesized, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2450), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(431), 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(2174), 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, - [18234] = 4, + [18070] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1959), 1, + STATE(1989), 1, sym_comment, - ACTIONS(5156), 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(986), 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, @@ -255899,9 +260660,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(5154), 45, - sym_raw_string_begin, + ACTIONS(988), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -255914,98 +260673,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_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, - [18306] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1960), 1, - sym_comment, - ACTIONS(2181), 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(2187), 45, - 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_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_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, @@ -256014,12 +260707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18378] = 4, + [18142] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1961), 1, + STATE(1990), 1, sym_comment, - ACTIONS(5185), 16, + ACTIONS(2379), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256036,7 +260729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5182), 45, + ACTIONS(2381), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256082,12 +260775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18450] = 4, + [18214] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1962), 1, + STATE(1991), 1, sym_comment, - ACTIONS(4891), 16, + ACTIONS(5245), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256104,7 +260797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4889), 45, + ACTIONS(5243), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256150,19 +260843,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, - [18522] = 4, + [18286] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1963), 1, + STATE(1992), 1, sym_comment, - ACTIONS(5104), 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(5138), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256171,10 +260862,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(5102), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5136), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256186,98 +260874,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_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, - [18594] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1964), 1, - sym_comment, - ACTIONS(1801), 16, - anon_sym_DOLLAR, + anon_sym_RPAREN, 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(1803), 45, - 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_DASH_DASH, + anon_sym_in2, + anon_sym_if, 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_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, @@ -256286,12 +260911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18666] = 4, + [18358] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1965), 1, + STATE(1993), 1, sym_comment, - ACTIONS(1008), 16, + ACTIONS(2383), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256308,7 +260933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1010), 45, + ACTIONS(2385), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256354,12 +260979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18738] = 4, + [18430] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1966), 1, + STATE(1994), 1, sym_comment, - ACTIONS(1793), 16, + ACTIONS(2520), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256376,7 +261001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1795), 45, + ACTIONS(2522), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256422,19 +261047,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, - [18810] = 4, + [18502] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1967), 1, + ACTIONS(5310), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5312), 1, + aux_sym__immediate_decimal_token2, + STATE(1995), 1, sym_comment, - ACTIONS(4940), 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(1771), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256443,10 +261070,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(4938), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1773), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256458,30 +261083,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_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_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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256490,12 +261117,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18882] = 4, + [18578] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1968), 1, + STATE(1996), 1, sym_comment, - ACTIONS(2070), 16, + ACTIONS(1687), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256512,7 +261139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2076), 45, + ACTIONS(1699), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256558,12 +261185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18954] = 4, + [18650] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1969), 1, + STATE(1997), 1, sym_comment, - ACTIONS(5044), 16, + ACTIONS(2387), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256580,7 +261207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5042), 45, + ACTIONS(2389), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256626,16 +261253,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, - [19026] = 6, + [18722] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1970), 1, + ACTIONS(5314), 1, + anon_sym_DOT, + ACTIONS(5316), 1, + aux_sym__immediate_decimal_token2, + STATE(1998), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5004), 13, + ACTIONS(1779), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256649,7 +261276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5002), 46, + aux_sym_unquoted_token2, + ACTIONS(1781), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256664,9 +261292,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -256679,6 +261305,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -256696,16 +261323,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, - [19102] = 6, + [18798] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1971), 1, + STATE(1999), 1, sym_comment, - STATE(7966), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5008), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256719,7 +261346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5006), 46, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256766,14 +261393,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, - [19178] = 5, + [18874] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5208), 1, - anon_sym_LBRACK2, - STATE(1972), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2000), 1, sym_comment, - ACTIONS(2333), 13, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256787,7 +261416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2337), 47, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256802,7 +261431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -256835,12 +261463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19252] = 4, + [18950] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1973), 1, + STATE(2001), 1, sym_comment, - ACTIONS(2078), 16, + ACTIONS(1052), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256857,7 +261485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2084), 45, + ACTIONS(1054), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256903,331 +261531,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, - [19324] = 40, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1062), 1, - anon_sym_DOLLAR, - ACTIONS(3305), 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(3377), 1, - anon_sym_null, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(1974), 1, - sym_comment, - STATE(1975), 1, - aux_sym_shebang_repeat1, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3549), 1, - sym__val_number_decimal, - STATE(3607), 1, - sym_expr_parenthesized, - STATE(3614), 1, - sym_val_variable, - STATE(3891), 1, - sym__expr_binary_expression_parenthesized, - STATE(3950), 1, - sym_val_range, - STATE(6793), 1, - sym__expression_parenthesized, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2450), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(431), 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(2174), 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, - [19468] = 40, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1062), 1, - anon_sym_DOLLAR, - ACTIONS(3305), 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(3377), 1, - anon_sym_null, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(1975), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2826), 1, - aux_sym_shebang_repeat1, - STATE(3549), 1, - sym__val_number_decimal, - STATE(3607), 1, - sym_expr_parenthesized, - STATE(3614), 1, - sym_val_variable, - STATE(3891), 1, - sym__expr_binary_expression_parenthesized, - STATE(3950), 1, - sym_val_range, - STATE(6796), 1, - sym__expression_parenthesized, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2450), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(431), 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(2174), 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, - [19612] = 40, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1062), 1, - anon_sym_DOLLAR, - ACTIONS(3305), 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(3377), 1, - anon_sym_null, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(1942), 1, - aux_sym_shebang_repeat1, - STATE(1976), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3549), 1, - sym__val_number_decimal, - STATE(3607), 1, - sym_expr_parenthesized, - STATE(3614), 1, - sym_val_variable, - STATE(3891), 1, - sym__expr_binary_expression_parenthesized, - STATE(3950), 1, - sym_val_range, - STATE(6803), 1, - sym__expression_parenthesized, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2450), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(431), 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(2174), 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, - [19756] = 4, + [19022] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1977), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2002), 1, sym_comment, - ACTIONS(996), 15, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, 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, @@ -257236,8 +261554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(998), 46, - ts_builtin_sym_end, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257249,9 +261566,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_DASH2, anon_sym_in2, - anon_sym_QMARK2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257273,8 +261593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257283,18 +261601,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, - [19828] = 7, + [19098] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1978), 1, + STATE(2003), 1, sym_comment, - STATE(2284), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257308,7 +261624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257324,6 +261640,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -257353,12 +261671,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, - [19905] = 4, + [19174] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1979), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2004), 1, sym_comment, - ACTIONS(2469), 13, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257372,7 +261694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2471), 47, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257387,7 +261709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -257420,23 +261741,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, - [19976] = 7, + [19250] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1980), 1, + STATE(2005), 1, sym_comment, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(1799), 15, 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, @@ -257445,7 +261761,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(5214), 44, + aux_sym_unquoted_token2, + ACTIONS(1801), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257457,10 +261775,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257473,6 +261789,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -257482,6 +261799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257490,20 +261809,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, - [20053] = 8, + [19322] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(1981), 1, + ACTIONS(5318), 1, + anon_sym_DOT_DOT2, + STATE(2006), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2499), 1, - sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(5320), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2131), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257517,8 +261833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1927), 43, - ts_builtin_sym_end, + ACTIONS(2137), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257530,8 +261845,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257561,23 +261879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20132] = 7, + [19398] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1982), 1, + STATE(2007), 1, sym_comment, - STATE(2282), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5025), 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, @@ -257586,7 +261900,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(5220), 44, + aux_sym_unquoted_token1, + ACTIONS(5023), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257598,31 +261915,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -257631,18 +261947,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, - [20209] = 7, + [19470] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1983), 1, + STATE(2008), 1, sym_comment, - STATE(2261), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257656,7 +261970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257672,6 +261986,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -257701,18 +262017,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, - [20286] = 7, + [19546] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1984), 1, + STATE(2009), 1, sym_comment, - STATE(2185), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257726,7 +262040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257742,6 +262056,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -257771,18 +262087,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, - [20363] = 7, + [19622] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1985), 1, + STATE(2010), 1, sym_comment, - STATE(2289), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257796,7 +262110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257812,71 +262126,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [20440] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1986), 1, - sym_comment, - ACTIONS(2481), 13, - anon_sym_GT2, - 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(2483), 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_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_and2, @@ -257908,18 +262157,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, - [20511] = 7, + [19698] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1987), 1, + STATE(2011), 1, sym_comment, - STATE(2299), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257933,7 +262180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257949,6 +262196,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -257978,18 +262227,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, - [20588] = 7, + [19774] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1988), 1, + STATE(2012), 1, sym_comment, - STATE(2219), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258003,7 +262250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258019,6 +262266,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -258048,18 +262297,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, - [20665] = 7, + [19850] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1989), 1, + STATE(2013), 1, sym_comment, - STATE(2187), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258073,7 +262320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258089,6 +262336,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -258118,18 +262367,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, - [20742] = 7, + [19926] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(1990), 1, + STATE(2014), 1, sym_comment, - STATE(2316), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258143,7 +262390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258159,6 +262406,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -258188,89 +262437,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, - [20819] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(1991), 1, - sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2503), 1, - sym_cell_path, - ACTIONS(1929), 13, - anon_sym_GT2, - 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(1931), 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, - [20898] = 7, + [20002] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1992), 1, + ACTIONS(5322), 1, + anon_sym_DOT_DOT2, + STATE(2015), 1, sym_comment, - STATE(2322), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(5324), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258284,7 +262461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(1848), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258300,6 +262477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258329,25 +262507,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, - [20975] = 8, + [20078] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(1993), 1, + ACTIONS(5326), 1, + anon_sym_QMARK2, + STATE(2016), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2543), 1, - sym_cell_path, - ACTIONS(1909), 13, + ACTIONS(1008), 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, @@ -258356,7 +262530,7 @@ 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), 43, + ACTIONS(1010), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258392,6 +262566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258400,17 +262576,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, - [21054] = 4, + [20152] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1994), 1, + ACTIONS(5328), 1, + anon_sym_QMARK2, + STATE(2017), 1, sym_comment, - ACTIONS(2064), 13, + 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, @@ -258419,7 +262599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2066), 47, + ACTIONS(992), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258431,13 +262612,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_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, @@ -258459,6 +262635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258467,19 +262645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21125] = 4, + [20226] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1995), 1, + STATE(2018), 1, sym_comment, - ACTIONS(1026), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(1771), 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, @@ -258488,7 +262666,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(1028), 45, + aux_sym_unquoted_token1, + ACTIONS(1773), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258501,31 +262681,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_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, @@ -258534,12 +262713,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, - [21196] = 4, + [20298] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1996), 1, + ACTIONS(5330), 1, + anon_sym_DOT_DOT2, + STATE(2019), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(5332), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258553,7 +262737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2487), 47, + ACTIONS(2078), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258568,10 +262752,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -258601,22 +262783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21267] = 6, + [20374] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5228), 1, - anon_sym_DOT, - STATE(2176), 1, - sym_path, - STATE(1997), 2, + STATE(2020), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5259), 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, @@ -258625,7 +262804,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(981), 44, + aux_sym_unquoted_token1, + ACTIONS(5257), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258638,30 +262819,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -258670,23 +262851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21342] = 7, + [20446] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1998), 1, + STATE(2021), 1, sym_comment, - STATE(2188), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5182), 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, @@ -258695,7 +262872,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(5214), 44, + aux_sym_unquoted_token1, + ACTIONS(5180), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258707,31 +262887,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -258740,23 +262919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21419] = 7, + [20518] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(1999), 1, + STATE(2022), 1, sym_comment, - STATE(2265), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1034), 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, @@ -258765,7 +262940,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(5224), 44, + aux_sym_unquoted_token1, + ACTIONS(1036), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258777,31 +262955,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -258810,23 +262987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21496] = 7, + [20590] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2000), 1, + STATE(2023), 1, sym_comment, - STATE(2297), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1957), 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, @@ -258835,7 +263008,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(5220), 44, + aux_sym_unquoted_token1, + ACTIONS(1959), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258847,31 +263023,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -258880,23 +263055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21573] = 7, + [20662] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2001), 1, + STATE(2024), 1, sym_comment, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 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, @@ -258905,7 +263076,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(5220), 44, + aux_sym_unquoted_token1, + ACTIONS(5276), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258917,31 +263091,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_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, @@ -258950,18 +263123,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21650] = 7, + [20734] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2002), 1, + ACTIONS(383), 1, + anon_sym_LPAREN, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(3217), 1, + sym__newline, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3495), 1, + anon_sym_null, + STATE(1860), 1, + sym__val_number, + STATE(2025), 1, sym_comment, - STATE(2237), 1, + STATE(2026), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + STATE(2027), 1, + sym_val_variable, + STATE(2041), 1, + sym_expr_parenthesized, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3307), 1, + sym__val_number_decimal, + STATE(4158), 1, + sym__expr_binary_expression_parenthesized, + STATE(7272), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2441), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [20876] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(383), 1, + anon_sym_LPAREN, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(3217), 1, + sym__newline, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3495), 1, + anon_sym_null, + STATE(1860), 1, + sym__val_number, + STATE(2026), 1, + sym_comment, + STATE(2027), 1, + sym_val_variable, + STATE(2041), 1, + sym_expr_parenthesized, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2960), 1, + aux_sym_shebang_repeat1, + STATE(3307), 1, + sym__val_number_decimal, + STATE(4158), 1, + sym__expr_binary_expression_parenthesized, + STATE(7276), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2441), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [21018] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1046), 1, + anon_sym_DOT_DOT2, + STATE(2027), 1, + sym_comment, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258975,7 +263353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(1036), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258991,6 +263369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259020,19 +263399,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, - [21727] = 4, + [21094] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2003), 1, - sym_comment, - ACTIONS(1777), 15, + ACTIONS(383), 1, + anon_sym_LPAREN, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(3217), 1, sym__newline, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3495), 1, + anon_sym_null, + STATE(1860), 1, + sym__val_number, + STATE(2027), 1, + sym_val_variable, + STATE(2028), 1, + sym_comment, + STATE(2041), 1, + sym_expr_parenthesized, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2960), 1, + aux_sym_shebang_repeat1, + STATE(3307), 1, + sym__val_number_decimal, + STATE(4158), 1, + sym__expr_binary_expression_parenthesized, + STATE(7181), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2441), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [21236] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2029), 1, + sym_comment, + STATE(2300), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5336), 13, 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, @@ -259041,7 +263527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1779), 45, + ACTIONS(5334), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259052,9 +263539,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, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259076,9 +263564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259087,12 +263572,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, - [21798] = 4, + [21313] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2004), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2030), 1, sym_comment, - ACTIONS(1969), 13, + STATE(2421), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259106,7 +263597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 47, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259121,10 +263612,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -259154,18 +263642,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, - [21869] = 7, + [21390] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2005), 1, + STATE(2031), 1, sym_comment, - STATE(2189), 1, + STATE(2337), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259179,7 +263667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259224,18 +263712,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, - [21946] = 7, + [21467] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2006), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2032), 1, sym_comment, - STATE(2222), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2635), 1, + sym_cell_path, + ACTIONS(1945), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259249,7 +263739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(1947), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259261,10 +263752,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259294,12 +263783,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22023] = 4, + [21546] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2007), 1, + STATE(2033), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(2407), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259313,7 +263802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2491), 47, + ACTIONS(2409), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259361,12 +263850,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, - [22094] = 4, + [21617] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2008), 1, + ACTIONS(5344), 1, + anon_sym_DOT, + STATE(2293), 1, + sym_path, + STATE(2034), 2, sym_comment, - ACTIONS(2493), 13, + aux_sym_cell_path_repeat1, + ACTIONS(975), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259380,7 +263874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2495), 47, + ACTIONS(977), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259392,13 +263887,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259428,12 +263919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22165] = 4, + [21692] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2009), 1, + STATE(2035), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(2492), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259447,7 +263938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2447), 47, + ACTIONS(2494), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259495,18 +263986,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, - [22236] = 7, + [21763] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2010), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2036), 1, sym_comment, - STATE(2190), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8183), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [21902] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2037), 1, + sym_comment, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2214), 1, + sym_cell_path, + STATE(2293), 1, + sym_path, + ACTIONS(1757), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259520,7 +264114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(1761), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259532,10 +264127,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259565,18 +264158,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, - [22313] = 7, + [21981] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2011), 1, + STATE(2038), 1, sym_comment, - STATE(2302), 1, + STATE(2427), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259590,7 +264183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259635,18 +264228,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22390] = 7, + [22058] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2039), 1, + sym_comment, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8204), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [22197] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2012), 1, + STATE(2040), 1, sym_comment, - STATE(2191), 1, + STATE(2388), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259660,7 +264354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259705,23 +264399,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, - [22467] = 7, + [22274] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2013), 1, + ACTIONS(1046), 1, + anon_sym_DOT_DOT2, + ACTIONS(5349), 1, + sym__newline, + STATE(2041), 1, sym_comment, - STATE(2212), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5354), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5358), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259730,8 +264426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, - sym__newline, + ACTIONS(5352), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259743,9 +264438,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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5356), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259767,27 +264471,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_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, + [22355] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2042), 1, + sym_comment, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2637), 1, + sym_cell_path, + ACTIONS(2033), 13, + anon_sym_GT2, + 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(2035), 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, - [22544] = 4, + [22434] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2014), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2043), 1, sym_comment, - ACTIONS(2193), 15, + STATE(2338), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, + anon_sym_GT2, + 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(5338), 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, + [22511] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2044), 1, + sym_comment, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2171), 1, + sym_cell_path, + STATE(2293), 1, + sym_path, + ACTIONS(969), 13, 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, @@ -259796,7 +264639,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(2195), 45, + ACTIONS(971), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259809,7 +264654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259831,9 +264675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259842,18 +264683,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, - [22615] = 7, + [22590] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2015), 1, + STATE(2045), 1, sym_comment, - STATE(2306), 1, + STATE(2408), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259867,7 +264708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259912,18 +264753,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, - [22692] = 7, + [22667] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2016), 1, + STATE(2046), 1, sym_comment, - STATE(2315), 1, + STATE(2324), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259937,7 +264778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259982,12 +264823,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, - [22769] = 4, + [22744] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2017), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2047), 1, sym_comment, - ACTIONS(1945), 13, + STATE(2402), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260001,7 +264848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 47, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260016,10 +264863,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -260049,12 +264893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22840] = 4, + [22821] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2018), 1, + STATE(2048), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(2508), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260068,7 +264912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2451), 47, + ACTIONS(2510), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260116,20 +264960,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, - [22911] = 8, + [22892] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2019), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2049), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2153), 1, - sym_cell_path, - STATE(2176), 1, - sym_path, - ACTIONS(1777), 13, + STATE(2308), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260143,8 +264985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1779), 43, - ts_builtin_sym_end, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260156,8 +264997,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260187,18 +265030,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, - [22990] = 7, + [22969] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2020), 1, + STATE(2050), 1, sym_comment, - STATE(2235), 1, + STATE(2339), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260212,7 +265055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260257,18 +265100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23067] = 7, + [23046] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2021), 1, + STATE(2051), 1, sym_comment, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(2359), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260282,7 +265119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(2361), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260297,7 +265134,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -260327,20 +265167,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23144] = 8, + [23117] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, + ACTIONS(5342), 1, anon_sym_DOT, - STATE(2022), 1, + STATE(2052), 1, sym_comment, - STATE(2047), 1, + STATE(2148), 1, aux_sym_cell_path_repeat1, - STATE(2176), 1, + STATE(2293), 1, sym_path, - STATE(2530), 1, + STATE(2673), 1, sym_cell_path, - ACTIONS(1901), 13, + ACTIONS(1917), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260354,7 +265194,7 @@ 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), 43, + ACTIONS(1919), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260398,20 +265238,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, - [23223] = 8, + [23196] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2023), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2053), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2498), 1, - sym_cell_path, - ACTIONS(1961), 13, + STATE(2341), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260425,8 +265263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1963), 43, - ts_builtin_sym_end, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260438,8 +265275,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260469,20 +265308,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, - [23302] = 8, + [23273] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2024), 1, + ACTIONS(1046), 1, + anon_sym_DOT_DOT2, + STATE(2054), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2500), 1, - sym_cell_path, - ACTIONS(1965), 13, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5354), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260496,8 +265332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 43, - ts_builtin_sym_end, + ACTIONS(5356), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260509,8 +265344,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260540,18 +265377,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, - [23381] = 7, + [23348] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2025), 1, + STATE(2055), 1, sym_comment, - STATE(2277), 1, + STATE(2378), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260565,7 +265402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260610,12 +265447,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, - [23458] = 4, + [23425] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2026), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2056), 1, sym_comment, - ACTIONS(1917), 13, + STATE(2316), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260629,7 +265472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 47, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260644,10 +265487,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -260677,12 +265517,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, - [23529] = 4, + [23502] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2027), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2057), 1, sym_comment, - ACTIONS(2433), 13, + STATE(2321), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260696,7 +265542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2435), 47, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260711,10 +265557,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -260744,20 +265587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23600] = 8, + [23579] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2028), 1, + STATE(2058), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2528), 1, - sym_cell_path, - ACTIONS(1885), 13, + ACTIONS(2371), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260771,8 +265606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1887), 43, - ts_builtin_sym_end, + ACTIONS(2373), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260784,8 +265618,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_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, @@ -260815,20 +265654,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, - [23679] = 8, + [23650] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, + ACTIONS(5342), 1, anon_sym_DOT, - STATE(2029), 1, + STATE(2059), 1, sym_comment, - STATE(2047), 1, + STATE(2148), 1, aux_sym_cell_path_repeat1, - STATE(2105), 1, - sym_cell_path, - STATE(2176), 1, + STATE(2293), 1, sym_path, - ACTIONS(973), 13, + STATE(2618), 1, + sym_cell_path, + ACTIONS(1941), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260842,7 +265681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(975), 43, + ACTIONS(1943), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260886,18 +265725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23758] = 7, + [23729] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2030), 1, + STATE(2060), 1, sym_comment, - STATE(2290), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(1883), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260911,7 +265744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(1885), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260926,7 +265759,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -260956,222 +265792,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, - [23835] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2031), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7555), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [23976] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2032), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7567), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [24117] = 7, + [23800] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2033), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2061), 1, sym_comment, - STATE(2319), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2619), 1, + sym_cell_path, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261185,7 +265819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(1873), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261197,10 +265832,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261230,26 +265863,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, - [24194] = 9, + [23879] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, - anon_sym_DOT_DOT2, - ACTIONS(1054), 1, - aux_sym_record_entry_token1, - STATE(2034), 1, + STATE(2062), 1, sym_comment, - ACTIONS(1052), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5239), 5, + ACTIONS(1891), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5235), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261258,7 +265882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 19, + ACTIONS(1893), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261269,18 +265894,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_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5241), 23, + 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, @@ -261302,26 +265922,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24275] = 9, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [23950] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - aux_sym_record_entry_token1, - STATE(2035), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2063), 1, sym_comment, - ACTIONS(1052), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5239), 5, + STATE(2342), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5235), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261330,7 +265955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 19, + ACTIONS(5364), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261341,18 +265967,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_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5241), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261374,18 +265992,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24356] = 7, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24027] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2036), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2064), 1, sym_comment, - STATE(2268), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2664), 1, + sym_cell_path, + ACTIONS(1875), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261399,7 +266027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(1877), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261411,10 +266040,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261444,12 +266071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24433] = 4, + [24106] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2037), 1, + STATE(2065), 1, sym_comment, - ACTIONS(2473), 13, + ACTIONS(1917), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261463,7 +266090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2475), 47, + ACTIONS(1919), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261511,18 +266138,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, - [24504] = 7, + [24177] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2038), 1, + STATE(2066), 1, sym_comment, - STATE(2183), 1, + STATE(2350), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261536,7 +266163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261581,20 +266208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24581] = 8, + [24254] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2039), 1, + STATE(2067), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2511), 1, - sym_cell_path, - ACTIONS(1933), 13, + ACTIONS(2375), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261608,8 +266227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 43, - ts_builtin_sym_end, + ACTIONS(2377), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261621,8 +266239,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_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, @@ -261652,89 +266275,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, - [24660] = 8, + [24325] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2040), 1, - sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2512), 1, - sym_cell_path, - ACTIONS(1937), 13, - anon_sym_GT2, - 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(1939), 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, - [24739] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2041), 1, + STATE(2068), 1, sym_comment, - STATE(2296), 1, + STATE(2392), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261748,7 +266300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261793,20 +266345,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, - [24816] = 8, + [24402] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, + ACTIONS(5342), 1, anon_sym_DOT, - STATE(2042), 1, + STATE(2069), 1, sym_comment, - STATE(2047), 1, + STATE(2148), 1, aux_sym_cell_path_repeat1, - STATE(2176), 1, + STATE(2293), 1, sym_path, - STATE(2526), 1, + STATE(2674), 1, sym_cell_path, - ACTIONS(1941), 13, + ACTIONS(1879), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261820,7 +266372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 43, + ACTIONS(1881), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261864,20 +266416,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, - [24895] = 8, + [24481] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2043), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2070), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2533), 1, - sym_cell_path, - ACTIONS(1945), 13, + STATE(2361), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261891,8 +266441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 43, - ts_builtin_sym_end, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261904,8 +266453,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261935,20 +266486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24974] = 8, + [24558] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2044), 1, + STATE(2071), 1, sym_comment, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2536), 1, - sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(2363), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261962,8 +266505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 43, - ts_builtin_sym_end, + ACTIONS(2365), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261975,8 +266517,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_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, @@ -262006,18 +266553,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, - [25053] = 7, + [24629] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2045), 1, + STATE(2072), 1, sym_comment, - STATE(2193), 1, + STATE(2419), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262031,7 +266578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262076,12 +266623,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, - [25130] = 4, + [24706] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2046), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2073), 1, sym_comment, - ACTIONS(2477), 13, + STATE(2412), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262095,7 +266648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2479), 47, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262110,10 +266663,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -262143,18 +266693,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, - [25201] = 7, + [24783] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(1997), 1, - aux_sym_cell_path_repeat1, - STATE(2047), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2074), 1, sym_comment, - STATE(2176), 1, - sym_path, - ACTIONS(986), 13, + STATE(2428), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262168,8 +266718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(988), 44, - ts_builtin_sym_end, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262181,6 +266730,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_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -262213,20 +266763,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, - [25278] = 8, + [24860] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, + ACTIONS(5342), 1, anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2048), 1, + STATE(2075), 1, sym_comment, - STATE(2176), 1, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, sym_path, - STATE(2509), 1, + STATE(2678), 1, sym_cell_path, - ACTIONS(1893), 13, + ACTIONS(1953), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262240,7 +266790,7 @@ 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), 43, + ACTIONS(1955), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262284,20 +266834,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, - [25357] = 8, + [24939] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2049), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2076), 1, sym_comment, - STATE(2176), 1, - sym_path, - STATE(2474), 1, - sym_cell_path, - ACTIONS(1953), 13, + STATE(2393), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262311,8 +266859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1955), 43, - ts_builtin_sym_end, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262324,8 +266871,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262355,20 +266904,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, - [25436] = 8, + [25016] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2050), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2077), 1, sym_comment, - STATE(2176), 1, - sym_path, - STATE(2541), 1, - sym_cell_path, - ACTIONS(1905), 13, + STATE(2332), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262382,8 +266929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1907), 43, - ts_builtin_sym_end, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262395,8 +266941,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262426,20 +266974,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, - [25515] = 8, + [25093] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2051), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2078), 1, sym_comment, - STATE(2176), 1, - sym_path, - STATE(2545), 1, - sym_cell_path, - ACTIONS(1897), 13, + STATE(2298), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262453,8 +266999,7 @@ 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), 43, - ts_builtin_sym_end, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262466,8 +267011,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262497,20 +267044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25594] = 8, + [25170] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2052), 1, + ACTIONS(5316), 1, + aux_sym__immediate_decimal_token2, + STATE(2079), 1, sym_comment, - STATE(2176), 1, - sym_path, - STATE(2494), 1, - sym_cell_path, - ACTIONS(2064), 13, + ACTIONS(1779), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262524,8 +267065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2066), 43, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1781), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262537,8 +267078,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262551,6 +267094,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -262568,12 +267112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25673] = 4, + [25243] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2053), 1, + STATE(2080), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(2419), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262587,7 +267131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2467), 47, + ACTIONS(2421), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262635,23 +267179,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, - [25744] = 8, + [25314] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, - anon_sym_DOT_DOT2, - STATE(2054), 1, + STATE(2081), 1, sym_comment, - ACTIONS(1052), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5239), 5, + ACTIONS(1937), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5235), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262660,7 +267198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 21, + ACTIONS(1939), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262673,18 +267211,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_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5241), 23, 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, @@ -262706,12 +267238,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25823] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25385] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2055), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2082), 1, sym_comment, - ACTIONS(1933), 13, + STATE(2394), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262725,7 +267271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 47, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262740,10 +267286,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -262773,18 +267316,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, - [25894] = 7, + [25462] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2056), 1, + STATE(2083), 1, sym_comment, - STATE(2272), 1, + STATE(2345), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262798,7 +267341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262843,18 +267386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25971] = 7, + [25539] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2057), 1, + STATE(2084), 1, sym_comment, - STATE(2275), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(1941), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262868,7 +267405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(1943), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262883,7 +267420,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -262913,18 +267453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26048] = 7, + [25610] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2058), 1, + STATE(2085), 1, sym_comment, - STATE(2179), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(2470), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262938,7 +267472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(2472), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262953,7 +267487,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -262983,18 +267520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26125] = 7, + [25681] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2059), 1, + STATE(2086), 1, sym_comment, - STATE(2279), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(2367), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263008,7 +267539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(2369), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263023,7 +267554,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -263053,20 +267587,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, - [26202] = 8, + [25752] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2060), 1, + ACTIONS(5368), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5370), 1, + aux_sym__immediate_decimal_token2, + STATE(2087), 1, sym_comment, - STATE(2176), 1, - sym_path, - STATE(2497), 1, - sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(1771), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263080,7 +267610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 43, + aux_sym_unquoted_token2, + ACTIONS(1773), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263107,6 +267638,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -263124,17 +267656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26281] = 4, + [25827] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2061), 1, + STATE(2088), 1, sym_comment, - ACTIONS(1965), 13, + ACTIONS(1022), 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, @@ -263143,7 +267677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 47, + ACTIONS(1024), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263155,13 +267690,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_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, @@ -263183,6 +267713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263191,18 +267723,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, - [26352] = 7, + [25898] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2062), 1, + STATE(2089), 1, sym_comment, - STATE(2288), 1, + STATE(2391), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263216,7 +267748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263261,12 +267793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26429] = 4, + [25975] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2063), 1, + STATE(2090), 1, sym_comment, - ACTIONS(2461), 13, + ACTIONS(2090), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263280,7 +267812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2463), 47, + ACTIONS(2096), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263328,20 +267860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26500] = 8, + [26046] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2064), 1, + STATE(2091), 1, sym_comment, - STATE(2121), 1, - sym_cell_path, - STATE(2176), 1, - sym_path, - ACTIONS(1771), 13, + ACTIONS(2423), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263355,8 +267879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1775), 43, - ts_builtin_sym_end, + ACTIONS(2425), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263368,8 +267891,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_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, @@ -263399,18 +267927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26579] = 7, + [26117] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2065), 1, + STATE(2092), 1, sym_comment, - STATE(2240), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(2415), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263424,7 +267946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(2417), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263439,7 +267961,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -263469,18 +267994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26656] = 7, + [26188] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2066), 1, + STATE(2093), 1, sym_comment, - STATE(2196), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(2098), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263494,7 +268013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(2104), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263509,7 +268028,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -263539,120 +268061,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, - [26733] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [26259] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2067), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7555), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [26874] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2068), 1, + STATE(2094), 1, sym_comment, - STATE(2208), 1, + STATE(2359), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263666,7 +268086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263711,12 +268131,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, - [26951] = 4, + [26336] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2069), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2095), 1, sym_comment, - ACTIONS(2421), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2268), 1, + sym_cell_path, + STATE(2293), 1, + sym_path, + ACTIONS(1763), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263730,7 +268158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2423), 47, + ACTIONS(1765), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263742,13 +268171,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_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, @@ -263778,18 +268202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27022] = 7, + [26415] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2070), 1, + STATE(2096), 1, sym_comment, - STATE(2220), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(1895), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263803,7 +268221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(1897), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263818,7 +268236,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -263848,12 +268269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27099] = 4, + [26486] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2071), 1, + STATE(2097), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(2435), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263867,7 +268288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 47, + ACTIONS(2437), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263915,12 +268336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27170] = 4, + [26557] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2072), 1, + STATE(2098), 1, sym_comment, - ACTIONS(1022), 15, + ACTIONS(1014), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263936,7 +268357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1024), 45, + ACTIONS(1016), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263982,19 +268403,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, - [27241] = 4, + [26628] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2073), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2099), 1, sym_comment, - ACTIONS(1018), 15, + STATE(2380), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, 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, @@ -264003,8 +268428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1020), 45, - ts_builtin_sym_end, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264016,8 +268440,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264039,8 +268465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264049,17 +268473,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, - [27312] = 6, + [26705] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, - anon_sym_DOT_DOT2, - STATE(2074), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2100), 1, sym_comment, - ACTIONS(1052), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 13, + STATE(2395), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264073,7 +268498,7 @@ 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), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264088,7 +268513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264118,18 +268543,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, - [27387] = 7, + [26782] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2075), 1, + STATE(2101), 1, sym_comment, - STATE(2305), 1, + STATE(2379), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264143,7 +268568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264188,20 +268613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27464] = 8, + [26859] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2076), 1, + STATE(2102), 1, sym_comment, - STATE(2176), 1, - sym_path, - STATE(2492), 1, - sym_cell_path, - ACTIONS(1917), 13, + ACTIONS(2395), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264215,8 +268632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 43, - ts_builtin_sym_end, + ACTIONS(2397), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264228,8 +268644,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_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, @@ -264259,18 +268680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27543] = 7, + [26930] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2077), 1, + ACTIONS(5372), 1, + aux_sym__immediate_decimal_token2, + STATE(2103), 1, sym_comment, - STATE(2177), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(1799), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264284,7 +268701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + aux_sym_unquoted_token2, + ACTIONS(1801), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264299,7 +268717,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + 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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [27003] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2104), 1, + sym_comment, + ACTIONS(2123), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2125), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264321,6 +268804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264329,18 +268815,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, - [27620] = 7, + [27074] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2078), 1, + STATE(2105), 1, sym_comment, - STATE(2178), 1, + STATE(2295), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264354,7 +268840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264399,18 +268885,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, - [27697] = 7, + [27151] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2079), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2106), 1, sym_comment, - STATE(2181), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2589), 1, + sym_cell_path, + ACTIONS(1883), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264424,7 +268912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(1885), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264436,10 +268925,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264469,18 +268956,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, - [27774] = 7, + [27230] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2107), 1, + sym_comment, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2590), 1, + sym_cell_path, + ACTIONS(1887), 13, + anon_sym_GT2, + 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(1889), 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, + [27309] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2080), 1, + STATE(2108), 1, sym_comment, - STATE(2182), 1, + STATE(2416), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5216), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264494,7 +269052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264539,7 +269097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27851] = 39, + [27386] = 38, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(183), 1, @@ -264562,64 +269120,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(439), 1, sym_raw_string_begin, - ACTIONS(3319), 1, + ACTIONS(3249), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, + ACTIONS(3251), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, + ACTIONS(3253), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, + ACTIONS(3255), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3377), 1, - anon_sym_null, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3611), 1, + ACTIONS(3457), 1, anon_sym_LPAREN, - ACTIONS(5231), 1, + ACTIONS(3459), 1, anon_sym_DOLLAR, - ACTIONS(5233), 1, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(5347), 1, anon_sym_DOT_DOT, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2081), 1, + STATE(2109), 1, sym_comment, - STATE(2115), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2116), 1, + STATE(2170), 1, sym__inter_double_quotes, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3572), 1, + STATE(3758), 1, sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, + STATE(3916), 1, sym_expr_parenthesized, - STATE(3697), 1, + STATE(3942), 1, sym_val_variable, - STATE(3994), 1, + STATE(4222), 1, sym__expr_binary_expression, - STATE(7567), 1, + STATE(8183), 1, sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, ACTIONS(437), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3379), 2, + ACTIONS(3497), 2, anon_sym_true, anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, + STATE(1868), 2, sym__raw_str, sym__str_double_quotes, - STATE(2119), 3, + STATE(2212), 4, sym_expr_unary, sym_expr_binary, + sym_val_range, sym__value, ACTIONS(431), 6, aux_sym__val_number_token1, @@ -264628,7 +269185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2174), 12, + STATE(2225), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -264641,18 +269198,121 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27992] = 7, + [27525] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2082), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2110), 1, sym_comment, - STATE(2241), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8204), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [27664] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2111), 1, + sym_comment, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2592), 1, + sym_cell_path, + ACTIONS(1891), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264666,7 +269326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(1893), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264678,10 +269339,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264711,17 +269370,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, - [28069] = 4, + [27743] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2083), 1, + ACTIONS(1046), 1, + anon_sym_DOT_DOT2, + ACTIONS(1050), 1, + aux_sym_record_entry_token1, + STATE(2112), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5374), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264730,8 +269398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 47, - sym__newline, + ACTIONS(5376), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264742,13 +269409,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5380), 23, 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, @@ -264770,26 +269442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_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, - [28140] = 7, + [27824] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + STATE(2113), 1, sym_comment, - STATE(2198), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5212), 13, + ACTIONS(2379), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264803,7 +269461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(2381), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264818,7 +269476,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -264848,20 +269509,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, - [28217] = 8, + [27895] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, + ACTIONS(5342), 1, anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2085), 1, + STATE(2114), 1, sym_comment, - STATE(2176), 1, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, sym_path, - STATE(2513), 1, + STATE(2614), 1, sym_cell_path, - ACTIONS(1889), 13, + ACTIONS(1949), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264875,7 +269536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1891), 43, + ACTIONS(1951), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -264919,20 +269580,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, - [28296] = 8, + [27974] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, + ACTIONS(5342), 1, anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2086), 1, + STATE(2115), 1, sym_comment, - STATE(2176), 1, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, sym_path, - STATE(2493), 1, + STATE(2593), 1, sym_cell_path, - ACTIONS(1921), 13, + ACTIONS(1895), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264946,7 +269607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1923), 43, + ACTIONS(1897), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -264990,18 +269651,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, - [28375] = 7, + [28053] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2087), 1, + STATE(2116), 1, sym_comment, - STATE(2256), 1, + STATE(2398), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265015,7 +269676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265060,18 +269721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28452] = 7, + [28130] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2088), 1, + STATE(2117), 1, sym_comment, - STATE(2254), 1, - aux_sym_shebang_repeat1, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5222), 13, + ACTIONS(2399), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265085,7 +269740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(2401), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265100,7 +269755,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -265130,18 +269788,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, - [28529] = 7, + [28201] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2089), 1, + STATE(2118), 1, sym_comment, - STATE(2262), 1, + STATE(2413), 1, aux_sym_shebang_repeat1, - STATE(7711), 1, + STATE(8202), 1, sym__expr_parenthesized_immediate, - ACTIONS(5226), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265155,7 +269813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265200,20 +269858,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, - [28606] = 8, + [28278] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2090), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2119), 1, sym_comment, - STATE(2176), 1, - sym_path, - STATE(2468), 1, - sym_cell_path, - ACTIONS(1969), 13, + STATE(2304), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265227,8 +269883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 43, - ts_builtin_sym_end, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265240,8 +269895,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265271,158 +269928,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, - [28685] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [28355] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2091), 1, - sym_comment, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, + ACTIONS(5342), 1, + anon_sym_DOT, STATE(2120), 1, - sym__expr_unary_minus, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7540), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [28823] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(2092), 1, sym_comment, - ACTIONS(2286), 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(2282), 44, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2595), 1, + sym_cell_path, + ACTIONS(1903), 13, 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, @@ -265431,24 +269955,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, - [28897] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(2093), 1, - sym_comment, - ACTIONS(1040), 13, + ACTIONS(1905), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265460,13 +269968,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, - ACTIONS(1038), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265475,30 +269978,19 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -265507,12 +269999,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, - [28971] = 4, + [28434] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2094), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2121), 1, sym_comment, - ACTIONS(2429), 13, + STATE(2417), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265526,7 +270024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2431), 46, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265542,8 +270040,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -265573,16 +270069,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29041] = 6, - ACTIONS(3), 1, + [28511] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(2095), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2122), 1, sym_comment, - ACTIONS(2294), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2591), 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, @@ -265594,13 +270109,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, - ACTIONS(2290), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265609,30 +270119,19 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -265641,16 +270140,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, - [29115] = 6, - ACTIONS(3), 1, + [28590] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(2096), 1, + STATE(2123), 1, sym_comment, - ACTIONS(2300), 13, + ACTIONS(2131), 13, + anon_sym_GT2, + 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(2137), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265663,12 +270172,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_RBRACE, - ACTIONS(2298), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265677,30 +270186,19 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -265709,12 +270207,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, - [29189] = 4, + [28661] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2097), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2124), 1, sym_comment, - ACTIONS(1889), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2670), 1, + sym_cell_path, + ACTIONS(1909), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265728,7 +270234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1891), 46, + ACTIONS(1911), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265740,12 +270247,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265775,412 +270278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29259] = 38, + [28740] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2098), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5925), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [29397] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2099), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5927), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [29535] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2100), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5928), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [29673] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2101), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5929), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [29811] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2102), 1, + STATE(2125), 1, sym_comment, - ACTIONS(2437), 13, + ACTIONS(2411), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266194,7 +270297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2439), 46, + ACTIONS(2413), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266209,6 +270312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -266241,12 +270345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29881] = 4, + [28811] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2103), 1, + STATE(2126), 1, sym_comment, - ACTIONS(2391), 13, + ACTIONS(2504), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266260,7 +270364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2393), 46, + ACTIONS(2506), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266275,6 +270379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -266307,12 +270412,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, - [29951] = 4, + [28882] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2127), 1, sym_comment, - ACTIONS(2441), 13, + STATE(2386), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266326,7 +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(2443), 46, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266342,8 +270453,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -266373,18 +270482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30021] = 4, + [28959] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2105), 1, + STATE(2128), 1, sym_comment, - ACTIONS(1056), 14, + ACTIONS(1018), 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, @@ -266393,7 +270503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1058), 45, + ACTIONS(1020), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266439,12 +270549,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30091] = 4, - ACTIONS(3), 1, + [29030] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2106), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2129), 1, sym_comment, - ACTIONS(2249), 14, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2638), 1, + sym_cell_path, + ACTIONS(2053), 13, + anon_sym_GT2, + 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(2055), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266456,14 +270589,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_LPAREN2, - ACTIONS(2247), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266472,30 +270599,19 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -266504,13 +270620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - [30161] = 4, + [29109] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2107), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2130), 1, sym_comment, - ACTIONS(1004), 13, + STATE(2369), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266524,8 +270645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1006), 46, - ts_builtin_sym_end, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266537,10 +270657,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, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266562,7 +270682,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -266571,17 +270690,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, - [30231] = 6, + [29186] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4883), 1, - anon_sym_DOT_DOT2, - STATE(2108), 1, + ACTIONS(4895), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5382), 1, + anon_sym_DOT, + STATE(2131), 1, sym_comment, - ACTIONS(4885), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 13, + ACTIONS(1779), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266595,8 +270713,7 @@ 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), 43, - ts_builtin_sym_end, + ACTIONS(1781), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266608,8 +270725,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266639,14 +270759,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, - [30305] = 5, + [29261] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5243), 1, - anon_sym_QMARK2, - STATE(2109), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2132), 1, sym_comment, - ACTIONS(990), 13, + STATE(2389), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266660,8 +270784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 45, - ts_builtin_sym_end, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266673,6 +270796,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_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -266697,7 +270821,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -266706,12 +270829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30377] = 4, + [29338] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(2133), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(2447), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266725,7 +270848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2409), 46, + ACTIONS(2449), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266740,6 +270863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -266772,14 +270896,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, - [30447] = 5, + [29409] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_QMARK2, - STATE(2111), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2134), 1, sym_comment, - ACTIONS(1012), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2608), 1, + sym_cell_path, + ACTIONS(1929), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266793,7 +270923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1014), 45, + ACTIONS(1931), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266808,7 +270938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266830,7 +270959,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -266839,12 +270967,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, - [30519] = 4, + [29488] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2112), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2135), 1, sym_comment, - ACTIONS(996), 13, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2663), 1, + sym_cell_path, + ACTIONS(1933), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266858,7 +270994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(998), 46, + ACTIONS(1935), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266873,8 +271009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266896,7 +271030,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -266905,12 +271038,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, - [30589] = 4, + [29567] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2113), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2136), 1, sym_comment, - ACTIONS(2247), 13, + STATE(2390), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266924,7 +271063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2249), 46, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266940,8 +271079,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -266971,23 +271108,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, - [30659] = 8, + [29644] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4883), 1, - anon_sym_DOT_DOT2, - STATE(2114), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2137), 1, sym_comment, - ACTIONS(4885), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5239), 5, + STATE(2365), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5235), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266996,8 +271133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 20, - ts_builtin_sym_end, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267009,17 +271145,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5241), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267041,12 +271170,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30737] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29721] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2115), 1, + STATE(2138), 1, sym_comment, - ACTIONS(2417), 13, + ACTIONS(2427), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267060,7 +271197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2419), 46, + ACTIONS(2429), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267075,6 +271212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -267107,12 +271245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30807] = 4, + [29792] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2116), 1, + STATE(2139), 1, sym_comment, - ACTIONS(2417), 13, + ACTIONS(2486), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267126,7 +271264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2419), 46, + ACTIONS(2488), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267141,6 +271279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -267173,12 +271312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30877] = 4, + [29863] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2117), 1, + STATE(2140), 1, sym_comment, - ACTIONS(2425), 13, + ACTIONS(2431), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267192,7 +271331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2427), 46, + ACTIONS(2433), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267207,6 +271346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -267239,12 +271379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30947] = 4, + [29934] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2118), 1, + STATE(2141), 1, sym_comment, - ACTIONS(2282), 13, + ACTIONS(1933), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267258,7 +271398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2286), 46, + ACTIONS(1935), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267273,6 +271413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -267305,18 +271446,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, - [31017] = 6, + [30005] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2119), 1, + ACTIONS(5384), 1, + anon_sym_DOT, + ACTIONS(5386), 1, + aux_sym__immediate_decimal_token2, + STATE(2142), 1, sym_comment, - ACTIONS(5239), 5, + ACTIONS(1779), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5235), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267325,7 +271469,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(5237), 23, + aux_sym_unquoted_token2, + ACTIONS(1781), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267337,10 +271483,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_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_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, @@ -267349,9 +271515,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(5241), 23, + [30080] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2143), 1, + sym_comment, + STATE(2370), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, + anon_sym_GT2, + 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(5338), 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, @@ -267373,12 +271577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31091] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30157] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2120), 1, + STATE(2144), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(2072), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267392,7 +271604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5247), 46, + ACTIONS(2078), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267407,6 +271619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -267439,18 +271652,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, - [31161] = 4, + [30228] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2121), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2145), 1, sym_comment, - ACTIONS(1777), 14, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2588), 1, + sym_cell_path, + ACTIONS(1937), 13, 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, @@ -267459,7 +271679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1779), 45, + ACTIONS(1939), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -267495,8 +271715,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267505,12 +271723,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, - [31231] = 4, + [30307] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2122), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2146), 1, sym_comment, - ACTIONS(5253), 13, + STATE(2399), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267524,7 +271748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 46, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267540,8 +271764,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -267571,312 +271793,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, - [31301] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2123), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5872), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [31439] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2124), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5959), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [31577] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2125), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(6028), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [31715] = 4, + [30384] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2126), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2147), 1, sym_comment, - ACTIONS(2413), 13, + STATE(2285), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267890,7 +271818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2415), 46, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267906,8 +271834,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -267937,12 +271863,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, - [31785] = 4, + [30461] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2034), 1, + aux_sym_cell_path_repeat1, + STATE(2148), 1, sym_comment, - ACTIONS(2395), 13, + STATE(2293), 1, + sym_path, + ACTIONS(982), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267956,7 +271888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2397), 46, + ACTIONS(984), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267968,12 +271901,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268003,312 +271933,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, - [31855] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2128), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5753), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [31993] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2129), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5768), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [32131] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2130), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5797), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [32269] = 4, + [30538] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2131), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2149), 1, sym_comment, - ACTIONS(1000), 13, + STATE(2368), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268322,8 +271958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1002), 46, - ts_builtin_sym_end, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268335,10 +271970,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, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268360,7 +271995,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -268369,12 +272003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32339] = 4, + [30615] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2132), 1, + STATE(2150), 1, sym_comment, - ACTIONS(2399), 13, + ACTIONS(2383), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268388,7 +272022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2401), 46, + ACTIONS(2385), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268403,6 +272037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -268435,12 +272070,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, - [32409] = 4, + [30686] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2133), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2151), 1, sym_comment, - ACTIONS(2403), 13, + STATE(2373), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268454,7 +272095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2405), 46, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268470,8 +272111,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -268501,12 +272140,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, - [32479] = 4, + [30763] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2134), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2152), 1, sym_comment, - ACTIONS(1897), 13, + STATE(2375), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268520,7 +272165,7 @@ 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), 46, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268536,8 +272181,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -268567,12 +272210,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, - [32549] = 4, + [30840] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2153), 1, sym_comment, - ACTIONS(1008), 13, + STATE(2376), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268586,8 +272235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1010), 46, - ts_builtin_sym_end, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268599,10 +272247,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, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268624,7 +272272,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -268633,12 +272280,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, - [32619] = 4, + [30917] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2136), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2154), 1, sym_comment, - ACTIONS(5198), 13, + STATE(2293), 1, + sym_path, + STATE(2624), 1, + sym_cell_path, + ACTIONS(1957), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268652,7 +272307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(1959), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268664,12 +272320,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268699,12 +272351,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, - [32689] = 4, + [30996] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2137), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2155), 1, sym_comment, - ACTIONS(5198), 13, + STATE(2377), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268718,7 +272376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268734,8 +272392,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -268765,17 +272421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32759] = 4, + [31073] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2156), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(1763), 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, @@ -268784,8 +272442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, - sym__newline, + ACTIONS(1765), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268796,12 +272453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268823,6 +272477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268831,12 +272488,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, - [32829] = 4, + [31144] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2139), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2157), 1, sym_comment, - ACTIONS(5198), 13, + STATE(2381), 1, + aux_sym_shebang_repeat1, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268850,7 +272513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268866,8 +272529,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -268897,12 +272558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32899] = 4, + [31221] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2140), 1, + STATE(2158), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(2443), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268916,7 +272577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(2445), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268931,6 +272592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -268963,17 +272625,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, - [32969] = 4, + [31292] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2141), 1, + ACTIONS(1046), 1, + anon_sym_DOT_DOT2, + STATE(2159), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5374), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268982,7 +272650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(5376), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268995,11 +272663,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5380), 23, 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, @@ -269021,6 +272696,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [31371] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1046), 1, + anon_sym_DOT_DOT2, + ACTIONS(4855), 1, + aux_sym_record_entry_token1, + STATE(2160), 1, + sym_comment, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5374), 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(5376), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269029,12 +272744,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, - [33039] = 4, + ACTIONS(5380), 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, + [31452] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2142), 1, + ACTIONS(1046), 1, + anon_sym_DOT_DOT2, + STATE(2161), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269048,7 +272792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(5380), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269063,9 +272807,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -269095,12 +272837,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, - [33109] = 4, + [31527] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2143), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2162), 1, sym_comment, - ACTIONS(5198), 13, + STATE(2293), 1, + sym_path, + STATE(2587), 1, + sym_cell_path, + ACTIONS(2049), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269114,7 +272864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(2051), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269126,12 +272877,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269161,12 +272908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33179] = 4, + [31606] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2144), 1, + STATE(2163), 1, sym_comment, - ACTIONS(5257), 13, + ACTIONS(1925), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269180,7 +272927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 46, + ACTIONS(1927), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269195,6 +272942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -269227,12 +272975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33249] = 4, + [31677] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2145), 1, + STATE(2164), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(2391), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269246,7 +272994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(2393), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269293,7 +273041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33319] = 38, + [31747] = 37, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(183), 1, @@ -269316,62 +273064,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(439), 1, sym_raw_string_begin, - ACTIONS(3319), 1, + ACTIONS(3249), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, + ACTIONS(3251), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, + ACTIONS(3253), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, + ACTIONS(3255), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3377), 1, - anon_sym_null, - ACTIONS(3611), 1, + ACTIONS(3457), 1, anon_sym_LPAREN, - ACTIONS(5231), 1, + ACTIONS(3459), 1, anon_sym_DOLLAR, - ACTIONS(5233), 1, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5347), 1, anon_sym_DOT_DOT, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2115), 1, + STATE(2164), 1, sym__inter_single_quotes, - STATE(2116), 1, + STATE(2165), 1, + sym_comment, + STATE(2170), 1, sym__inter_double_quotes, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(2146), 1, - sym_comment, - STATE(3572), 1, + STATE(3758), 1, sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, + STATE(3916), 1, sym_expr_parenthesized, - STATE(3697), 1, + STATE(3942), 1, sym_val_variable, - STATE(3994), 1, + STATE(4222), 1, sym__expr_binary_expression, - STATE(7555), 1, + STATE(8169), 1, sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, ACTIONS(437), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3379), 2, + ACTIONS(3497), 2, anon_sym_true, anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, + STATE(1868), 2, sym__raw_str, sym__str_double_quotes, - STATE(2119), 3, + STATE(2212), 4, sym_expr_unary, sym_expr_binary, + sym_val_range, sym__value, ACTIONS(431), 6, aux_sym__val_number_token1, @@ -269380,7 +273127,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2174), 12, + STATE(2225), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -269393,94 +273140,390 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33457] = 38, - ACTIONS(155), 1, + [31883] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, anon_sym_LBRACK, - ACTIONS(183), 1, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, anon_sym_LBRACE, - ACTIONS(205), 1, + ACTIONS(3377), 1, aux_sym_expr_unary_token1, - ACTIONS(231), 1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, + ACTIONS(3409), 1, anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2166), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6166), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [32019] = 37, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, + ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3377), 1, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, anon_sym_null, - ACTIONS(3611), 1, + ACTIONS(5208), 1, + sym_val_date, + STATE(2167), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6307), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [32155] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, anon_sym_LPAREN, - ACTIONS(5231), 1, + ACTIONS(3369), 1, anon_sym_DOLLAR, - ACTIONS(5233), 1, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2115), 1, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2168), 1, + sym_comment, + STATE(3693), 1, sym__inter_single_quotes, - STATE(2116), 1, + STATE(3723), 1, sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2147), 1, - sym_comment, - STATE(3572), 1, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, + STATE(3820), 1, sym_val_variable, - STATE(3994), 1, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, sym__expr_binary_expression, - STATE(7567), 1, + STATE(6308), 1, sym__expression, - ACTIONS(233), 2, + ACTIONS(3399), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(437), 2, + ACTIONS(3405), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3379), 2, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [32291] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2169), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6310), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, ACTIONS(5202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1779), 2, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, sym__raw_str, sym__str_double_quotes, - STATE(2119), 3, + STATE(4167), 4, sym_expr_unary, sym_expr_binary, + sym_val_range, sym__value, - ACTIONS(431), 6, + ACTIONS(3393), 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(2174), 12, + STATE(3698), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -269493,12 +273536,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33595] = 4, + [32427] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2148), 1, + STATE(2170), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(2391), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269512,7 +273555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(2393), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269559,12 +273602,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, - [33665] = 4, + [32497] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2149), 1, + STATE(2171), 1, + sym_comment, + ACTIONS(1052), 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(1054), 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, + [32567] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2172), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(2403), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269578,7 +273687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(2405), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269625,12 +273734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33735] = 4, + [32637] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2173), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(2439), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269644,7 +273753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(2441), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269691,212 +273800,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33805] = 38, + [32707] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, + STATE(2174), 1, + sym_comment, + ACTIONS(1949), 13, + anon_sym_GT2, + 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(1951), 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, - ACTIONS(3451), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2151), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5905), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [33943] = 38, + 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, + [32777] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2152), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(2175), 1, sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5909), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [34081] = 4, + ACTIONS(2292), 13, + anon_sym_GT2, + 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(2294), 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_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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32851] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2153), 1, + STATE(2176), 1, sym_comment, - ACTIONS(2193), 14, + ACTIONS(2082), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269911,7 +273954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2195), 45, + ACTIONS(2084), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269957,1112 +274000,557 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34151] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [32921] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(2177), 1, + sym_comment, + ACTIONS(1840), 13, + anon_sym_GT2, + 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(1848), 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, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3377), 1, - anon_sym_null, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3393), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5259), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2154), 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_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_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, + [32995] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2178), 1, sym_comment, - STATE(3587), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3717), 1, - sym_expr_parenthesized, - STATE(3718), 1, - sym_val_variable, - STATE(3982), 1, - sym__expr_binary_expression, - STATE(8055), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5261), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [34289] = 38, + ACTIONS(2244), 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_LPAREN2, + ACTIONS(2242), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [33065] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2155), 1, + ACTIONS(5388), 1, + anon_sym_DOT_DOT2, + STATE(2179), 1, sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5936), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [34427] = 38, + ACTIONS(5390), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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(2096), 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, + [33139] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2156), 1, + STATE(2180), 1, sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5937), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [34565] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, + ACTIONS(2454), 13, + anon_sym_GT2, + 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(2456), 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, - ACTIONS(3451), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2157), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5938), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [34703] = 38, + 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, + [33209] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2158), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(2181), 1, sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5939), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [34841] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, + ACTIONS(2266), 13, + anon_sym_GT2, + 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(2270), 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, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2159), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5943), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [34979] = 38, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33283] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2160), 1, + ACTIONS(5392), 1, + anon_sym_DOT_DOT2, + STATE(2182), 1, sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5944), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [35117] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, + ACTIONS(5394), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2098), 13, + anon_sym_GT2, + 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(2104), 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, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2161), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5964), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [35255] = 38, + 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, + [33357] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2162), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(2183), 1, sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5965), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [35393] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, + ACTIONS(2226), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2230), 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, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2163), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5966), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [35531] = 38, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33431] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2164), 1, + ACTIONS(4970), 1, + anon_sym_DOT_DOT2, + STATE(2184), 1, sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5967), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [35669] = 4, + ACTIONS(4972), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 13, + anon_sym_GT2, + 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(1036), 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, + [33505] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2165), 1, + ACTIONS(5396), 1, + anon_sym_DOT_DOT2, + STATE(2185), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5398), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2131), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271076,7 +274564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 46, + ACTIONS(2137), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271088,12 +274577,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271123,512 +274608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35739] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [33579] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2166), 1, + STATE(2186), 1, sym_comment, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7579), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [35877] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2167), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5896), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [36015] = 38, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3443), 1, - anon_sym_LBRACK, - ACTIONS(3449), 1, - anon_sym_DASH2, - ACTIONS(3451), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3467), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3475), 1, - anon_sym_0b, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - ACTIONS(3485), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3491), 1, - sym_raw_string_begin, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_DOLLAR, - ACTIONS(5138), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_null, - ACTIONS(5146), 1, - sym_val_date, - STATE(2168), 1, - sym_comment, - STATE(3526), 1, - sym__inter_single_quotes, - STATE(3527), 1, - sym__inter_double_quotes, - STATE(3528), 1, - sym__val_number, - STATE(3537), 1, - sym__val_number_decimal, - STATE(3613), 1, - sym_val_variable, - STATE(3622), 1, - sym_val_range, - STATE(3625), 1, - sym_expr_parenthesized, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(3980), 1, - sym__expr_binary_expression, - STATE(5898), 1, - sym__expression, - ACTIONS(3477), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3483), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5140), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3588), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3904), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3471), 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(3530), 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, - [36153] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2169), 1, - sym_comment, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7613), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [36291] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2170), 1, - sym_comment, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7621), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [36429] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2171), 1, - sym_comment, - ACTIONS(5265), 13, + ACTIONS(2474), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271642,7 +274627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5263), 46, + ACTIONS(2476), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271689,25 +274674,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, - [36499] = 9, + [33649] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, - anon_sym_DOT_DOT2, - ACTIONS(5267), 1, - sym__newline, - STATE(2172), 1, + STATE(2187), 1, sym_comment, - ACTIONS(1052), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5272), 5, + ACTIONS(2478), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271716,7 +274693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 19, + ACTIONS(2480), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271728,17 +274706,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5274), 23, 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, @@ -271760,112 +274732,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36579] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 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(3377), 1, - anon_sym_null, - ACTIONS(3611), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(5233), 1, - anon_sym_DOT_DOT, - STATE(1850), 1, - sym__val_number, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(2173), 1, - sym_comment, - STATE(3572), 1, - sym__val_number_decimal, - STATE(3622), 1, - sym_val_range, - STATE(3674), 1, - sym_expr_parenthesized, - STATE(3697), 1, - sym_val_variable, - STATE(3994), 1, - sym__expr_binary_expression, - STATE(7539), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2119), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(431), 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(2174), 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, - [36717] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33719] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2174), 1, + ACTIONS(5400), 1, + anon_sym_DOT_DOT2, + STATE(2188), 1, sym_comment, - ACTIONS(1038), 13, + ACTIONS(5402), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271879,7 +274764,8 @@ 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), 46, + ACTIONS(1848), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271891,12 +274777,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271926,12 +274808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36787] = 4, + [33793] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(2189), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(1957), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271945,7 +274827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5241), 46, + ACTIONS(1959), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271992,12 +274874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36857] = 4, + [33863] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2190), 1, sym_comment, - ACTIONS(1026), 13, + ACTIONS(1000), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272011,7 +274893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1028), 45, + ACTIONS(1002), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272027,6 +274909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272057,14 +274940,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, - [36926] = 5, + [33933] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2177), 1, + ACTIONS(4970), 1, + anon_sym_DOT_DOT2, + STATE(2191), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(4972), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272078,7 +274964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5380), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272090,10 +274977,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272123,14 +275008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36997] = 5, + [34007] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2178), 1, + STATE(2192), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(2458), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272144,7 +275027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(2460), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272160,6 +275043,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272189,14 +275074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37068] = 5, + [34077] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2179), 1, + STATE(2193), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(986), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272210,7 +275093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(988), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272222,10 +275106,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, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272247,6 +275131,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272255,94 +275140,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, - [37139] = 19, + [34147] = 37, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2180), 1, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2194), 1, sym_comment, - STATE(2458), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6661), 1, - sym__command_name, - ACTIONS(3903), 2, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6215), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [37238] = 5, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [34283] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2181), 1, + ACTIONS(5386), 1, + aux_sym__immediate_decimal_token2, + STATE(2195), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(1779), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272356,7 +275260,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(5278), 44, + aux_sym_unquoted_token2, + ACTIONS(1781), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272368,10 +275274,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272384,6 +275288,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272401,226 +275306,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37309] = 5, + [34355] = 37, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2182), 1, - sym_comment, - ACTIONS(5280), 13, - anon_sym_GT2, - 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(5278), 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, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3373), 1, 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, - [37380] = 5, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2196), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6216), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [34491] = 37, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2183), 1, - sym_comment, - ACTIONS(5280), 13, - anon_sym_GT2, - 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(5278), 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, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3373), 1, 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, - [37451] = 5, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2197), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6221), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [34627] = 37, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2184), 1, - sym_comment, - ACTIONS(5280), 13, - anon_sym_GT2, - 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(5278), 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, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3373), 1, 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, - [37522] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2185), 1, - sym_comment, - ACTIONS(5280), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2198), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6222), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [34763] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2199), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6275), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [34899] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2200), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6280), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [35035] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5404), 1, + aux_sym__immediate_decimal_token2, + STATE(2201), 1, + sym_comment, + ACTIONS(1799), 14, + anon_sym_GT2, + 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(5278), 44, + aux_sym_unquoted_token2, + ACTIONS(1801), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272632,10 +275836,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272648,6 +275850,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272665,14 +275868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37593] = 5, + [35107] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2186), 1, + STATE(2202), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(2462), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272686,7 +275887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 44, + ACTIONS(2464), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272702,6 +275903,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272731,14 +275934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37664] = 5, + [35177] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2187), 1, + STATE(2203), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(2466), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272752,7 +275953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(2468), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272768,6 +275969,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272797,19 +276000,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, - [37735] = 5, + [35247] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2188), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3469), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3471), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3473), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3475), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5406), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2204), 1, sym_comment, - ACTIONS(5280), 13, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3797), 1, + sym__val_number_decimal, + STATE(3936), 1, + sym_expr_parenthesized, + STATE(3937), 1, + sym_val_variable, + STATE(4213), 1, + sym__expr_binary_expression, + STATE(8264), 1, + sym__expression, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5408), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [35383] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2205), 1, + sym_comment, + ACTIONS(2086), 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, @@ -272818,7 +276119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(2088), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272830,10 +276132,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272855,6 +276155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272863,28 +276165,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, - [37806] = 5, - ACTIONS(251), 1, + [35453] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2189), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(2206), 1, sym_comment, - ACTIONS(5280), 13, - anon_sym_GT2, - 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(5278), 44, + ACTIONS(2258), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272897,9 +276187,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_RBRACE, + ACTIONS(2254), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272908,19 +276201,30 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272929,28 +276233,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, - [37877] = 5, - ACTIONS(251), 1, + [35527] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2190), 1, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(2207), 1, sym_comment, - ACTIONS(5280), 13, - anon_sym_GT2, - 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(5278), 44, + ACTIONS(1036), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272963,9 +276255,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_RBRACE, + ACTIONS(1034), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272974,19 +276269,30 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -272995,14 +276301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37948] = 5, + [35601] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2191), 1, + STATE(2208), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(996), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273016,7 +276320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(998), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273028,10 +276333,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, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273053,6 +276358,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273061,14 +276367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38019] = 5, + [35671] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2209), 1, sym_comment, - STATE(2240), 1, - aux_sym_shebang_repeat1, - ACTIONS(5212), 13, + ACTIONS(2254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273082,7 +276386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(2258), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273098,6 +276402,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273127,14 +276433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38090] = 5, + [35741] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2193), 1, + ACTIONS(5410), 1, + anon_sym_QMARK2, + STATE(2210), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(1008), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273148,7 +276454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(1010), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273160,7 +276467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -273185,6 +276491,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273193,14 +276500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38161] = 5, + [35813] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2194), 1, + ACTIONS(5412), 1, + anon_sym_QMARK2, + STATE(2211), 1, sym_comment, - STATE(2261), 1, - aux_sym_shebang_repeat1, - ACTIONS(5212), 13, + ACTIONS(990), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273214,7 +276521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(992), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273226,7 +276534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -273251,6 +276558,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273259,19 +276567,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, - [38232] = 5, + [35885] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2195), 1, + STATE(2212), 1, sym_comment, - STATE(2256), 1, - aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(5378), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5374), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273280,7 +276587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5376), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273293,9 +276600,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_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, + ACTIONS(5380), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273317,22 +276635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_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, - [38303] = 5, + [35959] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2196), 1, + STATE(2213), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(5416), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273346,7 +276654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(5414), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273362,6 +276670,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273391,12 +276701,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, - [38374] = 4, - ACTIONS(3), 1, + [36029] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2214), 1, sym_comment, - ACTIONS(2249), 13, + ACTIONS(1763), 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(1765), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -273409,12 +276734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2247), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273423,30 +276744,21 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273455,15 +276767,12 @@ static const 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, - [38443] = 5, + [36099] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2198), 1, + STATE(2215), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(2266), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273477,7 +276786,7 @@ 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, + ACTIONS(2270), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273493,6 +276802,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273522,31 +276833,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, - [38514] = 6, - ACTIONS(251), 1, + [36169] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - STATE(2199), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(2216), 1, sym_comment, - STATE(7578), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(2274), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273558,8 +276854,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, + ACTIONS(2272), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273568,19 +276869,30 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273589,28 +276901,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, - [38587] = 5, - ACTIONS(251), 1, + [36243] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2200), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(2217), 1, sym_comment, - STATE(2305), 1, - aux_sym_shebang_repeat1, - ACTIONS(5216), 13, - anon_sym_GT2, - 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(5214), 44, + ACTIONS(2238), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273623,9 +276923,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_RBRACE, + ACTIONS(2234), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273634,19 +276937,30 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -273655,94 +276969,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, - [38658] = 19, + [36317] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5304), 1, - sym__newline, - ACTIONS(5306), 1, - anon_sym_RBRACK, - STATE(2201), 1, - sym_comment, - STATE(2447), 1, - aux_sym_shebang_repeat1, - STATE(2590), 1, - aux_sym_command_list_repeat1, - STATE(3804), 1, - sym__val_number_decimal, - STATE(6887), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, - 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(5302), 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, - [38757] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(2202), 1, + ACTIONS(5418), 1, + anon_sym_DOT_DOT2, + STATE(2218), 1, sym_comment, - ACTIONS(1695), 13, + ACTIONS(5420), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273756,7 +276993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1707), 44, + ACTIONS(2078), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273768,10 +277006,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273801,14 +277037,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, - [38828] = 5, + [36391] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2203), 1, + ACTIONS(5422), 1, + anon_sym_DOT_DOT2, + STATE(2219), 1, sym_comment, - STATE(2262), 1, - aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(5424), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273822,7 +277061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(1838), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273834,10 +277074,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273867,14 +277105,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, - [38899] = 5, + [36465] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2204), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(2220), 1, sym_comment, - STATE(2267), 1, - aux_sym_shebang_repeat1, - ACTIONS(5310), 13, + ACTIONS(1830), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273888,7 +277128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 44, + ACTIONS(1838), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273903,7 +277143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273933,16 +277173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38970] = 6, + [36539] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2205), 1, + STATE(2221), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1830), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273956,8 +277192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(1838), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273969,8 +277204,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274000,16 +277239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39043] = 6, + [36609] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2206), 1, + STATE(2222), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(2226), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274023,8 +277258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(2230), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274036,8 +277270,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274067,16 +277305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39116] = 6, + [36679] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2207), 1, + STATE(2223), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(2242), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274090,8 +277324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(2244), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274103,8 +277336,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274134,14 +277371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39189] = 5, + [36749] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2208), 1, + STATE(2224), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(1779), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274155,7 +277390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + aux_sym_unquoted_token2, + ACTIONS(1781), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274170,7 +277406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274183,6 +277419,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274200,14 +277437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39260] = 5, + [36819] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2225), 1, sym_comment, - STATE(2268), 1, - aux_sym_shebang_repeat1, - ACTIONS(5212), 13, + ACTIONS(1034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274221,7 +277456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(1036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274237,6 +277472,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274266,14 +277503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39331] = 5, + [36889] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2226), 1, sym_comment, - STATE(2272), 1, - aux_sym_shebang_repeat1, - ACTIONS(5212), 13, + ACTIONS(1771), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274287,7 +277522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + aux_sym_unquoted_token2, + ACTIONS(1773), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274302,7 +277538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274315,6 +277551,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274332,14 +277569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39402] = 5, + [36959] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2211), 1, + STATE(2227), 1, sym_comment, - STATE(2265), 1, - aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(1799), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274353,7 +277588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + aux_sym_unquoted_token2, + ACTIONS(1801), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274368,7 +277604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274381,6 +277617,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274398,14 +277635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39473] = 5, + [37029] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2212), 1, + STATE(2228), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5378), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274419,7 +277654,7 @@ 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, + ACTIONS(5380), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274435,6 +277670,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274464,14 +277701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39544] = 5, + [37099] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2213), 1, + STATE(2229), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274485,7 +277720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274501,6 +277736,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274530,81 +277767,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39615] = 6, + [37169] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2214), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2230), 1, sym_comment, - STATE(7578), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5196), 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, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8183), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [37305] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 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, - [39688] = 5, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2231), 1, + sym_comment, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8204), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [37441] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(2232), 1, sym_comment, - STATE(2275), 1, - aux_sym_shebang_repeat1, - ACTIONS(5212), 13, + ACTIONS(2482), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274618,7 +277984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(2484), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274634,6 +278000,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274663,16 +278031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39759] = 6, + [37511] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2216), 1, + STATE(2233), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274686,8 +278050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274699,8 +278062,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274730,14 +278097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39832] = 5, + [37581] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2177), 1, - aux_sym_shebang_repeat1, - STATE(2217), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274751,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(5214), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274767,6 +278132,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274796,14 +278163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39903] = 5, + [37651] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2193), 1, - aux_sym_shebang_repeat1, - STATE(2218), 1, + STATE(2235), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274817,7 +278182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(1006), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274829,10 +278195,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, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274854,6 +278220,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274862,14 +278229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39974] = 5, + [37721] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2219), 1, + STATE(2236), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274883,7 +278248,7 @@ 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, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274899,6 +278264,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274928,80 +278295,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40045] = 5, + [37791] = 37, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2220), 1, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2237), 1, sym_comment, - ACTIONS(5294), 13, - anon_sym_GT2, - 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(5292), 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, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6142), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [37927] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3373), 1, 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, - [40116] = 5, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2238), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6143), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [38063] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2178), 1, - aux_sym_shebang_repeat1, - STATE(2221), 1, + STATE(2239), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(1818), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275015,7 +278512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + aux_sym_unquoted_token2, + ACTIONS(1820), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275030,7 +278528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275043,6 +278541,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275060,14 +278559,1002 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40187] = 5, + [38133] = 37, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2222), 1, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2240), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6195), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [38269] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2241), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6196), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [38405] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2242), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6197), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [38541] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2243), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6199), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [38677] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2244), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6200), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [38813] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2245), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6206), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [38949] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2246), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6249), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [39085] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2247), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6250), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [39221] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2248), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6254), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [39357] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2249), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6256), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [39493] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2250), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275081,7 +279568,7 @@ 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, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275097,6 +279584,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275126,14 +279615,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40258] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2181), 1, - aux_sym_shebang_repeat1, - STATE(2223), 1, + [39563] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2251), 1, + sym_comment, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8083), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [39699] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2252), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275147,7 +279733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275163,6 +279749,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275192,14 +279780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40329] = 5, + [39769] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2224), 1, + STATE(2253), 1, sym_comment, - STATE(2279), 1, - aux_sym_shebang_repeat1, - ACTIONS(5212), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275213,7 +279799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275229,6 +279815,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275258,14 +279846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40400] = 5, + [39839] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2225), 1, + STATE(2254), 1, sym_comment, - STATE(2284), 1, - aux_sym_shebang_repeat1, - ACTIONS(5212), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275279,7 +279865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275295,6 +279881,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275324,14 +279912,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40471] = 5, + [39909] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2226), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2255), 1, sym_comment, - ACTIONS(5298), 13, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(7978), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [40045] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2256), 1, + sym_comment, + ACTIONS(5428), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275345,7 +280030,7 @@ 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, + ACTIONS(5426), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275361,6 +280046,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275390,57 +280077,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, - [40542] = 6, - ACTIONS(3), 1, + [40115] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(2227), 1, + STATE(2257), 1, sym_comment, - ACTIONS(2286), 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(2282), 44, + ACTIONS(5286), 13, 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, @@ -275449,25 +280096,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, - [40615] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(2228), 1, - sym_comment, - ACTIONS(1040), 12, - ts_builtin_sym_end, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275479,11 +280108,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, - ACTIONS(1038), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275492,30 +280122,19 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275524,14 +280143,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40688] = 5, + [40185] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2196), 1, - aux_sym_shebang_repeat1, - STATE(2229), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2258), 1, sym_comment, - ACTIONS(5222), 13, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8125), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [40321] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2259), 1, + sym_comment, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275545,7 +280261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275561,6 +280277,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275590,14 +280308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40759] = 5, + [40391] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2208), 1, - aux_sym_shebang_repeat1, - STATE(2230), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275611,7 +280327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275627,6 +280343,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275656,12 +280374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40830] = 4, + [40461] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2231), 1, + STATE(2261), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275675,8 +280393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5054), 45, - ts_builtin_sym_end, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275688,9 +280405,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_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275703,7 +280423,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275721,14 +280440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40899] = 5, + [40531] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2232), 1, + STATE(2262), 1, sym_comment, - STATE(2319), 1, - aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275742,7 +280459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5284), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275758,6 +280475,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275787,14 +280506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40970] = 5, + [40601] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2263), 1, sym_comment, - STATE(2277), 1, - aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(2292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275808,7 +280525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(2294), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275824,6 +280541,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275853,14 +280572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41041] = 5, + [40671] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2182), 1, - aux_sym_shebang_repeat1, - STATE(2234), 1, + STATE(2264), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(1840), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275874,7 +280591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(1848), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275890,6 +280607,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275919,14 +280638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41112] = 5, + [40741] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2265), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5432), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275940,7 +280657,7 @@ 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, + ACTIONS(5430), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275956,6 +280673,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -275985,14 +280704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41183] = 5, + [40811] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2220), 1, - aux_sym_shebang_repeat1, - STATE(2236), 1, + STATE(2266), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(2520), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276006,7 +280723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(2522), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276022,6 +280739,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -276051,19 +280770,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, - [41254] = 5, + [40881] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2237), 1, + ACTIONS(4970), 1, + anon_sym_DOT_DOT2, + STATE(2267), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(4972), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5374), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276072,7 +280795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(5376), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276084,10 +280808,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5380), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276109,27 +280840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_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, - [41325] = 5, + [40959] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2183), 1, - aux_sym_shebang_repeat1, - STATE(2238), 1, + STATE(2268), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(2123), 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, @@ -276138,7 +280860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(2125), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276150,10 +280873,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276175,6 +280896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276183,14 +280906,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41396] = 5, + [41029] = 37, ACTIONS(251), 1, anon_sym_POUND, - STATE(2239), 1, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2269), 1, sym_comment, - STATE(2241), 1, - aux_sym_shebang_repeat1, - ACTIONS(5222), 13, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6318), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [41165] = 37, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + anon_sym_LBRACK, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3369), 1, + anon_sym_DOLLAR, + ACTIONS(3371), 1, + anon_sym_DASH2, + ACTIONS(3373), 1, + anon_sym_LBRACE, + ACTIONS(3377), 1, + aux_sym_expr_unary_token1, + ACTIONS(3385), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3387), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3391), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3397), 1, + anon_sym_0b, + ACTIONS(3403), 1, + anon_sym_DQUOTE, + ACTIONS(3407), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3409), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3413), 1, + sym_raw_string_begin, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_null, + ACTIONS(5208), 1, + sym_val_date, + STATE(2270), 1, + sym_comment, + STATE(3693), 1, + sym__inter_single_quotes, + STATE(3723), 1, + sym__inter_double_quotes, + STATE(3724), 1, + sym__val_number, + STATE(3743), 1, + sym__val_number_decimal, + STATE(3820), 1, + sym_val_variable, + STATE(3836), 1, + sym_expr_parenthesized, + STATE(4168), 1, + sym__expr_unary_minus, + STATE(4211), 1, + sym__expr_binary_expression, + STATE(6323), 1, + sym__expression, + ACTIONS(3399), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3405), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5206), 2, + anon_sym_true, + anon_sym_false, + STATE(3753), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4167), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(3393), 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(3698), 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, + [41301] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(3249), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3251), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3253), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3255), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3457), 1, + anon_sym_LPAREN, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(3495), 1, + anon_sym_null, + ACTIONS(5347), 1, + anon_sym_DOT_DOT, + STATE(1860), 1, + sym__val_number, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(2271), 1, + sym_comment, + STATE(3758), 1, + sym__val_number_decimal, + STATE(3916), 1, + sym_expr_parenthesized, + STATE(3942), 1, + sym_val_variable, + STATE(4222), 1, + sym__expr_binary_expression, + STATE(8028), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2212), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(431), 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(2225), 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, + [41437] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2272), 1, + sym_comment, + ACTIONS(5436), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276204,7 +281222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5434), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276220,6 +281238,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -276249,14 +281269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41467] = 5, + [41507] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2240), 1, + STATE(2273), 1, sym_comment, - ACTIONS(5298), 13, + STATE(2402), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276270,7 +281290,7 @@ 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, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276315,14 +281335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41538] = 5, + [41578] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2241), 1, + STATE(2274), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(1771), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276336,7 +281354,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(5292), 44, + aux_sym_unquoted_token2, + ACTIONS(1773), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276348,10 +281368,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276364,6 +281382,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -276381,16 +281400,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, - [41609] = 6, + [41647] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, anon_sym_LPAREN2, - STATE(2242), 1, + STATE(2275), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(2266), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276404,7 +281423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, + ACTIONS(2270), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276448,14 +281467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41682] = 5, + [41720] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2276), 1, sym_comment, - STATE(2254), 1, - aux_sym_shebang_repeat1, - ACTIONS(5222), 13, + ACTIONS(1018), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276469,7 +281486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(1020), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276481,7 +281499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -276506,6 +281523,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -276514,14 +281532,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, - [41753] = 5, + [41789] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(2244), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2277), 1, sym_comment, - ACTIONS(5216), 13, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276535,7 +281555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276547,10 +281568,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276580,16 +281599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41824] = 6, + [41862] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2245), 1, + STATE(2278), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + STATE(2416), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276603,8 +281620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276616,8 +281632,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276647,14 +281665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41897] = 5, + [41933] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2246), 1, + STATE(2279), 1, sym_comment, - STATE(2282), 1, - aux_sym_shebang_repeat1, - ACTIONS(5222), 13, + ACTIONS(1799), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276668,7 +281684,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(5220), 44, + aux_sym_unquoted_token2, + ACTIONS(1801), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276680,10 +281698,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276696,6 +281712,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -276713,14 +281730,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, - [41968] = 5, + [42002] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2247), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(2280), 1, sym_comment, - STATE(2289), 1, - aux_sym_shebang_repeat1, - ACTIONS(5222), 13, + ACTIONS(1830), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276734,7 +281753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(1838), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276746,10 +281766,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276779,14 +281797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42039] = 5, + [42075] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2179), 1, - aux_sym_shebang_repeat1, - STATE(2248), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5226), 13, + STATE(2393), 1, + aux_sym_shebang_repeat1, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276800,7 +281818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276845,14 +281863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42110] = 5, + [42146] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2249), 1, + STATE(2282), 1, sym_comment, - STATE(2314), 1, - aux_sym_shebang_repeat1, - ACTIONS(5314), 13, + ACTIONS(1818), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276866,7 +281882,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(5312), 44, + aux_sym_unquoted_token2, + ACTIONS(1820), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276878,10 +281896,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276894,6 +281910,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -276911,14 +281928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42181] = 5, + [42215] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2250), 1, + STATE(2283), 1, sym_comment, - STATE(2288), 1, - aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(1014), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276932,7 +281947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(1016), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276944,7 +281960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -276969,6 +281984,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -276977,14 +281993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42252] = 5, + [42284] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2251), 1, + STATE(2284), 1, sym_comment, - STATE(2316), 1, + STATE(2369), 1, aux_sym_shebang_repeat1, - ACTIONS(5222), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276998,7 +282014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277043,16 +282059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42323] = 6, + [42355] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2252), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2285), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5440), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277066,8 +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(5196), 43, - ts_builtin_sym_end, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277079,8 +282092,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277110,14 +282125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42396] = 5, + [42426] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2286), 1, sym_comment, - STATE(2322), 1, + STATE(2421), 1, aux_sym_shebang_repeat1, - ACTIONS(5222), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277131,7 +282146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277176,14 +282191,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, - [42467] = 5, + [42497] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2254), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(2287), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(2226), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277197,7 +282214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(2230), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277209,10 +282227,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277242,14 +282258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42538] = 5, + [42570] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2255), 1, + STATE(2288), 1, sym_comment, - STATE(2297), 1, + STATE(2394), 1, aux_sym_shebang_repeat1, - ACTIONS(5222), 13, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277263,7 +282279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277308,14 +282324,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, - [42609] = 5, + [42641] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2256), 1, + ACTIONS(5442), 1, + anon_sym_DOT, + STATE(2289), 1, + sym_comment, + STATE(2479), 1, + aux_sym_cell_path_repeat1, + STATE(2681), 1, + sym_path, + STATE(2747), 1, + sym_cell_path, + ACTIONS(1757), 6, + 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(1761), 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, + [42718] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2290), 1, sym_comment, - ACTIONS(5284), 13, + STATE(2386), 1, + aux_sym_shebang_repeat1, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277329,7 +282414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277374,14 +282459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42680] = 5, + [42789] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(2257), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5222), 13, + STATE(2391), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277395,7 +282480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277440,16 +282525,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, - [42751] = 6, - ACTIONS(3), 1, + [42860] = 19, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(2258), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5448), 1, + sym__newline, + ACTIONS(5450), 1, + anon_sym_RBRACK, + STATE(2292), 1, sym_comment, - ACTIONS(2300), 12, + STATE(2435), 1, + aux_sym_shebang_repeat1, + STATE(2687), 1, + aux_sym_command_list_repeat1, + STATE(4047), 1, + sym__val_number_decimal, + STATE(7690), 1, + sym__command_name, + STATE(7698), 1, + sym_cmd_identifier, + STATE(7699), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5444), 6, + 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(5446), 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, + [42959] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2293), 1, + sym_comment, + ACTIONS(1022), 13, + anon_sym_GT2, + 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(1024), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277462,11 +282637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2298), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277475,30 +282648,20 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277507,14 +282670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42824] = 5, + [43028] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2237), 1, - aux_sym_shebang_repeat1, - STATE(2259), 1, + STATE(2294), 1, sym_comment, - ACTIONS(5222), 13, + STATE(2427), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277528,7 +282691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277573,16 +282736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42895] = 6, + [43099] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2260), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2295), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277596,8 +282757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277609,8 +282769,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277640,146 +282802,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, - [42968] = 5, + [43170] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2261), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43039] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2262), 1, - sym_comment, - ACTIONS(5284), 13, - anon_sym_GT2, - 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(5282), 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, - [43110] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2185), 1, - aux_sym_shebang_repeat1, - STATE(2263), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2296), 1, sym_comment, - ACTIONS(5216), 13, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5065), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277793,7 +282825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5063), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277805,10 +282838,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277838,16 +282869,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, - [43181] = 6, + [43243] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2264), 1, + STATE(2297), 1, sym_comment, - STATE(7578), 1, + STATE(8466), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(4988), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277861,7 +282892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, + ACTIONS(4986), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277905,14 +282936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43254] = 5, + [43316] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2265), 1, + STATE(2298), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277926,7 +282957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277971,16 +283002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43325] = 6, + [43387] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2266), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2299), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5458), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277994,8 +283023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5456), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278007,8 +283035,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278038,14 +283068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43398] = 5, + [43458] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2267), 1, + STATE(2300), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5440), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278059,7 +283089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278104,14 +283134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43469] = 5, + [43529] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2268), 1, + STATE(2301), 1, sym_comment, - ACTIONS(5298), 13, + STATE(2395), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278125,7 +283155,7 @@ 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, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278170,83 +283200,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, - [43540] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5320), 1, - anon_sym_DOT, - STATE(2269), 1, - sym_comment, - STATE(2413), 1, - aux_sym_cell_path_repeat1, - STATE(2557), 1, - sym_path, - STATE(2617), 1, - sym_cell_path, - ACTIONS(1777), 6, - 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(1779), 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, - [43617] = 5, + [43600] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2186), 1, - aux_sym_shebang_repeat1, - STATE(2270), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2302), 1, sym_comment, - ACTIONS(5324), 13, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278260,7 +283223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 44, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278272,10 +283236,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278305,14 +283267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43688] = 5, + [43673] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2187), 1, - aux_sym_shebang_repeat1, - STATE(2271), 1, + STATE(2303), 1, sym_comment, - ACTIONS(5216), 13, + STATE(2387), 1, + aux_sym_shebang_repeat1, + ACTIONS(5462), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278326,7 +283288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5460), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278371,14 +283333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43759] = 5, + [43744] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2272), 1, + STATE(2304), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278392,7 +283354,7 @@ 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, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278437,14 +283399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43830] = 5, + [43815] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2188), 1, - aux_sym_shebang_repeat1, - STATE(2273), 1, + STATE(2305), 1, sym_comment, - ACTIONS(5216), 13, + STATE(2324), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278458,7 +283420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278503,14 +283465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43901] = 5, + [43886] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2274), 1, + STATE(2306), 1, sym_comment, - STATE(2290), 1, + STATE(2370), 1, aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278524,7 +283486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278569,14 +283531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43972] = 5, + [43957] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2275), 1, + STATE(2307), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5126), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278590,7 +283550,8 @@ 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, + ACTIONS(5124), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278602,7 +283563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -278618,6 +283578,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -278635,14 +283596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44043] = 5, + [44026] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2308), 1, sym_comment, - ACTIONS(5212), 13, + ACTIONS(5440), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278656,7 +283617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278701,14 +283662,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, - [44114] = 5, + [44097] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2277), 1, + ACTIONS(5442), 1, + anon_sym_DOT, + STATE(2309), 1, sym_comment, - ACTIONS(5284), 13, + STATE(2479), 1, + aux_sym_cell_path_repeat1, + STATE(2681), 1, + sym_path, + STATE(2750), 1, + sym_cell_path, + ACTIONS(1763), 6, + 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(1765), 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, + [44174] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5167), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5464), 1, + anon_sym_DOT, + STATE(2310), 1, + sym_comment, + ACTIONS(1779), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278722,7 +283754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(1781), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278734,10 +283767,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278767,14 +283798,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, - [44185] = 5, + [44247] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2189), 1, - aux_sym_shebang_repeat1, - STATE(2278), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2311), 1, sym_comment, - ACTIONS(5216), 13, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278788,7 +283821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278800,10 +283834,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278833,14 +283865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44256] = 5, + [44320] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2279), 1, + STATE(2312), 1, sym_comment, - ACTIONS(5298), 13, + STATE(2399), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278854,7 +283886,7 @@ 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, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278899,14 +283931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44327] = 5, + [44391] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2212), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2280), 1, + STATE(2313), 1, sym_comment, - ACTIONS(5212), 13, + ACTIONS(5468), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278920,7 +283952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5466), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278965,94 +283997,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, - [44398] = 19, - ACTIONS(251), 1, + [44462] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2281), 1, + STATE(2314), 1, sym_comment, - STATE(2458), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6661), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [44497] = 5, + ACTIONS(2244), 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_LPAREN2, + ACTIONS(2242), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [44531] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2282), 1, + STATE(2315), 1, sym_comment, - ACTIONS(5294), 13, + STATE(2316), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279066,7 +284083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279111,14 +284128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44568] = 5, + [44602] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2283), 1, + STATE(2316), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279132,7 +284149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279177,14 +284194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44639] = 5, + [44673] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2284), 1, + STATE(2317), 1, sym_comment, - ACTIONS(5298), 13, + STATE(2321), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279198,7 +284215,7 @@ 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, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279243,14 +284260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44710] = 5, + [44744] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2285), 1, + STATE(2318), 1, sym_comment, - STATE(2296), 1, + STATE(2365), 1, aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279264,7 +284281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279309,14 +284326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44781] = 5, + [44815] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2191), 1, - aux_sym_shebang_repeat1, - STATE(2286), 1, + STATE(2319), 1, sym_comment, - ACTIONS(5216), 13, + STATE(2332), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279330,7 +284347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279375,83 +284392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44852] = 8, + [44886] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5320), 1, - anon_sym_DOT, - STATE(2287), 1, + STATE(2320), 1, sym_comment, - STATE(2413), 1, - aux_sym_cell_path_repeat1, - STATE(2557), 1, - sym_path, - STATE(2618), 1, - sym_cell_path, - ACTIONS(1771), 6, - 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(1775), 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, - [44929] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1820), 1, + STATE(2342), 1, aux_sym_shebang_repeat1, - STATE(2288), 1, - sym_comment, - ACTIONS(5284), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279465,7 +284413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279510,14 +284458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45000] = 5, + [44957] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2289), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279531,7 +284479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279576,14 +284524,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, - [45071] = 5, + [45028] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2290), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2322), 1, sym_comment, - ACTIONS(5284), 13, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279597,7 +284547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279609,10 +284560,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279642,14 +284591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45142] = 5, + [45101] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2291), 1, + STATE(2323), 1, sym_comment, - STATE(2306), 1, + STATE(2350), 1, aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279663,7 +284612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279708,14 +284657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45213] = 5, + [45172] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2292), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5212), 13, + ACTIONS(5440), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279729,7 +284678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279774,14 +284723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45284] = 5, + [45243] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2222), 1, - aux_sym_shebang_repeat1, - STATE(2293), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5212), 13, + STATE(2361), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279795,7 +284744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279840,16 +284789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45355] = 6, + [45314] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2294), 1, + STATE(2326), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5004), 13, + STATE(2419), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279863,8 +284810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5002), 43, - ts_builtin_sym_end, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279876,8 +284822,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279907,14 +284855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45428] = 5, + [45385] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(2295), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5212), 13, + STATE(2428), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279928,7 +284876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279973,14 +284921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45499] = 5, + [45456] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2296), 1, + STATE(2328), 1, sym_comment, - ACTIONS(5284), 13, + STATE(2337), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279994,7 +284942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280039,14 +284987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45570] = 5, + [45527] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2297), 1, + STATE(2329), 1, sym_comment, - ACTIONS(5294), 13, + STATE(2408), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280060,7 +285008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280105,27 +285053,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, - [45641] = 8, + [45598] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5320), 1, + ACTIONS(5442), 1, anon_sym_DOT, - STATE(2298), 1, + STATE(2330), 1, sym_comment, - STATE(2413), 1, + STATE(2479), 1, aux_sym_cell_path_repeat1, - STATE(2557), 1, + STATE(2681), 1, sym_path, - STATE(2650), 1, + STATE(2793), 1, sym_cell_path, - ACTIONS(973), 6, + ACTIONS(969), 6, 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(975), 48, + ACTIONS(971), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -280174,14 +285122,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [45718] = 5, + [45675] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(2308), 1, aux_sym_shebang_repeat1, - STATE(2299), 1, + STATE(2331), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280195,7 +285143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280240,94 +285188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45789] = 19, + [45746] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5304), 1, - sym__newline, - ACTIONS(5326), 1, - anon_sym_RBRACK, - STATE(2300), 1, - sym_comment, - STATE(2439), 1, - aux_sym_shebang_repeat1, - STATE(2595), 1, - aux_sym_command_list_repeat1, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7243), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, - 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(5302), 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, - [45888] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2301), 1, + STATE(2332), 1, sym_comment, - ACTIONS(5330), 13, + ACTIONS(5472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280341,7 +285209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 44, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280386,14 +285254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45959] = 5, + [45817] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(2298), 1, aux_sym_shebang_repeat1, - STATE(2302), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280407,7 +285275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280452,12 +285320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46030] = 4, + [45888] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2303), 1, + STATE(2313), 1, + aux_sym_shebang_repeat1, + STATE(2334), 1, sym_comment, - ACTIONS(1022), 13, + ACTIONS(5476), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280471,8 +285341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1024), 45, - ts_builtin_sym_end, + ACTIONS(5474), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280484,6 +285353,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_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -280508,7 +285378,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -280517,12 +285386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46099] = 4, + [45959] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2304), 1, + STATE(2299), 1, + aux_sym_shebang_repeat1, + STATE(2335), 1, sym_comment, - ACTIONS(1018), 13, + ACTIONS(5480), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280536,8 +285407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1020), 45, - ts_builtin_sym_end, + ACTIONS(5478), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280549,6 +285419,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_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -280573,7 +285444,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -280582,14 +285452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46168] = 5, + [46030] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2305), 1, + STATE(2336), 1, sym_comment, - ACTIONS(5280), 13, + STATE(2345), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280603,7 +285473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280648,14 +285518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46239] = 5, + [46101] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2306), 1, + STATE(2337), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(5472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280669,7 +285539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280714,14 +285584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46310] = 5, + [46172] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2235), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2307), 1, + STATE(2338), 1, sym_comment, - ACTIONS(5212), 13, + ACTIONS(5472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280735,7 +285605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 44, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280780,14 +285650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46381] = 5, + [46243] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2308), 1, - sym_comment, - STATE(2315), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5226), 13, + STATE(2339), 1, + sym_comment, + ACTIONS(5472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280801,7 +285671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280846,16 +285716,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, - [46452] = 6, + [46314] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(2309), 1, + STATE(2340), 1, sym_comment, - STATE(7966), 1, + STATE(8152), 1, sym__expr_parenthesized_immediate, - ACTIONS(5008), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280869,7 +285739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5006), 43, + ACTIONS(5284), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -280913,16 +285783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46525] = 6, + [46387] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2310), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2341), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 13, + ACTIONS(5472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280936,8 +285804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4986), 43, - ts_builtin_sym_end, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280949,8 +285816,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280980,16 +285849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46598] = 6, + [46458] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2311), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2342), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4996), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281003,8 +285870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4994), 43, - ts_builtin_sym_end, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281016,8 +285882,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281047,88 +285915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46671] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2583), 1, - anon_sym_DOLLAR, - ACTIONS(5332), 1, - anon_sym_LPAREN2, - ACTIONS(5334), 1, - anon_sym_DOT, - ACTIONS(5338), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5340), 1, - aux_sym__immediate_decimal_token5, - STATE(2312), 1, - sym_comment, - STATE(2698), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5336), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2861), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1589), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [46758] = 5, + [46529] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2299), 1, - aux_sym_shebang_repeat1, - STATE(2313), 1, + STATE(2343), 1, sym_comment, - ACTIONS(5226), 13, + STATE(2359), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281142,7 +285936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281187,14 +285981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46829] = 5, + [46600] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2314), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5344), 13, + STATE(2412), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281208,7 +286002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281253,14 +286047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46900] = 5, + [46671] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2315), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281274,7 +286068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281319,14 +286113,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, - [46971] = 5, + [46742] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2316), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2346), 1, sym_comment, - ACTIONS(5294), 13, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4994), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281340,7 +286136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(4992), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281352,10 +286149,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281385,14 +286180,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, - [47042] = 5, + [46815] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2301), 1, - aux_sym_shebang_repeat1, - STATE(2317), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2347), 1, sym_comment, - ACTIONS(5348), 13, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281406,7 +286203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 44, + ACTIONS(5004), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281418,10 +286216,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281451,16 +286247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47113] = 6, + [46888] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(2318), 1, + STATE(2348), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + STATE(2380), 1, + aux_sym_shebang_repeat1, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281474,8 +286268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281487,8 +286280,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281518,14 +286313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47186] = 5, + [46959] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(2338), 1, aux_sym_shebang_repeat1, - STATE(2319), 1, + STATE(2349), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(5340), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281539,7 +286334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5282), 44, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281584,12 +286379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47257] = 4, + [47030] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2320), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2350), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281603,8 +286400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5042), 45, - ts_builtin_sym_end, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281616,6 +286412,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_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -281631,7 +286428,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -281649,14 +286445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47326] = 5, + [47101] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2302), 1, + STATE(2300), 1, aux_sym_shebang_repeat1, - STATE(2321), 1, + STATE(2351), 1, sym_comment, - ACTIONS(5226), 13, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281670,7 +286466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 44, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281715,14 +286511,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47397] = 5, + [47172] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(2295), 1, aux_sym_shebang_repeat1, - STATE(2322), 1, + STATE(2352), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(5366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281736,7 +286532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 44, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281781,17 +286577,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, - [47468] = 6, - ACTIONS(3), 1, + [47243] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(2323), 1, + STATE(2353), 1, sym_comment, - ACTIONS(2294), 12, - ts_builtin_sym_end, + STATE(2372), 1, + aux_sym_shebang_repeat1, + ACTIONS(5484), 13, + anon_sym_GT2, + 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(5482), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281803,11 +286610,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, - ACTIONS(2290), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281816,30 +286622,19 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -281848,19 +286643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47541] = 7, + [47314] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - STATE(2324), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(2354), 1, sym_comment, - STATE(2431), 1, - aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5348), 13, + ACTIONS(1687), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281874,7 +286664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 40, + ACTIONS(1699), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281888,6 +286679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281900,6 +286692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -281915,46 +286709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47615] = 15, + [47385] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(2339), 1, aux_sym_shebang_repeat1, - STATE(2325), 1, + STATE(2355), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5340), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281963,7 +286730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 26, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281976,9 +286743,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_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, @@ -281990,25 +286775,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, - [47705] = 8, + [47456] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2326), 1, + STATE(2356), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5290), 11, + STATE(2381), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -282018,7 +286796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 39, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282033,6 +286811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282045,6 +286824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -282058,43 +286841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47781] = 14, + [47527] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2327), 1, + STATE(2357), 1, sym_comment, - ACTIONS(5355), 2, + STATE(2379), 1, + aux_sym_shebang_repeat1, + ACTIONS(5362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5318), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282103,7 +286862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 28, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282116,11 +286875,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_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, @@ -282132,38 +286907,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, - [47869] = 13, + [47598] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2328), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2358), 1, sym_comment, - ACTIONS(5355), 2, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282172,7 +286930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 32, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282184,7 +286943,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -282192,8 +286951,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282205,130 +286974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47955] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5375), 1, - anon_sym_DOLLAR, - ACTIONS(5377), 1, - anon_sym_LPAREN2, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5383), 1, - aux_sym__immediate_decimal_token5, - STATE(2329), 1, - sym_comment, - STATE(2920), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5379), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3091), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [48039] = 21, + [47671] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5395), 1, - anon_sym_xor2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - STATE(2330), 1, - sym_comment, - STATE(2449), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + STATE(2359), 1, + sym_comment, + ACTIONS(5454), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5310), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282337,7 +286995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 20, + ACTIONS(5452), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282349,7 +287008,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, @@ -282358,17 +287040,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, - [48141] = 6, + [47742] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2360), 1, + sym_comment, + STATE(2558), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7051), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [47841] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2331), 1, + STATE(2361), 1, sym_comment, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5290), 13, + ACTIONS(5454), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282382,7 +287141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 41, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282397,6 +287156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282409,6 +287169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -282424,52 +287186,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, - [48213] = 18, - ACTIONS(251), 1, + [47912] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2332), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(2362), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(2258), 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(2254), 44, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + anon_sym_DASH2, + anon_sym_in2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5365), 2, + anon_sym_and2, + anon_sym_xor2, + anon_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, - ACTIONS(5367), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282478,22 +287245,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(5328), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282502,52 +287253,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, - [48309] = 18, + [47985] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2333), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2363), 1, sym_comment, - ACTIONS(5355), 2, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282556,7 +287276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 23, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282568,10 +287289,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_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, @@ -282580,45 +287320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48405] = 15, + [48058] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5419), 1, - sym__newline, - STATE(2334), 1, + STATE(2364), 1, sym_comment, - STATE(2338), 1, + STATE(2389), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5324), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282627,7 +287341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 27, + ACTIONS(5360), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282639,11 +287354,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_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, @@ -282655,54 +287386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48495] = 19, + [48129] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2335), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5472), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282711,7 +287407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 22, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282724,8 +287420,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, @@ -282734,56 +287452,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, - [48593] = 20, + [48200] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - ACTIONS(5424), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2336), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2366), 1, sym_comment, - ACTIONS(5355), 2, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282792,7 +287475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 21, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282804,8 +287488,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_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, @@ -282814,48 +287519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48693] = 16, + [48273] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2337), 1, + STATE(2367), 1, sym_comment, - ACTIONS(5355), 2, + STATE(2388), 1, + aux_sym_shebang_repeat1, + ACTIONS(5340), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282864,7 +287540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 25, + ACTIONS(5338), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282877,9 +287553,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_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, @@ -282890,43 +287585,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48785] = 14, + [48344] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2338), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5490), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282935,7 +287606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 28, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282948,11 +287619,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_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, @@ -282964,32 +287651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48873] = 11, + [48415] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2339), 1, + STATE(2369), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5330), 10, + ACTIONS(5472), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282998,7 +287672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 36, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283011,7 +287685,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283024,6 +287700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283035,29 +287717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48955] = 10, + [48486] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2340), 1, + STATE(2370), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5290), 10, + ACTIONS(5472), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283066,7 +287738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 38, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283079,7 +287751,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283092,6 +287766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -283105,46 +287783,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, - [49035] = 15, - ACTIONS(251), 1, + [48557] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2341), 1, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(2371), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(1036), 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(1034), 44, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + anon_sym_DASH2, + anon_sym_in2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5365), 2, + anon_sym_and2, + anon_sym_xor2, + anon_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, - ACTIONS(5367), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283153,25 +287842,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(5288), 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_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, @@ -283180,50 +287850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49125] = 17, + [48630] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2342), 1, + STATE(2372), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5494), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283232,7 +287871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 24, + ACTIONS(5492), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283245,9 +287884,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_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, @@ -283257,48 +287916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49219] = 16, + [48701] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2343), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5490), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283307,7 +287937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 25, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283320,9 +287950,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_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, @@ -283333,54 +287982,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49311] = 19, + [48772] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - STATE(1820), 1, + STATE(2304), 1, aux_sym_shebang_repeat1, - STATE(2344), 1, + STATE(2374), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5366), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283389,7 +288003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 22, + ACTIONS(5364), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283402,8 +288016,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, @@ -283412,50 +288048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49409] = 17, + [48843] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2345), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5490), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5290), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283464,7 +288069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 24, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283477,9 +288082,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_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, @@ -283489,32 +288114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49503] = 11, + [48914] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2346), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5318), 10, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283523,7 +288135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 36, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283536,7 +288148,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283549,6 +288163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283560,32 +288180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49585] = 11, + [48985] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2347), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5344), 10, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283594,7 +288201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 36, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283607,7 +288214,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283620,6 +288229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283631,45 +288246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49667] = 15, + [49056] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5426), 1, - sym__newline, - STATE(2327), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2348), 1, + STATE(2378), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5490), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5310), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283678,7 +288267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 27, + ACTIONS(5488), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283690,13 +288280,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_DASH2, + anon_sym_in2, + 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_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -283706,34 +288312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49757] = 12, + [49127] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - STATE(2339), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2349), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5348), 10, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283742,7 +288333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 35, + ACTIONS(5488), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283754,7 +288346,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283767,6 +288361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283778,99 +288378,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, - [49841] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3915), 1, - anon_sym_DOLLAR, - ACTIONS(5429), 1, - anon_sym_LPAREN2, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5435), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5437), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5439), 1, - aux_sym__immediate_decimal_token5, - STATE(2350), 1, - sym_comment, - STATE(2816), 1, - sym__immediate_decimal, - STATE(2907), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1589), 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(1603), 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, - [49929] = 8, + [49198] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2351), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5344), 11, + ACTIONS(5454), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -283880,7 +288399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 39, + ACTIONS(5452), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283895,6 +288414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283907,6 +288427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -283920,27 +288444,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, - [50005] = 9, + [49269] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - STATE(2352), 1, - sym_comment, - STATE(2386), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5348), 11, + STATE(2381), 1, + sym_comment, + ACTIONS(5472), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -283950,7 +288465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 38, + ACTIONS(5470), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283964,6 +288480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283976,6 +288493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -283989,30 +288510,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, - [50083] = 10, + [49340] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - STATE(2353), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(2382), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5257), 10, + ACTIONS(2292), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284021,7 +288533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 37, + ACTIONS(2294), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284033,9 +288546,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284048,6 +288560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284059,23 +288577,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, - [50163] = 7, + [49413] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2354), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 11, + STATE(2398), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -284085,7 +288598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 40, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284100,7 +288613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284113,6 +288626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -284126,36 +288643,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, - [50237] = 12, + [49484] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - STATE(2355), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(2384), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(1840), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284164,7 +288666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 33, + ACTIONS(1848), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284176,17 +288679,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_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, @@ -284198,15 +288710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50321] = 5, + [49557] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2356), 1, + STATE(2385), 1, sym_comment, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5257), 13, + STATE(2413), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284220,7 +288731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 42, + ACTIONS(5334), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284235,7 +288746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284248,6 +288759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -284263,50 +288776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50391] = 17, + [49628] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - ACTIONS(5461), 1, - anon_sym_bit_DASHand2, - ACTIONS(5463), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5465), 1, - anon_sym_bit_DASHor2, - STATE(2357), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2386), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5459), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5457), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284315,7 +288797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 24, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284328,10 +288810,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_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, @@ -284340,52 +288842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50485] = 18, + [49699] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - ACTIONS(5461), 1, - anon_sym_bit_DASHand2, - ACTIONS(5463), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5465), 1, - anon_sym_bit_DASHor2, - ACTIONS(5467), 1, - anon_sym_and2, - STATE(2358), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2387), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(5498), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5459), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5457), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284394,7 +288863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 23, + ACTIONS(5496), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284407,9 +288876,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_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, @@ -284418,54 +288908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50581] = 19, + [49770] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - ACTIONS(5461), 1, - anon_sym_bit_DASHand2, - ACTIONS(5463), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5465), 1, - anon_sym_bit_DASHor2, - ACTIONS(5467), 1, - anon_sym_and2, - ACTIONS(5469), 1, - anon_sym_xor2, - STATE(2359), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2388), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(5472), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5459), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5457), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284474,7 +288929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 22, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284487,8 +288942,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_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, @@ -284497,41 +288974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50679] = 13, + [49841] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - STATE(2360), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2389), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5457), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284540,7 +288995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 29, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284553,12 +289008,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_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, @@ -284570,27 +289040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50765] = 9, + [49912] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - STATE(2361), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2390), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 10, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284599,7 +289061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 39, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284612,8 +289074,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284626,6 +289089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -284639,44 +289106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50843] = 14, + [49983] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - STATE(2362), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2391), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(5472), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5459), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5457), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284685,7 +289127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 27, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284698,10 +289140,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_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, @@ -284713,46 +289172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50931] = 15, + [50054] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - ACTIONS(5461), 1, - anon_sym_bit_DASHand2, - STATE(2363), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2392), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5459), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5457), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284761,7 +289193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 26, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284774,10 +289206,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_RBRACE, + 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, @@ -284788,48 +289238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51021] = 16, + [50125] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_DASH2, - ACTIONS(5449), 1, - anon_sym_PLUS2, - ACTIONS(5461), 1, - anon_sym_bit_DASHand2, - ACTIONS(5463), 1, - anon_sym_bit_DASHxor2, - STATE(2364), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2393), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5445), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5459), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5455), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5457), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5257), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284838,7 +289259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 25, + ACTIONS(5488), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284851,10 +289272,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_RBRACE, + 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, @@ -284864,34 +289304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51113] = 12, + [50196] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5419), 1, - sym__newline, - STATE(2365), 1, - sym_comment, - STATE(2445), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5324), 10, + STATE(2394), 1, + sym_comment, + ACTIONS(5490), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284900,7 +289325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 35, + ACTIONS(5488), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284912,7 +289338,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284925,6 +289353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284936,175 +289370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51197] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2366), 1, - sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6772), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [51293] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5471), 1, - anon_sym_DOT, - STATE(2367), 1, - sym_comment, - STATE(2523), 1, - aux_sym_cell_path_repeat1, - STATE(2633), 1, - sym_path, - STATE(2690), 1, - sym_cell_path, - ACTIONS(973), 6, - 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(975), 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, - [51369] = 10, + [50267] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2368), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5318), 10, + ACTIONS(5472), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285113,7 +289391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 38, + ACTIONS(5470), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285126,7 +289404,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285139,6 +289419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -285152,48 +289436,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51449] = 16, - ACTIONS(251), 1, + [50338] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2369), 1, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2573), 1, + anon_sym_DOLLAR, + ACTIONS(5500), 1, + anon_sym_LPAREN2, + ACTIONS(5502), 1, + anon_sym_DOT, + ACTIONS(5506), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5508), 1, + aux_sym__immediate_decimal_token5, + STATE(2396), 1, sym_comment, - ACTIONS(5355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5344), 8, + STATE(2798), 1, + sym__immediate_decimal, + ACTIONS(1579), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5504), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2925), 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, @@ -285202,24 +289501,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(5342), 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_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, @@ -285228,13 +289509,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, - [51541] = 4, + aux_sym__unquoted_in_list_token1, + [50425] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2370), 1, + STATE(2397), 1, sym_comment, - ACTIONS(1695), 14, - sym__newline, + STATE(2417), 1, + aux_sym_shebang_repeat1, + ACTIONS(5336), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285248,7 +289531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1707), 43, + ACTIONS(5334), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285259,9 +289543,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, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285283,7 +289568,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -285292,38 +289576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51609] = 13, + [50496] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2371), 1, + STATE(2398), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5440), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5344), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285332,7 +289597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 32, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285345,15 +289610,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_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, @@ -285365,31 +289642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51695] = 11, + [50567] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5419), 1, - sym__newline, - STATE(2340), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2372), 1, + STATE(2399), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5324), 10, + ACTIONS(5472), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285398,7 +289663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 37, + ACTIONS(5470), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285410,7 +289676,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285423,6 +289691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -285436,28 +289708,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, - [51777] = 6, + [50638] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_DOT, - ACTIONS(5475), 1, - aux_sym__immediate_decimal_token2, - STATE(2373), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2400), 1, sym_comment, - ACTIONS(1645), 10, + STATE(2558), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7051), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(1647), 45, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285492,44 +289788,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51849] = 12, + [50737] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5426), 1, - sym__newline, - STATE(2346), 1, + STATE(2285), 1, aux_sym_shebang_repeat1, - STATE(2374), 1, + STATE(2401), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5310), 10, + ACTIONS(5336), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285538,7 +289809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 35, + ACTIONS(5334), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285550,7 +289822,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285563,6 +289837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285574,103 +289854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51933] = 12, - ACTIONS(3), 1, + [50808] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_DOLLAR, - ACTIONS(5332), 1, - anon_sym_LPAREN2, - ACTIONS(5477), 1, - anon_sym_DOT, - ACTIONS(5481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5483), 1, - aux_sym__immediate_decimal_token5, - STATE(2375), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2402), 1, sym_comment, - STATE(2860), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5479), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2859), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [52017] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - STATE(2376), 1, - sym_comment, - STATE(2448), 1, - aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5348), 10, + ACTIONS(5440), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285679,7 +289875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 37, + ACTIONS(5438), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285691,7 +289888,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285704,6 +289903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -285717,46 +289920,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, - [52099] = 15, + [50879] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2377), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2403), 1, sym_comment, - ACTIONS(5355), 2, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5318), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285765,7 +289943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 26, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285777,10 +289956,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_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, @@ -285792,40 +289987,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, - [52189] = 14, + [50952] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5448), 1, sym__newline, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - STATE(2378), 1, + ACTIONS(5510), 1, + anon_sym_RBRACK, + STATE(2404), 1, sym_comment, - STATE(2405), 1, + STATE(2530), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + STATE(2696), 1, + aux_sym_command_list_repeat1, + STATE(4047), 1, + sym__val_number_decimal, + STATE(7495), 1, + sym__command_name, + STATE(7698), 1, + sym_cmd_identifier, + STATE(7699), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5444), 6, + 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(5446), 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, + [51051] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2390), 1, + aux_sym_shebang_repeat1, + STATE(2405), 1, + sym_comment, + ACTIONS(5362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5348), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285834,7 +290088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 31, + ACTIONS(5360), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285846,15 +290101,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_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, @@ -285866,31 +290133,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, - [52277] = 11, + [51122] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5426), 1, - sym__newline, - STATE(2368), 1, - aux_sym_shebang_repeat1, - STATE(2379), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2406), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5310), 10, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + 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, @@ -285899,7 +290156,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(5308), 37, + ACTIONS(5284), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285910,7 +290169,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -285924,6 +290183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -285937,25 +290200,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, - [52359] = 8, + [51195] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(2368), 1, aux_sym_shebang_repeat1, - STATE(2380), 1, + STATE(2407), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5318), 11, + ACTIONS(5362), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -285965,7 +290221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 39, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285980,6 +290236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285992,6 +290249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286005,48 +290266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52435] = 16, + [51266] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5426), 1, - sym__newline, - STATE(2377), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2381), 1, + STATE(2408), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5440), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5310), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286055,7 +290287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 25, + ACTIONS(5438), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286067,9 +290300,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_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, @@ -286081,48 +290332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52527] = 16, + [51337] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5419), 1, - sym__newline, STATE(2341), 1, aux_sym_shebang_repeat1, - STATE(2382), 1, + STATE(2409), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5340), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5324), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286131,7 +290353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 25, + ACTIONS(5338), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286143,9 +290366,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_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, @@ -286157,13 +290398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52619] = 4, + [51408] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2383), 1, + STATE(2373), 1, + aux_sym_shebang_repeat1, + STATE(2410), 1, sym_comment, - ACTIONS(2497), 14, - sym__newline, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286177,7 +290419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2499), 43, + ACTIONS(5360), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286188,9 +290431,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, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286212,7 +290456,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -286221,56 +290464,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, - [52687] = 20, + [51479] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - ACTIONS(5424), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2384), 1, + STATE(2411), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(1779), 14, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286279,7 +290483,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(5328), 21, + aux_sym_unquoted_token2, + ACTIONS(1781), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286291,8 +290497,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_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -286301,27 +290529,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, - [52787] = 9, + [51548] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, - sym__newline, - STATE(2326), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2385), 1, + STATE(2412), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5324), 11, + ACTIONS(5440), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -286331,7 +290550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 38, + ACTIONS(5438), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286345,6 +290565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286357,6 +290578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286370,25 +290595,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, - [52865] = 8, + [51619] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2386), 1, + STATE(2413), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5330), 11, + ACTIONS(5440), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -286398,7 +290616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 39, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286413,6 +290631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286425,6 +290644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286438,48 +290661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52941] = 16, + [51690] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - STATE(1820), 1, + STATE(2392), 1, aux_sym_shebang_repeat1, - STATE(2387), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5318), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286488,7 +290682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 25, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286501,9 +290695,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_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, @@ -286514,12 +290727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53033] = 4, + [51761] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2388), 1, + STATE(2375), 1, + aux_sym_shebang_repeat1, + STATE(2415), 1, sym_comment, - ACTIONS(5272), 13, + ACTIONS(5362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286533,7 +290748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286578,17 +290793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53101] = 6, + [51832] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2389), 1, + STATE(2416), 1, sym_comment, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5344), 13, + ACTIONS(5440), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286602,7 +290814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 41, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286617,6 +290829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286629,6 +290842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -286644,34 +290859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53173] = 12, + [51903] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5485), 1, - sym__newline, - STATE(2347), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2390), 1, + STATE(2417), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5314), 10, + ACTIONS(5440), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286680,7 +290880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 35, + ACTIONS(5438), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286692,7 +290893,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286705,6 +290908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -286716,27 +290925,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, - [53257] = 9, + [51974] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - STATE(2380), 1, - aux_sym_shebang_repeat1, - STATE(2391), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2418), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5310), 11, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + 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, @@ -286746,7 +290948,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(5308), 38, + ACTIONS(5284), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286757,7 +290961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -286772,6 +290975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286785,50 +290992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53335] = 17, + [52047] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5426), 1, - sym__newline, - STATE(2387), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2392), 1, + STATE(2419), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5454), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5310), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286837,7 +291013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 24, + ACTIONS(5452), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286849,9 +291026,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_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, @@ -286862,50 +291058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53429] = 17, + [52118] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5419), 1, - sym__newline, - STATE(2343), 1, + STATE(2376), 1, aux_sym_shebang_repeat1, - STATE(2393), 1, + STATE(2420), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5324), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286914,7 +291079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 24, + ACTIONS(5360), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286926,9 +291092,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_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, @@ -286939,38 +291124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53523] = 13, + [52189] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2394), 1, + STATE(2421), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5440), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5318), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286979,7 +291145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 32, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286992,15 +291158,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_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, @@ -287012,46 +291190,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, - [53609] = 15, + [52260] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2395), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2422), 1, sym_comment, - ACTIONS(5355), 2, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5344), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287060,7 +291213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 26, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287072,10 +291226,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_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, @@ -287087,50 +291257,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, - [53699] = 17, + [52333] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2396), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(2423), 1, sym_comment, - ACTIONS(5355), 2, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5318), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287139,7 +291280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 24, + ACTIONS(5284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287151,10 +291293,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_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, @@ -287164,40 +291324,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, - [53793] = 14, - ACTIONS(251), 1, + [52406] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5419), 1, - sym__newline, - STATE(2328), 1, - aux_sym_shebang_repeat1, - STATE(2397), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(2424), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(2274), 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(2272), 44, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + 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, - ACTIONS(5401), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5324), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287206,7 +291383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 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, + [52479] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(2425), 1, + sym_comment, + ACTIONS(2238), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287217,19 +291413,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, + ACTIONS(2234), 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, @@ -287238,130 +291458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53881] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2398), 1, - sym_comment, - STATE(2444), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6759), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [53977] = 18, + [52552] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5426), 1, - sym__newline, - STATE(2396), 1, + STATE(2377), 1, aux_sym_shebang_repeat1, - STATE(2399), 1, + STATE(2426), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5310), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287370,7 +291479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 23, + ACTIONS(5360), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287382,9 +291492,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_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, @@ -287394,29 +291524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54073] = 10, + [52623] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2400), 1, + STATE(2427), 1, sym_comment, - ACTIONS(5361), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5344), 10, + ACTIONS(5440), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287425,7 +291545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 38, + ACTIONS(5438), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287438,7 +291558,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -287451,6 +291573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -287464,184 +291590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54153] = 6, + [52694] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5490), 1, - aux_sym__immediate_decimal_token2, - STATE(2401), 1, - sym_comment, - ACTIONS(1637), 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(1639), 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, - [54225] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5419), 1, - sym__newline, - STATE(2345), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2402), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5454), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5324), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5322), 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, - 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, - [54321] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5426), 1, - sym__newline, - STATE(2394), 1, - aux_sym_shebang_repeat1, - STATE(2403), 1, - sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, - anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5310), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287650,7 +291611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 31, + ACTIONS(5452), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287662,93 +291624,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_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_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, - [54409] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - STATE(2337), 1, - aux_sym_shebang_repeat1, - STATE(2404), 1, - sym_comment, - ACTIONS(5353), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5348), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5346), 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, - 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, @@ -287759,38 +291656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54503] = 13, + [52765] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(2378), 1, aux_sym_shebang_repeat1, - STATE(2405), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287799,7 +291677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 32, + ACTIONS(5360), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287812,15 +291690,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_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, @@ -287832,27 +291722,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, - [54589] = 9, + [52836] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - STATE(2351), 1, - aux_sym_shebang_repeat1, - STATE(2406), 1, + STATE(2430), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5314), 11, + ACTIONS(5138), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -287862,7 +291741,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(5312), 38, + ACTIONS(5136), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287873,9 +291754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -287888,6 +291769,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -287901,17 +291787,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, - [54667] = 6, + [52905] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2407), 1, + STATE(2431), 1, sym_comment, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5318), 13, + ACTIONS(2387), 14, + sym__newline, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287925,8 +291807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 41, - sym__newline, + ACTIONS(2389), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287937,9 +291818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -287952,6 +291833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -287959,6 +291842,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -287967,40 +291851,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, - [54739] = 14, + [52973] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5485), 1, - sym__newline, - STATE(2371), 1, - aux_sym_shebang_repeat1, - STATE(2408), 1, + STATE(2432), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + STATE(2536), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5401), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5314), 8, + ACTIONS(5484), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288009,7 +291884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 31, + ACTIONS(5482), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288028,8 +291903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, @@ -288041,43 +291922,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, - [54827] = 14, + [53055] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - STATE(1820), 1, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2409), 1, + STATE(2433), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5361), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5367), 2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5468), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288086,7 +291972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 28, + ACTIONS(5466), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288102,9 +291988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -288115,158 +291998,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, - [54915] = 7, + [53147] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5547), 1, sym__newline, - STATE(2331), 1, - aux_sym_shebang_repeat1, - STATE(2410), 1, + STATE(2434), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5324), 13, - anon_sym_GT2, + STATE(2538), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, 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(5322), 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_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, - [54989] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - STATE(2389), 1, - aux_sym_shebang_repeat1, - STATE(2411), 1, - sym_comment, - ACTIONS(5353), 2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5314), 13, - anon_sym_GT2, - 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(5312), 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_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, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_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, - [55063] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - STATE(2407), 1, - aux_sym_shebang_repeat1, - STATE(2412), 1, - sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5310), 13, + ACTIONS(5480), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288275,7 +292031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 40, + ACTIONS(5478), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288287,7 +292043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -288301,8 +292056,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -288316,26 +292069,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, - [55137] = 7, + [53229] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5320), 1, - anon_sym_DOT, - STATE(2413), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5448), 1, + sym__newline, + STATE(2435), 1, sym_comment, - STATE(2422), 1, - aux_sym_cell_path_repeat1, - STATE(2557), 1, - sym_path, - ACTIONS(986), 6, + STATE(2705), 1, + aux_sym_command_list_repeat1, + STATE(3037), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym__val_number_decimal, + STATE(7698), 1, + sym_cmd_identifier, + STATE(7699), 1, + sym_val_string, + STATE(7921), 1, + sym__command_name, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5444), 6, 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(988), 48, - sym_raw_string_begin, + ACTIONS(5446), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288370,67 +292147,45 @@ static const uint16_t ts_small_parse_table[] = { 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, - [55211] = 19, + [53325] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - ACTIONS(5485), 1, + ACTIONS(5550), 1, sym__newline, - STATE(2414), 1, + STATE(2436), 1, sym_comment, - STATE(2415), 1, + STATE(2463), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5314), 8, + ACTIONS(5462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288439,7 +292194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 22, + ACTIONS(5460), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288454,6 +292209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288462,52 +292222,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, - [55309] = 18, + [53415] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5413), 1, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2415), 1, + STATE(2437), 1, sym_comment, - ACTIONS(5355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + STATE(2539), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5344), 8, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288516,8 +292274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 23, - sym__newline, + ACTIONS(5482), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288532,6 +292289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288540,56 +292299,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, - [55405] = 20, + [53509] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5403), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(5409), 1, + ACTIONS(5565), 1, anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, + ACTIONS(5567), 1, anon_sym_bit_DASHor2, - ACTIONS(5485), 1, - sym__newline, - STATE(2416), 1, + STATE(2438), 1, sym_comment, - STATE(2423), 1, + STATE(2562), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5314), 8, + ACTIONS(5480), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288598,7 +292355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 21, + ACTIONS(5478), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288610,6 +292367,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -288620,58 +292378,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, - [55505] = 21, + [53607] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(5387), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5395), 1, - anon_sym_xor2, - ACTIONS(5403), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - STATE(2417), 1, + STATE(2439), 1, sym_comment, - STATE(2434), 1, + STATE(2512), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5314), 8, + ACTIONS(5462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288680,7 +292430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 20, + ACTIONS(5460), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288692,7 +292442,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_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, @@ -288701,54 +292455,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, - [55607] = 19, + [53701] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - ACTIONS(5426), 1, - sym__newline, - STATE(2418), 1, - sym_comment, - STATE(2429), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + STATE(2440), 1, + sym_comment, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 8, + ACTIONS(5468), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288757,7 +292503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 22, + ACTIONS(5466), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288772,6 +292519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288780,45 +292530,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, - [55705] = 15, + [53791] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5485), 1, + ACTIONS(5349), 1, sym__newline, - STATE(2419), 1, + STATE(2441), 1, sym_comment, - STATE(2438), 1, - aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5354), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5314), 8, + anon_sym_PLUS2, + ACTIONS(5358), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288827,7 +292552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 27, + ACTIONS(5352), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288839,14 +292564,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_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_LBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288855,108 +292573,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, - [55795] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(5387), 1, + ACTIONS(5356), 23, anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - STATE(2332), 1, - aux_sym_shebang_repeat1, - STATE(2420), 1, - sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5348), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5346), 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, - [55893] = 11, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53865] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5485), 1, - sym__newline, - STATE(2400), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2421), 1, + STATE(2442), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 10, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5498), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -288967,7 +292631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 37, + ACTIONS(5496), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288992,8 +292657,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -289005,25 +292668,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55975] = 6, + [53947] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2443), 1, + sym_comment, + STATE(2978), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6995), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [54043] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5492), 1, + ACTIONS(5569), 1, anon_sym_DOT, - STATE(2557), 1, - sym_path, - STATE(2422), 2, + STATE(2444), 1, sym_comment, + STATE(2652), 1, aux_sym_cell_path_repeat1, - ACTIONS(979), 6, + STATE(2740), 1, + sym_path, + STATE(2847), 1, + sym_cell_path, + ACTIONS(1757), 6, 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(981), 48, + ACTIONS(1761), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289061,8 +292806,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -289071,54 +292814,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [56047] = 19, + [54119] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2423), 1, + ACTIONS(5550), 1, + sym__newline, + STATE(2445), 1, sym_comment, - ACTIONS(5355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + STATE(2485), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5344), 8, + ACTIONS(5462), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289127,8 +292847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 22, - sym__newline, + ACTIONS(5460), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289140,8 +292859,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_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, @@ -289150,48 +292885,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, - [56145] = 16, + [54201] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5485), 1, - sym__newline, - STATE(2395), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2424), 1, + STATE(2446), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5314), 8, + ACTIONS(5498), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289200,7 +292913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 25, + ACTIONS(5496), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289212,9 +292926,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_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, @@ -289226,50 +292953,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, - [56237] = 17, + [54277] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5485), 1, - sym__newline, - STATE(2369), 1, - aux_sym_shebang_repeat1, - STATE(2425), 1, + ACTIONS(4855), 1, + aux_sym_record_entry_token1, + STATE(2447), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(1034), 14, + sym__newline, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5314), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289278,7 +292975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 24, + ACTIONS(1036), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289289,10 +292986,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_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, @@ -289303,56 +293018,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, - [56331] = 20, + [54347] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5545), 1, anon_sym_bit_DASHand2, - ACTIONS(5409), 1, + ACTIONS(5571), 1, anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - STATE(2344), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2426), 1, + STATE(2448), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5348), 8, + ACTIONS(5468), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289361,7 +293070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 21, + ACTIONS(5466), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289373,8 +293083,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_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, + [54441] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3927), 1, + anon_sym_DOLLAR, + ACTIONS(5573), 1, + anon_sym_LPAREN2, + ACTIONS(5575), 1, + anon_sym_DOT, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5583), 1, + aux_sym__immediate_decimal_token5, + STATE(2449), 1, + sym_comment, + STATE(2989), 1, + sym__immediate_decimal, + STATE(3042), 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, + anon_sym_o_GT, + anon_sym_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(1579), 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, @@ -289383,52 +293169,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, - [56431] = 18, + [54529] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5485), 1, - sym__newline, - STATE(2427), 1, - sym_comment, - STATE(2432), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + STATE(2450), 1, + sym_comment, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5314), 8, + ACTIONS(5498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289437,7 +293209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5312), 23, + ACTIONS(5496), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289449,9 +293222,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_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, @@ -289461,120 +293242,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, - [56527] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5471), 1, - anon_sym_DOT, - STATE(2428), 1, - sym_comment, - STATE(2523), 1, - aux_sym_cell_path_repeat1, - STATE(2633), 1, - sym_path, - STATE(2712), 1, - sym_cell_path, - ACTIONS(1777), 6, - 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(1779), 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, - [56603] = 18, + [54615] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2429), 1, + STATE(2451), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5498), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5318), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289583,7 +293266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 23, + ACTIONS(5496), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289596,88 +293279,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_DASH2, + anon_sym_in2, 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, - [56699] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5387), 1, - anon_sym_DASH2, - ACTIONS(5403), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - ACTIONS(5419), 1, - sym__newline, - STATE(2333), 1, - aux_sym_shebang_repeat1, - STATE(2430), 1, - sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5322), 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_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, @@ -289686,17 +293308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56797] = 6, + [54687] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2431), 1, + STATE(2452), 1, sym_comment, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5330), 13, + ACTIONS(5354), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289710,7 +293327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 41, + ACTIONS(5356), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289725,6 +293342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289737,6 +293355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -289752,50 +293372,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, - [56869] = 17, + [54755] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5413), 1, + ACTIONS(5545), 1, anon_sym_bit_DASHand2, - ACTIONS(5415), 1, + ACTIONS(5571), 1, anon_sym_bit_DASHxor2, - STATE(1820), 1, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2432), 1, + STATE(2453), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5361), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5365), 2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5344), 8, + ACTIONS(5498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289804,7 +293426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 24, + ACTIONS(5496), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289820,7 +293442,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -289829,48 +293450,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, - [56963] = 16, + [54851] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(5387), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - STATE(2325), 1, - aux_sym_shebang_repeat1, - STATE(2433), 1, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + STATE(2454), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + STATE(2540), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5348), 8, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289879,7 +293504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 25, + ACTIONS(5482), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289894,8 +293519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -289905,56 +293528,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57055] = 20, + [54947] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5587), 1, + anon_sym_DOT, + ACTIONS(5589), 1, + aux_sym__immediate_decimal_token2, + STATE(2455), 1, + sym_comment, + ACTIONS(1669), 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(1671), 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, + [55019] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5413), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(5415), 1, + ACTIONS(5565), 1, anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, + ACTIONS(5567), 1, anon_sym_bit_DASHor2, - ACTIONS(5422), 1, + ACTIONS(5591), 1, anon_sym_and2, - ACTIONS(5424), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2434), 1, + STATE(2456), 1, sym_comment, - ACTIONS(5355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + STATE(2566), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5344), 8, + ACTIONS(5480), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289963,8 +293652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 21, - sym__newline, + ACTIONS(5478), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289976,6 +293664,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_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -289985,54 +293674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57155] = 19, + [55119] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2435), 1, + ACTIONS(5593), 1, + anon_sym_LBRACK2, + STATE(2457), 1, sym_comment, - ACTIONS(5355), 2, + ACTIONS(2304), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5318), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290041,7 +293695,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 22, + ACTIONS(2308), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290053,9 +293708,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_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, @@ -290064,58 +293739,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, - [57253] = 21, + [55189] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5395), 1, - anon_sym_xor2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5545), 1, anon_sym_bit_DASHand2, - ACTIONS(5409), 1, + ACTIONS(5571), 1, anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, + ACTIONS(5585), 1, anon_sym_bit_DASHor2, - STATE(2384), 1, + ACTIONS(5595), 1, + anon_sym_and2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2436), 1, + STATE(2458), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5348), 8, + ACTIONS(5498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290124,7 +293795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 20, + ACTIONS(5496), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290136,6 +293808,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_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -290145,20 +293818,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, - [57355] = 5, + [55287] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1054), 1, - aux_sym_record_entry_token1, - STATE(2437), 1, - sym_comment, - ACTIONS(1038), 14, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5597), 1, sym__newline, - anon_sym_GT2, + STATE(2459), 1, + sym_comment, + STATE(2462), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5476), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290167,7 +293854,7 @@ 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), 42, + ACTIONS(5474), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290178,9 +293865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -290193,12 +293879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -290210,43 +293890,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, - [57425] = 14, + [55371] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2438), 1, + ACTIONS(5547), 1, + sym__newline, + STATE(2460), 1, sym_comment, - ACTIONS(5355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + STATE(2544), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5367), 2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5344), 8, + ACTIONS(5480), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290255,8 +293926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5342), 28, - sym__newline, + ACTIONS(5478), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290268,9 +293938,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_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, @@ -290284,134 +293962,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, - [57513] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5304), 1, - sym__newline, - STATE(2439), 1, - sym_comment, - STATE(2576), 1, - aux_sym_command_list_repeat1, - STATE(2924), 1, - aux_sym_shebang_repeat1, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7433), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, - 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(5302), 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, - [57609] = 20, + [55455] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5545), 1, anon_sym_bit_DASHand2, - ACTIONS(5409), 1, + ACTIONS(5571), 1, anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, + ACTIONS(5585), 1, anon_sym_bit_DASHor2, - ACTIONS(5419), 1, - sym__newline, - STATE(2335), 1, + ACTIONS(5595), 1, + anon_sym_and2, + ACTIONS(5600), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2440), 1, + STATE(2461), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 8, + ACTIONS(5498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290420,7 +294020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 21, + ACTIONS(5496), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290432,7 +294033,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_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -290442,123 +294042,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, - [57709] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2366), 1, - aux_sym_decl_def_repeat1, - STATE(2441), 1, - sym_comment, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6674), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [57805] = 15, + [55555] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - STATE(2409), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2442), 1, + STATE(2462), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5348), 8, + ACTIONS(5468), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290567,7 +294076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 27, + ACTIONS(5466), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290579,9 +294089,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_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, @@ -290595,56 +294113,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, - [57895] = 20, + [55637] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, - anon_sym_bit_DASHor2, - ACTIONS(5426), 1, - sym__newline, - STATE(2435), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2443), 1, + STATE(2463), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 8, + ACTIONS(5498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290653,7 +294158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5308), 21, + ACTIONS(5496), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290665,8 +294171,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_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, @@ -290675,108 +294187,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57995] = 18, + [55725] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2444), 1, + ACTIONS(5597), 1, + sym__newline, + STATE(2464), 1, sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6755), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [58091] = 11, + STATE(2467), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5476), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5474), 38, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_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, + [55803] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2445), 1, + STATE(2465), 1, sym_comment, - ACTIONS(5361), 2, + STATE(2482), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5367), 2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5290), 10, + ACTIONS(5484), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -290787,8 +294292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5288), 36, - sym__newline, + ACTIONS(5482), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290824,52 +294328,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, - [58173] = 18, + [55887] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(5387), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5403), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - anon_sym_bit_DASHand2, - ACTIONS(5409), 1, - anon_sym_bit_DASHxor2, - STATE(2342), 1, - aux_sym_shebang_repeat1, - STATE(2446), 1, + ACTIONS(5597), 1, + sym__newline, + STATE(2466), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + STATE(2491), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5348), 8, + ACTIONS(5476), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290878,7 +294370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5346), 23, + ACTIONS(5474), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290890,9 +294382,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_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, @@ -290902,107 +294402,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, - [58269] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5304), 1, - sym__newline, - STATE(2447), 1, - sym_comment, - STATE(2563), 1, - aux_sym_command_list_repeat1, - STATE(2924), 1, - aux_sym_shebang_repeat1, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7259), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, - 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(5302), 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, - [58365] = 10, + [55975] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, - anon_sym_DASH2, - ACTIONS(5371), 1, - anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(2448), 1, + STATE(2467), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5367), 2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 10, + ACTIONS(5468), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291011,7 +294430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 38, + ACTIONS(5466), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -291024,6 +294443,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_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -291050,56 +294470,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, - [58445] = 20, + [56051] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5371), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - ACTIONS(5424), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(2449), 1, + STATE(2468), 1, sym_comment, - ACTIONS(5355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + STATE(2537), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5318), 8, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291108,8 +294520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 21, - sym__newline, + ACTIONS(5482), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291121,7 +294532,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_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, @@ -291130,20 +294546,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, - [58545] = 7, + [56143] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5267), 1, + ACTIONS(5597), 1, sym__newline, - STATE(2450), 1, + STATE(2469), 1, sym_comment, - ACTIONS(5272), 5, + STATE(2514), 1, + aux_sym_shebang_repeat1, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5476), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291152,7 +294572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 20, + ACTIONS(5474), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291164,16 +294584,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_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, - ACTIONS(5274), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -291188,8 +294598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -291197,54 +294605,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58619] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56217] = 14, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5495), 1, - anon_sym_DOT, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token2, - STATE(2451), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2470), 1, sym_comment, - ACTIONS(1647), 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(1645), 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, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5468), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291253,6 +294658,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5466), 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_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, @@ -291261,128 +294687,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [58691] = 12, - ACTIONS(3), 1, + [56305] = 19, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5375), 1, - anon_sym_DOLLAR, - ACTIONS(5377), 1, - anon_sym_LPAREN2, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5383), 1, - aux_sym__immediate_decimal_token5, - STATE(2452), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + ACTIONS(5597), 1, + sym__newline, + STATE(2471), 1, sym_comment, - STATE(2917), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5379), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1589), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [58775] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token2, - STATE(2453), 1, - sym_comment, - ACTIONS(1639), 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(1637), 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, + STATE(2522), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5476), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291391,6 +294743,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5474), 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, @@ -291399,20 +294766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [58847] = 5, + [56403] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_LBRACK2, - STATE(2454), 1, + ACTIONS(5512), 1, + sym__newline, + STATE(2472), 1, sym_comment, - ACTIONS(2333), 13, - anon_sym_GT2, + STATE(2486), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5484), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -291422,9 +294796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2337), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5482), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291435,6 +294807,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -291449,10 +294822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -291466,50 +294835,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, - [58917] = 18, + [56481] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2455), 1, + ACTIONS(5569), 1, + anon_sym_DOT, + STATE(2473), 1, sym_comment, - STATE(2458), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6661), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2740), 1, + sym_path, + STATE(2796), 1, + sym_cell_path, + ACTIONS(969), 6, 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(5065), 34, + ACTIONS(971), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291544,14 +294892,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [59013] = 5, + 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, + [56557] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4813), 1, - aux_sym_record_entry_token1, - STATE(2456), 1, + STATE(2474), 1, sym_comment, - ACTIONS(1038), 14, + ACTIONS(1687), 14, sym__newline, anon_sym_GT2, anon_sym_STAR2, @@ -291566,7 +294923,7 @@ 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), 42, + ACTIONS(1699), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291601,6 +294958,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -291609,252 +294967,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59083] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2457), 1, - sym_comment, - STATE(2459), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6676), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [59179] = 18, + [56625] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2458), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + ACTIONS(5591), 1, + anon_sym_and2, + ACTIONS(5597), 1, + sym__newline, + STATE(2475), 1, sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6677), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [59275] = 18, + STATE(2564), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5476), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5474), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, + [56725] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5286), 1, - anon_sym_DASH_DASH, - STATE(2459), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5547), 1, + sym__newline, + STATE(2476), 1, sym_comment, - STATE(2814), 1, - aux_sym_decl_def_repeat1, - STATE(3009), 1, - sym_long_flag, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6681), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [59371] = 5, + STATE(2532), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5480), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5478), 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, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56817] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token2, - STATE(2460), 1, + ACTIONS(5547), 1, + sym__newline, + STATE(2477), 1, sym_comment, - ACTIONS(1695), 13, - anon_sym_GT2, + STATE(2548), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5480), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -291864,9 +295153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1707), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5478), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291877,6 +295164,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -291891,10 +295179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -291908,58 +295192,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, - [59441] = 21, + [56895] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(5387), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5395), 1, - anon_sym_xor2, - ACTIONS(5403), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(5409), 1, + ACTIONS(5565), 1, anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, + ACTIONS(5567), 1, anon_sym_bit_DASHor2, - STATE(2336), 1, - aux_sym_shebang_repeat1, - STATE(2461), 1, + ACTIONS(5591), 1, + anon_sym_and2, + ACTIONS(5602), 1, + anon_sym_xor2, + STATE(2478), 1, sym_comment, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5391), 2, + STATE(2535), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5324), 8, + ACTIONS(5476), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291968,7 +295252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5322), 20, + ACTIONS(5474), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291989,153 +295273,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, - [59543] = 8, + [56997] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5442), 1, anon_sym_DOT, - STATE(2462), 1, + STATE(2479), 1, sym_comment, - STATE(2523), 1, + STATE(2543), 1, aux_sym_cell_path_repeat1, - STATE(2633), 1, - sym_path, - STATE(2745), 1, - sym_cell_path, - ACTIONS(1771), 6, - 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(1775), 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, - [59619] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5505), 1, - anon_sym_DOT, - STATE(2633), 1, + STATE(2681), 1, sym_path, - STATE(2463), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 6, - 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(981), 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, - [59690] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2464), 1, - sym_comment, - ACTIONS(996), 7, + ACTIONS(982), 6, 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(998), 49, + ACTIONS(984), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292177,7 +295333,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -292185,17 +295340,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59757] = 4, + [57071] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2465), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5597), 1, + sym__newline, + STATE(2470), 1, + aux_sym_shebang_repeat1, + STATE(2480), 1, sym_comment, - ACTIONS(2441), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5476), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292204,9 +295387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2443), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5474), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292217,26 +295398,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -292248,15 +295415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59824] = 5, + [57161] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2466), 1, + ACTIONS(5061), 1, + aux_sym_unquoted_token2, + STATE(2481), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5257), 13, + ACTIONS(1687), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292270,7 +295436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 41, + ACTIONS(1699), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292297,6 +295463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -292312,80 +295480,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, - [59893] = 4, + [57231] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(2467), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2482), 1, sym_comment, - ACTIONS(1000), 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(1002), 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_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5531), 2, anon_sym_STAR2, - 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, - [59960] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2468), 1, - sym_comment, - ACTIONS(2493), 13, + anon_sym_SLASH2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5494), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292394,8 +295514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2495), 43, - ts_builtin_sym_end, + ACTIONS(5492), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292407,7 +295526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -292421,12 +295540,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -292438,17 +295551,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, - [60027] = 4, + [57313] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2469), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + STATE(2483), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + STATE(2531), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292457,9 +295598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5482), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292470,26 +295609,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -292501,50 +295626,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, - [60094] = 17, + [57403] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5524), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5528), 1, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(5530), 1, + ACTIONS(5565), 1, anon_sym_bit_DASHxor2, - ACTIONS(5532), 1, + ACTIONS(5567), 1, anon_sym_bit_DASHor2, - STATE(2470), 1, + ACTIONS(5591), 1, + anon_sym_and2, + ACTIONS(5602), 1, + anon_sym_xor2, + STATE(2484), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, + STATE(2507), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5520), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5522), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 8, + ACTIONS(5480), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292553,9 +295686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 23, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5478), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292566,8 +295697,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_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -292577,17 +295707,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, - [60187] = 4, + [57505] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(2471), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2485), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + ACTIONS(5531), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5498), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292596,8 +295738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5496), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292609,7 +295750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -292623,10 +295764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -292640,16 +295777,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, - [60254] = 4, + [57585] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2472), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2486), 1, sym_comment, - ACTIONS(2391), 13, - anon_sym_GT2, + ACTIONS(5531), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5494), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -292659,8 +295805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2393), 43, - ts_builtin_sym_end, + ACTIONS(5492), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292672,6 +295817,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -292686,10 +295832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -292703,24 +295845,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, - [60321] = 7, + [57661] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(2473), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + STATE(2487), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5516), 2, + ACTIONS(5606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5522), 2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5257), 11, + ACTIONS(5614), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5428), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292729,8 +295877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 39, - ts_builtin_sym_end, + ACTIONS(5426), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292742,8 +295889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -292756,8 +295904,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -292769,16 +295915,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, - [60394] = 4, + [57741] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2474), 1, + STATE(2488), 1, sym_comment, - ACTIONS(1965), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -292788,8 +295941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 43, - ts_builtin_sym_end, + ACTIONS(5426), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292801,8 +295953,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -292815,10 +295969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -292832,87 +295982,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, - [60461] = 11, - ACTIONS(3), 1, + [57815] = 14, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOLLAR, - ACTIONS(5377), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2475), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5547), 1, + sym__newline, + STATE(2489), 1, sym_comment, - STATE(3086), 1, - sym__immediate_decimal, - ACTIONS(1735), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5534), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3085), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1733), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [60542] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2476), 1, - sym_comment, - ACTIONS(2497), 13, - anon_sym_GT2, + STATE(2552), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5480), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292921,9 +296024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2499), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5478), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292934,7 +296035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -292942,18 +296043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -292965,87 +296056,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, - [60609] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOLLAR, - ACTIONS(5377), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2477), 1, - sym_comment, - STATE(3088), 1, - sym__immediate_decimal, - ACTIONS(1739), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5534), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3087), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1737), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [60690] = 4, + [57903] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2478), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + STATE(2490), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5614), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5618), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293054,8 +296094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5426), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293067,26 +296106,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_DASH2, + 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_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293098,17 +296128,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, - [60757] = 4, + [57987] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(2479), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2491), 1, sym_comment, - ACTIONS(2425), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5468), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293117,8 +296168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2427), 43, - ts_builtin_sym_end, + ACTIONS(5466), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293130,7 +296180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -293138,18 +296188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293161,82 +296201,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, - [60824] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOLLAR, - ACTIONS(5377), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2480), 1, - sym_comment, - STATE(3090), 1, - sym__immediate_decimal, - ACTIONS(1743), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5534), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3089), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [60905] = 4, + [58073] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2481), 1, + STATE(2492), 1, sym_comment, - ACTIONS(2429), 13, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5428), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293250,8 +296223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2431), 43, - ts_builtin_sym_end, + ACTIONS(5426), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293263,8 +296235,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -293277,8 +296251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -293294,17 +296266,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, - [60972] = 4, + [58143] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(2482), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2493), 1, sym_comment, - ACTIONS(2395), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293313,8 +296306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2397), 43, - ts_builtin_sym_end, + ACTIONS(5492), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293326,7 +296318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -293334,18 +296326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293357,17 +296339,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, - [61039] = 4, + [58229] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2483), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + ACTIONS(5624), 1, + anon_sym_bit_DASHand2, + ACTIONS(5626), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5628), 1, + anon_sym_bit_DASHor2, + STATE(2494), 1, sym_comment, - ACTIONS(1695), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5614), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5622), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5618), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5620), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293376,8 +296391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1707), 43, - ts_builtin_sym_end, + ACTIONS(5426), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293389,29 +296403,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + 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, @@ -293420,12 +296416,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, - [61106] = 4, + [58323] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2484), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2495), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5494), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293439,8 +296440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5247), 43, - ts_builtin_sym_end, + ACTIONS(5492), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293452,6 +296452,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -293466,8 +296467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -293483,17 +296482,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, - [61173] = 4, + [58395] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2485), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + ACTIONS(5624), 1, + anon_sym_bit_DASHand2, + ACTIONS(5626), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5628), 1, + anon_sym_bit_DASHor2, + ACTIONS(5630), 1, + anon_sym_and2, + STATE(2496), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5614), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5622), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5618), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5620), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293502,8 +296536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5426), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293515,29 +296548,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_DASH2, - anon_sym_in2, - anon_sym_and2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293546,17 +296560,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, - [61240] = 4, + [58491] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2486), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2497), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293565,8 +296614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5492), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293578,29 +296626,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293609,52 +296638,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, - [61307] = 18, + [58587] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5604), 1, anon_sym_DASH2, - ACTIONS(5524), 1, + ACTIONS(5612), 1, anon_sym_PLUS2, - ACTIONS(5528), 1, + ACTIONS(5624), 1, anon_sym_bit_DASHand2, - ACTIONS(5530), 1, + ACTIONS(5626), 1, anon_sym_bit_DASHxor2, - ACTIONS(5532), 1, + ACTIONS(5628), 1, anon_sym_bit_DASHor2, - ACTIONS(5540), 1, + ACTIONS(5630), 1, anon_sym_and2, - STATE(2487), 1, + ACTIONS(5632), 1, + anon_sym_xor2, + STATE(2498), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, + ACTIONS(5606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5520), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5522), 2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, + ACTIONS(5614), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5622), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5618), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 8, + ACTIONS(5620), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293663,8 +296694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 22, - ts_builtin_sym_end, + ACTIONS(5426), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293676,7 +296706,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_xor2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -293686,44 +296717,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, - [61402] = 14, + [58685] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5604), 1, anon_sym_DASH2, - ACTIONS(5524), 1, + ACTIONS(5612), 1, anon_sym_PLUS2, - STATE(2488), 1, + STATE(2499), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, + ACTIONS(5606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5520), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5522), 2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, + ACTIONS(5614), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5618), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 8, + ACTIONS(5620), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293732,8 +296760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 26, - ts_builtin_sym_end, + ACTIONS(5426), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293745,9 +296772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293759,59 +296790,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, - [61489] = 11, - ACTIONS(3), 1, + [58771] = 19, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(5544), 1, - anon_sym_DOT_DOT2, - ACTIONS(5548), 1, - sym_filesize_unit, - ACTIONS(5550), 1, - sym_duration_unit, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token2, - STATE(2489), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + ACTIONS(5595), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2500), 1, sym_comment, - STATE(7522), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1707), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5546), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 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, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293820,6 +296846,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5492), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293828,18 +296869,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [61570] = 4, + [58869] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(2490), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5597), 1, + sym__newline, + STATE(2501), 1, sym_comment, - ACTIONS(2282), 13, - anon_sym_GT2, + STATE(2549), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5476), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293848,9 +296902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2286), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5474), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -293861,7 +296913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -293875,10 +296927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -293892,17 +296940,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, - [61637] = 4, + [58951] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2491), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + STATE(2502), 1, sym_comment, - ACTIONS(2433), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293911,8 +296969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2435), 43, - ts_builtin_sym_end, + ACTIONS(5426), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293924,8 +296981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -293938,10 +296996,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -293955,17 +297009,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, - [61704] = 4, + [59029] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(2492), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + STATE(2503), 1, sym_comment, - ACTIONS(2465), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5614), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5622), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5618), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5620), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293974,8 +297055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2467), 43, - ts_builtin_sym_end, + ACTIONS(5426), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293987,26 +297067,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + 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, @@ -294018,17 +297083,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, - [61771] = 4, + [59117] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2493), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + ACTIONS(5624), 1, + anon_sym_bit_DASHand2, + STATE(2504), 1, sym_comment, - ACTIONS(1933), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5614), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5622), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5618), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5620), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294037,8 +297131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 43, - ts_builtin_sym_end, + ACTIONS(5426), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294050,27 +297143,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + 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, @@ -294081,17 +297158,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, - [61838] = 4, + [59207] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2494), 1, + ACTIONS(5604), 1, + anon_sym_DASH2, + ACTIONS(5612), 1, + anon_sym_PLUS2, + ACTIONS(5624), 1, + anon_sym_bit_DASHand2, + ACTIONS(5626), 1, + anon_sym_bit_DASHxor2, + STATE(2505), 1, sym_comment, - ACTIONS(2481), 13, - anon_sym_GT2, + ACTIONS(5606), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5608), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5610), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5614), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5616), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5622), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5618), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5620), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294100,8 +297208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2483), 43, - ts_builtin_sym_end, + ACTIONS(5426), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294113,29 +297220,168 @@ static const uint16_t 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_RPAREN, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [59299] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5597), 1, + sym__newline, + STATE(2440), 1, + aux_sym_shebang_repeat1, + STATE(2506), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5476), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5474), 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, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [59391] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + ACTIONS(5595), 1, + anon_sym_and2, + ACTIONS(5600), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2507), 1, + sym_comment, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5456), 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_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294144,26 +297390,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, - [61905] = 5, + [59491] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token2, - STATE(2495), 1, + ACTIONS(5569), 1, + anon_sym_DOT, + STATE(2508), 1, sym_comment, - ACTIONS(1745), 10, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2740), 1, + sym_path, + STATE(2854), 1, + sym_cell_path, + ACTIONS(1763), 6, 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(1747), 45, + ACTIONS(1765), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294198,9 +297447,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -294208,17 +297458,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61974] = 4, + [59567] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2496), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2509), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294227,8 +297510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5456), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294240,28 +297522,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -294271,17 +297535,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, - [62041] = 4, + [59661] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2497), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2510), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294290,8 +297583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2487), 43, - ts_builtin_sym_end, + ACTIONS(5496), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294303,26 +297595,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -294334,17 +297610,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, - [62108] = 4, + [59751] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(2498), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2511), 1, sym_comment, - ACTIONS(1969), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294353,8 +297655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 43, - ts_builtin_sym_end, + ACTIONS(5456), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294366,27 +297667,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + 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, + [59839] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2512), 1, + sym_comment, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5498), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5496), 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_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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [59931] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5597), 1, + sym__newline, + STATE(2433), 1, + aux_sym_shebang_repeat1, + STATE(2513), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5476), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5474), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -294397,12 +297837,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, - [62175] = 4, + [60025] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2499), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2514), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5468), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -294416,8 +297861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 43, - ts_builtin_sym_end, + ACTIONS(5466), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294429,6 +297873,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -294443,8 +297888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -294460,12 +297903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62242] = 4, + [60097] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2500), 1, + ACTIONS(5512), 1, + sym__newline, + STATE(2495), 1, + aux_sym_shebang_repeat1, + STATE(2515), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5484), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -294479,9 +297929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2491), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5482), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294492,6 +297940,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -294506,8 +297955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -294523,54 +297970,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, - [62309] = 19, + [60171] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5524), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5528), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(5530), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5532), 1, - anon_sym_bit_DASHor2, - ACTIONS(5540), 1, - anon_sym_and2, - ACTIONS(5556), 1, - anon_sym_xor2, - STATE(2501), 1, + STATE(2516), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, + STATE(2561), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5520), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5522), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 8, + ACTIONS(5480), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294579,9 +298022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 21, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5478), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294592,7 +298033,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_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, @@ -294601,17 +298047,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, - [62406] = 4, + [60265] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2502), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2517), 1, sym_comment, - ACTIONS(2417), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294620,8 +298099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2419), 43, - ts_builtin_sym_end, + ACTIONS(5496), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294633,28 +298111,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -294664,17 +298124,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, - [62473] = 4, + [60359] = 21, ACTIONS(251), 1, anon_sym_POUND, - STATE(2503), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + ACTIONS(5591), 1, + anon_sym_and2, + ACTIONS(5602), 1, + anon_sym_xor2, + STATE(2461), 1, + aux_sym_shebang_repeat1, + STATE(2518), 1, sym_comment, - ACTIONS(1945), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294683,9 +298184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5460), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294696,28 +298195,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + 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, + [60461] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5515), 1, anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + STATE(2517), 1, + aux_sym_shebang_repeat1, + STATE(2519), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5462), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5460), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -294727,70 +298283,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62540] = 13, - ACTIONS(251), 1, + [60557] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1581), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5558), 1, + ACTIONS(5634), 1, anon_sym_DOLLAR, - ACTIONS(5560), 1, + ACTIONS(5636), 1, anon_sym_LPAREN2, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5566), 1, + ACTIONS(5640), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5568), 1, + ACTIONS(5642), 1, aux_sym__immediate_decimal_token5, - STATE(2504), 1, + STATE(2520), 1, sym_comment, - STATE(3056), 1, + STATE(3040), 1, sym__immediate_decimal, - STATE(3116), 2, + ACTIONS(1579), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5638), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3202), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1589), 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(1603), 28, - sym_raw_string_begin, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294799,145 +298354,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, - [62625] = 5, + aux_sym__unquoted_in_list_token1, + [60641] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5570), 1, - anon_sym_QMARK2, - STATE(2505), 1, - sym_comment, - ACTIONS(990), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 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, + ACTIONS(5512), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [62694] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5572), 1, - anon_sym_QMARK2, - STATE(2506), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + ACTIONS(5591), 1, + anon_sym_and2, + STATE(2500), 1, + aux_sym_shebang_repeat1, + STATE(2521), 1, sym_comment, - ACTIONS(1012), 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(1014), 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, + ACTIONS(5517), 2, 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, - [62763] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2507), 1, - sym_comment, - ACTIONS(2445), 13, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294946,9 +298413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2447), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5482), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294959,29 +298424,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294990,17 +298435,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, - [62830] = 4, + [60741] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2508), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2522), 1, sym_comment, - ACTIONS(2247), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5468), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295009,8 +298489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2249), 43, - ts_builtin_sym_end, + ACTIONS(5466), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295022,29 +298501,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295053,17 +298513,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, - [62897] = 4, + [60837] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2509), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5597), 1, + sym__newline, + STATE(2448), 1, + aux_sym_shebang_repeat1, + STATE(2523), 1, sym_comment, - ACTIONS(1897), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5476), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295072,9 +298567,7 @@ 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), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5474), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295085,28 +298578,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -295116,12 +298591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62964] = 4, + [60933] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2510), 1, + ACTIONS(5547), 1, + sym__newline, + STATE(2524), 1, sym_comment, - ACTIONS(5253), 13, + STATE(2556), 1, + aux_sym_shebang_repeat1, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5480), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -295135,9 +298617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5251), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5478), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295148,6 +298628,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -295162,8 +298643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -295179,17 +298658,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, - [63031] = 4, + [61007] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2511), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + STATE(2497), 1, + aux_sym_shebang_repeat1, + STATE(2525), 1, sym_comment, - ACTIONS(2469), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295198,9 +298714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2471), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5482), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295211,29 +298725,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295242,12 +298737,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, - [63098] = 4, + [61105] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2512), 1, + ACTIONS(1050), 1, + aux_sym_record_entry_token1, + STATE(2526), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(1034), 14, + sym__newline, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -295261,9 +298759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2066), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1036), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295276,6 +298772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -295305,17 +298802,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, - [63165] = 4, + [61175] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2513), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + STATE(2509), 1, + aux_sym_shebang_repeat1, + STATE(2527), 1, sym_comment, - ACTIONS(2399), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5480), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295324,9 +298856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2401), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5478), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295337,28 +298867,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -295368,17 +298880,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, - [63232] = 4, + [61271] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2514), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5547), 1, + sym__newline, + STATE(2511), 1, + aux_sym_shebang_repeat1, + STATE(2528), 1, sym_comment, - ACTIONS(2437), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5480), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295387,9 +298927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2439), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5478), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295400,26 +298938,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -295431,17 +298955,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, - [63299] = 4, + [61361] = 20, ACTIONS(251), 1, anon_sym_POUND, - STATE(2515), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + ACTIONS(5595), 1, + anon_sym_and2, + ACTIONS(5600), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2529), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295450,8 +299013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5492), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295463,29 +299025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295494,41 +299035,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, - [63366] = 13, + [61461] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5448), 1, + sym__newline, + STATE(2530), 1, + sym_comment, + STATE(2720), 1, + aux_sym_command_list_repeat1, + STATE(3037), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, + sym__val_number_decimal, + STATE(7648), 1, + sym__command_name, + STATE(7698), 1, + sym_cmd_identifier, + STATE(7699), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5444), 6, + 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(5446), 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, + [61557] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5524), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - STATE(2516), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2531), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5516), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5522), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 8, + ACTIONS(5494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295537,8 +299158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 28, - ts_builtin_sym_end, + ACTIONS(5492), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295550,6 +299170,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_and2, anon_sym_xor2, anon_sym_or2, @@ -295566,17 +299187,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, - [63451] = 4, + [61645] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2517), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2532), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295585,8 +299235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5456), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295598,26 +299247,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -295629,17 +299262,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, - [63518] = 4, + [61735] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2518), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2533), 1, sym_comment, - ACTIONS(5257), 13, - anon_sym_GT2, + STATE(2568), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7168), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [61831] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5550), 1, + sym__newline, + STATE(2510), 1, + aux_sym_shebang_repeat1, + STATE(2534), 1, + sym_comment, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295648,9 +299390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5460), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295661,29 +299401,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + anon_sym_bit_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, + [61923] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + ACTIONS(5595), 1, + anon_sym_and2, + ACTIONS(5600), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2535), 1, + sym_comment, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5468), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5466), 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_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295692,17 +299496,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, - [63585] = 4, + [62023] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(2519), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2536), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + ACTIONS(5531), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5494), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295711,8 +299527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5492), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295724,7 +299539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -295738,10 +299553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -295755,40 +299566,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, - [63652] = 13, + [62103] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3915), 1, - anon_sym_DOLLAR, - ACTIONS(5429), 1, - anon_sym_LPAREN2, - ACTIONS(5574), 1, - anon_sym_DOT, - ACTIONS(5576), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5578), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5580), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5582), 1, - aux_sym__immediate_decimal_token5, - STATE(2520), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2537), 1, sym_comment, - STATE(2906), 1, - sym__immediate_decimal, - STATE(2905), 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, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295797,28 +299614,25 @@ 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(1673), 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, + ACTIONS(5492), 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_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, @@ -295827,17 +299641,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, - [63737] = 4, + [62193] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(2521), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2538), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + ACTIONS(5531), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5458), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295846,8 +299672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5456), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295859,7 +299684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -295873,10 +299698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -295890,18 +299711,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, - [63804] = 6, + [62273] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2522), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2539), 1, sym_comment, - ACTIONS(5239), 5, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5235), 8, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295910,8 +299761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 20, - ts_builtin_sym_end, + ACTIONS(5492), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295923,6 +299773,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_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, @@ -295931,51 +299787,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, - ACTIONS(5241), 23, + [62365] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 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, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2540), 1, + sym_comment, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5494), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5492), 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [63875] = 7, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62459] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5471), 1, - anon_sym_DOT, - STATE(2463), 1, - aux_sym_cell_path_repeat1, - STATE(2523), 1, + ACTIONS(5644), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5646), 1, + aux_sym__immediate_decimal_token2, + STATE(2541), 1, sym_comment, - STATE(2633), 1, - sym_path, - ACTIONS(986), 6, + ACTIONS(1661), 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, - ACTIONS(988), 47, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1663), 44, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296010,57 +299921,67 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, - [63948] = 15, + [62531] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5524), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(5528), 1, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - STATE(2524), 1, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + ACTIONS(5591), 1, + anon_sym_and2, + ACTIONS(5602), 1, + anon_sym_xor2, + STATE(2529), 1, + aux_sym_shebang_repeat1, + STATE(2542), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5520), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5522), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5257), 8, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296069,9 +299990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 25, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5482), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296082,11 +300001,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_and2, - anon_sym_xor2, + anon_sym_RPAREN, 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, @@ -296095,80 +300011,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, - [64037] = 4, + [62633] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2525), 1, + ACTIONS(5648), 1, + anon_sym_DOT, + STATE(2681), 1, + sym_path, + STATE(2543), 2, 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5241), 43, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(975), 6, + 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(977), 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, + 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, + [62705] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 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, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2544), 1, + sym_comment, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_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, - [64104] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2526), 1, - sym_comment, - ACTIONS(2473), 13, + ACTIONS(5458), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296177,8 +300111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2475), 43, - ts_builtin_sym_end, + ACTIONS(5456), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296190,7 +300123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296204,12 +300137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -296221,28 +300148,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, - [64171] = 10, + [62787] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5524), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - STATE(2527), 1, + ACTIONS(5550), 1, + sym__newline, + STATE(2442), 1, + aux_sym_shebang_repeat1, + STATE(2545), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5516), 2, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5522), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5257), 10, + ACTIONS(5462), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -296253,9 +300184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5460), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296266,6 +300195,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_in2, anon_sym_and2, anon_sym_xor2, @@ -296290,17 +300220,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, - [64250] = 4, - ACTIONS(251), 1, + [62871] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2528), 1, + ACTIONS(5651), 1, + anon_sym_DOT, + ACTIONS(5653), 1, + aux_sym__immediate_decimal_token2, + STATE(2546), 1, sym_comment, - ACTIONS(1889), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1671), 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(1669), 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, @@ -296309,42 +300276,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(1891), 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, @@ -296353,16 +300284,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64317] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [62943] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2529), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2443), 1, + aux_sym_decl_def_repeat1, + STATE(2547), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6673), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [63039] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2548), 1, + sym_comment, + ACTIONS(5531), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5458), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -296372,8 +300392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, - ts_builtin_sym_end, + ACTIONS(5456), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296385,6 +300404,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -296399,10 +300419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -296416,17 +300432,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, - [64384] = 4, + [63115] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(2530), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2549), 1, sym_comment, - ACTIONS(2449), 13, - anon_sym_GT2, + ACTIONS(5531), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5468), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296435,8 +300463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2451), 43, - ts_builtin_sym_end, + ACTIONS(5466), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296448,7 +300475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296462,10 +300489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -296479,16 +300502,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, - [64451] = 4, + [63195] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2531), 1, + ACTIONS(5550), 1, + sym__newline, + STATE(2446), 1, + aux_sym_shebang_repeat1, + STATE(2550), 1, sym_comment, - ACTIONS(5265), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5462), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -296498,9 +300532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5263), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5460), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296511,6 +300543,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -296525,10 +300558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -296542,17 +300571,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, - [64518] = 4, - ACTIONS(251), 1, + [63273] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2532), 1, + ACTIONS(5655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5657), 1, + aux_sym__immediate_decimal_token2, + STATE(2551), 1, sym_comment, - ACTIONS(2417), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1663), 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(1661), 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, @@ -296561,42 +300627,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(2419), 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, @@ -296605,17 +300635,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, - [64585] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [63345] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(2533), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2552), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296624,8 +300677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2479), 43, - ts_builtin_sym_end, + ACTIONS(5456), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296637,7 +300689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296645,18 +300697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -296668,17 +300710,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, - [64652] = 4, + [63431] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(2534), 1, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5550), 1, + sym__newline, + STATE(2450), 1, + aux_sym_shebang_repeat1, + STATE(2553), 1, sym_comment, - ACTIONS(2403), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296687,9 +300752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2405), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5460), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296700,7 +300763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296708,18 +300771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -296731,76 +300784,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64719] = 5, - ACTIONS(251), 1, + [63519] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5475), 1, - aux_sym__immediate_decimal_token2, - STATE(2535), 1, + ACTIONS(2573), 1, + anon_sym_DOLLAR, + ACTIONS(5500), 1, + anon_sym_LPAREN2, + ACTIONS(5659), 1, + anon_sym_DOT, + ACTIONS(5663), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5665), 1, + aux_sym__immediate_decimal_token5, + STATE(2554), 1, sym_comment, - ACTIONS(1645), 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(1647), 45, + STATE(2987), 1, + sym__immediate_decimal, + ACTIONS(1643), 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_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, + sym__entry_separator, + ACTIONS(5661), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2985), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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, - [64788] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [63603] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2536), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2555), 1, sym_comment, - ACTIONS(1957), 13, + STATE(2558), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7051), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [63699] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2556), 1, + sym_comment, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5458), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -296814,8 +300958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 43, - ts_builtin_sym_end, + ACTIONS(5456), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296827,6 +300970,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -296841,8 +300985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -296858,82 +301000,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64855] = 11, - ACTIONS(3), 1, + [63771] = 18, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5375), 1, - anon_sym_DOLLAR, - ACTIONS(5377), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token5, - STATE(2537), 1, - sym_comment, - STATE(3078), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5534), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3077), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 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, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2557), 1, + sym_comment, + STATE(2559), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7076), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [63867] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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(5486), 1, + anon_sym_DASH_DASH, + STATE(2558), 1, + sym_comment, + STATE(2978), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7077), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [63963] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2559), 1, + sym_comment, + STATE(2978), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7086), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [64936] = 4, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [64059] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2538), 1, + ACTIONS(5550), 1, + sym__newline, + STATE(2451), 1, + aux_sym_shebang_repeat1, + STATE(2560), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5462), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -296947,9 +301260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2409), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5460), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296960,6 +301271,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -296974,8 +301286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -296991,17 +301301,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, - [65003] = 4, + [64133] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2539), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2561), 1, sym_comment, - ACTIONS(2421), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297010,8 +301351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2423), 43, - ts_builtin_sym_end, + ACTIONS(5456), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297023,29 +301363,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_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, + [64225] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 1, anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2562), 1, + sym_comment, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5456), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_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, + [64321] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + STATE(2453), 1, + aux_sym_shebang_repeat1, + STATE(2563), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5462), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5460), 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, + [64419] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + ACTIONS(5595), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2564), 1, + sym_comment, + ACTIONS(5525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5468), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5466), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297054,30 +301613,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65070] = 5, + [64517] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token2, - STATE(2540), 1, + ACTIONS(1659), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5634), 1, + anon_sym_DOLLAR, + ACTIONS(5636), 1, + anon_sym_LPAREN2, + ACTIONS(5640), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5642), 1, + aux_sym__immediate_decimal_token5, + STATE(2565), 1, sym_comment, - ACTIONS(1647), 7, + STATE(3011), 1, + sym__immediate_decimal, + ACTIONS(1657), 2, 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(1645), 48, + ACTIONS(5638), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3164), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 45, 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, @@ -297117,18 +301685,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, - aux_sym__unquoted_in_list_token2, - [65139] = 4, + [64601] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2541), 1, + ACTIONS(5527), 1, + anon_sym_DASH2, + ACTIONS(5541), 1, + anon_sym_PLUS2, + ACTIONS(5545), 1, + anon_sym_bit_DASHand2, + ACTIONS(5571), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5585), 1, + anon_sym_bit_DASHor2, + ACTIONS(5595), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(2566), 1, sym_comment, - ACTIONS(1917), 13, + ACTIONS(5525), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5531), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5535), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5543), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5529), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5533), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5458), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297137,8 +301741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 43, - ts_builtin_sym_end, + ACTIONS(5456), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297150,29 +301753,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_DASH2, - anon_sym_in2, - anon_sym_and2, + anon_sym_RPAREN, 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, + [64699] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(5563), 1, + anon_sym_bit_DASHand2, + ACTIONS(5565), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5567), 1, + anon_sym_bit_DASHor2, + ACTIONS(5591), 1, + anon_sym_and2, + STATE(2458), 1, + aux_sym_shebang_repeat1, + STATE(2567), 1, + sym_comment, + ACTIONS(5517), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5462), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5460), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297181,21 +301844,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, - [65206] = 4, + [64799] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5486), 1, + anon_sym_DASH_DASH, + STATE(2568), 1, sym_comment, - ACTIONS(1008), 7, + STATE(2978), 1, + aux_sym_decl_def_repeat1, + STATE(3122), 1, + sym_long_flag, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6791), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(1010), 49, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297230,31 +301922,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [65273] = 4, + [64895] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(2543), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(5515), 1, + anon_sym_DASH2, + ACTIONS(5523), 1, + anon_sym_PLUS2, + STATE(2493), 1, + aux_sym_shebang_repeat1, + STATE(2569), 1, sym_comment, - ACTIONS(2461), 13, - anon_sym_GT2, + ACTIONS(5517), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5557), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5484), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297263,9 +301964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2463), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5482), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -297276,7 +301975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -297284,18 +301983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -297307,76 +301996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65340] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5584), 1, - aux_sym__immediate_decimal_token2, - STATE(2544), 1, - sym_comment, - ACTIONS(1747), 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(1745), 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, - [65409] = 4, + [64983] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2545), 1, + STATE(2570), 1, sym_comment, - ACTIONS(2413), 13, + ACTIONS(2292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -297390,7 +302015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2415), 43, + ACTIONS(2294), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -297434,12 +302059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65476] = 4, + [65050] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2546), 1, + STATE(2571), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -297453,7 +302078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, + ACTIONS(5284), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -297497,12 +302122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65543] = 4, + [65117] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2547), 1, + STATE(2572), 1, sym_comment, - ACTIONS(1038), 13, + ACTIONS(2439), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -297516,7 +302141,7 @@ 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), 43, + ACTIONS(2441), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -297560,36 +302185,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, - [65610] = 12, + [65184] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - anon_sym_DASH2, - ACTIONS(5524), 1, - anon_sym_PLUS2, - STATE(2548), 1, + STATE(2573), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, + ACTIONS(5286), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5522), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5518), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297598,7 +302204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 32, + ACTIONS(5284), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -297611,6 +302217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -297618,8 +302225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -297631,70 +302248,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65693] = 13, - ACTIONS(251), 1, + [65251] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5558), 1, + ACTIONS(5634), 1, anon_sym_DOLLAR, - ACTIONS(5560), 1, + ACTIONS(5636), 1, anon_sym_LPAREN2, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5566), 1, + ACTIONS(5669), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5568), 1, + ACTIONS(5671), 1, aux_sym__immediate_decimal_token5, - STATE(2549), 1, + STATE(2574), 1, sym_comment, - STATE(3093), 1, + STATE(3158), 1, sym__immediate_decimal, - STATE(3132), 2, + ACTIONS(1685), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3157), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 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(1677), 28, - sym_raw_string_begin, + ACTIONS(1677), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297703,27 +302317,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, - [65778] = 9, + aux_sym__unquoted_in_list_token1, + [65332] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - anon_sym_DASH2, - ACTIONS(5524), 1, - anon_sym_PLUS2, - STATE(2550), 1, + STATE(2575), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5516), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5522), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 10, + ACTIONS(2415), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297732,7 +302337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 38, + ACTIONS(2417), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -297745,6 +302350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -297758,6 +302364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -297771,80 +302381,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, - [65855] = 4, + [65399] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2551), 1, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + ACTIONS(5693), 1, + anon_sym_bit_DASHand2, + ACTIONS(5695), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5697), 1, + anon_sym_bit_DASHor2, + STATE(2576), 1, sym_comment, - ACTIONS(1004), 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(1006), 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_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, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65922] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2552), 1, - sym_comment, - ACTIONS(5198), 13, + ACTIONS(5673), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5679), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5683), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5677), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297853,7 +302433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 43, + ACTIONS(5426), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -297866,29 +302446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_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, @@ -297897,48 +302457,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, - [65989] = 16, + [65492] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - anon_sym_DASH2, - ACTIONS(5524), 1, - anon_sym_PLUS2, - ACTIONS(5528), 1, - anon_sym_bit_DASHand2, - ACTIONS(5530), 1, - anon_sym_bit_DASHxor2, - STATE(2553), 1, + STATE(2577), 1, sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, + ACTIONS(5428), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5520), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5522), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5257), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297947,7 +302476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5255), 24, + ACTIONS(5426), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -297960,9 +302489,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_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, @@ -297972,301 +302520,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66080] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5595), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5598), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5601), 1, - anon_sym_DQUOTE, - ACTIONS(5607), 1, - sym_raw_string_begin, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - STATE(7639), 1, - sym__command_name, - ACTIONS(5592), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5604), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2554), 2, - sym_comment, - aux_sym_command_list_repeat1, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5586), 6, - 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(5589), 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, - [66168] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5618), 1, - sym_raw_string_begin, - STATE(1705), 1, - sym__command_name, - STATE(2555), 1, - sym_comment, - STATE(2611), 1, - sym_val_string, - STATE(2643), 1, - sym_cmd_identifier, - STATE(3800), 1, - sym__val_number_decimal, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5616), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2647), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5610), 6, - 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(5612), 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, - [66258] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2556), 1, - sym_comment, - ACTIONS(996), 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(998), 48, - 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, - 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, - [66324] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2557), 1, - sym_comment, - ACTIONS(1026), 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(1028), 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, - [66390] = 6, + [65559] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5620), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5622), 1, - aux_sym__immediate_decimal_token2, - STATE(2558), 1, + ACTIONS(5634), 1, + anon_sym_DOLLAR, + ACTIONS(5636), 1, + anon_sym_LPAREN2, + ACTIONS(5669), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5671), 1, + aux_sym__immediate_decimal_token5, + STATE(2578), 1, sym_comment, - ACTIONS(1795), 5, + STATE(3160), 1, + sym__immediate_decimal, + ACTIONS(1741), 2, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1793), 48, + ACTIONS(5667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3150), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1739), 45, 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, @@ -298306,154 +302590,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, - aux_sym__unquoted_in_list_token2, - [66460] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2559), 1, - sym_comment, - ACTIONS(1022), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 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, - [66526] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2560), 1, - sym_comment, - ACTIONS(1018), 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(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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [66592] = 12, + [65640] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5558), 1, + ACTIONS(1659), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5699), 1, anon_sym_DOLLAR, - ACTIONS(5560), 1, + ACTIONS(5701), 1, anon_sym_LPAREN2, - ACTIONS(5624), 1, + ACTIONS(5703), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5626), 1, + ACTIONS(5705), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5628), 1, + ACTIONS(5707), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5630), 1, + ACTIONS(5709), 1, aux_sym__immediate_decimal_token5, - STATE(2561), 1, + STATE(2579), 1, sym_comment, - STATE(3114), 1, + STATE(3230), 1, sym__immediate_decimal, - STATE(3113), 2, + STATE(3267), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1663), 18, + ACTIONS(1645), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -298472,7 +302633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1673), 28, + ACTIONS(1657), 28, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -298501,186 +302662,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66674] = 16, + [65725] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2562), 1, + STATE(2580), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6425), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [66764] = 16, + ACTIONS(2474), 13, + anon_sym_GT2, + 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(2476), 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, + [65792] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2554), 1, - aux_sym_command_list_repeat1, - STATE(2563), 1, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + ACTIONS(5693), 1, + anon_sym_bit_DASHand2, + ACTIONS(5695), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5697), 1, + anon_sym_bit_DASHor2, + ACTIONS(5711), 1, + anon_sym_and2, + ACTIONS(5713), 1, + anon_sym_xor2, + STATE(2581), 1, sym_comment, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7034), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, - 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(5302), 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, - [66854] = 12, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5683), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5677), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5426), 21, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65889] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5626), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5628), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5630), 1, - aux_sym__immediate_decimal_token5, - STATE(2564), 1, + STATE(2582), 1, sym_comment, - STATE(3127), 1, - sym__immediate_decimal, - STATE(3126), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1733), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2470), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298689,28 +302822,42 @@ 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(1735), 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, + ACTIONS(2472), 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, @@ -298719,46 +302866,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, - [66936] = 16, + [65956] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2565), 1, + ACTIONS(5589), 1, + aux_sym__immediate_decimal_token2, + STATE(2583), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7729), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(1669), 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, - ACTIONS(5065), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298793,38 +302920,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67026] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5626), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5628), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5630), 1, - aux_sym__immediate_decimal_token5, - STATE(2566), 1, - sym_comment, - STATE(3129), 1, - sym__immediate_decimal, - STATE(3128), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1737), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + 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_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66025] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2584), 1, + sym_comment, + ACTIONS(5378), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298833,28 +302949,42 @@ 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(1739), 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, + ACTIONS(5380), 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, @@ -298863,186 +302993,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, - [67108] = 16, + [66092] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2567), 1, + STATE(2585), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6425), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [67198] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2568), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(5975), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [67288] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5626), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5628), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5630), 1, - aux_sym__immediate_decimal_token5, - STATE(2569), 1, - sym_comment, - STATE(3131), 1, - sym__immediate_decimal, - STATE(3130), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2266), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299051,28 +303012,42 @@ 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(1743), 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, + ACTIONS(2270), 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, @@ -299081,556 +303056,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67370] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5618), 1, - sym_raw_string_begin, - STATE(1705), 1, - sym__command_name, - STATE(2570), 1, - sym_comment, - STATE(2611), 1, - sym_val_string, - STATE(2643), 1, - sym_cmd_identifier, - STATE(3800), 1, - sym__val_number_decimal, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5616), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2647), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5610), 6, - 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(5612), 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, - [67460] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2571), 1, - sym_comment, - ACTIONS(1645), 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(1647), 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, - [67526] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2572), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(5975), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [67616] = 4, + [66159] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(2573), 1, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + STATE(2586), 1, sym_comment, - ACTIONS(1781), 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(1783), 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, - [67682] = 4, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5428), 10, + anon_sym_GT2, + 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(5426), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [66238] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2574), 1, + STATE(2587), 1, sym_comment, - ACTIONS(1004), 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(1006), 48, - sym_raw_string_begin, + ACTIONS(1941), 13, + anon_sym_GT2, + 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(1943), 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_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, - 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, - [67748] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [66305] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2575), 1, + STATE(2588), 1, sym_comment, - ACTIONS(1745), 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(1747), 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, - [67814] = 16, + 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, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [66372] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2554), 1, - aux_sym_command_list_repeat1, - STATE(2576), 1, + STATE(2589), 1, sym_comment, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7164), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, - 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(5302), 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, - [67904] = 4, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2361), 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, + [66439] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2577), 1, + STATE(2590), 1, sym_comment, - ACTIONS(1000), 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(1002), 48, - sym_raw_string_begin, + ACTIONS(1917), 13, + anon_sym_GT2, + 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(1919), 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_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, - 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, - [67970] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [66506] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5632), 1, - anon_sym_DOT, - ACTIONS(5634), 1, - aux_sym__immediate_decimal_token2, - STATE(2578), 1, + STATE(2591), 1, sym_comment, - ACTIONS(1645), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2375), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299639,36 +303396,42 @@ 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(1647), 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, + ACTIONS(2377), 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, @@ -299677,258 +303440,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68040] = 9, + [66573] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(5636), 1, - sym_filesize_unit, - ACTIONS(5638), 1, - sym_duration_unit, - ACTIONS(5640), 1, - aux_sym_unquoted_token2, - STATE(2579), 1, + STATE(2592), 1, sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 6, - 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(1707), 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, - [68116] = 4, + 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), 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, + [66640] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2580), 1, + STATE(2593), 1, sym_comment, - ACTIONS(1637), 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(1639), 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, - [68182] = 16, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2369), 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, + [66707] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2581), 1, + STATE(2594), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7729), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [68272] = 8, - ACTIONS(3), 1, + ACTIONS(2419), 13, + anon_sym_GT2, + 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(2421), 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, + [66774] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DOT, - STATE(2582), 1, + STATE(2595), 1, sym_comment, - STATE(2609), 1, - aux_sym_cell_path_repeat1, - STATE(2789), 1, - sym_path, - STATE(2827), 1, - sym_cell_path, - ACTIONS(975), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(973), 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, + 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, @@ -299937,6 +303648,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(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, @@ -299945,21 +303692,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_in_list_token1, - [68346] = 4, + [66841] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2583), 1, - sym_comment, - ACTIONS(1647), 7, - sym_raw_string_begin, + ACTIONS(5715), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5717), 1, + anon_sym_DOT_DOT2, + ACTIONS(5721), 1, sym_filesize_unit, + ACTIONS(5723), 1, sym_duration_unit, + ACTIONS(5725), 1, + aux_sym__unquoted_in_list_token2, + STATE(2596), 1, + sym_comment, + STATE(8167), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1699), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1645), 48, + ACTIONS(5719), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299967,7 +303723,6 @@ 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, @@ -300007,25 +303762,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, - [68412] = 6, + [66922] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5644), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5646), 1, - aux_sym__immediate_decimal_token2, - STATE(2584), 1, + STATE(2597), 1, sym_comment, - ACTIONS(1637), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(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, @@ -300034,36 +303781,42 @@ 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(1639), 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, + ACTIONS(5284), 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, @@ -300072,50 +303825,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, - [68482] = 4, - ACTIONS(3), 1, + [66989] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2585), 1, + STATE(2598), 1, sym_comment, - ACTIONS(1639), 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(1637), 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, + ACTIONS(2423), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300124,6 +303844,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(2425), 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, @@ -300132,52 +303888,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, - [68548] = 4, - ACTIONS(3), 1, + [67056] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2586), 1, + STATE(2599), 1, sym_comment, - ACTIONS(1747), 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(1745), 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, + ACTIONS(2411), 13, + anon_sym_GT2, + 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(2413), 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, + [67123] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2600), 1, + sym_comment, + ACTIONS(1687), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300186,6 +303970,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(1699), 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, @@ -300194,35 +304014,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [68614] = 8, + [67190] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DOT, - STATE(2587), 1, + ACTIONS(5634), 1, + anon_sym_DOLLAR, + ACTIONS(5636), 1, + anon_sym_LPAREN2, + ACTIONS(5669), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5671), 1, + aux_sym__immediate_decimal_token5, + STATE(2601), 1, sym_comment, - STATE(2609), 1, - aux_sym_cell_path_repeat1, - STATE(2789), 1, - sym_path, - STATE(2819), 1, - sym_cell_path, - ACTIONS(1775), 4, + STATE(3163), 1, + sym__immediate_decimal, + ACTIONS(1745), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1771), 47, + ACTIONS(5667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3161), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1743), 45, 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, @@ -300262,20 +304084,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, - [68688] = 4, + [67271] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2588), 1, + ACTIONS(5727), 1, + anon_sym_DOT, + STATE(2740), 1, + sym_path, + STATE(2602), 2, sym_comment, - ACTIONS(1008), 7, + aux_sym_cell_path_repeat1, + ACTIONS(975), 6, 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(1010), 48, + ACTIONS(977), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -300316,7 +304142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, 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, @@ -300324,55 +304149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68754] = 8, - ACTIONS(3), 1, + [67342] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DOT, - STATE(2589), 1, + STATE(2603), 1, sym_comment, - STATE(2609), 1, - aux_sym_cell_path_repeat1, - STATE(2789), 1, - sym_path, - STATE(2821), 1, - sym_cell_path, - ACTIONS(1779), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1777), 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, + 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, @@ -300381,6 +304168,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(5284), 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, @@ -300389,47 +304212,158 @@ static const 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, - [68828] = 16, + [67409] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2554), 1, - aux_sym_command_list_repeat1, - STATE(2590), 1, + STATE(2604), 1, sym_comment, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7260), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, + ACTIONS(2427), 13, + anon_sym_GT2, + 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(2429), 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, + [67476] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + ACTIONS(5693), 1, + anon_sym_bit_DASHand2, + STATE(2605), 1, + sym_comment, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5683), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5677), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5426), 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_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, + [67565] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2606), 1, + sym_comment, + ACTIONS(1000), 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, - ACTIONS(5302), 34, + anon_sym_DOT, + ACTIONS(1002), 49, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300464,50 +304398,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68918] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2591), 1, - sym_comment, - ACTIONS(1783), 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(1781), 48, + 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_null, - anon_sym_true, - anon_sym_false, + 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, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + [67632] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2607), 1, + sym_comment, + 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, @@ -300516,6 +304431,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(5284), 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, @@ -300524,180 +304475,143 @@ static const 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, - [68984] = 5, + [67699] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_QMARK2, - STATE(2592), 1, + STATE(2608), 1, sym_comment, - ACTIONS(990), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 47, - sym_raw_string_begin, + ACTIONS(1937), 13, + anon_sym_GT2, + 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(1939), 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_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, - [69052] = 5, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [67766] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_QMARK2, - STATE(2593), 1, + STATE(2609), 1, sym_comment, - ACTIONS(1012), 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(1014), 47, - sym_raw_string_begin, + ACTIONS(2486), 13, + anon_sym_GT2, + 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(2488), 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_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, - [69120] = 6, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + 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, + [67833] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5652), 1, - anon_sym_DOT, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token2, - STATE(2594), 1, + STATE(2610), 1, sym_comment, - ACTIONS(1787), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1785), 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, + 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, @@ -300706,6 +304620,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(2405), 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, @@ -300714,120 +304664,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [69190] = 16, + [67900] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2554), 1, - aux_sym_command_list_repeat1, - STATE(2595), 1, + STATE(2611), 1, sym_comment, - STATE(3804), 1, - sym__val_number_decimal, - STATE(7434), 1, - sym__command_name, - STATE(7506), 1, - sym_cmd_identifier, - STATE(7510), 1, - sym_val_string, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5300), 6, - 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(5302), 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, - [69280] = 15, + ACTIONS(2131), 13, + anon_sym_GT2, + 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(2137), 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, + [67967] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2596), 1, + ACTIONS(5730), 1, + aux_sym__immediate_decimal_token2, + STATE(2612), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6718), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5065), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1713), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300862,91 +304781,156 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69367] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5075), 1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5660), 1, anon_sym_DQUOTE, - ACTIONS(5664), 1, - sym_raw_string_begin, - STATE(1844), 1, - sym__command_name, - STATE(2597), 1, - sym_comment, - STATE(2740), 1, - sym_cmd_identifier, - STATE(2741), 1, - sym_val_string, - STATE(3736), 1, - sym__val_number_decimal, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5662), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2738), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5656), 6, - 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(5658), 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, - [69454] = 4, + [68036] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2598), 1, + STATE(2613), 1, + sym_comment, + ACTIONS(2431), 13, + anon_sym_GT2, + 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(2433), 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, + [68103] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2614), 1, + sym_comment, + ACTIONS(2462), 13, + anon_sym_GT2, + 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(2464), 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, + [68170] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2615), 1, sym_comment, - ACTIONS(2425), 6, + ACTIONS(1004), 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, - ACTIONS(2427), 48, + anon_sym_DOT, + ACTIONS(1006), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300988,6 +304972,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -300995,50 +304980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69519] = 5, - ACTIONS(3), 1, + [68237] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token2, - STATE(2599), 1, + STATE(2616), 1, sym_comment, - ACTIONS(1787), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1785), 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, + 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, @@ -301047,6 +304999,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(5284), 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, @@ -301055,102 +305043,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, - [69586] = 15, + [68304] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - STATE(2600), 1, + STATE(2617), 1, sym_comment, - STATE(3808), 1, - sym__val_number_decimal, - STATE(5668), 1, - sym_cmd_identifier, - STATE(5669), 1, - sym_val_string, - STATE(5722), 1, - sym__command_name, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5666), 6, - 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(5668), 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, - [69673] = 8, + ACTIONS(2478), 13, + anon_sym_GT2, + 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(2480), 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, + [68371] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5676), 1, - anon_sym_DOT, - STATE(2601), 1, + STATE(2618), 1, sym_comment, - STATE(2677), 1, - aux_sym_cell_path_repeat1, - STATE(2831), 1, - sym_path, - STATE(2889), 1, - sym_cell_path, - ACTIONS(973), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(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, @@ -301159,33 +305125,42 @@ 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(975), 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, + ACTIONS(2510), 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, @@ -301194,235 +305169,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69746] = 15, + [68438] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2602), 1, + STATE(2619), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(5975), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [69833] = 15, + ACTIONS(1883), 13, + anon_sym_GT2, + 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(1885), 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, + [68505] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2603), 1, + STATE(2620), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6675), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [69920] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + 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, + anon_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), 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, + [68572] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2604), 1, + STATE(2621), 1, sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6088), 1, - sym__command_name, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5094), 6, - 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), 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, - [70007] = 4, + ACTIONS(2391), 13, + anon_sym_GT2, + 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(2393), 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, + [68639] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2605), 1, + STATE(2622), 1, sym_comment, - ACTIONS(1004), 6, + ACTIONS(996), 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, - ACTIONS(1006), 48, + anon_sym_DOT, + ACTIONS(998), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301464,6 +305413,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -301471,50 +305421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70072] = 5, - ACTIONS(3), 1, + [68706] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5678), 1, - aux_sym__immediate_decimal_token2, - STATE(2606), 1, + STATE(2623), 1, sym_comment, - ACTIONS(1803), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1801), 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, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301523,6 +305447,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5426), 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301531,199 +305487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [70139] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2607), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6678), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [70226] = 15, + [68779] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2608), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(5003), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [70313] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DOT, - STATE(2609), 1, + STATE(2624), 1, sym_comment, - STATE(2620), 1, - aux_sym_cell_path_repeat1, - STATE(2789), 1, - sym_path, - ACTIONS(988), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(986), 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, + ACTIONS(2520), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301732,6 +305506,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(2522), 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, @@ -301740,92 +305550,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, - aux_sym__unquoted_in_list_token1, - [70384] = 15, + [68846] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2610), 1, + STATE(2625), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7985), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [70471] = 4, + 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, + anon_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), 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, + [68913] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2611), 1, + ACTIONS(5732), 1, + anon_sym_QMARK2, + STATE(2626), 1, sym_comment, - ACTIONS(5680), 6, + ACTIONS(1008), 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, - ACTIONS(5682), 48, + anon_sym_DOT, + ACTIONS(1010), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301874,19 +305677,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70536] = 4, + [68982] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2612), 1, + ACTIONS(5734), 1, + anon_sym_QMARK2, + STATE(2627), 1, sym_comment, - ACTIONS(1000), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1002), 48, + anon_sym_DOT, + ACTIONS(992), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301935,335 +305741,1116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70601] = 4, + [69051] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2613), 1, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + STATE(2628), 1, sym_comment, - ACTIONS(2417), 6, - 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(2419), 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, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 10, + anon_sym_GT2, + 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(5426), 38, + ts_builtin_sym_end, 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, - [70666] = 15, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69128] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2614), 1, + STATE(2629), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(5845), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [70753] = 4, + ACTIONS(2458), 13, + anon_sym_GT2, + 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(2460), 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, + [69195] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2630), 1, sym_comment, - ACTIONS(5684), 6, - 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(5686), 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, + ACTIONS(2391), 13, + anon_sym_GT2, + 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(2393), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [69262] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2631), 1, + sym_comment, + ACTIONS(2454), 13, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70818] = 4, + 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(2456), 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, + [69329] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2616), 1, + STATE(2632), 1, sym_comment, - ACTIONS(996), 6, - 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(998), 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, + ACTIONS(2466), 13, + anon_sym_GT2, + 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(2468), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [69396] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2633), 1, + sym_comment, + ACTIONS(2254), 13, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70883] = 4, + 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(2258), 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, + [69463] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2617), 1, + STATE(2634), 1, sym_comment, - ACTIONS(2193), 6, - 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(2195), 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, + ACTIONS(2242), 13, + anon_sym_GT2, + 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(2244), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [69530] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2635), 1, + sym_comment, + ACTIONS(1949), 13, + anon_sym_GT2, + 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(1951), 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, + [69597] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2636), 1, + sym_comment, + ACTIONS(1830), 13, + anon_sym_GT2, + 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(1838), 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, + [69664] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2637), 1, + sym_comment, + 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, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [69731] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2638), 1, + sym_comment, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2506), 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, + [69798] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2639), 1, + sym_comment, + ACTIONS(2435), 13, + anon_sym_GT2, + 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(2437), 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, + [69865] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + STATE(2640), 1, + sym_comment, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5426), 32, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [69948] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2641), 1, + sym_comment, + ACTIONS(5378), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5374), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5376), 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(5380), 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, + [70019] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2642), 1, + sym_comment, + 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, + anon_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), 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, + [70086] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + STATE(2643), 1, + sym_comment, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5677), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5426), 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_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, + [70171] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5653), 1, + aux_sym__immediate_decimal_token2, + STATE(2644), 1, + sym_comment, + ACTIONS(1671), 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(1669), 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, - [70948] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [70240] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2618), 1, + STATE(2645), 1, sym_comment, - ACTIONS(1777), 6, + ACTIONS(986), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1779), 48, + anon_sym_DOT, + ACTIONS(988), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302305,6 +306892,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -302312,124 +306900,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71013] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [70307] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2619), 1, - sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6042), 1, - sym__command_name, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5094), 6, - 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), 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, - [71100] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - anon_sym_DOT, - STATE(2789), 1, - sym_path, - STATE(2620), 2, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5699), 1, + anon_sym_DOLLAR, + ACTIONS(5701), 1, + anon_sym_LPAREN2, + ACTIONS(5703), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5705), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5707), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5709), 1, + aux_sym__immediate_decimal_token5, + STATE(2646), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(981), 4, + STATE(3215), 1, + sym__immediate_decimal, + STATE(3305), 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, + anon_sym_o_GT, + anon_sym_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(1579), 28, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(979), 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_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70392] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2647), 1, + sym_comment, + ACTIONS(2443), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302438,6 +306991,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(2445), 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, @@ -302446,359 +307035,279 @@ static const 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, - [71169] = 4, + [70459] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2621), 1, + STATE(2648), 1, sym_comment, - ACTIONS(2429), 6, - 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(2431), 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, + ACTIONS(1840), 13, + anon_sym_GT2, + 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(1848), 43, + ts_builtin_sym_end, 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, - [71234] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2622), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7841), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [71321] = 15, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [70526] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2623), 1, + STATE(2649), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7746), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [71408] = 15, + ACTIONS(5416), 13, + anon_sym_GT2, + 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(5414), 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, + [70593] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2624), 1, + STATE(2650), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7832), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [71495] = 4, + 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(2096), 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, + [70660] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2625), 1, + STATE(2651), 1, sym_comment, - 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), 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, + 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, + anon_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), 43, + ts_builtin_sym_end, 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, - [71560] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [70727] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2626), 1, + ACTIONS(5569), 1, + anon_sym_DOT, + STATE(2602), 1, + aux_sym_cell_path_repeat1, + STATE(2652), 1, sym_comment, - ACTIONS(2441), 6, + STATE(2740), 1, + sym_path, + ACTIONS(982), 6, 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(2443), 48, + ACTIONS(984), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302836,8 +307345,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -302846,117 +307353,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71625] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2627), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(8019), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [71712] = 5, - ACTIONS(251), 1, + [70800] = 11, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5634), 1, - aux_sym__immediate_decimal_token2, - STATE(2628), 1, + anon_sym_DOLLAR, + ACTIONS(5636), 1, + anon_sym_LPAREN2, + ACTIONS(5669), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5671), 1, + aux_sym__immediate_decimal_token5, + STATE(2653), 1, sym_comment, - ACTIONS(1645), 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(1647), 35, + STATE(3195), 1, + sym__immediate_decimal, + ACTIONS(1643), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3185), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 45, 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, @@ -302966,12 +307399,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302980,792 +307422,1770 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71779] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2629), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7739), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [71866] = 4, + aux_sym__unquoted_in_list_token1, + [70881] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2630), 1, + STATE(2654), 1, sym_comment, - ACTIONS(1022), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 47, - sym_raw_string_begin, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2409), 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_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, - [71931] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [70948] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2631), 1, + STATE(2655), 1, sym_comment, - ACTIONS(1018), 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(1020), 47, - sym_raw_string_begin, + ACTIONS(2447), 13, + anon_sym_GT2, + 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(2449), 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_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_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [71015] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2656), 1, + sym_comment, + ACTIONS(5286), 13, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71996] = 15, + 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(5284), 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, + [71082] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3677), 1, - anon_sym_DQUOTE, - ACTIONS(3687), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2632), 1, + STATE(2657), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(5003), 1, - sym__command_name, - ACTIONS(3679), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4712), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [72083] = 4, + ACTIONS(2226), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2230), 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, + [71149] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2633), 1, + STATE(2658), 1, sym_comment, - ACTIONS(1026), 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(1028), 47, - sym_raw_string_begin, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2389), 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_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_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, + [71216] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5736), 1, + aux_sym__immediate_decimal_token2, + STATE(2659), 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_LBRACK, - anon_sym_STAR2, + 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, - [72148] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [71285] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2634), 1, + STATE(2660), 1, sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(7427), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5094), 6, - 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), 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, - [72235] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + ACTIONS(5432), 13, + anon_sym_GT2, + 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(5430), 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, + [71352] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2635), 1, + STATE(2661), 1, sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(7179), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5094), 6, - 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), 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, - [72322] = 4, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5428), 13, + anon_sym_GT2, + 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(5426), 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_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, + [71421] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2636), 1, + STATE(2662), 1, sym_comment, - 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5693), 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, + 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, + anon_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), 43, + ts_builtin_sym_end, 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, - [72387] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [71488] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2637), 1, + STATE(2663), 1, sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(6908), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5094), 6, - 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), 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, - [72474] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + ACTIONS(2379), 13, + anon_sym_GT2, + 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(2381), 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, + [71555] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2638), 1, + STATE(2664), 1, sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(7194), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5094), 6, - 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), 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, - [72561] = 15, + ACTIONS(1891), 13, + anon_sym_GT2, + 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(1893), 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, + [71622] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5618), 1, - sym_raw_string_begin, - STATE(1705), 1, - sym__command_name, - STATE(2611), 1, - sym_val_string, - STATE(2639), 1, + STATE(2665), 1, sym_comment, - STATE(2643), 1, - sym_cmd_identifier, - STATE(3800), 1, - sym__val_number_decimal, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5616), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2647), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5610), 6, - 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(5612), 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, - [72648] = 15, + 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, + anon_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), 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, + [71689] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, + STATE(2666), 1, + sym_comment, + ACTIONS(1034), 13, + anon_sym_GT2, + 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(1036), 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, + [71756] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2667), 1, + sym_comment, + ACTIONS(5436), 13, + anon_sym_GT2, + 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(5434), 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, + [71823] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + ACTIONS(5693), 1, + anon_sym_bit_DASHand2, + ACTIONS(5695), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5697), 1, + anon_sym_bit_DASHor2, + ACTIONS(5711), 1, + anon_sym_and2, + STATE(2668), 1, + sym_comment, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5683), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5677), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5426), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, + [71918] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2669), 1, + sym_comment, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2078), 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, + [71985] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2670), 1, + sym_comment, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1935), 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, + [72052] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + STATE(2671), 1, + sym_comment, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5683), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5677), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5426), 26, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_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, + [72139] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2672), 1, + sym_comment, + ACTIONS(2098), 13, + anon_sym_GT2, + 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(2104), 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, + [72206] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_comment, + ACTIONS(2371), 13, + anon_sym_GT2, + 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(2373), 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, + [72273] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2674), 1, + sym_comment, + ACTIONS(1895), 13, + anon_sym_GT2, + 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(1897), 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, + [72340] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5675), 1, + anon_sym_DASH2, + ACTIONS(5689), 1, + anon_sym_PLUS2, + ACTIONS(5693), 1, + anon_sym_bit_DASHand2, + ACTIONS(5695), 1, + anon_sym_bit_DASHxor2, + STATE(2675), 1, + sym_comment, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5683), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5685), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5687), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5691), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5677), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5428), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5426), 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_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, + [72431] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3927), 1, + anon_sym_DOLLAR, + ACTIONS(5573), 1, + anon_sym_LPAREN2, + ACTIONS(5738), 1, + anon_sym_DOT, + ACTIONS(5740), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5742), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5744), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5746), 1, + aux_sym__immediate_decimal_token5, + STATE(2676), 1, + sym_comment, + STATE(3059), 1, + sym__immediate_decimal, + STATE(3058), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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(5077), 1, aux_sym__val_number_decimal_token4, - STATE(2640), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6745), 1, - sym__command_name, - ACTIONS(3903), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_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(1643), 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, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72516] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2677), 1, + sym_comment, + ACTIONS(2482), 13, + anon_sym_GT2, + 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(2484), 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, + [72583] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2678), 1, + sym_comment, + ACTIONS(1957), 13, + anon_sym_GT2, + 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(1959), 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, + [72650] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2679), 1, + sym_comment, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2401), 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, + [72717] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2680), 1, + sym_comment, + 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2397), 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, + [72784] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2681), 1, + sym_comment, + ACTIONS(1022), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5065), 34, + anon_sym_DOT, + ACTIONS(1024), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303800,19 +309220,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72735] = 4, - ACTIONS(251), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [72850] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2641), 1, + ACTIONS(5748), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5750), 1, + aux_sym__immediate_decimal_token2, + STATE(2682), 1, sym_comment, - ACTIONS(5695), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, + ACTIONS(1773), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1771), 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, + [72920] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2683), 1, + sym_comment, + ACTIONS(1018), 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, - ACTIONS(5697), 48, + anon_sym_DOT, + ACTIONS(1020), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303861,20 +309359,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72800] = 4, + [72986] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2642), 1, + STATE(2684), 1, sym_comment, - ACTIONS(5699), 6, + ACTIONS(1004), 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, - ACTIONS(5701), 48, + anon_sym_DOT, + ACTIONS(1006), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303912,30 +309412,121 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, + 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, + [73052] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5752), 1, + anon_sym_DOT, + STATE(2685), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2907), 1, + sym_path, + STATE(2977), 1, + sym_cell_path, + ACTIONS(1761), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1757), 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, - [72865] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [73126] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2643), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2686), 1, sym_comment, - ACTIONS(5703), 6, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8470), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(5705), 48, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303970,33 +309561,46 @@ static const uint16_t ts_small_parse_table[] = { 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, + [73216] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2687), 1, + sym_comment, + STATE(2715), 1, + aux_sym_command_list_repeat1, + STATE(4047), 1, + sym__val_number_decimal, + STATE(7319), 1, + sym__command_name, + STATE(7698), 1, + sym_cmd_identifier, + STATE(7699), 1, + sym_val_string, + ACTIONS(3143), 2, sym__str_single_quotes, sym__str_back_ticks, - [72930] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2644), 1, - sym_comment, - ACTIONS(5044), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5444), 6, 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(5042), 48, - sym_raw_string_begin, + ACTIONS(5446), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304031,57 +309635,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [72995] = 15, + [73306] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(3913), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2645), 1, + STATE(2688), 1, sym_comment, - STATE(3820), 1, + STATE(4002), 1, sym__val_number_decimal, - STATE(4183), 1, + STATE(4413), 1, sym_cmd_identifier, - STATE(4210), 1, + STATE(4433), 1, sym_val_string, - STATE(6460), 1, + STATE(6669), 1, sym__command_name, - ACTIONS(3903), 2, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, + STATE(4608), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(5149), 6, 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(5065), 34, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304116,44 +309709,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73082] = 15, + [73396] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(3913), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2646), 1, + STATE(2689), 1, sym_comment, - STATE(3820), 1, + STATE(4002), 1, sym__val_number_decimal, - STATE(4183), 1, + STATE(4413), 1, sym_cmd_identifier, - STATE(4210), 1, + STATE(4433), 1, sym_val_string, - STATE(6461), 1, + STATE(6108), 1, sym__command_name, - ACTIONS(3903), 2, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, + STATE(4608), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(5149), 6, 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(5065), 34, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304188,20 +309783,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73169] = 4, + [73486] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2647), 1, + ACTIONS(5754), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5756), 1, + aux_sym__immediate_decimal_token2, + STATE(2690), 1, sym_comment, - ACTIONS(1008), 6, + ACTIONS(1661), 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(1663), 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, + [73556] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5758), 1, + anon_sym_QMARK2, + STATE(2691), 1, + sym_comment, + ACTIONS(1008), 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, - ACTIONS(1010), 48, + anon_sym_DOT, + ACTIONS(1010), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304239,8 +309902,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -304249,20 +309910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73234] = 4, + [73624] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2648), 1, + STATE(2692), 1, sym_comment, - ACTIONS(2417), 6, + ACTIONS(996), 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, - ACTIONS(2419), 48, + anon_sym_DOT, + ACTIONS(998), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304300,9 +309963,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304310,44 +309972,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73299] = 15, + [73690] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(3913), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2649), 1, + STATE(2693), 1, sym_comment, - STATE(3820), 1, + STATE(4002), 1, sym__val_number_decimal, - STATE(4183), 1, + STATE(4413), 1, sym_cmd_identifier, - STATE(4210), 1, + STATE(4433), 1, sym_val_string, - STATE(8132), 1, + STATE(6108), 1, sym__command_name, - ACTIONS(3903), 2, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, + STATE(4608), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(5149), 6, 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(5065), 34, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304382,19 +310046,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73386] = 4, + [73780] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2650), 1, + ACTIONS(5699), 1, + anon_sym_DOLLAR, + ACTIONS(5701), 1, + anon_sym_LPAREN2, + ACTIONS(5760), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5762), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5764), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token5, + STATE(2694), 1, + sym_comment, + STATE(3292), 1, + sym__immediate_decimal, + STATE(3254), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 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(1685), 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, + [73862] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2695), 1, sym_comment, - ACTIONS(1056), 6, + ACTIONS(1669), 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, - ACTIONS(1058), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304430,12 +310168,9 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, @@ -304443,44 +310178,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73451] = 15, + [73928] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, + ACTIONS(3141), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3147), 1, sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2651), 1, + STATE(2696), 1, sym_comment, - STATE(3820), 1, + STATE(2715), 1, + aux_sym_command_list_repeat1, + STATE(4047), 1, sym__val_number_decimal, - STATE(4183), 1, + STATE(7649), 1, + sym__command_name, + STATE(7698), 1, sym_cmd_identifier, - STATE(4210), 1, + STATE(7699), 1, sym_val_string, - STATE(7717), 1, - sym__command_name, - ACTIONS(3903), 2, + ACTIONS(3143), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, + STATE(5662), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(5444), 6, 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(5065), 34, + ACTIONS(5446), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304515,20 +310252,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73538] = 4, + [74018] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2652), 1, + ACTIONS(5768), 1, + anon_sym_QMARK2, + STATE(2697), 1, sym_comment, - ACTIONS(5056), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5054), 48, + anon_sym_DOT, + 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, @@ -304566,8 +310307,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -304576,20 +310315,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73603] = 4, + [74086] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2653), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2698), 1, sym_comment, - ACTIONS(5707), 6, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6669), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(5709), 48, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304624,58 +310389,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73668] = 5, - ACTIONS(251), 1, + [74176] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5711), 1, - aux_sym__immediate_decimal_token2, - STATE(2654), 1, + STATE(2699), 1, sym_comment, - ACTIONS(1745), 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(1747), 35, + 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_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, @@ -304685,12 +310426,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304699,44 +310449,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, - [73735] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [74242] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2655), 1, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(5770), 1, + sym_filesize_unit, + ACTIONS(5772), 1, + sym_duration_unit, + ACTIONS(5774), 1, + aux_sym_unquoted_token2, + STATE(2700), 1, sym_comment, - STATE(3812), 1, - sym__val_number_decimal, - STATE(6274), 1, - sym_cmd_identifier, - STATE(6275), 1, - sym_val_string, - STATE(7195), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5094), 6, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 6, 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), 34, + ACTIONS(1699), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304771,44 +310510,162 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73822] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(3905), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [74318] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5752), 1, + anon_sym_DOT, + STATE(2701), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2907), 1, + sym_path, + STATE(2942), 1, + sym_cell_path, + ACTIONS(971), 4, sym_raw_string_begin, - ACTIONS(5075), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(969), 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, - ACTIONS(5077), 1, aux_sym__val_number_decimal_token4, - STATE(2656), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6565), 1, - sym__command_name, - ACTIONS(3903), 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, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [74392] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5776), 1, + anon_sym_DOT, + ACTIONS(5778), 1, + aux_sym__immediate_decimal_token2, + STATE(2702), 1, + sym_comment, + ACTIONS(1669), 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(1671), 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, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__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, + [74462] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2703), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5065), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1713), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304843,44 +310700,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73909] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, aux_sym__val_number_decimal_token4, - STATE(2657), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(7729), 1, - sym__command_name, - ACTIONS(3903), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + [74528] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2704), 1, + sym_comment, + ACTIONS(1767), 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, - ACTIONS(5065), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1769), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304915,44 +310762,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73996] = 15, + 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, + [74594] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, + ACTIONS(3141), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3147), 1, sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2658), 1, + STATE(2705), 1, sym_comment, - STATE(3820), 1, + STATE(2715), 1, + aux_sym_command_list_repeat1, + STATE(4047), 1, sym__val_number_decimal, - STATE(4183), 1, + STATE(7698), 1, sym_cmd_identifier, - STATE(4210), 1, + STATE(7699), 1, sym_val_string, - STATE(6425), 1, + STATE(7771), 1, sym__command_name, - ACTIONS(3903), 2, + ACTIONS(3143), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, + STATE(5662), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(5444), 6, 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(5065), 34, + ACTIONS(5446), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304987,44 +310846,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74083] = 15, + [74684] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(5699), 1, + anon_sym_DOLLAR, + ACTIONS(5701), 1, + anon_sym_LPAREN2, + ACTIONS(5760), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5762), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5764), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token5, + STATE(2706), 1, + sym_comment, + STATE(3303), 1, + sym__immediate_decimal, + STATE(3302), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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(5077), 1, aux_sym__val_number_decimal_token4, - STATE(2659), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(8112), 1, - sym__command_name, - ACTIONS(3903), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_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(1643), 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, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74766] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2707), 1, + sym_comment, + 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5065), 34, + anon_sym_DOT, + ACTIONS(1016), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305059,28 +310965,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74170] = 8, - ACTIONS(251), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74832] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5676), 1, + ACTIONS(5780), 1, anon_sym_DOT, - STATE(2660), 1, + ACTIONS(5782), 1, + aux_sym__immediate_decimal_token2, + STATE(2708), 1, sym_comment, - STATE(2677), 1, - aux_sym_cell_path_repeat1, - STATE(2831), 1, - sym_path, - STATE(2886), 1, - sym_cell_path, - ACTIONS(1777), 17, + ACTIONS(1781), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1779), 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, @@ -305089,20 +311032,44 @@ 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(1779), 33, + aux_sym__unquoted_in_list_token2, + [74902] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2709), 1, + sym_comment, + ACTIONS(1671), 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(1669), 48, 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, @@ -305112,10 +311079,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -305124,44 +311102,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, - [74243] = 15, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [74968] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2661), 1, + STATE(2710), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(8038), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(1000), 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, - ACTIONS(5065), 34, + anon_sym_DOT, + ACTIONS(1002), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305196,188 +311154,260 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74330] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, + sym__newline, + anon_sym_SEMI, + 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(5077), 1, aux_sym__val_number_decimal_token4, - STATE(2662), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(8124), 1, - sym__command_name, - ACTIONS(3903), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + [75034] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5699), 1, + anon_sym_DOLLAR, + ACTIONS(5701), 1, + anon_sym_LPAREN2, + ACTIONS(5760), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5762), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5764), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token5, + STATE(2711), 1, + sym_comment, + STATE(3259), 1, + sym__immediate_decimal, + STATE(3258), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1739), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [74417] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3901), 1, + 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(1741), 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, - ACTIONS(3905), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75116] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2712), 1, + sym_comment, + ACTIONS(1769), 7, sym_raw_string_begin, - ACTIONS(5075), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1767), 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, - ACTIONS(5077), 1, aux_sym__val_number_decimal_token4, - STATE(2663), 1, - sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, - sym_cmd_identifier, - STATE(4210), 1, - sym_val_string, - STATE(6527), 1, - sym__command_name, - ACTIONS(3903), 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, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5073), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [75182] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5699), 1, + anon_sym_DOLLAR, + ACTIONS(5701), 1, + anon_sym_LPAREN2, + ACTIONS(5760), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5762), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5764), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token5, + STATE(2713), 1, + sym_comment, + STATE(3301), 1, + sym__immediate_decimal, + STATE(3280), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1743), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 6, - 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(5065), 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, - [74504] = 15, + 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(1745), 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, + [75264] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(5075), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2664), 1, + ACTIONS(5788), 1, + anon_sym_DQUOTE, + ACTIONS(5792), 1, + sym_raw_string_begin, + STATE(1751), 1, + sym__command_name, + STATE(2714), 1, sym_comment, - STATE(3820), 1, - sym__val_number_decimal, - STATE(4183), 1, + STATE(2727), 1, sym_cmd_identifier, - STATE(4210), 1, + STATE(2728), 1, sym_val_string, - STATE(6719), 1, - sym__command_name, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, + STATE(4045), 1, + sym__val_number_decimal, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4386), 2, + ACTIONS(5790), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2754), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5063), 6, + ACTIONS(5784), 6, 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(5065), 34, + ACTIONS(5786), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305412,109 +311442,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74591] = 8, + [75354] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5676), 1, - anon_sym_DOT, - STATE(2665), 1, - sym_comment, - STATE(2677), 1, - aux_sym_cell_path_repeat1, - STATE(2831), 1, - sym_path, - STATE(2903), 1, - sym_cell_path, - ACTIONS(1771), 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(1775), 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(5803), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5806), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [74664] = 15, - ACTIONS(109), 1, + ACTIONS(5809), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(5815), 1, sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5077), 1, - aux_sym__val_number_decimal_token4, - STATE(2666), 1, - sym_comment, - STATE(3812), 1, + STATE(4047), 1, sym__val_number_decimal, - STATE(6274), 1, + STATE(7698), 1, sym_cmd_identifier, - STATE(6275), 1, + STATE(7699), 1, sym_val_string, - STATE(6894), 1, + STATE(8075), 1, sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5073), 2, + ACTIONS(5800), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2135), 2, + ACTIONS(5812), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2715), 2, + sym_comment, + aux_sym_command_list_repeat1, + STATE(5662), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5094), 6, + ACTIONS(5794), 6, 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), 34, + ACTIONS(5797), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305549,18 +311515,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74751] = 4, + [75442] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2667), 1, + ACTIONS(5752), 1, + anon_sym_DOT, + STATE(2716), 1, sym_comment, - ACTIONS(1826), 5, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2907), 1, + sym_path, + STATE(2982), 1, + sym_cell_path, + ACTIONS(1765), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1824), 48, + ACTIONS(1763), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305608,29 +311581,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [74815] = 8, + [75516] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2668), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5788), 1, + anon_sym_DQUOTE, + ACTIONS(5792), 1, + sym_raw_string_begin, + STATE(1751), 1, + sym__command_name, + STATE(2717), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2947), 1, - sym_cell_path, - ACTIONS(1885), 6, + STATE(2727), 1, + sym_cmd_identifier, + STATE(2728), 1, + sym_val_string, + STATE(4045), 1, + sym__val_number_decimal, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5790), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2754), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5784), 6, 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(1887), 43, - sym_raw_string_begin, + ACTIONS(5786), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305665,29 +311655,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74887] = 4, + [75606] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2669), 1, + STATE(2718), 1, sym_comment, - ACTIONS(5695), 6, + ACTIONS(1661), 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, - ACTIONS(5697), 47, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1663), 45, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305722,10 +311707,9 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, @@ -305733,179 +311717,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74951] = 30, + [75672] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, + ACTIONS(3499), 1, aux_sym_record_entry_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5614), 1, + ACTIONS(3913), 1, anon_sym_DQUOTE, - ACTIONS(5618), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - ACTIONS(5715), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOLLAR, - ACTIONS(5719), 1, - anon_sym_DOT_DOT, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5727), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5731), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2648), 1, - sym__inter_single_quotes, - STATE(2670), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2719), 1, sym_comment, - STATE(6020), 1, + STATE(4002), 1, sym__val_number_decimal, - STATE(7920), 1, - sym_val_bool, - STATE(8118), 1, - sym__val_range, - STATE(8123), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5616), 2, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8470), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5721), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2647), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5723), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1704), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [75067] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5733), 1, - anon_sym_DOT_DOT2, - ACTIONS(5737), 1, - sym_filesize_unit, - ACTIONS(5739), 1, - sym_duration_unit, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token2, - STATE(2671), 1, - sym_comment, - ACTIONS(5735), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 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, - [75141] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2672), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2955), 1, - sym_cell_path, - ACTIONS(1901), 6, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(1903), 43, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305940,36 +311791,46 @@ static const uint16_t ts_small_parse_table[] = { 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, + [75762] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2715), 1, + aux_sym_command_list_repeat1, + STATE(2720), 1, + sym_comment, + STATE(4047), 1, + sym__val_number_decimal, + STATE(7698), 1, + sym_cmd_identifier, + STATE(7699), 1, + sym_val_string, + STATE(7735), 1, + sym__command_name, + ACTIONS(3143), 2, sym__str_single_quotes, sym__str_back_ticks, - [75213] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2673), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2958), 1, - sym_cell_path, - ACTIONS(1905), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5444), 6, 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(1907), 43, - sym_raw_string_begin, + ACTIONS(5446), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306004,40 +311865,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75285] = 7, + [75852] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5745), 1, - anon_sym_RBRACK, - ACTIONS(5747), 1, - sym__entry_separator, - ACTIONS(5749), 1, - sym_raw_string_begin, - STATE(2674), 1, + STATE(2721), 1, sym_comment, - STATE(2725), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5743), 49, + ACTIONS(1663), 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(1661), 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_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, @@ -306055,9 +311909,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, @@ -306075,302 +311926,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [75355] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [75918] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5747), 1, - sym__entry_separator, - ACTIONS(5749), 1, - sym_raw_string_begin, - ACTIONS(5751), 1, - anon_sym_RBRACK, - STATE(2675), 1, + STATE(2722), 1, sym_comment, - STATE(2725), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5743), 49, + ACTIONS(986), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(988), 48, + 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_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, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - 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, - anon_sym_o_GT_GT, - 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, - [75425] = 30, + [75984] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5614), 1, + ACTIONS(3913), 1, anon_sym_DQUOTE, - ACTIONS(5618), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - ACTIONS(5715), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOLLAR, - ACTIONS(5719), 1, - anon_sym_DOT_DOT, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5727), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5731), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2648), 1, - sym__inter_single_quotes, - STATE(2676), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2723), 1, sym_comment, - STATE(6020), 1, + STATE(4002), 1, sym__val_number_decimal, - STATE(7920), 1, - sym_val_bool, - STATE(8118), 1, - sym__val_range, - STATE(8123), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5616), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5721), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2647), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5723), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1704), 5, - sym_expr_parenthesized, - sym_val_variable, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [75541] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5676), 1, - anon_sym_DOT, - STATE(2677), 1, - sym_comment, - STATE(2682), 1, - aux_sym_cell_path_repeat1, - STATE(2831), 1, - sym_path, - ACTIONS(986), 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(988), 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, + STATE(8646), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75611] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5753), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5755), 1, - aux_sym__immediate_decimal_token2, - STATE(2678), 1, - sym_comment, - ACTIONS(1793), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 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, - [75679] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2679), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2983), 1, - sym_cell_path, - ACTIONS(973), 6, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(975), 43, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306405,96 +312061,44 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75751] = 4, + [76071] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2680), 1, - sym_comment, - ACTIONS(1645), 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(1647), 35, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, 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(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, + STATE(2724), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8560), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75815] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2681), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2980), 1, - sym_cell_path, - ACTIONS(1893), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(1895), 43, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306529,461 +312133,116 @@ static const uint16_t ts_small_parse_table[] = { 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, + [76158] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75887] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5757), 1, - anon_sym_DOT, - STATE(2831), 1, - sym_path, - STATE(2682), 2, + STATE(2725), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 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(981), 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, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7977), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75955] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5760), 1, - anon_sym_DOT, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token2, - STATE(2683), 1, - sym_comment, - ACTIONS(1785), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 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, - [76023] = 4, - ACTIONS(3), 1, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, + 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(5212), 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, + [76245] = 15, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2684), 1, - sym_comment, - ACTIONS(1787), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1785), 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, + ACTIONS(3913), 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, - [76087] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5747), 1, - sym__entry_separator, - ACTIONS(5749), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - ACTIONS(5764), 1, - anon_sym_RBRACK, - STATE(2685), 1, - sym_comment, - STATE(2725), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5743), 49, - 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_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, - anon_sym_o_GT_GT, - 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, - [76157] = 33, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2617), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2619), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3109), 1, - anon_sym_LBRACK, - ACTIONS(3113), 1, - anon_sym_LPAREN, - ACTIONS(3115), 1, - anon_sym_DOLLAR, - ACTIONS(3127), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3129), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3131), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3133), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3139), 1, - anon_sym_0b, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5766), 1, - anon_sym_LBRACE, - ACTIONS(5768), 1, - anon_sym_DOT_DOT, - ACTIONS(5772), 1, - anon_sym_null, - ACTIONS(5776), 1, - sym_val_date, - STATE(2686), 1, + STATE(2726), 1, sym_comment, - STATE(5692), 1, + STATE(4002), 1, sym__val_number_decimal, - STATE(5979), 1, - sym_val_variable, - STATE(6123), 1, - sym_expr_parenthesized, - STATE(6854), 1, - sym__inter_single_quotes, - STATE(6856), 1, - sym__inter_double_quotes, - STATE(7244), 1, - sym__val_number, - STATE(7685), 1, - sym_block, - ACTIONS(3141), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3147), 2, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(5139), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5770), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5774), 2, - anon_sym_true, - anon_sym_false, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7690), 2, - sym_val_range, - sym__value, - ACTIONS(3135), 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(7168), 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, - [76279] = 33, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2617), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2619), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3109), 1, - anon_sym_LBRACK, - ACTIONS(3113), 1, - anon_sym_LPAREN, - ACTIONS(3115), 1, - anon_sym_DOLLAR, - ACTIONS(3127), 1, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - ACTIONS(3129), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3131), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3133), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3139), 1, - anon_sym_0b, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, - sym_raw_string_begin, - ACTIONS(5766), 1, - anon_sym_LBRACE, - ACTIONS(5768), 1, - anon_sym_DOT_DOT, - ACTIONS(5772), 1, - anon_sym_null, - ACTIONS(5776), 1, - sym_val_date, - STATE(2687), 1, - sym_comment, - STATE(5692), 1, - sym__val_number_decimal, - STATE(5979), 1, - sym_val_variable, - STATE(6127), 1, - sym_expr_parenthesized, - STATE(6854), 1, - sym__inter_single_quotes, - STATE(6856), 1, - sym__inter_double_quotes, - STATE(7244), 1, - sym__val_number, - STATE(7700), 1, - sym_block, - ACTIONS(3141), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3147), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5770), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5774), 2, - anon_sym_true, - anon_sym_false, - STATE(5550), 2, + STATE(4608), 2, sym__raw_str, sym__str_double_quotes, - STATE(7507), 2, - sym_val_range, - sym__value, - ACTIONS(3135), 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(7168), 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, - [76401] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2688), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2960), 1, - sym_cell_path, - ACTIONS(1917), 6, + ACTIONS(5149), 6, 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(1919), 43, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307018,35 +312277,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76473] = 8, + [76332] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2689), 1, + STATE(2727), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2959), 1, - sym_cell_path, - ACTIONS(1909), 6, + ACTIONS(5818), 6, 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, + ACTIONS(5820), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -307082,7 +312325,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -307090,21 +312338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76545] = 4, + [76397] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2690), 1, + STATE(2728), 1, sym_comment, - ACTIONS(1056), 6, + ACTIONS(5822), 6, 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(1058), 47, + ACTIONS(5824), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307142,6 +312389,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -307150,27 +312399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76609] = 8, + [76462] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2691), 1, + STATE(2729), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2961), 1, - sym_cell_path, - ACTIONS(1921), 6, + ACTIONS(5126), 6, 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(1923), 43, + ACTIONS(5124), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -307206,7 +312447,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -307214,27 +312460,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76681] = 8, + [76527] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2692), 1, + STATE(2730), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2962), 1, - sym_cell_path, - ACTIONS(1925), 6, + ACTIONS(5138), 6, 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, + ACTIONS(5136), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -307270,7 +312508,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -307278,28 +312521,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76753] = 8, + [76592] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2693), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2731), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2963), 1, - sym_cell_path, - ACTIONS(1929), 6, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8271), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(1931), 43, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307334,29 +312593,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [76679] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2732), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8564), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - [76825] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2694), 1, - sym_comment, - ACTIONS(1000), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(1002), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307391,99 +312665,44 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76889] = 4, - ACTIONS(3), 1, + [76766] = 15, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2695), 1, - sym_comment, - ACTIONS(1795), 5, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1793), 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(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2733), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6770), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76953] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2696), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2964), 1, - sym_cell_path, - ACTIONS(1933), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307518,220 +312737,116 @@ static const uint16_t ts_small_parse_table[] = { 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, + [76853] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [77025] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2697), 1, - sym_comment, - ACTIONS(1803), 5, + ACTIONS(123), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1801), 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(251), 1, + anon_sym_POUND, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2734), 1, + sym_comment, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6506), 1, + sym__command_name, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [77089] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5778), 1, - anon_sym_DOT_DOT2, - STATE(2698), 1, - sym_comment, - ACTIONS(1836), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5780), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 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, + ACTIONS(5159), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [77161] = 4, - ACTIONS(3), 1, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, + 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(5212), 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, + [76940] = 15, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2699), 1, - sym_comment, - ACTIONS(1010), 4, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1008), 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2735), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8257), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77225] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2700), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2965), 1, - sym_cell_path, - ACTIONS(1937), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, 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(1939), 43, - sym_raw_string_begin, + ACTIONS(5151), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307766,35 +312881,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77297] = 8, + [77027] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2701), 1, + STATE(2736), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2966), 1, - sym_cell_path, - ACTIONS(1941), 6, + ACTIONS(2391), 6, 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(1943), 43, + ACTIONS(2393), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -307830,89 +312929,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77369] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2702), 1, - sym_comment, - ACTIONS(1006), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1004), 49, + 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_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, + 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, - aux_sym__val_number_token1, - aux_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, - [77433] = 4, + [77092] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2703), 1, + STATE(2737), 1, sym_comment, - ACTIONS(5044), 6, + ACTIONS(2391), 6, 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(5042), 47, + ACTIONS(2393), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307950,6 +312993,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -307958,21 +313003,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77497] = 4, + [77157] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2704), 1, + STATE(2738), 1, sym_comment, - ACTIONS(2437), 6, + 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(2439), 47, + ACTIONS(2405), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308010,6 +313054,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -308018,21 +313064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77561] = 4, + [77222] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2705), 1, + STATE(2739), 1, sym_comment, - ACTIONS(2441), 6, + ACTIONS(2439), 6, 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(2443), 47, + ACTIONS(2441), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308070,6 +313115,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -308078,88 +313125,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77625] = 4, - ACTIONS(3), 1, + [77287] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2706), 1, + STATE(2740), 1, sym_comment, - ACTIONS(998), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(996), 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, - 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, - [77689] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2707), 1, - sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2968), 1, - sym_cell_path, - ACTIONS(1945), 6, + ACTIONS(1022), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1947), 43, + anon_sym_DOT, + ACTIONS(1024), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308194,7 +313175,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -308202,27 +313186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77761] = 8, + [77352] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2708), 1, + STATE(2741), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2969), 1, - sym_cell_path, - ACTIONS(1949), 6, + ACTIONS(2474), 6, 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(1951), 43, + ACTIONS(2476), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308258,95 +313234,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77833] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2709), 1, - sym_comment, - ACTIONS(1002), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1000), 49, + 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_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, + 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, - aux_sym__val_number_token1, - aux_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, - [77897] = 8, + [77417] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2710), 1, + STATE(2742), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2928), 1, - sym_cell_path, - ACTIONS(1953), 6, + 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1955), 43, + ACTIONS(2480), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308382,7 +313295,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -308390,28 +313308,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77969] = 8, + [77482] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2711), 1, + STATE(2743), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2971), 1, - sym_cell_path, - ACTIONS(2064), 6, + ACTIONS(1018), 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, - ACTIONS(2066), 43, + anon_sym_DOT, + ACTIONS(1020), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308446,7 +313358,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -308454,19 +313369,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78041] = 4, + [77547] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2712), 1, + STATE(2744), 1, sym_comment, - ACTIONS(2193), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2195), 47, + anon_sym_DOT, + ACTIONS(1016), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -308514,21 +313430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78105] = 4, + [77612] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2713), 1, + STATE(2745), 1, sym_comment, - ACTIONS(5707), 6, + ACTIONS(5826), 6, 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(5709), 47, + ACTIONS(5828), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308566,6 +313481,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -308574,27 +313491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78169] = 8, + [77677] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2714), 1, + STATE(2746), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2972), 1, - sym_cell_path, - ACTIONS(1957), 6, + ACTIONS(5830), 6, 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(1959), 43, + ACTIONS(5832), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308630,7 +313539,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -308638,27 +313552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78241] = 8, + [77742] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2715), 1, + STATE(2747), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2973), 1, - sym_cell_path, - ACTIONS(1961), 6, + ACTIONS(1763), 6, 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(1963), 43, + ACTIONS(1765), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308694,93 +313600,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78313] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(5782), 1, - anon_sym_DOT_DOT2, - STATE(2716), 1, - sym_comment, - ACTIONS(1851), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5784), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1843), 46, + 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_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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, - aux_sym__val_number_token1, - aux_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, - [78385] = 4, + [77807] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2717), 1, + STATE(2748), 1, sym_comment, - ACTIONS(996), 6, + ACTIONS(5834), 6, 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(998), 47, + ACTIONS(5836), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308818,6 +313664,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -308826,27 +313674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78449] = 8, + [77872] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2718), 1, + STATE(2749), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2974), 1, - sym_cell_path, - ACTIONS(1965), 6, + ACTIONS(5838), 6, 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(1967), 43, + ACTIONS(5840), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -308882,150 +313722,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78521] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5786), 1, - anon_sym_QMARK2, - STATE(2719), 1, - sym_comment, - ACTIONS(992), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(990), 48, + 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, - 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, - [78587] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2720), 1, - sym_comment, - ACTIONS(1637), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_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(1639), 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, - [78651] = 4, + [77937] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2721), 1, + STATE(2750), 1, sym_comment, - ACTIONS(5699), 6, + ACTIONS(2123), 6, 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(5701), 47, + ACTIONS(2125), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309063,6 +313786,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -309071,21 +313796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78715] = 4, + [78002] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2722), 1, + STATE(2751), 1, sym_comment, - ACTIONS(5691), 6, + ACTIONS(5842), 6, 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(5693), 47, + ACTIONS(5844), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309123,6 +313847,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -309131,82 +313857,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78779] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5788), 1, - anon_sym_QMARK2, - STATE(2723), 1, - sym_comment, - ACTIONS(1014), 4, + [78067] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1012), 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, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2752), 1, + sym_comment, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7780), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [78845] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2724), 1, - sym_comment, - ACTIONS(1004), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, 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(1006), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5212), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309241,309 +313929,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [78154] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78909] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2321), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(5790), 1, - sym__entry_separator, - STATE(2725), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2316), 50, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_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, - anon_sym_o_GT_GT, - 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, - [78975] = 31, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3331), 1, - aux_sym_unquoted_token1, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(4143), 1, - anon_sym_DOT_DOT, - ACTIONS(4309), 1, - anon_sym_DOLLAR, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5793), 1, - anon_sym_LPAREN, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2726), 1, + STATE(2753), 1, sym_comment, - STATE(5941), 1, + STATE(4060), 1, sym__val_number_decimal, - STATE(6345), 1, - sym_unquoted, - STATE(7747), 1, - sym__val_range, - STATE(7793), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4145), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5795), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6344), 4, - sym_expr_parenthesized, - sym_val_variable, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, sym_val_string, - sym_val_interpolated, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [79093] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5747), 1, - sym__entry_separator, - ACTIONS(5749), 1, - sym_raw_string_begin, - ACTIONS(5797), 1, - anon_sym_RBRACK, - STATE(2725), 1, - aux_sym__multiple_types_repeat1, - STATE(2727), 1, - sym_comment, - ACTIONS(5743), 49, - 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_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, + STATE(7373), 1, + sym__command_name, + ACTIONS(111), 2, 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, - [79163] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5801), 1, - anon_sym_RBRACK, - ACTIONS(5804), 1, - anon_sym_DOT, - ACTIONS(5806), 1, - sym_raw_string_begin, - STATE(2728), 1, - sym_comment, - STATE(6023), 1, - aux_sym_cell_path_repeat1, - STATE(6814), 1, - sym_path, - STATE(7206), 1, - sym_cell_path, - ACTIONS(1893), 2, - sym__entry_separator, - sym__table_head_separator, - ACTIONS(5799), 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, + ACTIONS(5159), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [79239] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2729), 1, - sym_comment, - ACTIONS(5056), 6, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, 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(5054), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5212), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309578,160 +314001,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79303] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5808), 1, - anon_sym_DOT, - ACTIONS(5810), 1, - aux_sym__immediate_decimal_token2, - STATE(2730), 1, - sym_comment, - ACTIONS(1787), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1785), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [79371] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2731), 1, - sym_comment, - ACTIONS(1745), 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(1747), 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, - [79435] = 8, + [78241] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2732), 1, + STATE(2754), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2975), 1, - sym_cell_path, - ACTIONS(1969), 6, + ACTIONS(1000), 6, 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(1971), 43, + ACTIONS(1002), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309767,91 +314049,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79507] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5812), 1, sym__newline, - STATE(2733), 1, - sym_comment, - ACTIONS(5815), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1308), 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(1306), 35, - sym_raw_string_begin, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79575] = 4, + [78306] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2734), 1, + STATE(2755), 1, sym_comment, - ACTIONS(2417), 6, + ACTIONS(1004), 6, 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(2419), 47, + ACTIONS(1006), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309889,6 +314113,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -309897,27 +314123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79639] = 8, + [78371] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2735), 1, + STATE(2756), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2981), 1, - sym_cell_path, - ACTIONS(1897), 6, + ACTIONS(996), 6, 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(1899), 43, + ACTIONS(998), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309953,7 +314171,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -309961,21 +314184,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79711] = 4, + [78436] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2736), 1, + STATE(2757), 1, sym_comment, - ACTIONS(5684), 6, + ACTIONS(986), 6, 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(5686), 47, + ACTIONS(988), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310013,6 +314235,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -310021,28 +314245,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79775] = 8, + [78501] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2737), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2758), 1, sym_comment, - STATE(2792), 1, - aux_sym_cell_path_repeat1, - STATE(2904), 1, - sym_path, - STATE(2951), 1, - sym_cell_path, - ACTIONS(1889), 6, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7588), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, 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(1891), 43, - sym_raw_string_begin, + ACTIONS(5212), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310077,209 +314317,174 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79847] = 4, + [78588] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2738), 1, + ACTIONS(5846), 1, + anon_sym_DOT, + STATE(2759), 1, sym_comment, - ACTIONS(1008), 6, - 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(1010), 47, + STATE(2807), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(3013), 1, + sym_cell_path, + ACTIONS(1757), 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(1761), 33, 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, + 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, - [79911] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78661] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2739), 1, + ACTIONS(5846), 1, + anon_sym_DOT, + STATE(2760), 1, sym_comment, - ACTIONS(2425), 6, - 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(2427), 47, + STATE(2807), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(3016), 1, + sym_cell_path, + ACTIONS(1763), 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(1765), 33, 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, + 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, - [79975] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78734] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(2740), 1, - sym_comment, - ACTIONS(5703), 6, - 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(5705), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2761), 1, + sym_comment, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7657), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - [80039] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2741), 1, - sym_comment, - ACTIONS(5680), 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, 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(5682), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5212), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310314,23 +314519,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80103] = 4, + [78821] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2742), 1, + ACTIONS(5846), 1, + anon_sym_DOT, + STATE(2762), 1, sym_comment, - ACTIONS(1781), 18, + STATE(2807), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(3057), 1, + sym_cell_path, + ACTIONS(969), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -310348,8 +314550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1783), 35, + ACTIONS(971), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310371,8 +314572,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -310385,141 +314584,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, - [80167] = 4, + [78894] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(2743), 1, - sym_comment, - ACTIONS(2429), 6, - 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(2431), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2763), 1, + sym_comment, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + STATE(7669), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - [80231] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2744), 1, - sym_comment, - ACTIONS(2417), 6, - 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(2419), 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, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80295] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2745), 1, - sym_comment, - ACTIONS(1777), 6, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, 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(1779), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5212), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310554,46 +314656,45 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80359] = 6, - ACTIONS(3), 1, + [78981] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5817), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5819), 1, + ACTIONS(5778), 1, aux_sym__immediate_decimal_token2, - STATE(2746), 1, + STATE(2764), 1, sym_comment, - ACTIONS(1795), 4, + ACTIONS(1669), 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(1671), 35, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1793), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -310603,21 +314704,12 @@ static const uint16_t ts_small_parse_table[] = { 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_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310626,76 +314718,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [80427] = 31, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [79048] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3331), 1, - aux_sym_unquoted_token1, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(4143), 1, - anon_sym_DOT_DOT, - ACTIONS(4309), 1, - anon_sym_DOLLAR, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5793), 1, - anon_sym_LPAREN, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2747), 1, + ACTIONS(5848), 1, + aux_sym__immediate_decimal_token2, + STATE(2765), 1, sym_comment, - STATE(5941), 1, - sym__val_number_decimal, - STATE(6345), 1, - sym_unquoted, - STATE(7747), 1, - sym__val_range, - STATE(7793), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4145), 2, + ACTIONS(1711), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5795), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6344), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2697), 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, @@ -310704,41 +314742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [80545] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5747), 1, - sym__entry_separator, - ACTIONS(5749), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1713), 35, sym_raw_string_begin, - STATE(2725), 1, - aux_sym__multiple_types_repeat1, - STATE(2748), 1, - sym_comment, - ACTIONS(5743), 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_DOT_DOT_DOT_LPAREN, - 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, - 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, @@ -310748,110 +314766,12 @@ static const uint16_t ts_small_parse_table[] = { 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_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [80612] = 30, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3331), 1, - aux_sym_unquoted_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(4143), 1, - anon_sym_DOT_DOT, - ACTIONS(4309), 1, - anon_sym_DOLLAR, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5793), 1, - anon_sym_LPAREN, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(2749), 1, - sym_comment, - STATE(5941), 1, - sym__val_number_decimal, - STATE(6345), 1, - sym_unquoted, - STATE(7747), 1, - sym__val_range, - STATE(7793), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4145), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5795), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6344), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310860,23 +314780,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, - [80727] = 8, + [79115] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, + ACTIONS(5752), 1, anon_sym_DOT, - STATE(2750), 1, + STATE(2766), 1, sym_comment, - STATE(2845), 1, + STATE(2767), 1, aux_sym_cell_path_repeat1, - STATE(2944), 1, + STATE(2907), 1, sym_path, - STATE(3026), 1, - sym_cell_path, - ACTIONS(1951), 2, + ACTIONS(984), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1949), 46, + ACTIONS(982), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310884,6 +314804,7 @@ 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, @@ -310923,104 +314844,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, - [80798] = 29, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5660), 1, - anon_sym_DQUOTE, - ACTIONS(5664), 1, - sym_raw_string_begin, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5823), 1, - anon_sym_LPAREN, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT, - ACTIONS(5833), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5835), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5837), 1, - aux_sym_unquoted_token1, - STATE(2734), 1, - sym__inter_single_quotes, - STATE(2744), 1, - sym__inter_double_quotes, - STATE(2751), 1, - sym_comment, - STATE(5970), 1, - sym__val_number_decimal, - STATE(7759), 1, - sym__unquoted_anonymous_prefix, - STATE(7903), 1, - sym__val_range, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5662), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5829), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2738), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5831), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1765), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [80911] = 6, + [79186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5839), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token2, - STATE(2752), 1, + ACTIONS(5850), 1, + anon_sym_DOT, + STATE(2907), 1, + sym_path, + STATE(2767), 2, sym_comment, - ACTIONS(1795), 3, + aux_sym_cell_path_repeat1, + ACTIONS(977), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1793), 47, + ACTIONS(975), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311028,6 +314867,7 @@ 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, @@ -311067,148 +314907,92 @@ static const 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, - [80978] = 5, + [79255] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2753), 1, - sym_comment, - ACTIONS(1801), 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(1803), 33, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, 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(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2768), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6357), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81043] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - sym__table_head_separator, - ACTIONS(5845), 1, - anon_sym_DOT, - STATE(2754), 1, - sym_comment, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_path, - STATE(5883), 1, - sym_cell_path, - ACTIONS(5799), 14, - anon_sym_DOT_DOT, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5806), 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, - [81116] = 8, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [79342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2755), 1, + ACTIONS(5782), 1, + aux_sym__immediate_decimal_token2, + STATE(2769), 1, sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3030), 1, - sym_cell_path, - ACTIONS(2066), 2, + ACTIONS(1781), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2064), 46, + ACTIONS(1779), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311216,6 +315000,7 @@ 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, @@ -311255,82 +315040,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, - [81187] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token2, + [79409] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2756), 1, + ACTIONS(5853), 1, + aux_sym__immediate_decimal_token2, + STATE(2770), 1, sym_comment, - ACTIONS(1004), 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(1006), 34, + ACTIONS(1801), 5, 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_LPAREN2, 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, - [81250] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2757), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3067), 1, - sym_cell_path, - ACTIONS(1907), 2, - sym_raw_string_begin, sym__entry_separator, - ACTIONS(1905), 46, + ACTIONS(1799), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311338,6 +315062,7 @@ 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, @@ -311377,1565 +315102,1850 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81321] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2758), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3021), 1, - sym_cell_path, - ACTIONS(1931), 2, + aux_sym__unquoted_in_list_token2, + [79476] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1929), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2771), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6872), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81392] = 29, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3889), 1, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5614), 1, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [79563] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, anon_sym_DQUOTE, - ACTIONS(5618), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - ACTIONS(5715), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOLLAR, - ACTIONS(5719), 1, - anon_sym_DOT_DOT, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5727), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5731), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2648), 1, - sym__inter_single_quotes, - STATE(2759), 1, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2772), 1, sym_comment, - STATE(6020), 1, + STATE(4002), 1, sym__val_number_decimal, - STATE(7920), 1, - sym_val_bool, - STATE(8118), 1, - sym__val_range, - STATE(8123), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5616), 2, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6873), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5721), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2647), 2, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5723), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1710), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [81505] = 4, + ACTIONS(5149), 6, + 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(5151), 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, + [79650] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2760), 1, - sym_comment, - ACTIONS(996), 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(998), 34, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, 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_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2773), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8663), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81568] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2761), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3020), 1, - sym_cell_path, - ACTIONS(1927), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1925), 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, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [79737] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2774), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(7236), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81639] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2762), 1, - sym_comment, - ACTIONS(1024), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1022), 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, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [79824] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2775), 1, + sym_comment, + STATE(4060), 1, + sym__val_number_decimal, + STATE(6474), 1, + sym__command_name, + STATE(6922), 1, + sym_cmd_identifier, + STATE(6942), 1, + sym_val_string, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81702] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2763), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3038), 1, - sym_cell_path, - ACTIONS(1971), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1969), 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, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5210), 6, + 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(5212), 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, + [79911] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2776), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6108), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81773] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token2, - STATE(2764), 1, - sym_comment, - ACTIONS(1785), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 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, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [79998] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_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(5788), 1, anon_sym_DQUOTE, + ACTIONS(5792), 1, + sym_raw_string_begin, + STATE(1751), 1, + sym__command_name, + STATE(2727), 1, + sym_cmd_identifier, + STATE(2728), 1, + sym_val_string, + STATE(2777), 1, + sym_comment, + STATE(4045), 1, + sym__val_number_decimal, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5790), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81838] = 5, + STATE(2754), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5784), 6, + 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(5786), 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, + [80085] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_QMARK2, - STATE(2765), 1, - sym_comment, - ACTIONS(990), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(992), 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(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_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(5859), 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, - [81903] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2766), 1, - sym_comment, - ACTIONS(1020), 4, + ACTIONS(5863), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1018), 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, + STATE(1889), 1, + sym__command_name, + STATE(2778), 1, + sym_comment, + STATE(2795), 1, + sym_val_string, + STATE(2873), 1, + sym_cmd_identifier, + STATE(3996), 1, + sym__val_number_decimal, + ACTIONS(5159), 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, + ACTIONS(5861), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81966] = 8, - ACTIONS(3), 1, + STATE(2871), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5855), 6, + 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(5857), 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, + [80172] = 15, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2767), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3022), 1, - sym_cell_path, - ACTIONS(1935), 2, + ACTIONS(3665), 1, + anon_sym_DQUOTE, + ACTIONS(3679), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1933), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2779), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(5139), 1, + sym__command_name, + ACTIONS(3667), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82037] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2768), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3035), 1, - sym_cell_path, - ACTIONS(1963), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1961), 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, + ACTIONS(5159), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [82108] = 10, - ACTIONS(3), 1, + STATE(4958), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [80259] = 15, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1887), 1, - sym__entry_separator, - ACTIONS(5821), 1, - anon_sym_DOT, - ACTIONS(5851), 1, - anon_sym_RBRACK, - ACTIONS(5854), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - STATE(2769), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3097), 1, - sym_cell_path, - ACTIONS(5849), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2780), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6865), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82183] = 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [80346] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5856), 1, - anon_sym_DOT, - ACTIONS(5858), 1, - aux_sym__immediate_decimal_token2, - STATE(2770), 1, - sym_comment, - ACTIONS(1785), 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(1787), 33, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, 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(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2781), 1, + sym_comment, + STATE(4047), 1, + sym__val_number_decimal, + STATE(7698), 1, + sym_cmd_identifier, + STATE(7699), 1, + sym_val_string, + STATE(8200), 1, + sym__command_name, + ACTIONS(3143), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82250] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2771), 1, - sym_comment, - ACTIONS(2507), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2505), 50, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + ACTIONS(5159), 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, - 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, - [82313] = 8, - ACTIONS(3), 1, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5444), 6, + 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(5446), 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, + [80433] = 15, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2772), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3036), 1, - sym_cell_path, - ACTIONS(1967), 2, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1965), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2782), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6682), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82384] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2773), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3027), 1, - sym_cell_path, - ACTIONS(1955), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1953), 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, + ACTIONS(5159), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [82455] = 8, - ACTIONS(3), 1, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [80520] = 15, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2774), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3023), 1, - sym_cell_path, - ACTIONS(1939), 2, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1937), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2783), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6693), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82526] = 30, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3425), 1, - aux_sym_unquoted_token1, - ACTIONS(3889), 1, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [80607] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5862), 1, - anon_sym_DOLLAR, - ACTIONS(5864), 1, - anon_sym_DOT_DOT, - STATE(2502), 1, - sym__inter_double_quotes, - STATE(2532), 1, - sym__inter_single_quotes, - STATE(2775), 1, + STATE(2784), 1, sym_comment, - STATE(5830), 1, + STATE(4002), 1, sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, STATE(6886), 1, - sym_unquoted, - STATE(7805), 1, - sym__val_range, - STATE(7816), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(111), 2, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5866), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2135), 2, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5868), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7223), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [82641] = 5, - ACTIONS(3), 1, + ACTIONS(5149), 6, + 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(5151), 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, + [80694] = 15, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5870), 1, - aux_sym__immediate_decimal_token2, - STATE(2776), 1, - sym_comment, - ACTIONS(1803), 4, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1801), 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, + ACTIONS(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + STATE(2785), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8470), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82706] = 5, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [80781] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5872), 1, - anon_sym_QMARK2, - STATE(2777), 1, - sym_comment, - ACTIONS(1012), 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(1014), 33, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, 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(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2786), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6669), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82771] = 6, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [80868] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5874), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5876), 1, - aux_sym__immediate_decimal_token2, - STATE(2778), 1, - sym_comment, - ACTIONS(1793), 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(1795), 33, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, 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(5161), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2787), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8345), 1, + sym__command_name, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82838] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2779), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3065), 1, - sym_cell_path, - ACTIONS(1903), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1901), 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, + ACTIONS(5159), 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, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [80955] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2788), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(6801), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82909] = 4, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [81042] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2780), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2789), 1, sym_comment, - ACTIONS(1008), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8382), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1010), 34, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [81129] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2790), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8637), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [81216] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2791), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8276), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [81303] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(5161), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5163), 1, + aux_sym__val_number_decimal_token4, + STATE(2792), 1, + sym_comment, + STATE(4002), 1, + sym__val_number_decimal, + STATE(4413), 1, + sym_cmd_identifier, + STATE(4433), 1, + sym_val_string, + STATE(8309), 1, + sym__command_name, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5159), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5149), 6, + 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(5151), 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, + [81390] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2793), 1, + sym_comment, + ACTIONS(1052), 6, + 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(1054), 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_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, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [82972] = 29, + [81455] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3889), 1, + STATE(2794), 1, + sym_comment, + 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), 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, - ACTIONS(3891), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5660), 1, anon_sym_DQUOTE, - ACTIONS(5664), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [81519] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2795), 1, + sym_comment, + ACTIONS(5822), 6, + 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(5824), 47, sym_raw_string_begin, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5823), 1, - anon_sym_LPAREN, - ACTIONS(5825), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, - anon_sym_DOT_DOT, - ACTIONS(5833), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5835), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5837), 1, - aux_sym_unquoted_token1, - STATE(2734), 1, - sym__inter_single_quotes, - STATE(2744), 1, - sym__inter_double_quotes, - STATE(2781), 1, + 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, + [81583] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2796), 1, sym_comment, - STATE(5970), 1, - sym__val_number_decimal, - STATE(7759), 1, - sym__unquoted_anonymous_prefix, - STATE(7903), 1, - sym__val_range, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5662), 2, + ACTIONS(1052), 6, + 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(1054), 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, - ACTIONS(5829), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2738), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5831), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1727), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [83085] = 8, + [81647] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2782), 1, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(5865), 1, + anon_sym_DOT_DOT2, + STATE(2797), 1, sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3044), 1, - sym_cell_path, - ACTIONS(975), 2, + ACTIONS(1838), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(973), 46, + ACTIONS(5867), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312982,23 +316992,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, - [83156] = 8, + [81719] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2783), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5869), 1, + anon_sym_DOT_DOT2, + STATE(2798), 1, sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3024), 1, - sym_cell_path, - ACTIONS(1943), 2, + ACTIONS(1848), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1941), 46, + ACTIONS(5871), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313045,35 +317056,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, - [83227] = 8, - ACTIONS(3), 1, + [81791] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5821), 1, + ACTIONS(5873), 1, anon_sym_DOT, - STATE(2784), 1, + STATE(2799), 1, sym_comment, - STATE(2845), 1, + STATE(2897), 1, aux_sym_cell_path_repeat1, - STATE(2944), 1, + STATE(3006), 1, sym_path, - STATE(3076), 1, + STATE(3115), 1, sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(1945), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1947), 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, + [81863] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2800), 1, + sym_comment, + ACTIONS(5830), 6, + 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(5832), 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, + [81927] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2801), 1, + sym_comment, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3114), 1, + sym_cell_path, + ACTIONS(969), 6, + 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(971), 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, + [81999] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2355), 1, sym_raw_string_begin, + ACTIONS(5875), 1, sym__entry_separator, - ACTIONS(1909), 46, + STATE(2802), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2350), 50, 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_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, @@ -313091,6 +317285,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, @@ -313108,35 +317305,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, - [83298] = 8, + [82065] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2785), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3031), 1, - sym_cell_path, - ACTIONS(1959), 2, - sym_raw_string_begin, + ACTIONS(5880), 1, + anon_sym_RBRACK, + ACTIONS(5882), 1, sym__entry_separator, - ACTIONS(1957), 46, + ACTIONS(5884), 1, + sym_raw_string_begin, + STATE(2802), 1, + aux_sym__multiple_types_repeat1, + STATE(2803), 1, + sym_comment, + ACTIONS(5878), 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_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, @@ -313154,6 +317348,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, @@ -313171,91 +317368,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, - [83369] = 4, - ACTIONS(251), 1, + [82135] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, - sym_comment, - ACTIONS(1000), 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(1002), 34, + ACTIONS(5882), 1, + sym__entry_separator, + ACTIONS(5884), 1, sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(5886), 1, 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, - 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, - [83432] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_DOT, - ACTIONS(5880), 1, - aux_sym__immediate_decimal_token2, - STATE(2787), 1, + STATE(2802), 1, + aux_sym__multiple_types_repeat1, + STATE(2804), 1, sym_comment, - ACTIONS(1787), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1785), 47, + ACTIONS(5878), 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_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, @@ -313273,6 +317411,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, @@ -313290,36 +317431,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, - aux_sym__unquoted_in_list_token2, - [83499] = 8, + [82205] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2788), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3025), 1, - sym_cell_path, - ACTIONS(1947), 2, - sym_raw_string_begin, + ACTIONS(5882), 1, sym__entry_separator, - ACTIONS(1945), 46, - anon_sym_LBRACK, + ACTIONS(5884), 1, + sym_raw_string_begin, + ACTIONS(5888), 1, anon_sym_RBRACK, + STATE(2802), 1, + aux_sym__multiple_types_repeat1, + STATE(2805), 1, + sym_comment, + ACTIONS(5878), 49, + anon_sym_LBRACK, 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_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, @@ -313337,6 +317474,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, @@ -313354,83 +317494,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, - [83570] = 4, - ACTIONS(3), 1, + [82275] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2789), 1, - sym_comment, - ACTIONS(1028), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1026), 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, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, - [83633] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2904), 1, - sym_path, - STATE(2790), 2, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2806), 1, sym_comment, + STATE(2897), 1, aux_sym_cell_path_repeat1, - ACTIONS(979), 6, + STATE(3006), 1, + sym_path, + STATE(3123), 1, + sym_cell_path, + ACTIONS(1949), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(981), 43, + ACTIONS(1951), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313474,33 +317558,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83700] = 5, - ACTIONS(3), 1, + [82347] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5810), 1, - aux_sym__immediate_decimal_token2, - STATE(2791), 1, + ACTIONS(5846), 1, + anon_sym_DOT, + STATE(2807), 1, sym_comment, - ACTIONS(1787), 4, + STATE(2808), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + ACTIONS(982), 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(984), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1785), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -313510,13 +317609,37 @@ static const uint16_t ts_small_parse_table[] = { 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, + [82417] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5890), 1, + anon_sym_DOT, + STATE(2946), 1, + sym_path, + STATE(2808), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(975), 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, @@ -313525,6 +317648,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(977), 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, @@ -313533,27 +317683,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, - [83765] = 7, + [82485] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5713), 1, - anon_sym_DOT, - STATE(2790), 1, - aux_sym_cell_path_repeat1, - STATE(2792), 1, + STATE(2809), 1, sym_comment, - STATE(2904), 1, - sym_path, - ACTIONS(986), 6, + ACTIONS(5826), 6, 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(988), 43, + ACTIONS(5828), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313588,7 +317732,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -313596,136 +317743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83834] = 29, + [82549] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5618), 1, - sym_raw_string_begin, - ACTIONS(5715), 1, - anon_sym_LPAREN, - ACTIONS(5717), 1, - anon_sym_DOLLAR, - ACTIONS(5719), 1, - anon_sym_DOT_DOT, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5727), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5729), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5731), 1, - aux_sym_unquoted_token1, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2648), 1, - sym__inter_single_quotes, - STATE(2793), 1, - sym_comment, - STATE(6020), 1, - sym__val_number_decimal, - STATE(7920), 1, - sym_val_bool, - STATE(8118), 1, - sym__val_range, - STATE(8123), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5616), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5721), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2647), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5723), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1704), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [83947] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2794), 1, + STATE(2810), 1, sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3019), 1, - sym_cell_path, - ACTIONS(1923), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1921), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1669), 18, 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, @@ -313734,45 +317765,21 @@ 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, - [84018] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2795), 1, - sym_comment, - STATE(2845), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - STATE(3018), 1, - sym_cell_path, - ACTIONS(1919), 2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1671), 35, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1917), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -313782,21 +317789,12 @@ static const uint16_t ts_small_parse_table[] = { 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_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313805,82 +317803,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, - aux_sym__unquoted_in_list_token1, - [84089] = 5, + [82613] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5885), 1, - sym__newline, - STATE(2796), 2, + STATE(2811), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1312), 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(1314), 35, + ACTIONS(986), 6, + 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(988), 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_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, + 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, - aux_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84154] = 8, + [82677] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2797), 1, + STATE(2812), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3135), 1, - sym_cell_path, - ACTIONS(1917), 14, + ACTIONS(1661), 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, @@ -313894,7 +317886,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(1919), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1663), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313902,8 +317895,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -313916,6 +317909,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -313928,83 +317923,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, - [84224] = 8, + [82741] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, + ACTIONS(5873), 1, anon_sym_DOT, - STATE(2798), 1, + STATE(2813), 1, sym_comment, - STATE(2892), 1, + STATE(2897), 1, aux_sym_cell_path_repeat1, - STATE(3064), 1, + STATE(3006), 1, sym_path, - STATE(3104), 1, + STATE(3136), 1, sym_cell_path, - ACTIONS(1901), 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(1903), 33, + ACTIONS(2033), 6, + 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(2035), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [84294] = 8, + [82813] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2799), 1, + STATE(2814), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3157), 1, - sym_cell_path, - ACTIONS(1921), 14, + 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, @@ -314018,7 +318010,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(1923), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1713), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314026,8 +318019,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314040,6 +318033,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314052,21 +318047,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, - [84364] = 8, + [82877] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2800), 1, + STATE(2815), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3133), 1, - sym_cell_path, - ACTIONS(1925), 14, + ACTIONS(1767), 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, @@ -314080,7 +318070,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(1927), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1769), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314088,8 +318079,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314102,6 +318093,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314114,47 +318107,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, - [84434] = 8, + [82941] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2801), 1, + STATE(2816), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3141), 1, - sym_cell_path, - ACTIONS(1929), 14, - anon_sym_DOT_DOT, + ACTIONS(5834), 6, + 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(5836), 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, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_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, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83005] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5893), 1, + anon_sym_QMARK2, + STATE(2817), 1, + sym_comment, + ACTIONS(1010), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1008), 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, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314164,10 +318204,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314176,47 +318227,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84504] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [83071] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2802), 1, + ACTIONS(5895), 1, + anon_sym_QMARK2, + STATE(2818), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3153), 1, - sym_cell_path, - ACTIONS(1933), 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(1935), 33, + ACTIONS(992), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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_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, @@ -314226,10 +318265,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314238,47 +318288,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, - [84574] = 8, + aux_sym__unquoted_in_list_token1, + [83137] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2803), 1, + STATE(2819), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3109), 1, - sym_cell_path, - ACTIONS(1937), 14, - anon_sym_DOT_DOT, + ACTIONS(5838), 6, + 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(5840), 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, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_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(1939), 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, + [83201] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2820), 1, + sym_comment, + ACTIONS(1002), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1000), 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, 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, @@ -314288,10 +318385,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314300,47 +318408,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, - [84644] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [83265] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2804), 1, + STATE(2821), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3145), 1, - sym_cell_path, - ACTIONS(1941), 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(1943), 33, + ACTIONS(1006), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1004), 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, 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, @@ -314350,10 +318445,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314362,47 +318468,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, - [84714] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [83329] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2805), 1, + STATE(2822), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3120), 1, - sym_cell_path, - ACTIONS(1909), 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, + ACTIONS(998), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(996), 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, 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, @@ -314412,10 +318505,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314424,21 +318528,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, - [84784] = 8, + aux_sym__unquoted_in_list_token1, + [83393] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2806), 1, + ACTIONS(5897), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5899), 1, + aux_sym__immediate_decimal_token2, + STATE(2823), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3142), 1, - sym_cell_path, - ACTIONS(1949), 14, + ACTIONS(1771), 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, @@ -314452,7 +318556,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(1951), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314460,8 +318565,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314486,47 +318591,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, - [84854] = 8, - ACTIONS(251), 1, + [83461] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2807), 1, + STATE(2824), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3144), 1, - sym_cell_path, - ACTIONS(1953), 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(1955), 33, + ACTIONS(988), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(986), 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, 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, @@ -314536,10 +318627,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314548,396 +318650,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84924] = 8, + aux_sym__unquoted_in_list_token1, + [83525] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2808), 1, + STATE(2825), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3106), 1, - sym_cell_path, - ACTIONS(2064), 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(2066), 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, - [84994] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2809), 1, - sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3110), 1, - sym_cell_path, - ACTIONS(1957), 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(1959), 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, - [85064] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2810), 1, - sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3115), 1, - sym_cell_path, - ACTIONS(1961), 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(1963), 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, - [85134] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2811), 1, - sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3146), 1, - sym_cell_path, - ACTIONS(1965), 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(1967), 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, - [85204] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2812), 1, - sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3148), 1, - sym_cell_path, - ACTIONS(1969), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1971), 33, + ACTIONS(2391), 6, + 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(2393), 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_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [85274] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5890), 1, - anon_sym_DOT_DOT2, - STATE(2813), 1, - sym_comment, - ACTIONS(5892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1843), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_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(1851), 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, - [85342] = 6, + [83589] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5898), 1, - anon_sym_DASH_DASH, - STATE(3009), 1, - sym_long_flag, - STATE(2814), 2, + STATE(2826), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5894), 6, + ACTIONS(2391), 6, 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(5896), 42, + ACTIONS(2393), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314972,6 +318760,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -314979,18 +318771,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85408] = 5, - ACTIONS(3), 1, + [83653] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2321), 1, - sym_raw_string_begin, - ACTIONS(5901), 1, - sym__entry_separator, - STATE(2815), 2, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2827), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2316), 48, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3062), 1, + sym_cell_path, + ACTIONS(2049), 6, 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(2051), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314998,13 +318800,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, @@ -315023,14 +318822,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, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -315038,20 +318835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85472] = 7, + [83725] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5904), 1, - anon_sym_DOT_DOT2, - STATE(2816), 1, + ACTIONS(5901), 1, + anon_sym_DOT, + ACTIONS(5903), 1, + aux_sym__immediate_decimal_token2, + STATE(2828), 1, sym_comment, - ACTIONS(5906), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 16, + ACTIONS(1779), 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, @@ -315067,7 +318862,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(1836), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315075,6 +318871,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -315099,29 +318897,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, - [85540] = 8, + [83793] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5910), 1, - anon_sym_RBRACK, - ACTIONS(5912), 1, - anon_sym_DOT_DOT2, - ACTIONS(5916), 1, - sym__entry_separator, - ACTIONS(5918), 1, - sym_raw_string_begin, - STATE(2817), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5914), 2, + ACTIONS(1781), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5908), 45, + sym__entry_separator, + ACTIONS(1779), 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, @@ -315161,76 +318956,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85610] = 5, + aux_sym__unquoted_in_list_token2, + [83857] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5920), 1, - sym__newline, - STATE(2818), 2, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2830), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1312), 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(1314), 33, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3063), 1, + sym_cell_path, + ACTIONS(2053), 6, + 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(2055), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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_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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [85674] = 4, + [83929] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2819), 1, + STATE(2831), 1, sym_comment, - ACTIONS(1779), 4, + ACTIONS(1773), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1777), 47, + ACTIONS(1771), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315278,51 +319080,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, - [85736] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [83993] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1040), 1, - sym__entry_separator, - ACTIONS(5912), 1, + ACTIONS(5905), 1, anon_sym_DOT_DOT2, - ACTIONS(5925), 1, - anon_sym_RBRACK, - ACTIONS(5928), 1, - sym_raw_string_begin, - STATE(2820), 1, + ACTIONS(5909), 1, + sym_filesize_unit, + ACTIONS(5911), 1, + sym_duration_unit, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token2, + STATE(2832), 1, sym_comment, - ACTIONS(5914), 2, + ACTIONS(5907), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5923), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1687), 16, 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, @@ -315331,40 +319113,18 @@ 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, - [85806] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2821), 1, - sym_comment, - ACTIONS(2195), 4, + ACTIONS(1699), 31, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2193), 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, @@ -315374,21 +319134,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -315397,79 +319146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85868] = 7, + [84067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5932), 1, - anon_sym_RBRACK, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2822), 1, - sym_comment, - ACTIONS(5930), 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, - [85936] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2823), 1, + STATE(2833), 1, sym_comment, - ACTIONS(2100), 4, + ACTIONS(1801), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2098), 47, + ACTIONS(1799), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315517,17 +319205,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, - [85998] = 4, + aux_sym__unquoted_in_list_token2, + [84131] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2824), 1, + STATE(2834), 1, sym_comment, - ACTIONS(2104), 4, + ACTIONS(1820), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2102), 47, + ACTIONS(1818), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315575,27 +319265,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86060] = 6, + aux_sym__unquoted_in_list_token2, + [84195] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5938), 1, - sym_long_flag_identifier, - ACTIONS(5940), 1, - anon_sym_EQ2, - STATE(2825), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2835), 1, sym_comment, - ACTIONS(4968), 9, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3119), 1, + sym_cell_path, + ACTIONS(1941), 6, + 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(1943), 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, - ACTIONS(4970), 40, + [84267] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2836), 1, + sym_comment, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3120), 1, + sym_cell_path, + ACTIONS(1871), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1873), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315603,13 +319359,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, @@ -315628,113 +319381,148 @@ 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, 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, - [86126] = 5, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84339] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5942), 1, - sym__newline, - STATE(2826), 2, + STATE(2837), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1312), 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(1314), 33, + ACTIONS(996), 6, + 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(998), 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_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, + 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, - aux_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, + [84403] = 31, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86190] = 4, - ACTIONS(3), 1, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2827), 1, - sym_comment, - ACTIONS(1058), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1056), 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, + ACTIONS(3239), 1, + aux_sym_unquoted_token1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(3901), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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(3913), 1, anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(4315), 1, + anon_sym_DOT_DOT, + ACTIONS(4509), 1, + anon_sym_DOLLAR, + ACTIONS(5915), 1, + anon_sym_LPAREN, + ACTIONS(5919), 1, + sym_val_date, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2838), 1, + sym_comment, + STATE(6122), 1, + sym__val_number_decimal, + STATE(6921), 1, + sym_unquoted, + STATE(8344), 1, + sym__val_range, + STATE(8413), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5917), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6889), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315743,6 +319531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315751,24 +319541,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, - [86252] = 5, + [84521] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5945), 1, - anon_sym_QMARK2, - STATE(2828), 1, + STATE(2839), 1, sym_comment, - ACTIONS(990), 7, + ACTIONS(2439), 6, 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(992), 43, + ACTIONS(2441), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315803,7 +319590,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -315811,22 +319601,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86316] = 5, + [84585] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5947), 1, - anon_sym_QMARK2, - STATE(2829), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2840), 1, sym_comment, - ACTIONS(1012), 7, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3129), 1, + sym_cell_path, + ACTIONS(1875), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1014), 43, + ACTIONS(1877), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315870,159 +319665,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86380] = 4, + [84657] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2830), 1, + STATE(2841), 1, sym_comment, - ACTIONS(1785), 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(1787), 33, + ACTIONS(1004), 6, + 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(1006), 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_null, - anon_sym_true, - anon_sym_false, + 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, - aux_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, - [86442] = 4, + [84721] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2831), 1, - sym_comment, - ACTIONS(1026), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5873), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1028), 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, + STATE(2842), 1, + sym_comment, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3132), 1, + sym_cell_path, + ACTIONS(1879), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1881), 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [86504] = 4, + [84793] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2832), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2843), 1, sym_comment, - ACTIONS(1793), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3137), 1, + sym_cell_path, + ACTIONS(1883), 6, + 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(1885), 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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 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, + [84865] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5921), 1, + anon_sym_DOT, + ACTIONS(5923), 1, + aux_sym__immediate_decimal_token2, + STATE(2844), 1, + sym_comment, + ACTIONS(1781), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1779), 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, @@ -316032,10 +319891,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -316044,253 +319914,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86566] = 4, + aux_sym__unquoted_in_list_token1, + [84933] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2833), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2845), 1, sym_comment, - ACTIONS(1801), 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(1803), 33, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3138), 1, + sym_cell_path, + ACTIONS(1887), 6, + 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(1889), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [86628] = 4, + [85005] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2834), 1, - sym_comment, - ACTIONS(1022), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5873), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(2846), 1, + sym_comment, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3144), 1, + sym_cell_path, + ACTIONS(1891), 6, + 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(1893), 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(1024), 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, + [85077] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2847), 1, + sym_comment, + ACTIONS(1763), 6, + 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(1765), 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_null, - anon_sym_true, - anon_sym_false, + 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, - aux_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, - [86690] = 4, + [85141] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2835), 1, - sym_comment, - ACTIONS(1018), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5873), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(2848), 1, + sym_comment, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3145), 1, + sym_cell_path, + ACTIONS(1895), 6, + 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(1897), 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(1020), 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, + [85213] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2849), 1, + sym_comment, + ACTIONS(2474), 6, + 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(2476), 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_null, - anon_sym_true, - anon_sym_false, + 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, - aux_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, - [86752] = 4, + [85277] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2836), 1, + STATE(2850), 1, sym_comment, - ACTIONS(1824), 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(1826), 33, + 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2480), 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_null, - anon_sym_true, - anon_sym_false, + 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, - aux_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, - [86814] = 4, + [85341] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2837), 1, + STATE(2851), 1, sym_comment, - ACTIONS(1008), 7, + ACTIONS(5126), 6, 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(1010), 44, + ACTIONS(5124), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316325,8 +320336,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + 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, @@ -316334,20 +320347,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86876] = 8, + [85405] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, + ACTIONS(5873), 1, anon_sym_DOT, - STATE(2838), 1, + STATE(2852), 1, sym_comment, - STATE(2892), 1, + STATE(2897), 1, aux_sym_cell_path_repeat1, - STATE(3064), 1, + STATE(3006), 1, sym_path, - STATE(3107), 1, + STATE(3146), 1, sym_cell_path, - ACTIONS(973), 14, + ACTIONS(1903), 6, + 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(1905), 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, + [85477] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5925), 1, + sym__newline, + STATE(2853), 1, + sym_comment, + ACTIONS(5928), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1304), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316362,19 +320437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(975), 33, + ACTIONS(1302), 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_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, @@ -316388,6 +320462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316396,20 +320473,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86946] = 4, + [85545] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2839), 1, + STATE(2854), 1, sym_comment, - ACTIONS(1004), 7, + ACTIONS(2123), 6, 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(2125), 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, + [85609] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5873), 1, anon_sym_DOT, - ACTIONS(1006), 44, + STATE(2855), 1, + sym_comment, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3064), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1911), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316446,7 +320590,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -316454,20 +320597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87008] = 4, + [85681] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2840), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2856), 1, sym_comment, - ACTIONS(996), 7, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3065), 1, + sym_cell_path, + ACTIONS(1917), 6, 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(998), 44, + ACTIONS(1919), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316504,7 +320654,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -316512,20 +320661,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87070] = 4, + [85753] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2857), 1, sym_comment, - ACTIONS(1000), 7, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3066), 1, + sym_cell_path, + 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, - anon_sym_DOT, - ACTIONS(1002), 44, + ACTIONS(1927), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316562,7 +320718,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -316570,79 +320725,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87132] = 5, - ACTIONS(3), 1, + [85825] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5880), 1, - aux_sym__immediate_decimal_token2, - STATE(2842), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2858), 1, sym_comment, - ACTIONS(1787), 3, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3071), 1, + sym_cell_path, + ACTIONS(1929), 6, + 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(1931), 43, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1785), 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_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, - [87196] = 5, + [85897] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5949), 1, - aux_sym__immediate_decimal_token2, - STATE(2843), 1, - sym_comment, - ACTIONS(1803), 3, + ACTIONS(5932), 1, + anon_sym_RBRACK, + ACTIONS(5935), 1, + anon_sym_DOT, + ACTIONS(5937), 1, sym_raw_string_begin, - anon_sym_LPAREN2, + STATE(2859), 1, + sym_comment, + STATE(6283), 1, + aux_sym_cell_path_repeat1, + STATE(7065), 1, + sym_path, + STATE(7842), 1, + sym_cell_path, + ACTIONS(1953), 2, sym__entry_separator, - ACTIONS(1801), 47, + sym__table_head_separator, + ACTIONS(5930), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -316687,493 +320855,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, - aux_sym__unquoted_in_list_token2, - [87260] = 5, + [85973] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5858), 1, - aux_sym__immediate_decimal_token2, - STATE(2844), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2860), 1, sym_comment, - ACTIONS(1785), 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(1787), 33, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3072), 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, - 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, - [87324] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_DOT, - STATE(2845), 1, - sym_comment, - STATE(2846), 1, - aux_sym_cell_path_repeat1, - STATE(2944), 1, - sym_path, - ACTIONS(988), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(986), 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, - [87392] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5951), 1, - anon_sym_DOT, - STATE(2944), 1, - sym_path, - ACTIONS(981), 2, - sym_raw_string_begin, - sym__entry_separator, - STATE(2846), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 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, - [87458] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5954), 1, - aux_sym__immediate_decimal_token2, - STATE(2847), 1, - sym_comment, - ACTIONS(1801), 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(1803), 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, - [87522] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2848), 1, - sym_comment, - ACTIONS(1787), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1785), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [87584] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2849), 1, - sym_comment, - ACTIONS(1795), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1793), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [87646] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2850), 1, - sym_comment, - ACTIONS(1803), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1801), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [87708] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2851), 1, - sym_comment, - ACTIONS(1826), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1824), 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, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [87770] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - ACTIONS(5956), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2852), 1, - sym_comment, - ACTIONS(5930), 47, - aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317181,13 +320884,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, @@ -317206,13 +320906,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, 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, @@ -317220,21 +320919,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87838] = 7, - ACTIONS(3), 1, + [86045] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - ACTIONS(5958), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2853), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2861), 1, sym_comment, - ACTIONS(5930), 47, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3073), 1, + sym_cell_path, + ACTIONS(1937), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1939), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317242,13 +320948,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, @@ -317267,13 +320970,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, 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, @@ -317281,144 +320983,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87906] = 8, + [86117] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2854), 1, - sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3112), 1, - sym_cell_path, - ACTIONS(1905), 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(1907), 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, - [87976] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - ACTIONS(5960), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2855), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5930), 47, + ACTIONS(5842), 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, - 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, - [88044] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, + ACTIONS(5844), 47, sym_raw_string_begin, - ACTIONS(5962), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2856), 1, - sym_comment, - ACTIONS(5930), 47, - aux_sym_cmd_identifier_token1, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317426,13 +321005,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, @@ -317451,13 +321027,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, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317465,21 +321043,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88112] = 7, - ACTIONS(3), 1, + [86181] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - ACTIONS(5964), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2857), 1, + STATE(2863), 1, sym_comment, - ACTIONS(5930), 47, + ACTIONS(5138), 6, 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(5136), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317487,13 +321065,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, @@ -317512,13 +321087,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, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317526,21 +321103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88180] = 7, - ACTIONS(3), 1, + [86245] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - ACTIONS(5966), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2858), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2864), 1, sym_comment, - ACTIONS(5930), 47, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3087), 1, + sym_cell_path, + ACTIONS(1953), 6, 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(1955), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317548,13 +321132,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, @@ -317573,13 +321154,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, 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, @@ -317587,49 +321167,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88248] = 6, - ACTIONS(3), 1, + [86317] = 30, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5968), 1, - anon_sym_DOT_DOT2, - STATE(2859), 1, - sym_comment, - ACTIONS(2187), 2, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5788), 1, + anon_sym_DQUOTE, + ACTIONS(5792), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5970), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(5939), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5941), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5943), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5949), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5951), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5953), 1, + aux_sym_unquoted_token1, + STATE(2736), 1, + sym__inter_single_quotes, + STATE(2737), 1, + sym__inter_double_quotes, + STATE(2865), 1, + sym_comment, + STATE(6339), 1, + sym__val_number_decimal, + STATE(8285), 1, + sym__val_range, + STATE(8287), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, 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, + ACTIONS(5790), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5945), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2754), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5947), 3, 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(1748), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317638,6 +321243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317646,50 +321253,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, - [88314] = 6, - ACTIONS(3), 1, + [86433] = 31, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5972), 1, - anon_sym_DOT_DOT2, - STATE(2860), 1, - sym_comment, - ACTIONS(2076), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5974), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2070), 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, + ACTIONS(3239), 1, + aux_sym_unquoted_token1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(3901), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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(3913), 1, anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(4315), 1, + anon_sym_DOT_DOT, + ACTIONS(4509), 1, + anon_sym_DOLLAR, + ACTIONS(5915), 1, + anon_sym_LPAREN, + ACTIONS(5919), 1, + sym_val_date, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2866), 1, + sym_comment, + STATE(6122), 1, + sym__val_number_decimal, + STATE(6921), 1, + sym_unquoted, + STATE(8344), 1, + sym__val_range, + STATE(8413), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5917), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6889), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317698,6 +321330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317706,33 +321340,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, - aux_sym__unquoted_in_list_token1, - [88380] = 6, + [86551] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5976), 1, - anon_sym_DOT_DOT2, - STATE(2861), 1, - sym_comment, - ACTIONS(2084), 2, - sym_raw_string_begin, + ACTIONS(5882), 1, sym__entry_separator, - ACTIONS(5978), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 46, - anon_sym_LBRACK, + ACTIONS(5884), 1, + sym_raw_string_begin, + ACTIONS(5955), 1, anon_sym_RBRACK, + STATE(2802), 1, + aux_sym__multiple_types_repeat1, + STATE(2867), 1, + sym_comment, + ACTIONS(5878), 49, + anon_sym_LBRACK, 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_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, @@ -317750,6 +321383,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, @@ -317767,145 +321403,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88446] = 8, + [86621] = 33, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2862), 1, - sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3152), 1, - sym_cell_path, - ACTIONS(5849), 14, - anon_sym_DOT_DOT, + ACTIONS(2607), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2609), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3109), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + anon_sym_DOLLAR, + ACTIONS(3123), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3125), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3127), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3129), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3135), 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(5854), 33, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, sym_raw_string_begin, + ACTIONS(3159), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(5957), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(5959), 1, + anon_sym_DOT_DOT, + ACTIONS(5963), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(5967), 1, 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, - [88516] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2863), 1, + STATE(2868), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3156), 1, - sym_cell_path, - ACTIONS(5982), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + STATE(6083), 1, + sym__val_number_decimal, + STATE(6333), 1, + sym_val_variable, + STATE(6576), 1, + sym_expr_parenthesized, + STATE(7386), 1, + sym__val_number, + STATE(7966), 1, + sym__inter_single_quotes, + STATE(7967), 1, + sym__inter_double_quotes, + STATE(8074), 1, + sym_block, + ACTIONS(3137), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5980), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5961), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5965), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(8079), 2, + sym_val_range, + sym__value, + ACTIONS(3131), 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, - 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, - [88586] = 7, - ACTIONS(3), 1, + STATE(7688), 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, + [86743] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - ACTIONS(5984), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2864), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2869), 1, sym_comment, - ACTIONS(5930), 47, + STATE(2897), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + STATE(3094), 1, + sym_cell_path, + ACTIONS(1957), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1959), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317913,13 +321521,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, @@ -317938,13 +321543,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, 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, @@ -317952,284 +321556,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88654] = 6, - ACTIONS(3), 1, + [86815] = 33, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5986), 1, - anon_sym_DOT_DOT2, - STATE(2865), 1, - sym_comment, - ACTIONS(2094), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5988), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2088), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2607), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2609), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3109), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3111), 1, 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, + ACTIONS(3123), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3125), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3127), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3129), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(3135), 1, anon_sym_0b, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(3159), 1, + anon_sym_LBRACK, + ACTIONS(5957), 1, + anon_sym_LBRACE, + ACTIONS(5959), 1, + anon_sym_DOT_DOT, + ACTIONS(5963), 1, + anon_sym_null, + ACTIONS(5967), 1, + sym_val_date, + STATE(2870), 1, + sym_comment, + STATE(6083), 1, + sym__val_number_decimal, + STATE(6333), 1, + sym_val_variable, + STATE(6577), 1, + sym_expr_parenthesized, + STATE(7386), 1, + sym__val_number, + STATE(7966), 1, + sym__inter_single_quotes, + STATE(7967), 1, + sym__inter_double_quotes, + STATE(8080), 1, + sym_block, + ACTIONS(3137), 2, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(3143), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88720] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2866), 1, - sym_comment, - ACTIONS(1308), 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(1306), 36, - sym_raw_string_begin, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + ACTIONS(5961), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5965), 2, 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, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(8086), 2, + sym_val_range, + sym__value, + ACTIONS(3131), 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, - 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, - [88782] = 8, + STATE(7688), 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, + [86937] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2867), 1, + STATE(2871), 1, sym_comment, - STATE(2892), 1, - aux_sym_cell_path_repeat1, - STATE(3064), 1, - sym_path, - STATE(3103), 1, - sym_cell_path, - ACTIONS(1945), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1947), 33, + ACTIONS(1000), 6, + 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(1002), 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_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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, - aux_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, - [88852] = 6, + [87001] = 30, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5990), 1, - anon_sym_DOT, - STATE(3064), 1, - sym_path, - STATE(2868), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 14, - anon_sym_DOT_DOT, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(3901), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(981), 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, + ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_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(5788), 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, - [88917] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2869), 1, - sym_comment, - ACTIONS(1795), 3, + ACTIONS(5792), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1793), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(5939), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5941), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5943), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5949), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5951), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5953), 1, + aux_sym_unquoted_token1, + STATE(2736), 1, + sym__inter_single_quotes, + STATE(2737), 1, + sym__inter_double_quotes, + STATE(2872), 1, + sym_comment, + STATE(6339), 1, + sym__val_number_decimal, + STATE(8285), 1, + sym__val_range, + STATE(8287), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, 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, + ACTIONS(5790), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5945), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2754), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5947), 3, 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(1748), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318238,6 +321781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318246,23 +321791,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, - [88978] = 4, + [87117] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2870), 1, + STATE(2873), 1, sym_comment, - ACTIONS(1018), 7, + ACTIONS(5818), 6, 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(1020), 43, + ACTIONS(5820), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -318297,81 +321840,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [89039] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2871), 1, - sym_comment, - ACTIONS(1803), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1801), 47, + 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_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + 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, - 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, - [89100] = 4, + [87181] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2872), 1, + ACTIONS(5969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5971), 1, + aux_sym__immediate_decimal_token2, + STATE(2874), 1, sym_comment, - ACTIONS(1826), 3, + ACTIONS(1773), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1824), 47, + ACTIONS(1771), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318379,6 +321873,7 @@ 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, @@ -318418,13 +321913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [89161] = 4, + [87249] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2873), 1, + ACTIONS(5973), 1, + anon_sym_DOT, + ACTIONS(5975), 1, + aux_sym__immediate_decimal_token2, + STATE(2875), 1, sym_comment, - ACTIONS(1785), 17, + ACTIONS(1779), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -318442,7 +321940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1787), 33, + ACTIONS(1781), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318476,73 +321974,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, - [89222] = 6, - ACTIONS(3), 1, + [87316] = 13, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, - STATE(2874), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4702), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(5977), 1, + anon_sym_DOT, + ACTIONS(5981), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5983), 1, + aux_sym__immediate_decimal_token5, + STATE(2876), 1, sym_comment, - ACTIONS(5930), 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, - [89287] = 4, + STATE(3316), 1, + sym__immediate_decimal, + ACTIONS(5979), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2006), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1579), 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_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, + [87397] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2875), 1, + ACTIONS(1955), 1, + sym__table_head_separator, + ACTIONS(5985), 1, + anon_sym_DOT, + STATE(2877), 1, sym_comment, - ACTIONS(1308), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3825), 1, + sym_path, + STATE(6105), 1, + sym_cell_path, + ACTIONS(5930), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318556,14 +322071,15 @@ 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(1306), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(5937), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -318582,8 +322098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318592,42 +322106,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, - [89348] = 4, - ACTIONS(251), 1, + [87470] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2876), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2878), 1, sym_comment, - ACTIONS(1793), 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(1795), 33, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3177), 1, + sym_cell_path, + ACTIONS(2035), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2033), 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, @@ -318637,10 +322145,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318649,17 +322168,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, - [89409] = 5, + aux_sym__unquoted_in_list_token1, + [87541] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5993), 1, - anon_sym_QMARK2, - STATE(2877), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2879), 1, sym_comment, - ACTIONS(992), 2, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3187), 1, + sym_cell_path, + ACTIONS(2051), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(990), 47, + ACTIONS(2049), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318667,7 +322193,6 @@ 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, @@ -318707,17 +322232,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, - [89472] = 5, + [87612] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5995), 1, - anon_sym_QMARK2, - STATE(2878), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2880), 1, sym_comment, - ACTIONS(1014), 2, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3190), 1, + sym_cell_path, + ACTIONS(2055), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1012), 47, + ACTIONS(2053), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318725,7 +322256,6 @@ 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, @@ -318765,40 +322295,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89535] = 4, - ACTIONS(251), 1, + [87683] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2879), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2881), 1, sym_comment, - ACTIONS(1308), 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(1306), 34, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3191), 1, + sym_cell_path, + ACTIONS(1943), 2, sym_raw_string_begin, - sym__newline, + sym__entry_separator, + ACTIONS(1941), 46, 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, 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, @@ -318808,12 +322334,21 @@ static const uint16_t ts_small_parse_table[] = { 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318822,42 +322357,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89596] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [87754] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2880), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2882), 1, sym_comment, - ACTIONS(2098), 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(2100), 33, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3192), 1, + sym_cell_path, + ACTIONS(1873), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1871), 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, @@ -318867,10 +322397,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318879,42 +322420,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89657] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [87825] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2881), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2883), 1, sym_comment, - ACTIONS(1801), 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(1803), 33, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3193), 1, + sym_cell_path, + ACTIONS(1877), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1875), 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, @@ -318924,10 +322460,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318936,42 +322483,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89718] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [87896] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2882), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2884), 1, sym_comment, - ACTIONS(1824), 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(1826), 33, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3198), 1, + sym_cell_path, + ACTIONS(1881), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1879), 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, @@ -318981,10 +322523,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -318993,131 +322546,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, - [89779] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(2883), 1, - sym_comment, - ACTIONS(2294), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2290), 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, - [89842] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(2884), 1, - sym_comment, - ACTIONS(2300), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2298), 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, - [89905] = 4, + aux_sym__unquoted_in_list_token1, + [87967] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5987), 1, + anon_sym_DOT, STATE(2885), 1, sym_comment, - ACTIONS(1010), 2, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3199), 1, + sym_cell_path, + ACTIONS(1885), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1008), 48, + ACTIONS(1883), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319125,8 +322571,6 @@ 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, anon_sym_null, @@ -319166,42 +322610,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89966] = 4, - ACTIONS(251), 1, + [88038] = 8, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5987), 1, + anon_sym_DOT, STATE(2886), 1, sym_comment, - ACTIONS(2193), 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(2195), 33, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3204), 1, + sym_cell_path, + ACTIONS(1889), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1887), 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, @@ -319211,10 +322649,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -319223,15 +322672,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, - [90027] = 4, + aux_sym__unquoted_in_list_token1, + [88109] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5987), 1, + anon_sym_DOT, STATE(2887), 1, sym_comment, - ACTIONS(1006), 2, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3206), 1, + sym_cell_path, + ACTIONS(1893), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1004), 48, + ACTIONS(1891), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319239,8 +322697,6 @@ 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, anon_sym_null, @@ -319280,15 +322736,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, - [90088] = 4, + [88180] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5987), 1, + anon_sym_DOT, STATE(2888), 1, sym_comment, - ACTIONS(998), 2, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3207), 1, + sym_cell_path, + ACTIONS(1897), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(996), 48, + ACTIONS(1895), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319296,8 +322760,6 @@ 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, anon_sym_null, @@ -319337,42 +322799,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90149] = 4, - ACTIONS(251), 1, + [88251] = 8, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5987), 1, + anon_sym_DOT, STATE(2889), 1, sym_comment, - ACTIONS(1056), 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(1058), 33, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3208), 1, + sym_cell_path, + ACTIONS(1905), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1903), 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, @@ -319382,10 +322838,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -319394,15 +322861,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, - [90210] = 4, + aux_sym__unquoted_in_list_token1, + [88322] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5987), 1, + anon_sym_DOT, STATE(2890), 1, sym_comment, - ACTIONS(1002), 2, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3209), 1, + sym_cell_path, + ACTIONS(1911), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1000), 48, + ACTIONS(1909), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319410,8 +322886,6 @@ 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, anon_sym_null, @@ -319451,81 +322925,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, - [90271] = 5, - ACTIONS(251), 1, + [88393] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5640), 1, - aux_sym_unquoted_token2, + ACTIONS(5987), 1, + anon_sym_DOT, STATE(2891), 1, sym_comment, - ACTIONS(1695), 6, - 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(1707), 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, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3212), 1, + sym_cell_path, + ACTIONS(1919), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1917), 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, - [90334] = 7, - ACTIONS(251), 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, + [88464] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5888), 1, + ACTIONS(5987), 1, anon_sym_DOT, - STATE(2868), 1, - aux_sym_cell_path_repeat1, STATE(2892), 1, sym_comment, - STATE(3064), 1, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, sym_path, - ACTIONS(986), 14, + STATE(3223), 1, + sym_cell_path, + ACTIONS(1927), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1925), 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, @@ -319534,20 +323042,45 @@ 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(988), 33, + [88535] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2893), 1, + sym_comment, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3225), 1, + sym_cell_path, + ACTIONS(1931), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1929), 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, @@ -319557,10 +323090,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -319569,19 +323113,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, - [90401] = 6, + aux_sym__unquoted_in_list_token1, + [88606] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5997), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5999), 1, - aux_sym__immediate_decimal_token2, - STATE(2893), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2894), 1, sym_comment, - ACTIONS(1795), 2, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3226), 1, + sym_cell_path, + ACTIONS(1935), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1793), 46, + ACTIONS(1933), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319628,21 +323177,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, - [90466] = 6, - ACTIONS(251), 1, + [88677] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6001), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6003), 1, - aux_sym__immediate_decimal_token2, - STATE(2894), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2895), 1, sym_comment, - ACTIONS(1793), 15, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3227), 1, + sym_cell_path, + ACTIONS(1939), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1937), 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, @@ -319651,21 +323231,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 33, + [88748] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1947), 1, + sym__entry_separator, + ACTIONS(5987), 1, + anon_sym_DOT, + ACTIONS(5991), 1, + anon_sym_RBRACK, + ACTIONS(5994), 1, sym_raw_string_begin, + STATE(2896), 1, + sym_comment, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3200), 1, + sym_cell_path, + ACTIONS(5989), 45, 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, @@ -319675,10 +323281,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -319687,16 +323304,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, - [90531] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [88823] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2895), 1, + ACTIONS(5873), 1, + anon_sym_DOT, + STATE(2897), 1, sym_comment, - ACTIONS(2507), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2505), 48, + STATE(2898), 1, + aux_sym_cell_path_repeat1, + STATE(3006), 1, + sym_path, + ACTIONS(982), 6, 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(984), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -319704,13 +323332,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, @@ -319729,14 +323354,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, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -319744,20 +323367,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90592] = 4, + [88892] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2896), 1, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(3006), 1, + sym_path, + STATE(2898), 2, sym_comment, - ACTIONS(1022), 7, + aux_sym_cell_path_repeat1, + ACTIONS(975), 6, 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(1024), 43, + ACTIONS(977), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319801,31 +323428,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90653] = 6, + [88959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6005), 1, - anon_sym_DOT, - ACTIONS(6007), 1, - aux_sym__immediate_decimal_token2, - STATE(2897), 1, + STATE(2899), 1, sym_comment, - ACTIONS(1787), 2, + ACTIONS(2502), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1785), 46, + ACTIONS(2500), 50, 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_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, @@ -319843,6 +323467,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, @@ -319860,223 +323487,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, - [90718] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6009), 1, - anon_sym_DOT, - ACTIONS(6011), 1, - aux_sym__immediate_decimal_token2, - STATE(2898), 1, - sym_comment, - ACTIONS(1645), 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(1647), 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, - [90783] = 6, + [89022] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6013), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6015), 1, - aux_sym__immediate_decimal_token2, - STATE(2899), 1, - sym_comment, - ACTIONS(1637), 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(1639), 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, - [90848] = 4, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(5999), 1, + anon_sym_QMARK2, STATE(2900), 1, sym_comment, - ACTIONS(2249), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2247), 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, - [90909] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - STATE(2901), 1, - sym_comment, - ACTIONS(2294), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2290), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(990), 18, 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, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, @@ -320085,41 +323512,20 @@ 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, - [90974] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - STATE(2902), 1, - sym_comment, - ACTIONS(2300), 2, + ACTIONS(992), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2298), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -320129,21 +323535,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320152,15 +323547,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, - [91039] = 4, + [89087] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2903), 1, + STATE(2901), 1, sym_comment, - ACTIONS(1777), 17, + ACTIONS(1000), 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, @@ -320176,7 +323571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1779), 33, + ACTIONS(1002), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -320184,6 +323579,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320210,81 +323606,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, - [91100] = 4, + [89150] = 29, ACTIONS(251), 1, anon_sym_POUND, - STATE(2904), 1, - sym_comment, - ACTIONS(1026), 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(1028), 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, + ACTIONS(3901), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5859), 1, anon_sym_DQUOTE, + ACTIONS(5863), 1, + sym_raw_string_begin, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(6001), 1, + anon_sym_LPAREN, + ACTIONS(6003), 1, + anon_sym_DOLLAR, + ACTIONS(6005), 1, + anon_sym_DOT_DOT, + ACTIONS(6011), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6013), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6015), 1, + aux_sym_unquoted_token1, + STATE(2825), 1, + sym__inter_single_quotes, + STATE(2826), 1, + sym__inter_double_quotes, + STATE(2902), 1, + sym_comment, + STATE(6119), 1, + sym__val_number_decimal, + STATE(8319), 1, + sym__unquoted_anonymous_prefix, + STATE(8324), 1, + sym__val_range, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5861), 2, sym__str_single_quotes, sym__str_back_ticks, - [91161] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6017), 1, - anon_sym_DOT_DOT2, - STATE(2905), 1, - sym_comment, - ACTIONS(6019), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 16, - anon_sym_DOT_DOT, + ACTIONS(6007), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2871), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(6009), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1770), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320293,31 +323680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2187), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2697), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, @@ -320326,18 +323690,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, - [91226] = 6, + [89263] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + STATE(2903), 1, sym_comment, - ACTIONS(6023), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2070), 16, + ACTIONS(1004), 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, @@ -320353,7 +323714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2076), 31, + ACTIONS(1006), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -320361,6 +323722,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320385,18 +323749,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, - [91291] = 6, + [89326] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6025), 1, - anon_sym_DOT_DOT2, - STATE(2907), 1, + STATE(2904), 1, sym_comment, - ACTIONS(6027), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 16, + ACTIONS(996), 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, @@ -320412,7 +323773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2084), 31, + ACTIONS(998), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -320420,6 +323781,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320444,18 +323808,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, - [91356] = 6, + [89389] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6029), 1, - anon_sym_DOT_DOT2, - STATE(2908), 1, + STATE(2905), 1, sym_comment, - ACTIONS(6031), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5908), 16, + ACTIONS(986), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -320471,7 +323832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5918), 31, + ACTIONS(988), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -320479,6 +323840,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320503,44 +323867,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, - [91421] = 6, - ACTIONS(251), 1, + [89452] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6029), 1, - anon_sym_DOT_DOT2, - STATE(2909), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + STATE(2906), 1, sym_comment, - ACTIONS(6031), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5923), 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(5928), 31, + STATE(2961), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + STATE(3233), 1, + sym_cell_path, + ACTIONS(971), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(969), 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, @@ -320550,10 +323906,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320562,44 +323929,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, - [91486] = 6, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [89523] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6033), 1, - anon_sym_DOT_DOT2, - STATE(2910), 1, + STATE(2907), 1, sym_comment, - ACTIONS(6035), 2, + ACTIONS(1024), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2088), 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(2094), 31, - sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1022), 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, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320609,10 +323965,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320621,77 +323988,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, - [91551] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6037), 1, - anon_sym_EQ2, - STATE(2911), 1, - sym_comment, - ACTIONS(5050), 6, - 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(5048), 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, - [91614] = 6, + aux_sym__unquoted_in_list_token1, + [89586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - STATE(2912), 1, + STATE(2908), 1, sym_comment, - ACTIONS(1851), 2, + ACTIONS(1020), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1843), 46, + ACTIONS(1018), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320699,6 +324007,8 @@ 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, @@ -320738,29 +324048,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91679] = 9, + [89649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(5910), 1, - anon_sym_RBRACK, - ACTIONS(5916), 1, - sym__entry_separator, - ACTIONS(6041), 1, - anon_sym_COMMA, - ACTIONS(6043), 1, - sym_raw_string_begin, - STATE(2913), 1, + STATE(2909), 1, sym_comment, - STATE(7535), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6039), 44, + ACTIONS(1016), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1014), 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, @@ -320800,12 +324107,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, - [91750] = 4, + [89712] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2914), 1, + ACTIONS(5903), 1, + aux_sym__immediate_decimal_token2, + STATE(2910), 1, sym_comment, - ACTIONS(2102), 17, + ACTIONS(1779), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -320823,7 +324132,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(2104), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -320857,34 +324167,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, - [91811] = 8, - ACTIONS(3), 1, + [89777] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1040), 1, - sym__entry_separator, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5925), 1, - anon_sym_RBRACK, - ACTIONS(5928), 1, - sym_raw_string_begin, - STATE(2915), 1, + ACTIONS(6017), 1, + aux_sym__immediate_decimal_token2, + STATE(2911), 1, sym_comment, - ACTIONS(5923), 45, + ACTIONS(1799), 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(1801), 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -320894,21 +324215,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -320917,20 +324227,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, - [91880] = 6, + [89842] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - STATE(2916), 1, + ACTIONS(6019), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6021), 1, + aux_sym__immediate_decimal_token2, + STATE(2912), 1, sym_comment, - ACTIONS(2280), 2, + ACTIONS(1773), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2278), 46, + ACTIONS(1771), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320977,32 +324287,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, - [91945] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, aux_sym__unquoted_in_list_token2, - STATE(2917), 1, + [89909] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6023), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6025), 1, + aux_sym__immediate_decimal_token2, + STATE(2913), 1, sym_comment, - ACTIONS(1836), 2, + ACTIONS(1771), 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(1773), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1828), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -321012,21 +324337,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -321035,17 +324349,19 @@ static const 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, - [92010] = 4, + [89976] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2918), 1, + ACTIONS(5923), 1, + aux_sym__immediate_decimal_token2, + STATE(2914), 1, sym_comment, - ACTIONS(2249), 3, + ACTIONS(1781), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2247), 47, + ACTIONS(1779), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321053,6 +324369,7 @@ 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, @@ -321092,20 +324409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [92071] = 6, + [90041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - STATE(2919), 1, + ACTIONS(6027), 1, + aux_sym__immediate_decimal_token2, + STATE(2915), 1, sym_comment, - ACTIONS(2233), 2, + ACTIONS(1801), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2229), 46, + ACTIONS(1799), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321113,6 +324429,7 @@ 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, @@ -321152,19 +324469,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92136] = 6, - ACTIONS(3), 1, + [90106] = 30, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LPAREN2, - ACTIONS(2245), 1, - aux_sym__unquoted_in_list_token2, - STATE(2920), 1, + ACTIONS(3435), 1, + aux_sym_unquoted_token1, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(6029), 1, + anon_sym_LPAREN, + ACTIONS(6031), 1, + anon_sym_DOLLAR, + ACTIONS(6033), 1, + anon_sym_DOT_DOT, + STATE(2621), 1, + sym__inter_single_quotes, + STATE(2630), 1, + sym__inter_double_quotes, + STATE(2916), 1, + sym_comment, + STATE(6344), 1, + sym__val_number_decimal, + STATE(7700), 1, + sym_unquoted, + STATE(8443), 1, + sym__val_range, + STATE(8468), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6035), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(6037), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7323), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2695), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2697), 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, + [90221] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6039), 1, + anon_sym_DOT, + ACTIONS(6041), 1, + aux_sym__immediate_decimal_token2, + STATE(2917), 1, sym_comment, - ACTIONS(2243), 2, + ACTIONS(1781), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2239), 46, + ACTIONS(1779), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321211,248 +324614,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, - [92201] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6045), 1, - anon_sym_LBRACK2, - STATE(2921), 1, - sym_comment, - ACTIONS(2333), 6, - 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(2337), 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, - [92264] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(2922), 1, - sym_comment, - ACTIONS(2286), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2282), 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, - [92327] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(2923), 1, - sym_comment, - ACTIONS(1040), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1038), 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, - [92390] = 5, + aux_sym__unquoted_in_list_token2, + [90288] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6047), 1, + ACTIONS(6043), 1, sym__newline, - STATE(2924), 2, + STATE(2918), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1312), 6, - 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(1314), 42, - 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, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92453] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6050), 1, - anon_sym_DOT, - ACTIONS(6052), 1, - aux_sym__immediate_decimal_token2, - STATE(2925), 1, - sym_comment, - ACTIONS(1785), 15, + ACTIONS(1308), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321467,20 +324639,18 @@ 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(1787), 33, + ACTIONS(1310), 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_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, @@ -321494,6 +324664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321502,45 +324675,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, - [92518] = 4, - ACTIONS(3), 1, + [90353] = 29, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2926), 1, - sym_comment, - ACTIONS(1787), 3, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5859), 1, + anon_sym_DQUOTE, + ACTIONS(5863), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1785), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(6001), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6003), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6005), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6011), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(6013), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(6015), 1, + aux_sym_unquoted_token1, + STATE(2825), 1, + sym__inter_single_quotes, + STATE(2826), 1, + sym__inter_double_quotes, + STATE(2919), 1, + sym_comment, + STATE(6119), 1, + sym__val_number_decimal, + STATE(8319), 1, + sym__unquoted_anonymous_prefix, + STATE(8324), 1, + sym__val_range, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, 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, + ACTIONS(5861), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(6007), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2871), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(6009), 3, 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(1844), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321549,6 +324749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321557,33 +324759,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_in_list_token1, - aux_sym__unquoted_in_list_token2, - [92579] = 6, + [90466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym__unquoted_in_list_token4, - STATE(2927), 1, - sym_comment, - ACTIONS(2286), 2, - sym_raw_string_begin, + ACTIONS(5882), 1, sym__entry_separator, - ACTIONS(2282), 46, + ACTIONS(5884), 1, + sym_raw_string_begin, + STATE(2802), 1, + aux_sym__multiple_types_repeat1, + STATE(2920), 1, + sym_comment, + ACTIONS(5878), 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_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, @@ -321601,6 +324800,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, @@ -321618,102 +324820,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, - [92644] = 4, + [90533] = 29, ACTIONS(251), 1, anon_sym_POUND, - STATE(2928), 1, - sym_comment, - ACTIONS(1965), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1967), 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, + ACTIONS(3901), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5788), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92704] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6054), 1, - anon_sym_LBRACK2, - STATE(2929), 1, - sym_comment, - ACTIONS(2337), 2, + ACTIONS(5792), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2333), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(5939), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5941), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5943), 1, anon_sym_DOT_DOT, + ACTIONS(5949), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5951), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5953), 1, + aux_sym_unquoted_token1, + STATE(2736), 1, + sym__inter_single_quotes, + STATE(2737), 1, + sym__inter_double_quotes, + STATE(2921), 1, + sym_comment, + STATE(6339), 1, + sym__val_number_decimal, + STATE(8285), 1, + sym__val_range, + STATE(8287), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5790), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5945), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + STATE(2754), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5947), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1748), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2695), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [90646] = 30, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3239), 1, + aux_sym_unquoted_token1, + ACTIONS(3901), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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(3913), 1, anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(4315), 1, + anon_sym_DOT_DOT, + ACTIONS(4509), 1, + anon_sym_DOLLAR, + ACTIONS(5915), 1, + anon_sym_LPAREN, + ACTIONS(5919), 1, + sym_val_date, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(2922), 1, + sym_comment, + STATE(6122), 1, + sym__val_number_decimal, + STATE(6921), 1, + sym_unquoted, + STATE(8344), 1, + sym__val_range, + STATE(8413), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5917), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6889), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321722,6 +324979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321730,110 +324989,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, - [92766] = 11, + [90761] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4831), 1, - anon_sym_DOT_DOT2, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(6056), 1, - sym_filesize_unit, - ACTIONS(6058), 1, - sym_duration_unit, - STATE(2930), 1, - sym_comment, - STATE(7710), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4833), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1707), 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, - [92840] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2321), 1, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5788), 1, + anon_sym_DQUOTE, + ACTIONS(5792), 1, sym_raw_string_begin, - ACTIONS(6060), 1, - sym__entry_separator, - STATE(2931), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2316), 46, - anon_sym_LBRACK, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(5939), 1, anon_sym_LPAREN, + ACTIONS(5941), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, + ACTIONS(5943), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5949), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5951), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5953), 1, + aux_sym_unquoted_token1, + STATE(2736), 1, + sym__inter_single_quotes, + STATE(2737), 1, + sym__inter_double_quotes, + STATE(2923), 1, + sym_comment, + STATE(6339), 1, + sym__val_number_decimal, + STATE(8285), 1, + sym__val_range, + STATE(8287), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, 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, + ACTIONS(5790), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5945), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2754), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5947), 3, 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(1753), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321842,6 +325063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321850,16 +325073,19 @@ static const 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, - [92902] = 5, + [90874] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - aux_sym__immediate_decimal_token2, - STATE(2932), 1, + ACTIONS(6046), 1, + anon_sym_QMARK2, + STATE(2924), 1, sym_comment, - ACTIONS(1785), 15, + ACTIONS(1008), 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, @@ -321873,8 +325099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 33, + ACTIONS(1010), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321882,8 +325107,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -321908,42 +325133,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, - [92964] = 5, - ACTIONS(251), 1, + [90939] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_QMARK2, - STATE(2933), 1, + ACTIONS(6048), 1, + anon_sym_DOT_DOT2, + STATE(2925), 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), 33, + ACTIONS(2137), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(6050), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2131), 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, @@ -321953,10 +325169,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -321965,16 +325192,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, - [93026] = 5, + aux_sym__unquoted_in_list_token1, + [91005] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6065), 1, - anon_sym_QMARK2, - STATE(2934), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2926), 1, sym_comment, - ACTIONS(1012), 15, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3306), 1, + sym_cell_path, + ACTIONS(2049), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321988,7 +325221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1014), 33, + ACTIONS(2051), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322022,14 +325255,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, - [93088] = 5, + [91075] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6067), 1, - aux_sym__immediate_decimal_token2, - STATE(2935), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2927), 1, sym_comment, - ACTIONS(1801), 15, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3252), 1, + sym_cell_path, + ACTIONS(2053), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322044,8 +325283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 33, + ACTIONS(2055), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322079,88 +325317,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, - [93150] = 4, + [91145] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2936), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2928), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1040), 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, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3255), 1, + sym_cell_path, + ACTIONS(1941), 14, + 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, - [93210] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6071), 1, - anon_sym_RBRACE, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 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(1943), 33, sym_raw_string_begin, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2937), 1, - sym_comment, - ACTIONS(6069), 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, @@ -322170,21 +325367,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322193,71 +325379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [93276] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2938), 1, - sym_comment, - ACTIONS(2421), 6, - 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(2423), 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, - [93336] = 4, + [91215] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2939), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2929), 1, sym_comment, - ACTIONS(1008), 15, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3256), 1, + sym_cell_path, + ACTIONS(1871), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -322271,7 +325407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1010), 34, + ACTIONS(1873), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322279,7 +325415,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322306,32 +325441,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, - [93396] = 7, - ACTIONS(3), 1, + [91285] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6077), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2940), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2930), 1, sym_comment, - ACTIONS(6069), 45, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3263), 1, + sym_cell_path, + ACTIONS(1875), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1877), 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, 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, @@ -322341,21 +325491,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322364,15 +325503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [93462] = 4, + [91355] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2941), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2931), 1, sym_comment, - ACTIONS(1004), 15, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3291), 1, + sym_cell_path, + ACTIONS(1879), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -322386,7 +325531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1006), 34, + ACTIONS(1881), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322394,7 +325539,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322421,14 +325565,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, - [93522] = 4, + [91425] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2942), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2932), 1, sym_comment, - ACTIONS(996), 15, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3246), 1, + sym_cell_path, + ACTIONS(1883), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -322442,7 +325593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(998), 34, + ACTIONS(1885), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322450,7 +325601,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322477,14 +325627,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, - [93582] = 4, + [91495] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2943), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2933), 1, sym_comment, - ACTIONS(1000), 15, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3247), 1, + sym_cell_path, + ACTIONS(1887), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -322498,7 +325655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1002), 34, + ACTIONS(1889), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322506,7 +325663,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322533,29 +325689,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, - [93642] = 4, - ACTIONS(3), 1, + [91565] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2944), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2934), 1, sym_comment, - ACTIONS(1028), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1026), 47, - anon_sym_LBRACK, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3249), 1, + sym_cell_path, + ACTIONS(1891), 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(1893), 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, 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, @@ -322565,13 +325739,37 @@ static const uint16_t ts_small_parse_table[] = { 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, + [91635] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2935), 1, + sym_comment, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3253), 1, + sym_cell_path, + ACTIONS(1895), 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, @@ -322580,6 +325778,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(1897), 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, @@ -322588,30 +325813,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, - aux_sym__unquoted_in_list_token1, - [93702] = 4, - ACTIONS(3), 1, + [91705] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2945), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2936), 1, sym_comment, - ACTIONS(1024), 2, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3272), 1, + sym_cell_path, + ACTIONS(1903), 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(1905), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1022), 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, @@ -322621,13 +325863,99 @@ static const uint16_t ts_small_parse_table[] = { aux_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, + [91775] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2937), 1, + sym_comment, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3308), 1, + sym_cell_path, + ACTIONS(1909), 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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, + [91845] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2938), 1, + sym_comment, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3237), 1, + sym_cell_path, + ACTIONS(1917), 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, @@ -322636,6 +325964,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(1919), 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, @@ -322644,16 +325999,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, - [93762] = 4, + [91915] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2946), 1, + STATE(2939), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(2084), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1018), 47, + ACTIONS(2082), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322661,7 +326017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -322701,128 +326057,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, - [93822] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2947), 1, - sym_comment, - ACTIONS(1889), 6, - 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(1891), 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, - [93882] = 4, - ACTIONS(251), 1, + [91977] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2948), 1, + STATE(2940), 1, sym_comment, - ACTIONS(2391), 6, - 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(2393), 43, + ACTIONS(2088), 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_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, + sym__entry_separator, + ACTIONS(2086), 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, - [93942] = 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, + [92039] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6081), 1, - aux_sym__immediate_decimal_token2, - STATE(2949), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2941), 1, sym_comment, - ACTIONS(1793), 14, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3250), 1, + sym_cell_path, + ACTIONS(1925), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322837,19 +326143,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1795), 33, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [92109] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2942), 1, + sym_comment, + ACTIONS(1054), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1052), 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, @@ -322859,10 +326211,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -322871,19 +326234,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, - [94006] = 4, + aux_sym__unquoted_in_list_token1, + [92171] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2950), 1, + ACTIONS(6054), 1, + anon_sym_QMARK2, + STATE(2943), 1, sym_comment, - ACTIONS(2433), 6, + ACTIONS(1008), 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, - ACTIONS(2435), 43, + anon_sym_DOT, + ACTIONS(1010), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322927,19 +326294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94066] = 4, + [92235] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2951), 1, + ACTIONS(6056), 1, + anon_sym_QMARK2, + STATE(2944), 1, sym_comment, - ACTIONS(2399), 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_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2401), 43, + anon_sym_DOT, + ACTIONS(992), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322983,32 +326353,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94126] = 7, - ACTIONS(3), 1, + [92299] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6083), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2952), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2945), 1, sym_comment, - ACTIONS(6069), 45, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3261), 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, + 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, 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, @@ -323018,13 +326403,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + [92369] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2946), 1, + sym_comment, + ACTIONS(1022), 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, @@ -323033,6 +326438,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(1024), 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, @@ -323041,89 +326473,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, - aux_sym_unquoted_token1, - [94192] = 4, + [92431] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2953), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2947), 1, sym_comment, - ACTIONS(2445), 6, - 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(2447), 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, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3296), 1, + sym_cell_path, + ACTIONS(1933), 14, + 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, - [94252] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 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(1935), 33, sym_raw_string_begin, - ACTIONS(6085), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2954), 1, - sym_comment, - ACTIONS(6069), 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, @@ -323133,21 +326523,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -323156,87 +326535,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, - aux_sym_unquoted_token1, - [94318] = 4, + [92501] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2955), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2948), 1, sym_comment, - ACTIONS(2449), 6, - 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(2451), 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, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3257), 1, + sym_cell_path, + ACTIONS(1937), 14, + 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, - [94378] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6007), 1, - aux_sym__immediate_decimal_token2, - STATE(2956), 1, - sym_comment, - ACTIONS(1787), 2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_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(1939), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1785), 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, @@ -323246,21 +326585,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -323269,31 +326597,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, - aux_sym__unquoted_in_list_token1, - [94440] = 5, - ACTIONS(3), 1, + [92571] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6087), 1, - aux_sym__immediate_decimal_token2, - STATE(2957), 1, + STATE(2949), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(1018), 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(1020), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1801), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -323303,13 +326643,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + [92633] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2950), 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, @@ -323318,6 +326678,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(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, @@ -323326,20 +326713,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, - [94502] = 4, + [92695] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(2951), 1, sym_comment, - ACTIONS(1917), 6, + ACTIONS(1000), 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, - ACTIONS(1919), 43, + anon_sym_DOT, + ACTIONS(1002), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323376,6 +326763,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -323383,19 +326771,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94562] = 4, + [92757] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2959), 1, + STATE(2952), 1, sym_comment, - ACTIONS(2461), 6, + ACTIONS(1004), 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, - ACTIONS(2463), 43, + anon_sym_DOT, + ACTIONS(1006), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323432,6 +326821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -323439,19 +326829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94622] = 4, + [92819] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2960), 1, + STATE(2953), 1, sym_comment, - ACTIONS(2465), 6, + ACTIONS(996), 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, - ACTIONS(2467), 43, + anon_sym_DOT, + ACTIONS(998), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323488,6 +326879,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -323495,19 +326887,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94682] = 4, + [92881] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2954), 1, sym_comment, - ACTIONS(1933), 6, + ACTIONS(986), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1935), 43, + anon_sym_DOT, + ACTIONS(988), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323544,6 +326937,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -323551,301 +326945,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94742] = 4, + [92943] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2962), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2955), 1, sym_comment, - ACTIONS(1941), 6, - 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(1943), 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, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3277), 1, + sym_cell_path, + ACTIONS(969), 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(971), 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, - [94802] = 4, - ACTIONS(251), 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, + [93013] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2963), 1, + ACTIONS(6058), 1, + anon_sym_DOT_DOT2, + STATE(2956), 1, sym_comment, - ACTIONS(1945), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1947), 43, + ACTIONS(2078), 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_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, - [94862] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2964), 1, - sym_comment, - ACTIONS(2469), 6, - 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(2471), 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, + sym__entry_separator, + ACTIONS(6060), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 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, - [94922] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [93079] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(2965), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4829), 1, + anon_sym_DOLLAR, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(6062), 1, + anon_sym_DOT, + ACTIONS(6066), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6068), 1, + aux_sym__immediate_decimal_token5, + STATE(2957), 1, sym_comment, - ACTIONS(2064), 6, - 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(2066), 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, - [94982] = 4, + STATE(3324), 1, + sym__immediate_decimal, + ACTIONS(6064), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2185), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1579), 34, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [93159] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2966), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6074), 1, + aux_sym__immediate_decimal_token5, + STATE(2958), 1, sym_comment, - ACTIONS(2473), 6, - 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(2475), 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, + STATE(3354), 1, + sym__immediate_decimal, + ACTIONS(6070), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2123), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1579), 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_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, + [93237] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6074), 1, + aux_sym__immediate_decimal_token5, + STATE(2959), 1, + sym_comment, + STATE(3356), 1, + sym__immediate_decimal, + ACTIONS(6070), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1657), 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_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, + [93315] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6076), 1, + sym__newline, + STATE(2960), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1308), 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(1310), 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, - [95042] = 6, - ACTIONS(251), 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, + [93379] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6089), 1, + ACTIONS(5987), 1, anon_sym_DOT, - ACTIONS(6091), 1, - aux_sym__immediate_decimal_token2, - STATE(2967), 1, + STATE(2961), 1, sym_comment, - ACTIONS(1785), 14, + STATE(2962), 1, + aux_sym_cell_path_repeat1, + STATE(3084), 1, + sym_path, + ACTIONS(984), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(982), 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, @@ -323854,20 +327377,42 @@ 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(1787), 33, + [93447] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6079), 1, + anon_sym_DOT, + STATE(3084), 1, + sym_path, + ACTIONS(977), 2, sym_raw_string_begin, + sym__entry_separator, + STATE(2962), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(975), 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, @@ -323877,10 +327422,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -323889,128 +327445,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, - [95106] = 4, + aux_sym__unquoted_in_list_token1, + [93513] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2968), 1, + STATE(2963), 1, sym_comment, - ACTIONS(2477), 6, - 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(2479), 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, + ACTIONS(1779), 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(1781), 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, - [95166] = 4, - ACTIONS(251), 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, + [93575] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2969), 1, - sym_comment, - ACTIONS(1957), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1959), 43, + ACTIONS(6084), 1, + anon_sym_RBRACK, + ACTIONS(6086), 1, + anon_sym_DOT_DOT2, + ACTIONS(6090), 1, + sym__entry_separator, + ACTIONS(6092), 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_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, + STATE(2964), 1, + sym_comment, + ACTIONS(6088), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6082), 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, - [95226] = 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, + [93645] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6093), 1, - sym__newline, - STATE(2970), 2, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2965), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1312), 15, - anon_sym_DOLLAR, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3266), 1, + sym_cell_path, + ACTIONS(2033), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324025,10 +327594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1314), 32, + ACTIONS(2035), 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, @@ -324048,8 +327620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324058,188 +327628,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95288] = 4, - ACTIONS(251), 1, + [93715] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2971), 1, - sym_comment, - ACTIONS(2481), 6, - 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(2483), 43, + ACTIONS(1036), 1, + sym__entry_separator, + ACTIONS(6086), 1, + anon_sym_DOT_DOT2, + ACTIONS(6096), 1, + anon_sym_RBRACK, + ACTIONS(6099), 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_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, + STATE(2966), 1, + sym_comment, + ACTIONS(6088), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6094), 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, - [95348] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [93785] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2972), 1, + STATE(2967), 1, sym_comment, - ACTIONS(2485), 6, - 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(2487), 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, + ACTIONS(1799), 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(1801), 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, - [95408] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93847] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2973), 1, + STATE(2968), 1, sym_comment, - ACTIONS(1969), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1971), 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, + ACTIONS(1818), 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(1820), 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, - [95468] = 4, - ACTIONS(251), 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, + [93909] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2974), 1, + ACTIONS(6103), 1, + anon_sym_RBRACK, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(6107), 1, + sym_raw_string_begin, + STATE(2969), 1, sym_comment, - ACTIONS(2489), 6, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6101), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2491), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -324247,10 +327828,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, @@ -324269,12 +327853,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, 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, @@ -324282,863 +327867,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95528] = 4, - ACTIONS(251), 1, + [93977] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2975), 1, + ACTIONS(6041), 1, + aux_sym__immediate_decimal_token2, + STATE(2970), 1, sym_comment, - ACTIONS(2493), 6, - 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(2495), 43, + ACTIONS(1781), 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_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_LPAREN2, + sym__entry_separator, + ACTIONS(1779), 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, - [95588] = 4, - ACTIONS(251), 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, + [94041] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2976), 1, - sym_comment, - ACTIONS(1695), 6, - 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(1707), 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, - [95648] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2977), 1, + ACTIONS(6109), 1, + aux_sym__immediate_decimal_token2, + STATE(2971), 1, sym_comment, - ACTIONS(2497), 6, - 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(2499), 43, + ACTIONS(1801), 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_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_LPAREN2, + sym__entry_separator, + ACTIONS(1799), 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, - [95708] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [94105] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2978), 1, + ACTIONS(5975), 1, + aux_sym__immediate_decimal_token2, + STATE(2972), 1, sym_comment, - ACTIONS(5044), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5042), 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, + ACTIONS(1779), 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, - [95768] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2979), 1, - sym_comment, - ACTIONS(5056), 6, - 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(5054), 43, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_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(1781), 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_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_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, - [95828] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94169] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2980), 1, + ACTIONS(6111), 1, + sym__newline, + STATE(2973), 2, 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1899), 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_shebang_repeat1, + ACTIONS(1308), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95888] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2981), 1, - sym_comment, - ACTIONS(2413), 6, - 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(2415), 43, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1310), 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_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_DASH_DASH, - aux_sym__val_number_decimal_token1, + 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, - [95948] = 5, + 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, + [94233] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6011), 1, + ACTIONS(6114), 1, aux_sym__immediate_decimal_token2, - STATE(2982), 1, + STATE(2974), 1, sym_comment, - ACTIONS(1645), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1799), 17, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1647), 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, - [96010] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2983), 1, - sym_comment, - ACTIONS(1056), 6, - 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(1058), 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_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96070] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6096), 1, - aux_sym__immediate_decimal_token2, - STATE(2984), 1, - sym_comment, - ACTIONS(1745), 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(1747), 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, - [96132] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6098), 1, - anon_sym_DOT, - ACTIONS(6100), 1, - aux_sym__immediate_decimal_token2, - STATE(2985), 1, - sym_comment, - ACTIONS(1645), 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(1647), 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_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_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(1801), 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_duration_unit, - [96196] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2986), 1, - sym_comment, - 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_DASH_DASH, - 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, - [96256] = 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94297] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6104), 1, - aux_sym__immediate_decimal_token2, - STATE(2987), 1, - sym_comment, - ACTIONS(1637), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6116), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1639), 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, + STATE(2975), 1, + sym_comment, + ACTIONS(6118), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [96320] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2988), 1, - sym_comment, - 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, + ACTIONS(1830), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96380] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2989), 1, - sym_comment, - 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, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_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(1838), 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_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_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, - [96440] = 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token2, - STATE(2990), 1, + STATE(2976), 1, sym_comment, - ACTIONS(1707), 2, + ACTIONS(1781), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1695), 46, + ACTIONS(1779), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325146,6 +328241,7 @@ 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, @@ -325185,16 +328281,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, - [96502] = 4, + [94427] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2991), 1, + STATE(2977), 1, sym_comment, - ACTIONS(6108), 3, + ACTIONS(1765), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(6106), 46, + ACTIONS(1763), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325202,6 +328299,7 @@ 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, @@ -325241,19 +328339,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, - [96562] = 4, + [94489] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2992), 1, + ACTIONS(6124), 1, + anon_sym_DASH_DASH, + STATE(3122), 1, + sym_long_flag, + STATE(2978), 2, sym_comment, - ACTIONS(1308), 6, + aux_sym_decl_def_repeat1, + ACTIONS(6120), 6, 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(1306), 43, + ACTIONS(6122), 42, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -325289,7 +328392,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -325297,26 +328399,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96622] = 7, + [94555] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6110), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2993), 1, + STATE(2979), 1, sym_comment, - ACTIONS(6069), 45, + ACTIONS(1773), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1771), 47, 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, @@ -325355,27 +328456,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, - aux_sym_unquoted_token1, - [96688] = 7, + aux_sym__unquoted_in_list_token1, + [94617] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6112), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2994), 1, + STATE(2980), 1, sym_comment, - ACTIONS(6069), 45, + ACTIONS(1801), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1799), 47, 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, @@ -325414,17 +328514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [96754] = 4, + aux_sym__unquoted_in_list_token1, + [94679] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2995), 1, + STATE(2981), 1, sym_comment, - ACTIONS(6116), 3, + ACTIONS(1820), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(6114), 46, + ACTIONS(1818), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325432,6 +328533,7 @@ 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, @@ -325471,26 +328573,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, - [96814] = 7, + [94741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6118), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2996), 1, + STATE(2982), 1, sym_comment, - ACTIONS(6069), 45, + ACTIONS(2125), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2123), 47, 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, @@ -325529,198 +328630,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [96880] = 7, + aux_sym__unquoted_in_list_token1, + [94803] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(6105), 1, sym__entry_separator, - ACTIONS(6075), 1, + ACTIONS(6107), 1, sym_raw_string_begin, - ACTIONS(6120), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2997), 1, + ACTIONS(6127), 1, + anon_sym_RBRACK, + STATE(2983), 1, sym_comment, - ACTIONS(6069), 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, - [96946] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6122), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(2998), 1, - sym_comment, - ACTIONS(6069), 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, - [97012] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6124), 1, - anon_sym_RBRACE, - STATE(2931), 1, + STATE(2986), 1, aux_sym__multiple_types_repeat1, - STATE(2999), 1, - sym_comment, - ACTIONS(6069), 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, - [97078] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3000), 1, - sym_comment, - ACTIONS(2417), 6, + ACTIONS(6101), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2419), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -325728,66 +328653,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_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, - [97138] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3001), 1, - sym_comment, - ACTIONS(2417), 6, - 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(2419), 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_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, @@ -325806,12 +328678,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, 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, @@ -325819,76 +328692,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97198] = 4, + [94871] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3002), 1, + ACTIONS(6129), 1, + sym_long_flag_identifier, + ACTIONS(6131), 1, + anon_sym_EQ2, + STATE(2984), 1, sym_comment, - ACTIONS(2425), 6, - 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(2427), 43, + ACTIONS(5010), 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_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, - [97258] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3003), 1, - sym_comment, - ACTIONS(2429), 6, + ACTIONS(5012), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2431), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -325896,10 +328720,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, @@ -325918,38 +328745,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, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, + 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, - [97318] = 7, + [94937] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6126), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(3004), 1, + ACTIONS(6133), 1, + anon_sym_DOT_DOT2, + STATE(2985), 1, sym_comment, - ACTIONS(6069), 45, + ACTIONS(2096), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(6135), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 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, @@ -325989,77 +328811,19 @@ static const 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, - [97384] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [95003] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3005), 1, - sym_comment, - 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, + ACTIONS(2355), 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_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, - [97444] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3006), 1, + ACTIONS(6137), 1, + sym__entry_separator, + STATE(2986), 2, sym_comment, - ACTIONS(2441), 6, + aux_sym__multiple_types_repeat1, + ACTIONS(2350), 48, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2443), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -326067,66 +328831,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_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, - [97504] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3007), 1, - sym_comment, - ACTIONS(5112), 6, - 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(5110), 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_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, @@ -326145,12 +328856,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, 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, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -326158,25 +328871,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97564] = 7, + [95067] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, - sym_raw_string_begin, - ACTIONS(6128), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(3008), 1, + ACTIONS(6140), 1, + anon_sym_DOT_DOT2, + STATE(2987), 1, sym_comment, - ACTIONS(6069), 45, + ACTIONS(2104), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(6142), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2098), 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, @@ -326216,21 +328930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [97630] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [95133] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3009), 1, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(6107), 1, + sym_raw_string_begin, + ACTIONS(6144), 1, + anon_sym_RBRACK, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + STATE(2988), 1, sym_comment, - ACTIONS(6130), 6, + ACTIONS(6101), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(6132), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -326238,10 +328953,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, @@ -326260,12 +328978,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, 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, @@ -326273,76 +328992,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97690] = 4, + [95201] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3010), 1, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6146), 1, + anon_sym_DOT_DOT2, + STATE(2989), 1, sym_comment, - ACTIONS(5116), 6, - 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(5114), 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, + ACTIONS(6148), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 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(1848), 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, - [97750] = 4, - ACTIONS(251), 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, + [95269] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3011), 1, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(6107), 1, + sym_raw_string_begin, + ACTIONS(6150), 1, + anon_sym_RBRACK, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + STATE(2990), 1, sym_comment, - ACTIONS(5104), 6, + ACTIONS(6101), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5102), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -326350,10 +329075,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, @@ -326372,12 +329100,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, 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, @@ -326385,20 +329114,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97810] = 4, - ACTIONS(251), 1, + [95337] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3012), 1, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(6107), 1, + sym_raw_string_begin, + ACTIONS(6152), 1, + anon_sym_RBRACK, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + STATE(2991), 1, sym_comment, - ACTIONS(5108), 6, + ACTIONS(6101), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5106), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -326406,10 +329136,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, @@ -326428,12 +329161,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, 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, @@ -326441,20 +329175,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97870] = 4, - ACTIONS(251), 1, + [95405] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3013), 1, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(6107), 1, + sym_raw_string_begin, + ACTIONS(6154), 1, + anon_sym_RBRACK, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + STATE(2992), 1, sym_comment, - ACTIONS(1008), 6, + ACTIONS(6101), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1010), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -326462,10 +329197,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, @@ -326484,12 +329222,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, 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, @@ -326497,76 +329236,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97930] = 4, + [95473] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3014), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2993), 1, sym_comment, - ACTIONS(1004), 6, - 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(1006), 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, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3285), 1, + sym_cell_path, + ACTIONS(5989), 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(5994), 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, - [97990] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95543] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3015), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(2994), 1, sym_comment, - ACTIONS(996), 6, - 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(998), 43, + STATE(3020), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + STATE(3290), 1, + sym_cell_path, + ACTIONS(6158), 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(6156), 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, + [95613] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(6107), 1, sym_raw_string_begin, + ACTIONS(6160), 1, + anon_sym_RBRACK, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + STATE(2995), 1, + sym_comment, + ACTIONS(6101), 47, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -326574,10 +329382,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, @@ -326596,12 +329407,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, 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, @@ -326609,20 +329421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98050] = 4, - ACTIONS(251), 1, + [95681] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3016), 1, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(6107), 1, + sym_raw_string_begin, + ACTIONS(6162), 1, + anon_sym_RBRACK, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + STATE(2996), 1, sym_comment, - ACTIONS(1000), 6, + ACTIONS(6101), 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_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1002), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -326630,10 +329443,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, @@ -326652,12 +329468,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, 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, @@ -326665,45 +329482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98110] = 5, - ACTIONS(3), 1, + [95749] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - STATE(3017), 1, + STATE(2997), 1, sym_comment, - ACTIONS(2300), 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(2298), 38, + ACTIONS(1304), 15, 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, @@ -326712,37 +329502,20 @@ 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, - [98171] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3018), 1, - sym_comment, - ACTIONS(2467), 2, + ACTIONS(1302), 36, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2465), 46, + sym__newline, 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_null, anon_sym_true, anon_sym_false, - 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, @@ -326752,21 +329525,13 @@ static const uint16_t ts_small_parse_table[] = { 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_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, @@ -326775,29 +329540,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, - aux_sym__unquoted_in_list_token1, - [98230] = 4, - ACTIONS(3), 1, + [95811] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3019), 1, + STATE(2998), 1, sym_comment, - ACTIONS(1935), 2, + ACTIONS(1771), 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(1773), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1933), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -326807,21 +329586,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -326830,16 +329598,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, - [98289] = 4, + [95873] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3020), 1, + STATE(2999), 1, sym_comment, - ACTIONS(1943), 2, + ACTIONS(988), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1941), 46, + ACTIONS(986), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326847,6 +329614,8 @@ 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, anon_sym_null, @@ -326886,28 +329655,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98348] = 4, + [95934] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3021), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(3000), 1, sym_comment, - ACTIONS(1947), 2, + ACTIONS(1036), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1034), 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, + [95997] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6164), 1, + anon_sym_DOT, + ACTIONS(6166), 1, + aux_sym__immediate_decimal_token2, + STATE(3001), 1, + sym_comment, + ACTIONS(1779), 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(1781), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1945), 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, @@ -326917,21 +329760,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -326940,16 +329772,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, - [98407] = 4, + [96062] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3022), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(1781), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2469), 46, + ACTIONS(1779), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326996,15 +329828,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, - [98466] = 4, + aux_sym__unquoted_in_list_token2, + [96123] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3023), 1, + STATE(3003), 1, sym_comment, - ACTIONS(2066), 2, + ACTIONS(2244), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2064), 46, + ACTIONS(2242), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327051,19 +329885,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, - [98525] = 4, + aux_sym__unquoted_in_list_token4, + [96184] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3024), 1, - sym_comment, - ACTIONS(2475), 2, - sym_raw_string_begin, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + ACTIONS(6084), 1, + anon_sym_RBRACK, + ACTIONS(6090), 1, sym__entry_separator, - ACTIONS(2473), 46, + ACTIONS(6170), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + sym_raw_string_begin, + STATE(3004), 1, + sym_comment, + STATE(8043), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6168), 44, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, @@ -327106,15 +329948,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, - [98584] = 4, + [96255] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3025), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(1773), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2477), 46, + ACTIONS(1771), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327161,15 +330004,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98643] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [96316] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3026), 1, + STATE(3006), 1, sym_comment, - ACTIONS(1959), 2, + ACTIONS(1022), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1024), 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, + [96377] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3007), 1, + sym_comment, + ACTIONS(1801), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1957), 46, + ACTIONS(1799), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327216,15 +330118,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, - [98702] = 4, + aux_sym__unquoted_in_list_token2, + [96438] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3027), 1, + STATE(3008), 1, sym_comment, - ACTIONS(1967), 2, + ACTIONS(1820), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1965), 46, + ACTIONS(1818), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327271,32 +330175,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98761] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [96499] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2288), 1, - aux_sym__unquoted_in_list_token4, - STATE(3028), 1, + STATE(3009), 1, sym_comment, - ACTIONS(2286), 9, + ACTIONS(1779), 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(1781), 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(2282), 38, anon_sym_DOLLAR, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327306,18 +330221,10 @@ static const uint16_t ts_small_parse_table[] = { 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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327326,24 +330233,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, - aux_sym__unquoted_in_list_token1, - [98822] = 4, + [96560] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3029), 1, + ACTIONS(1659), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(3010), 1, sym_comment, - ACTIONS(2249), 9, + ACTIONS(2270), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2266), 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(2247), 39, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327364,6 +330272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327381,16 +330292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [98881] = 4, + [96625] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3030), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym__unquoted_in_list_token2, + STATE(3011), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(2230), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2481), 46, + ACTIONS(2226), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327437,28 +330351,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98940] = 4, - ACTIONS(3), 1, + [96690] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3031), 1, + STATE(3012), 1, sym_comment, - ACTIONS(2487), 2, + ACTIONS(1771), 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(1773), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2485), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -327468,21 +330396,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -327491,33 +330408,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, - aux_sym__unquoted_in_list_token1, - [98999] = 5, - ACTIONS(3), 1, + [96751] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - STATE(3032), 1, + STATE(3013), 1, sym_comment, - ACTIONS(2294), 9, + ACTIONS(1763), 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(1765), 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(2290), 38, anon_sym_DOLLAR, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327527,10 +330453,32 @@ static const uint16_t ts_small_parse_table[] = { aux_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, + [96812] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3014), 1, + sym_comment, + ACTIONS(1799), 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, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327539,6 +330487,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(1801), 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, @@ -327547,29 +330522,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, - aux_sym__unquoted_in_list_token1, - [99060] = 4, - ACTIONS(3), 1, + [96873] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3033), 1, + STATE(3015), 1, sym_comment, - ACTIONS(1010), 2, + ACTIONS(1818), 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(1820), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1008), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -327579,13 +330567,32 @@ static const uint16_t ts_small_parse_table[] = { 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, + [96934] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3016), 1, + sym_comment, + ACTIONS(2123), 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, @@ -327594,6 +330601,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(2125), 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, @@ -327602,16 +330636,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, - aux_sym__unquoted_in_list_token1, - [99119] = 4, + [96995] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3034), 1, + STATE(3017), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(2502), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1004), 46, + ACTIONS(2500), 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, + [97056] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(3018), 1, + sym_comment, + ACTIONS(1838), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1830), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327658,28 +330752,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99178] = 4, - ACTIONS(3), 1, + [97121] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3035), 1, + STATE(3019), 1, sym_comment, - ACTIONS(1971), 2, + ACTIONS(1304), 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(1302), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1969), 46, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, 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, @@ -327689,21 +330795,12 @@ static const uint16_t ts_small_parse_table[] = { 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_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327712,29 +330809,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_in_list_token1, - [99237] = 4, - ACTIONS(3), 1, + [97182] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3036), 1, + ACTIONS(6052), 1, + anon_sym_DOT, + STATE(3020), 1, sym_comment, - ACTIONS(2491), 2, + STATE(3024), 1, + aux_sym_cell_path_repeat1, + STATE(3153), 1, + sym_path, + ACTIONS(982), 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(984), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2489), 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, @@ -327744,21 +330857,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -327767,22 +330869,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, - aux_sym__unquoted_in_list_token1, - [99296] = 4, + [97249] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3037), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4877), 1, + anon_sym_DOLLAR, + ACTIONS(6176), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6178), 1, + aux_sym__immediate_decimal_token5, + STATE(3021), 1, sym_comment, - ACTIONS(1645), 8, + STATE(3380), 1, + sym__immediate_decimal, + ACTIONS(6174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2611), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1647), 40, + ACTIONS(1579), 34, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327794,10 +330912,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -327810,7 +330925,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -327820,31 +330934,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [99355] = 4, - ACTIONS(3), 1, + [97326] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(3022), 1, sym_comment, - ACTIONS(2495), 2, + ACTIONS(2082), 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(2084), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2493), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -327854,21 +330979,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -327877,18 +330991,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, - [99414] = 4, + [97387] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3039), 1, - sym_comment, - ACTIONS(998), 2, - sym_raw_string_begin, + ACTIONS(1036), 1, sym__entry_separator, - ACTIONS(996), 46, - anon_sym_LBRACK, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(6096), 1, anon_sym_RBRACK, + ACTIONS(6099), 1, + sym_raw_string_begin, + STATE(3023), 1, + sym_comment, + ACTIONS(6094), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -327933,83 +331052,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, - [99473] = 4, + [97456] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3040), 1, - sym_comment, - ACTIONS(1637), 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(1639), 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, - [99532] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3041), 1, + ACTIONS(6180), 1, + anon_sym_DOT, + STATE(3153), 1, + sym_path, + STATE(3024), 2, sym_comment, - ACTIONS(2435), 2, + aux_sym_cell_path_repeat1, + ACTIONS(975), 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(977), 33, 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, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328019,21 +331099,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -328042,13 +331111,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, - [99591] = 4, + [97521] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3042), 1, + ACTIONS(6183), 1, + anon_sym_DOT, + ACTIONS(6185), 1, + aux_sym__immediate_decimal_token2, + STATE(3025), 1, sym_comment, - ACTIONS(1745), 8, + ACTIONS(1669), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -328057,7 +331129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1747), 40, + ACTIONS(1671), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328098,12 +331170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [99650] = 4, + [97586] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3043), 1, + ACTIONS(6187), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6189), 1, + aux_sym__immediate_decimal_token2, + STATE(3026), 1, sym_comment, - ACTIONS(1781), 8, + ACTIONS(1661), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -328112,7 +331188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1783), 40, + ACTIONS(1663), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328153,78 +331229,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [99709] = 4, + [97651] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3044), 1, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(3027), 1, sym_comment, - ACTIONS(1058), 2, + ACTIONS(2258), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1056), 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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2254), 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, - aux_sym__val_number_token1, - aux_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, + [97714] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3028), 1, + sym_comment, + ACTIONS(2274), 4, + sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_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, - [99768] = 5, + ACTIONS(2272), 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, + [97777] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6100), 1, - aux_sym__immediate_decimal_token2, - STATE(3045), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4877), 1, + anon_sym_DOLLAR, + ACTIONS(6176), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6178), 1, + aux_sym__immediate_decimal_token5, + STATE(3029), 1, sym_comment, - ACTIONS(1645), 8, + STATE(3382), 1, + sym__immediate_decimal, + ACTIONS(6174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2655), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1647), 39, + ACTIONS(1657), 34, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -328237,7 +331388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -328251,7 +331401,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -328261,18 +331410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [99829] = 4, + [97854] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3046), 1, + ACTIONS(6191), 1, + anon_sym_QMARK2, + STATE(3030), 1, sym_comment, - ACTIONS(1707), 2, + ACTIONS(1010), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1695), 46, + ACTIONS(1008), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328280,6 +331428,7 @@ 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, @@ -328319,126 +331468,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99888] = 4, + [97917] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3047), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3031), 1, sym_comment, - ACTIONS(2499), 2, + ACTIONS(2238), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2497), 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_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2234), 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, - aux_sym__val_number_token1, - aux_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, - [99947] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6134), 1, - aux_sym__immediate_decimal_token2, - STATE(3048), 1, - sym_comment, - ACTIONS(1745), 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(1747), 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, - [100008] = 5, + [97980] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token2, - STATE(3049), 1, + STATE(3032), 1, sym_comment, - ACTIONS(1695), 14, + ACTIONS(2086), 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, @@ -328452,7 +331549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 33, + ACTIONS(2088), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328460,8 +331557,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -328486,38 +331583,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, - [100069] = 4, - ACTIONS(251), 1, + [98041] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3050), 1, + ACTIONS(6193), 1, + anon_sym_QMARK2, + STATE(3033), 1, sym_comment, - ACTIONS(1308), 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(1306), 33, + ACTIONS(992), 2, sym_raw_string_begin, - sym__newline, + sym__entry_separator, + ACTIONS(990), 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, @@ -328527,12 +331617,21 @@ static const uint16_t ts_small_parse_table[] = { 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328541,76 +331640,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, - [100128] = 6, + aux_sym__unquoted_in_list_token1, + [98104] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5910), 1, - anon_sym_RBRACK, - ACTIONS(5916), 1, + ACTIONS(6105), 1, sym__entry_separator, - ACTIONS(5918), 1, + ACTIONS(6107), 1, sym_raw_string_begin, - STATE(3051), 1, + STATE(2986), 1, + aux_sym__multiple_types_repeat1, + STATE(3034), 1, sym_comment, - ACTIONS(5908), 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, + ACTIONS(6101), 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, - aux_sym__val_number_token1, - aux_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, - [100191] = 6, + [98169] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1040), 1, - sym__entry_separator, - ACTIONS(5925), 1, - anon_sym_RBRACK, - ACTIONS(5928), 1, - sym_raw_string_begin, - STATE(3052), 1, + ACTIONS(6195), 1, + anon_sym_DOT, + ACTIONS(6197), 1, + aux_sym__immediate_decimal_token2, + STATE(3035), 1, sym_comment, - ACTIONS(5923), 45, + ACTIONS(1781), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1779), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -328655,14 +331759,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, - [100254] = 5, + [98234] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - STATE(3053), 1, + STATE(3036), 1, sym_comment, - ACTIONS(2278), 14, + ACTIONS(1304), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328676,15 +331780,14 @@ 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(2280), 33, + aux_sym_unquoted_token1, + ACTIONS(1302), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -328703,6 +331806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328711,15 +331816,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100315] = 4, + [98295] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6199), 1, + sym__newline, + STATE(3037), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1308), 6, + 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(1310), 42, + 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, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98358] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3054), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + STATE(3038), 1, sym_comment, - ACTIONS(1002), 2, + ACTIONS(2294), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1000), 46, + ACTIONS(2292), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328766,41 +331933,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, - [100374] = 5, - ACTIONS(251), 1, + [98423] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6091), 1, - aux_sym__immediate_decimal_token2, - STATE(3055), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym__unquoted_in_list_token4, + STATE(3039), 1, sym_comment, - ACTIONS(1785), 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(1787), 33, + ACTIONS(2258), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2254), 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, @@ -328810,31 +331968,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [100435] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - STATE(3056), 1, - sym_comment, - ACTIONS(1828), 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, @@ -328843,33 +331983,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(1836), 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, @@ -328878,15 +331991,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, - [100496] = 4, + aux_sym__unquoted_in_list_token1, + [98488] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3057), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + STATE(3040), 1, sym_comment, - ACTIONS(2447), 2, + ACTIONS(1848), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2445), 46, + ACTIONS(1840), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328933,13 +332051,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100555] = 4, + [98553] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3058), 1, + STATE(3041), 1, + sym_comment, + ACTIONS(1018), 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(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_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, + [98614] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_DOT_DOT2, + STATE(3042), 1, sym_comment, - ACTIONS(1785), 15, + ACTIONS(6204), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2131), 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, @@ -328953,8 +332135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 33, + ACTIONS(2137), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328962,8 +332143,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -328988,41 +332167,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, - [100614] = 5, + [98679] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3043), 1, + sym_comment, + ACTIONS(2244), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2242), 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, + [98740] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token2, - STATE(3059), 1, + ACTIONS(6206), 1, + anon_sym_LBRACK2, + STATE(3044), 1, sym_comment, - ACTIONS(1801), 14, - anon_sym_DOT_DOT, + ACTIONS(2304), 6, + 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(2308), 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(1803), 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, + [98803] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym__unquoted_in_list_token4, + STATE(3045), 1, + sym_comment, + ACTIONS(2274), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2272), 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, @@ -329032,10 +332317,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329044,40 +332340,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, - [100675] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [98868] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3060), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym__unquoted_in_list_token4, + STATE(3046), 1, sym_comment, - ACTIONS(1018), 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(1020), 33, + 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, @@ -329087,10 +332376,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329099,12 +332399,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100734] = 4, + aux_sym__unquoted_in_list_token1, + [98933] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3061), 1, + STATE(3047), 1, + sym_comment, + 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_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1016), 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, + [98994] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6208), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6210), 1, + aux_sym__immediate_decimal_token2, + STATE(3048), 1, sym_comment, - ACTIONS(1824), 15, + ACTIONS(1771), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329120,7 +332482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1826), 33, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329154,71 +332516,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, - [100793] = 5, - ACTIONS(3), 1, + [99059] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym__unquoted_in_list_token4, - STATE(3062), 1, + ACTIONS(6212), 1, + anon_sym_DOT_DOT2, + STATE(3049), 1, sym_comment, - ACTIONS(5928), 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(5923), 38, - anon_sym_DOLLAR, + ACTIONS(6214), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6082), 16, 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_in_list_token1, - [100854] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - STATE(3063), 1, - sym_comment, - ACTIONS(1843), 14, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -329232,7 +332543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1851), 33, + ACTIONS(6092), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329240,8 +332551,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329266,14 +332575,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, - [100915] = 4, + [99124] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3064), 1, + ACTIONS(6212), 1, + anon_sym_DOT_DOT2, + STATE(3050), 1, sym_comment, - ACTIONS(1026), 15, + ACTIONS(6214), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6094), 16, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -329287,7 +332602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1028), 33, + ACTIONS(6099), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329295,8 +332610,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329321,15 +332634,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, - [100974] = 4, + [99189] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6216), 1, + anon_sym_EQ2, + STATE(3051), 1, + sym_comment, + ACTIONS(5132), 6, + 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(5130), 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, + [99252] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3065), 1, + STATE(3052), 1, sym_comment, - ACTIONS(2451), 2, + ACTIONS(1002), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2449), 46, + ACTIONS(1000), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -329337,6 +332708,8 @@ 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, anon_sym_null, @@ -329376,41 +332749,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101033] = 5, + [99313] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - STATE(3066), 1, + ACTIONS(5774), 1, + aux_sym_unquoted_token2, + STATE(3053), 1, sym_comment, - ACTIONS(2229), 14, - anon_sym_DOT_DOT, + ACTIONS(1687), 6, + 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(1699), 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(2233), 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, + [99376] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3054), 1, + sym_comment, + ACTIONS(1006), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1004), 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, @@ -329420,10 +332840,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329432,15 +332863,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, - [101094] = 4, + aux_sym__unquoted_in_list_token1, + [99437] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3067), 1, + STATE(3055), 1, sym_comment, - ACTIONS(1919), 2, + ACTIONS(998), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1917), 46, + ACTIONS(996), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -329448,6 +332880,8 @@ 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, anon_sym_null, @@ -329487,13 +332921,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, - [101153] = 4, + [99498] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3068), 1, + ACTIONS(6218), 1, + anon_sym_DOT_DOT2, + STATE(3056), 1, sym_comment, - ACTIONS(1793), 15, + ACTIONS(6220), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 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, @@ -329507,8 +332948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 33, + ACTIONS(2078), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329516,8 +332956,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329542,44 +332980,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, - [101212] = 4, - ACTIONS(3), 1, + [99563] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3069), 1, + STATE(3057), 1, sym_comment, - 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_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1052), 17, 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, @@ -329588,37 +333002,20 @@ 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, - [101271] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3070), 1, - sym_comment, - ACTIONS(1787), 2, + ACTIONS(1054), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1785), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, 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, @@ -329628,21 +333025,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329651,45 +333037,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101330] = 4, - ACTIONS(3), 1, + [99624] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3071), 1, + ACTIONS(6222), 1, + anon_sym_DOT_DOT2, + STATE(3058), 1, sym_comment, - ACTIONS(2094), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2088), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6224), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 16, 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, @@ -329698,39 +333063,18 @@ 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, - [101389] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6075), 1, + ACTIONS(2096), 31, sym_raw_string_begin, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(3072), 1, - sym_comment, - ACTIONS(6069), 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, @@ -329740,21 +333084,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329763,45 +333096,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101452] = 4, - ACTIONS(3), 1, + [99689] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3073), 1, + ACTIONS(6226), 1, + anon_sym_DOT_DOT2, + STATE(3059), 1, sym_comment, - ACTIONS(2507), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2505), 46, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, + ACTIONS(6228), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2098), 16, 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, @@ -329810,37 +333122,18 @@ 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, - [101511] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3074), 1, - sym_comment, - ACTIONS(2534), 2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2104), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2532), 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, @@ -329850,21 +333143,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -329873,16 +333155,19 @@ static const 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, - [101570] = 4, + [99754] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3075), 1, + ACTIONS(6230), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6232), 1, + aux_sym__immediate_decimal_token2, + STATE(3060), 1, sym_comment, - ACTIONS(1795), 2, + ACTIONS(1773), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1793), 46, + ACTIONS(1771), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -329929,44 +333214,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101629] = 4, - ACTIONS(3), 1, + [99819] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3076), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2463), 2, + 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, - sym__entry_separator, - ACTIONS(2461), 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, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, + [99879] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3062), 1, + sym_comment, + ACTIONS(1941), 6, + 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(1943), 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, + [99939] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3063), 1, + sym_comment, + 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2506), 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, + [99999] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3064), 1, + sym_comment, + 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, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, + [100059] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3065), 1, + sym_comment, + ACTIONS(2371), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2373), 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, + [100119] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3066), 1, + sym_comment, + ACTIONS(2375), 6, + 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(2377), 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, + [100179] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3067), 1, + sym_comment, + ACTIONS(986), 6, + 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(988), 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, + [100239] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6234), 1, + anon_sym_QMARK2, + STATE(3068), 1, + sym_comment, + ACTIONS(1008), 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, @@ -329975,37 +333628,20 @@ 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, - [101688] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3077), 1, - sym_comment, - ACTIONS(2187), 2, + ACTIONS(1010), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2181), 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, @@ -330015,21 +333651,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -330038,29 +333663,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, - aux_sym__unquoted_in_list_token1, - [101747] = 4, - ACTIONS(3), 1, + [100301] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3078), 1, + ACTIONS(6236), 1, + anon_sym_QMARK2, + STATE(3069), 1, sym_comment, - ACTIONS(2076), 2, + 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), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2070), 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, @@ -330070,21 +333708,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -330093,16 +333720,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, - [101806] = 4, + [100363] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3079), 1, + ACTIONS(6238), 1, + anon_sym_LBRACK2, + STATE(3070), 1, sym_comment, - ACTIONS(2084), 2, + ACTIONS(2308), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2078), 46, + ACTIONS(2304), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330149,28 +333777,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101865] = 4, - ACTIONS(3), 1, + [100425] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3080), 1, + STATE(3071), 1, sym_comment, - ACTIONS(1803), 2, + ACTIONS(1937), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1939), 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, + [100485] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3072), 1, + sym_comment, + ACTIONS(2379), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2381), 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, + [100545] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3073), 1, + sym_comment, + ACTIONS(2383), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2385), 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, + [100605] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3074), 1, + sym_comment, + ACTIONS(1687), 6, + 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(1699), 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, + [100665] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3075), 1, + sym_comment, + 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_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, + [100725] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3076), 1, + sym_comment, + ACTIONS(5126), 6, + 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(5124), 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, + [100785] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3077), 1, + sym_comment, + ACTIONS(1000), 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(1002), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1801), 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_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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330180,21 +334157,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -330203,29 +334169,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, - aux_sym__unquoted_in_list_token1, - [101924] = 4, - ACTIONS(3), 1, + [100845] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3078), 1, sym_comment, - ACTIONS(2522), 2, + ACTIONS(1004), 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(1006), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2520), 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_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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330235,21 +334213,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -330258,29 +334225,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, - aux_sym__unquoted_in_list_token1, - [101983] = 4, - ACTIONS(3), 1, + [100905] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3082), 1, + STATE(3079), 1, sym_comment, - ACTIONS(2526), 2, + ACTIONS(996), 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(998), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2524), 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_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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330290,21 +334269,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -330313,29 +334281,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, - aux_sym__unquoted_in_list_token1, - [102042] = 4, - ACTIONS(3), 1, + [100965] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3083), 1, + STATE(3080), 1, sym_comment, - ACTIONS(2530), 2, + ACTIONS(986), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(988), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2528), 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_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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330345,21 +334325,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -330368,22 +334337,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, - aux_sym__unquoted_in_list_token1, - [102101] = 4, + [101025] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3084), 1, - sym_comment, - ACTIONS(2100), 2, - sym_raw_string_begin, + ACTIONS(6242), 1, + anon_sym_RBRACE, + ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(2098), 46, + ACTIONS(6246), 1, + sym_raw_string_begin, + STATE(3081), 1, + sym_comment, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6240), 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, @@ -330423,22 +334395,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102160] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [101091] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3082), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(5138), 6, + 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(5136), 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, + [101151] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(2361), 46, + ACTIONS(6246), 1, + sym_raw_string_begin, + ACTIONS(6248), 1, + anon_sym_RBRACE, + STATE(3083), 1, + sym_comment, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6240), 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, @@ -330478,16 +334510,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, - [102219] = 4, + aux_sym_unquoted_token1, + [101217] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3084), 1, sym_comment, - ACTIONS(2367), 2, + ACTIONS(1024), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2365), 46, + ACTIONS(1022), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330495,6 +334527,7 @@ 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, @@ -330534,15 +334567,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, - [102278] = 4, + [101277] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2371), 2, + ACTIONS(1020), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2369), 46, + ACTIONS(1018), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330550,6 +334583,7 @@ 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, @@ -330589,15 +334623,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, - [102337] = 4, + [101337] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3088), 1, + STATE(3086), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(1016), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2373), 46, + ACTIONS(1014), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330605,6 +334639,7 @@ 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, @@ -330644,76 +334679,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, - [102396] = 4, - ACTIONS(3), 1, + [101397] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3087), 1, sym_comment, - ACTIONS(2381), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2379), 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, + ACTIONS(1957), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1959), 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, - aux_sym__val_number_token1, - aux_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, - [102455] = 4, + [101457] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3090), 1, - sym_comment, - ACTIONS(2385), 2, + ACTIONS(2355), 1, sym_raw_string_begin, + ACTIONS(6250), 1, sym__entry_separator, - ACTIONS(2383), 46, + STATE(3088), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2350), 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, @@ -330753,125 +334791,127 @@ static const 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, - [102514] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [101519] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2389), 2, + ACTIONS(5230), 6, + 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(5228), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2387), 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_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, - [102573] = 4, - ACTIONS(3), 1, + [101579] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3090), 1, sym_comment, - ACTIONS(2104), 2, + ACTIONS(5234), 6, + 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(5232), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2102), 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_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, - [102632] = 5, + [101639] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2245), 1, - aux_sym__unquoted_in_list_token2, - STATE(3093), 1, + ACTIONS(6166), 1, + aux_sym__immediate_decimal_token2, + STATE(3091), 1, sym_comment, - ACTIONS(2239), 14, + ACTIONS(1779), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330886,7 +334926,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(2243), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330920,16 +334961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102693] = 5, + [101701] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6138), 1, - sym__newline, - STATE(3094), 2, + ACTIONS(6253), 1, + aux_sym__immediate_decimal_token2, + STATE(3092), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1312), 15, - anon_sym__, + ACTIONS(1799), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330943,11 +334982,14 @@ 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(1314), 31, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1801), 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, @@ -330976,77 +335018,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102754] = 5, + [101763] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6141), 1, - anon_sym_LBRACK2, - STATE(3095), 1, + STATE(3093), 1, sym_comment, - ACTIONS(2333), 15, - anon_sym_LBRACK, - anon_sym_DOT_DOT, + ACTIONS(1034), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1036), 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(2337), 32, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101823] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3094), 1, + sym_comment, + ACTIONS(2520), 6, + 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(2522), 43, sym_raw_string_begin, - 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [102815] = 4, - ACTIONS(3), 1, + [101883] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3095), 1, + sym_comment, + ACTIONS(2458), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2460), 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, + [101943] = 4, + ACTIONS(251), 1, anon_sym_POUND, STATE(3096), 1, sym_comment, - ACTIONS(1826), 2, + 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2468), 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, + [102003] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(1824), 46, + ACTIONS(6246), 1, + sym_raw_string_begin, + ACTIONS(6255), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3097), 1, + sym_comment, + ACTIONS(6240), 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, @@ -331086,20 +335300,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102874] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [102069] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, - sym__entry_separator, - ACTIONS(6145), 1, - anon_sym_RBRACK, - ACTIONS(6148), 1, + STATE(3098), 1, + sym_comment, + ACTIONS(2482), 6, + 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(2484), 43, sym_raw_string_begin, - STATE(3097), 1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, + [102129] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3099), 1, + sym_comment, + 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, + ACTIONS(2401), 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, + [102189] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3100), 1, sym_comment, - ACTIONS(6143), 45, + ACTIONS(6259), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6257), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -331144,69 +335469,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, - [102937] = 4, + [102249] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3101), 1, sym_comment, - ACTIONS(1801), 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(1803), 33, + ACTIONS(5222), 6, + 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(5220), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [102996] = 4, + [102309] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3099), 1, + ACTIONS(6261), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6263), 1, + aux_sym__immediate_decimal_token2, + STATE(3102), 1, sym_comment, - ACTIONS(1022), 15, + ACTIONS(1771), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -331220,7 +335549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1024), 33, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331254,34 +335583,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, - [103055] = 11, + [102373] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(4831), 1, - anon_sym_DOT_DOT2, - ACTIONS(4922), 1, + ACTIONS(4946), 1, aux_sym_unquoted_token2, - ACTIONS(6150), 1, + ACTIONS(6265), 1, + anon_sym_DOT_DOT2, + ACTIONS(6269), 1, sym_filesize_unit, - ACTIONS(6152), 1, + ACTIONS(6271), 1, sym_duration_unit, - STATE(3100), 1, + STATE(3103), 1, sym_comment, - STATE(7577), 1, + STATE(8201), 1, sym__expr_parenthesized_immediate, - ACTIONS(4833), 2, + ACTIONS(6267), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, + ACTIONS(1687), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 35, - ts_builtin_sym_end, + ACTIONS(1699), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331293,8 +335621,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, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -331316,39 +335646,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [103128] = 4, - ACTIONS(251), 1, + [102447] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, - sym_comment, - ACTIONS(6156), 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(6154), 33, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6273), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3104), 1, + sym_comment, + ACTIONS(6240), 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, @@ -331358,83 +335681,13 @@ static const uint16_t ts_small_parse_table[] = { aux_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, - [103186] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3102), 1, - sym_comment, - ACTIONS(2445), 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(2447), 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, - [103244] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3103), 1, - sym_comment, - ACTIONS(2477), 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, @@ -331443,33 +335696,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(2479), 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, @@ -331478,39 +335704,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, - [103302] = 4, + aux_sym_unquoted_token1, + [102513] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3104), 1, + ACTIONS(6185), 1, + aux_sym__immediate_decimal_token2, + STATE(3105), 1, sym_comment, - ACTIONS(2449), 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(2451), 33, + ACTIONS(1669), 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(1671), 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, + [102575] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6197), 1, + aux_sym__immediate_decimal_token2, + STATE(3106), 1, + sym_comment, + ACTIONS(1781), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1779), 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, @@ -331520,29 +335795,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [103360] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3105), 1, - sym_comment, - ACTIONS(2088), 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, @@ -331551,33 +335810,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(2094), 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, @@ -331586,66 +335818,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103418] = 4, + aux_sym__unquoted_in_list_token1, + [102637] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3106), 1, + STATE(3107), 1, sym_comment, - ACTIONS(2481), 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(2483), 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, + ACTIONS(1000), 6, + 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(1002), 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [103476] = 4, + [102697] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(6275), 1, + aux_sym__immediate_decimal_token2, + STATE(3108), 1, + sym_comment, + ACTIONS(1711), 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), 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, + [102759] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3109), 1, + sym_comment, + ACTIONS(996), 6, + 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(998), 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, + [102819] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6277), 1, + anon_sym_DOT, + ACTIONS(6279), 1, + aux_sym__immediate_decimal_token2, + STATE(3110), 1, + sym_comment, + ACTIONS(1669), 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(1671), 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, + [102883] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6281), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6283), 1, + aux_sym__immediate_decimal_token2, + STATE(3111), 1, + sym_comment, + ACTIONS(1661), 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(1663), 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, + [102947] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3112), 1, + sym_comment, + ACTIONS(5226), 6, + 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(5224), 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, + [103007] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6285), 1, + sym__newline, + STATE(3113), 2, sym_comment, - ACTIONS(1056), 14, + aux_sym_shebang_repeat1, + ACTIONS(1308), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331659,14 +336183,11 @@ 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(1058), 33, + aux_sym__unquoted_in_record_token1, + ACTIONS(1310), 32, 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, @@ -331686,6 +336207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331694,12 +336217,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, - [103534] = 4, + [103069] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3108), 1, + STATE(3114), 1, + sym_comment, + ACTIONS(1052), 6, + 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(1054), 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, + [103129] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3115), 1, + sym_comment, + ACTIONS(1949), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1951), 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, + [103189] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3116), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2456), 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, + [103249] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6288), 1, + anon_sym_DOT, + ACTIONS(6290), 1, + aux_sym__immediate_decimal_token2, + STATE(3117), 1, sym_comment, - ACTIONS(2497), 14, + ACTIONS(1779), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331714,7 +336409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2499), 33, + ACTIONS(1781), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331748,39 +336443,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103592] = 4, + [103313] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3109), 1, + STATE(3118), 1, sym_comment, - ACTIONS(2064), 14, - anon_sym_DOT_DOT, + ACTIONS(2470), 6, + 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(2472), 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(2066), 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, + [103373] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3119), 1, + sym_comment, + 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, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, + [103433] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3120), 1, + sym_comment, + ACTIONS(1883), 6, + 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(1885), 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, + [103493] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3121), 1, + sym_comment, + ACTIONS(1004), 6, + 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(1006), 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, + [103553] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3122), 1, + sym_comment, + ACTIONS(6292), 6, + 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(6294), 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, + [103613] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3123), 1, + sym_comment, + ACTIONS(2462), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2464), 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, + [103673] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3124), 1, + sym_comment, + ACTIONS(2486), 6, + 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(2488), 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, + [103733] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6296), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3125), 1, + sym_comment, + ACTIONS(6240), 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, @@ -331790,10 +336870,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -331802,39 +336893,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, - [103650] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [103799] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3110), 1, - sym_comment, - ACTIONS(2485), 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(2487), 33, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6298), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3126), 1, + sym_comment, + ACTIONS(6240), 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, @@ -331844,10 +336929,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -331856,17 +336952,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, - [103708] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [103865] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3111), 1, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, + sym_raw_string_begin, + ACTIONS(6300), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3127), 1, sym_comment, - ACTIONS(2532), 14, + ACTIONS(6240), 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, @@ -331875,20 +337003,41 @@ 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(2534), 33, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [103931] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6302), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3128), 1, + sym_comment, + ACTIONS(6240), 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, @@ -331898,29 +337047,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [103766] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3112), 1, - sym_comment, - ACTIONS(1917), 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, @@ -331929,33 +337062,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(1919), 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, @@ -331964,93 +337070,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, - [103824] = 4, + aux_sym_unquoted_token1, + [103997] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2181), 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(2187), 33, + ACTIONS(1891), 6, + 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(1893), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [103882] = 4, - ACTIONS(251), 1, + [104057] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3114), 1, - sym_comment, - ACTIONS(2070), 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(2076), 33, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6304), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3130), 1, + sym_comment, + ACTIONS(6240), 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, @@ -332060,29 +337162,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [103940] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3115), 1, - sym_comment, - ACTIONS(1969), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332091,33 +337177,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(1971), 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, @@ -332126,39 +337185,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, - [103998] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [104123] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3116), 1, - sym_comment, - ACTIONS(2078), 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(2084), 33, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6306), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3131), 1, + sym_comment, + ACTIONS(6240), 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, @@ -332168,29 +337221,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [104056] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3117), 1, - sym_comment, - ACTIONS(2520), 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, @@ -332199,33 +337236,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(2522), 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, @@ -332234,93 +337244,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, - [104114] = 4, + aux_sym_unquoted_token1, + [104189] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3132), 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, + ACTIONS(1895), 6, + 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(1897), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [104172] = 4, - ACTIONS(251), 1, + [104249] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3119), 1, - sym_comment, - ACTIONS(2528), 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(2530), 33, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6308), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3133), 1, + sym_comment, + ACTIONS(6240), 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, @@ -332330,29 +337336,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [104230] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3120), 1, - sym_comment, - ACTIONS(2461), 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, @@ -332361,33 +337351,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(2463), 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, @@ -332396,39 +337359,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, - [104288] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [104315] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3121), 1, - sym_comment, - ACTIONS(5908), 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(5918), 33, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, sym_raw_string_begin, + ACTIONS(6310), 1, + anon_sym_RBRACE, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3134), 1, + sym_comment, + ACTIONS(6240), 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, @@ -332438,29 +337395,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [104346] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3122), 1, - sym_comment, - ACTIONS(6160), 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, @@ -332469,33 +337410,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(6158), 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, @@ -332504,341 +337418,775 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104404] = 4, + aux_sym_unquoted_token1, + [104381] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3135), 1, sym_comment, - ACTIONS(6164), 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(6162), 33, + ACTIONS(1304), 6, + 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(1302), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [104462] = 4, + [104441] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3136), 1, sym_comment, - ACTIONS(1785), 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(1787), 33, + 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, - 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [104520] = 4, + [104501] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3137), 1, sym_comment, - ACTIONS(5923), 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(5928), 33, + 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, - 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [104578] = 4, + [104561] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2361), 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(2363), 33, + ACTIONS(1917), 6, + 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(1919), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [104636] = 4, + [104621] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3127), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2365), 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(2367), 33, + ACTIONS(2391), 6, + 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(2393), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [104694] = 4, + [104681] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3128), 1, + STATE(3140), 1, sym_comment, - ACTIONS(2369), 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(2371), 33, + ACTIONS(2391), 6, + 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(2393), 43, 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_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, + [104741] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3141), 1, + sym_comment, + ACTIONS(2439), 6, + 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(2441), 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, + [104801] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3142), 1, + sym_comment, + ACTIONS(2474), 6, + 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(2476), 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, + [104861] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3143), 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2480), 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, + [104921] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3144), 1, + sym_comment, + 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_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2365), 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, + [104981] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3145), 1, + sym_comment, + 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_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, + [105041] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3146), 1, + sym_comment, + 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, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [105101] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5725), 1, + aux_sym__unquoted_in_list_token2, + STATE(3147), 1, + sym_comment, + ACTIONS(1699), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1687), 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, - [104752] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [105163] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3129), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2373), 14, + ACTIONS(6314), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6312), 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, @@ -332847,20 +338195,39 @@ 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(2375), 33, + [105223] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6316), 1, + aux_sym__immediate_decimal_token2, + STATE(3149), 1, + sym_comment, + ACTIONS(1801), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1799), 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, @@ -332870,10 +338237,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -332882,17 +338260,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, - [104810] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [105285] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3150), 1, sym_comment, - ACTIONS(2379), 14, + ACTIONS(2429), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2427), 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, @@ -332901,20 +338307,92 @@ 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(2381), 33, + [105344] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3151), 1, + sym_comment, + ACTIONS(2389), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2387), 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, + [105403] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3152), 1, + sym_comment, + ACTIONS(2409), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2407), 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, @@ -332924,10 +338402,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -332936,13 +338425,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, - [104868] = 4, + aux_sym__unquoted_in_list_token1, + [105462] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3131), 1, + STATE(3153), 1, sym_comment, - ACTIONS(2383), 14, + ACTIONS(1022), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -332956,7 +338447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2385), 33, + ACTIONS(1024), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332990,17 +338481,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, - [104926] = 4, + [105521] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3154), 1, sym_comment, - ACTIONS(2387), 14, + ACTIONS(1304), 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_record_token1, + ACTIONS(1302), 33, + sym_raw_string_begin, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + 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, + [105580] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3155), 1, + sym_comment, + ACTIONS(2244), 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(2242), 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_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333009,20 +338581,38 @@ 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(2389), 33, + aux_sym__unquoted_in_list_token4, + [105639] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3156), 1, + sym_comment, + ACTIONS(2417), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2415), 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, @@ -333032,10 +338622,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -333044,17 +338645,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, - [104984] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [105698] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3157), 1, sym_comment, - ACTIONS(1941), 14, + ACTIONS(2421), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2419), 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, @@ -333063,20 +338692,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1943), 33, + [105757] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3158), 1, + sym_comment, + ACTIONS(2425), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2423), 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, @@ -333086,10 +338732,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -333098,17 +338755,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105042] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [105816] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3134), 1, + ACTIONS(2260), 1, + aux_sym__unquoted_in_list_token4, + STATE(3159), 1, + sym_comment, + ACTIONS(2258), 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(2254), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [105877] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3160), 1, + sym_comment, + ACTIONS(2433), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2431), 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, + [105936] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3161), 1, + sym_comment, + ACTIONS(2437), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2435), 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, + [105995] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3162), 1, + sym_comment, + ACTIONS(1002), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1000), 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, + [106054] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3163), 1, sym_comment, - ACTIONS(6106), 14, + ACTIONS(2445), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2443), 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, @@ -333117,20 +339023,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6108), 33, + [106113] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3164), 1, + sym_comment, + ACTIONS(2449), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2447), 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, @@ -333140,10 +339063,21 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -333152,12 +339086,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, - [105100] = 4, + aux_sym__unquoted_in_list_token1, + [106172] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3135), 1, + ACTIONS(6290), 1, + aux_sym__immediate_decimal_token2, + STATE(3165), 1, sym_comment, - ACTIONS(2465), 14, + ACTIONS(1779), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -333172,7 +339109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2467), 33, + ACTIONS(1781), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333206,726 +339143,12460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105158] = 4, + [106233] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3166), 1, + sym_comment, + ACTIONS(1006), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1004), 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, + [106292] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + STATE(3167), 1, + sym_comment, + ACTIONS(1830), 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(1838), 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, + [106353] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6318), 1, + aux_sym__immediate_decimal_token2, + STATE(3168), 1, + sym_comment, + ACTIONS(1799), 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(1801), 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, + [106414] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3169), 1, + sym_comment, + ACTIONS(2397), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2395), 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, + [106473] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3170), 1, + sym_comment, + ACTIONS(2413), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2411), 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, + [106532] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6320), 1, + anon_sym_LBRACK2, + STATE(3171), 1, + sym_comment, + ACTIONS(2304), 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(2308), 32, + sym_raw_string_begin, + 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, + [106593] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3172), 1, + sym_comment, + ACTIONS(1669), 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(1671), 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, + [106652] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3173), 1, + sym_comment, + ACTIONS(2488), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2486), 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, + [106711] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3174), 1, + sym_comment, + ACTIONS(1781), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1779), 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, + [106770] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3175), 1, + sym_comment, + ACTIONS(1018), 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(1020), 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, + [106829] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3176), 1, + sym_comment, + ACTIONS(1661), 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(1663), 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, + [106888] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3177), 1, + sym_comment, + ACTIONS(2494), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2492), 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, + [106947] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3178), 1, + sym_comment, + ACTIONS(1773), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1771), 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, + [107006] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3179), 1, + sym_comment, + ACTIONS(2502), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2500), 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, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_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, + [107065] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3180), 1, + sym_comment, + ACTIONS(1711), 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), 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, + [107124] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3181), 1, + sym_comment, + ACTIONS(1014), 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(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_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, + [107183] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3182), 1, + sym_comment, + ACTIONS(1801), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1799), 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, + [107242] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3183), 1, + sym_comment, + ACTIONS(1767), 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(1769), 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, + [107301] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3184), 1, + sym_comment, + ACTIONS(1820), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1818), 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, + [107360] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3185), 1, + sym_comment, + ACTIONS(2096), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2090), 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, + [107419] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6279), 1, + aux_sym__immediate_decimal_token2, + STATE(3186), 1, + sym_comment, + ACTIONS(1669), 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(1671), 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, + [107480] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3187), 1, + sym_comment, + ACTIONS(1943), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1941), 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, + [107539] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3188), 1, + sym_comment, + ACTIONS(998), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(996), 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, + [107598] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6322), 1, + aux_sym__immediate_decimal_token2, + STATE(3189), 1, + sym_comment, + ACTIONS(1711), 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), 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, + [107659] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3190), 1, + sym_comment, + ACTIONS(2506), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2504), 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, + [107718] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3191), 1, + sym_comment, + ACTIONS(2510), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2508), 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, + [107777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3192), 1, + sym_comment, + ACTIONS(1885), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1883), 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, + [107836] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3193), 1, + sym_comment, + ACTIONS(1893), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1891), 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, + [107895] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3194), 1, + sym_comment, + ACTIONS(1699), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1687), 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, + [107954] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3195), 1, + sym_comment, + ACTIONS(2104), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2098), 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, + [108013] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6324), 1, + sym__newline, + STATE(3196), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1308), 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(1310), 31, + sym_raw_string_begin, + 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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [108074] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3197), 1, + sym_comment, + ACTIONS(2078), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2072), 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, + [108133] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3198), 1, + sym_comment, + ACTIONS(1897), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1895), 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, + [108192] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3199), 1, + sym_comment, + ACTIONS(2361), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2359), 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, + [108251] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1951), 1, + sym__entry_separator, + ACTIONS(6329), 1, + anon_sym_RBRACK, + ACTIONS(6332), 1, + sym_raw_string_begin, + STATE(3200), 1, + sym_comment, + ACTIONS(6327), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [108314] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + STATE(3201), 1, + sym_comment, + ACTIONS(2292), 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(2294), 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, + [108375] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3202), 1, + sym_comment, + ACTIONS(2137), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2131), 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, + [108434] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3203), 1, + sym_comment, + ACTIONS(988), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(986), 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, + [108493] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3204), 1, + sym_comment, + ACTIONS(1919), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1917), 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, + [108552] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6246), 1, + sym_raw_string_begin, + STATE(3088), 1, + aux_sym__multiple_types_repeat1, + STATE(3205), 1, + sym_comment, + ACTIONS(6240), 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, + [108615] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3206), 1, + sym_comment, + 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_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, + [108674] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3207), 1, + sym_comment, + ACTIONS(2369), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2367), 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, + [108733] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3208), 1, + sym_comment, + ACTIONS(1927), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1925), 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, + [108792] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3209), 1, + sym_comment, + ACTIONS(1935), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1933), 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, + [108851] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3210), 1, + sym_comment, + ACTIONS(1779), 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(1781), 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, + [108910] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym__unquoted_in_list_token4, + STATE(3211), 1, + sym_comment, + ACTIONS(2238), 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(2234), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [108971] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3212), 1, + sym_comment, + ACTIONS(2373), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2371), 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, + [109030] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3213), 1, + sym_comment, + ACTIONS(1771), 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(1773), 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, + [109089] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3214), 1, + sym_comment, + ACTIONS(2472), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2470), 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, + [109148] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + STATE(3215), 1, + sym_comment, + ACTIONS(1840), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1848), 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, + [109209] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2222), 1, + aux_sym__unquoted_in_list_token4, + STATE(3216), 1, + sym_comment, + ACTIONS(6099), 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(6094), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [109270] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3217), 1, + sym_comment, + ACTIONS(2084), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2082), 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, + [109329] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3218), 1, + sym_comment, + ACTIONS(2088), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2086), 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, + [109388] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3219), 1, + sym_comment, + ACTIONS(1799), 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(1801), 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, + [109447] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym__unquoted_in_list_token2, + STATE(3220), 1, + sym_comment, + ACTIONS(2266), 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(2270), 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, + [109508] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3221), 1, + sym_comment, + ACTIONS(1818), 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(1820), 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, + [109567] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(5061), 1, + aux_sym_unquoted_token2, + ACTIONS(6334), 1, + anon_sym_DOT_DOT2, + ACTIONS(6338), 1, + sym_filesize_unit, + ACTIONS(6340), 1, + sym_duration_unit, + STATE(3222), 1, + sym_comment, + STATE(8150), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6336), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [109640] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3223), 1, + sym_comment, + ACTIONS(2377), 2, + sym_raw_string_begin, + 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, + anon_sym_o_GT_GT, + 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, + [109699] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6342), 1, + anon_sym_DOT, + ACTIONS(6344), 1, + aux_sym__immediate_decimal_token2, + STATE(3224), 1, + sym_comment, + ACTIONS(1779), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 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_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, + [109762] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3225), 1, + sym_comment, + ACTIONS(1939), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1937), 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, + [109821] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3226), 1, + sym_comment, + ACTIONS(2381), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2379), 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, + [109880] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3227), 1, + sym_comment, + ACTIONS(2385), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2383), 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, + [109939] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6084), 1, + anon_sym_RBRACK, + ACTIONS(6090), 1, + sym__entry_separator, + ACTIONS(6092), 1, + sym_raw_string_begin, + STATE(3228), 1, + sym_comment, + ACTIONS(6082), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [110002] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1036), 1, + sym__entry_separator, + ACTIONS(6096), 1, + anon_sym_RBRACK, + ACTIONS(6099), 1, + sym_raw_string_begin, + STATE(3229), 1, + sym_comment, + ACTIONS(6094), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [110065] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2232), 1, + aux_sym__unquoted_in_list_token2, + STATE(3230), 1, + sym_comment, + ACTIONS(2226), 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(2230), 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, + [110126] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token2, + STATE(3231), 1, + sym_comment, + ACTIONS(1687), 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(1699), 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, + [110187] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6346), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6348), 1, + aux_sym__immediate_decimal_token2, + STATE(3232), 1, + sym_comment, + ACTIONS(1771), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 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_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, + [110250] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3233), 1, + sym_comment, + ACTIONS(1054), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1052), 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, + [110309] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym__unquoted_in_list_token4, + STATE(3234), 1, + sym_comment, + ACTIONS(2274), 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(2272), 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, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_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, + [110370] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3235), 1, + sym_comment, + ACTIONS(2401), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2399), 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, + [110429] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3236), 1, + sym_comment, + ACTIONS(1771), 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(1773), 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, + [110487] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3237), 1, + sym_comment, + ACTIONS(2371), 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(2373), 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, + [110545] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3238), 1, + sym_comment, + ACTIONS(2082), 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(2084), 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, + [110603] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3239), 1, + sym_comment, + ACTIONS(2086), 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(2088), 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, + [110661] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3240), 1, + sym_comment, + ACTIONS(1799), 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(1801), 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, + [110719] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3241), 1, + sym_comment, + ACTIONS(6257), 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(6259), 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, + [110777] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3242), 1, + sym_comment, + ACTIONS(2399), 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(2401), 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, + [110835] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3243), 1, + sym_comment, + ACTIONS(1818), 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(1820), 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, + [110893] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3244), 1, + sym_comment, + ACTIONS(2411), 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(2413), 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, + [110951] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3245), 1, + sym_comment, + ACTIONS(2415), 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(2417), 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, + [111009] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3246), 1, + sym_comment, + ACTIONS(2359), 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(2361), 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, + [111067] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3247), 1, + sym_comment, + ACTIONS(1917), 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(1919), 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, + [111125] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3248), 1, + sym_comment, + ACTIONS(1304), 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(1302), 32, + sym_raw_string_begin, + sym__newline, + 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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [111183] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3249), 1, + sym_comment, + ACTIONS(2363), 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(2365), 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, + [111241] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3250), 1, + sym_comment, + ACTIONS(2375), 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(2377), 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, + [111299] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6350), 1, + anon_sym_COMMA, + STATE(3251), 1, + sym_comment, + ACTIONS(6168), 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), 32, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, + [111359] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3252), 1, + sym_comment, + ACTIONS(2504), 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(2506), 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, + [111417] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3253), 1, + sym_comment, + ACTIONS(2367), 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(2369), 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, + [111475] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3254), 1, + sym_comment, + ACTIONS(2419), 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(2421), 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, + [111533] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3255), 1, + sym_comment, + ACTIONS(2508), 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(2510), 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, + [111591] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3256), 1, + sym_comment, + ACTIONS(1883), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_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(1885), 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, + [111649] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3257), 1, + sym_comment, + ACTIONS(2383), 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(2385), 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, + [111707] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3258), 1, + sym_comment, + ACTIONS(2427), 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(2429), 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, + [111765] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3259), 1, + sym_comment, + ACTIONS(2431), 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(2433), 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, + [111823] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3260), 1, + sym_comment, + ACTIONS(1687), 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(1699), 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, + [111881] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3261), 1, + sym_comment, + ACTIONS(1937), 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(1939), 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, + [111939] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6352), 1, + aux_sym__immediate_decimal_token2, + STATE(3262), 1, + sym_comment, + ACTIONS(1799), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 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_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, + [111999] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3263), 1, + sym_comment, + ACTIONS(1891), 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(1893), 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, + [112057] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3264), 1, + sym_comment, + 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, + 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, + [112115] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3265), 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_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, + [112173] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3266), 1, + sym_comment, + ACTIONS(2492), 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(2494), 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, + [112231] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3267), 1, + sym_comment, + ACTIONS(2447), 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(2449), 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, + [112289] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3268), 1, + sym_comment, + ACTIONS(2407), 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(2409), 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, + [112347] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3269), 1, + sym_comment, + ACTIONS(6082), 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(6092), 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, + [112405] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3270), 1, + sym_comment, + ACTIONS(6356), 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(6354), 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, + [112463] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3271), 1, + sym_comment, + ACTIONS(6360), 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(6358), 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, + [112521] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3272), 1, + sym_comment, + 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, + anon_sym_o_GT, + anon_sym_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(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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [112579] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3273), 1, + sym_comment, + ACTIONS(6094), 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(6099), 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, + [112637] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3274), 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_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, + [112695] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6362), 1, + anon_sym_DOT, + ACTIONS(6364), 1, + aux_sym__immediate_decimal_token2, + STATE(3275), 1, + sym_comment, + ACTIONS(1779), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 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, + 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, + [112757] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6344), 1, + aux_sym__immediate_decimal_token2, + STATE(3276), 1, + sym_comment, + ACTIONS(1779), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 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_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, + [112817] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3277), 1, + sym_comment, + ACTIONS(1052), 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(1054), 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, + [112875] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3278), 1, + sym_comment, + ACTIONS(5930), 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(5937), 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, + [112933] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3279), 1, + sym_comment, + ACTIONS(1000), 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(1002), 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, + [112991] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3280), 1, + sym_comment, + ACTIONS(2435), 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(2437), 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, + [113049] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3281), 1, + sym_comment, + ACTIONS(1669), 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(1671), 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, + [113107] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6366), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6368), 1, + aux_sym__immediate_decimal_token2, + STATE(3282), 1, + sym_comment, + ACTIONS(1771), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 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, + 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, + [113169] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3283), 1, + sym_comment, + ACTIONS(6372), 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(6370), 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, + [113227] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3284), 1, + sym_comment, + ACTIONS(6376), 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(6374), 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, + [113285] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3285), 1, + sym_comment, + ACTIONS(6327), 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(6332), 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, + [113343] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3286), 1, + sym_comment, + ACTIONS(1004), 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(1006), 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, + [113401] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3287), 1, + sym_comment, + ACTIONS(996), 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(998), 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, + [113459] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3288), 1, + sym_comment, + ACTIONS(6380), 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(6378), 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, + [113517] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3289), 1, + sym_comment, + ACTIONS(6380), 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(6378), 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, + [113575] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3290), 1, + sym_comment, + ACTIONS(6384), 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(6382), 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, + [113633] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3291), 1, + sym_comment, + ACTIONS(1895), 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(1897), 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, + [113691] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3292), 1, + sym_comment, + ACTIONS(2423), 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(2425), 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, + [113749] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3293), 1, + sym_comment, + ACTIONS(1661), 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(1663), 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, + [113807] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3294), 1, + sym_comment, + ACTIONS(2072), 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(2078), 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, + [113865] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3295), 1, + sym_comment, + ACTIONS(986), 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(988), 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, + [113923] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3296), 1, + sym_comment, + ACTIONS(2379), 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(2381), 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, + [113981] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3297), 1, + sym_comment, + ACTIONS(1779), 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(1781), 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, + [114039] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3298), 1, + sym_comment, + ACTIONS(1711), 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), 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, + [114097] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3299), 1, + sym_comment, + ACTIONS(2395), 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(2397), 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, + [114155] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3300), 1, + sym_comment, + ACTIONS(1767), 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(1769), 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, + [114213] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3301), 1, + sym_comment, + ACTIONS(2443), 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(2445), 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, + [114271] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3302), 1, + sym_comment, + ACTIONS(2090), 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(2096), 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, + [114329] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3303), 1, + sym_comment, + ACTIONS(2098), 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(2104), 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, + [114387] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3304), 1, + sym_comment, + ACTIONS(6312), 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(6314), 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, + [114445] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3305), 1, + sym_comment, + ACTIONS(2131), 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(2137), 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, + [114503] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3306), 1, + sym_comment, + ACTIONS(1941), 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(1943), 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, + [114561] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3047), 1, + anon_sym_DOT_DOT2, + ACTIONS(6386), 1, + sym_filesize_unit, + ACTIONS(6388), 1, + sym_duration_unit, + STATE(3307), 1, + sym_comment, + ACTIONS(3049), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114627] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3308), 1, + sym_comment, + ACTIONS(1933), 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(1935), 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, + [114685] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6390), 1, + aux_sym__immediate_decimal_token2, + STATE(3309), 1, + sym_comment, + ACTIONS(1799), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 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, + 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, + [114744] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6364), 1, + aux_sym__immediate_decimal_token2, + STATE(3310), 1, + sym_comment, + ACTIONS(1779), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 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, + 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, + [114803] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3311), 1, + sym_comment, + ACTIONS(1779), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 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_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, + [114860] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3312), 1, + sym_comment, + ACTIONS(1771), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 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_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, + [114917] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3313), 1, + sym_comment, + ACTIONS(1799), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 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_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, + [114974] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3314), 1, + sym_comment, + ACTIONS(1818), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1820), 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_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, + [115031] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(6392), 1, + anon_sym_DOT_DOT2, + STATE(3315), 1, + sym_comment, + ACTIONS(6394), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [115096] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(6396), 1, + anon_sym_DOT_DOT2, + STATE(3316), 1, + sym_comment, + ACTIONS(6398), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 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, + [115161] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3317), 1, + sym_comment, + ACTIONS(6402), 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(6400), 32, + sym_raw_string_begin, + 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, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_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, + [115218] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3318), 1, + sym_comment, + ACTIONS(1799), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 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, + 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, + [115274] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3319), 1, + sym_comment, + STATE(7602), 1, + sym_block, + STATE(8144), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [115350] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6416), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6418), 1, + aux_sym__immediate_decimal_token2, + STATE(3320), 1, + sym_comment, + ACTIONS(1771), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1773), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [115410] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3321), 1, + sym_comment, + STATE(7665), 1, + sym_block, + STATE(8006), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [115486] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3322), 1, + sym_comment, + STATE(7733), 1, + sym_block, + STATE(8205), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [115562] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6420), 1, + anon_sym_DOT, + ACTIONS(6422), 1, + aux_sym__immediate_decimal_token2, + STATE(3323), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [115622] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(6424), 1, + anon_sym_DOT_DOT2, + STATE(3324), 1, + sym_comment, + ACTIONS(6426), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 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, + [115686] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3325), 1, + sym_comment, + STATE(7650), 1, + sym_block, + STATE(8147), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [115762] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3091), 1, + anon_sym_DOT_DOT2, + ACTIONS(6428), 1, + sym_filesize_unit, + ACTIONS(6430), 1, + sym_duration_unit, + STATE(3326), 1, + sym_comment, + ACTIONS(3093), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [115826] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3327), 1, + sym_comment, + STATE(7514), 1, + sym_block, + STATE(8014), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [115902] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(6432), 1, + anon_sym_DOT_DOT2, + STATE(3328), 1, + sym_comment, + ACTIONS(6434), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [115966] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3329), 1, + sym_comment, + STATE(7629), 1, + sym_block, + STATE(8186), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116042] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3330), 1, + sym_comment, + STATE(6752), 1, + sym_block, + STATE(8037), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116118] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3331), 1, + sym_comment, + STATE(6753), 1, + sym_block, + STATE(8044), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116194] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3332), 1, + sym_comment, + STATE(6712), 1, + sym_block, + STATE(7985), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116270] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3333), 1, + sym_comment, + STATE(6723), 1, + sym_block, + STATE(7988), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116346] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3334), 1, + sym_comment, + STATE(7207), 1, + sym_block, + STATE(7997), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116422] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3335), 1, + sym_comment, + STATE(7211), 1, + sym_block, + STATE(7999), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116498] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3336), 1, + sym_comment, + STATE(7064), 1, + sym_block, + STATE(8049), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116574] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(3337), 1, + sym_comment, + STATE(7066), 1, + sym_block, + STATE(8050), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116650] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3338), 1, + sym_comment, + ACTIONS(1779), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 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, + 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, + [116706] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + anon_sym_DOT, + STATE(1733), 1, + aux_sym_cell_path_repeat1, + STATE(1898), 1, + sym_path, + STATE(2174), 1, + sym_cell_path, + STATE(3339), 1, + sym_comment, + ACTIONS(1945), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6438), 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(1947), 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, + [116772] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3340), 1, + sym_comment, + ACTIONS(1771), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 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, + 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, + [116828] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3341), 1, + sym_comment, + STATE(7787), 1, + sym_block, + STATE(8076), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [116904] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3342), 1, + sym_comment, + ACTIONS(1818), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1820), 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, + 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, + [116960] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_COLON, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(3343), 1, + sym_comment, + STATE(7398), 1, + sym_block, + STATE(8067), 1, + sym_returns, + STATE(8387), 1, + sym__one_type, + STATE(8516), 1, + sym__multiple_types, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [117036] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6441), 1, + aux_sym__immediate_decimal_token2, + STATE(3344), 1, + sym_comment, + ACTIONS(1799), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1801), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [117093] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6443), 1, + anon_sym_DOT, + ACTIONS(6445), 1, + aux_sym__immediate_decimal_token2, + STATE(3345), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [117152] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6422), 1, + aux_sym__immediate_decimal_token2, + STATE(3346), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [117209] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(2635), 1, + sym_cell_path, + STATE(3347), 1, + sym_comment, + ACTIONS(1945), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6438), 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(1947), 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, + [117274] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6447), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6449), 1, + aux_sym__immediate_decimal_token2, + STATE(3348), 1, + sym_comment, + ACTIONS(1771), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1773), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [117333] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(3349), 1, + sym_comment, + ACTIONS(2266), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2270), 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, + [117391] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3350), 1, + sym_comment, + ACTIONS(1818), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1820), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [117445] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(3351), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [117503] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3352), 1, + sym_comment, + ACTIONS(2292), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2294), 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, + [117561] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3353), 1, + sym_comment, + ACTIONS(2272), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2274), 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_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, + [117615] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3354), 1, + sym_comment, + ACTIONS(1840), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 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, + [117673] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3355), 1, + sym_comment, + ACTIONS(2244), 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_LPAREN2, + ACTIONS(2242), 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, + [117727] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(3356), 1, + sym_comment, + ACTIONS(2226), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2230), 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, + [117785] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(3357), 1, + sym_comment, + ACTIONS(1036), 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(1034), 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, + [117843] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3358), 1, + sym_comment, + ACTIONS(1771), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1773), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [117897] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3359), 1, + sym_comment, + ACTIONS(1799), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1801), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [117951] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3360), 1, + sym_comment, + ACTIONS(2234), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2238), 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_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, + [118005] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(3361), 1, + sym_comment, + ACTIONS(2258), 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(2254), 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, + [118063] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3362), 1, + sym_comment, + ACTIONS(2274), 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(2272), 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, + [118121] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3363), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [118175] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3364), 1, + sym_comment, + ACTIONS(2238), 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(2234), 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, + [118233] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6451), 1, + aux_sym__immediate_decimal_token2, + STATE(3365), 1, + sym_comment, + ACTIONS(1799), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1801), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [118289] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6445), 1, + aux_sym__immediate_decimal_token2, + STATE(3366), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [118345] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6453), 1, + sym__newline, + ACTIONS(6455), 1, + anon_sym_RBRACK, + STATE(3367), 1, + sym_comment, + STATE(3370), 1, + aux_sym_shebang_repeat1, + STATE(3513), 1, + aux_sym__multiple_types_repeat2, + STATE(7670), 1, + sym__one_type, + STATE(8449), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [118415] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(3368), 1, + sym_comment, + ACTIONS(1036), 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(1034), 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, + [118472] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(3369), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [118529] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6453), 1, + sym__newline, + STATE(3370), 1, + sym_comment, + STATE(3510), 1, + aux_sym__multiple_types_repeat2, + STATE(3662), 1, + aux_sym_shebang_repeat1, + STATE(7664), 1, + sym__one_type, + STATE(8449), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [118596] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3371), 1, + sym_comment, + ACTIONS(2274), 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(2272), 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, + [118653] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3372), 1, + sym_comment, + ACTIONS(1771), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1773), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [118706] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3373), 1, + sym_comment, + ACTIONS(2238), 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(2234), 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, + [118763] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3374), 1, + sym_comment, + ACTIONS(1799), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1801), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [118816] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(3375), 1, + sym_comment, + ACTIONS(1687), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [118871] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3376), 1, + sym_comment, + ACTIONS(1818), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1820), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [118924] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3377), 1, + sym_comment, + ACTIONS(2244), 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_LPAREN2, + ACTIONS(2242), 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, + [118977] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3378), 1, + sym_comment, + ACTIONS(2292), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2294), 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, + [119034] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(3379), 1, + sym_comment, + ACTIONS(2258), 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(2254), 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, + [119091] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3136), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3380), 1, sym_comment, - ACTIONS(1793), 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(1795), 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, - [105216] = 4, + ACTIONS(1840), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 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, + [119148] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3137), 1, + STATE(3381), 1, sym_comment, - ACTIONS(1824), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1826), 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, - [105274] = 5, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [119201] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6166), 1, - anon_sym_COMMA, - STATE(3138), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(3382), 1, sym_comment, - ACTIONS(6039), 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(6043), 32, - sym_raw_string_begin, - 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [105334] = 4, + ACTIONS(2226), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2230), 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, + [119258] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3139), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(3383), 1, sym_comment, - ACTIONS(6114), 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(6116), 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, - [105392] = 4, + ACTIONS(2266), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2270), 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, + [119315] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3140), 1, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3384), 1, sym_comment, - ACTIONS(2098), 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(2100), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(6457), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5466), 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_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, + [119383] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(6473), 1, anon_sym_DOLLAR, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6477), 1, + anon_sym_DOT, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + STATE(3385), 1, + sym_comment, + STATE(3722), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3824), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1579), 24, + anon_sym_DASH_DASH, + anon_sym_in2, 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, - [105450] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [119453] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3386), 1, sym_comment, - ACTIONS(1945), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1947), 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, - [105508] = 4, + ACTIONS(2454), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5276), 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(2456), 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, + [119507] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3387), 1, sym_comment, - ACTIONS(1957), 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(1959), 33, - sym_raw_string_begin, + ACTIONS(6485), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + 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_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [105566] = 4, + anon_sym_RBRACE, + [119557] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3388), 1, sym_comment, - ACTIONS(5799), 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(5806), 33, - sym_raw_string_begin, + ACTIONS(6487), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + 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_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [105624] = 4, + anon_sym_RBRACE, + [119607] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(3144), 1, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6489), 1, + anon_sym_GT2, + ACTIONS(6491), 1, + anon_sym_AT, + STATE(3389), 1, sym_comment, - ACTIONS(1965), 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(1967), 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, - [105682] = 4, + STATE(7732), 1, + sym__all_type, + STATE(8602), 1, + sym_param_cmd, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(8129), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [119671] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3145), 1, + ACTIONS(5061), 1, + aux_sym_unquoted_token2, + STATE(3390), 1, sym_comment, - ACTIONS(2473), 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(2475), 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, - [105740] = 4, + ACTIONS(1687), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [119725] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3146), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3391), 1, sym_comment, - ACTIONS(2489), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2491), 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, - [105798] = 4, + STATE(3404), 1, + aux_sym_shebang_repeat1, + ACTIONS(5476), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5474), 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_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, + [119793] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3147), 1, + ACTIONS(5597), 1, + sym__newline, + STATE(3392), 1, sym_comment, - ACTIONS(2102), 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(2104), 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, - [105856] = 4, + STATE(3406), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5476), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5474), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [119855] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3148), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3384), 1, + aux_sym_shebang_repeat1, + STATE(3393), 1, sym_comment, - ACTIONS(2493), 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(2495), 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, - [105914] = 4, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5474), 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, + 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, + [119925] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3149), 1, + ACTIONS(5597), 1, + sym__newline, + STATE(3394), 1, sym_comment, - ACTIONS(1645), 8, + STATE(3410), 1, + aux_sym_shebang_repeat1, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5476), 5, 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(1647), 39, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5474), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333936,6 +351607,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -333950,9 +351622,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -333960,457 +351629,569 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [105972] = 4, + [119983] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(3150), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + STATE(3395), 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_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, - [106030] = 4, + STATE(3412), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5474), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [120063] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(3151), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + ACTIONS(6519), 1, + anon_sym_and2, + STATE(3396), 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_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, - [106088] = 4, + STATE(3414), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5474), 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, + [120145] = 20, ACTIONS(251), 1, anon_sym_POUND, - STATE(3152), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + ACTIONS(6519), 1, + anon_sym_and2, + ACTIONS(6521), 1, + anon_sym_xor2, + STATE(3397), 1, sym_comment, - ACTIONS(6143), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6148), 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, - [106146] = 4, + STATE(3416), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5474), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [120229] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3153), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3398), 1, sym_comment, - ACTIONS(2469), 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(2471), 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, - [106204] = 4, + STATE(3418), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5474), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, + [120301] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3154), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3399), 1, sym_comment, - ACTIONS(1000), 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(1002), 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, - [106262] = 4, + STATE(3420), 1, + aux_sym_shebang_repeat1, + ACTIONS(5476), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 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, + 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, + [120367] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(3155), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3400), 1, sym_comment, - ACTIONS(6156), 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(6154), 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, - [106320] = 4, + STATE(3422), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5474), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120441] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(3156), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + STATE(3401), 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), 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, - [106378] = 4, + STATE(3424), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5474), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120517] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(3157), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + STATE(3402), 1, sym_comment, - ACTIONS(1933), 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(1935), 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, - [106436] = 4, + STATE(3426), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5474), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [120595] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6491), 1, + anon_sym_AT, + ACTIONS(6523), 1, + anon_sym_GT2, + STATE(3403), 1, + sym_comment, + STATE(7638), 1, + sym__all_type, + STATE(8384), 1, + sym_param_cmd, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(8129), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [120659] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3158), 1, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3404), 1, sym_comment, - ACTIONS(1637), 8, + ACTIONS(5468), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1639), 39, - ts_builtin_sym_end, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5466), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334422,7 +352203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -334436,144 +352217,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - [106494] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3159), 1, - sym_comment, - ACTIONS(1695), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 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, - [106552] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3160), 1, - sym_comment, - ACTIONS(2421), 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(2423), 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, - [106610] = 4, + [120725] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3161), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3405), 1, sym_comment, - ACTIONS(1745), 8, + STATE(3440), 1, + aux_sym_shebang_repeat1, + ACTIONS(5484), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6495), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1747), 39, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5482), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334584,7 +352259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -334598,35 +352273,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [106668] = 4, + [120793] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3406), 1, sym_comment, - ACTIONS(1781), 8, - anon_sym_GT2, + ACTIONS(6461), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5468), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1783), 39, - ts_builtin_sym_end, + ACTIONS(5466), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334638,6 +352308,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_DASH2, anon_sym_in2, anon_sym_and2, @@ -334652,365 +352323,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [106726] = 4, + [120853] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3163), 1, - sym_comment, - ACTIONS(1308), 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(1306), 32, - sym_raw_string_begin, + ACTIONS(5512), 1, sym__newline, - 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106784] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3164), 1, - sym_comment, - ACTIONS(1008), 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(1010), 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, - [106842] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3165), 1, - sym_comment, - ACTIONS(1004), 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(1006), 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, - [106900] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3166), 1, - sym_comment, - 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, - 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, - [106958] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3167), 1, - sym_comment, - ACTIONS(996), 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(998), 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, - [107016] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3168), 1, - sym_comment, - ACTIONS(1801), 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(1803), 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, - [107074] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3057), 1, - anon_sym_DOT_DOT2, - ACTIONS(6180), 1, - sym_filesize_unit, - ACTIONS(6182), 1, - sym_duration_unit, - STATE(3169), 1, + STATE(3407), 1, sym_comment, - ACTIONS(3059), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, - anon_sym_GT2, + STATE(3441), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5484), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(1707), 36, - sym__newline, + ACTIONS(5482), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -335024,7 +352364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335037,99 +352376,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107139] = 4, + [120915] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3408), 1, sym_comment, - ACTIONS(6186), 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(6184), 32, - sym_raw_string_begin, - 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [107196] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, + ACTIONS(6525), 41, + sym__newline, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6190), 1, anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(3171), 1, - sym_comment, - STATE(6736), 1, - sym_block, - STATE(7561), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 31, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335159,152 +352421,469 @@ 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, - [107272] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, + anon_sym_record, anon_sym_list, - ACTIONS(6198), 1, anon_sym_LBRACE, - STATE(3172), 1, + anon_sym_RBRACE, + [120965] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3409), 1, sym_comment, - STATE(6475), 1, - sym_block, - STATE(7688), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [107348] = 14, + STATE(3442), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5482), 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, + 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, + [121035] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3173), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3410), 1, sym_comment, - STATE(7076), 1, - sym_block, - STATE(7667), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [107424] = 9, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5468), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5466), 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_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, + [121091] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5512), 1, + sym__newline, + STATE(3411), 1, + sym_comment, + STATE(3443), 1, + aux_sym_shebang_repeat1, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5484), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5482), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [121149] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + ACTIONS(6531), 1, + anon_sym_bit_DASHand2, + ACTIONS(6533), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6535), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3412), 1, + sym_comment, + ACTIONS(6457), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5466), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [121227] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + STATE(3413), 1, + sym_comment, + STATE(3444), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5482), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [121307] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + ACTIONS(6531), 1, + anon_sym_bit_DASHand2, + ACTIONS(6533), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6535), 1, + anon_sym_bit_DASHor2, + ACTIONS(6537), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3414), 1, + sym_comment, + ACTIONS(6457), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5466), 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_xor2, + anon_sym_or2, + [121387] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + ACTIONS(6519), 1, + anon_sym_and2, + STATE(3415), 1, + sym_comment, + STATE(3445), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5482), 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, + [121469] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT, - STATE(1681), 1, - aux_sym_cell_path_repeat1, - STATE(1921), 1, - sym_path, - STATE(2097), 1, - sym_cell_path, - STATE(3174), 1, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + ACTIONS(6531), 1, + anon_sym_bit_DASHand2, + ACTIONS(6533), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6535), 1, + anon_sym_bit_DASHor2, + ACTIONS(6537), 1, + anon_sym_and2, + ACTIONS(6539), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3416), 1, sym_comment, - ACTIONS(1885), 5, + ACTIONS(6457), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(6202), 13, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5466), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335317,53 +352896,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1887), 23, + anon_sym_or2, + [121551] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6493), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + ACTIONS(6519), 1, anon_sym_and2, + ACTIONS(6521), 1, anon_sym_xor2, - anon_sym_or2, + STATE(3417), 1, + sym_comment, + STATE(3446), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5482), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [121635] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3418), 1, + sym_comment, + ACTIONS(6457), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5466), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, + [121705] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3419), 1, + sym_comment, + STATE(3447), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5482), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, - [107490] = 8, + [121777] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3085), 1, - anon_sym_DOT_DOT2, - ACTIONS(6205), 1, - sym_filesize_unit, - ACTIONS(6207), 1, - sym_duration_unit, - STATE(3175), 1, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3420), 1, sym_comment, - ACTIONS(3087), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, + ACTIONS(5468), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1707), 35, - ts_builtin_sym_end, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5466), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335375,7 +353111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -335389,843 +353125,166 @@ static const uint16_t ts_small_parse_table[] = { 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, + [121841] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3421), 1, + sym_comment, + STATE(3505), 1, + aux_sym_shebang_repeat1, + ACTIONS(5484), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5482), 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, + 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, - [107554] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(3176), 1, - sym_comment, - STATE(6310), 1, - sym_block, - STATE(7648), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [107630] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3177), 1, - sym_comment, - STATE(6922), 1, - sym_block, - STATE(7651), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [107706] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3178), 1, - sym_comment, - STATE(6954), 1, - sym_block, - STATE(7551), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [107782] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(3179), 1, - sym_comment, - STATE(6478), 1, - sym_block, - STATE(7691), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [107858] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(3180), 1, - sym_comment, - STATE(6257), 1, - sym_block, - STATE(7480), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [107934] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3181), 1, - sym_comment, - STATE(7071), 1, - sym_block, - STATE(7640), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108010] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(3182), 1, - sym_comment, - STATE(6764), 1, - sym_block, - STATE(7564), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108086] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_comment, - STATE(7252), 1, - sym_block, - STATE(7572), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108162] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3184), 1, - sym_comment, - STATE(7255), 1, - sym_block, - STATE(7576), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108238] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(3185), 1, - sym_comment, - STATE(6264), 1, - sym_block, - STATE(7485), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108314] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3186), 1, - sym_comment, - STATE(7444), 1, - sym_block, - STATE(7666), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108390] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(3187), 1, - sym_comment, - STATE(6289), 1, - sym_block, - STATE(7647), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108466] = 14, + [121907] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(3188), 1, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3422), 1, sym_comment, - STATE(6836), 1, - sym_block, - STATE(7470), 1, - sym_returns, - STATE(8037), 1, - sym__one_type, - STATE(8046), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [108542] = 9, + ACTIONS(6457), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5466), 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, + [121979] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(2528), 1, - sym_cell_path, - STATE(3189), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3423), 1, sym_comment, - ACTIONS(1885), 5, + STATE(3449), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(6202), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5482), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336236,49 +353295,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, - ACTIONS(1887), 23, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, + [122053] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + ACTIONS(6531), 1, + anon_sym_bit_DASHand2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3424), 1, + sym_comment, + ACTIONS(6457), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5466), 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, - [108607] = 4, + [122127] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(3190), 1, - sym_comment, - ACTIONS(1056), 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(1058), 33, - anon_sym_EQ, + ACTIONS(5512), 1, sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + STATE(3425), 1, + sym_comment, + STATE(3450), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5482), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336289,39 +353415,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_RPAREN, - 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, - [108661] = 4, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122203] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(3191), 1, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + ACTIONS(6531), 1, + anon_sym_bit_DASHand2, + ACTIONS(6533), 1, + anon_sym_bit_DASHxor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3426), 1, sym_comment, - ACTIONS(2298), 5, + ACTIONS(6457), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2300), 38, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5466), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336334,43 +353477,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_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_bit_DASHor2, + [122279] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + STATE(3427), 1, + sym_comment, + STATE(3451), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108715] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3192), 1, - sym_comment, - ACTIONS(2294), 13, - sym__newline, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5482), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336382,47 +353538,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2290), 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_bit_DASHor2, + [122357] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3428), 1, + sym_comment, + STATE(3452), 1, + aux_sym_shebang_repeat1, + ACTIONS(5480), 2, + anon_sym_GT2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108773] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(3193), 1, - sym_comment, - ACTIONS(1040), 13, - sym__newline, + ACTIONS(5478), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336434,12 +353582,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, - ACTIONS(1038), 28, - anon_sym_GT2, - anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336448,33 +353591,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [108831] = 6, - ACTIONS(3), 1, + [122425] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3194), 1, - sym_comment, - ACTIONS(2300), 13, + ACTIONS(5547), 1, sym__newline, + STATE(3429), 1, + sym_comment, + STATE(3454), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5480), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5478), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336486,12 +353632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2298), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336500,29 +353642,49 @@ static const uint16_t ts_small_parse_table[] = { 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, - [108889] = 4, - ACTIONS(3), 1, + [122487] = 13, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(2249), 14, + ACTIONS(5547), 1, sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3430), 1, + sym_comment, + STATE(3456), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5478), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336534,109 +353696,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2247), 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, - [108943] = 12, + [122557] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6209), 1, + ACTIONS(5547), 1, sym__newline, - ACTIONS(6211), 1, - anon_sym_RBRACK, - STATE(3196), 1, + STATE(3431), 1, sym_comment, - STATE(3206), 1, + STATE(3458), 1, aux_sym_shebang_repeat1, - STATE(3375), 1, - aux_sym__multiple_types_repeat2, - STATE(7241), 1, - sym__one_type, - STATE(7758), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [109013] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3197), 1, - sym_comment, - ACTIONS(2290), 5, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5480), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2294), 38, - sym__newline, + ACTIONS(5478), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336650,9 +353740,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -336665,8 +353752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -336674,17 +353759,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109067] = 6, - ACTIONS(3), 1, + [122615] = 18, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(3198), 1, - sym_comment, - ACTIONS(2286), 13, + ACTIONS(5547), 1, sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + STATE(3432), 1, + sym_comment, + STATE(3460), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5478), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336696,48 +353818,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2282), 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, + [122695] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + ACTIONS(6519), 1, + anon_sym_and2, + STATE(3433), 1, + sym_comment, + STATE(3462), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [109125] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(3199), 1, - sym_comment, - ACTIONS(2286), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5478), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336748,50 +353881,157 @@ static const 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(2282), 28, - anon_sym_GT2, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [122777] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6493), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + ACTIONS(6519), 1, anon_sym_and2, + ACTIONS(6521), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + STATE(3434), 1, + sym_comment, + STATE(3464), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, 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, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5478), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [122861] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3435), 1, + sym_comment, + STATE(3466), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5478), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_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, - [109182] = 5, + [122933] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(3200), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3436), 1, sym_comment, - ACTIONS(1695), 5, + STATE(3468), 1, + aux_sym_shebang_repeat1, + ACTIONS(5480), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6495), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1707), 36, - sym__newline, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5478), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336803,9 +354043,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336818,37 +354056,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109237] = 6, + [122999] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6215), 1, - aux_sym__immediate_decimal_token2, - STATE(3201), 1, - sym_comment, - ACTIONS(1793), 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(1795), 30, + ACTIONS(5547), 1, sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + STATE(3437), 1, + sym_comment, + STATE(3470), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5478), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336860,46 +354114,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_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, - [109294] = 6, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123073] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6217), 1, - anon_sym_DOT, - ACTIONS(6219), 1, - aux_sym__immediate_decimal_token2, - STATE(3202), 1, - sym_comment, - ACTIONS(1785), 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(1787), 30, + ACTIONS(5547), 1, sym__newline, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + STATE(3438), 1, + sym_comment, + STATE(3472), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5478), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336911,87 +354175,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_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, - [109351] = 6, - ACTIONS(3), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [123149] = 17, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3203), 1, - sym_comment, - ACTIONS(2294), 12, - ts_builtin_sym_end, + ACTIONS(5547), 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, - ACTIONS(2290), 28, - anon_sym_GT2, + ACTIONS(6493), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + STATE(3439), 1, + sym_comment, + STATE(3474), 1, + aux_sym_shebang_repeat1, + ACTIONS(6495), 2, 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_SLASH2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [109408] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3204), 1, - sym_comment, - ACTIONS(2300), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5478), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337002,46 +354236,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, - ACTIONS(2298), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, + anon_sym_bit_DASHor2, + [123227] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3440), 1, + sym_comment, + ACTIONS(5494), 2, + anon_sym_GT2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [109465] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(3205), 1, - sym_comment, - ACTIONS(1040), 12, - ts_builtin_sym_end, + ACTIONS(5492), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337053,11 +354279,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, - ACTIONS(1038), 28, - anon_sym_GT2, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337066,85 +354289,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [109522] = 11, + [123293] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, - anon_sym_list, - ACTIONS(6209), 1, - sym__newline, - STATE(3206), 1, - sym_comment, - STATE(3343), 1, - aux_sym__multiple_types_repeat2, - STATE(3463), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(7322), 1, - sym__one_type, - STATE(7758), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [109589] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3207), 1, + STATE(3441), 1, sym_comment, - ACTIONS(2249), 13, - ts_builtin_sym_end, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5494), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5492), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337156,12 +354328,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_LPAREN2, - ACTIONS(2247), 29, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337170,130 +354339,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - [109642] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6225), 1, - anon_sym_DOT, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - STATE(3208), 1, - sym_comment, - STATE(3497), 1, - sym__immediate_decimal, - ACTIONS(6227), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3522), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1673), 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_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, - [109711] = 19, + [123353] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - STATE(3209), 1, - sym_comment, - STATE(3308), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, + STATE(3442), 1, + sym_comment, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 13, + ACTIONS(5492), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337305,25 +354392,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_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [109793] = 6, + 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, + [123421] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3210), 1, + STATE(3443), 1, sym_comment, - ACTIONS(6261), 2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5330), 5, + ACTIONS(5494), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5328), 33, + ACTIONS(5492), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337357,52 +354454,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109849] = 17, + [123477] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3211), 1, + STATE(3444), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 15, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337418,54 +354515,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [109927] = 18, + [123555] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - ACTIONS(6287), 1, + ACTIONS(6537), 1, anon_sym_and2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3212), 1, + STATE(3445), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 14, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5492), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337480,56 +354577,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [110007] = 19, + [123635] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - ACTIONS(6287), 1, + ACTIONS(6537), 1, anon_sym_and2, - ACTIONS(6289), 1, + ACTIONS(6539), 1, anon_sym_xor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3213), 1, + STATE(3446), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 13, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337543,43 +354640,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [110089] = 13, + [123717] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3214), 1, + STATE(3447), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 20, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5492), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337600,100 +354697,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110159] = 10, + [123787] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3215), 1, + ACTIONS(6406), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_list, + STATE(3448), 1, sym_comment, - ACTIONS(5330), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - 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, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [110223] = 14, + STATE(8334), 1, + sym__multiple_types, + STATE(8352), 1, + sym__one_type, + STATE(8521), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [123851] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3216), 1, + STATE(3449), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 18, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5492), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337712,48 +354809,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110295] = 15, + [123923] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3217), 1, + STATE(3450), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 17, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5492), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337771,50 +354868,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110369] = 16, + [123997] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3218), 1, + STATE(3451), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 16, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5492), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337831,33 +354928,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [110445] = 11, + [124073] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3219), 1, + STATE(3452), 1, sym_comment, - ACTIONS(5318), 2, + ACTIONS(5458), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5316), 28, + ACTIONS(5456), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337886,35 +354983,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110511] = 12, + [124139] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - STATE(3220), 1, + STATE(3453), 1, sym_comment, - STATE(3244), 1, + STATE(3476), 1, aux_sym_shebang_repeat1, - ACTIONS(5324), 2, + ACTIONS(5462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5322), 27, + ACTIONS(5460), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337942,27 +355039,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110579] = 8, + [124207] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3221), 1, + STATE(3454), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5318), 3, + ACTIONS(5458), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5316), 31, + ACTIONS(5456), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337994,29 +355091,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110639] = 9, + [124267] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - STATE(3222), 1, + STATE(3455), 1, sym_comment, - STATE(3245), 1, + STATE(3477), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5324), 3, + ACTIONS(5462), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5322), 30, + ACTIONS(5460), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338047,38 +355144,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110701] = 12, + [124329] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3223), 1, + STATE(3456), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6271), 4, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 24, + ACTIONS(5456), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338103,40 +355200,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110769] = 13, + [124397] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - STATE(3224), 1, + STATE(3457), 1, sym_comment, - STATE(3246), 1, + STATE(3478), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6243), 4, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 23, + ACTIONS(5460), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338160,23 +355257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110839] = 6, + [124467] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3225), 1, + STATE(3458), 1, sym_comment, - ACTIONS(6261), 2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5318), 5, + ACTIONS(5458), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5316), 33, + ACTIONS(5456), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338210,25 +355307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110895] = 7, + [124523] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - STATE(3226), 1, + STATE(3459), 1, sym_comment, - STATE(3247), 1, + STATE(3479), 1, aux_sym_shebang_repeat1, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5324), 5, + ACTIONS(5462), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5322), 32, + ACTIONS(5460), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338261,52 +355358,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110953] = 17, + [124581] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3227), 1, + STATE(3460), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 15, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5456), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338322,54 +355419,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [111031] = 18, + [124659] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, + ACTIONS(6513), 1, anon_sym_bit_DASHand2, - ACTIONS(6257), 1, + ACTIONS(6515), 1, anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, + ACTIONS(6517), 1, anon_sym_bit_DASHor2, - STATE(3228), 1, + STATE(3461), 1, sym_comment, - STATE(3248), 1, + STATE(3480), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 14, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5460), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338384,54 +355481,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [111111] = 18, + [124739] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - ACTIONS(6287), 1, + ACTIONS(6537), 1, anon_sym_and2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3229), 1, + STATE(3462), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 14, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5456), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338446,56 +355543,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [111191] = 19, + [124819] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, + ACTIONS(6513), 1, anon_sym_bit_DASHand2, - ACTIONS(6257), 1, + ACTIONS(6515), 1, anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, + ACTIONS(6517), 1, anon_sym_bit_DASHor2, - STATE(3230), 1, + ACTIONS(6519), 1, + anon_sym_and2, + STATE(3463), 1, sym_comment, - STATE(3249), 1, + STATE(3481), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 13, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5460), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338509,56 +355606,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [111273] = 19, + [124901] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - ACTIONS(6287), 1, + ACTIONS(6537), 1, anon_sym_and2, - ACTIONS(6289), 1, + ACTIONS(6539), 1, anon_sym_xor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3231), 1, + STATE(3464), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 13, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5456), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338572,58 +355669,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [111355] = 20, + [124983] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, + ACTIONS(6513), 1, anon_sym_bit_DASHand2, - ACTIONS(6257), 1, + ACTIONS(6515), 1, anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, + ACTIONS(6517), 1, anon_sym_bit_DASHor2, - ACTIONS(6291), 1, + ACTIONS(6519), 1, + anon_sym_and2, + ACTIONS(6521), 1, anon_sym_xor2, - STATE(3232), 1, + STATE(3465), 1, sym_comment, - STATE(3250), 1, + STATE(3482), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 12, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5460), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338636,43 +355733,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [111439] = 13, + [125067] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3233), 1, + STATE(3466), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 20, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5456), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338693,45 +355790,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111509] = 14, + [125137] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - STATE(3234), 1, + STATE(3467), 1, sym_comment, - STATE(3251), 1, + STATE(3483), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6507), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 19, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5460), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338751,30 +355848,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111581] = 10, + [125209] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3235), 1, + STATE(3468), 1, sym_comment, - ACTIONS(5318), 2, + ACTIONS(5458), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5316), 30, + ACTIONS(5456), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338805,32 +355902,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111645] = 11, + [125273] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - STATE(3236), 1, + STATE(3469), 1, sym_comment, - STATE(3252), 1, + STATE(3484), 1, aux_sym_shebang_repeat1, - ACTIONS(5324), 2, + ACTIONS(5462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5322), 29, + ACTIONS(5460), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338860,46 +355957,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111711] = 14, + [125339] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3237), 1, + STATE(3470), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 18, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5456), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338918,48 +356015,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111783] = 15, + [125411] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - STATE(3238), 1, + STATE(3471), 1, sym_comment, - STATE(3253), 1, + STATE(3485), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 17, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5460), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338977,48 +356074,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111857] = 15, + [125485] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3239), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 17, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5456), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339036,111 +356133,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111931] = 16, + [125559] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6235), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, + ACTIONS(6513), 1, anon_sym_bit_DASHand2, - STATE(3240), 1, + STATE(3473), 1, sym_comment, - STATE(3254), 1, + STATE(3486), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6503), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5322), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [112007] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6281), 1, - anon_sym_bit_DASHand2, - ACTIONS(6283), 1, - anon_sym_bit_DASHxor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3241), 1, - sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6505), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6511), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6507), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 16, - sym__newline, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5460), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339155,53 +356191,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112083] = 17, + [125635] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6257), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - STATE(3242), 1, - sym_comment, - STATE(3255), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, + STATE(3474), 1, + sym_comment, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 15, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5456), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339217,29 +356253,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [112161] = 9, + [125711] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, + ACTIONS(5550), 1, sym__newline, - STATE(3243), 1, + ACTIONS(6493), 1, + anon_sym_DASH2, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + STATE(3475), 1, sym_comment, - STATE(3295), 1, + STATE(3487), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6495), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6499), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 3, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5312), 30, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5460), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339251,52 +356310,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_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, - [112223] = 11, + [125789] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3244), 1, + STATE(3476), 1, sym_comment, - ACTIONS(5290), 2, + ACTIONS(5498), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5288), 28, + ACTIONS(5496), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339325,27 +356369,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112289] = 8, + [125855] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3245), 1, + STATE(3477), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5290), 3, + ACTIONS(5498), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5288), 31, + ACTIONS(5496), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339377,38 +356421,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112349] = 12, + [125915] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3246), 1, + STATE(3478), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6271), 4, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 24, + ACTIONS(5496), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339433,23 +356477,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112417] = 6, + [125983] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3247), 1, + STATE(3479), 1, sym_comment, - ACTIONS(6261), 2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5290), 5, + ACTIONS(5498), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5288), 33, + ACTIONS(5496), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339483,52 +356527,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112473] = 17, + [126039] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3248), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 15, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5496), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339544,54 +356588,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [112551] = 18, + [126117] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - ACTIONS(6287), 1, + ACTIONS(6537), 1, anon_sym_and2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3249), 1, + STATE(3481), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 14, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5496), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339606,56 +356650,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [112631] = 19, + [126197] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - ACTIONS(6283), 1, + ACTIONS(6533), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, + ACTIONS(6535), 1, anon_sym_bit_DASHor2, - ACTIONS(6287), 1, + ACTIONS(6537), 1, anon_sym_and2, - ACTIONS(6289), 1, + ACTIONS(6539), 1, anon_sym_xor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3250), 1, + STATE(3482), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 13, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5496), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339669,43 +356713,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [112713] = 13, + [126279] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3251), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 20, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5496), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339726,30 +356770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112783] = 10, + [126349] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3252), 1, + STATE(3484), 1, sym_comment, - ACTIONS(5290), 2, + ACTIONS(5498), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5288), 30, + ACTIONS(5496), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339780,46 +356824,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112847] = 14, + [126413] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3253), 1, + STATE(3485), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 18, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5496), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339838,109 +356882,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112919] = 15, + [126485] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(6531), 1, anon_sym_bit_DASHand2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3254), 1, + STATE(3486), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 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, - [112993] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6281), 1, - anon_sym_bit_DASHand2, - ACTIONS(6283), 1, - anon_sym_bit_DASHxor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3255), 1, - sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, + ACTIONS(6527), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5288), 16, + ACTIONS(5496), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339956,148 +356939,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113069] = 14, + [126559] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6459), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6469), 1, anon_sym_PLUS2, - STATE(3233), 1, + ACTIONS(6531), 1, + anon_sym_bit_DASHand2, + ACTIONS(6533), 1, + anon_sym_bit_DASHxor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3256), 1, + STATE(3487), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(6457), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6461), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6465), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [113141] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token2, - STATE(3257), 1, - sym_comment, - ACTIONS(1695), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1707), 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, + ACTIONS(6527), 4, 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, - [113195] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5485), 1, + ACTIONS(5496), 16, sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3258), 1, - sym_comment, - STATE(3297), 1, - aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5312), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340109,43 +356997,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_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, - [113265] = 10, + [126635] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - STATE(3259), 1, + STATE(3488), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5255), 29, + ACTIONS(5426), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340175,25 +357055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113329] = 7, + [126699] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3260), 1, + STATE(3489), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5257), 3, + ACTIONS(5428), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5255), 32, + ACTIONS(5426), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340226,36 +357106,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113387] = 11, + [126757] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - STATE(3261), 1, + STATE(3490), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 25, + ACTIONS(5426), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340281,21 +357161,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113453] = 5, + [126823] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5257), 5, + ACTIONS(5428), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5255), 34, + ACTIONS(5426), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340330,50 +357210,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113507] = 16, + [126877] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - ACTIONS(6313), 1, + ACTIONS(6561), 1, anon_sym_bit_DASHand2, - ACTIONS(6315), 1, + ACTIONS(6563), 1, anon_sym_bit_DASHxor2, - ACTIONS(6317), 1, + ACTIONS(6565), 1, anon_sym_bit_DASHor2, - STATE(3263), 1, + STATE(3492), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6311), 2, + ACTIONS(6559), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, + ACTIONS(6557), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 16, + ACTIONS(5426), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340390,52 +357270,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [113583] = 17, + [126953] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - ACTIONS(6313), 1, + ACTIONS(6561), 1, anon_sym_bit_DASHand2, - ACTIONS(6315), 1, + ACTIONS(6563), 1, anon_sym_bit_DASHxor2, - ACTIONS(6317), 1, + ACTIONS(6565), 1, anon_sym_bit_DASHor2, - ACTIONS(6319), 1, + ACTIONS(6567), 1, anon_sym_and2, - STATE(3264), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6311), 2, + ACTIONS(6559), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, + ACTIONS(6557), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 15, + ACTIONS(5426), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340451,54 +357331,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [113661] = 18, + [127031] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - ACTIONS(6313), 1, + ACTIONS(6561), 1, anon_sym_bit_DASHand2, - ACTIONS(6315), 1, + ACTIONS(6563), 1, anon_sym_bit_DASHxor2, - ACTIONS(6317), 1, + ACTIONS(6565), 1, anon_sym_bit_DASHor2, - ACTIONS(6319), 1, + ACTIONS(6567), 1, anon_sym_and2, - ACTIONS(6321), 1, + ACTIONS(6569), 1, anon_sym_xor2, - STATE(3265), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6311), 2, + ACTIONS(6559), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, + ACTIONS(6557), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 14, + ACTIONS(5426), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340513,41 +357393,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [113741] = 12, + [127111] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - STATE(3266), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, + ACTIONS(6557), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 21, + ACTIONS(5426), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340569,28 +357449,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113809] = 9, + [127179] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - STATE(3267), 1, + STATE(3496), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5255), 31, + ACTIONS(5426), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340622,44 +357502,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113871] = 13, + [127241] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - STATE(3268), 1, + STATE(3497), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6311), 2, + ACTIONS(6559), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, + ACTIONS(6557), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 19, + ACTIONS(5426), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340679,46 +357559,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113941] = 14, + [127311] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - ACTIONS(6313), 1, + ACTIONS(6561), 1, anon_sym_bit_DASHand2, - STATE(3269), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6311), 2, + ACTIONS(6559), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, + ACTIONS(6557), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 18, + ACTIONS(5426), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340737,48 +357617,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114013] = 15, + [127383] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(6541), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(6549), 1, anon_sym_PLUS2, - ACTIONS(6313), 1, + ACTIONS(6561), 1, anon_sym_bit_DASHand2, - ACTIONS(6315), 1, + ACTIONS(6563), 1, anon_sym_bit_DASHxor2, - STATE(3270), 1, + STATE(3499), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(6543), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(6545), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(6547), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6551), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(6553), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6311), 2, + ACTIONS(6559), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6307), 4, + ACTIONS(6555), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, + ACTIONS(6557), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 17, + ACTIONS(5426), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340796,29 +357676,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [114087] = 10, + [127457] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + STATE(3500), 1, + sym_comment, + ACTIONS(6571), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, anon_sym_list, - ACTIONS(6323), 1, - anon_sym_GT2, - ACTIONS(6325), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [127507] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3501), 1, + sym_comment, + ACTIONS(6573), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [127557] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3502), 1, + sym_comment, + ACTIONS(6575), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [127607] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6491), 1, anon_sym_AT, - STATE(3271), 1, + ACTIONS(6577), 1, + anon_sym_GT2, + STATE(3503), 1, sym_comment, - STATE(7281), 1, + STATE(7534), 1, sym__all_type, - STATE(7838), 1, + STATE(8407), 1, sym_param_cmd, - ACTIONS(6194), 2, + ACTIONS(6410), 2, anon_sym_table, anon_sym_record, - STATE(7629), 3, + STATE(8129), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6408), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -340850,25 +357871,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114151] = 7, + [127671] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - STATE(3272), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4702), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(6579), 1, + anon_sym_DOT, + ACTIONS(6583), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6585), 1, + aux_sym__immediate_decimal_token5, + STATE(3504), 1, sym_comment, - STATE(3303), 1, - aux_sym_shebang_repeat1, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5314), 5, + STATE(3709), 1, + sym__immediate_decimal, + ACTIONS(6581), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2006), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5312), 32, + ACTIONS(1579), 24, + 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [127741] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3505), 1, + sym_comment, + ACTIONS(5494), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5492), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340880,7 +357964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -340894,100 +357977,492 @@ static const uint16_t ts_small_parse_table[] = { 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, - [114209] = 20, + [127805] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6587), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6589), 1, + aux_sym__immediate_decimal_token2, + STATE(3506), 1, + sym_comment, + ACTIONS(1661), 11, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1663), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_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, + 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, + [127860] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6593), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6595), 1, + aux_sym__immediate_decimal_token5, + STATE(3507), 1, + sym_comment, + STATE(3943), 1, + sym__immediate_decimal, + ACTIONS(6591), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6255), 1, + ACTIONS(1657), 24, + 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_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6257), 1, anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, anon_sym_bit_DASHor2, - ACTIONS(6291), 1, - anon_sym_xor2, - STATE(3231), 1, - aux_sym_shebang_repeat1, - STATE(3273), 1, + [127927] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3508), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(1000), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1002), 32, + 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_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, - ACTIONS(6247), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127978] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + ACTIONS(6601), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6603), 1, + aux_sym__immediate_decimal_token5, + STATE(3509), 1, + sym_comment, + STATE(3887), 1, + sym__immediate_decimal, + ACTIONS(6599), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4094), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1579), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 12, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128045] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + STATE(3510), 1, + sym_comment, + STATE(3511), 1, + aux_sym__multiple_types_repeat2, + STATE(7474), 1, + sym__one_type, + STATE(8449), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [128106] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6611), 1, + anon_sym_list, + STATE(8172), 1, + sym__one_type, + STATE(8449), 1, + sym__type_annotation, + ACTIONS(6608), 2, + anon_sym_table, + anon_sym_record, + STATE(3511), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6605), 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, + [128165] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3512), 1, + sym_comment, + ACTIONS(1004), 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(1006), 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_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [114293] = 10, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, + [128216] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + STATE(3511), 1, + aux_sym__multiple_types_repeat2, + STATE(3513), 1, + sym_comment, + STATE(7666), 1, + sym__one_type, + STATE(8449), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [128277] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6453), 1, + sym__newline, + ACTIONS(6618), 1, + anon_sym_list, + STATE(3514), 1, + sym_comment, + STATE(3662), 1, + aux_sym_shebang_repeat1, + STATE(4993), 1, + sym__type_annotation, + ACTIONS(6616), 2, + anon_sym_table, + anon_sym_record, + STATE(5115), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6614), 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, + [128338] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6453), 1, + sym__newline, + ACTIONS(6618), 1, anon_sym_list, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(6327), 1, - anon_sym_GT2, - STATE(3274), 1, + STATE(3515), 1, sym_comment, - STATE(6835), 1, - sym__all_type, - STATE(7926), 1, - sym_param_cmd, - ACTIONS(6194), 2, + STATE(3524), 1, + aux_sym_shebang_repeat1, + STATE(4994), 1, + sym__type_annotation, + ACTIONS(6616), 2, anon_sym_table, anon_sym_record, - STATE(7629), 3, + STATE(5115), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6614), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -341019,278 +358494,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114357] = 19, + [128399] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6453), 1, sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - STATE(3229), 1, + STATE(3516), 1, + sym_comment, + STATE(3527), 1, aux_sym_shebang_repeat1, - STATE(3275), 1, + STATE(7312), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [128460] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6593), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6595), 1, + aux_sym__immediate_decimal_token5, + STATE(3517), 1, sym_comment, - ACTIONS(6233), 2, + STATE(3858), 1, + sym__immediate_decimal, + ACTIONS(6591), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2123), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_PLUS2, + ACTIONS(1579), 24, + 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 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, - [114439] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - ACTIONS(6291), 1, - anon_sym_xor2, - STATE(3276), 1, - sym_comment, - STATE(3310), 1, - aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5312), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [114523] = 14, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128527] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3277), 1, + ACTIONS(6473), 1, + anon_sym_DOLLAR, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6620), 1, + anon_sym_DOT, + STATE(3518), 1, sym_comment, - STATE(3312), 1, - aux_sym_shebang_repeat1, - ACTIONS(6233), 2, + STATE(3822), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3824), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_PLUS2, + ACTIONS(1579), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114595] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6329), 1, - aux_sym__immediate_decimal_token2, - STATE(3278), 1, - sym_comment, - ACTIONS(1801), 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(1803), 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_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, - [114649] = 11, + [128594] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3235), 1, - aux_sym_shebang_repeat1, - STATE(3279), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + ACTIONS(6601), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6603), 1, + aux_sym__immediate_decimal_token5, + STATE(3519), 1, sym_comment, - ACTIONS(5310), 2, + STATE(3892), 1, + sym__immediate_decimal, + ACTIONS(6599), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4117), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5308), 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, + anon_sym_PLUS2, + ACTIONS(1657), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -341303,49 +358702,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114715] = 11, + [128661] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3280), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(6579), 1, + anon_sym_DOT, + ACTIONS(6583), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6585), 1, + aux_sym__immediate_decimal_token5, + STATE(3520), 1, sym_comment, - STATE(3316), 1, - aux_sym_shebang_repeat1, - ACTIONS(5314), 2, + STATE(3709), 1, + sym__immediate_decimal, + ACTIONS(6581), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2006), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5312), 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, + anon_sym_PLUS2, + ACTIONS(1579), 23, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -341358,53 +358758,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114781] = 15, + [128730] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3281), 1, + STATE(3521), 1, sym_comment, - STATE(3319), 1, - aux_sym_shebang_repeat1, - ACTIONS(6233), 2, + ACTIONS(2272), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5312), 17, + anon_sym_PLUS2, + ACTIONS(2274), 35, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341415,279 +358791,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [114855] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - STATE(3282), 1, - sym_comment, - STATE(3321), 1, - aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [114931] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3237), 1, - aux_sym_shebang_repeat1, - STATE(3283), 1, - sym_comment, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115005] = 17, + [128781] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - STATE(3284), 1, + STATE(3522), 1, sym_comment, - STATE(3323), 1, - aux_sym_shebang_repeat1, - ACTIONS(6233), 2, + ACTIONS(2234), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5312), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [115083] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - STATE(3285), 1, - sym_comment, - STATE(3435), 1, - sym__immediate_decimal, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3434), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1737), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1739), 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_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, - [115149] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - STATE(3286), 1, - sym_comment, - STATE(3438), 1, - sym__immediate_decimal, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3459), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1743), 24, + anon_sym_PLUS2, + ACTIONS(2238), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341699,102 +358838,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_DASH2, + anon_sym_in2, 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, - [115215] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - STATE(3239), 1, - aux_sym_shebang_repeat1, - STATE(3287), 1, - sym_comment, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115291] = 10, + [128832] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6453), 1, + sym__newline, + ACTIONS(6618), 1, anon_sym_list, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(6335), 1, - anon_sym_GT2, - STATE(3288), 1, + STATE(3514), 1, + aux_sym_shebang_repeat1, + STATE(3523), 1, sym_comment, - STATE(7098), 1, - sym__all_type, - STATE(8114), 1, - sym_param_cmd, - ACTIONS(6194), 2, + STATE(5029), 1, + sym__type_annotation, + ACTIONS(6616), 2, anon_sym_table, anon_sym_record, - STATE(7629), 3, + STATE(5115), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6614), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -341826,29 +358913,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115355] = 10, + [128893] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6453), 1, + sym__newline, + ACTIONS(6618), 1, anon_sym_list, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(6337), 1, - anon_sym_GT2, - STATE(3289), 1, + STATE(3524), 1, sym_comment, - STATE(7152), 1, - sym__all_type, - STATE(7732), 1, - sym_param_cmd, - ACTIONS(6194), 2, + STATE(3662), 1, + aux_sym_shebang_repeat1, + STATE(5032), 1, + sym__type_annotation, + ACTIONS(6616), 2, anon_sym_table, anon_sym_record, - STATE(7629), 3, + STATE(5115), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6614), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -341880,33 +358965,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115419] = 11, + [128954] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3290), 1, + STATE(3525), 1, sym_comment, - ACTIONS(5344), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6626), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5342), 28, + ACTIONS(5426), 28, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341918,7 +359002,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_in2, anon_sym_and2, anon_sym_xor2, @@ -341935,39 +359018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115485] = 12, + [129017] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6339), 1, - anon_sym_DOLLAR, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6343), 1, - anon_sym_DOT, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - STATE(3291), 1, + STATE(3526), 1, sym_comment, - STATE(3557), 1, - sym__immediate_decimal, - ACTIONS(6345), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3556), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1673), 23, + ACTIONS(6624), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6626), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6628), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5426), 31, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -341980,75 +359049,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_DASH2, + anon_sym_in2, 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, - [115553] = 3, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [129074] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3292), 1, - sym_comment, - ACTIONS(6351), 41, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6453), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, + STATE(3527), 1, + sym_comment, + STATE(3662), 1, + aux_sym_shebang_repeat1, + STATE(7775), 1, + sym__type_annotation, + ACTIONS(6410), 2, anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115603] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3293), 1, - sym_comment, - ACTIONS(6353), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -342078,42 +359118,40 @@ 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, - [115653] = 12, + [129135] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - STATE(3294), 1, + STATE(3528), 1, sym_comment, - STATE(3307), 1, - aux_sym_shebang_repeat1, - ACTIONS(5348), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 27, + ACTIONS(6634), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6636), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5426), 24, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342124,7 +359162,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_in2, anon_sym_and2, anon_sym_xor2, @@ -342132,36 +359169,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [115721] = 8, + [129200] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3295), 1, + STATE(3529), 1, sym_comment, - ACTIONS(6261), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5344), 3, + ACTIONS(5428), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5342), 31, + ACTIONS(5426), 33, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342173,7 +359201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -342188,34 +359215,59 @@ static const uint16_t ts_small_parse_table[] = { 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, - [115781] = 9, + [129253] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - STATE(3296), 1, + ACTIONS(6622), 1, + anon_sym_DASH2, + ACTIONS(6630), 1, + anon_sym_PLUS2, + ACTIONS(6642), 1, + anon_sym_bit_DASHand2, + ACTIONS(6644), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6646), 1, + anon_sym_bit_DASHor2, + STATE(3530), 1, sym_comment, - STATE(3332), 1, - aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5348), 3, + ACTIONS(6632), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6634), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5346), 30, + ACTIONS(6640), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6636), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6638), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5426), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342226,58 +359278,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [115843] = 12, + [129328] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3297), 1, + ACTIONS(6642), 1, + anon_sym_bit_DASHand2, + ACTIONS(6644), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6646), 1, + anon_sym_bit_DASHor2, + ACTIONS(6648), 1, + anon_sym_and2, + STATE(3531), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6626), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6271), 4, + ACTIONS(6634), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6640), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6636), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 24, + ACTIONS(6638), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5426), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342289,147 +359339,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, - 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, - [115911] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3298), 1, - sym_comment, - ACTIONS(6355), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [115961] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3299), 1, - sym_comment, - ACTIONS(6357), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [116011] = 13, + [129405] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - STATE(3300), 1, + ACTIONS(6642), 1, + anon_sym_bit_DASHand2, + ACTIONS(6644), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6646), 1, + anon_sym_bit_DASHor2, + ACTIONS(6648), 1, + anon_sym_and2, + ACTIONS(6650), 1, + anon_sym_xor2, + STATE(3532), 1, sym_comment, - STATE(3335), 1, - aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6243), 4, + ACTIONS(6634), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6640), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6636), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 23, + ACTIONS(6638), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5426), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342440,65 +359401,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_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, - [116081] = 17, + [129484] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - STATE(3241), 1, - aux_sym_shebang_repeat1, - STATE(3301), 1, + STATE(3533), 1, sym_comment, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6634), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6636), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 15, + ACTIONS(6638), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5426), 20, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342509,40 +359449,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_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, - [116159] = 12, + [129551] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - STATE(3290), 1, - aux_sym_shebang_repeat1, - STATE(3302), 1, + STATE(3534), 1, sym_comment, - ACTIONS(5314), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5312), 27, + ACTIONS(5426), 30, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342553,7 +359491,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_in2, anon_sym_and2, anon_sym_xor2, @@ -342567,26 +359504,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [116227] = 6, + [129612] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3303), 1, + ACTIONS(6622), 1, + anon_sym_DASH2, + ACTIONS(6630), 1, + anon_sym_PLUS2, + STATE(3535), 1, sym_comment, - ACTIONS(6261), 2, + ACTIONS(6624), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5344), 5, + ACTIONS(6628), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6632), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6634), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5342), 33, + ACTIONS(6640), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6636), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6638), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5426), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342598,9 +359559,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129681] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6453), 1, + sym__newline, + STATE(3536), 1, + sym_comment, + STATE(3544), 1, + aux_sym_shebang_repeat1, + STATE(7783), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [129742] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3537), 1, + sym_comment, + ACTIONS(986), 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(988), 32, + 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_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -342613,6 +359653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -342620,25 +359662,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116283] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [129793] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - STATE(3210), 1, - aux_sym_shebang_repeat1, - STATE(3304), 1, + ACTIONS(6652), 1, + anon_sym_DOT, + ACTIONS(6654), 1, + aux_sym__immediate_decimal_token2, + STATE(3538), 1, sym_comment, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5348), 5, + ACTIONS(1669), 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, + aux_sym_unquoted_token2, + ACTIONS(1671), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_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, + 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, + [129848] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3539), 1, + sym_comment, + ACTIONS(2454), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5346), 32, + ACTIONS(5276), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342649,7 +359737,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, + ACTIONS(2456), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -342664,6 +359752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -342671,52 +359761,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116341] = 17, + [129901] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(6656), 1, + anon_sym_DOT, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(3540), 1, + sym_comment, + STATE(3791), 1, + sym__immediate_decimal, + ACTIONS(6658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3950), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(6277), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6281), 1, + ACTIONS(1579), 23, + 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, - ACTIONS(6283), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, anon_sym_bit_DASHor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3305), 1, + [129970] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6622), 1, + anon_sym_DASH2, + ACTIONS(6630), 1, + anon_sym_PLUS2, + ACTIONS(6642), 1, + anon_sym_bit_DASHand2, + STATE(3541), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, + ACTIONS(6626), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, + ACTIONS(6634), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6640), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6636), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 15, + ACTIONS(6638), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5426), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342728,58 +359869,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_and2, anon_sym_xor2, anon_sym_or2, - [116419] = 18, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130041] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(6251), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - ACTIONS(6255), 1, + ACTIONS(6642), 1, anon_sym_bit_DASHand2, - ACTIONS(6257), 1, + ACTIONS(6644), 1, anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - STATE(3211), 1, - aux_sym_shebang_repeat1, - STATE(3306), 1, + STATE(3542), 1, sym_comment, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, + ACTIONS(6634), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6640), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6636), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 14, + ACTIONS(6638), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5426), 16, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342790,50 +359928,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_and2, anon_sym_xor2, anon_sym_or2, - [116499] = 11, + anon_sym_bit_DASHor2, + [130114] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3307), 1, + ACTIONS(6473), 1, + anon_sym_DOLLAR, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6664), 1, + anon_sym_DOT, + STATE(3543), 1, sym_comment, - ACTIONS(5330), 2, + STATE(3833), 1, + sym__immediate_decimal, + ACTIONS(6479), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3832), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - 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, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_PLUS2, + ACTIONS(1643), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -342846,507 +359978,562 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116565] = 18, + [130181] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6281), 1, - anon_sym_bit_DASHand2, - ACTIONS(6283), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, - anon_sym_bit_DASHor2, - ACTIONS(6287), 1, - anon_sym_and2, - STATE(1820), 1, + ACTIONS(6412), 1, + anon_sym_list, + ACTIONS(6453), 1, + sym__newline, + STATE(3544), 1, + sym_comment, + STATE(3662), 1, aux_sym_shebang_repeat1, - STATE(3308), 1, + STATE(7646), 1, + sym__type_annotation, + ACTIONS(6410), 2, + anon_sym_table, + anon_sym_record, + STATE(6862), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6408), 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, + [130242] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3545), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(996), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(998), 32, + 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_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 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_xor2, - anon_sym_or2, - [116645] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - STATE(3212), 1, - aux_sym_shebang_repeat1, - STATE(3309), 1, - sym_comment, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130293] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6666), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6668), 1, + aux_sym__immediate_decimal_token2, + STATE(3546), 1, + sym_comment, + ACTIONS(1661), 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(1663), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 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, - [116727] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6281), 1, + 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, - ACTIONS(6283), 1, anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, anon_sym_bit_DASHor2, - ACTIONS(6287), 1, - anon_sym_and2, - ACTIONS(6289), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3310), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [130347] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + anon_sym_DOT, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(3547), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + STATE(3949), 1, + sym__immediate_decimal, + ACTIONS(6658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3948), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, + anon_sym_PLUS2, + ACTIONS(1643), 23, 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, - ACTIONS(6271), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [116809] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6257), 1, anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, anon_sym_bit_DASHor2, - ACTIONS(6291), 1, - anon_sym_xor2, - STATE(3213), 1, - aux_sym_shebang_repeat1, - STATE(3311), 1, + [130413] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(3548), 1, sym_comment, - ACTIONS(6233), 2, + STATE(4107), 1, + sym__immediate_decimal, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4104), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, + anon_sym_PLUS2, + ACTIONS(1685), 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, - ACTIONS(6247), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130477] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(3549), 1, + sym_comment, + STATE(4116), 1, + sym__immediate_decimal, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4113), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1743), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1745), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [116893] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3312), 1, - sym_comment, - ACTIONS(6261), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6275), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130541] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6674), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6676), 1, + aux_sym__immediate_decimal_token5, + STATE(3550), 1, + sym_comment, + STATE(4034), 1, + sym__immediate_decimal, + ACTIONS(6672), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1657), 23, 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, - ACTIONS(6271), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116963] = 14, + [130607] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3214), 1, - aux_sym_shebang_repeat1, - STATE(3313), 1, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(3551), 1, sym_comment, - ACTIONS(6233), 2, + STATE(4109), 1, + sym__immediate_decimal, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4108), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1739), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_PLUS2, + ACTIONS(1741), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117035] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3314), 1, - sym_comment, - ACTIONS(6359), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [117085] = 3, + [130671] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3315), 1, + ACTIONS(6654), 1, + aux_sym__immediate_decimal_token2, + STATE(3552), 1, sym_comment, - ACTIONS(6361), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1669), 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, + aux_sym_unquoted_token2, + ACTIONS(1671), 27, + sym_raw_string_begin, 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_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - [117135] = 10, + aux_sym_expr_unary_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, + 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, + [130723] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3316), 1, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(3553), 1, sym_comment, - ACTIONS(5344), 2, + STATE(3940), 1, + sym__immediate_decimal, + ACTIONS(6658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3950), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6261), 2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1579), 23, + 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, - ACTIONS(6269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130789] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(3554), 1, + sym_comment, + STATE(4156), 1, + sym__immediate_decimal, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4094), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, + anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5342), 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_PLUS2, + ACTIONS(1579), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343359,49 +360546,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117199] = 11, + [130853] = 22, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3215), 1, - aux_sym_shebang_repeat1, - STATE(3317), 1, + ACTIONS(3239), 1, + aux_sym_unquoted_token1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4315), 1, + anon_sym_DOT_DOT, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + STATE(3555), 1, + sym_comment, + STATE(6122), 1, + sym__val_number_decimal, + STATE(6276), 1, + sym_val_variable, + STATE(6277), 1, + sym_unquoted, + STATE(8344), 1, + sym__val_range, + STATE(8413), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5917), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2695), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2697), 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, + [130939] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6680), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(1694), 1, + sym_cell_path, + STATE(3556), 1, sym_comment, - ACTIONS(5348), 2, + STATE(3607), 1, + aux_sym_cell_path_repeat1, + ACTIONS(969), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5346), 29, - anon_sym_SEMI, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(971), 29, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343414,463 +360658,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117265] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130997] = 22, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6190), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_list, - STATE(3318), 1, + ACTIONS(3239), 1, + aux_sym_unquoted_token1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4315), 1, + anon_sym_DOT_DOT, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + STATE(3557), 1, sym_comment, - STATE(7720), 1, - sym__one_type, - STATE(7751), 1, - sym__multiple_types, - STATE(8134), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 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, - [117329] = 14, + STATE(6122), 1, + sym__val_number_decimal, + STATE(6276), 1, + sym_val_variable, + STATE(6277), 1, + sym_unquoted, + STATE(8344), 1, + sym__val_range, + STATE(8413), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5917), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2695), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2697), 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, + [131083] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, + ACTIONS(6682), 1, + aux_sym__immediate_decimal_token2, + STATE(3558), 1, + sym_comment, + ACTIONS(1711), 11, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3319), 1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1713), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_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, + 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, + [131135] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6680), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(1738), 1, + sym_cell_path, + STATE(3559), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + STATE(3607), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1757), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1761), 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, - ACTIONS(6271), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 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_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117401] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131193] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3216), 1, - aux_sym_shebang_repeat1, - STATE(3320), 1, + ACTIONS(6680), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(1742), 1, + sym_cell_path, + STATE(3560), 1, sym_comment, - ACTIONS(6233), 2, + STATE(3607), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1763), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(1765), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 17, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117475] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131251] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6281), 1, - anon_sym_bit_DASHand2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3321), 1, + ACTIONS(6684), 1, + anon_sym_DOT, + ACTIONS(6686), 1, + aux_sym__immediate_decimal_token2, + STATE(3561), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(1669), 9, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 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, - ACTIONS(6271), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 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, - [117549] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - STATE(3217), 1, - aux_sym_shebang_repeat1, - STATE(3322), 1, - sym_comment, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5346), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117625] = 16, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131305] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6281), 1, - anon_sym_bit_DASHand2, - ACTIONS(6283), 1, - anon_sym_bit_DASHxor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3323), 1, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(3562), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + STATE(4127), 1, + sym__immediate_decimal, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4117), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, + anon_sym_PLUS2, + ACTIONS(1657), 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, - ACTIONS(6271), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 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, - [117701] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - STATE(3218), 1, - aux_sym_shebang_repeat1, - STATE(3324), 1, - sym_comment, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5346), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117779] = 12, + [131369] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3219), 1, - aux_sym_shebang_repeat1, - STATE(3325), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6674), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6676), 1, + aux_sym__immediate_decimal_token5, + STATE(3563), 1, sym_comment, - ACTIONS(5310), 2, + STATE(4031), 1, + sym__immediate_decimal, + ACTIONS(6672), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2123), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5308), 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_PLUS2, + ACTIONS(1579), 23, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343883,45 +361026,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117847] = 9, + [131435] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - STATE(3221), 1, - aux_sym_shebang_repeat1, - STATE(3326), 1, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(3564), 1, sym_comment, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5310), 3, + STATE(4170), 1, + sym__immediate_decimal, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4166), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5308), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, + ACTIONS(1643), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343934,204 +361079,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117909] = 13, + [131499] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - STATE(3223), 1, - aux_sym_shebang_repeat1, - STATE(3327), 1, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4710), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4712), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(4762), 1, + anon_sym_DOT, + STATE(2015), 1, + sym__immediate_decimal, + STATE(3565), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(4708), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2006), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 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, + anon_sym_PLUS2, + ACTIONS(1579), 23, 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, - [117979] = 11, + [131565] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(4706), 1, + anon_sym_DOT, + ACTIONS(4710), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(4712), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - STATE(3328), 1, - sym_comment, - STATE(3432), 1, + STATE(1915), 1, sym__immediate_decimal, - ACTIONS(6333), 2, + STATE(3566), 1, + sym_comment, + ACTIONS(4708), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3455), 2, + STATE(1914), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1733), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1735), 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_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, - [118045] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6219), 1, - aux_sym__immediate_decimal_token2, - STATE(3329), 1, - sym_comment, - ACTIONS(1785), 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(1787), 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_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, - [118099] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - STATE(3225), 1, - aux_sym_shebang_repeat1, - STATE(3330), 1, - sym_comment, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5310), 5, + ACTIONS(1633), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5308), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, + ACTIONS(1643), 23, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344144,6 +361187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -344151,34 +361196,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118157] = 5, + [131631] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3331), 1, + ACTIONS(6688), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6690), 1, + aux_sym__immediate_decimal_token2, + STATE(3567), 1, sym_comment, - ACTIONS(2391), 5, + ACTIONS(1661), 9, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5182), 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(2393), 23, - anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1663), 28, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344191,6 +361231,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -344200,41 +361241,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118211] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131685] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3332), 1, + ACTIONS(6692), 1, + anon_sym_DOT, + ACTIONS(6694), 1, + aux_sym__immediate_decimal_token2, + STATE(3568), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6269), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5330), 3, + ACTIONS(1669), 8, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5328), 31, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344247,267 +361279,315 @@ static const uint16_t ts_small_parse_table[] = { 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, - [118271] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131739] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - STATE(3333), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3569), 1, sym_comment, - STATE(3437), 1, - sym__immediate_decimal, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3458), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1673), 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_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, - [118337] = 18, + STATE(6454), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [131794] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - STATE(3227), 1, - aux_sym_shebang_repeat1, - STATE(3334), 1, + ACTIONS(6694), 1, + aux_sym__immediate_decimal_token2, + STATE(3570), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(1669), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [118417] = 12, + 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, + [131845] = 5, ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6265), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3335), 1, + anon_sym_POUND, + ACTIONS(6702), 1, + aux_sym__immediate_decimal_token2, + STATE(3571), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, + ACTIONS(1711), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6271), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5328), 24, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1713), 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_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, - [118485] = 18, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [131896] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - STATE(3305), 1, - aux_sym_shebang_repeat1, - STATE(3336), 1, + ACTIONS(6704), 1, + anon_sym_DOT, + ACTIONS(6706), 1, + aux_sym__immediate_decimal_token2, + STATE(3572), 1, sym_comment, - ACTIONS(6233), 2, + ACTIONS(1669), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6245), 2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 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, - ACTIONS(6247), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, + 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, + [131949] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6708), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6710), 1, + aux_sym__immediate_decimal_token2, + STATE(3573), 1, + sym_comment, + ACTIONS(1661), 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(1663), 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, - ACTIONS(6243), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [118565] = 9, + 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, + [132002] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6209), 1, - sym__newline, - ACTIONS(6367), 1, + STATE(3574), 1, + sym_comment, + ACTIONS(1669), 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, + aux_sym_unquoted_token2, + ACTIONS(1671), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_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, + 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, + [132051] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6700), 1, anon_sym_list, - STATE(3337), 1, + STATE(3575), 1, sym_comment, - STATE(3463), 1, - aux_sym_shebang_repeat1, - STATE(4629), 1, - sym__type_annotation, - ACTIONS(6365), 2, + STATE(6644), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(4798), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6363), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344539,27 +361619,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118626] = 9, + [132106] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3576), 1, + sym_comment, + ACTIONS(1661), 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, + aux_sym_unquoted_token2, + ACTIONS(1663), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_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, + 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, + [132155] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6700), 1, anon_sym_list, - ACTIONS(6209), 1, - sym__newline, - STATE(3338), 1, + STATE(3577), 1, sym_comment, - STATE(3349), 1, - aux_sym_shebang_repeat1, - STATE(7196), 1, - sym__type_annotation, - ACTIONS(6194), 2, + STATE(6648), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(6253), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344591,63 +361712,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118687] = 4, + [132210] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3339), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3578), 1, sym_comment, - ACTIONS(1793), 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(1795), 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_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, - [118738] = 6, + STATE(6381), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [132265] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6369), 1, - anon_sym_DOT, - ACTIONS(6371), 1, - aux_sym__immediate_decimal_token2, - STATE(3340), 1, + STATE(3579), 1, sym_comment, - ACTIONS(1645), 11, + ACTIONS(1711), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344659,7 +361777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1647), 27, + ACTIONS(1713), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344687,16 +361805,60 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118793] = 6, + [132314] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6373), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6375), 1, - aux_sym__immediate_decimal_token2, - STATE(3341), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3580), 1, + sym_comment, + STATE(6383), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [132369] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3581), 1, sym_comment, - ACTIONS(1637), 11, + ACTIONS(1767), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -344708,7 +361870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1639), 27, + ACTIONS(1769), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -344736,14 +361898,148 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118848] = 4, + [132418] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3342), 1, + ACTIONS(6686), 1, + aux_sym__immediate_decimal_token2, + STATE(3582), 1, sym_comment, - ACTIONS(1801), 10, + ACTIONS(1669), 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(1671), 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, + [132469] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(6712), 1, anon_sym_DOT_DOT2, + ACTIONS(6716), 1, + sym_filesize_unit, + ACTIONS(6718), 1, + sym_duration_unit, + ACTIONS(6720), 1, + aux_sym_unquoted_token2, + STATE(3583), 1, + sym_comment, + STATE(8140), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6714), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [132532] = 21, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3435), 1, + aux_sym_unquoted_token1, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(6033), 1, + anon_sym_DOT_DOT, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(3584), 1, + sym_comment, + STATE(6344), 1, + sym__val_number_decimal, + STATE(6435), 1, + sym_val_variable, + STATE(6436), 1, + sym_unquoted, + STATE(8443), 1, + sym__val_range, + STATE(8468), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(6035), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(6037), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2695), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344752,29 +362048,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1803), 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, + ACTIONS(2697), 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, + [132615] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(6724), 1, + sym_filesize_unit, + ACTIONS(6726), 1, + sym_duration_unit, + ACTIONS(6728), 1, + aux_sym_unquoted_token2, + STATE(3585), 1, + sym_comment, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 9, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1699), 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, + [132674] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6730), 1, + aux_sym__immediate_decimal_token2, + STATE(3586), 1, + sym_comment, + ACTIONS(1711), 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(1713), 28, anon_sym_DASH_DASH, - anon_sym_if, + 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_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, + [132725] = 21, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3239), 1, + aux_sym_unquoted_token1, + ACTIONS(3901), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3903), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3905), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3907), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4315), 1, + anon_sym_DOT_DOT, + ACTIONS(5919), 1, + sym_val_date, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + STATE(3587), 1, + sym_comment, + STATE(6122), 1, + sym__val_number_decimal, + STATE(6276), 1, + sym_val_variable, + STATE(6277), 1, + sym_unquoted, + STATE(8344), 1, + sym__val_range, + STATE(8413), 1, + sym__unquoted_anonymous_prefix, + STATE(8530), 1, + sym_val_bool, + ACTIONS(3899), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5917), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2695), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2697), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344783,27 +362216,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, - [118899] = 9, + [132808] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6700), 1, anon_sym_list, - STATE(3343), 1, + STATE(3588), 1, sym_comment, - STATE(3344), 1, - aux_sym__multiple_types_repeat2, - STATE(7033), 1, - sym__one_type, - STATE(7758), 1, - sym__type_annotation, - ACTIONS(6194), 2, + STATE(6564), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(6253), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344835,26 +362264,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118960] = 8, + [132863] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6383), 1, + ACTIONS(6700), 1, anon_sym_list, - STATE(7642), 1, - sym__one_type, - STATE(7758), 1, - sym__type_annotation, - ACTIONS(6380), 2, + STATE(3589), 1, + sym_comment, + STATE(6567), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(3344), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6253), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6377), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344886,236 +362312,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119019] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3345), 1, - sym_comment, - ACTIONS(1824), 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(1826), 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_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, - [119070] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3346), 1, - sym_comment, - STATE(3754), 1, - sym__immediate_decimal, - ACTIONS(6388), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3751), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1733), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1735), 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, - [119135] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3347), 1, - sym_comment, - STATE(3756), 1, - sym__immediate_decimal, - ACTIONS(6388), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3755), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1737), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1739), 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, - [119200] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3348), 1, - sym_comment, - STATE(3758), 1, - sym__immediate_decimal, - ACTIONS(6388), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3757), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1743), 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, - [119265] = 9, + [132918] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6700), 1, anon_sym_list, - ACTIONS(6209), 1, - sym__newline, - STATE(3349), 1, + STATE(3590), 1, sym_comment, - STATE(3463), 1, - aux_sym_shebang_repeat1, - STATE(7154), 1, + STATE(8158), 1, sym__type_annotation, - ACTIONS(6194), 2, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(6253), 3, + STATE(8056), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6696), 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, + [132973] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6732), 1, + sym__entry_separator, + STATE(3591), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2350), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345145,34 +362400,42 @@ 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, - [119326] = 4, + anon_sym_record, + anon_sym_list, + [133022] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3350), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2093), 1, + sym__immediate_decimal, + STATE(3592), 1, sym_comment, - ACTIONS(2290), 5, + ACTIONS(6735), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2090), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2294), 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, + ACTIONS(1643), 23, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345194,77 +362457,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119377] = 4, + [133085] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3351), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3593), 1, sym_comment, - ACTIONS(2298), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2300), 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, - [119428] = 4, + STATE(7173), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [133140] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3352), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2140), 1, + sym__immediate_decimal, + STATE(3594), 1, sym_comment, - ACTIONS(1008), 8, + ACTIONS(6735), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2138), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1739), 6, 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(1010), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1741), 23, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345286,32 +362557,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119479] = 4, + [133203] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3353), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2158), 1, + sym__immediate_decimal, + STATE(3595), 1, sym_comment, - ACTIONS(1004), 8, + ACTIONS(6735), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2097), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1743), 6, 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(1006), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1745), 23, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345333,32 +362609,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119530] = 4, + [133266] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3354), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3596), 1, sym_comment, - ACTIONS(996), 8, + STATE(7172), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [133321] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + ACTIONS(6737), 1, + anon_sym_DOT_DOT2, + ACTIONS(6741), 1, + sym_filesize_unit, + ACTIONS(6743), 1, + sym_duration_unit, + STATE(3597), 1, + sym_comment, + STATE(8201), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6739), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, 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(998), 32, + ACTIONS(1699), 25, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345380,79 +362709,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119581] = 4, + [133384] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3355), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3598), 1, sym_comment, - ACTIONS(2098), 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(2100), 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_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, - [119632] = 4, + STATE(6453), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [133439] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3356), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2264), 1, + sym__immediate_decimal, + STATE(3599), 1, sym_comment, - ACTIONS(1000), 8, + ACTIONS(6735), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2123), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 6, 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(1002), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1579), 23, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345474,29 +362809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119683] = 9, + [133502] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6209), 1, - sym__newline, - ACTIONS(6367), 1, + ACTIONS(6700), 1, anon_sym_list, - STATE(3357), 1, + STATE(3600), 1, sym_comment, - STATE(3463), 1, - aux_sym_shebang_repeat1, - STATE(4695), 1, - sym__type_annotation, - ACTIONS(6365), 2, + STATE(6460), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(4798), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6363), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345528,81 +362857,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119744] = 11, + [133557] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3358), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3601), 1, sym_comment, - STATE(3786), 1, - sym__immediate_decimal, - ACTIONS(6388), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3785), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1673), 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, - [119809] = 9, + STATE(6462), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [133612] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6700), 1, anon_sym_list, - ACTIONS(6209), 1, - sym__newline, - STATE(3359), 1, + STATE(3602), 1, sym_comment, - STATE(3463), 1, - aux_sym_shebang_repeat1, - STATE(7455), 1, - sym__type_annotation, - ACTIONS(6194), 2, + STATE(6463), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(6253), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345634,122 +362953,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119870] = 5, + [133667] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3360), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3603), 1, sym_comment, - ACTIONS(2391), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5182), 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(2393), 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, - [119923] = 4, + STATE(6465), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [133722] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3361), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3604), 1, sym_comment, - ACTIONS(2102), 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(2104), 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_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, - [119974] = 9, + STATE(6471), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [133777] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6209), 1, - sym__newline, - ACTIONS(6367), 1, + ACTIONS(6700), 1, anon_sym_list, - STATE(3337), 1, - aux_sym_shebang_repeat1, - STATE(3362), 1, + STATE(3605), 1, sym_comment, - STATE(4733), 1, - sym__type_annotation, - ACTIONS(6365), 2, + STATE(6472), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(4798), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6363), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345781,44 +363097,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [120035] = 10, + [133832] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - STATE(3363), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2222), 1, + sym__immediate_decimal, + STATE(3606), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(6735), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6392), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5255), 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_PLUS2, + ACTIONS(1657), 23, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345831,42 +363140,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120098] = 7, + [133895] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3364), 1, + ACTIONS(6680), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(3607), 1, sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 3, + STATE(3608), 1, + aux_sym_cell_path_repeat1, + ACTIONS(982), 6, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5255), 31, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + anon_sym_DOT_DOT2, + ACTIONS(984), 29, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345879,94 +363186,41 @@ static const uint16_t ts_small_parse_table[] = { 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, - [120155] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - STATE(3365), 1, - sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5255), 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, - [120220] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133950] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3366), 1, + ACTIONS(6745), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(3608), 2, sym_comment, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5257), 5, + aux_sym_cell_path_repeat1, + ACTIONS(975), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5255), 33, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + anon_sym_DOT_DOT2, + ACTIONS(977), 29, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345979,492 +363233,322 @@ static const uint16_t ts_small_parse_table[] = { 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, - [120273] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - ACTIONS(6410), 1, - anon_sym_bit_DASHand2, - ACTIONS(6412), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6414), 1, - anon_sym_bit_DASHor2, - STATE(3367), 1, - sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6408), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [120348] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - ACTIONS(6410), 1, anon_sym_bit_DASHand2, - ACTIONS(6412), 1, anon_sym_bit_DASHxor2, - ACTIONS(6414), 1, anon_sym_bit_DASHor2, - ACTIONS(6416), 1, - anon_sym_and2, - STATE(3368), 1, - sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6408), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [120425] = 18, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [134003] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - ACTIONS(6410), 1, - anon_sym_bit_DASHand2, - ACTIONS(6412), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6414), 1, - anon_sym_bit_DASHor2, - ACTIONS(6416), 1, - anon_sym_and2, - ACTIONS(6418), 1, - anon_sym_xor2, - STATE(3369), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3609), 1, sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6408), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [120504] = 12, + STATE(6396), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134058] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - STATE(3370), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3610), 1, sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [120571] = 9, + STATE(6397), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134113] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - STATE(3371), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3611), 1, sym_comment, - ACTIONS(5257), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5255), 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, - [120632] = 13, + STATE(6403), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134168] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - STATE(3372), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3612), 1, sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6408), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [120701] = 14, + STATE(6404), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134223] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - ACTIONS(6410), 1, - anon_sym_bit_DASHand2, - STATE(3373), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3613), 1, sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6408), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [120772] = 15, + STATE(6406), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134278] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, - anon_sym_DASH2, - ACTIONS(6398), 1, - anon_sym_PLUS2, - ACTIONS(6410), 1, - anon_sym_bit_DASHand2, - ACTIONS(6412), 1, - anon_sym_bit_DASHxor2, - STATE(3374), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3614), 1, sym_comment, - ACTIONS(6392), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6394), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6408), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [120845] = 9, + STATE(6407), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134333] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6700), 1, anon_sym_list, - STATE(3344), 1, - aux_sym__multiple_types_repeat2, - STATE(3375), 1, + STATE(3615), 1, sym_comment, - STATE(7396), 1, - sym__one_type, - STATE(7758), 1, - sym__type_annotation, - ACTIONS(6194), 2, + STATE(6412), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(6253), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346496,74 +363580,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [120906] = 4, + [134388] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3376), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3616), 1, sym_comment, - ACTIONS(1785), 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(1787), 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_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, - [120957] = 9, + STATE(6413), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134443] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6209), 1, - sym__newline, - ACTIONS(6367), 1, + ACTIONS(6412), 1, anon_sym_list, - STATE(3357), 1, - aux_sym_shebang_repeat1, - STATE(3377), 1, + STATE(3617), 1, sym_comment, - STATE(4630), 1, + STATE(8278), 1, sym__type_annotation, - ACTIONS(6365), 2, + ACTIONS(6410), 2, anon_sym_table, anon_sym_record, - STATE(4798), 3, + STATE(6862), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6363), 31, + ACTIONS(6408), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346595,78 +363676,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121018] = 8, + [134498] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(3190), 1, - sym_cell_path, - STATE(3378), 1, + ACTIONS(6700), 1, + anon_sym_list, + STATE(3618), 1, sym_comment, - STATE(3392), 1, - aux_sym_cell_path_repeat1, - ACTIONS(973), 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(975), 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [121077] = 9, + STATE(6543), 1, + sym__all_type, + ACTIONS(6698), 2, + anon_sym_table, + anon_sym_record, + STATE(7962), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6696), 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, + [134553] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, + ACTIONS(6700), 1, anon_sym_list, - ACTIONS(6209), 1, - sym__newline, - STATE(3359), 1, - aux_sym_shebang_repeat1, - STATE(3379), 1, + STATE(3619), 1, sym_comment, - STATE(7162), 1, - sym__type_annotation, - ACTIONS(6194), 2, + STATE(6530), 1, + sym__all_type, + ACTIONS(6698), 2, anon_sym_table, anon_sym_record, - STATE(6253), 3, + STATE(7962), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6192), 31, + ACTIONS(6696), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346698,83 +363772,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121138] = 12, + [134608] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6660), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(6662), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6422), 1, - anon_sym_DOT, - STATE(3380), 1, - sym_comment, - STATE(3719), 1, + STATE(2091), 1, sym__immediate_decimal, - ACTIONS(6227), 2, + STATE(3620), 1, + sym_comment, + ACTIONS(6735), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3516), 2, + STATE(2080), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1589), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1603), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [121204] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6424), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6426), 1, - aux_sym__immediate_decimal_token2, - STATE(3381), 1, - sym_comment, - ACTIONS(1637), 9, + ACTIONS(1677), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1639), 28, - anon_sym_DASH_DASH, + ACTIONS(1685), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346787,7 +363815,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -346797,141 +363824,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121258] = 5, - ACTIONS(251), 1, + [134671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6428), 1, - aux_sym__immediate_decimal_token2, - STATE(3382), 1, + ACTIONS(2502), 1, + sym__entry_separator, + STATE(3621), 1, sym_comment, - ACTIONS(1745), 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, - aux_sym_unquoted_token2, - ACTIONS(1747), 27, - sym_raw_string_begin, + ACTIONS(2500), 36, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_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, - 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, - [121310] = 22, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3331), 1, - aux_sym_unquoted_token1, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4143), 1, - anon_sym_DOT_DOT, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - STATE(3383), 1, - sym_comment, - STATE(5752), 1, - sym_val_variable, - STATE(5755), 1, - sym_unquoted, - STATE(5941), 1, - sym__val_number_decimal, - STATE(7747), 1, - sym__val_range, - STATE(7793), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4145), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5795), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [121396] = 6, + 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, + [134719] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6432), 1, + ACTIONS(6748), 1, anon_sym_DOT, - ACTIONS(6434), 1, + ACTIONS(6750), 1, aux_sym__immediate_decimal_token2, - STATE(3384), 1, + STATE(3622), 1, sym_comment, - ACTIONS(1645), 9, + ACTIONS(1779), 7, 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(1647), 28, - anon_sym_DASH_DASH, + ACTIONS(1781), 28, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -346958,34 +363914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121450] = 8, + [134771] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(1664), 1, - sym_cell_path, - STATE(3385), 1, + STATE(3623), 1, sym_comment, - STATE(3414), 1, - aux_sym_cell_path_repeat1, - ACTIONS(973), 6, + ACTIONS(1669), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(975), 29, - anon_sym_PIPE, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 29, + sym__newline, 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, @@ -346998,6 +363945,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347009,111 +363957,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121508] = 6, + sym_duration_unit, + [134819] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6219), 1, + ACTIONS(6752), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6754), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6438), 1, - anon_sym_DOT, - STATE(3386), 1, + STATE(3624), 1, sym_comment, - ACTIONS(1785), 9, + ACTIONS(1771), 8, + anon_sym_GT2, 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(1787), 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_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 27, anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_in2, 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, - [121562] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6371), 1, - aux_sym__immediate_decimal_token2, - STATE(3387), 1, - sym_comment, - ACTIONS(1645), 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, - aux_sym_unquoted_token2, - ACTIONS(1647), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [121614] = 6, + [134871] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6756), 1, + anon_sym_RBRACK, + ACTIONS(6760), 1, + sym__entry_separator, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(3625), 1, + sym_comment, + ACTIONS(6758), 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, + [134923] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6440), 1, - anon_sym_DOT, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token2, - STATE(3388), 1, + STATE(3626), 1, sym_comment, - ACTIONS(1645), 8, + ACTIONS(1711), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347122,7 +364064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1647), 29, + ACTIONS(1713), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -347152,33 +364094,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121668] = 8, + [134971] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6762), 1, anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(1682), 1, - sym_cell_path, - STATE(3389), 1, + STATE(3627), 1, sym_comment, - STATE(3414), 1, + STATE(3647), 1, aux_sym_cell_path_repeat1, - ACTIONS(1771), 6, + STATE(3798), 1, + sym_path, + STATE(3813), 1, + sym_cell_path, + ACTIONS(1757), 7, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1775), 29, - anon_sym_PIPE, - anon_sym_DASH2, + ACTIONS(1761), 26, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347202,33 +364142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121726] = 8, + [135027] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(1702), 1, - sym_cell_path, - STATE(3390), 1, + STATE(3628), 1, sym_comment, - STATE(3414), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1777), 6, + ACTIONS(1767), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1779), 29, - anon_sym_PIPE, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1769), 29, + sym__newline, 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, @@ -347241,6 +364173,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347252,26 +364185,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121784] = 6, + sym_duration_unit, + [135075] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6446), 1, - aux_sym__immediate_decimal_token2, - STATE(3391), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + ACTIONS(6741), 1, + sym_filesize_unit, + ACTIONS(6743), 1, + sym_duration_unit, + ACTIONS(6764), 1, + anon_sym_DOT_DOT2, + STATE(3629), 1, sym_comment, - ACTIONS(1637), 8, + STATE(8201), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6739), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, 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(1639), 29, - sym__newline, + ACTIONS(1699), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -347287,7 +364228,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347297,226 +364237,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121838] = 7, + [135137] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(3392), 1, - sym_comment, - STATE(3393), 1, - aux_sym_cell_path_repeat1, - ACTIONS(986), 9, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + ACTIONS(6766), 1, 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(988), 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, + ACTIONS(6770), 1, + sym_filesize_unit, + ACTIONS(6772), 1, + sym_duration_unit, + STATE(3630), 1, + sym_comment, + STATE(8201), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6768), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 24, + anon_sym_DASH2, + anon_sym_in2, + 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, - [121894] = 6, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135199] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6448), 1, - anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(3393), 2, + ACTIONS(6706), 1, + aux_sym__immediate_decimal_token2, + STATE(3631), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 9, + ACTIONS(1669), 8, + 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(981), 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, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1671), 28, + anon_sym_DASH2, + anon_sym_in2, + 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, - [121948] = 22, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3331), 1, - aux_sym_unquoted_token1, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4143), 1, - anon_sym_DOT_DOT, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - STATE(3394), 1, - sym_comment, - STATE(5752), 1, - sym_val_variable, - STATE(5755), 1, - sym_unquoted, - STATE(5941), 1, - sym__val_number_decimal, - STATE(7747), 1, - sym__val_range, - STATE(7793), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4145), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5795), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [122034] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6455), 1, - anon_sym_list, - STATE(3395), 1, - sym_comment, - STATE(7701), 1, - sym__type_annotation, - ACTIONS(6453), 2, - anon_sym_table, - anon_sym_record, - STATE(7607), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6451), 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, - [122089] = 5, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [135249] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6434), 1, - aux_sym__immediate_decimal_token2, - STATE(3396), 1, + ACTIONS(6762), 1, + anon_sym_DOT, + STATE(3632), 1, sym_comment, - ACTIONS(1645), 9, + STATE(3647), 1, + aux_sym_cell_path_repeat1, + STATE(3798), 1, + sym_path, + STATE(3801), 1, + sym_cell_path, + ACTIONS(1763), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -347524,9 +364354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1647), 28, + ACTIONS(1765), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347542,7 +364370,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -347554,71 +364381,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [122140] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3397), 1, - sym_comment, - ACTIONS(1781), 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, - aux_sym_unquoted_token2, - ACTIONS(1783), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_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, - 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, - [122189] = 5, + [135305] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6457), 1, + ACTIONS(6774), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6776), 1, aux_sym__immediate_decimal_token2, - STATE(3398), 1, + STATE(3633), 1, sym_comment, - ACTIONS(1745), 9, + ACTIONS(1771), 7, 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(1747), 28, - anon_sym_DASH_DASH, + ACTIONS(1773), 28, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -347645,176 +364427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [122240] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6463), 1, - anon_sym_list, - STATE(3399), 1, - sym_comment, - STATE(5457), 1, - sym__all_type, - ACTIONS(6461), 2, - anon_sym_table, - anon_sym_record, - STATE(5500), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6459), 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, - [122295] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6463), 1, - anon_sym_list, - STATE(3400), 1, - sym_comment, - STATE(5462), 1, - sym__all_type, - ACTIONS(6461), 2, - anon_sym_table, - anon_sym_record, - STATE(5500), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6459), 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, - [122350] = 21, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3425), 1, - aux_sym_unquoted_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(5864), 1, - anon_sym_DOT_DOT, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3401), 1, - sym_comment, - STATE(5830), 1, - sym__val_number_decimal, - STATE(6084), 1, - sym_val_variable, - STATE(6089), 1, - sym_unquoted, - STATE(7805), 1, - sym__val_range, - STATE(7816), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5866), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5868), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [122433] = 4, + [135357] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6465), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(3402), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2316), 36, - anon_sym_LBRACK, + ACTIONS(6778), 1, anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(3634), 1, + sym_comment, + ACTIONS(6758), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347849,135 +364473,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [122482] = 11, + [135409] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - STATE(3403), 1, + STATE(3635), 1, sym_comment, - STATE(3627), 1, - sym__immediate_decimal, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3444), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1677), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [122545] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4696), 1, + ACTIONS(1669), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(6468), 1, sym_filesize_unit, - ACTIONS(6470), 1, - sym_duration_unit, - ACTIONS(6472), 1, aux_sym_unquoted_token2, - STATE(3404), 1, - sym_comment, - ACTIONS(4698), 2, + ACTIONS(1671), 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(1695), 9, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1707), 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, - [122604] = 11, + sym_duration_unit, + [135457] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4831), 1, - anon_sym_DOT_DOT2, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(6474), 1, - sym_filesize_unit, - ACTIONS(6476), 1, - sym_duration_unit, - STATE(3405), 1, + STATE(3636), 1, sym_comment, - STATE(7710), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4833), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, + ACTIONS(1661), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 25, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1663), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -347994,6 +364548,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -348003,76 +364558,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122667] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [135505] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6339), 1, - anon_sym_DOLLAR, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6478), 1, + ACTIONS(6780), 1, anon_sym_DOT, - STATE(3406), 1, + ACTIONS(6782), 1, + aux_sym__immediate_decimal_token2, + STATE(3637), 1, sym_comment, - STATE(3789), 1, - sym__immediate_decimal, - ACTIONS(6345), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3568), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1589), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1603), 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, - [122732] = 7, + ACTIONS(1779), 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(1781), 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_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, + [135557] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6196), 1, - anon_sym_list, - STATE(3407), 1, + STATE(3638), 1, sym_comment, - STATE(7828), 1, - sym__type_annotation, - ACTIONS(6194), 2, - anon_sym_table, - anon_sym_record, - STATE(6253), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6192), 31, + ACTIONS(1661), 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(1663), 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, + [135605] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(6784), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(3639), 1, + sym_comment, + ACTIONS(6758), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -348102,133 +364692,72 @@ 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, - [122787] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - STATE(3408), 1, - sym_comment, - STATE(3612), 1, - sym__immediate_decimal, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3440), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1589), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1603), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [122850] = 4, + anon_sym_record, + anon_sym_list, + [135657] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3409), 1, + ACTIONS(6786), 1, + aux_sym__immediate_decimal_token2, + STATE(3640), 1, sym_comment, - ACTIONS(1637), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1711), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, 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_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1639), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, + ACTIONS(1713), 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__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, - [122899] = 11, + [135707] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4831), 1, - anon_sym_DOT_DOT2, - ACTIONS(6480), 1, - sym_filesize_unit, - ACTIONS(6482), 1, - sym_duration_unit, - ACTIONS(6484), 1, - aux_sym_unquoted_token2, - STATE(3410), 1, + STATE(3641), 1, sym_comment, - STATE(7457), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4833), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 6, + ACTIONS(1711), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 24, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1713), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348244,6 +364773,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -348253,15 +364783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122962] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [135755] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token2, - STATE(3411), 1, + STATE(3642), 1, sym_comment, - ACTIONS(1645), 8, + ACTIONS(1767), 9, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -348269,9 +364801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1647), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1769), 28, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -348299,142 +364830,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123013] = 21, - ACTIONS(251), 1, + [135803] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3331), 1, - aux_sym_unquoted_token1, - ACTIONS(3889), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3891), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3893), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3895), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4143), 1, - anon_sym_DOT_DOT, - ACTIONS(5725), 1, - sym_val_date, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - STATE(3412), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(6788), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(3643), 1, sym_comment, - STATE(5752), 1, - sym_val_variable, - STATE(5755), 1, - sym_unquoted, - STATE(5941), 1, - sym__val_number_decimal, - STATE(7747), 1, - sym__val_range, - STATE(7793), 1, - sym__unquoted_anonymous_prefix, - STATE(7920), 1, - sym_val_bool, - ACTIONS(3887), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4145), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5795), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2697), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2699), 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, - [123096] = 8, + ACTIONS(6758), 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, + [135855] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6486), 1, + ACTIONS(6762), 1, anon_sym_DOT, - STATE(1497), 1, - sym_cell_path, - STATE(1995), 1, - sym_path, - STATE(3413), 1, + STATE(3644), 1, sym_comment, - STATE(3422), 1, + STATE(3647), 1, aux_sym_cell_path_repeat1, - ACTIONS(973), 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(975), 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, - [123153] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_DOT, - STATE(1590), 1, + STATE(3798), 1, sym_path, - STATE(3414), 1, - sym_comment, - STATE(3415), 1, - aux_sym_cell_path_repeat1, - ACTIONS(986), 6, + STATE(3806), 1, + sym_cell_path, + ACTIONS(969), 7, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(988), 29, - anon_sym_PIPE, - anon_sym_DASH2, + ACTIONS(971), 26, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348458,30 +364924,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123208] = 6, + [135911] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3645), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3885), 1, + sym_cell_path, + ACTIONS(1941), 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(1943), 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, + [135966] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6488), 1, + ACTIONS(6790), 1, anon_sym_DOT, - STATE(1590), 1, + STATE(3646), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, sym_path, - STATE(3415), 2, + STATE(3923), 1, + sym_cell_path, + ACTIONS(969), 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(971), 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, + [136021] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6762), 1, + anon_sym_DOT, + STATE(3647), 1, sym_comment, + STATE(3652), 1, aux_sym_cell_path_repeat1, - ACTIONS(979), 6, + STATE(3798), 1, + sym_path, + ACTIONS(982), 7, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(981), 29, - anon_sym_PIPE, - anon_sym_DASH2, + ACTIONS(984), 26, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348505,31 +365064,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123261] = 4, + [136074] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3416), 1, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3648), 1, sym_comment, - ACTIONS(1645), 11, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3862), 1, + sym_cell_path, + ACTIONS(1953), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1955), 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, + [136129] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3649), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3906), 1, + sym_cell_path, + ACTIONS(1925), 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(1927), 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, + [136184] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3650), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3886), 1, + sym_cell_path, + ACTIONS(1871), 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(1873), 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, + [136239] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3651), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3888), 1, + sym_cell_path, + ACTIONS(1875), 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, - aux_sym_unquoted_token2, - ACTIONS(1647), 27, + ACTIONS(1877), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, - 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, @@ -348542,33 +365246,32 @@ static const uint16_t ts_small_parse_table[] = { 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, - [123310] = 5, + [136294] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6491), 1, - aux_sym__immediate_decimal_token2, - STATE(3417), 1, + ACTIONS(6792), 1, + anon_sym_DOT, + STATE(3798), 1, + sym_path, + STATE(3652), 2, sym_comment, - ACTIONS(1745), 8, + aux_sym_cell_path_repeat1, + ACTIONS(975), 7, 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(1747), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(977), 26, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -348583,7 +365286,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -348595,76 +365297,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123361] = 6, + [136345] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6790), 1, anon_sym_DOT, - ACTIONS(6495), 1, - aux_sym__immediate_decimal_token2, - STATE(3418), 1, + STATE(3653), 1, sym_comment, - ACTIONS(1645), 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(1647), 28, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3881), 1, + sym_cell_path, + ACTIONS(2033), 7, + anon_sym_DOLLAR, 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, - [123414] = 6, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2035), 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, + [136400] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6499), 1, - aux_sym__immediate_decimal_token2, - STATE(3419), 1, + STATE(3654), 1, sym_comment, - ACTIONS(1637), 8, + ACTIONS(5138), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1639), 28, - anon_sym_DASH2, + ACTIONS(5136), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348687,34 +365387,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123467] = 4, + [136447] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3420), 1, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3655), 1, sym_comment, - ACTIONS(1745), 11, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3889), 1, + sym_cell_path, + ACTIONS(1879), 7, 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, - aux_sym_unquoted_token2, - ACTIONS(1747), 27, + ACTIONS(1881), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, - 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, @@ -348727,115 +365428,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [123516] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6501), 1, - anon_sym_DOT, - STATE(1995), 1, - sym_path, - STATE(3421), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 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(981), 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, - [123568] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_DOT, - STATE(1995), 1, - sym_path, - STATE(3421), 1, - aux_sym_cell_path_repeat1, - STATE(3422), 1, - sym_comment, - ACTIONS(986), 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(988), 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, - [123622] = 4, + [136502] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3423), 1, + STATE(3656), 1, sym_comment, - ACTIONS(1745), 9, + ACTIONS(1767), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -348843,10 +365448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1747), 28, - anon_sym_DASH_DASH, + ACTIONS(1769), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348872,23 +365477,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123670] = 4, + [136549] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3424), 1, + ACTIONS(6782), 1, + aux_sym__immediate_decimal_token2, + STATE(3657), 1, sym_comment, - ACTIONS(1637), 8, + ACTIONS(1779), 8, 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(1639), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1781), 27, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -348915,22 +365521,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123718] = 4, + [136598] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3425), 1, + ACTIONS(6795), 1, + aux_sym__immediate_decimal_token2, + STATE(3658), 1, sym_comment, - ACTIONS(1745), 8, + ACTIONS(1799), 7, 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(1747), 29, + ACTIONS(1801), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -348959,22 +365565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123766] = 4, + [136647] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3426), 1, + ACTIONS(6750), 1, + aux_sym__immediate_decimal_token2, + STATE(3659), 1, sym_comment, - ACTIONS(1781), 8, + ACTIONS(1779), 7, 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(1783), 29, + ACTIONS(1781), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -349003,15 +365609,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123814] = 5, + [136696] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6495), 1, - aux_sym__immediate_decimal_token2, - STATE(3427), 1, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3660), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3899), 1, + sym_cell_path, + ACTIONS(1909), 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, + [136751] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3661), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3896), 1, + sym_cell_path, + ACTIONS(1903), 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(1905), 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, + [136806] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6797), 1, + sym__newline, + STATE(3662), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1310), 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, + [136853] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3663), 1, sym_comment, - ACTIONS(1645), 8, + ACTIONS(1661), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -349020,7 +365760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1647), 28, + ACTIONS(1663), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -349049,14 +365789,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123864] = 4, + [136900] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3428), 1, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3664), 1, sym_comment, - ACTIONS(1645), 9, - anon_sym_GT2, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3895), 1, + sym_cell_path, + ACTIONS(1895), 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(1897), 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, + [136955] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3665), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3907), 1, + sym_cell_path, + ACTIONS(1929), 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(1931), 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, + [137010] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3666), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3956), 1, + sym_cell_path, + ACTIONS(1949), 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(1951), 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, + [137065] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3667), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3909), 1, + sym_cell_path, + ACTIONS(1933), 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(1935), 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, + [137120] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3668), 1, + sym_comment, + ACTIONS(1669), 8, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -349064,10 +365991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1647), 28, - anon_sym_DASH_DASH, + ACTIONS(1671), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349093,23 +366020,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123912] = 5, + [137167] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(6800), 1, + anon_sym_DOT, + ACTIONS(6802), 1, aux_sym__immediate_decimal_token2, - STATE(3429), 1, + STATE(3669), 1, sym_comment, - ACTIONS(1745), 8, + ACTIONS(1779), 7, 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(1747), 28, + ACTIONS(1781), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -349137,70 +366065,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [123962] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2507), 1, - sym__entry_separator, - STATE(3430), 1, - sym_comment, - ACTIONS(2505), 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, - [124010] = 4, + [137218] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3431), 1, + ACTIONS(6804), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6806), 1, + aux_sym__immediate_decimal_token2, + STATE(3670), 1, sym_comment, - ACTIONS(1781), 9, + ACTIONS(1771), 7, 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(1783), 28, - anon_sym_DASH_DASH, + ACTIONS(1773), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349225,438 +366110,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [124058] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3432), 1, - sym_comment, - ACTIONS(2365), 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(2367), 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_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, - [124106] = 8, + [137269] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6790), 1, anon_sym_DOT, - STATE(3433), 1, + STATE(3671), 1, sym_comment, - STATE(3465), 1, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(3585), 1, + STATE(3827), 1, sym_path, - STATE(3631), 1, + STATE(3927), 1, sym_cell_path, - ACTIONS(1777), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1779), 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, - [124162] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3434), 1, - sym_comment, - ACTIONS(2369), 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(2371), 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_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, - [124210] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3435), 1, - sym_comment, - ACTIONS(2373), 9, + ACTIONS(1945), 7, + anon_sym_DOLLAR, 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(2375), 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_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1947), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [124258] = 8, + 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, + [137324] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(6790), 1, anon_sym_DOT, - STATE(1681), 1, + STATE(3672), 1, + sym_comment, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(1921), 1, + STATE(3827), 1, sym_path, - STATE(3190), 1, + STATE(3876), 1, sym_cell_path, - STATE(3436), 1, - sym_comment, - ACTIONS(973), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(975), 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, - [124314] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3437), 1, - sym_comment, - ACTIONS(2070), 9, + ACTIONS(1957), 7, + anon_sym_DOLLAR, 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(2076), 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_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1959), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [124362] = 4, + 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, + [137379] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3438), 1, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3673), 1, sym_comment, - ACTIONS(2383), 9, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3902), 1, + sym_cell_path, + ACTIONS(1917), 7, + anon_sym_DOLLAR, 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(2385), 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_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1919), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [124410] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6508), 1, - anon_sym_RBRACK, - ACTIONS(6512), 1, - sym__entry_separator, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(3439), 1, - sym_comment, - ACTIONS(6510), 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, - [124462] = 4, + 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, + [137434] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3440), 1, + ACTIONS(6808), 1, + aux_sym__immediate_decimal_token2, + STATE(3674), 1, sym_comment, - ACTIONS(2078), 9, + ACTIONS(1799), 8, + anon_sym_GT2, 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(2084), 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_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 27, anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_in2, 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, - [124510] = 8, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [137483] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(6790), 1, anon_sym_DOT, - STATE(3441), 1, + STATE(3675), 1, sym_comment, - STATE(3465), 1, + STATE(3694), 1, aux_sym_cell_path_repeat1, - STATE(3585), 1, + STATE(3827), 1, sym_path, - STATE(3626), 1, + STATE(3911), 1, sym_cell_path, - ACTIONS(973), 7, - anon_sym_GT2, + ACTIONS(1937), 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(1939), 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, + [137538] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3676), 1, + sym_comment, + ACTIONS(1711), 8, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(975), 26, - anon_sym_DASH_DASH, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1713), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349669,6 +366372,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -349680,166 +366384,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [124566] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(6514), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(3442), 1, - sym_comment, - ACTIONS(6510), 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, - [124618] = 11, + sym_duration_unit, + [137585] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3443), 1, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3677), 1, sym_comment, - STATE(3984), 1, - sym__immediate_decimal, - ACTIONS(6388), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3759), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1677), 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, - [124680] = 4, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3891), 1, + sym_cell_path, + ACTIONS(1883), 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(1885), 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, + [137640] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3444), 1, + STATE(3678), 1, sym_comment, - ACTIONS(2387), 9, + ACTIONS(5126), 6, + anon_sym_GT2, 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(2389), 28, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5124), 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_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, - [124728] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [137687] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3445), 1, + ACTIONS(6810), 1, + anon_sym_LBRACK2, + STATE(3679), 1, sym_comment, - ACTIONS(1637), 9, + ACTIONS(2304), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1639), 28, + ACTIONS(2308), 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, @@ -349852,7 +366510,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -349862,67 +366519,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [124776] = 6, - ACTIONS(3), 1, + [137736] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(6516), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(3446), 1, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3680), 1, sym_comment, - ACTIONS(6510), 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, - [124828] = 6, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3893), 1, + sym_cell_path, + ACTIONS(1887), 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(1889), 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, + [137791] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3681), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3882), 1, + sym_cell_path, + ACTIONS(2049), 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(2051), 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, + [137846] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3682), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3884), 1, + sym_cell_path, + ACTIONS(2053), 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(2055), 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, + [137901] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6790), 1, + anon_sym_DOT, + STATE(3683), 1, + sym_comment, + STATE(3694), 1, + aux_sym_cell_path_repeat1, + STATE(3827), 1, + sym_path, + STATE(3894), 1, + sym_cell_path, + ACTIONS(1891), 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(1893), 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, + [137956] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(6518), 1, - anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(3447), 1, + STATE(3684), 1, sym_comment, - ACTIONS(6510), 34, + ACTIONS(6758), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349957,119 +366751,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [124880] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3448), 1, - sym_comment, - ACTIONS(2532), 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(2534), 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_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, - [124928] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3449), 1, - sym_comment, - ACTIONS(2520), 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(2522), 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_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, - [124976] = 8, + [138005] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6506), 1, - anon_sym_DOT, - STATE(3450), 1, + STATE(3685), 1, sym_comment, - STATE(3465), 1, - aux_sym_cell_path_repeat1, - STATE(3585), 1, - sym_path, - STATE(3632), 1, - sym_cell_path, - ACTIONS(1771), 7, + ACTIONS(2403), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1775), 26, + ACTIONS(2405), 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, @@ -350091,38 +366793,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125032] = 11, + [138051] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4831), 1, - anon_sym_DOT_DOT2, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(6520), 1, - sym_filesize_unit, - ACTIONS(6522), 1, - sym_duration_unit, - STATE(3451), 1, + STATE(3686), 1, sym_comment, - STATE(7710), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4833), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, + ACTIONS(2363), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 24, - anon_sym_DASH2, + ACTIONS(2365), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350144,201 +366835,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125094] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3452), 1, - sym_comment, - ACTIONS(2524), 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(2526), 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_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, - [125142] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3453), 1, - sym_comment, - ACTIONS(2088), 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(2094), 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_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, - [125190] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3454), 1, - sym_comment, - ACTIONS(2528), 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(2530), 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_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, - [125238] = 4, + [138097] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3687), 1, sym_comment, - ACTIONS(2361), 9, + ACTIONS(1883), 6, + anon_sym_GT2, 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(2363), 28, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1885), 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_DASH_DASH, - anon_sym_if, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, - [125286] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138143] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3456), 1, + STATE(3688), 1, sym_comment, - ACTIONS(1645), 8, + ACTIONS(2375), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1647), 29, + ACTIONS(2377), 29, sym__newline, - anon_sym_DASH2, + 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, @@ -350351,7 +366910,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -350361,166 +366919,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125334] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3457), 1, - sym_comment, - STATE(3979), 1, - sym__immediate_decimal, - ACTIONS(6388), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3818), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1589), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1603), 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, - [125396] = 4, + [138189] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3458), 1, + STATE(3689), 1, sym_comment, - ACTIONS(2181), 9, + ACTIONS(1937), 6, + anon_sym_GT2, 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(2187), 28, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1939), 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_DASH_DASH, - anon_sym_if, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, - [125444] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138235] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(3459), 1, + STATE(3690), 1, sym_comment, - ACTIONS(2379), 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(2381), 28, + ACTIONS(1302), 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_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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [125492] = 4, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + 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, + [138279] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3460), 1, + STATE(3691), 1, sym_comment, - ACTIONS(1637), 8, + ACTIONS(2367), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1639), 28, - anon_sym_DASH2, + ACTIONS(2369), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350533,7 +367035,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -350543,74 +367044,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125539] = 8, + [138325] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_DOT, - STATE(1497), 1, - sym_cell_path, - STATE(2047), 1, - aux_sym_cell_path_repeat1, - STATE(2176), 1, - sym_path, - STATE(3461), 1, + STATE(3692), 1, sym_comment, - ACTIONS(973), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(975), 24, - ts_builtin_sym_end, + ACTIONS(2520), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2522), 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_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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [125594] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138371] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3462), 1, + STATE(3693), 1, sym_comment, - ACTIONS(1745), 8, + ACTIONS(2391), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1747), 28, - anon_sym_DASH2, + ACTIONS(2393), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350623,7 +367119,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -350633,66 +367128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125641] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6524), 1, - sym__newline, - STATE(3463), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1314), 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, - [125688] = 8, + [138417] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, + ACTIONS(6790), 1, anon_sym_DOT, - STATE(3464), 1, + STATE(3694), 1, sym_comment, - STATE(3517), 1, + STATE(3720), 1, aux_sym_cell_path_repeat1, - STATE(3621), 1, + STATE(3827), 1, sym_path, - STATE(3690), 1, - sym_cell_path, - ACTIONS(1893), 7, + ACTIONS(982), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350700,7 +367147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1895), 25, + ACTIONS(984), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350726,29 +367173,27 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [125743] = 7, + [138469] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6506), 1, - anon_sym_DOT, - STATE(3465), 1, + STATE(3695), 1, sym_comment, - STATE(3470), 1, - aux_sym_cell_path_repeat1, - STATE(3585), 1, - sym_path, - ACTIONS(986), 7, + ACTIONS(2458), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(988), 26, + ACTIONS(2460), 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, @@ -350770,26 +367215,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [125796] = 4, + [138515] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3466), 1, + STATE(3696), 1, sym_comment, - ACTIONS(1781), 8, + ACTIONS(1891), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1783), 28, + ACTIONS(1893), 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, + [138561] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6812), 1, + anon_sym_QMARK2, + STATE(3697), 1, + sym_comment, + ACTIONS(1008), 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(1010), 26, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350802,7 +367289,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -350814,159 +367300,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [125843] = 8, + [138609] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3467), 1, + STATE(3698), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3662), 1, - sym_cell_path, - ACTIONS(1929), 7, - anon_sym_DOLLAR, + ACTIONS(1034), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1931), 25, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1036), 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, + [138655] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6814), 1, + anon_sym_LPAREN2, + ACTIONS(6816), 1, + anon_sym_EQ2, + ACTIONS(6818), 1, + sym_short_flag_identifier, + STATE(3699), 1, + sym_comment, + ACTIONS(5027), 13, 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, - [125898] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3468), 1, - sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3725), 1, - sym_cell_path, - ACTIONS(1885), 7, + ACTIONS(5029), 19, + 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, - ACTIONS(1887), 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_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_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, - [125953] = 8, + [138707] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3469), 1, + STATE(3700), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3651), 1, - sym_cell_path, - ACTIONS(1901), 7, - anon_sym_DOLLAR, + ACTIONS(1925), 6, + anon_sym_GT2, anon_sym_DASH2, - 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_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1927), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [126008] = 6, + 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, + [138753] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6529), 1, - anon_sym_DOT, - STATE(3585), 1, - sym_path, - STATE(3470), 2, + STATE(3701), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 7, + ACTIONS(2478), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2480), 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, + [138799] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6820), 1, + anon_sym_QMARK2, + STATE(3702), 1, + sym_comment, + ACTIONS(990), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -350974,7 +367486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(981), 26, + anon_sym_DOT, + ACTIONS(992), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -351001,21 +367514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [126059] = 5, + [138847] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6532), 1, - anon_sym_LBRACK2, - STATE(3471), 1, + STATE(3703), 1, sym_comment, - ACTIONS(2333), 6, + ACTIONS(1941), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2337), 29, + ACTIONS(1943), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -351045,24 +367556,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126108] = 4, + [138893] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3472), 1, + STATE(3704), 1, sym_comment, - ACTIONS(1645), 8, + ACTIONS(1779), 8, 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(1647), 28, - anon_sym_DASH2, + ACTIONS(1781), 27, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -351087,161 +367598,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [126155] = 8, + [138939] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3473), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(6822), 1, + anon_sym_DOT_DOT2, + STATE(3705), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3663), 1, - sym_cell_path, - ACTIONS(1933), 7, - anon_sym_DOLLAR, + ACTIONS(6824), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 25, + sym__newline, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1935), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_in2, 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, - [126210] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138993] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3474), 1, + STATE(3706), 1, sym_comment, - STATE(3517), 1, + STATE(3707), 1, aux_sym_cell_path_repeat1, - STATE(3621), 1, + STATE(3825), 1, sym_path, - STATE(3664), 1, - sym_cell_path, - ACTIONS(1937), 7, - anon_sym_DOLLAR, + ACTIONS(982), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1939), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(984), 26, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [126265] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + 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, + [139045] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, + ACTIONS(6828), 1, anon_sym_DOT, - STATE(3475), 1, + STATE(3825), 1, + sym_path, + STATE(3707), 2, sym_comment, - STATE(3517), 1, aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3658), 1, - sym_cell_path, - ACTIONS(1921), 7, - anon_sym_DOLLAR, + ACTIONS(975), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1923), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(977), 26, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [126320] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + 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, + [139095] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3476), 1, + STATE(3708), 1, sym_comment, - ACTIONS(5056), 6, + ACTIONS(2466), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5054), 30, + ACTIONS(2468), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -351262,7 +367766,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -351272,251 +367775,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126367] = 8, + [139141] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3477), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(6831), 1, + anon_sym_DOT_DOT2, + STATE(3709), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3666), 1, - sym_cell_path, - ACTIONS(1945), 7, - anon_sym_DOLLAR, + ACTIONS(6833), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 25, + sym__newline, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1947), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_in2, 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, - [126422] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139195] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3478), 1, + STATE(3710), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3669), 1, - sym_cell_path, - ACTIONS(1949), 7, - anon_sym_DOLLAR, + ACTIONS(2379), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1951), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2381), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [126477] = 5, - ACTIONS(3), 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, + [139241] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(3479), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(6835), 1, + anon_sym_DOT_DOT2, + STATE(3711), 1, sym_comment, - ACTIONS(6510), 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, - [126526] = 8, + ACTIONS(6837), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [139295] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3480), 1, + STATE(3712), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3670), 1, - sym_cell_path, - ACTIONS(1953), 7, - anon_sym_DOLLAR, + ACTIONS(2462), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1955), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2464), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [126581] = 8, + 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, + [139341] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3481), 1, + STATE(3713), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3644), 1, - sym_cell_path, - ACTIONS(1897), 7, - anon_sym_DOLLAR, + ACTIONS(2371), 6, + anon_sym_GT2, anon_sym_DASH2, - 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_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, - [126636] = 4, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2373), 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, + [139387] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3482), 1, + STATE(3714), 1, sym_comment, - ACTIONS(5044), 6, + ACTIONS(1895), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5042), 30, + ACTIONS(1897), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -351537,7 +368026,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -351547,298 +368035,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126683] = 6, + [139433] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6536), 1, - aux_sym__immediate_decimal_token2, - STATE(3483), 1, + STATE(3715), 1, sym_comment, - ACTIONS(1793), 9, + ACTIONS(1818), 7, + 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(1795), 25, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1820), 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126734] = 6, + [139479] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token2, - STATE(3484), 1, + STATE(3716), 1, sym_comment, - ACTIONS(1785), 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(1787), 25, - ts_builtin_sym_end, + 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_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, - [126785] = 8, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139525] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3485), 1, + STATE(3717), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3660), 1, - sym_cell_path, - ACTIONS(1925), 7, - anon_sym_DOLLAR, + ACTIONS(2383), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1927), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2385), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [126840] = 8, + 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, + [139571] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3486), 1, + STATE(3718), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3671), 1, - sym_cell_path, - ACTIONS(2064), 7, - anon_sym_DOLLAR, + ACTIONS(1771), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 28, + sym__newline, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2066), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_in2, 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, - [126895] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [139617] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3487), 1, + STATE(3719), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3659), 1, - sym_cell_path, - ACTIONS(973), 7, - anon_sym_DOLLAR, + ACTIONS(1687), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(975), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [126950] = 8, + 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, + [139663] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, + ACTIONS(6839), 1, anon_sym_DOT, - STATE(3488), 1, - sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, + STATE(3827), 1, sym_path, - STATE(3657), 1, - sym_cell_path, - ACTIONS(1917), 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(1919), 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, - [127005] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3489), 1, + STATE(3720), 2, sym_comment, - STATE(3517), 1, aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3656), 1, - sym_cell_path, - ACTIONS(1909), 7, + ACTIONS(975), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351846,7 +368263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1911), 25, + ACTIONS(977), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351872,392 +368289,359 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127060] = 8, + [139713] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3490), 1, + STATE(3721), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3728), 1, - sym_cell_path, - ACTIONS(1889), 7, - anon_sym_DOLLAR, + ACTIONS(1771), 8, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1891), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 27, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [127115] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [139759] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3491), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(6842), 1, + anon_sym_DOT_DOT2, + STATE(3722), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3672), 1, - sym_cell_path, - ACTIONS(1957), 7, - anon_sym_DOLLAR, + ACTIONS(6844), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1959), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 24, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [127170] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139813] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3492), 1, + STATE(3723), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3673), 1, - sym_cell_path, - ACTIONS(1961), 7, - anon_sym_DOLLAR, + ACTIONS(2391), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1963), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2393), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [127225] = 8, + 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, + [139859] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3493), 1, + STATE(3724), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3655), 1, - sym_cell_path, - ACTIONS(1905), 7, - anon_sym_DOLLAR, + ACTIONS(2387), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1907), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2389), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [127280] = 8, + 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, + [139905] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3494), 1, + STATE(3725), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3677), 1, - sym_cell_path, - ACTIONS(1965), 7, - anon_sym_DOLLAR, + ACTIONS(1933), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1967), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1935), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [127335] = 8, + 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, + [139951] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3495), 1, + STATE(3726), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3678), 1, - sym_cell_path, - ACTIONS(1969), 7, - anon_sym_DOLLAR, + ACTIONS(2504), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1971), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2506), 29, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [127390] = 8, + 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, + [139997] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6527), 1, - anon_sym_DOT, - STATE(3496), 1, + STATE(3727), 1, sym_comment, - STATE(3517), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - STATE(3665), 1, - sym_cell_path, - ACTIONS(1941), 7, - anon_sym_DOLLAR, + ACTIONS(1799), 8, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1943), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 27, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [127445] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [140043] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6542), 1, - anon_sym_DOT_DOT2, - STATE(3497), 1, + STATE(3728), 1, sym_comment, - ACTIONS(6544), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2070), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2076), 24, + ACTIONS(2482), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2484), 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_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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127495] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140089] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3498), 1, + STATE(3729), 1, sym_comment, - ACTIONS(2407), 6, + ACTIONS(2470), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2409), 29, + ACTIONS(2472), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352287,19 +368671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127541] = 4, + [140135] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3499), 1, + STATE(3730), 1, sym_comment, - ACTIONS(2391), 6, + ACTIONS(1917), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2393), 29, + ACTIONS(1919), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352329,27 +368713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127587] = 4, + [140181] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3500), 1, + STATE(3731), 1, sym_comment, - ACTIONS(2477), 6, + ACTIONS(1818), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2479), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1820), 27, 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, @@ -352362,6 +368743,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -352371,19 +368753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127633] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140227] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3732), 1, sym_comment, - ACTIONS(1957), 6, + ACTIONS(2399), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1959), 29, + ACTIONS(2401), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352413,27 +368797,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127679] = 4, + [140273] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3502), 1, + STATE(3733), 1, sym_comment, - ACTIONS(1897), 6, + ACTIONS(1799), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1899), 29, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 28, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352446,6 +368827,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -352455,27 +368837,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127725] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140319] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3503), 1, + ACTIONS(6802), 1, + aux_sym__immediate_decimal_token2, + STATE(3734), 1, sym_comment, - ACTIONS(1965), 6, + ACTIONS(1779), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1967), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352488,6 +368870,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -352497,28 +368880,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127771] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140367] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, + STATE(3735), 1, sym_comment, - STATE(3507), 1, - aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_path, - ACTIONS(986), 6, + ACTIONS(2454), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(988), 26, + ACTIONS(2456), 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, @@ -352540,21 +368924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [127823] = 4, + [140413] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3505), 1, + STATE(3736), 1, sym_comment, - ACTIONS(2399), 6, + ACTIONS(1957), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2401), 29, + ACTIONS(1959), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352584,19 +368966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127869] = 4, + [140459] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3506), 1, + STATE(3737), 1, sym_comment, - ACTIONS(2445), 6, + ACTIONS(2486), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2447), 29, + ACTIONS(2488), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352626,27 +369008,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127915] = 6, + [140505] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6548), 1, - anon_sym_DOT, - STATE(3630), 1, - sym_path, - STATE(3507), 2, + STATE(3738), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 6, + ACTIONS(2439), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(981), 26, + ACTIONS(2441), 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, @@ -352668,29 +369050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [127965] = 4, + [140551] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3739), 1, sym_comment, - ACTIONS(2481), 6, + ACTIONS(1779), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2483), 29, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 28, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352703,6 +369080,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -352712,19 +369090,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128011] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140597] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3509), 1, + STATE(3740), 1, sym_comment, - ACTIONS(2485), 6, + ACTIONS(2508), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2487), 29, + ACTIONS(2510), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352754,19 +369134,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128057] = 4, + [140643] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3510), 1, + STATE(3741), 1, sym_comment, - ACTIONS(1969), 6, + ACTIONS(2492), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1971), 29, + ACTIONS(2494), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352796,27 +369176,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128103] = 4, + [140689] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3511), 1, + ACTIONS(6846), 1, + aux_sym__immediate_decimal_token2, + STATE(3742), 1, sym_comment, - ACTIONS(2489), 6, + ACTIONS(1799), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2491), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352829,6 +369207,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -352838,23 +369217,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128149] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [140737] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6551), 1, - anon_sym_QMARK2, - STATE(3512), 1, + ACTIONS(6848), 1, + anon_sym_DOT_DOT2, + ACTIONS(6852), 1, + sym_filesize_unit, + ACTIONS(6854), 1, + sym_duration_unit, + STATE(3743), 1, sym_comment, - ACTIONS(990), 8, + ACTIONS(6850), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 6, 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(992), 26, + ACTIONS(1699), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -352879,21 +369265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128197] = 4, + [140791] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3513), 1, + STATE(3744), 1, sym_comment, - ACTIONS(2493), 6, + ACTIONS(2474), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2495), 29, + ACTIONS(2476), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -352923,26 +369307,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128243] = 5, + [140837] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6553), 1, - anon_sym_QMARK2, - STATE(3514), 1, + STATE(3745), 1, sym_comment, - ACTIONS(1012), 8, + ACTIONS(1949), 6, 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(1014), 26, + ACTIONS(1951), 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, @@ -352964,29 +369349,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [128291] = 4, + [140883] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3515), 1, + ACTIONS(6856), 1, + anon_sym_QMARK2, + STATE(3746), 1, sym_comment, - ACTIONS(2421), 6, + ACTIONS(990), 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(992), 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, + [140930] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3747), 1, + sym_comment, + ACTIONS(1014), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2423), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1016), 26, 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, @@ -353008,70 +369430,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128337] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6555), 1, - anon_sym_DOT_DOT2, - STATE(3516), 1, - sym_comment, - ACTIONS(6557), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2084), 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_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, - [128387] = 7, - ACTIONS(251), 1, + [140975] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6527), 1, + ACTIONS(6858), 1, anon_sym_DOT, - STATE(3517), 1, + ACTIONS(6860), 1, + aux_sym__immediate_decimal_token2, + STATE(3748), 1, sym_comment, - STATE(3529), 1, - aux_sym_cell_path_repeat1, - STATE(3621), 1, - sym_path, - ACTIONS(986), 7, + ACTIONS(1669), 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(1671), 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, + [141024] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6862), 1, + anon_sym_QMARK2, + STATE(3749), 1, + sym_comment, + ACTIONS(1008), 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(988), 25, + ACTIONS(1010), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -353097,69 +369517,67 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128439] = 4, - ACTIONS(251), 1, + [141071] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3518), 1, + ACTIONS(6864), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6866), 1, + aux_sym__immediate_decimal_token2, + STATE(3750), 1, sym_comment, - ACTIONS(2449), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2451), 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, - [128485] = 4, + ACTIONS(1661), 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(1663), 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, + [141120] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3519), 1, + ACTIONS(6868), 1, + anon_sym_QMARK2, + STATE(3751), 1, sym_comment, - ACTIONS(2413), 6, + ACTIONS(1008), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2415), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1010), 27, 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, @@ -353181,27 +369599,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128531] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [141167] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3520), 1, + ACTIONS(6870), 1, + anon_sym_QMARK2, + STATE(3752), 1, sym_comment, - ACTIONS(2395), 6, + ACTIONS(990), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2397), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(992), 27, 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, @@ -353223,27 +369641,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128577] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [141214] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3521), 1, + STATE(3753), 1, sym_comment, - ACTIONS(2064), 6, + ACTIONS(1000), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2066), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1002), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353265,116 +369682,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128623] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6559), 1, - anon_sym_DOT_DOT2, - STATE(3522), 1, - sym_comment, - ACTIONS(6561), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2187), 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_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, - [128673] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - ACTIONS(6565), 1, - anon_sym_EQ2, - ACTIONS(6567), 1, - sym_short_flag_identifier, - STATE(3523), 1, - sym_comment, - ACTIONS(4930), 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(4932), 19, - anon_sym_LPAREN, - 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_decimal_token2, - aux_sym__val_number_token1, - aux_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, - [128725] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [141259] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3524), 1, + ACTIONS(6872), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6874), 1, + aux_sym__immediate_decimal_token2, + STATE(3754), 1, sym_comment, - ACTIONS(1695), 6, + ACTIONS(1771), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + aux_sym_unquoted_token2, + ACTIONS(1773), 25, 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, @@ -353387,6 +369718,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -353396,70 +369728,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128771] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6569), 1, - aux_sym__immediate_decimal_token2, - STATE(3525), 1, - sym_comment, - ACTIONS(1801), 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(1803), 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, - [128819] = 4, + [141308] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3526), 1, + STATE(3755), 1, sym_comment, - ACTIONS(2417), 6, + ACTIONS(1004), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2419), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1006), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353481,27 +369766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128865] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [141353] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3756), 1, sym_comment, - ACTIONS(2417), 6, + ACTIONS(996), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2419), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(998), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353523,27 +369807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128911] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [141398] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3528), 1, + STATE(3757), 1, sym_comment, - ACTIONS(2497), 6, + ACTIONS(986), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2499), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(988), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353565,71 +369848,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128957] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6571), 1, anon_sym_DOT, - STATE(3621), 1, - sym_path, - STATE(3529), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 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(981), 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, - [129007] = 4, + aux_sym_record_entry_token1, + sym__table_head_separator, + [141443] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3530), 1, + ACTIONS(6386), 1, + sym_filesize_unit, + ACTIONS(6388), 1, + sym_duration_unit, + ACTIONS(6876), 1, + anon_sym_DOT_DOT2, + STATE(3758), 1, sym_comment, - ACTIONS(1038), 6, + ACTIONS(3049), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1040), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1699), 24, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353651,27 +369896,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129053] = 4, + [141496] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3531), 1, + ACTIONS(6878), 1, + anon_sym_DOT, + ACTIONS(6880), 1, + aux_sym__immediate_decimal_token2, + STATE(3759), 1, sym_comment, - ACTIONS(2433), 6, + ACTIONS(1779), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2435), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + aux_sym_unquoted_token2, + ACTIONS(1781), 25, 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, @@ -353684,6 +369929,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -353693,27 +369939,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129099] = 4, + [141545] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3532), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3745), 1, + sym_cell_path, + STATE(3760), 1, sym_comment, - ACTIONS(1917), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1945), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1919), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1947), 24, 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, @@ -353735,27 +369984,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129145] = 4, + [141598] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3533), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3712), 1, + sym_cell_path, + STATE(3761), 1, sym_comment, - ACTIONS(2425), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1949), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2427), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1951), 24, 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, @@ -353777,27 +370029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129191] = 4, + [141651] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3534), 1, + STATE(3762), 1, sym_comment, - ACTIONS(2429), 6, + ACTIONS(1779), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2431), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353810,6 +370058,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -353819,70 +370068,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129237] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token2, - STATE(3535), 1, - sym_comment, - ACTIONS(1785), 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(1787), 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, - [129285] = 4, + [141696] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3536), 1, + STATE(3763), 1, sym_comment, - ACTIONS(2461), 6, + ACTIONS(1771), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2463), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353895,6 +370099,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -353904,31 +370109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129331] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [141741] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6574), 1, - anon_sym_DOT_DOT2, - ACTIONS(6578), 1, - sym_filesize_unit, - ACTIONS(6580), 1, - sym_duration_unit, - STATE(3537), 1, + STATE(3764), 1, sym_comment, - ACTIONS(6576), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 6, + ACTIONS(1799), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 24, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353941,6 +370140,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -353950,71 +370150,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129385] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6582), 1, - anon_sym_DOT_DOT2, - STATE(3538), 1, - sym_comment, - ACTIONS(6584), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2088), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2094), 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_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, - [129435] = 4, + [141786] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3539), 1, + STATE(3765), 1, sym_comment, - ACTIONS(2465), 6, + ACTIONS(1818), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2467), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1820), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354027,6 +370181,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -354036,27 +370191,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129481] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [141831] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3540), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3741), 1, + sym_cell_path, + STATE(3766), 1, sym_comment, - ACTIONS(1933), 6, + STATE(3825), 1, + sym_path, + ACTIONS(2033), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1935), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2035), 24, 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, @@ -354078,27 +370238,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129527] = 4, + [141884] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3541), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3703), 1, + sym_cell_path, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3767), 1, sym_comment, - ACTIONS(1889), 6, + STATE(3825), 1, + sym_path, + ACTIONS(2049), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1891), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2051), 24, 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, @@ -354120,27 +370283,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129573] = 4, + [141937] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3542), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3726), 1, + sym_cell_path, + STATE(3768), 1, sym_comment, - ACTIONS(2473), 6, + STATE(3825), 1, + sym_path, + ACTIONS(2053), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2475), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2055), 24, 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, @@ -354162,27 +370328,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129619] = 4, + [141990] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3543), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3740), 1, + sym_cell_path, + STATE(3769), 1, sym_comment, - ACTIONS(2437), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1941), 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, + ACTIONS(1943), 24, 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, @@ -354204,27 +370373,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129665] = 4, + [142043] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3544), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3687), 1, + sym_cell_path, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3770), 1, sym_comment, - ACTIONS(2441), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1871), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2443), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1873), 24, 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, @@ -354246,68 +370418,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129711] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3545), 1, - sym_comment, - ACTIONS(1306), 35, - sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [129755] = 4, + [142096] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3696), 1, + sym_cell_path, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3771), 1, sym_comment, - ACTIONS(1941), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1875), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1943), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1877), 24, 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, @@ -354329,27 +370463,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129801] = 4, + [142149] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3547), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3714), 1, + sym_cell_path, + STATE(3772), 1, sym_comment, - ACTIONS(1945), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1879), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1947), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1881), 24, 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, @@ -354371,27 +370508,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129847] = 4, + [142202] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3548), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3716), 1, + sym_cell_path, + STATE(3773), 1, sym_comment, - ACTIONS(2469), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1883), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2471), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1885), 24, 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, @@ -354413,29 +370553,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129893] = 8, + [142255] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6180), 1, - sym_filesize_unit, - ACTIONS(6182), 1, - sym_duration_unit, - ACTIONS(6586), 1, - anon_sym_DOT_DOT2, - STATE(3549), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3730), 1, + sym_cell_path, + STATE(3774), 1, sym_comment, - ACTIONS(6588), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, + STATE(3825), 1, + sym_path, + ACTIONS(1887), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 25, - sym__newline, - anon_sym_DASH2, + ACTIONS(1889), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -354459,27 +370598,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129947] = 4, + [142308] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3550), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3691), 1, + sym_cell_path, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3775), 1, sym_comment, - ACTIONS(2403), 6, + STATE(3825), 1, + sym_path, + ACTIONS(1895), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2405), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1897), 24, 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, @@ -354501,69 +370643,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129993] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6590), 1, - anon_sym_QMARK2, - STATE(3551), 1, - sym_comment, - ACTIONS(1012), 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(1014), 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, - [130040] = 8, + [142361] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3700), 1, + sym_cell_path, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(3552), 1, + STATE(3776), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - STATE(3631), 1, - sym_cell_path, - ACTIONS(1777), 6, + ACTIONS(1903), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1779), 24, + ACTIONS(1905), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -354588,64 +370688,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130093] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6594), 1, - aux_sym__immediate_decimal_token2, - STATE(3553), 1, - sym_comment, - ACTIONS(1637), 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(1639), 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, - [130142] = 4, + [142414] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3554), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3725), 1, + sym_cell_path, + STATE(3777), 1, sym_comment, - ACTIONS(1022), 8, + STATE(3825), 1, + sym_path, + ACTIONS(1909), 6, 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(1024), 26, + ACTIONS(1911), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -354670,199 +370733,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130187] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6596), 1, - anon_sym_DOT, - ACTIONS(6598), 1, - aux_sym__immediate_decimal_token2, - STATE(3555), 1, - sym_comment, - ACTIONS(1645), 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(1647), 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, - [130236] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6600), 1, - anon_sym_DOT_DOT2, - STATE(3556), 1, - sym_comment, - ACTIONS(6602), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2187), 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, - [130285] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6604), 1, - anon_sym_DOT_DOT2, - STATE(3557), 1, - sym_comment, - ACTIONS(6606), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2070), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2076), 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, - [130334] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3558), 1, - sym_comment, - ACTIONS(2102), 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(2104), 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, - [130379] = 8, + [142467] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(3532), 1, + STATE(3713), 1, sym_cell_path, - STATE(3559), 1, + STATE(3778), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - ACTIONS(1905), 6, + ACTIONS(1917), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1907), 24, + ACTIONS(1919), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -354887,27 +370778,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130432] = 8, + [142520] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(3536), 1, - sym_cell_path, - STATE(3560), 1, + STATE(3779), 1, sym_comment, - STATE(3630), 1, + STATE(3813), 1, + sym_cell_path, + STATE(3825), 1, sym_path, - ACTIONS(1909), 6, + ACTIONS(1757), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1911), 24, + ACTIONS(1761), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -354932,21 +370823,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130485] = 4, + [142573] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3561), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3780), 1, sym_comment, - ACTIONS(1018), 8, + STATE(3801), 1, + sym_cell_path, + STATE(3825), 1, + sym_path, + ACTIONS(1763), 6, 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(1020), 26, + ACTIONS(1765), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -354971,29 +370868,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [130530] = 8, + [142626] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(3539), 1, - sym_cell_path, - STATE(3562), 1, + STATE(3781), 1, sym_comment, - STATE(3630), 1, + STATE(3806), 1, + sym_cell_path, + STATE(3825), 1, sym_path, - ACTIONS(1917), 6, + ACTIONS(969), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1919), 24, + ACTIONS(971), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355018,27 +370913,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130583] = 8, + [142679] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3540), 1, + STATE(3688), 1, sym_cell_path, - STATE(3563), 1, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3782), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - ACTIONS(1921), 6, + ACTIONS(1925), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1923), 24, + ACTIONS(1927), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355063,27 +370958,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130636] = 8, + [142732] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3546), 1, + STATE(3689), 1, sym_cell_path, - STATE(3564), 1, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3783), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - ACTIONS(1925), 6, + ACTIONS(1929), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1927), 24, + ACTIONS(1931), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355108,23 +371003,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130689] = 4, + [142785] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3565), 1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3710), 1, + sym_cell_path, + STATE(3784), 1, sym_comment, - ACTIONS(996), 6, + STATE(3825), 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(998), 28, + ACTIONS(1935), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355146,30 +371048,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [130734] = 8, + [142838] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(3547), 1, + STATE(3717), 1, sym_cell_path, - STATE(3566), 1, + STATE(3785), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - ACTIONS(1929), 6, + ACTIONS(1937), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1931), 24, + ACTIONS(1939), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355194,111 +371093,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130787] = 4, + [142891] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3567), 1, + ACTIONS(6882), 1, + sym_long_flag_identifier, + ACTIONS(6884), 1, + anon_sym_EQ2, + STATE(3786), 1, sym_comment, - ACTIONS(1008), 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(1010), 26, + ACTIONS(5010), 16, 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, - [130832] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6608), 1, - anon_sym_DOT_DOT2, - STATE(3568), 1, - sym_comment, - ACTIONS(6610), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2084), 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, - [130881] = 8, + ACTIONS(5012), 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, + [142940] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(3548), 1, + STATE(3736), 1, sym_cell_path, - STATE(3569), 1, + STATE(3787), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - ACTIONS(1933), 6, + ACTIONS(1953), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1935), 24, + ACTIONS(1955), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355323,27 +371181,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130934] = 8, + [142993] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3521), 1, + STATE(3692), 1, sym_cell_path, - STATE(3570), 1, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3788), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - ACTIONS(1937), 6, + ACTIONS(1957), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1939), 24, + ACTIONS(1959), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355368,28 +371226,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130987] = 8, + [143046] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3571), 1, + ACTIONS(6886), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6888), 1, + aux_sym__immediate_decimal_token2, + STATE(3789), 1, sym_comment, - STATE(3626), 1, - sym_cell_path, - STATE(3630), 1, - sym_path, - ACTIONS(973), 6, + ACTIONS(1771), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(975), 24, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1773), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355404,6 +371259,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -355413,30 +371269,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131040] = 8, + [143095] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6180), 1, - sym_filesize_unit, - ACTIONS(6182), 1, - sym_duration_unit, - ACTIONS(6612), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(6890), 1, anon_sym_DOT_DOT2, - STATE(3572), 1, + STATE(3790), 1, sym_comment, - ACTIONS(6588), 2, + ACTIONS(6892), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, + ACTIONS(1830), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 24, + ACTIONS(1838), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355458,12 +371314,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131093] = 4, + [143148] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3573), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(6894), 1, + anon_sym_DOT_DOT2, + STATE(3791), 1, sym_comment, - ACTIONS(1004), 8, + ACTIONS(6896), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 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, + [143201] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3792), 1, + sym_comment, + ACTIONS(1000), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -355472,7 +371373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1006), 26, + ACTIONS(1002), 26, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -355499,114 +371400,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131138] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3574), 1, - sym_comment, - ACTIONS(1801), 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(1803), 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, - [131183] = 8, + [143246] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6898), 1, anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3542), 1, - sym_cell_path, - STATE(3575), 1, + ACTIONS(6900), 1, + aux_sym__immediate_decimal_token2, + STATE(3793), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1941), 6, + ACTIONS(1779), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1943), 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, - [131236] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3500), 1, - sym_cell_path, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3576), 1, - sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1945), 6, - anon_sym_GT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 26, + sym__newline, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1947), 24, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355621,6 +371433,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -355630,102 +371443,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131289] = 8, + [143295] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3501), 1, - sym_cell_path, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3577), 1, + STATE(3794), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1949), 6, - anon_sym_GT2, + ACTIONS(1004), 8, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1951), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1006), 26, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [131342] = 8, + 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, + [143340] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3503), 1, - sym_cell_path, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3578), 1, + STATE(3795), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1953), 6, - anon_sym_GT2, + ACTIONS(996), 8, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1955), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(998), 26, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [131395] = 4, + 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, + [143385] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3579), 1, + STATE(3796), 1, sym_comment, - ACTIONS(996), 8, + ACTIONS(986), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -355734,7 +371539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(998), 26, + ACTIONS(988), 26, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -355761,30 +371566,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131440] = 8, + [143430] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3508), 1, - sym_cell_path, - STATE(3580), 1, + ACTIONS(6386), 1, + sym_filesize_unit, + ACTIONS(6388), 1, + sym_duration_unit, + ACTIONS(6902), 1, + anon_sym_DOT_DOT2, + STATE(3797), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(2064), 6, + ACTIONS(6904), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2066), 24, - anon_sym_DASH_DASH, + ACTIONS(1699), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355806,27 +371611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131493] = 8, + [143483] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3505), 1, - sym_cell_path, - STATE(3581), 1, + STATE(3798), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1889), 6, + ACTIONS(1022), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1891), 24, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1024), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355851,27 +371650,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131546] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [143528] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3541), 1, - sym_cell_path, - STATE(3582), 1, + STATE(3799), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1885), 6, + ACTIONS(1018), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1887), 24, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1020), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355896,27 +371691,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131599] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [143573] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3509), 1, + STATE(3686), 1, sym_cell_path, - STATE(3583), 1, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3800), 1, sym_comment, - STATE(3630), 1, + STATE(3825), 1, sym_path, - ACTIONS(1957), 6, + ACTIONS(1891), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1959), 24, + ACTIONS(1893), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355941,27 +371738,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131652] = 8, + [143626] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3510), 1, - sym_cell_path, - STATE(3584), 1, + STATE(3801), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1961), 6, + ACTIONS(2123), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1963), 24, + anon_sym_DOT_DOT2, + ACTIONS(2125), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -355986,24 +371776,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131705] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [143670] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3585), 1, + ACTIONS(6906), 1, + anon_sym_LBRACK2, + STATE(3802), 1, sym_comment, - ACTIONS(1026), 8, - anon_sym_GT2, + ACTIONS(2304), 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(2308), 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, + [143716] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6908), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6910), 1, + aux_sym__immediate_decimal_token2, + STATE(3803), 1, + sym_comment, + ACTIONS(1771), 6, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1028), 26, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1773), 25, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356016,6 +371851,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -356025,32 +371861,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [131750] = 8, + [143764] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6912), 1, anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3511), 1, - sym_cell_path, - STATE(3586), 1, + ACTIONS(6914), 1, + aux_sym__immediate_decimal_token2, + STATE(3804), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1965), 6, + ACTIONS(1779), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1967), 24, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1781), 25, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356063,6 +371893,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -356072,30 +371903,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131803] = 8, + [143812] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6180), 1, - sym_filesize_unit, - ACTIONS(6182), 1, - sym_duration_unit, - ACTIONS(6614), 1, - anon_sym_DOT_DOT2, - STATE(3587), 1, + ACTIONS(6880), 1, + aux_sym__immediate_decimal_token2, + STATE(3805), 1, sym_comment, - ACTIONS(6616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 5, + ACTIONS(1779), 7, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 24, - anon_sym_DASH2, + aux_sym_unquoted_token2, + ACTIONS(1781), 25, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356108,6 +371934,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -356117,23 +371944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131856] = 4, + [143858] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3588), 1, + STATE(3806), 1, sym_comment, - ACTIONS(1008), 6, + ACTIONS(1052), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1010), 28, + anon_sym_DOT_DOT2, + ACTIONS(1054), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356155,57 +371982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [131901] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6618), 1, - anon_sym_QMARK2, - STATE(3589), 1, - sym_comment, - ACTIONS(990), 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(992), 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, - [131948] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [143902] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3590), 1, + STATE(3807), 1, sym_comment, - ACTIONS(1000), 8, + ACTIONS(1018), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -356214,12 +371998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1002), 26, + ACTIONS(1020), 25, 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, @@ -356241,21 +372024,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131993] = 5, + [143946] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6620), 1, - anon_sym_QMARK2, - STATE(3591), 1, + ACTIONS(6916), 1, + aux_sym__immediate_decimal_token2, + STATE(3808), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(1799), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(992), 27, + aux_sym_unquoted_token2, + ACTIONS(1801), 25, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -356271,6 +372055,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -356280,30 +372065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [132040] = 8, + [143992] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3513), 1, - sym_cell_path, - STATE(3592), 1, + ACTIONS(6918), 1, + anon_sym_DOT_DOT2, + STATE(3809), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1969), 6, + ACTIONS(6920), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1971), 24, + ACTIONS(5380), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -356328,70 +372107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132093] = 5, + [144040] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_QMARK2, - STATE(3593), 1, + ACTIONS(6900), 1, + aux_sym__immediate_decimal_token2, + STATE(3810), 1, sym_comment, - ACTIONS(1012), 6, + ACTIONS(1779), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1014), 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, - [132140] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3594), 1, - sym_comment, - STATE(3630), 1, - sym_path, - STATE(3632), 1, - sym_cell_path, - ACTIONS(1771), 6, - anon_sym_GT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 26, + sym__newline, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1775), 24, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356406,6 +372138,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -356415,16 +372148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132193] = 6, + [144086] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6624), 1, - sym_long_flag_identifier, - ACTIONS(6626), 1, - anon_sym_EQ2, - STATE(3595), 1, + STATE(3811), 1, sym_comment, - ACTIONS(4968), 16, + ACTIONS(1014), 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(1016), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -356432,264 +372170,79 @@ static const uint16_t ts_small_parse_table[] = { 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(4970), 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_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_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, - [132242] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3502), 1, - sym_cell_path, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3596), 1, - sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1893), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1895), 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, - [132295] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3597), 1, - sym_comment, - ACTIONS(1785), 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(1787), 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, - [132340] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6628), 1, - anon_sym_DOT_DOT2, - STATE(3598), 1, - sym_comment, - ACTIONS(6630), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2088), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2094), 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, - [132389] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3599), 1, - sym_comment, - ACTIONS(1824), 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(1826), 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, - [132434] = 4, - ACTIONS(251), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [144130] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3600), 1, + ACTIONS(6922), 1, + aux_sym__immediate_decimal_token2, + STATE(3812), 1, sym_comment, - ACTIONS(2098), 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(2100), 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, - [132479] = 8, + ACTIONS(1711), 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(1713), 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, + [144176] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3518), 1, - sym_cell_path, - STATE(3601), 1, + STATE(3813), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1901), 6, + ACTIONS(1763), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1903), 24, + anon_sym_DOT_DOT2, + ACTIONS(1765), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -356714,28 +372267,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132532] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144220] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3519), 1, - sym_cell_path, - STATE(3602), 1, + ACTIONS(6924), 1, + aux_sym__immediate_decimal_token2, + STATE(3814), 1, sym_comment, - STATE(3630), 1, - sym_path, - ACTIONS(1897), 6, + ACTIONS(1799), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1899), 24, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1801), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356750,6 +372300,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -356759,64 +372310,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132585] = 4, + [144266] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3603), 1, + STATE(3815), 1, sym_comment, - ACTIONS(1793), 9, + ACTIONS(2082), 7, + anon_sym_GT2, + anon_sym_DASH2, + 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(1795), 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, + ACTIONS(2084), 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132630] = 4, + [144310] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3816), 1, + sym_comment, + ACTIONS(2244), 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(2242), 23, + 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, + aux_sym_unquoted_token4, + [144354] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3604), 1, + STATE(3817), 1, sym_comment, - ACTIONS(1000), 6, + ACTIONS(1014), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1002), 28, + ACTIONS(1016), 27, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356841,23 +372430,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, aux_sym_record_entry_token1, sym__table_head_separator, - [132675] = 4, + [144398] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3605), 1, + STATE(3818), 1, sym_comment, - ACTIONS(1004), 6, + ACTIONS(2086), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1006), 28, + anon_sym_DOT_DOT2, + ACTIONS(2088), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356879,73 +372468,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [132720] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144442] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(3606), 1, + ACTIONS(6926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6928), 1, + aux_sym__immediate_decimal_token2, + STATE(3819), 1, sym_comment, - ACTIONS(1040), 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(1038), 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, - [132766] = 8, + ACTIONS(1661), 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(1663), 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, + [144490] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5267), 1, - sym__newline, - ACTIONS(5270), 1, - anon_sym_LBRACE, - ACTIONS(6632), 1, + ACTIONS(6918), 1, anon_sym_DOT_DOT2, - STATE(3607), 1, + STATE(3820), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6920), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5272), 5, + ACTIONS(1034), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5274), 23, - anon_sym_DASH2, + ACTIONS(1036), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356967,54 +372554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132818] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3608), 1, - sym_comment, - ACTIONS(2229), 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(2233), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132862] = 5, + [144538] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6636), 1, - anon_sym_EQ2, - STATE(3609), 1, + ACTIONS(6728), 1, + aux_sym_unquoted_token2, + STATE(3821), 1, sym_comment, - ACTIONS(5050), 7, + ACTIONS(1687), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -357022,7 +372569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5048), 25, + ACTIONS(1699), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -357048,145 +372595,108 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132908] = 4, + [144584] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3610), 1, + ACTIONS(6930), 1, + anon_sym_DOT_DOT2, + STATE(3822), 1, sym_comment, - ACTIONS(2278), 9, + ACTIONS(6932), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 6, + anon_sym_GT2, 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(2280), 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_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 24, anon_sym_DASH_DASH, + anon_sym_in2, 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, - [132952] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6638), 1, - anon_sym_LBRACK2, - STATE(3611), 1, - sym_comment, - ACTIONS(2333), 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(2337), 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, - [132998] = 4, - ACTIONS(251), 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, + [144632] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3612), 1, + ACTIONS(6934), 1, + anon_sym_DOT, + ACTIONS(6936), 1, + aux_sym__immediate_decimal_token2, + STATE(3823), 1, sym_comment, - ACTIONS(1828), 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(1836), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133042] = 6, + ACTIONS(1669), 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(1671), 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, + [144680] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6640), 1, + ACTIONS(6938), 1, anon_sym_DOT_DOT2, - STATE(3613), 1, + STATE(3824), 1, sym_comment, - ACTIONS(6642), 2, + ACTIONS(6940), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 6, + ACTIONS(2131), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1040), 24, + ACTIONS(2137), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -357211,25 +372721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133090] = 6, + [144728] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6632), 1, - anon_sym_DOT_DOT2, - STATE(3614), 1, + STATE(3825), 1, sym_comment, - ACTIONS(6634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 5, + ACTIONS(1022), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1040), 25, - sym__newline, - anon_sym_DASH2, + ACTIONS(1024), 27, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357253,74 +372758,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133138] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [144772] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3615), 1, + ACTIONS(6942), 1, + anon_sym_EQ2, + STATE(3826), 1, sym_comment, - ACTIONS(1022), 8, + ACTIONS(5114), 7, 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(1024), 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, - [133182] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(3616), 1, - sym_comment, - ACTIONS(2286), 10, + ACTIONS(5112), 25, 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(2282), 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, @@ -357330,57 +372796,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [133228] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3617), 1, - sym_comment, - ACTIONS(2294), 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(2290), 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, - [133274] = 4, + [144818] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3618), 1, + STATE(3827), 1, sym_comment, - ACTIONS(1018), 8, + ACTIONS(1022), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -357389,7 +372816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1020), 25, + ACTIONS(1024), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -357415,14 +372842,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133318] = 5, + [144862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, + ACTIONS(2222), 1, aux_sym_unquoted_token4, - STATE(3619), 1, + STATE(3828), 1, sym_comment, - ACTIONS(2300), 10, + ACTIONS(1036), 10, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -357433,7 +372860,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2298), 22, + ACTIONS(1034), 22, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -357456,16 +372883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [133364] = 6, + [144908] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6644), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6646), 1, + ACTIONS(6860), 1, aux_sym__immediate_decimal_token2, - STATE(3620), 1, + STATE(3829), 1, sym_comment, - ACTIONS(1637), 7, + ACTIONS(1669), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -357473,7 +372898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1639), 24, + aux_sym_record_entry_token1, + ACTIONS(1671), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -357498,21 +372924,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [133412] = 4, + [144954] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3621), 1, + ACTIONS(6944), 1, + anon_sym_EQ2, + STATE(3830), 1, sym_comment, - ACTIONS(1026), 8, + ACTIONS(5132), 7, 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(1028), 25, + ACTIONS(5130), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -357538,59 +372965,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133456] = 4, + [145000] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3622), 1, + STATE(3831), 1, sym_comment, - ACTIONS(5235), 9, + ACTIONS(1018), 6, + anon_sym_GT2, 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(5237), 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_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1020), 27, anon_sym_DASH_DASH, + anon_sym_in2, 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, - [133500] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, + [145044] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3623), 1, + ACTIONS(6946), 1, + anon_sym_DOT_DOT2, + STATE(3832), 1, sym_comment, - ACTIONS(1022), 6, + ACTIONS(6948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1024), 27, + ACTIONS(2096), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -357615,22 +373047,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133544] = 4, + [145092] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3624), 1, + ACTIONS(6950), 1, + anon_sym_DOT_DOT2, + STATE(3833), 1, sym_comment, - ACTIONS(1018), 6, + ACTIONS(6952), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2098), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1020), 27, + ACTIONS(2104), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -357655,32 +373089,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133588] = 8, + [145140] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(3834), 1, + sym_comment, + ACTIONS(2258), 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(2254), 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, + [145186] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6640), 1, + ACTIONS(6954), 1, anon_sym_DOT_DOT2, - ACTIONS(6648), 1, + STATE(3835), 1, + sym_comment, + ACTIONS(6956), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 6, + anon_sym_GT2, anon_sym_DASH2, - STATE(3625), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [145234] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6918), 1, + anon_sym_DOT_DOT2, + ACTIONS(6958), 1, + anon_sym_DASH2, + STATE(3836), 1, sym_comment, - ACTIONS(5237), 2, + ACTIONS(5376), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6642), 2, + ACTIONS(6920), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5380), 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, + [145286] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3837), 1, + sym_comment, + ACTIONS(2274), 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(2272), 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, + [145332] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3838), 1, + sym_comment, + ACTIONS(2238), 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(2234), 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, + [145378] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6961), 1, + anon_sym_DOT_DOT2, + STATE(3839), 1, + sym_comment, + ACTIONS(6963), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5239), 5, + ACTIONS(2072), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5241), 22, + ACTIONS(2078), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357702,20 +373340,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133640] = 4, + [145426] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3626), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3840), 1, sym_comment, - ACTIONS(1056), 7, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5006), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1058), 26, + ACTIONS(5004), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -357740,56 +373381,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133684] = 4, + [145473] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3627), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3841), 1, sym_comment, - ACTIONS(2239), 9, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5065), 6, + anon_sym_GT2, 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(2243), 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_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5063), 24, anon_sym_DASH_DASH, + anon_sym_in2, 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, - [133728] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145520] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6651), 1, - anon_sym_EQ2, - STATE(3628), 1, + STATE(3842), 1, sym_comment, - ACTIONS(5032), 7, + ACTIONS(2403), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -357797,7 +373435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5030), 25, + ACTIONS(2405), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -357823,32 +373461,30 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133774] = 4, - ACTIONS(3), 1, + [145563] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3629), 1, + STATE(3843), 1, sym_comment, - ACTIONS(2249), 10, + ACTIONS(2439), 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(2441), 25, 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(2247), 23, - 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, @@ -357858,24 +373494,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [133818] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [145606] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3630), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3844), 1, sym_comment, - ACTIONS(1026), 6, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1028), 27, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -357900,66 +373541,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [133862] = 4, + [145653] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3631), 1, - sym_comment, - ACTIONS(2193), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(2195), 26, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3845), 1, + sym_comment, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4988), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4986), 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, + [145700] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + aux_sym_record_entry_token1, + ACTIONS(6969), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6971), 1, + sym_filesize_unit, + ACTIONS(6973), 1, + sym_duration_unit, + STATE(3846), 1, + sym_comment, + ACTIONS(6967), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6965), 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, + [145751] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + ACTIONS(2274), 1, 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, - [133906] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3632), 1, + STATE(3847), 1, sym_comment, - ACTIONS(1777), 7, + ACTIONS(2272), 29, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1779), 26, anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357968,69 +373650,28 @@ static const uint16_t ts_small_parse_table[] = { 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133950] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3633), 1, - sym_comment, - ACTIONS(1843), 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(1851), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [133994] = 5, + [145798] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6472), 1, - aux_sym_unquoted_token2, - STATE(3634), 1, + STATE(3848), 1, sym_comment, - ACTIONS(1695), 7, + ACTIONS(2474), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358038,7 +373679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1707), 25, + ACTIONS(2476), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358064,14 +373705,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134040] = 5, + [145841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6598), 1, - aux_sym__immediate_decimal_token2, - STATE(3635), 1, + STATE(3849), 1, sym_comment, - ACTIONS(1645), 8, + ACTIONS(1669), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -358080,49 +373719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, aux_sym_record_entry_token1, - ACTIONS(1647), 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, - [134086] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - aux_sym__immediate_decimal_token2, - STATE(3636), 1, - sym_comment, - ACTIONS(1645), 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(1647), 24, + ACTIONS(1671), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -358147,95 +373744,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134134] = 6, + [145884] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6657), 1, - anon_sym_DOT, - STATE(3637), 1, - sym_comment, - ACTIONS(1785), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1787), 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, - [134182] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6659), 1, - aux_sym__immediate_decimal_token2, - STATE(3638), 1, + STATE(3850), 1, sym_comment, - ACTIONS(1745), 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(1747), 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, - [134228] = 4, + ACTIONS(2478), 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(2480), 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, + [145927] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3639), 1, + STATE(3851), 1, sym_comment, - ACTIONS(2433), 7, + ACTIONS(2391), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358243,7 +373796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2435), 25, + ACTIONS(2393), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358269,126 +373822,140 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134271] = 6, + [145970] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(3640), 1, + STATE(3852), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, - anon_sym_GT2, + ACTIONS(5222), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5220), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [134318] = 27, + 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, + [146013] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, + STATE(3853), 1, + sym_comment, + ACTIONS(5226), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5224), 25, + sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6669), 1, anon_sym_LBRACE, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + 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(6675), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3641), 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, + [146056] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3854), 1, sym_comment, - STATE(3720), 1, - aux_sym_shebang_repeat1, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4283), 1, - sym_val_number, - STATE(4449), 1, - sym__binary_predicate_parenthesized, - STATE(4459), 1, - sym__predicate, - STATE(4854), 1, - sym_val_closure, - ACTIONS(215), 2, + 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, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, + aux_sym__val_number_token5, aux_sym__val_number_token6, - [134407] = 6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [146099] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(3642), 1, + STATE(3855), 1, sym_comment, - STATE(7458), 1, + STATE(8145), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358413,24 +373980,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134454] = 6, + [146146] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1842), 1, anon_sym_LPAREN2, - STATE(3643), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3856), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(2292), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, + ACTIONS(2294), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358454,12 +374021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134501] = 4, + [146193] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3644), 1, + STATE(3857), 1, sym_comment, - ACTIONS(2413), 7, + ACTIONS(2482), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358467,7 +374034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2415), 25, + ACTIONS(2484), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358493,24 +374060,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134544] = 6, + [146236] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1842), 1, anon_sym_LPAREN2, - STATE(3645), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3858), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(1840), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, + ACTIONS(1848), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358534,23 +374101,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134591] = 6, + [146283] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(3646), 1, + STATE(3859), 1, sym_comment, - STATE(7458), 1, + STATE(8145), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358575,12 +374142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134638] = 4, + [146330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3647), 1, + STATE(3860), 1, sym_comment, - ACTIONS(1781), 8, + ACTIONS(1661), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -358589,7 +374156,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, aux_sym_record_entry_token1, - ACTIONS(1783), 24, + ACTIONS(1663), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -358614,12 +374181,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134681] = 4, + [146373] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3648), 1, + ACTIONS(6914), 1, + aux_sym__immediate_decimal_token2, + STATE(3861), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 25, + 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, + [146418] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3862), 1, sym_comment, - ACTIONS(2445), 7, + ACTIONS(1957), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358627,7 +374234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2447), 25, + ACTIONS(1959), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358653,26 +374260,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134724] = 6, + [146461] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(3649), 1, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token2, + STATE(3863), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(1799), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1801), 25, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358685,6 +374290,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -358694,23 +374300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134771] = 6, + [146506] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(3650), 1, + STATE(3864), 1, sym_comment, - STATE(7458), 1, + STATE(8145), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358735,12 +374341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134818] = 4, + [146553] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3651), 1, + STATE(3865), 1, sym_comment, - ACTIONS(2449), 7, + ACTIONS(5182), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358748,7 +374354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2451), 25, + ACTIONS(5180), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358774,12 +374380,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134861] = 4, + [146596] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3652), 1, + STATE(3866), 1, sym_comment, - ACTIONS(2407), 7, + ACTIONS(5186), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358787,7 +374393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2409), 25, + ACTIONS(5184), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358813,12 +374419,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134904] = 4, + [146639] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3653), 1, + STATE(3867), 1, sym_comment, - ACTIONS(2421), 7, + ACTIONS(5190), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358826,7 +374432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2423), 25, + ACTIONS(5188), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358852,51 +374458,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134947] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3654), 1, - sym_comment, - ACTIONS(1637), 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(1639), 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, - [134990] = 4, + [146682] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3655), 1, + STATE(3868), 1, sym_comment, - ACTIONS(1917), 7, + ACTIONS(5194), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358904,7 +374471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1919), 25, + ACTIONS(5192), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -358930,51 +374497,153 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135033] = 4, + [146725] = 27, ACTIONS(251), 1, anon_sym_POUND, - STATE(3656), 1, - sym_comment, - ACTIONS(2461), 7, - anon_sym_DOLLAR, + ACTIONS(389), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2463), 25, - sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 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, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3869), 1, + sym_comment, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4296), 1, + aux_sym_shebang_repeat1, + STATE(4573), 1, + sym_val_number, + STATE(4618), 1, + sym__binary_predicate_parenthesized, + STATE(4619), 1, + sym__predicate, + STATE(5167), 1, + sym_val_closure, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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_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, - [135076] = 4, + [146814] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token2, + STATE(3870), 1, + sym_comment, + ACTIONS(1711), 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(1713), 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, + [146859] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3871), 1, + sym_comment, + ACTIONS(1711), 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(1713), 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, + [146902] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3657), 1, + STATE(3872), 1, sym_comment, - ACTIONS(2465), 7, + ACTIONS(2470), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -358982,7 +374651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2467), 25, + ACTIONS(2472), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359008,90 +374677,135 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135119] = 4, + [146945] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3658), 1, + ACTIONS(6997), 1, + anon_sym_DOT_DOT2, + STATE(3873), 1, sym_comment, - ACTIONS(1933), 7, - anon_sym_DOLLAR, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5380), 24, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1935), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_in2, 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, - [135162] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146992] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3659), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3874), 1, sym_comment, - ACTIONS(1056), 7, - anon_sym_DOLLAR, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1058), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 24, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [135205] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147039] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3660), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3875), 1, sym_comment, - ACTIONS(1941), 7, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [147086] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3876), 1, + sym_comment, + ACTIONS(2520), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359099,7 +374813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1943), 25, + ACTIONS(2522), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359125,14 +374839,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135248] = 5, + [147129] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6655), 1, - aux_sym__immediate_decimal_token2, - STATE(3661), 1, + STATE(3877), 1, sym_comment, - ACTIONS(1645), 7, + ACTIONS(1767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -359140,7 +374852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1647), 24, + aux_sym_record_entry_token1, + ACTIONS(1769), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -359165,12 +374878,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [135293] = 4, + [147172] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3662), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(3878), 1, sym_comment, - ACTIONS(1945), 7, + ACTIONS(1830), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [147219] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3879), 1, + sym_comment, + ACTIONS(2486), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359178,7 +374932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1947), 25, + ACTIONS(2488), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359204,12 +374958,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135336] = 4, + [147262] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3663), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3880), 1, + sym_comment, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [147309] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3881), 1, sym_comment, - ACTIONS(2469), 7, + ACTIONS(2492), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359217,7 +375012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2471), 25, + ACTIONS(2494), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359243,12 +375038,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135379] = 4, + [147352] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3664), 1, + STATE(3882), 1, sym_comment, - ACTIONS(2064), 7, + ACTIONS(1941), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359256,7 +375051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2066), 25, + ACTIONS(1943), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359282,12 +375077,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135422] = 4, + [147395] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3665), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3883), 1, + sym_comment, + ACTIONS(2292), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2294), 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, + [147442] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3884), 1, sym_comment, - ACTIONS(2473), 7, + ACTIONS(2504), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359295,7 +375131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2475), 25, + ACTIONS(2506), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359321,12 +375157,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135465] = 4, + [147485] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3666), 1, + STATE(3885), 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, + [147528] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3886), 1, sym_comment, - ACTIONS(2477), 7, + ACTIONS(1883), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359334,7 +375209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2479), 25, + ACTIONS(1885), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359360,12 +375235,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135508] = 4, + [147571] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(3887), 1, + sym_comment, + ACTIONS(1840), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 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, + [147618] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3667), 1, + STATE(3888), 1, sym_comment, - ACTIONS(5190), 7, + ACTIONS(1891), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359373,7 +375289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5188), 25, + ACTIONS(1893), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359399,12 +375315,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135551] = 4, + [147661] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3668), 1, + STATE(3889), 1, sym_comment, - ACTIONS(5194), 7, + ACTIONS(1895), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359412,7 +375328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5192), 25, + ACTIONS(1897), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359438,12 +375354,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135594] = 4, + [147704] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3669), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(3890), 1, sym_comment, - ACTIONS(1957), 7, + ACTIONS(2266), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2270), 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, + [147751] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3891), 1, + sym_comment, + ACTIONS(2359), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359451,7 +375408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1959), 25, + ACTIONS(2361), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359477,12 +375434,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135637] = 4, + [147794] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3670), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(3892), 1, + sym_comment, + ACTIONS(2226), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2230), 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, + [147841] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3893), 1, sym_comment, - ACTIONS(1965), 7, + ACTIONS(1917), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359490,7 +375488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1967), 25, + ACTIONS(1919), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359516,12 +375514,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135680] = 4, + [147884] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3671), 1, + STATE(3894), 1, sym_comment, - ACTIONS(2481), 7, + ACTIONS(2363), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359529,7 +375527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2483), 25, + ACTIONS(2365), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359555,12 +375553,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135723] = 4, + [147927] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3672), 1, + STATE(3895), 1, sym_comment, - ACTIONS(2485), 7, + ACTIONS(2367), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359568,7 +375566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2487), 25, + ACTIONS(2369), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359594,12 +375592,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135766] = 4, + [147970] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3673), 1, + STATE(3896), 1, sym_comment, - ACTIONS(1969), 7, + ACTIONS(1925), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359607,7 +375605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1971), 25, + ACTIONS(1927), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359633,27 +375631,64 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135809] = 7, - ACTIONS(251), 1, + [148013] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LBRACE, - ACTIONS(6679), 1, - anon_sym_DOT_DOT2, - STATE(3674), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(3897), 1, sym_comment, - ACTIONS(6634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5239), 5, + ACTIONS(2258), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2254), 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, - ACTIONS(5241), 23, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148060] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(3898), 1, + sym_comment, + ACTIONS(1036), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(1034), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359662,25 +375697,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [135858] = 4, + [148107] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3675), 1, + STATE(3899), 1, sym_comment, - ACTIONS(5120), 7, + ACTIONS(1933), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359688,7 +375726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5118), 25, + ACTIONS(1935), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359714,12 +375752,92 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135901] = 4, + [148150] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3676), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3900), 1, + sym_comment, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [148197] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3901), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 26, + 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, + [148240] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3902), 1, sym_comment, - ACTIONS(5124), 7, + ACTIONS(2371), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359727,7 +375845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5122), 25, + ACTIONS(2373), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359753,12 +375871,135 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135944] = 4, + [148283] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3677), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3903), 1, + sym_comment, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [148330] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3904), 1, + sym_comment, + ACTIONS(2274), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2272), 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, + [148377] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(3905), 1, sym_comment, - ACTIONS(2489), 7, + ACTIONS(2238), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2234), 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, + [148424] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3906), 1, + sym_comment, + ACTIONS(2375), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359766,7 +376007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2491), 25, + ACTIONS(2377), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359792,12 +376033,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [135987] = 4, + [148467] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3678), 1, + STATE(3907), 1, sym_comment, - ACTIONS(2493), 7, + ACTIONS(1937), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359805,7 +376046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2495), 25, + ACTIONS(1939), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359831,20 +376072,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136030] = 4, - ACTIONS(3), 1, + [148510] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3679), 1, + STATE(3908), 1, sym_comment, - ACTIONS(2249), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2247), 29, + ACTIONS(1771), 6, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1773), 26, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359853,29 +376097,26 @@ static const uint16_t ts_small_parse_table[] = { 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_LPAREN2, 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, - [136073] = 4, + [148553] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3680), 1, + STATE(3909), 1, sym_comment, - ACTIONS(1695), 7, + ACTIONS(2379), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359883,7 +376124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1707), 25, + ACTIONS(2381), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359909,55 +376150,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136116] = 8, - ACTIONS(3), 1, + [148596] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, - aux_sym_record_entry_token1, - ACTIONS(6685), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6687), 1, - sym_filesize_unit, - ACTIONS(6689), 1, - sym_duration_unit, - STATE(3681), 1, + STATE(3910), 1, sym_comment, - ACTIONS(6683), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6681), 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, - [136167] = 4, + ACTIONS(1799), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1801), 26, + 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, + [148639] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3682), 1, + STATE(3911), 1, sym_comment, - ACTIONS(2497), 7, + ACTIONS(2383), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -359965,7 +376202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2499), 25, + ACTIONS(2385), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -359991,51 +376228,92 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136210] = 4, + [148682] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3683), 1, + STATE(3912), 1, sym_comment, - ACTIONS(2417), 7, - anon_sym_DOLLAR, + ACTIONS(1818), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1820), 26, + sym__newline, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2419), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_in2, 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, - [136253] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [148725] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3684), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3913), 1, + sym_comment, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [148772] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3914), 1, sym_comment, - ACTIONS(2417), 7, + ACTIONS(5230), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360043,7 +376321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2419), 25, + ACTIONS(5228), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360069,12 +376347,14 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136296] = 4, + [148815] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3685), 1, + ACTIONS(6936), 1, + aux_sym__immediate_decimal_token2, + STATE(3915), 1, sym_comment, - ACTIONS(1645), 8, + ACTIONS(1669), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -360082,8 +376362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1647), 24, + ACTIONS(1671), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -360108,23 +376387,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [136339] = 6, + [148860] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5376), 1, + anon_sym_LBRACE, + ACTIONS(6997), 1, + anon_sym_DOT_DOT2, + STATE(3916), 1, + sym_comment, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5380), 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, + [148909] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(3686), 1, + STATE(3917), 1, sym_comment, - STATE(7458), 1, + STATE(8145), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -360149,12 +376470,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136386] = 4, + [148956] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3687), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(3918), 1, sym_comment, - ACTIONS(2403), 7, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [149003] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3919), 1, + sym_comment, + ACTIONS(1034), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360162,7 +376524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2405), 25, + ACTIONS(1036), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360188,12 +376550,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136429] = 4, + [149046] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3920), 1, + sym_comment, + ACTIONS(2244), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2242), 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, + [149089] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3688), 1, + STATE(3921), 1, sym_comment, - ACTIONS(2425), 7, + ACTIONS(5126), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360201,7 +376602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2427), 25, + ACTIONS(5124), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360227,12 +376628,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136472] = 4, + [149132] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3689), 1, + ACTIONS(6782), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6999), 1, + anon_sym_DOT, + STATE(3922), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1781), 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, + [149179] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3923), 1, sym_comment, - ACTIONS(2429), 7, + ACTIONS(1052), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360240,7 +376682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2431), 25, + ACTIONS(1054), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360266,12 +376708,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136515] = 4, + [149222] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3690), 1, + STATE(3924), 1, sym_comment, - ACTIONS(1897), 7, + ACTIONS(5138), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360279,7 +376721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1899), 25, + ACTIONS(5136), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360305,52 +376747,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136558] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6691), 1, - aux_sym__immediate_decimal_token2, - STATE(3691), 1, - sym_comment, - ACTIONS(1745), 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(1747), 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, - [136603] = 4, + [149265] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3692), 1, + STATE(3925), 1, sym_comment, - ACTIONS(5104), 7, + ACTIONS(5234), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360358,7 +376760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5102), 25, + ACTIONS(5232), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360384,24 +376786,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136646] = 6, + [149308] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, anon_sym_LPAREN2, - STATE(3693), 1, + STATE(3926), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(1830), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, + ACTIONS(1838), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -360425,12 +376827,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136693] = 4, + [149355] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3694), 1, + STATE(3927), 1, + sym_comment, + ACTIONS(1949), 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(1951), 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, + [149398] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3928), 1, sym_comment, - ACTIONS(5108), 7, + ACTIONS(2454), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360438,7 +376879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5106), 25, + ACTIONS(2456), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360464,24 +376905,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [136736] = 6, + [149441] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, anon_sym_LPAREN2, - STATE(3695), 1, + STATE(3929), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(2266), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, + ACTIONS(2270), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -360505,18 +376946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136783] = 6, + [149488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, + ACTIONS(2256), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(2258), 1, anon_sym_LBRACE, - ACTIONS(2288), 1, + ACTIONS(2260), 1, aux_sym_unquoted_token4, - STATE(3696), 1, + STATE(3930), 1, sym_comment, - ACTIONS(2282), 29, + ACTIONS(2254), 29, anon_sym_GT2, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -360546,64 +376987,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136830] = 6, + [149535] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6679), 1, - anon_sym_DOT_DOT2, - STATE(3697), 1, + STATE(3931), 1, sym_comment, - ACTIONS(6634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1040), 24, + ACTIONS(1687), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1699), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, 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, - [136877] = 6, - ACTIONS(3), 1, + 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, + [149578] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, - anon_sym_LBRACE, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3698), 1, + STATE(3932), 1, sym_comment, - ACTIONS(2290), 29, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4994), 6, anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_in2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4992), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360612,34 +377054,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [136924] = 6, + [149625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2300), 1, - anon_sym_LBRACE, - STATE(3699), 1, + STATE(3933), 1, sym_comment, - ACTIONS(2298), 29, + ACTIONS(2244), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2242), 30, anon_sym_GT2, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -360669,12 +377105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136971] = 4, + aux_sym_unquoted_token4, + [149668] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3700), 1, + STATE(3934), 1, sym_comment, - ACTIONS(2437), 7, + ACTIONS(2466), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -360682,7 +377119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2439), 25, + ACTIONS(2468), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -360708,62 +377145,107 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137014] = 4, + [149711] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3701), 1, + STATE(3935), 1, sym_comment, - ACTIONS(2441), 7, - anon_sym_DOLLAR, + ACTIONS(1779), 7, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2443), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 25, + 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, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_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, - [137057] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 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(2288), 1, - aux_sym_unquoted_token4, - STATE(3702), 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, + [149754] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5376), 1, + anon_sym_EQ_GT, + ACTIONS(7001), 1, + anon_sym_DOT_DOT2, + STATE(3936), 1, sym_comment, - ACTIONS(2286), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2282), 28, + ACTIONS(7003), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5380), 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, + [149803] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7001), 1, + anon_sym_DOT_DOT2, + STATE(3937), 1, + sym_comment, + ACTIONS(7003), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1036), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360772,39 +377254,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [137104] = 6, - ACTIONS(3), 1, + [149850] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(3703), 1, + ACTIONS(7005), 1, + anon_sym_DOT_DOT2, + STATE(3938), 1, sym_comment, - ACTIONS(1040), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(1038), 28, + ACTIONS(7007), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360813,42 +377295,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [137151] = 6, + [149897] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(3704), 1, + ACTIONS(7001), 1, + anon_sym_DOT_DOT2, + STATE(3939), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(7003), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5378), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, + ACTIONS(5380), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360870,23 +377349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137198] = 6, - ACTIONS(3), 1, + [149944] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3705), 1, + ACTIONS(7009), 1, + anon_sym_DOT_DOT2, + STATE(3940), 1, sym_comment, - ACTIONS(2294), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2290), 28, + ACTIONS(7011), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360895,39 +377377,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [137245] = 6, - ACTIONS(3), 1, + [149991] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3706), 1, + STATE(3941), 1, sym_comment, - ACTIONS(2300), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2298), 28, + STATE(8145), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, - anon_sym_in2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360936,118 +377418,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - [137292] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3707), 1, - sym_comment, - ACTIONS(5112), 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(5110), 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, - [137335] = 4, + [150038] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3708), 1, - sym_comment, - ACTIONS(5116), 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(5114), 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, - [137378] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(3709), 1, + ACTIONS(6997), 1, + anon_sym_DOT_DOT2, + STATE(3942), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 6, + ACTIONS(1048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4986), 24, - anon_sym_DASH_DASH, + ACTIONS(1036), 24, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -361071,24 +377472,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137425] = 6, + [150085] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(3710), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(3943), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4996), 6, + ACTIONS(2226), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4994), 24, - anon_sym_DASH_DASH, + ACTIONS(2230), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -361112,65 +377513,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137472] = 4, + [150132] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3711), 1, - sym_comment, - ACTIONS(1745), 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(1747), 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, - [137515] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1036), 1, + anon_sym_LBRACE, + ACTIONS(2220), 1, anon_sym_LPAREN2, - STATE(3712), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(3944), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5004), 6, + ACTIONS(1034), 29, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5002), 24, anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361179,36 +377538,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [137562] = 6, + [150179] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(3713), 1, + STATE(3945), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5008), 6, + ACTIONS(1771), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5006), 24, + aux_sym_unquoted_token2, + ACTIONS(1773), 25, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361224,6 +377583,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -361233,61 +377593,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137609] = 6, + [150222] = 27, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 1, + anon_sym_LBRACE, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(3869), 1, + aux_sym_shebang_repeat1, + STATE(3946), 1, + sym_comment, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4630), 1, + sym__binary_predicate_parenthesized, + STATE(4632), 1, + sym__predicate, + STATE(5238), 1, + sym_val_closure, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [150311] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6693), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT2, - STATE(3714), 1, + STATE(3947), 1, sym_comment, - ACTIONS(6695), 2, + ACTIONS(7015), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1843), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1851), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [137656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3715), 1, - sym_comment, - ACTIONS(2249), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2247), 30, + ACTIONS(2072), 5, anon_sym_GT2, - anon_sym_DASH_DASH, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2078), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361296,83 +377683,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [137699] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3716), 1, - sym_comment, - ACTIONS(1038), 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(1040), 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, - [137742] = 7, + [150358] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ_GT, - ACTIONS(6697), 1, + ACTIONS(7017), 1, anon_sym_DOT_DOT2, - STATE(3717), 1, + STATE(3948), 1, sym_comment, - ACTIONS(6699), 2, + ACTIONS(7019), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5239), 5, + ACTIONS(2090), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5241), 23, + ACTIONS(2096), 24, anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361394,23 +377737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137791] = 6, + [150405] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6697), 1, + ACTIONS(7021), 1, anon_sym_DOT_DOT2, - STATE(3718), 1, + STATE(3949), 1, sym_comment, - ACTIONS(6699), 2, + ACTIONS(7023), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 5, + ACTIONS(2098), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1040), 24, + ACTIONS(2104), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -361435,126 +377778,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137838] = 6, + [150452] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6701), 1, + ACTIONS(7025), 1, anon_sym_DOT_DOT2, - STATE(3719), 1, + STATE(3950), 1, sym_comment, - ACTIONS(6703), 2, + ACTIONS(7027), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1836), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [137885] = 27, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(2131), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2137), 24, anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6669), 1, - anon_sym_LBRACE, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3720), 1, - sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4042), 1, - aux_sym_shebang_repeat1, - STATE(4283), 1, - sym_val_number, - STATE(4394), 1, - sym__binary_predicate_parenthesized, - STATE(4400), 1, - sym__predicate, - STATE(4910), 1, - sym_val_closure, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [137974] = 6, + 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, + [150499] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(3721), 1, + STATE(3951), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(1799), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + aux_sym_unquoted_token2, + ACTIONS(1801), 25, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361570,6 +377848,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -361579,62 +377858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138021] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3722), 1, - sym_comment, - ACTIONS(5044), 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(5042), 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, - [138064] = 6, + [150542] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(3723), 1, + STATE(3952), 1, sym_comment, - STATE(7458), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 6, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + aux_sym_unquoted_token2, + ACTIONS(1820), 25, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361650,6 +377887,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -361659,51 +377897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138111] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3724), 1, - sym_comment, - ACTIONS(5056), 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(5054), 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, - [138154] = 4, + [150585] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3725), 1, + STATE(3953), 1, sym_comment, - ACTIONS(1889), 7, + ACTIONS(2387), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -361711,7 +377910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1891), 25, + ACTIONS(2389), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -361737,10 +377936,10 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138197] = 4, + [150628] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3726), 1, + STATE(3954), 1, sym_comment, ACTIONS(2391), 7, anon_sym_DOLLAR, @@ -361776,12 +377975,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138240] = 4, + [150671] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3727), 1, + STATE(3955), 1, sym_comment, - ACTIONS(2395), 7, + ACTIONS(2458), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -361789,7 +377988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2397), 25, + ACTIONS(2460), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -361815,12 +378014,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138283] = 4, + [150714] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3728), 1, + STATE(3956), 1, sym_comment, - ACTIONS(2399), 7, + ACTIONS(2462), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -361828,7 +378027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2401), 25, + ACTIONS(2464), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -361854,23 +378053,536 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138326] = 6, + [150757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1040), 1, - anon_sym_LBRACE, - ACTIONS(2266), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2238), 1, + anon_sym_LBRACE, + ACTIONS(2240), 1, aux_sym_unquoted_token4, - STATE(3729), 1, + STATE(3957), 1, sym_comment, - ACTIONS(1038), 29, + ACTIONS(2234), 29, anon_sym_GT2, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + 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, + [150804] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7055), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3958), 1, + sym_comment, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5466), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [150874] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7055), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3959), 1, + sym_comment, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5456), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150942] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + ACTIONS(7077), 1, + anon_sym_bit_DASHand2, + ACTIONS(7079), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7081), 1, + anon_sym_bit_DASHor2, + STATE(3960), 1, + sym_comment, + STATE(3982), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7067), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7061), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [151012] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7055), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3961), 1, + sym_comment, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5456), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [151082] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + ACTIONS(7077), 1, + anon_sym_bit_DASHand2, + ACTIONS(7079), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7081), 1, + anon_sym_bit_DASHor2, + ACTIONS(7083), 1, + anon_sym_and2, + STATE(3962), 1, + sym_comment, + STATE(3983), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7067), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7061), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [151154] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7055), 1, + anon_sym_bit_DASHor2, + ACTIONS(7085), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3963), 1, + sym_comment, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5456), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [151226] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + ACTIONS(7077), 1, + anon_sym_bit_DASHand2, + ACTIONS(7079), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7081), 1, + anon_sym_bit_DASHor2, + ACTIONS(7083), 1, + anon_sym_and2, + ACTIONS(7087), 1, + anon_sym_xor2, + STATE(3964), 1, + sym_comment, + STATE(3984), 1, + aux_sym_shebang_repeat1, + ACTIONS(5460), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(7057), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7067), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7061), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [151300] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3965), 1, + sym_comment, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5456), 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, + [151360] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + STATE(3966), 1, + sym_comment, + STATE(3985), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7061), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5460), 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, + [151422] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3967), 1, + sym_comment, + ACTIONS(5458), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5456), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361879,441 +378591,367 @@ static const uint16_t ts_small_parse_table[] = { 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [151476] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5550), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + STATE(3968), 1, + sym_comment, + STATE(3986), 1, + aux_sym_shebang_repeat1, + ACTIONS(5462), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(5460), 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, - [138373] = 17, + [151532] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, - anon_sym_bit_DASHand2, - ACTIONS(6727), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, - anon_sym_bit_DASHor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3730), 1, + STATE(3969), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 5, + ACTIONS(5456), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138441] = 7, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [151594] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5550), 1, sym__newline, - STATE(3731), 1, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + STATE(3970), 1, sym_comment, - STATE(3777), 1, + STATE(3987), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5310), 5, + ACTIONS(7057), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5308), 22, - anon_sym_DASH2, + ACTIONS(7067), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7061), 4, 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, + ACTIONS(7065), 4, anon_sym_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, + ACTIONS(5460), 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, - [138489] = 18, + [151658] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3732), 1, - sym_comment, - STATE(3779), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(3971), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5308), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138559] = 6, + ACTIONS(5456), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [151722] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6757), 1, - anon_sym_DOT_DOT2, - STATE(3733), 1, - sym_comment, - ACTIONS(6759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1843), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1851), 20, - ts_builtin_sym_end, + ACTIONS(5550), 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, - [138605] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(3734), 1, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + ACTIONS(7077), 1, + anon_sym_bit_DASHand2, + STATE(3972), 1, sym_comment, - ACTIONS(2282), 29, + STATE(3988), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, 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, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(7061), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5460), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138649] = 19, + [151788] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - ACTIONS(6761), 1, - anon_sym_and2, - STATE(3735), 1, - sym_comment, - STATE(3781), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(3973), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5308), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138721] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6767), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6769), 1, - sym_filesize_unit, - ACTIONS(6771), 1, - sym_duration_unit, - STATE(3736), 1, - sym_comment, - ACTIONS(6765), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6763), 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, - [138769] = 20, + ACTIONS(5456), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [151854] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - ACTIONS(6761), 1, - anon_sym_and2, - ACTIONS(6773), 1, - anon_sym_xor2, - STATE(3737), 1, + STATE(3974), 1, sym_comment, - STATE(3783), 1, + STATE(3989), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138843] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3738), 1, - sym_comment, - ACTIONS(2520), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2522), 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, + ACTIONS(5460), 5, + 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, - [138885] = 5, + anon_sym_bit_DASHor2, + [151922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2296), 1, + ACTIONS(2240), 1, aux_sym_unquoted_token4, - STATE(3739), 1, + STATE(3975), 1, sym_comment, - ACTIONS(2290), 29, + ACTIONS(2234), 29, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -362343,21 +378981,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138929] = 5, - ACTIONS(3), 1, + [151966] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(3740), 1, + STATE(3976), 1, sym_comment, - ACTIONS(2298), 29, + ACTIONS(1771), 6, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1773), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362366,96 +379005,88 @@ static const uint16_t ts_small_parse_table[] = { 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_LPAREN2, 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, - [138973] = 14, + [152008] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - STATE(3741), 1, + ACTIONS(6802), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7089), 1, + anon_sym_DOT, + STATE(3977), 1, sym_comment, - STATE(3787), 1, - aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(1779), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + anon_sym_PLUS2, + ACTIONS(1781), 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, - ACTIONS(6741), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139035] = 11, + [152054] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(3742), 1, - sym_comment, - STATE(3790), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5310), 2, + STATE(3978), 1, + sym_comment, + ACTIONS(5498), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 19, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5496), 18, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -362470,124 +379101,114 @@ static const uint16_t ts_small_parse_table[] = { 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, - [139091] = 15, + [152110] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - STATE(3743), 1, - sym_comment, - STATE(3793), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, + STATE(3979), 1, + sym_comment, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(5498), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5496), 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, - ACTIONS(6741), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + 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, - [139155] = 16, + [152160] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - STATE(3744), 1, - sym_comment, - STATE(3796), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(3980), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 6, + ACTIONS(5496), 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, - [139221] = 5, + [152218] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(3745), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3981), 1, sym_comment, - ACTIONS(1695), 5, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5498), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 25, + ACTIONS(5496), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -362604,8 +379225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -362613,201 +379232,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139265] = 17, + [152264] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - STATE(3746), 1, - sym_comment, - STATE(3798), 1, + ACTIONS(7055), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(3982), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 5, + ACTIONS(5496), 5, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [139333] = 4, + [152332] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(3747), 1, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7055), 1, + anon_sym_bit_DASHor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3983), 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, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5496), 4, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_LBRACE, 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, - [139375] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3748), 1, - sym_comment, - ACTIONS(1645), 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(1647), 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, - [139417] = 11, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [152402] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7055), 1, + anon_sym_bit_DASHor2, + ACTIONS(7085), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3749), 1, + STATE(3984), 1, sym_comment, - ACTIONS(5330), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 18, + ACTIONS(5496), 3, sym__newline, - anon_sym_in2, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [152474] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3985), 1, + sym_comment, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7033), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5496), 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, - [139473] = 8, + [152534] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3750), 1, + STATE(3986), 1, sym_comment, - ACTIONS(6711), 2, + ACTIONS(5498), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5328), 21, + ACTIONS(5496), 20, sym__newline, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -362827,111 +379479,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139523] = 4, + [152588] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3751), 1, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(3987), 1, sym_comment, - ACTIONS(2361), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2363), 23, - ts_builtin_sym_end, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5496), 8, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_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, - [139565] = 12, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [152650] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3752), 1, + STATE(3988), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 14, + ACTIONS(5496), 7, 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, - [139623] = 6, + [152714] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3753), 1, + STATE(3989), 1, sym_comment, - ACTIONS(6717), 2, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5330), 5, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5496), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [152780] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3990), 1, + sym_comment, + ACTIONS(1799), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5328), 23, - sym__newline, + aux_sym_unquoted_token2, + ACTIONS(1801), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362944,6 +379654,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -362951,428 +379664,498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139669] = 4, + [152822] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3754), 1, - sym_comment, - ACTIONS(2365), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2367), 23, - ts_builtin_sym_end, + ACTIONS(5597), 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_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, - [139711] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3755), 1, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + STATE(3991), 1, sym_comment, - ACTIONS(2369), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2371), 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, + STATE(4010), 1, + aux_sym_shebang_repeat1, + ACTIONS(5476), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5474), 17, + anon_sym_in2, + 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, - [139753] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [152880] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3756), 1, - sym_comment, - ACTIONS(2373), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2375), 23, - ts_builtin_sym_end, + ACTIONS(5597), 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, + STATE(3992), 1, + sym_comment, + STATE(4012), 1, + aux_sym_shebang_repeat1, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5476), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5474), 20, + anon_sym_DASH2, + anon_sym_in2, + 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, - [139795] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [152932] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3757), 1, - sym_comment, - ACTIONS(2379), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2381), 23, - ts_builtin_sym_end, + ACTIONS(5597), 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, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + STATE(3993), 1, + sym_comment, + STATE(4014), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5474), 13, + anon_sym_in2, + 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, - [139837] = 4, + 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, + [152992] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3758), 1, - sym_comment, - ACTIONS(2383), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_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), 23, - ts_builtin_sym_end, + ACTIONS(5597), 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, + STATE(3994), 1, + sym_comment, + STATE(4016), 1, + aux_sym_shebang_repeat1, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5476), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5474), 22, + anon_sym_DASH2, + anon_sym_in2, + 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, - [139879] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [153040] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3759), 1, + STATE(3995), 1, sym_comment, - ACTIONS(2387), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2389), 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, + ACTIONS(1818), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1820), 25, + anon_sym_DASH2, + anon_sym_in2, + 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, - [139921] = 17, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [153082] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7095), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(7097), 1, + sym_filesize_unit, + ACTIONS(7099), 1, + sym_duration_unit, + STATE(3996), 1, + sym_comment, + ACTIONS(7093), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7091), 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, + [153130] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5597), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - STATE(3760), 1, + ACTIONS(7081), 1, + anon_sym_bit_DASHor2, + STATE(3997), 1, sym_comment, - STATE(3768), 1, + STATE(4018), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(5474), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [139989] = 18, + [153200] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3998), 1, + sym_comment, + ACTIONS(1711), 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(1713), 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, + [153242] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, + ACTIONS(7081), 1, anon_sym_bit_DASHor2, - ACTIONS(6775), 1, + ACTIONS(7083), 1, anon_sym_and2, - STATE(1820), 1, + STATE(3958), 1, aux_sym_shebang_repeat1, - STATE(3761), 1, + STATE(3999), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 4, - sym__newline, + ACTIONS(5474), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140059] = 19, + [153314] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, + ACTIONS(7081), 1, anon_sym_bit_DASHor2, - ACTIONS(6775), 1, + ACTIONS(7083), 1, anon_sym_and2, - ACTIONS(6777), 1, + ACTIONS(7087), 1, anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3762), 1, + STATE(4000), 1, sym_comment, - ACTIONS(6705), 2, + STATE(4023), 1, + aux_sym_shebang_repeat1, + ACTIONS(5474), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140131] = 13, + [153388] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3763), 1, + STATE(4001), 1, sym_comment, - ACTIONS(6705), 2, + STATE(4025), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 10, - sym__newline, + ACTIONS(5474), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -363382,31 +380165,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140191] = 10, + [153450] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7105), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(7107), 1, + sym_filesize_unit, + ACTIONS(7109), 1, + sym_duration_unit, + STATE(4002), 1, + sym_comment, + ACTIONS(7103), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7101), 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, + [153498] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4003), 1, + sym_comment, + ACTIONS(1779), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1781), 25, + 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, + [153540] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(4004), 1, sym_comment, - ACTIONS(5330), 2, + STATE(4030), 1, + aux_sym_shebang_repeat1, + ACTIONS(5476), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5328), 20, - sym__newline, + ACTIONS(5474), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -363426,47 +380289,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140245] = 14, + [153596] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3765), 1, + STATE(4005), 1, sym_comment, - ACTIONS(6705), 2, + STATE(4035), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 8, - sym__newline, + ACTIONS(5474), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -363474,159 +380338,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140307] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_LPAREN2, - STATE(3766), 1, - sym_comment, - ACTIONS(2247), 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, - [140349] = 15, + [153660] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3767), 1, + STATE(4006), 1, sym_comment, - ACTIONS(6705), 2, + STATE(4038), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 7, - sym__newline, + ACTIONS(5474), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140413] = 16, + [153726] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5597), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3768), 1, + STATE(4007), 1, sym_comment, - ACTIONS(6705), 2, + STATE(4040), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 6, - sym__newline, + ACTIONS(5474), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [140479] = 5, + [153794] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4008), 1, + sym_comment, + ACTIONS(1661), 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(1663), 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, + [153836] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(4946), 1, aux_sym_unquoted_token2, - STATE(3769), 1, + STATE(4009), 1, sym_comment, - ACTIONS(1695), 6, + ACTIONS(1687), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1707), 24, - anon_sym_DASH_DASH, + ACTIONS(1699), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -363650,33 +380516,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140523] = 11, + [153880] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3770), 1, + STATE(4010), 1, sym_comment, - ACTIONS(5318), 2, + ACTIONS(5468), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5316), 18, + ACTIONS(5466), 18, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -363695,35 +380561,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140579] = 12, + [153936] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3771), 1, + STATE(4011), 1, sym_comment, - STATE(3803), 1, + STATE(4063), 1, aux_sym_shebang_repeat1, - ACTIONS(5324), 2, + ACTIONS(5484), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5322), 17, + ACTIONS(5482), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -363741,27 +380607,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140637] = 8, + [153994] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3772), 1, + STATE(4012), 1, sym_comment, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5318), 3, + ACTIONS(5468), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5316), 21, + ACTIONS(5466), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -363783,29 +380649,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140687] = 9, + [154044] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - STATE(3773), 1, + STATE(4013), 1, sym_comment, - STATE(3805), 1, + STATE(4064), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5324), 3, + ACTIONS(5484), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5322), 20, + ACTIONS(5482), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -363826,38 +380692,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140739] = 12, + [154096] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3774), 1, + STATE(4014), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 14, + ACTIONS(5466), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -363872,78 +380738,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140797] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3775), 1, - sym_comment, - ACTIONS(2532), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2534), 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, - [140839] = 13, + [154154] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3776), 1, + STATE(4015), 1, sym_comment, - STATE(3806), 1, + STATE(4065), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 13, + ACTIONS(5482), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -363957,23 +380785,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140899] = 6, + [154214] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(4016), 1, sym_comment, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5318), 5, + ACTIONS(5468), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5316), 23, + ACTIONS(5466), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -363997,25 +380825,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140945] = 7, + [154260] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - STATE(3778), 1, + STATE(4017), 1, sym_comment, - STATE(3807), 1, + STATE(4066), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5324), 5, + ACTIONS(5484), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5322), 22, + ACTIONS(5482), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -364038,434 +380866,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140993] = 17, + [154308] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, + ACTIONS(7055), 1, anon_sym_bit_DASHor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3779), 1, + STATE(4018), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 5, + ACTIONS(5466), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [141061] = 18, + [154376] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(7081), 1, anon_sym_bit_DASHor2, - STATE(3780), 1, + STATE(4019), 1, sym_comment, - STATE(3810), 1, + STATE(4067), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5322), 4, + ACTIONS(5482), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6737), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141131] = 18, - ACTIONS(251), 1, + [154446] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - ACTIONS(6725), 1, - anon_sym_bit_DASHand2, - ACTIONS(6727), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, - anon_sym_bit_DASHor2, - ACTIONS(6775), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3781), 1, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(4020), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(2242), 30, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6715), 2, + anon_sym_and2, + anon_sym_xor2, + anon_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, - ACTIONS(6717), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5316), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [154488] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4021), 1, + sym_comment, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5458), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5456), 23, sym__newline, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6709), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141201] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5419), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, + 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, - ACTIONS(6753), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, anon_sym_bit_DASHor2, - ACTIONS(6761), 1, - anon_sym_and2, - STATE(3782), 1, - sym_comment, - STATE(3811), 1, + [154534] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5550), 1, + sym__newline, + STATE(3981), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, + STATE(4022), 1, + sym_comment, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(5462), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5322), 3, + anon_sym_PLUS2, + ACTIONS(5460), 22, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6737), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141273] = 19, + 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, + [154582] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, + ACTIONS(7055), 1, anon_sym_bit_DASHor2, - ACTIONS(6775), 1, - anon_sym_and2, - ACTIONS(6777), 1, + ACTIONS(7085), 1, anon_sym_xor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3783), 1, + STATE(4023), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5316), 3, + ACTIONS(5466), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6709), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141345] = 20, + [154654] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(7081), 1, anon_sym_bit_DASHor2, - ACTIONS(6761), 1, + ACTIONS(7083), 1, anon_sym_and2, - ACTIONS(6773), 1, + ACTIONS(7087), 1, anon_sym_xor2, - STATE(3784), 1, + STATE(4024), 1, sym_comment, - STATE(3813), 1, + STATE(4069), 1, aux_sym_shebang_repeat1, - ACTIONS(5322), 2, + ACTIONS(5482), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141419] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3785), 1, - sym_comment, - ACTIONS(2181), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2187), 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, - [141461] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3786), 1, - sym_comment, - ACTIONS(2070), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2076), 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, - [141503] = 13, + [154728] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3787), 1, + STATE(4025), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 10, + ACTIONS(5466), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -364476,45 +381242,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141563] = 14, + [154788] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4026), 1, + sym_comment, + ACTIONS(1669), 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(1671), 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, + [154830] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(4027), 1, + sym_comment, + ACTIONS(1830), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1838), 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, + [154876] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3788), 1, + STATE(4028), 1, sym_comment, - STATE(3814), 1, + STATE(4070), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 9, + ACTIONS(5482), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -364524,70 +381368,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141625] = 6, + [154938] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6779), 1, - anon_sym_DOT_DOT2, - STATE(3789), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4029), 1, sym_comment, - ACTIONS(6781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1836), 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, - [141671] = 10, + ACTIONS(2292), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2294), 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, + [154984] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3790), 1, + STATE(4030), 1, sym_comment, - ACTIONS(5318), 2, + ACTIONS(5468), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5316), 20, + ACTIONS(5466), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -364608,34 +381452,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141725] = 11, + [155038] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4031), 1, + sym_comment, + ACTIONS(1840), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1848), 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, + [155084] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3791), 1, + STATE(4032), 1, sym_comment, - STATE(3815), 1, + STATE(4071), 1, aux_sym_shebang_repeat1, - ACTIONS(5324), 2, + ACTIONS(5484), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6731), 2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5482), 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, + [155140] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(4033), 1, + sym_comment, + ACTIONS(2266), 5, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6745), 2, + anon_sym_PLUS2, + ACTIONS(2270), 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, - ACTIONS(5322), 19, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [155186] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(4034), 1, + sym_comment, + ACTIONS(2226), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2230), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364648,89 +381608,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141781] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3792), 1, - sym_comment, - ACTIONS(1745), 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(1747), 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, - [141823] = 14, + [155232] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3793), 1, + STATE(4035), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 8, + ACTIONS(5466), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -364739,48 +381665,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141885] = 15, + [155294] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3794), 1, + STATE(4036), 1, sym_comment, - STATE(3816), 1, + STATE(4072), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 7, + ACTIONS(5482), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -364788,24 +381714,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141949] = 7, + [155358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3083), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6783), 1, - sym_filesize_unit, - ACTIONS(6785), 1, - sym_duration_unit, - STATE(3795), 1, + STATE(4037), 1, sym_comment, - ACTIONS(3081), 5, + ACTIONS(1767), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3079), 23, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1769), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -364829,48 +381751,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [141997] = 15, + sym_duration_unit, + [155400] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3796), 1, + STATE(4038), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 7, + ACTIONS(5466), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -364878,270 +381801,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142061] = 16, + [155464] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - STATE(3797), 1, + STATE(4039), 1, sym_comment, - STATE(3817), 1, + STATE(4073), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 6, + ACTIONS(5482), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142127] = 16, + [155530] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3798), 1, + STATE(4040), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5316), 6, + ACTIONS(5466), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [142193] = 17, + [155596] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5512), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - STATE(3799), 1, + STATE(4041), 1, sym_comment, - STATE(3819), 1, + STATE(4074), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 5, + ACTIONS(5482), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [142261] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6791), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6793), 1, - sym_filesize_unit, - ACTIONS(6795), 1, - sym_duration_unit, - STATE(3800), 1, - sym_comment, - ACTIONS(6789), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6787), 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, - [142309] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3801), 1, - sym_comment, - ACTIONS(2528), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2530), 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, - [142351] = 13, + [155664] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5547), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3774), 1, - aux_sym_shebang_repeat1, - STATE(3802), 1, + STATE(4042), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4075), 1, + aux_sym_shebang_repeat1, + ACTIONS(5480), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6741), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 13, + ACTIONS(5478), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -365150,39 +381989,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, - [142411] = 11, + [155722] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3803), 1, + ACTIONS(5547), 1, + sym__newline, + STATE(4043), 1, sym_comment, - ACTIONS(5290), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, + STATE(4077), 1, + aux_sym_shebang_repeat1, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5288), 18, - sym__newline, + ACTIONS(5480), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5478), 20, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -365197,27 +382036,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [142467] = 7, + [155774] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6801), 1, + ACTIONS(3089), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6803), 1, + ACTIONS(7111), 1, sym_filesize_unit, - ACTIONS(6805), 1, + ACTIONS(7113), 1, sym_duration_unit, - STATE(3804), 1, + STATE(4044), 1, sym_comment, - ACTIONS(6799), 5, + ACTIONS(3087), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6797), 23, + ACTIONS(3085), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -365241,152 +382082,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142515] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3805), 1, - sym_comment, - ACTIONS(6711), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6717), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5290), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5288), 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, - [142565] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3806), 1, - sym_comment, - ACTIONS(6705), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6717), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5288), 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, - [142623] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3807), 1, - sym_comment, - ACTIONS(6717), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5290), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5288), 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, - [142669] = 7, + [155822] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6811), 1, + ACTIONS(7119), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6813), 1, + ACTIONS(7121), 1, sym_filesize_unit, - ACTIONS(6815), 1, + ACTIONS(7123), 1, sym_duration_unit, - STATE(3808), 1, + STATE(4045), 1, sym_comment, - ACTIONS(6809), 5, + ACTIONS(7117), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6807), 23, + ACTIONS(7115), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -365410,20 +382123,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [142717] = 4, + [155870] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3809), 1, + ACTIONS(3071), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(7125), 1, + sym_filesize_unit, + ACTIONS(7127), 1, + sym_duration_unit, + STATE(4046), 1, sym_comment, - ACTIONS(1781), 7, + ACTIONS(3069), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, + ACTIONS(3067), 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, + [155918] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7133), 1, aux_sym_cmd_identifier_token41, + ACTIONS(7135), 1, sym_filesize_unit, - ACTIONS(1783), 24, + ACTIONS(7137), 1, + sym_duration_unit, + STATE(4047), 1, + sym_comment, + ACTIONS(7131), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7129), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -365447,242 +382205,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [142759] = 17, + [155966] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + STATE(4048), 1, + sym_comment, + STATE(4079), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5478), 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, - ACTIONS(6727), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, anon_sym_bit_DASHor2, - STATE(1820), 1, + [156026] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5547), 1, + sym__newline, + STATE(4021), 1, aux_sym_shebang_repeat1, - STATE(3810), 1, + STATE(4049), 1, + sym_comment, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5480), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5478), 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, + [156074] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + ACTIONS(7077), 1, + anon_sym_bit_DASHand2, + ACTIONS(7079), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7081), 1, + anon_sym_bit_DASHor2, + STATE(3959), 1, + aux_sym_shebang_repeat1, + STATE(4050), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(5478), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [142827] = 18, + [156144] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, + ACTIONS(7081), 1, anon_sym_bit_DASHor2, - ACTIONS(6775), 1, + ACTIONS(7083), 1, anon_sym_and2, - STATE(1820), 1, + STATE(3961), 1, aux_sym_shebang_repeat1, - STATE(3811), 1, + STATE(4051), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5288), 4, - sym__newline, + ACTIONS(5478), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [142897] = 7, - ACTIONS(3), 1, + [156216] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6821), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6823), 1, - sym_filesize_unit, - ACTIONS(6825), 1, - sym_duration_unit, - STATE(3812), 1, + ACTIONS(6720), 1, + aux_sym_unquoted_token2, + STATE(4052), 1, sym_comment, - ACTIONS(6819), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6817), 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, - [142945] = 19, + ACTIONS(1687), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1699), 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, + [156260] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, + ACTIONS(7081), 1, anon_sym_bit_DASHor2, - ACTIONS(6775), 1, + ACTIONS(7083), 1, anon_sym_and2, - ACTIONS(6777), 1, + ACTIONS(7087), 1, anon_sym_xor2, - STATE(1820), 1, + STATE(3963), 1, aux_sym_shebang_repeat1, - STATE(3813), 1, + STATE(4053), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(5478), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5288), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143017] = 13, + [156334] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(3965), 1, aux_sym_shebang_repeat1, - STATE(3814), 1, + STATE(4054), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 10, - sym__newline, + ACTIONS(5478), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -365692,31 +382539,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143077] = 10, + [156396] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(3967), 1, aux_sym_shebang_repeat1, - STATE(3815), 1, + STATE(4055), 1, sym_comment, - ACTIONS(5290), 2, + ACTIONS(5480), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5288), 20, - sym__newline, + ACTIONS(5478), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -365736,47 +382584,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143131] = 14, + [156452] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(3969), 1, aux_sym_shebang_repeat1, - STATE(3816), 1, + STATE(4056), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 8, - sym__newline, + ACTIONS(5478), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -365784,161 +382633,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143193] = 15, + [156516] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(4057), 1, + sym_comment, + ACTIONS(1034), 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, + [156560] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(5547), 1, + sym__newline, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - STATE(1820), 1, + STATE(3971), 1, aux_sym_shebang_repeat1, - STATE(3817), 1, + STATE(4058), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 7, - sym__newline, + ACTIONS(5478), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143257] = 4, + [156626] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(3818), 1, - sym_comment, - ACTIONS(2078), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2084), 23, - ts_builtin_sym_end, + ACTIONS(5547), 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_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, - [143299] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, + ACTIONS(7077), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, + ACTIONS(7079), 1, anon_sym_bit_DASHxor2, - STATE(1820), 1, + STATE(3973), 1, aux_sym_shebang_repeat1, - STATE(3819), 1, + STATE(4059), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, + ACTIONS(7067), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7061), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5288), 6, - sym__newline, + ACTIONS(5478), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [143365] = 7, + [156694] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6831), 1, + ACTIONS(7143), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6833), 1, + ACTIONS(7145), 1, sym_filesize_unit, - ACTIONS(6835), 1, + ACTIONS(7147), 1, sym_duration_unit, - STATE(3820), 1, + STATE(4060), 1, sym_comment, - ACTIONS(6829), 5, + ACTIONS(7141), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6827), 23, + ACTIONS(7139), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -365962,54 +382814,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [143413] = 4, - ACTIONS(251), 1, + [156742] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3821), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(4061), 1, sym_comment, - ACTIONS(2088), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2094), 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, + ACTIONS(2254), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [143455] = 5, + 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, + [156786] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2240), 1, aux_sym_unquoted_token4, - STATE(3822), 1, + STATE(4062), 1, sym_comment, - ACTIONS(1038), 29, + ACTIONS(2272), 29, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -366039,35 +382892,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143499] = 12, + [156830] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(3823), 1, - sym_comment, - STATE(3837), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5314), 2, + STATE(4063), 1, + sym_comment, + ACTIONS(5494), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5312), 17, + ACTIONS(5492), 18, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -366085,29 +382937,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143557] = 9, + [156886] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - STATE(3824), 1, - sym_comment, - STATE(3839), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + STATE(4064), 1, + sym_comment, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5314), 3, + ACTIONS(5494), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5312), 20, + ACTIONS(5492), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -366128,40 +382979,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143609] = 13, + [156936] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(3825), 1, - sym_comment, - STATE(3841), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4065), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 13, + ACTIONS(5492), 14, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -366175,25 +383025,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143669] = 7, + [156994] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - STATE(3826), 1, - sym_comment, - STATE(3843), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, + STATE(4066), 1, + sym_comment, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5314), 5, + ACTIONS(5494), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5312), 22, + ACTIONS(5492), 23, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -366216,204 +383065,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143717] = 18, + [157040] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(7055), 1, anon_sym_bit_DASHor2, - STATE(3827), 1, - sym_comment, - STATE(3845), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4067), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5312), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143787] = 19, + ACTIONS(5492), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157108] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(7055), 1, anon_sym_bit_DASHor2, - ACTIONS(6761), 1, - anon_sym_and2, - STATE(3828), 1, - sym_comment, - STATE(3847), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4068), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5312), 3, + ACTIONS(5492), 4, + sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143859] = 20, + [157178] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(7055), 1, anon_sym_bit_DASHor2, - ACTIONS(6761), 1, - anon_sym_and2, - ACTIONS(6773), 1, + ACTIONS(7085), 1, anon_sym_xor2, - STATE(3829), 1, - sym_comment, - STATE(3849), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5312), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4069), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(5492), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143933] = 14, + [157250] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(3830), 1, - sym_comment, - STATE(3851), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4070), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 9, + ACTIONS(5492), 10, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -366423,32 +383268,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143995] = 11, + [157310] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(3831), 1, - sym_comment, - STATE(3853), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5314), 2, + STATE(4071), 1, + sym_comment, + ACTIONS(5494), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5312), 19, + ACTIONS(5492), 20, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -366468,48 +383312,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144051] = 15, + [157364] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(3832), 1, - sym_comment, - STATE(3856), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4072), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 7, + ACTIONS(5492), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -366517,215 +383360,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144115] = 16, + [157426] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, - STATE(3833), 1, - sym_comment, - STATE(3858), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + STATE(4073), 1, + sym_comment, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, + ACTIONS(7041), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5312), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144181] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5485), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - ACTIONS(6753), 1, - anon_sym_bit_DASHxor2, - STATE(3834), 1, - sym_comment, - STATE(3860), 1, - aux_sym_shebang_repeat1, - ACTIONS(6731), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(7033), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 5, + ACTIONS(5492), 7, + sym__newline, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [144249] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3835), 1, - sym_comment, - ACTIONS(1637), 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(1639), 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, - [144291] = 9, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [157490] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - STATE(3772), 1, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, + anon_sym_bit_DASHand2, + ACTIONS(7053), 1, + anon_sym_bit_DASHxor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3836), 1, + STATE(4074), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5310), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5308), 20, - anon_sym_DASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7033), 4, 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, + ACTIONS(7039), 4, anon_sym_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, + ACTIONS(5492), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [144343] = 11, + [157556] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3837), 1, + STATE(4075), 1, sym_comment, - ACTIONS(5344), 2, + ACTIONS(5458), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5342), 18, + ACTIONS(5456), 18, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -366744,35 +383504,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144399] = 12, + [157612] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3749), 1, + STATE(3978), 1, aux_sym_shebang_repeat1, - STATE(3838), 1, + STATE(4076), 1, sym_comment, - ACTIONS(5348), 2, + ACTIONS(5462), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 17, + ACTIONS(5460), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -366790,27 +383550,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144457] = 8, + [157670] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3839), 1, + STATE(4077), 1, sym_comment, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5344), 3, + ACTIONS(5458), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5342), 21, + ACTIONS(5456), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -366832,29 +383592,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144507] = 9, + [157720] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5550), 1, sym__newline, - STATE(3750), 1, + STATE(3979), 1, aux_sym_shebang_repeat1, - STATE(3840), 1, + STATE(4078), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5348), 3, + ACTIONS(5462), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5346), 20, + ACTIONS(5460), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -366875,38 +383635,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144559] = 12, + [157772] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(7031), 1, anon_sym_DASH2, - ACTIONS(6721), 1, + ACTIONS(7047), 1, anon_sym_PLUS2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(3841), 1, + STATE(4079), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(7029), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7035), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6717), 2, + ACTIONS(7043), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7045), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7049), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6713), 4, + ACTIONS(7039), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 14, + ACTIONS(5456), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -366921,40 +383681,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144617] = 13, + [157830] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5550), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(7059), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(7073), 1, anon_sym_PLUS2, - STATE(3752), 1, + STATE(3980), 1, aux_sym_shebang_repeat1, - STATE(3842), 1, + STATE(4080), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6745), 2, + ACTIONS(7069), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6741), 4, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 13, + ACTIONS(5460), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -366968,25 +383728,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144677] = 6, + [157890] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(5512), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + ACTIONS(7077), 1, + anon_sym_bit_DASHand2, + ACTIONS(7079), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7081), 1, + anon_sym_bit_DASHor2, + ACTIONS(7083), 1, + anon_sym_and2, + STATE(4068), 1, aux_sym_shebang_repeat1, - STATE(3843), 1, + STATE(4081), 1, sym_comment, - ACTIONS(6717), 2, + ACTIONS(7057), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7063), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7067), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5344), 5, + ACTIONS(7071), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7075), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5482), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7061), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7065), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [157962] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4082), 1, + sym_comment, + ACTIONS(2254), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5342), 23, - sym__newline, - anon_sym_DASH2, + ACTIONS(2258), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367001,6 +383809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -367008,26 +383818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144723] = 7, + [158003] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - STATE(3753), 1, - aux_sym_shebang_repeat1, - STATE(3844), 1, + STATE(4083), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5348), 5, + ACTIONS(2411), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5346), 22, - anon_sym_DASH2, + ACTIONS(2413), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367042,6 +383846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -367049,441 +383855,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144771] = 17, + [158044] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - ACTIONS(6725), 1, - anon_sym_bit_DASHand2, - ACTIONS(6727), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, - anon_sym_bit_DASHor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3845), 1, + STATE(4084), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(2415), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6715), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + anon_sym_PLUS2, + ACTIONS(2417), 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, - ACTIONS(6713), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [144839] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - ACTIONS(6753), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3730), 1, - aux_sym_shebang_repeat1, - STATE(3846), 1, - sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6743), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6737), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [144909] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - ACTIONS(6725), 1, anon_sym_bit_DASHand2, - ACTIONS(6727), 1, anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, anon_sym_bit_DASHor2, - ACTIONS(6775), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3847), 1, + [158085] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4085), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7151), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7153), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7155), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5342), 4, - sym__newline, + ACTIONS(5426), 20, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6709), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [144979] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, anon_sym_bit_DASHor2, - ACTIONS(6761), 1, - anon_sym_and2, - STATE(3761), 1, - aux_sym_shebang_repeat1, - STATE(3848), 1, + [158134] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4086), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(5432), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 3, + anon_sym_PLUS2, + ACTIONS(5430), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6737), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [145051] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - ACTIONS(6725), 1, - anon_sym_bit_DASHand2, - ACTIONS(6727), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, - anon_sym_bit_DASHor2, - ACTIONS(6775), 1, - anon_sym_and2, - ACTIONS(6777), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3849), 1, - sym_comment, - ACTIONS(6705), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6715), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5342), 3, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [158175] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4087), 1, + sym_comment, + STATE(5122), 1, + sym_redirection, + ACTIONS(7159), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(7161), 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(7157), 13, sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6709), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [145123] = 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_RBRACE, + [158220] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(6735), 1, + ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(6747), 1, + ACTIONS(5523), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(5563), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(5565), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(5567), 1, anon_sym_bit_DASHor2, - ACTIONS(6761), 1, + ACTIONS(5591), 1, anon_sym_and2, - ACTIONS(6773), 1, + ACTIONS(5602), 1, anon_sym_xor2, - STATE(3762), 1, - aux_sym_shebang_repeat1, - STATE(3850), 1, - sym_comment, - ACTIONS(5346), 2, - anon_sym_LBRACE, + ACTIONS(7163), 1, anon_sym_or2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, + STATE(4088), 1, + sym_comment, + STATE(4098), 1, + aux_sym_shebang_repeat1, + ACTIONS(5517), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, + ACTIONS(5519), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, + ACTIONS(5553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + ACTIONS(5561), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5555), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, + ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [145197] = 13, + [158293] = 25, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + ACTIONS(389), 1, anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3851), 1, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6985), 1, + anon_sym_LBRACE, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4089), 1, + sym_comment, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4636), 1, + sym__binary_predicate, + STATE(4637), 1, + sym__predicate, + STATE(5082), 1, + sym_val_closure, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [158376] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4090), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(5286), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6717), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + anon_sym_PLUS2, + ACTIONS(5284), 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, - ACTIONS(6713), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 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, - [145257] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - STATE(3763), 1, - aux_sym_shebang_repeat1, - STATE(3852), 1, - sym_comment, - ACTIONS(6731), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6745), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6741), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5346), 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, - [145319] = 10, + [158417] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3853), 1, + STATE(4091), 1, sym_comment, - ACTIONS(5344), 2, + ACTIONS(1830), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6717), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5342), 20, - sym__newline, + anon_sym_PLUS2, + ACTIONS(1838), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367498,37 +384185,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145373] = 11, + [158458] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - STATE(3764), 1, - aux_sym_shebang_repeat1, - STATE(3854), 1, + STATE(4092), 1, sym_comment, - ACTIONS(5348), 2, + ACTIONS(2266), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5346), 19, + anon_sym_PLUS2, + ACTIONS(2270), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367543,40 +384222,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145429] = 12, + [158499] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5426), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - STATE(3770), 1, - aux_sym_shebang_repeat1, - STATE(3855), 1, + STATE(4093), 1, sym_comment, - ACTIONS(5310), 2, + ACTIONS(2272), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6739), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5308), 17, + anon_sym_PLUS2, + ACTIONS(2274), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367591,374 +384259,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145487] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3856), 1, - sym_comment, - ACTIONS(6705), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6715), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5342), 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, - [145549] = 15, + [158540] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - STATE(3765), 1, - aux_sym_shebang_repeat1, - STATE(3857), 1, + STATE(4094), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(2131), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + anon_sym_PLUS2, + ACTIONS(2137), 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, - ACTIONS(6741), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 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, - [145613] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - ACTIONS(6725), 1, - anon_sym_bit_DASHand2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3858), 1, - sym_comment, - ACTIONS(6705), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6715), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5342), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145677] = 16, + [158581] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - sym__newline, - ACTIONS(6735), 1, - anon_sym_DASH2, - ACTIONS(6747), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - STATE(3767), 1, - aux_sym_shebang_repeat1, - STATE(3859), 1, + STATE(4095), 1, sym_comment, - ACTIONS(6731), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + ACTIONS(5286), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6743), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + anon_sym_PLUS2, + ACTIONS(5284), 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, - ACTIONS(6741), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5346), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145743] = 16, + [158622] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6707), 1, + STATE(4096), 1, + sym_comment, + ACTIONS(7149), 2, anon_sym_DASH2, - ACTIONS(6721), 1, anon_sym_PLUS2, - ACTIONS(6725), 1, - anon_sym_bit_DASHand2, - ACTIONS(6727), 1, - anon_sym_bit_DASHxor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3860), 1, - sym_comment, - ACTIONS(6705), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, + ACTIONS(7151), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6715), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, + ACTIONS(7153), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, + ACTIONS(7155), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, + ACTIONS(7165), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7171), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7173), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(7167), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, + ACTIONS(7169), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5342), 6, - sym__newline, + ACTIONS(5426), 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, - [145809] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3069), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6837), 1, - sym_filesize_unit, - ACTIONS(6839), 1, - sym_duration_unit, - STATE(3861), 1, - sym_comment, - ACTIONS(3067), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3065), 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, - [145857] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3862), 1, - sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4042), 1, - aux_sym_shebang_repeat1, - STATE(4283), 1, - sym_val_number, - STATE(4409), 1, - sym__binary_predicate_parenthesized, - STATE(4410), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [145940] = 7, + [158679] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3863), 1, + STATE(4097), 1, sym_comment, - ACTIONS(6841), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 4, + ACTIONS(2234), 6, anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5255), 20, + ACTIONS(2238), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -367974,153 +384415,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145987] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3864), 1, - sym_comment, - STATE(4998), 1, - sym_redirection, - ACTIONS(6849), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6851), 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(6847), 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, - [146032] = 20, + [158720] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(5387), 1, + ACTIONS(5527), 1, anon_sym_DASH2, - ACTIONS(5393), 1, - anon_sym_and2, - ACTIONS(5395), 1, - anon_sym_xor2, - ACTIONS(5403), 1, + ACTIONS(5541), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, + ACTIONS(5545), 1, anon_sym_bit_DASHand2, - ACTIONS(5409), 1, + ACTIONS(5571), 1, anon_sym_bit_DASHxor2, - ACTIONS(5411), 1, + ACTIONS(5585), 1, anon_sym_bit_DASHor2, - ACTIONS(6853), 1, + ACTIONS(5595), 1, + anon_sym_and2, + ACTIONS(5600), 1, + anon_sym_xor2, + ACTIONS(7175), 1, anon_sym_or2, - STATE(3865), 1, - sym_comment, - STATE(3867), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(5353), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5385), 2, + STATE(4098), 1, + sym_comment, + ACTIONS(5525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5391), 2, + ACTIONS(5531), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5535), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5401), 2, + ACTIONS(5537), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5405), 2, + ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5529), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5397), 4, + ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [146105] = 25, + [158793] = 25, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3551), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6855), 1, + ACTIONS(7177), 1, anon_sym_LBRACE, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2484), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(3866), 1, + STATE(4099), 1, sym_comment, - STATE(3996), 1, + STATE(4228), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4587), 1, + STATE(4825), 1, sym__binary_predicate, - STATE(4601), 1, + STATE(4826), 1, sym__predicate, - STATE(5060), 1, + STATE(5466), 1, sym_val_closure, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4571), 2, + STATE(4829), 2, sym_expr_unary, sym_val_bool, - STATE(5057), 2, + STATE(5478), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -368129,72 +384535,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146188] = 20, + [158876] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(5357), 1, + STATE(4100), 1, + sym_comment, + ACTIONS(7149), 2, anon_sym_DASH2, - ACTIONS(5371), 1, anon_sym_PLUS2, - ACTIONS(5413), 1, - anon_sym_bit_DASHand2, - ACTIONS(5415), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5417), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - anon_sym_and2, - ACTIONS(5424), 1, - anon_sym_xor2, - ACTIONS(6857), 1, - anon_sym_or2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3867), 1, - sym_comment, - ACTIONS(5355), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5361), 2, + ACTIONS(7151), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5365), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5367), 2, + ACTIONS(7153), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5369), 2, + ACTIONS(7155), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5373), 2, + ACTIONS(7165), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7173), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5359), 4, + ACTIONS(7167), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5363), 4, + ACTIONS(7169), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [146261] = 4, + ACTIONS(5426), 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, + [158931] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3868), 1, + STATE(4101), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368219,62 +384616,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146302] = 10, + [158972] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3869), 1, + ACTIONS(7179), 1, + anon_sym_bit_DASHand2, + STATE(4102), 1, sym_comment, - ACTIONS(6841), 2, + ACTIONS(7149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7151), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6843), 2, + ACTIONS(7153), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, + ACTIONS(7155), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, + ACTIONS(7165), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, + ACTIONS(7171), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7173), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6863), 4, + ACTIONS(7167), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7169), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 14, + ACTIONS(5426), 7, 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, - [146355] = 4, + [159031] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3870), 1, + STATE(4103), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368299,27 +384699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146396] = 8, + [159072] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3871), 1, + STATE(4104), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(2419), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6841), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6861), 2, - anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(5255), 20, + ACTIONS(2421), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368335,27 +384727,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146445] = 5, + [159113] = 25, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4105), 1, + sym_comment, + STATE(4148), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4584), 1, + sym__binary_predicate_parenthesized, + STATE(4585), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [159196] = 25, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4106), 1, + sym_comment, + STATE(4149), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4586), 1, + sym__binary_predicate_parenthesized, + STATE(4587), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [159279] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3872), 1, + STATE(4107), 1, sym_comment, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5257), 6, + ACTIONS(2423), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5255), 22, + ACTIONS(2425), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368371,6 +384880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -368378,19 +384889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146488] = 4, + [159320] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3873), 1, + STATE(4108), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(2427), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(2429), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368415,109 +384926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146529] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3874), 1, - sym_comment, - ACTIONS(6841), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6863), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6867), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [146584] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6871), 1, - anon_sym_bit_DASHand2, - STATE(3875), 1, - sym_comment, - ACTIONS(6841), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6869), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6863), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6867), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [146643] = 4, + [159361] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3876), 1, + STATE(4109), 1, sym_comment, - ACTIONS(2290), 6, + ACTIONS(2431), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2294), 24, + ACTIONS(2433), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368542,19 +384963,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146684] = 4, + [159402] = 25, ACTIONS(251), 1, anon_sym_POUND, - STATE(3877), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4110), 1, + sym_comment, + STATE(4151), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4590), 1, + sym__binary_predicate_parenthesized, + STATE(4591), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [159485] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4111), 1, + sym_comment, + STATE(5178), 1, + sym_redirection, + ACTIONS(7159), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(7161), 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(7181), 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, + [159530] = 25, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4112), 1, + sym_comment, + STATE(4155), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4594), 1, + sym__binary_predicate_parenthesized, + STATE(4595), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [159613] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4113), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(2435), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(2437), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368579,56 +385155,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146725] = 25, + [159654] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3878), 1, + STATE(4114), 1, sym_comment, - STATE(3898), 1, + STATE(4157), 1, aux_sym_shebang_repeat1, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4321), 1, + STATE(4596), 1, sym__binary_predicate_parenthesized, - STATE(4324), 1, + STATE(4597), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -368637,19 +385213,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146808] = 4, + [159737] = 25, ACTIONS(251), 1, anon_sym_POUND, - STATE(3879), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4115), 1, + sym_comment, + STATE(4169), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4599), 1, + sym__binary_predicate_parenthesized, + STATE(4600), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [159820] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4116), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(2443), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(2445), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368674,19 +385308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146849] = 4, + [159861] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3880), 1, + STATE(4117), 1, sym_comment, - ACTIONS(5265), 6, + ACTIONS(2447), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5263), 24, + ACTIONS(2449), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368711,66 +385345,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146890] = 14, + [159902] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6871), 1, - anon_sym_bit_DASHand2, - ACTIONS(6873), 1, - anon_sym_bit_DASHxor2, - STATE(3881), 1, + STATE(4118), 1, sym_comment, - ACTIONS(6841), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, + ACTIONS(5286), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6869), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6863), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6867), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 6, + ACTIONS(5284), 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, - [146951] = 4, + [159943] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3882), 1, + STATE(4119), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(5428), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5426), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368795,56 +385419,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146992] = 25, + [159984] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3883), 1, + STATE(4120), 1, sym_comment, - STATE(3916), 1, + STATE(4142), 1, aux_sym_shebang_repeat1, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4339), 1, + STATE(4774), 1, sym__binary_predicate_parenthesized, - STATE(4358), 1, + STATE(4775), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -368853,64 +385477,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147075] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3884), 1, - sym_comment, - ACTIONS(6841), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6869), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6863), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6867), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5255), 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, - [147132] = 4, + [160067] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3885), 1, + STATE(4121), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(2242), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(2244), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -368935,56 +385514,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147173] = 25, + [160108] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6669), 1, - anon_sym_LBRACE, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3886), 1, + STATE(4122), 1, sym_comment, - STATE(3985), 1, + STATE(4141), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4488), 1, - sym__binary_predicate, - STATE(4489), 1, + STATE(4770), 1, + sym__binary_predicate_parenthesized, + STATE(4771), 1, sym__predicate, - STATE(4838), 1, - sym_val_closure, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -368993,133 +385572,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147256] = 5, + [160191] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(3887), 1, + ACTIONS(7179), 1, + anon_sym_bit_DASHand2, + ACTIONS(7183), 1, + anon_sym_bit_DASHxor2, + STATE(4123), 1, sym_comment, - ACTIONS(1695), 5, - anon_sym_GT2, + ACTIONS(7149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7151), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1707), 24, - anon_sym_DASH2, + ACTIONS(7153), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7155), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7165), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7171), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7173), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7167), 4, 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, + ACTIONS(7169), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5426), 6, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [147299] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3888), 1, - sym_comment, - STATE(4976), 1, - sym_redirection, - ACTIONS(6849), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6851), 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(6875), 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, - [147344] = 25, + [160252] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3889), 1, + STATE(4124), 1, sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4042), 1, + STATE(4143), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, sym_val_number, - STATE(4453), 1, + STATE(4776), 1, sym__binary_predicate_parenthesized, - STATE(4517), 1, + STATE(4777), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -369128,19 +385677,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147427] = 4, + [160335] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3890), 1, + STATE(4125), 1, sym_comment, - ACTIONS(2298), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2300), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -369165,215 +385714,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147468] = 20, + [160376] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6735), 1, + STATE(4126), 1, + sym_comment, + ACTIONS(5436), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(6747), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(5434), 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, - ACTIONS(6753), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, anon_sym_bit_DASHor2, - ACTIONS(6761), 1, + [160417] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4127), 1, + sym_comment, + ACTIONS(2226), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2230), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(6773), 1, anon_sym_xor2, - ACTIONS(6877), 1, anon_sym_or2, - STATE(3891), 1, - sym_comment, - STATE(3899), 1, - aux_sym_shebang_repeat1, - ACTIONS(6731), 2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6733), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [160458] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4128), 1, + sym_comment, + ACTIONS(5286), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6743), 2, + anon_sym_PLUS2, + ACTIONS(5284), 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, - ACTIONS(6745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6749), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6737), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [160499] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4129), 1, + sym_comment, + ACTIONS(5378), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5380), 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, - ACTIONS(6741), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [147541] = 25, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [160540] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3892), 1, + STATE(4130), 1, sym_comment, - STATE(3922), 1, - aux_sym_shebang_repeat1, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4283), 1, - sym_val_number, - STATE(4497), 1, - sym__binary_predicate_parenthesized, - STATE(4498), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [147624] = 15, + ACTIONS(5428), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7151), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7153), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7155), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7173), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5426), 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, + [160591] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6871), 1, + ACTIONS(7179), 1, anon_sym_bit_DASHand2, - ACTIONS(6873), 1, + ACTIONS(7183), 1, anon_sym_bit_DASHxor2, - ACTIONS(6879), 1, + ACTIONS(7185), 1, + anon_sym_and2, + ACTIONS(7187), 1, + anon_sym_xor2, + ACTIONS(7189), 1, anon_sym_bit_DASHor2, - STATE(3893), 1, + STATE(4131), 1, sym_comment, - ACTIONS(6841), 2, + ACTIONS(7149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7151), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6843), 2, + ACTIONS(7153), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, + ACTIONS(7155), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, + ACTIONS(7165), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6869), 2, + ACTIONS(7171), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6863), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6867), 4, + ACTIONS(7173), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5426), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(7167), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5255), 5, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [147687] = 25, + ACTIONS(7169), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [160658] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3894), 1, + STATE(4132), 1, sym_comment, - STATE(3923), 1, - aux_sym_shebang_repeat1, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4296), 1, + aux_sym_shebang_repeat1, + STATE(4573), 1, sym_val_number, - STATE(4501), 1, - sym__binary_predicate_parenthesized, - STATE(4502), 1, + STATE(4676), 1, sym__predicate, + STATE(4782), 1, + sym__binary_predicate_parenthesized, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -369382,56 +386012,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147770] = 25, + [160741] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3862), 1, - aux_sym_shebang_repeat1, - STATE(3895), 1, + STATE(4133), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4296), 1, + aux_sym_shebang_repeat1, + STATE(4573), 1, sym_val_number, - STATE(4503), 1, + STATE(4679), 1, sym__binary_predicate_parenthesized, - STATE(4504), 1, + STATE(4680), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -369440,172 +386070,324 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147853] = 25, + [160824] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, + STATE(4134), 1, + sym_comment, + ACTIONS(2407), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3896), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2409), 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, + [160865] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4135), 1, sym_comment, - STATE(3928), 1, - aux_sym_shebang_repeat1, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4283), 1, - sym_val_number, - STATE(4508), 1, - sym__binary_predicate_parenthesized, - STATE(4510), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [147936] = 25, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [160906] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4136), 1, + sym_comment, + ACTIONS(7151), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7153), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7155), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 4, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5426), 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, + [160953] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4137), 1, + sym_comment, + ACTIONS(2292), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2294), 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, + [160994] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4138), 1, + sym_comment, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [161035] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, + STATE(4139), 1, + sym_comment, + ACTIONS(7149), 2, anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3897), 1, + anon_sym_PLUS2, + ACTIONS(7151), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7153), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7155), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7165), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7173), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7169), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5426), 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, + [161088] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4140), 1, sym_comment, - STATE(3931), 1, - aux_sym_shebang_repeat1, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4283), 1, - sym_val_number, - STATE(4513), 1, - sym__binary_predicate_parenthesized, - STATE(4515), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [148019] = 25, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, + [161129] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3898), 1, + STATE(4141), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4473), 1, + STATE(4694), 1, sym__binary_predicate_parenthesized, - STATE(4474), 1, + STATE(4695), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -369614,109 +386396,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148102] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6707), 1, - anon_sym_DASH2, - ACTIONS(6721), 1, - anon_sym_PLUS2, - ACTIONS(6725), 1, - anon_sym_bit_DASHand2, - ACTIONS(6727), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6729), 1, - anon_sym_bit_DASHor2, - ACTIONS(6775), 1, - anon_sym_and2, - ACTIONS(6777), 1, - anon_sym_xor2, - ACTIONS(6881), 1, - anon_sym_or2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3899), 1, - sym_comment, - ACTIONS(6705), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6711), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6715), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6717), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6719), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6723), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6713), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [148175] = 25, + [161212] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3900), 1, + STATE(4142), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4388), 1, + STATE(4698), 1, sym__binary_predicate_parenthesized, - STATE(4395), 1, + STATE(4699), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -369725,56 +386454,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148258] = 25, + [161295] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3901), 1, + STATE(4143), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4493), 1, + STATE(4703), 1, sym__binary_predicate_parenthesized, - STATE(4494), 1, + STATE(4704), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -369783,22 +386512,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148341] = 4, + [161378] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3902), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(4144), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(1687), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, - anon_sym_DASH_DASH, + ACTIONS(1699), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -369820,19 +386550,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148382] = 4, + [161421] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3903), 1, + STATE(4145), 1, sym_comment, - ACTIONS(2282), 6, + ACTIONS(7153), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5428), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2286), 24, + ACTIONS(5426), 22, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -369848,8 +386581,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -369857,24 +386588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148423] = 6, + [161464] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6648), 1, - anon_sym_DASH2, - STATE(3904), 1, + STATE(4146), 1, sym_comment, - ACTIONS(5237), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(5239), 5, + ACTIONS(5286), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5241), 22, + ACTIONS(5284), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -369896,93 +386625,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148468] = 4, + [161505] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(3905), 1, + ACTIONS(7179), 1, + anon_sym_bit_DASHand2, + ACTIONS(7183), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7189), 1, + anon_sym_bit_DASHor2, + STATE(4147), 1, sym_comment, - ACTIONS(5249), 6, - anon_sym_GT2, + ACTIONS(7149), 2, anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7151), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5247), 24, - anon_sym_DASH_DASH, + ACTIONS(7153), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7155), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7165), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7171), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7173), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7167), 4, 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, + ACTIONS(7169), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148509] = 25, + ACTIONS(5426), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161568] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3901), 1, - aux_sym_shebang_repeat1, - STATE(3906), 1, + STATE(4148), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4296), 1, + aux_sym_shebang_repeat1, + STATE(4573), 1, sym_val_number, - STATE(4369), 1, + STATE(4711), 1, sym__binary_predicate_parenthesized, - STATE(4506), 1, + STATE(4712), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -369991,93 +386731,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148592] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3907), 1, - sym_comment, - ACTIONS(2247), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2249), 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, - [148633] = 25, + [161651] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3908), 1, + STATE(4149), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4406), 1, + STATE(4716), 1, sym__binary_predicate_parenthesized, - STATE(4408), 1, + STATE(4717), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -370086,19 +386789,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148716] = 4, + [161734] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3909), 1, + STATE(4150), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(2072), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(2078), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -370123,56 +386826,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148757] = 25, + [161775] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3910), 1, + STATE(4151), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4414), 1, + STATE(4723), 1, sym__binary_predicate_parenthesized, - STATE(4415), 1, + STATE(4726), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -370181,195 +386884,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148840] = 4, + [161858] = 25, ACTIONS(251), 1, anon_sym_POUND, - STATE(3911), 1, - sym_comment, - ACTIONS(5198), 6, - anon_sym_GT2, + ACTIONS(389), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5196), 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, - [148881] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6235), 1, - anon_sym_DASH2, - ACTIONS(6241), 1, - anon_sym_and2, - ACTIONS(6251), 1, - anon_sym_PLUS2, - ACTIONS(6255), 1, - anon_sym_bit_DASHand2, - ACTIONS(6257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6259), 1, - anon_sym_bit_DASHor2, - ACTIONS(6291), 1, - anon_sym_xor2, - ACTIONS(6883), 1, - anon_sym_or2, - STATE(3912), 1, - sym_comment, - STATE(3915), 1, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4132), 1, aux_sym_shebang_repeat1, - ACTIONS(6233), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6245), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6247), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6249), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6253), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6237), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6243), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [148954] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6871), 1, - anon_sym_bit_DASHand2, - ACTIONS(6873), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6879), 1, - anon_sym_bit_DASHor2, - ACTIONS(6885), 1, - anon_sym_and2, - STATE(3913), 1, + STATE(4152), 1, sym_comment, - ACTIONS(6841), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6869), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5255), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6863), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6867), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [149019] = 25, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4728), 1, + sym__binary_predicate_parenthesized, + STATE(4738), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [161941] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3889), 1, + STATE(4133), 1, aux_sym_shebang_repeat1, - STATE(3914), 1, + STATE(4153), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4516), 1, + STATE(4739), 1, sym__binary_predicate_parenthesized, - STATE(4518), 1, + STATE(4741), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -370378,109 +387000,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149102] = 20, + [162024] = 25, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6265), 1, + ACTIONS(389), 1, anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6281), 1, - anon_sym_bit_DASHand2, - ACTIONS(6283), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6285), 1, - anon_sym_bit_DASHor2, - ACTIONS(6287), 1, - anon_sym_and2, - ACTIONS(6289), 1, - anon_sym_xor2, - ACTIONS(6887), 1, - anon_sym_or2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(3915), 1, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4154), 1, sym_comment, - ACTIONS(6261), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6263), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6269), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6267), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6271), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [149175] = 25, + STATE(4171), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4573), 1, + sym_val_number, + STATE(4746), 1, + sym__binary_predicate_parenthesized, + STATE(4747), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [162107] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3916), 1, + STATE(4155), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4483), 1, + STATE(4760), 1, sym__binary_predicate_parenthesized, - STATE(4486), 1, + STATE(4761), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -370489,19 +387116,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149258] = 4, + [162190] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3917), 1, + STATE(4156), 1, sym_comment, - ACTIONS(5239), 6, + ACTIONS(1840), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5241), 24, + ACTIONS(1848), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -370526,61 +387153,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [149299] = 9, + [162231] = 25, ACTIONS(251), 1, anon_sym_POUND, - STATE(3918), 1, + ACTIONS(389), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + aux_sym__val_number_token5, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6979), 1, + sym__newline, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, + anon_sym_DOLLAR, + ACTIONS(6987), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6989), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6991), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6993), 1, + aux_sym__val_number_decimal_token4, + STATE(1805), 1, + sym__val_number_decimal, + STATE(1860), 1, + sym__val_number, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(4157), 1, + sym_comment, + STATE(4225), 1, + sym_expr_parenthesized, + STATE(4296), 1, + aux_sym_shebang_repeat1, + STATE(4573), 1, + sym_val_number, + STATE(4764), 1, + sym__binary_predicate_parenthesized, + STATE(4765), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4638), 2, + sym_expr_unary, + sym_val_bool, + STATE(5387), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(433), 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, + [162314] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_DASH2, + ACTIONS(7073), 1, + anon_sym_PLUS2, + ACTIONS(7077), 1, + anon_sym_bit_DASHand2, + ACTIONS(7079), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7081), 1, + anon_sym_bit_DASHor2, + ACTIONS(7083), 1, + anon_sym_and2, + ACTIONS(7087), 1, + anon_sym_xor2, + ACTIONS(7191), 1, + anon_sym_or2, + STATE(4158), 1, sym_comment, - ACTIONS(5257), 2, + STATE(4159), 1, + aux_sym_shebang_repeat1, + ACTIONS(7057), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6841), 2, + ACTIONS(7063), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6843), 2, + ACTIONS(7067), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7069), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, + ACTIONS(7071), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, + ACTIONS(7075), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5255), 18, - anon_sym_DASH_DASH, + ACTIONS(7061), 4, 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, + ACTIONS(7065), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [162387] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7031), 1, + anon_sym_DASH2, + ACTIONS(7037), 1, + anon_sym_and2, + ACTIONS(7047), 1, + anon_sym_PLUS2, + ACTIONS(7051), 1, anon_sym_bit_DASHand2, + ACTIONS(7053), 1, anon_sym_bit_DASHxor2, + ACTIONS(7055), 1, anon_sym_bit_DASHor2, - [149350] = 4, + ACTIONS(7085), 1, + anon_sym_xor2, + ACTIONS(7193), 1, + anon_sym_or2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4159), 1, + sym_comment, + ACTIONS(7029), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7035), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7041), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7043), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7045), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7049), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7033), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7039), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [162460] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3919), 1, + STATE(4160), 1, sym_comment, - ACTIONS(5253), 6, + ACTIONS(5286), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5251), 24, + ACTIONS(5284), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -370605,69 +387354,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [149391] = 17, + [162501] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6871), 1, + ACTIONS(7179), 1, anon_sym_bit_DASHand2, - ACTIONS(6873), 1, + ACTIONS(7183), 1, anon_sym_bit_DASHxor2, - ACTIONS(6879), 1, - anon_sym_bit_DASHor2, - ACTIONS(6885), 1, + ACTIONS(7185), 1, anon_sym_and2, - ACTIONS(6889), 1, - anon_sym_xor2, - STATE(3920), 1, + ACTIONS(7189), 1, + anon_sym_bit_DASHor2, + STATE(4161), 1, sym_comment, - ACTIONS(6841), 2, + ACTIONS(7149), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7151), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6843), 2, + ACTIONS(7153), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, + ACTIONS(7155), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, + ACTIONS(7165), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6869), 2, + ACTIONS(7171), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5255), 3, + ACTIONS(7173), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5426), 4, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6863), 4, + ACTIONS(7167), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7169), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6867), 4, + [162566] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4162), 1, + sym_comment, + ACTIONS(5286), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5284), 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, - [149458] = 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [162607] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3921), 1, + STATE(4163), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(2395), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(2397), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -370692,309 +387477,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [149499] = 25, + [162648] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3922), 1, - sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4042), 1, - aux_sym_shebang_repeat1, - STATE(4283), 1, - sym_val_number, - STATE(4342), 1, - sym__predicate, - STATE(4365), 1, - sym__binary_predicate_parenthesized, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [149582] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(6493), 1, anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3923), 1, + ACTIONS(6501), 1, + anon_sym_PLUS2, + ACTIONS(6513), 1, + anon_sym_bit_DASHand2, + ACTIONS(6515), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6517), 1, + anon_sym_bit_DASHor2, + ACTIONS(6519), 1, + anon_sym_and2, + ACTIONS(6521), 1, + anon_sym_xor2, + ACTIONS(7195), 1, + anon_sym_or2, + STATE(4164), 1, sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4042), 1, + STATE(4165), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, - sym_val_number, - STATE(4390), 1, - sym__binary_predicate_parenthesized, - STATE(4391), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [149665] = 25, + ACTIONS(6495), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6497), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6499), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6503), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6511), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6507), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6509), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [162721] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3900), 1, - aux_sym_shebang_repeat1, - STATE(3924), 1, - sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4283), 1, - sym_val_number, - STATE(4412), 1, - sym__binary_predicate_parenthesized, - STATE(4417), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [149748] = 25, + ACTIONS(6459), 1, + anon_sym_DASH2, + ACTIONS(6469), 1, + anon_sym_PLUS2, + ACTIONS(6531), 1, + anon_sym_bit_DASHand2, + ACTIONS(6533), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6535), 1, + anon_sym_bit_DASHor2, + ACTIONS(6537), 1, + anon_sym_and2, + ACTIONS(6539), 1, + anon_sym_xor2, + ACTIONS(7197), 1, + anon_sym_or2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4165), 1, + sym_comment, + ACTIONS(6457), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6461), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6465), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6467), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6471), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6529), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6463), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6527), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [162794] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3908), 1, - aux_sym_shebang_repeat1, - STATE(3925), 1, + STATE(4166), 1, sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4283), 1, - sym_val_number, - STATE(4447), 1, - sym__binary_predicate_parenthesized, - STATE(4455), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [149831] = 25, + ACTIONS(2090), 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, + [162835] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, + ACTIONS(6958), 1, anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3525), 1, - aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token4, - STATE(1849), 1, - sym__val_number_decimal, - STATE(1850), 1, - sym__val_number, - STATE(2120), 1, - sym__expr_unary_minus, - STATE(3910), 1, - aux_sym_shebang_repeat1, - STATE(3926), 1, + STATE(4167), 1, sym_comment, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(4283), 1, - sym_val_number, - STATE(4320), 1, - sym__binary_predicate_parenthesized, - STATE(4331), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4491), 2, - sym_expr_unary, - sym_val_bool, - STATE(5071), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 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, - [149914] = 4, + ACTIONS(5376), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(5378), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5380), 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, + [162880] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3927), 1, + STATE(4168), 1, sym_comment, - ACTIONS(5198), 6, + ACTIONS(5416), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5196), 24, + ACTIONS(5414), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -371019,56 +387696,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [149955] = 25, + [162921] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3928), 1, + STATE(4169), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4378), 1, + STATE(4768), 1, sym__binary_predicate_parenthesized, - STATE(4521), 1, + STATE(4769), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -371077,56 +387754,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [150038] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3929), 1, - sym_comment, - ACTIONS(5198), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5196), 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, - [150079] = 4, + [163004] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3930), 1, + STATE(4170), 1, sym_comment, - ACTIONS(5257), 6, + ACTIONS(2098), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5255), 24, + ACTIONS(2104), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -371151,56 +387791,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150120] = 25, + [163045] = 25, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6979), 1, sym__newline, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3931), 1, + STATE(4171), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4042), 1, + STATE(4296), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4457), 1, + STATE(4683), 1, sym__binary_predicate_parenthesized, - STATE(4477), 1, + STATE(4684), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -371209,208 +387849,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [150203] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3205), 1, - aux_sym_cmd_identifier_token41, - STATE(3932), 1, - sym_comment, - ACTIONS(3203), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3201), 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, - [150245] = 13, + [163128] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7201), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7213), 1, anon_sym_PLUS2, - STATE(3933), 1, + STATE(4172), 1, sym_comment, - ACTIONS(6891), 2, + ACTIONS(7199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7205), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6901), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6903), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7211), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7215), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6895), 4, + ACTIONS(7203), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, + ACTIONS(7207), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 7, - anon_sym_LBRACE, + ACTIONS(5426), 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, - [150303] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6915), 1, - aux_sym_cmd_identifier_token41, - STATE(3934), 1, - sym_comment, - ACTIONS(6913), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6911), 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, - [150345] = 6, + [163184] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3935), 1, - sym_comment, - STATE(5175), 1, - sym_redirection, - ACTIONS(6849), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6851), 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(6917), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [150389] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6923), 1, - aux_sym_cmd_identifier_token41, - STATE(3936), 1, + STATE(4173), 1, sym_comment, - ACTIONS(6921), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 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, - [150431] = 6, + ACTIONS(7217), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7219), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7221), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5426), 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, + [163230] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3937), 1, + STATE(4174), 1, sym_comment, - STATE(5084), 1, + STATE(5441), 1, sym_redirection, - ACTIONS(6925), 8, + ACTIONS(7159), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -371419,7 +387948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6927), 8, + ACTIONS(7161), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -371428,8 +387957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6875), 12, - ts_builtin_sym_end, + ACTIONS(7223), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371441,31 +387969,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, - [150475] = 10, + anon_sym_RPAREN, + [163274] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, - anon_sym_DASH2, - ACTIONS(6907), 1, - anon_sym_PLUS2, - STATE(3938), 1, + STATE(4175), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(7219), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5428), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6897), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6903), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5255), 17, + anon_sym_PLUS2, + ACTIONS(5426), 22, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -371480,372 +388000,350 @@ static const uint16_t ts_small_parse_table[] = { 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, - [150527] = 9, + [163316] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - STATE(3939), 1, - sym_comment, - ACTIONS(5257), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6931), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6933), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5255), 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, + ACTIONS(7239), 1, anon_sym_bit_DASHand2, + ACTIONS(7241), 1, anon_sym_bit_DASHxor2, + ACTIONS(7243), 1, anon_sym_bit_DASHor2, - [150577] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3940), 1, + STATE(4176), 1, sym_comment, - ACTIONS(6897), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6903), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5257), 3, + ACTIONS(7225), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5255), 20, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(7233), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7237), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5426), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(7229), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(7231), 4, anon_sym_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, - [150623] = 13, + [163380] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4177), 1, + sym_comment, + STATE(5328), 1, + sym_redirection, + ACTIONS(7245), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(7247), 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(7157), 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, + [163424] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - STATE(3941), 1, + ACTIONS(7239), 1, + anon_sym_bit_DASHand2, + ACTIONS(7241), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7243), 1, + anon_sym_bit_DASHor2, + ACTIONS(7249), 1, + anon_sym_and2, + STATE(4178), 1, sym_comment, - ACTIONS(6931), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6933), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, + ACTIONS(7225), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6945), 2, + ACTIONS(7233), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6947), 2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6941), 4, + ACTIONS(5426), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(7229), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6943), 4, + ACTIONS(7231), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 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, - [150681] = 14, + [163490] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - ACTIONS(6949), 1, - anon_sym_bit_DASHand2, - STATE(3942), 1, + STATE(4179), 1, sym_comment, - ACTIONS(6891), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6901), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6903), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7225), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7233), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6895), 4, + ACTIONS(7229), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, + ACTIONS(7231), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 6, + ACTIONS(5426), 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, - [150741] = 14, + [163548] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - ACTIONS(6951), 1, + ACTIONS(7239), 1, anon_sym_bit_DASHand2, - STATE(3943), 1, + STATE(4180), 1, sym_comment, - ACTIONS(6931), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6933), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, + ACTIONS(7225), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6945), 2, + ACTIONS(7233), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6947), 2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6941), 4, + ACTIONS(7229), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6943), 4, + ACTIONS(7231), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 6, - anon_sym_EQ_GT, + ACTIONS(5426), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [150801] = 15, + [163608] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - ACTIONS(6951), 1, + ACTIONS(7239), 1, anon_sym_bit_DASHand2, - ACTIONS(6953), 1, + ACTIONS(7241), 1, anon_sym_bit_DASHxor2, - STATE(3944), 1, + STATE(4181), 1, sym_comment, - ACTIONS(6931), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6933), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, + ACTIONS(7225), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6945), 2, + ACTIONS(7233), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6947), 2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6941), 4, + ACTIONS(7229), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6943), 4, + ACTIONS(7231), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 5, - anon_sym_EQ_GT, + ACTIONS(5426), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [150863] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3945), 1, - sym_comment, - STATE(5021), 1, - sym_redirection, - ACTIONS(6849), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6851), 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(6955), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [150907] = 15, + [163670] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - ACTIONS(6949), 1, + ACTIONS(7239), 1, anon_sym_bit_DASHand2, - ACTIONS(6957), 1, + ACTIONS(7241), 1, anon_sym_bit_DASHxor2, - STATE(3946), 1, + ACTIONS(7243), 1, + anon_sym_bit_DASHor2, + ACTIONS(7249), 1, + anon_sym_and2, + ACTIONS(7251), 1, + anon_sym_xor2, + STATE(4182), 1, sym_comment, - ACTIONS(6891), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(5426), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6901), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6903), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7225), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7233), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6895), 4, + ACTIONS(7229), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, + ACTIONS(7231), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [150969] = 5, + [163738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(3213), 1, aux_sym_cmd_identifier_token41, - STATE(3947), 1, + STATE(4183), 1, sym_comment, - ACTIONS(6961), 5, + ACTIONS(3211), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6959), 23, + ACTIONS(3209), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -371869,68 +388367,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151011] = 12, + [163780] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7201), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7213), 1, anon_sym_PLUS2, - STATE(3948), 1, + STATE(4184), 1, sym_comment, - ACTIONS(6931), 2, + ACTIONS(5428), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7205), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6933), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, + ACTIONS(7211), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6947), 2, + ACTIONS(7215), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6941), 4, + ACTIONS(5426), 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, + [163832] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4185), 1, + sym_comment, + ACTIONS(7205), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7209), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7211), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5428), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5426), 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, - ACTIONS(6943), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 9, + 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, + [163878] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7201), 1, + anon_sym_DASH2, + ACTIONS(7213), 1, + anon_sym_PLUS2, + STATE(4186), 1, + sym_comment, + ACTIONS(7199), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7205), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7209), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7211), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7215), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7207), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5426), 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, - [151067] = 5, + [163932] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3949), 1, + STATE(4187), 1, sym_comment, - ACTIONS(6903), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5257), 5, + ACTIONS(5428), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5255), 22, + ACTIONS(5426), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -371950,442 +388528,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [151109] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3950), 1, - sym_comment, - ACTIONS(5276), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5270), 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_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, - [151149] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6969), 1, - aux_sym_cmd_identifier_token41, - STATE(3951), 1, - sym_comment, - ACTIONS(6967), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6965), 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, - [151191] = 16, + [163974] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7201), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7213), 1, anon_sym_PLUS2, - ACTIONS(6949), 1, + ACTIONS(7255), 1, anon_sym_bit_DASHand2, - ACTIONS(6957), 1, + ACTIONS(7257), 1, anon_sym_bit_DASHxor2, - ACTIONS(6971), 1, + ACTIONS(7259), 1, anon_sym_bit_DASHor2, - STATE(3952), 1, + STATE(4188), 1, sym_comment, - ACTIONS(6891), 2, + ACTIONS(7199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7205), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6901), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6903), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7211), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7215), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5255), 4, - anon_sym_LBRACE, + ACTIONS(7253), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5426), 4, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6895), 4, + ACTIONS(7203), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, + ACTIONS(7207), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [151255] = 17, + [164038] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7201), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7213), 1, anon_sym_PLUS2, - ACTIONS(6949), 1, + ACTIONS(7255), 1, anon_sym_bit_DASHand2, - ACTIONS(6957), 1, + ACTIONS(7257), 1, anon_sym_bit_DASHxor2, - ACTIONS(6971), 1, + ACTIONS(7259), 1, anon_sym_bit_DASHor2, - ACTIONS(6973), 1, + ACTIONS(7261), 1, anon_sym_and2, - STATE(3953), 1, + STATE(4189), 1, sym_comment, - ACTIONS(6891), 2, + ACTIONS(7199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7205), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6901), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6903), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7211), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7215), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5255), 3, - anon_sym_LBRACE, + ACTIONS(7253), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5426), 3, + anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(6895), 4, + ACTIONS(7203), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, + ACTIONS(7207), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [151321] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3954), 1, - sym_comment, - STATE(5136), 1, - sym_redirection, - ACTIONS(6925), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6927), 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(6847), 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, - [151365] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6979), 1, - aux_sym_cmd_identifier_token41, - STATE(3955), 1, - sym_comment, - ACTIONS(6977), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6975), 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, - [151407] = 18, + [164104] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7201), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7213), 1, anon_sym_PLUS2, - ACTIONS(6949), 1, + ACTIONS(7255), 1, anon_sym_bit_DASHand2, - ACTIONS(6957), 1, + ACTIONS(7257), 1, anon_sym_bit_DASHxor2, - ACTIONS(6971), 1, + ACTIONS(7259), 1, anon_sym_bit_DASHor2, - ACTIONS(6973), 1, + ACTIONS(7261), 1, anon_sym_and2, - ACTIONS(6981), 1, + ACTIONS(7263), 1, anon_sym_xor2, - STATE(3956), 1, + STATE(4190), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_LBRACE, + ACTIONS(5426), 2, + anon_sym_EQ_GT, anon_sym_or2, - ACTIONS(6891), 2, + ACTIONS(7199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7205), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6901), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6903), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7211), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7215), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6895), 4, + ACTIONS(7253), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7203), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, + ACTIONS(7207), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [151475] = 10, + [164172] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - STATE(3957), 1, + STATE(4191), 1, sym_comment, - ACTIONS(5257), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6931), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6933), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6947), 2, + ACTIONS(7225), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5255), 17, + ACTIONS(7231), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5426), 13, anon_sym_in2, - anon_sym_EQ_GT, + 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, - [151527] = 12, + [164226] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7201), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7213), 1, anon_sym_PLUS2, - STATE(3958), 1, + STATE(4192), 1, sym_comment, - ACTIONS(6891), 2, + ACTIONS(7199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7205), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6903), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7211), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7215), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6895), 4, + ACTIONS(7253), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7203), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, + ACTIONS(7207), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 9, - anon_sym_LBRACE, + ACTIONS(5426), 7, + 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, - [151583] = 9, + [164284] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7201), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7213), 1, anon_sym_PLUS2, - STATE(3959), 1, + ACTIONS(7255), 1, + anon_sym_bit_DASHand2, + STATE(4193), 1, sym_comment, - ACTIONS(5257), 2, + ACTIONS(7199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7205), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6903), 2, + ACTIONS(7209), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7211), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5255), 19, + ACTIONS(7215), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7253), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7203), 4, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7207), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5426), 6, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [164344] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7201), 1, + anon_sym_DASH2, + ACTIONS(7213), 1, + anon_sym_PLUS2, + ACTIONS(7255), 1, + anon_sym_bit_DASHand2, + ACTIONS(7257), 1, + anon_sym_bit_DASHxor2, + STATE(4194), 1, + sym_comment, + ACTIONS(7199), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7205), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7209), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7211), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7215), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7253), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7203), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(7207), 4, anon_sym_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, + ACTIONS(5426), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [151633] = 5, + [164406] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7269), 1, + aux_sym_cmd_identifier_token41, + STATE(4195), 1, + sym_comment, + ACTIONS(7267), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7265), 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, + [164448] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3201), 1, + aux_sym_cmd_identifier_token41, + STATE(4196), 1, + sym_comment, + ACTIONS(3199), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3197), 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, + [164490] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7275), 1, + aux_sym_cmd_identifier_token41, + STATE(4197), 1, + sym_comment, + ACTIONS(7273), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7271), 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, + [164532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6987), 1, + ACTIONS(7281), 1, aux_sym_cmd_identifier_token41, - STATE(3960), 1, + STATE(4198), 1, sym_comment, - ACTIONS(6985), 5, + ACTIONS(7279), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6983), 23, + ACTIONS(7277), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -372409,102 +389004,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151675] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3961), 1, - sym_comment, - ACTIONS(6931), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6933), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5257), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5255), 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, - [151721] = 11, + [164574] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - STATE(3962), 1, + STATE(4199), 1, sym_comment, - ACTIONS(6931), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6933), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, + ACTIONS(7225), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6947), 2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6943), 4, + ACTIONS(7229), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7231), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5255), 13, - anon_sym_in2, - anon_sym_EQ_GT, + ACTIONS(5426), 9, + 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, - [151775] = 5, + [164630] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3211), 1, + ACTIONS(7287), 1, aux_sym_cmd_identifier_token41, - STATE(3963), 1, + STATE(4200), 1, sym_comment, - ACTIONS(3209), 5, + ACTIONS(7285), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 23, + ACTIONS(7283), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -372528,204 +389085,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [151817] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_comment, - ACTIONS(6933), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5257), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5255), 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, - [151859] = 16, + [164672] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6929), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6937), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - ACTIONS(6951), 1, - anon_sym_bit_DASHand2, - ACTIONS(6953), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6989), 1, - anon_sym_bit_DASHor2, - STATE(3965), 1, + STATE(4201), 1, sym_comment, - ACTIONS(6931), 2, + ACTIONS(5428), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6933), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6945), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6947), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5255), 4, - anon_sym_EQ_GT, + ACTIONS(5426), 19, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6941), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6943), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [151923] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DASH2, - ACTIONS(6937), 1, - anon_sym_PLUS2, - ACTIONS(6951), 1, - anon_sym_bit_DASHand2, - ACTIONS(6953), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6989), 1, - anon_sym_bit_DASHor2, - ACTIONS(6991), 1, - anon_sym_and2, - STATE(3966), 1, - sym_comment, - ACTIONS(6931), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6933), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6945), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6947), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5255), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6943), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151989] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DASH2, - ACTIONS(6937), 1, - anon_sym_PLUS2, - ACTIONS(6951), 1, anon_sym_bit_DASHand2, - ACTIONS(6953), 1, anon_sym_bit_DASHxor2, - ACTIONS(6989), 1, anon_sym_bit_DASHor2, - ACTIONS(6991), 1, - anon_sym_and2, - ACTIONS(6993), 1, - anon_sym_xor2, - STATE(3967), 1, + [164722] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7293), 1, + aux_sym_cmd_identifier_token41, + STATE(4202), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(6931), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6933), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6945), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6947), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6941), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6943), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [152057] = 5, + ACTIONS(7291), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7289), 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, + [164764] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6999), 1, + ACTIONS(7299), 1, aux_sym_cmd_identifier_token41, - STATE(3968), 1, + STATE(4203), 1, sym_comment, - ACTIONS(6997), 5, + ACTIONS(7297), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6995), 23, + ACTIONS(7295), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -372749,36 +389200,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [152099] = 11, + [164806] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6893), 1, + ACTIONS(7227), 1, anon_sym_DASH2, - ACTIONS(6907), 1, + ACTIONS(7235), 1, anon_sym_PLUS2, - STATE(3969), 1, + STATE(4204), 1, sym_comment, - ACTIONS(6891), 2, + ACTIONS(5428), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6897), 2, + ACTIONS(7217), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6903), 2, + ACTIONS(7219), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, + ACTIONS(7221), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, + ACTIONS(7237), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6899), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5255), 13, + ACTIONS(5426), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -372787,17 +389233,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, - [152153] = 4, + [164858] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3970), 1, + STATE(4205), 1, sym_comment, - ACTIONS(5235), 8, + STATE(5367), 1, + sym_redirection, + ACTIONS(7245), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -372806,7 +389258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 20, + ACTIONS(7247), 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(7181), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372819,6 +389280,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, + [164902] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4206), 1, + sym_comment, + STATE(5447), 1, + sym_redirection, + ACTIONS(7159), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(7161), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -372827,52 +389305,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, - [152192] = 23, + ACTIONS(7301), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [164946] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7201), 1, + anon_sym_DASH2, + ACTIONS(7213), 1, + anon_sym_PLUS2, + STATE(4207), 1, + sym_comment, + ACTIONS(5428), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7205), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7209), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7211), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5426), 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, + [164996] = 23, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3971), 1, + STATE(4208), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4431), 1, + STATE(4731), 1, sym__binary_predicate, - STATE(4432), 1, + STATE(4732), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -372881,101 +389413,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152269] = 18, + [165073] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, + ACTIONS(5675), 1, anon_sym_DASH2, - ACTIONS(6398), 1, + ACTIONS(5689), 1, anon_sym_PLUS2, - ACTIONS(6410), 1, + ACTIONS(5693), 1, anon_sym_bit_DASHand2, - ACTIONS(6412), 1, + ACTIONS(5695), 1, anon_sym_bit_DASHxor2, - ACTIONS(6414), 1, + ACTIONS(5697), 1, anon_sym_bit_DASHor2, - ACTIONS(6416), 1, + ACTIONS(5711), 1, anon_sym_and2, - ACTIONS(6418), 1, + ACTIONS(5713), 1, anon_sym_xor2, - ACTIONS(7001), 1, + ACTIONS(7303), 1, anon_sym_or2, - STATE(3972), 1, + STATE(4209), 1, sym_comment, - ACTIONS(6392), 2, + ACTIONS(5673), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5679), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6394), 2, + ACTIONS(5683), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5685), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6396), 2, + ACTIONS(5687), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6400), 2, + ACTIONS(5691), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6402), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6408), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6404), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6406), 4, + ACTIONS(5677), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [152336] = 23, + ACTIONS(5681), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [165140] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(3973), 1, + STATE(4210), 1, sym_comment, - STATE(3985), 1, + STATE(4228), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4435), 1, + STATE(4837), 1, sym__binary_predicate, - STATE(4436), 1, + STATE(4842), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4829), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5478), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -372984,52 +389516,199 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152413] = 23, + [165217] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7149), 1, + anon_sym_PLUS2, + ACTIONS(7179), 1, + anon_sym_bit_DASHand2, + ACTIONS(7183), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7185), 1, + anon_sym_and2, + ACTIONS(7187), 1, + anon_sym_xor2, + ACTIONS(7189), 1, + anon_sym_bit_DASHor2, + ACTIONS(7305), 1, + anon_sym_DASH2, + ACTIONS(7307), 1, + anon_sym_or2, + STATE(4211), 1, + sym_comment, + ACTIONS(7151), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7153), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7155), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7165), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7171), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7173), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7167), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7169), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [165284] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6541), 1, + anon_sym_DASH2, + ACTIONS(6549), 1, + anon_sym_PLUS2, + ACTIONS(6561), 1, + anon_sym_bit_DASHand2, + ACTIONS(6563), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6565), 1, + anon_sym_bit_DASHor2, + ACTIONS(6567), 1, + anon_sym_and2, + ACTIONS(6569), 1, + anon_sym_xor2, + ACTIONS(7309), 1, + anon_sym_or2, + STATE(4212), 1, + sym_comment, + ACTIONS(6543), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6545), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6547), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6551), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6553), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6559), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6555), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6557), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [165351] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7201), 1, + anon_sym_DASH2, + ACTIONS(7213), 1, + anon_sym_PLUS2, + ACTIONS(7255), 1, + anon_sym_bit_DASHand2, + ACTIONS(7257), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7259), 1, + anon_sym_bit_DASHor2, + ACTIONS(7261), 1, + anon_sym_and2, + ACTIONS(7263), 1, + anon_sym_xor2, + ACTIONS(7311), 1, + anon_sym_or2, + STATE(4213), 1, + sym_comment, + ACTIONS(7199), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7205), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7209), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7211), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7215), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7253), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7203), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7207), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [165418] = 23, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3974), 1, + STATE(4214), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4437), 1, + STATE(4733), 1, sym__binary_predicate, - STATE(4438), 1, + STATE(4734), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373038,52 +389717,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152490] = 23, + [165495] = 23, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3975), 1, + STATE(4215), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4440), 1, + STATE(4751), 1, sym__binary_predicate, - STATE(4441), 1, + STATE(4752), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373092,136 +389771,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152567] = 18, + [165572] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5441), 1, + ACTIONS(6622), 1, anon_sym_DASH2, - ACTIONS(5449), 1, + ACTIONS(6630), 1, anon_sym_PLUS2, - ACTIONS(5461), 1, + ACTIONS(6642), 1, anon_sym_bit_DASHand2, - ACTIONS(5463), 1, + ACTIONS(6644), 1, anon_sym_bit_DASHxor2, - ACTIONS(5465), 1, + ACTIONS(6646), 1, anon_sym_bit_DASHor2, - ACTIONS(5467), 1, + ACTIONS(6648), 1, anon_sym_and2, - ACTIONS(5469), 1, + ACTIONS(6650), 1, anon_sym_xor2, - ACTIONS(7003), 1, + ACTIONS(7313), 1, anon_sym_or2, - STATE(3976), 1, + STATE(4216), 1, sym_comment, - ACTIONS(5443), 2, + ACTIONS(6624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5445), 2, + ACTIONS(6626), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5447), 2, + ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5451), 2, + ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5453), 2, + ACTIONS(6634), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5459), 2, + ACTIONS(6640), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5455), 4, + ACTIONS(6636), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5457), 4, + ACTIONS(6638), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [152634] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3977), 1, - sym_comment, - ACTIONS(2278), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2280), 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, - [152673] = 23, + [165639] = 23, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(389), 1, anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6981), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3978), 1, + STATE(4217), 1, sym_comment, - STATE(3985), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4442), 1, + STATE(4729), 1, sym__binary_predicate, - STATE(4443), 1, + STATE(4730), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373230,234 +389874,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [152750] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3979), 1, - sym_comment, - ACTIONS(1828), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1836), 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, - [152789] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6861), 1, - anon_sym_PLUS2, - ACTIONS(6871), 1, - anon_sym_bit_DASHand2, - ACTIONS(6873), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6879), 1, - anon_sym_bit_DASHor2, - ACTIONS(6885), 1, - anon_sym_and2, - ACTIONS(6889), 1, - anon_sym_xor2, - ACTIONS(7005), 1, - anon_sym_DASH2, - ACTIONS(7007), 1, - anon_sym_or2, - STATE(3980), 1, - sym_comment, - ACTIONS(6841), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6865), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6869), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6863), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6867), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [152856] = 18, + [165716] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6293), 1, + ACTIONS(5604), 1, anon_sym_DASH2, - ACTIONS(6301), 1, + ACTIONS(5612), 1, anon_sym_PLUS2, - ACTIONS(6313), 1, + ACTIONS(5624), 1, anon_sym_bit_DASHand2, - ACTIONS(6315), 1, + ACTIONS(5626), 1, anon_sym_bit_DASHxor2, - ACTIONS(6317), 1, + ACTIONS(5628), 1, anon_sym_bit_DASHor2, - ACTIONS(6319), 1, + ACTIONS(5630), 1, anon_sym_and2, - ACTIONS(6321), 1, + ACTIONS(5632), 1, anon_sym_xor2, - ACTIONS(7009), 1, + ACTIONS(7315), 1, anon_sym_or2, - STATE(3981), 1, + STATE(4218), 1, sym_comment, - ACTIONS(6295), 2, + ACTIONS(5606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6297), 2, + ACTIONS(5608), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6299), 2, + ACTIONS(5610), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6303), 2, + ACTIONS(5614), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6305), 2, + ACTIONS(5616), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6311), 2, + ACTIONS(5622), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6307), 4, + ACTIONS(5618), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6309), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [152923] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6929), 1, - anon_sym_DASH2, - ACTIONS(6937), 1, - anon_sym_PLUS2, - ACTIONS(6951), 1, - anon_sym_bit_DASHand2, - ACTIONS(6953), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6989), 1, - anon_sym_bit_DASHor2, - ACTIONS(6991), 1, - anon_sym_and2, - ACTIONS(6993), 1, - anon_sym_xor2, - ACTIONS(7011), 1, - anon_sym_or2, - STATE(3982), 1, - sym_comment, - ACTIONS(6931), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6933), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6935), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6939), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6945), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6947), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6941), 4, + ACTIONS(5620), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6943), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [152990] = 23, + [165783] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3551), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2484), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(3983), 1, + STATE(4219), 1, sym_comment, - STATE(3996), 1, + STATE(4228), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4608), 1, + STATE(4811), 1, sym__binary_predicate, - STATE(4611), 1, + STATE(4818), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4571), 2, + STATE(4829), 2, sym_expr_unary, sym_val_bool, - STATE(5057), 2, + STATE(5478), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373466,125 +389977,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153067] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3984), 1, - sym_comment, - ACTIONS(2239), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2243), 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, - [153106] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3985), 1, - sym_comment, - ACTIONS(7015), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7021), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7017), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7019), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(7013), 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, - [153151] = 23, + [165860] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3551), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2484), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(3986), 1, + STATE(4220), 1, sym_comment, - STATE(3996), 1, + STATE(4228), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4613), 1, - sym__binary_predicate, - STATE(4618), 1, + STATE(4791), 1, sym__predicate, + STATE(4882), 1, + sym__binary_predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4571), 2, + STATE(4829), 2, sym_expr_unary, sym_val_bool, - STATE(5057), 2, + STATE(5478), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373593,52 +390031,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153228] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, + [165937] = 23, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3551), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2484), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3987), 1, + STATE(4221), 1, sym_comment, - STATE(3996), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4574), 1, - sym__predicate, - STATE(4622), 1, + STATE(4735), 1, sym__binary_predicate, - ACTIONS(89), 2, + STATE(4736), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4571), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5057), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373647,87 +390085,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153305] = 4, + [166014] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(3988), 1, + ACTIONS(7227), 1, + anon_sym_DASH2, + ACTIONS(7235), 1, + anon_sym_PLUS2, + ACTIONS(7239), 1, + anon_sym_bit_DASHand2, + ACTIONS(7241), 1, + anon_sym_bit_DASHxor2, + ACTIONS(7243), 1, + anon_sym_bit_DASHor2, + ACTIONS(7249), 1, + anon_sym_and2, + ACTIONS(7251), 1, + anon_sym_xor2, + ACTIONS(7317), 1, + anon_sym_or2, + STATE(4222), 1, sym_comment, - ACTIONS(2229), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2233), 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, - [153344] = 23, + ACTIONS(7217), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(7219), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(7221), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(7225), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7233), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7237), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(7229), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7231), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [166081] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3551), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2484), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(3989), 1, + STATE(4223), 1, sym_comment, - STATE(3996), 1, + STATE(4228), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4525), 1, + STATE(4796), 1, sym__binary_predicate, - STATE(4527), 1, + STATE(4797), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4571), 2, + STATE(4829), 2, sym_expr_unary, sym_val_bool, - STATE(5057), 2, + STATE(5478), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373736,136 +390188,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153421] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - anon_sym_DASH2, - ACTIONS(5524), 1, - anon_sym_PLUS2, - ACTIONS(5528), 1, - anon_sym_bit_DASHand2, - ACTIONS(5530), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5532), 1, - anon_sym_bit_DASHor2, - ACTIONS(5540), 1, - anon_sym_and2, - ACTIONS(5556), 1, - anon_sym_xor2, - ACTIONS(7023), 1, - anon_sym_or2, - STATE(3990), 1, - sym_comment, - ACTIONS(5508), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5510), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5516), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5520), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5522), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5526), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5514), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5518), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [153488] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3991), 1, - sym_comment, - ACTIONS(1843), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1851), 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, - [153527] = 23, + [166158] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3551), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2484), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(3992), 1, + STATE(4224), 1, sym_comment, - STATE(3996), 1, + STATE(4228), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4573), 1, sym_val_number, - STATE(4545), 1, + STATE(4821), 1, sym__binary_predicate, - STATE(4549), 1, + STATE(4822), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4571), 2, + STATE(4829), 2, sym_expr_unary, sym_val_bool, - STATE(5057), 2, + STATE(5478), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373874,52 +390242,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153604] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, + [166235] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4225), 1, + sym_comment, + ACTIONS(7321), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7327), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7323), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7325), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(7319), 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, + [166280] = 23, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(389), 1, + anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3551), 1, + ACTIONS(3549), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(6661), 1, + ACTIONS(6977), 1, sym_identifier, - ACTIONS(6667), 1, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2484), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(3993), 1, - sym_comment, - STATE(3996), 1, + STATE(4225), 1, sym_expr_parenthesized, - STATE(4283), 1, + STATE(4226), 1, + sym_comment, + STATE(4573), 1, sym_val_number, - STATE(4531), 1, - sym__predicate, - STATE(4596), 1, + STATE(4737), 1, sym__binary_predicate, - ACTIONS(89), 2, + STATE(4750), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4571), 2, + STATE(4638), 2, sym_expr_unary, sym_val_bool, - STATE(5057), 2, + STATE(5387), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -373928,101 +390334,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153681] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6893), 1, + [166357] = 23, + ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(6907), 1, - anon_sym_PLUS2, - ACTIONS(6949), 1, - anon_sym_bit_DASHand2, - ACTIONS(6957), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6971), 1, - anon_sym_bit_DASHor2, - ACTIONS(6973), 1, - anon_sym_and2, - ACTIONS(6981), 1, - anon_sym_xor2, - ACTIONS(7025), 1, - anon_sym_or2, - STATE(3994), 1, - sym_comment, - ACTIONS(6891), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6897), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6901), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6903), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6905), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6909), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6895), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6899), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [153748] = 23, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, ACTIONS(431), 1, aux_sym__val_number_token5, - ACTIONS(3525), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(6661), 1, - sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6977), 1, + sym_identifier, + ACTIONS(6983), 1, anon_sym_DOLLAR, - ACTIONS(6671), 1, + ACTIONS(6987), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6673), 1, + ACTIONS(6989), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6675), 1, + ACTIONS(6991), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6677), 1, + ACTIONS(6993), 1, aux_sym__val_number_decimal_token4, - STATE(1849), 1, + STATE(1805), 1, sym__val_number_decimal, - STATE(1850), 1, + STATE(1860), 1, sym__val_number, - STATE(2120), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(3985), 1, - sym_expr_parenthesized, - STATE(3995), 1, + STATE(4227), 1, sym_comment, - STATE(4283), 1, + STATE(4228), 1, + sym_expr_parenthesized, + STATE(4573), 1, sym_val_number, - STATE(4428), 1, + STATE(4806), 1, sym__binary_predicate, - STATE(4429), 1, + STATE(4809), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4491), 2, + STATE(4829), 2, sym_expr_unary, sym_val_bool, - STATE(5071), 2, + STATE(5478), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(433), 5, @@ -374031,28 +390388,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [153825] = 7, + [166434] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3996), 1, + STATE(4228), 1, sym_comment, - ACTIONS(7027), 2, + ACTIONS(7329), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7033), 2, + ACTIONS(7335), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(7029), 4, + ACTIONS(7331), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(7031), 4, + ACTIONS(7333), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(7013), 15, + ACTIONS(7319), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374068,32 +390425,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153869] = 12, + [166478] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(6221), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(7035), 1, + ACTIONS(7337), 1, + anon_sym_DOLLAR, + ACTIONS(7339), 1, anon_sym_DOT, - ACTIONS(7039), 1, + ACTIONS(7343), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7041), 1, + ACTIONS(7345), 1, aux_sym__immediate_decimal_token5, - STATE(3997), 1, + STATE(4229), 1, sym_comment, - STATE(4056), 1, + STATE(4317), 1, sym__immediate_decimal, - ACTIONS(7037), 2, + ACTIONS(7341), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3516), 2, + STATE(4362), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 16, + ACTIONS(1579), 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, + [166532] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4230), 1, + sym_comment, + ACTIONS(1052), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1054), 25, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374105,37 +390488,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, + 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, - [153923] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166570] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1659), 1, aux_sym_unquoted_token2, - ACTIONS(6339), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(7347), 1, anon_sym_DOLLAR, - ACTIONS(6341), 1, + ACTIONS(7351), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7353), 1, + aux_sym__immediate_decimal_token5, + STATE(4231), 1, + sym_comment, + STATE(4409), 1, + sym__immediate_decimal, + ACTIONS(7349), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1657), 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, + [166621] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(7043), 1, + ACTIONS(7355), 1, + anon_sym_DOLLAR, + ACTIONS(7357), 1, anon_sym_DOT, - ACTIONS(7047), 1, + ACTIONS(7361), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7049), 1, + ACTIONS(7363), 1, aux_sym__immediate_decimal_token5, - STATE(3998), 1, + STATE(4232), 1, sym_comment, - STATE(4097), 1, + STATE(4356), 1, sym__immediate_decimal, - ACTIONS(7045), 2, + ACTIONS(7359), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3568), 2, + STATE(4477), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 15, + ACTIONS(1579), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374151,30 +390582,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153976] = 11, + [166674] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - ACTIONS(7053), 1, + ACTIONS(4706), 1, + anon_sym_DOT, + ACTIONS(4710), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, + ACTIONS(4712), 1, aux_sym__immediate_decimal_token5, - STATE(3999), 1, + ACTIONS(7337), 1, + anon_sym_DOLLAR, + STATE(4233), 1, sym_comment, - STATE(4200), 1, + STATE(4393), 1, sym__immediate_decimal, - ACTIONS(7051), 2, + ACTIONS(4708), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3440), 2, + STATE(4392), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 16, + ACTIONS(1643), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374191,30 +390622,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154027] = 11, + [166725] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6331), 1, + ACTIONS(7347), 1, anon_sym_DOLLAR, - ACTIONS(7053), 1, + ACTIONS(7351), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, + ACTIONS(7353), 1, aux_sym__immediate_decimal_token5, - STATE(4000), 1, + STATE(4234), 1, sym_comment, - STATE(4219), 1, + STATE(4476), 1, sym__immediate_decimal, - ACTIONS(7051), 2, + ACTIONS(7349), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3444), 2, + STATE(2123), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 16, + ACTIONS(1579), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374231,30 +390662,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154078] = 11, + [166776] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4710), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4712), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7347), 1, + anon_sym_DOLLAR, + STATE(2158), 1, + sym__immediate_decimal, + STATE(4235), 1, + sym_comment, + ACTIONS(4778), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2097), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1745), 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, + [166824] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + sym__space, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(6341), 1, + ACTIONS(1977), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, anon_sym_LPAREN2, - ACTIONS(6386), 1, + ACTIONS(7367), 1, + anon_sym_DOT, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7371), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + STATE(4236), 1, + sym_comment, + STATE(4378), 1, + sym__immediate_decimal, + STATE(4555), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 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, + [166880] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4710), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4712), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7347), 1, anon_sym_DOLLAR, - ACTIONS(7059), 1, + STATE(2140), 1, + sym__immediate_decimal, + STATE(4237), 1, + sym_comment, + ACTIONS(4778), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2138), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1741), 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, + [166928] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4710), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7061), 1, + ACTIONS(4712), 1, aux_sym__immediate_decimal_token5, - STATE(4001), 1, + ACTIONS(7347), 1, + anon_sym_DOLLAR, + STATE(2091), 1, + sym__immediate_decimal, + STATE(4238), 1, sym_comment, - STATE(4230), 1, + ACTIONS(4778), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2080), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 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, + [166976] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4710), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4712), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7347), 1, + anon_sym_DOLLAR, + STATE(2093), 1, sym__immediate_decimal, - ACTIONS(7057), 2, + STATE(4239), 1, + sym_comment, + ACTIONS(4778), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2090), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 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, + [167024] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4837), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4839), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(7355), 1, + anon_sym_DOLLAR, + STATE(4240), 1, + sym_comment, + STATE(4401), 1, + sym__immediate_decimal, + ACTIONS(4835), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3759), 2, + STATE(4475), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 15, + ACTIONS(1643), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374270,19 +390895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154128] = 6, + [167074] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7063), 1, + ACTIONS(7377), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7065), 1, + ACTIONS(7379), 1, aux_sym__immediate_decimal_token2, - STATE(4002), 1, + STATE(4241), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 21, + ACTIONS(1663), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374304,30 +390929,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154168] = 11, + [167114] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(6341), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(6386), 1, + ACTIONS(6722), 1, anon_sym_DOLLAR, - ACTIONS(7059), 1, + ACTIONS(7383), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7061), 1, + ACTIONS(7385), 1, aux_sym__immediate_decimal_token5, - STATE(4003), 1, + STATE(4242), 1, sym_comment, - STATE(4307), 1, + STATE(4564), 1, sym__immediate_decimal, - ACTIONS(7057), 2, + ACTIONS(7381), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3818), 2, + STATE(2611), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 15, + ACTIONS(1579), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374343,35 +390968,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154218] = 14, - ACTIONS(3), 1, + [167164] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1603), 1, - sym__space, - ACTIONS(1605), 1, + ACTIONS(7387), 1, + anon_sym_DOT, + ACTIONS(7389), 1, + aux_sym__immediate_decimal_token2, + STATE(4243), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1981), 1, - anon_sym_DOLLAR, - ACTIONS(7067), 1, + ACTIONS(1671), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(7069), 1, - anon_sym_DOT, - ACTIONS(7071), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [167204] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + ACTIONS(7383), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7385), 1, + aux_sym__immediate_decimal_token5, + STATE(4244), 1, + sym_comment, + STATE(4515), 1, + sym__immediate_decimal, + ACTIONS(7381), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7073), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7075), 1, + STATE(2655), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1657), 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, + [167254] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4837), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7077), 1, + ACTIONS(4839), 1, aux_sym__immediate_decimal_token5, - STATE(4004), 1, - sym_comment, - STATE(4114), 1, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(2647), 1, sym__immediate_decimal, - STATE(4251), 2, + STATE(4245), 1, + sym_comment, + ACTIONS(4889), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2639), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1589), 13, + ACTIONS(1745), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374383,21 +391075,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [154274] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [167301] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7079), 1, - anon_sym_DOT, - ACTIONS(7081), 1, + ACTIONS(7391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7393), 1, aux_sym__immediate_decimal_token2, - STATE(4005), 1, + STATE(4246), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1661), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 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_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [167340] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7395), 1, + aux_sym__immediate_decimal_token2, + STATE(4247), 1, + sym_comment, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 21, + ACTIONS(1713), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374419,17 +391143,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154314] = 5, + [167377] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(2145), 1, + anon_sym_DOLLAR, + ACTIONS(7397), 1, + anon_sym_LPAREN2, + ACTIONS(7399), 1, + anon_sym_DOT, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7403), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7405), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7407), 1, + aux_sym__immediate_decimal_token5, + STATE(4248), 1, + sym_comment, + STATE(4466), 1, + sym__immediate_decimal, + ACTIONS(1579), 2, + ts_builtin_sym_end, + sym__space, + STATE(4650), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1565), 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, + [167432] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1643), 1, + sym__space, + ACTIONS(1977), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7371), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7409), 1, + anon_sym_DOT, + STATE(4249), 1, + sym_comment, + STATE(4516), 1, + sym__immediate_decimal, + STATE(4528), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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, + [167485] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7083), 1, + ACTIONS(7389), 1, aux_sym__immediate_decimal_token2, - STATE(4006), 1, + STATE(4250), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 21, + ACTIONS(1671), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374451,19 +391256,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154351] = 6, + [167522] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7085), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + ACTIONS(7411), 1, + anon_sym_DOT_DOT2, + ACTIONS(7415), 1, + sym_filesize_unit, + ACTIONS(7417), 1, + sym_duration_unit, + STATE(4251), 1, + sym_comment, + STATE(8201), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7413), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 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, + [167569] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4837), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4839), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(2672), 1, + sym__immediate_decimal, + STATE(4252), 1, + sym_comment, + ACTIONS(4889), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7087), 1, + aux_sym__immediate_decimal_token3, + STATE(2650), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 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, + [167616] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4837), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4839), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(2598), 1, + sym__immediate_decimal, + STATE(4253), 1, + sym_comment, + ACTIONS(4889), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2594), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 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, + [167663] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4837), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4839), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(2613), 1, + sym__immediate_decimal, + STATE(4254), 1, + sym_comment, + ACTIONS(4889), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2604), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1741), 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, + [167710] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1657), 1, + sym__space, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7421), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7425), 1, + aux_sym__immediate_decimal_token5, + STATE(4255), 1, + sym_comment, + STATE(4702), 1, + sym__immediate_decimal, + STATE(5053), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1645), 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, + [167763] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7427), 1, + anon_sym_DOT, + ACTIONS(7429), 1, aux_sym__immediate_decimal_token2, - STATE(4007), 1, + STATE(4256), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 20, + ACTIONS(1671), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374484,36 +391477,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154390] = 14, + [167802] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1579), 1, + sym__space, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(2122), 1, + ACTIONS(4415), 1, anon_sym_DOLLAR, - ACTIONS(7089), 1, + ACTIONS(7365), 1, anon_sym_LPAREN2, - ACTIONS(7091), 1, - anon_sym_DOT, - ACTIONS(7093), 1, + ACTIONS(7419), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7095), 1, + ACTIONS(7421), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7097), 1, + ACTIONS(7423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7099), 1, + ACTIONS(7425), 1, aux_sym__immediate_decimal_token5, - STATE(4008), 1, + STATE(4257), 1, sym_comment, - STATE(4171), 1, + STATE(4653), 1, sym__immediate_decimal, - ACTIONS(1603), 2, - ts_builtin_sym_end, - sym__space, - STATE(4500), 2, + STATE(4990), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1589), 11, + ACTIONS(1565), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374525,17 +391515,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, - [154445] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167855] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7081), 1, + STATE(4258), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [167889] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7431), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7433), 1, aux_sym__immediate_decimal_token2, - STATE(4009), 1, + STATE(4259), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1771), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 21, + ACTIONS(1773), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374555,35 +391579,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [167927] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7435), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7437), 1, + aux_sym__immediate_decimal_token2, + STATE(4260), 1, + sym_comment, + ACTIONS(1663), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154482] = 13, + ACTIONS(1661), 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, + [167965] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1643), 1, sym__space, - ACTIONS(1981), 1, + ACTIONS(4415), 1, anon_sym_DOLLAR, - ACTIONS(7067), 1, + ACTIONS(7365), 1, anon_sym_LPAREN2, - ACTIONS(7071), 1, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7439), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7073), 1, + ACTIONS(7441), 1, + aux_sym__immediate_decimal_token3, + STATE(4261), 1, + sym_comment, + STATE(4982), 1, + sym__immediate_decimal, + STATE(4981), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 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, + [168015] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_DOLLAR, + ACTIONS(7397), 1, + anon_sym_LPAREN2, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7403), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7075), 1, + ACTIONS(7405), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7077), 1, + ACTIONS(7407), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7101), 1, + ACTIONS(7443), 1, anon_sym_DOT, - STATE(4010), 1, + STATE(4262), 1, sym_comment, - STATE(4250), 1, + STATE(4649), 1, sym__immediate_decimal, - STATE(4249), 2, + ACTIONS(1643), 2, + ts_builtin_sym_end, + sym__space, + STATE(4648), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1663), 13, + ACTIONS(1633), 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, + [168067] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1685), 1, + sym__space, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7439), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7441), 1, + aux_sym__immediate_decimal_token3, + STATE(4263), 1, + sym_comment, + STATE(5047), 1, + sym__immediate_decimal, + STATE(4885), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374597,33 +391726,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154535] = 13, + [168117] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(1679), 1, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(4351), 1, + ACTIONS(4379), 1, anon_sym_DOLLAR, - ACTIONS(7067), 1, + ACTIONS(7397), 1, anon_sym_LPAREN2, - ACTIONS(7103), 1, + ACTIONS(7445), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7105), 1, + ACTIONS(7447), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7107), 1, + ACTIONS(7449), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7109), 1, + ACTIONS(7451), 1, aux_sym__immediate_decimal_token5, - STATE(4011), 1, + STATE(4264), 1, sym_comment, - STATE(4421), 1, + STATE(4789), 1, sym__immediate_decimal, - STATE(4655), 2, + ACTIONS(1579), 2, + ts_builtin_sym_end, + sym__space, + STATE(5188), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 13, + ACTIONS(1565), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374635,29 +391765,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, - [154588] = 10, + [168169] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(7111), 1, - anon_sym_DOT_DOT2, - ACTIONS(7115), 1, - sym_filesize_unit, - ACTIONS(7117), 1, - sym_duration_unit, - STATE(4012), 1, + STATE(4265), 1, sym_comment, - STATE(7710), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7113), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 16, + ACTIONS(1767), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1769), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374674,33 +391790,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154635] = 13, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [168203] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1603), 1, + ACTIONS(1745), 1, sym__space, - ACTIONS(1605), 1, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7439), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7441), 1, + aux_sym__immediate_decimal_token3, + STATE(4266), 1, + sym_comment, + STATE(5051), 1, + sym__immediate_decimal, + STATE(5050), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1743), 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, + [168253] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, aux_sym_unquoted_token2, - ACTIONS(4351), 1, + ACTIONS(4379), 1, anon_sym_DOLLAR, - ACTIONS(7067), 1, + ACTIONS(7397), 1, anon_sym_LPAREN2, - ACTIONS(7103), 1, + ACTIONS(7445), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7105), 1, + ACTIONS(7447), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7107), 1, + ACTIONS(7449), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7109), 1, + ACTIONS(7451), 1, aux_sym__immediate_decimal_token5, - STATE(4013), 1, + STATE(4267), 1, sym_comment, - STATE(4319), 1, + STATE(4858), 1, sym__immediate_decimal, - STATE(4778), 2, + ACTIONS(1657), 2, + ts_builtin_sym_end, + sym__space, + STATE(5099), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1589), 13, + ACTIONS(1645), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374712,22 +391872,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, - [154688] = 6, + [168305] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7119), 1, - anon_sym_DOT, - ACTIONS(7121), 1, - aux_sym__immediate_decimal_token2, - STATE(4014), 1, + STATE(4268), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 20, - ts_builtin_sym_end, + ACTIONS(1713), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374739,6 +391892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -374747,22 +391902,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [154727] = 8, + [168339] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7453), 1, + anon_sym_DOT, + ACTIONS(7455), 1, + aux_sym__immediate_decimal_token2, + STATE(4269), 1, + sym_comment, + ACTIONS(1671), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1669), 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, + [168377] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1741), 1, + sym__space, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7439), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7441), 1, + aux_sym__immediate_decimal_token3, + STATE(4270), 1, + sym_comment, + STATE(5049), 1, + sym__immediate_decimal, + STATE(5048), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1739), 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, + [168427] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1777), 1, + ACTIONS(969), 1, anon_sym_DOT_DOT2, - ACTIONS(6420), 1, + ACTIONS(7457), 1, anon_sym_DOT, - STATE(1590), 1, + STATE(1643), 1, sym_path, - STATE(1702), 1, + STATE(4230), 1, sym_cell_path, - STATE(3392), 1, - aux_sym_cell_path_repeat1, - STATE(4015), 1, + STATE(4271), 1, sym_comment, - ACTIONS(1779), 18, + STATE(4298), 1, + aux_sym_cell_path_repeat1, + ACTIONS(971), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374781,23 +392006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154769] = 6, - ACTIONS(3), 1, + [168469] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7123), 1, - anon_sym_DOT, - ACTIONS(7125), 1, - aux_sym__immediate_decimal_token2, - STATE(4016), 1, + STATE(4272), 1, sym_comment, - ACTIONS(1647), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1645), 15, + ACTIONS(1661), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374811,24 +392028,26 @@ 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, - [154807] = 8, + 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, + [168503] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - anon_sym_DOT_DOT2, - ACTIONS(6420), 1, - anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(1682), 1, - sym_cell_path, - STATE(3392), 1, - aux_sym_cell_path_repeat1, - STATE(4017), 1, + ACTIONS(7429), 1, + aux_sym__immediate_decimal_token2, + STATE(4273), 1, sym_comment, - ACTIONS(1775), 18, + ACTIONS(1669), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374840,34 +392059,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154849] = 10, + sym_filesize_unit, + sym_duration_unit, + [168539] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(4922), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - ACTIONS(7127), 1, + ACTIONS(7459), 1, anon_sym_DOT_DOT2, - ACTIONS(7131), 1, + ACTIONS(7463), 1, sym_filesize_unit, - ACTIONS(7133), 1, + ACTIONS(7465), 1, sym_duration_unit, - STATE(4018), 1, + STATE(4274), 1, sym_comment, - STATE(7577), 1, + STATE(8150), 1, sym__expr_parenthesized_immediate, - ACTIONS(7129), 2, + ACTIONS(7461), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 15, + ACTIONS(1699), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374883,15 +392103,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154895] = 4, + [168585] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4019), 1, - sym_comment, - ACTIONS(1645), 2, + ACTIONS(1757), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 21, + ACTIONS(7457), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(1738), 1, + sym_cell_path, + STATE(4275), 1, + sym_comment, + STATE(4298), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1761), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374908,36 +392135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [154929] = 12, - ACTIONS(3), 1, + [168627] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1739), 1, - sym__space, - ACTIONS(4351), 1, - anon_sym_DOLLAR, - ACTIONS(7067), 1, - anon_sym_LPAREN2, - ACTIONS(7075), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7135), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token3, - STATE(4020), 1, + ACTIONS(1763), 1, + anon_sym_DOT_DOT2, + ACTIONS(7457), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(1742), 1, + sym_cell_path, + STATE(4276), 1, sym_comment, - STATE(4650), 1, - sym__immediate_decimal, - STATE(4649), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1737), 13, + STATE(4298), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1765), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374951,19 +392166,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154979] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168669] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7139), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7141), 1, + ACTIONS(7467), 1, + anon_sym_DOT, + ACTIONS(7469), 1, aux_sym__immediate_decimal_token2, - STATE(4021), 1, + STATE(4277), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1795), 19, + ACTIONS(1781), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374983,17 +392203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155017] = 5, + [168707] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7471), 1, aux_sym__immediate_decimal_token2, - STATE(4022), 1, + STATE(4278), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 20, + ACTIONS(1713), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375014,15 +392234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155053] = 4, + [168743] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4023), 1, + STATE(4279), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1767), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 21, + ACTIONS(1769), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375034,8 +392255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -375044,23 +392263,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155087] = 6, + [168776] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7143), 1, + ACTIONS(7473), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7145), 1, + ACTIONS(7475), 1, aux_sym__immediate_decimal_token2, - STATE(4024), 1, + STATE(4280), 1, sym_comment, - ACTIONS(1639), 6, + ACTIONS(1663), 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(1637), 15, + ACTIONS(1661), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375072,60 +392292,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, - [155125] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1743), 1, - sym__space, - ACTIONS(4351), 1, - anon_sym_DOLLAR, - ACTIONS(7067), 1, - anon_sym_LPAREN2, - ACTIONS(7075), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7135), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token3, - STATE(4025), 1, - sym_comment, - STATE(4652), 1, - sym__immediate_decimal, - STATE(4651), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 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, - [155175] = 5, + [168813] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7147), 1, + ACTIONS(7469), 1, aux_sym__immediate_decimal_token2, - STATE(4026), 1, + STATE(4281), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 20, - ts_builtin_sym_end, + ACTIONS(1781), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375137,42 +392316,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_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, - [155211] = 13, - ACTIONS(3), 1, + [168848] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(4315), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, - anon_sym_LPAREN2, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7151), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7153), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token5, - STATE(4027), 1, + ACTIONS(1757), 1, + anon_sym_DOT_DOT2, + ACTIONS(7477), 1, + anon_sym_DOT, + STATE(2088), 1, + sym_path, + STATE(2214), 1, + sym_cell_path, + STATE(4282), 1, sym_comment, - STATE(4564), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1761), 17, ts_builtin_sym_end, - sym__space, - STATE(4826), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375184,19 +392352,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, - [155263] = 6, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168889] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7157), 1, - anon_sym_DOT, - ACTIONS(7159), 1, - aux_sym__immediate_decimal_token2, - STATE(4028), 1, - sym_comment, - ACTIONS(1785), 2, + ACTIONS(1699), 1, + sym__space, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(7479), 1, anon_sym_DOT_DOT2, + ACTIONS(7483), 1, + sym_filesize_unit, + ACTIONS(7485), 1, + sym_duration_unit, + ACTIONS(7487), 1, aux_sym_unquoted_token2, - ACTIONS(1787), 19, + STATE(4283), 1, + sym_comment, + STATE(8102), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7481), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375210,21 +392393,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155301] = 4, + [168936] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4029), 1, - sym_comment, - ACTIONS(1781), 2, + ACTIONS(1763), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1783), 21, + ACTIONS(7477), 1, + anon_sym_DOT, + STATE(2088), 1, + sym_path, + STATE(2268), 1, + sym_cell_path, + STATE(4284), 1, + sym_comment, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1765), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375236,44 +392421,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_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, - [155335] = 13, + [168977] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(4315), 1, + ACTIONS(4379), 1, anon_sym_DOLLAR, - ACTIONS(7089), 1, + ACTIONS(7397), 1, anon_sym_LPAREN2, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7151), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7153), 1, + ACTIONS(7405), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, + ACTIONS(7407), 1, aux_sym__immediate_decimal_token5, - STATE(4030), 1, + ACTIONS(7489), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7491), 1, + aux_sym__immediate_decimal_token3, + STATE(4285), 1, sym_comment, - STATE(4567), 1, + STATE(5098), 1, sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(1745), 2, ts_builtin_sym_end, sym__space, - STATE(4972), 2, + STATE(5097), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1589), 11, + ACTIONS(1743), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375285,31 +392463,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, - [155387] = 12, + [169026] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1735), 1, + ACTIONS(7455), 1, + aux_sym__immediate_decimal_token2, + STATE(4286), 1, + sym_comment, + ACTIONS(1671), 6, sym__space, - ACTIONS(4351), 1, - anon_sym_DOLLAR, - ACTIONS(7067), 1, anon_sym_LPAREN2, - ACTIONS(7075), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7135), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token3, - STATE(4031), 1, - sym_comment, - STATE(4648), 1, - sym__immediate_decimal, - STATE(4647), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1733), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1669), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375323,15 +392491,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155437] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [169061] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4032), 1, + ACTIONS(7493), 1, + anon_sym_DOT, + ACTIONS(7495), 1, + aux_sym__immediate_decimal_token2, + STATE(4287), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 21, + ACTIONS(1781), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375343,41 +392518,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_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, - [155471] = 12, + [169098] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, - sym__space, - ACTIONS(4351), 1, + ACTIONS(4379), 1, anon_sym_DOLLAR, - ACTIONS(7067), 1, + ACTIONS(7397), 1, anon_sym_LPAREN2, - ACTIONS(7075), 1, + ACTIONS(7405), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7077), 1, + ACTIONS(7407), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7135), 1, + ACTIONS(7489), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7137), 1, + ACTIONS(7491), 1, aux_sym__immediate_decimal_token3, - STATE(4033), 1, + STATE(4288), 1, sym_comment, - STATE(4776), 1, + STATE(5093), 1, sym__immediate_decimal, - STATE(4774), 2, + ACTIONS(1685), 2, + ts_builtin_sym_end, + sym__space, + STATE(5079), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1663), 13, + ACTIONS(1677), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375389,36 +392561,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [155521] = 13, + [169147] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7497), 1, + anon_sym_DOT, + ACTIONS(7499), 1, + aux_sym__immediate_decimal_token2, + STATE(4289), 1, + sym_comment, + ACTIONS(1671), 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(1669), 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, + [169184] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(4379), 1, anon_sym_DOLLAR, - ACTIONS(7089), 1, + ACTIONS(7397), 1, anon_sym_LPAREN2, - ACTIONS(7093), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7095), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7097), 1, + ACTIONS(7405), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7099), 1, + ACTIONS(7407), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7161), 1, - anon_sym_DOT, - STATE(4034), 1, + ACTIONS(7489), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7491), 1, + aux_sym__immediate_decimal_token3, + STATE(4290), 1, sym_comment, - STATE(4316), 1, + STATE(5096), 1, sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(1741), 2, ts_builtin_sym_end, sym__space, - STATE(4470), 2, + STATE(5094), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1663), 11, + ACTIONS(1739), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375430,17 +392629,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, - [155573] = 5, + [169233] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7163), 1, + ACTIONS(7501), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7503), 1, aux_sym__immediate_decimal_token2, - STATE(4035), 1, + STATE(4291), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(1771), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1803), 19, + ACTIONS(1773), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375452,31 +392654,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155608] = 8, - ACTIONS(251), 1, + [169270] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1777), 1, - anon_sym_DOT_DOT2, - ACTIONS(6486), 1, - anon_sym_DOT, - STATE(1995), 1, - sym_path, - STATE(2153), 1, - sym_cell_path, - STATE(3422), 1, - aux_sym_cell_path_repeat1, - STATE(4036), 1, + ACTIONS(4379), 1, + anon_sym_DOLLAR, + ACTIONS(7397), 1, + anon_sym_LPAREN2, + ACTIONS(7405), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7407), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7489), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7491), 1, + aux_sym__immediate_decimal_token3, + STATE(4292), 1, sym_comment, - ACTIONS(1779), 17, + STATE(5183), 1, + sym__immediate_decimal, + ACTIONS(1643), 2, ts_builtin_sym_end, + sym__space, + STATE(5182), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375488,24 +392697,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155649] = 6, + [169319] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7165), 1, - anon_sym_DOT, - ACTIONS(7167), 1, - aux_sym__immediate_decimal_token2, - STATE(4037), 1, + STATE(4293), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 18, + ACTIONS(1671), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375524,15 +392724,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155686] = 4, + sym_filesize_unit, + sym_duration_unit, + [169352] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4038), 1, + STATE(4294), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 20, + ACTIONS(1713), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375553,46 +392755,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [155719] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7125), 1, - aux_sym__immediate_decimal_token2, - STATE(4039), 1, - sym_comment, - ACTIONS(1647), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1645), 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, - [155754] = 4, + [169385] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4040), 1, + ACTIONS(7505), 1, + aux_sym__immediate_decimal_token2, + STATE(4295), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1799), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 20, - ts_builtin_sym_end, + ACTIONS(1801), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375604,60 +392777,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_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, - [155787] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4315), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, - anon_sym_LPAREN2, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7099), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token3, - STATE(4041), 1, - sym_comment, - STATE(4818), 1, - sym__immediate_decimal, - ACTIONS(1743), 2, - ts_builtin_sym_end, - sym__space, - STATE(4806), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 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, - [155836] = 5, + [169420] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7173), 1, + ACTIONS(7507), 1, sym__newline, - STATE(4042), 2, + STATE(4296), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1312), 10, + ACTIONS(1308), 10, sym_identifier, anon_sym_DASH2, anon_sym_true, @@ -375668,7 +392804,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(1314), 10, + ACTIONS(1310), 10, anon_sym_EQ, anon_sym_COLON, anon_sym_LPAREN, @@ -375679,22 +392815,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token5, - [155871] = 8, + [169455] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, + ACTIONS(969), 1, anon_sym_DOT_DOT2, - ACTIONS(6486), 1, + ACTIONS(7477), 1, anon_sym_DOT, - STATE(1995), 1, - sym_path, - STATE(2121), 1, + STATE(1508), 1, sym_cell_path, - STATE(3422), 1, - aux_sym_cell_path_repeat1, - STATE(4043), 1, + STATE(2088), 1, + sym_path, + STATE(4297), 1, sym_comment, - ACTIONS(1775), 17, + STATE(4324), 1, + aux_sym_cell_path_repeat1, + ACTIONS(971), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375712,32 +392848,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155912] = 12, - ACTIONS(3), 1, + [169496] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4315), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, - anon_sym_LPAREN2, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7099), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token3, - STATE(4044), 1, + ACTIONS(982), 1, + anon_sym_DOT_DOT2, + ACTIONS(7457), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(4298), 1, sym_comment, - STATE(4955), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - ts_builtin_sym_end, - sym__space, - STATE(4931), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 11, + STATE(4299), 1, + aux_sym_cell_path_repeat1, + ACTIONS(984), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375749,16 +392873,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, - [155961] = 4, + 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, + [169535] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4045), 1, - sym_comment, - ACTIONS(1645), 2, + ACTIONS(975), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 20, - ts_builtin_sym_end, + ACTIONS(7510), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(4299), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(977), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375770,37 +392904,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_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, - [155994] = 11, + [169572] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(7513), 1, + aux_sym__immediate_decimal_token2, + STATE(4300), 1, + sym_comment, + ACTIONS(1713), 6, sym__space, - ACTIONS(4223), 1, anon_sym_LPAREN2, - ACTIONS(7176), 1, - anon_sym_DOT_DOT2, - ACTIONS(7180), 1, - sym_filesize_unit, - ACTIONS(7182), 1, - sym_duration_unit, - ACTIONS(7184), 1, - aux_sym_unquoted_token2, - STATE(4046), 1, - sym_comment, - STATE(7584), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7178), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1711), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375814,32 +392939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156041] = 12, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [169607] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4315), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, - anon_sym_LPAREN2, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7099), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token3, - STATE(4047), 1, + STATE(4301), 1, sym_comment, - STATE(4801), 1, - sym__immediate_decimal, - ACTIONS(1739), 2, + ACTIONS(1661), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 20, ts_builtin_sym_end, - sym__space, - STATE(4913), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1737), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375851,36 +392962,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, - [156090] = 14, + 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, + [169640] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7186), 1, + ACTIONS(1581), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7515), 1, anon_sym_DOLLAR, - ACTIONS(7188), 1, + ACTIONS(7517), 1, anon_sym_LPAREN2, - ACTIONS(7190), 1, + ACTIONS(7519), 1, anon_sym_DOT, - ACTIONS(7192), 1, + ACTIONS(7521), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7194), 1, + ACTIONS(7523), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7196), 1, + ACTIONS(7525), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7527), 1, aux_sym__immediate_decimal_token5, - STATE(4048), 1, + STATE(4302), 1, sym_comment, - STATE(4261), 1, + STATE(4566), 1, sym__immediate_decimal, - ACTIONS(1589), 2, + ACTIONS(1565), 2, sym_identifier, anon_sym_DASH2, - STATE(4544), 2, + STATE(4857), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 9, + ACTIONS(1579), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -375890,16 +393009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156143] = 4, + [169693] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4049), 1, + STATE(4303), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(1799), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1783), 20, - ts_builtin_sym_end, + ACTIONS(1801), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375911,29 +393029,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [169725] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4304), 1, + sym_comment, + ACTIONS(1671), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [156176] = 5, + ACTIONS(1669), 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, + [169757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7200), 1, + ACTIONS(7529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7531), 1, aux_sym__immediate_decimal_token2, - STATE(4050), 1, + STATE(4305), 1, + sym_comment, + ACTIONS(1773), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1771), 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, + [169793] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7533), 1, + anon_sym_DOT, + STATE(4306), 1, + sym_comment, + STATE(4347), 1, + aux_sym_cell_path_repeat1, + STATE(4448), 1, + sym_path, + STATE(4561), 1, + sym_cell_path, + ACTIONS(971), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(969), 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, + [169833] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4307), 1, sym_comment, - ACTIONS(1747), 6, + ACTIONS(1713), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1745), 15, + ACTIONS(1711), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375949,16 +393155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156211] = 6, + [169865] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7202), 1, - anon_sym_DOT, - ACTIONS(7204), 1, + ACTIONS(7499), 1, aux_sym__immediate_decimal_token2, - STATE(4051), 1, + STATE(4308), 1, sym_comment, - ACTIONS(1647), 7, + ACTIONS(1671), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -375966,7 +393170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1645), 13, + ACTIONS(1669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375980,20 +393184,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156248] = 6, + [169899] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7206), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7208), 1, - aux_sym__immediate_decimal_token2, - STATE(4052), 1, + ACTIONS(4980), 1, + anon_sym_DOT, + STATE(1733), 1, + aux_sym_cell_path_repeat1, + STATE(1898), 1, + sym_path, + STATE(4230), 1, + sym_cell_path, + STATE(4309), 1, sym_comment, - ACTIONS(1793), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1795), 18, - ts_builtin_sym_end, + ACTIONS(971), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376005,23 +393209,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_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [169937] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7535), 1, + anon_sym_DOT, + ACTIONS(7537), 1, + aux_sym__immediate_decimal_token2, + STATE(4310), 1, + sym_comment, + ACTIONS(1781), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156285] = 5, + ACTIONS(1779), 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, + [169973] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7159), 1, - aux_sym__immediate_decimal_token2, - STATE(4053), 1, + STATE(4311), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1771), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 19, + ACTIONS(1773), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376041,61 +393273,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156320] = 12, - ACTIONS(3), 1, + [170005] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4315), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, - anon_sym_LPAREN2, - ACTIONS(7097), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7099), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token3, - STATE(4054), 1, + ACTIONS(7539), 1, + anon_sym_DOT, + ACTIONS(7541), 1, + aux_sym__immediate_decimal_token2, + STATE(4312), 1, sym_comment, - STATE(4967), 1, - sym__immediate_decimal, - ACTIONS(1735), 2, - ts_builtin_sym_end, - sym__space, - STATE(4958), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1733), 11, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1671), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [156369] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170041] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7210), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7212), 1, - aux_sym__immediate_decimal_token2, - STATE(4055), 1, + STATE(4313), 1, sym_comment, - ACTIONS(1639), 7, - ts_builtin_sym_end, + ACTIONS(1769), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1637), 13, + ACTIONS(1767), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376107,23 +393327,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_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156406] = 7, - ACTIONS(251), 1, + [170073] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(7214), 1, - anon_sym_DOT_DOT2, - STATE(4056), 1, + ACTIONS(7533), 1, + anon_sym_DOT, + STATE(4314), 1, sym_comment, - ACTIONS(7216), 2, + STATE(4347), 1, + aux_sym_cell_path_repeat1, + STATE(4448), 1, + sym_path, + STATE(4527), 1, + sym_cell_path, + ACTIONS(1761), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1836), 16, + ACTIONS(1757), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376137,22 +393362,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [156444] = 4, + anon_sym_DOT_DOT2, + [170113] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(4057), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(7543), 1, + anon_sym_DOT_DOT2, + ACTIONS(7547), 1, + sym_filesize_unit, + ACTIONS(7549), 1, + sym_duration_unit, + ACTIONS(7551), 1, + aux_sym_unquoted_token2, + STATE(4315), 1, sym_comment, - ACTIONS(1647), 6, + STATE(8184), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1699), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(7545), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1645), 15, + ACTIONS(1687), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376164,22 +393398,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, - [156476] = 5, + [170159] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7218), 1, - aux_sym__immediate_decimal_token2, - STATE(4058), 1, + STATE(4316), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1803), 18, - ts_builtin_sym_end, + ACTIONS(1781), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376191,25 +393418,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156510] = 4, - ACTIONS(3), 1, + [170191] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4059), 1, - sym_comment, - ACTIONS(1747), 6, - sym__space, + ACTIONS(1842), 1, anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(7553), 1, + anon_sym_DOT_DOT2, + STATE(4317), 1, + sym_comment, + ACTIONS(7555), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1745), 15, + ACTIONS(1848), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376223,36 +393454,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [170229] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7559), 1, + aux_sym__immediate_decimal_token2, + STATE(4318), 1, + sym_comment, + ACTIONS(1661), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [156542] = 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1663), 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, + [170265] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7188), 1, + ACTIONS(1581), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7517), 1, anon_sym_LPAREN2, - ACTIONS(7220), 1, + ACTIONS(7561), 1, anon_sym_DOLLAR, - ACTIONS(7222), 1, + ACTIONS(7563), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7224), 1, + ACTIONS(7565), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7226), 1, + ACTIONS(7567), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7228), 1, + ACTIONS(7569), 1, aux_sym__immediate_decimal_token5, - STATE(4060), 1, + STATE(4319), 1, sym_comment, - STATE(4633), 1, + STATE(4934), 1, + sym__immediate_decimal, + ACTIONS(1565), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5386), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1579), 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, + [170315] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4320), 1, + sym_comment, + ACTIONS(1304), 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(1302), 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, + [170347] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7517), 1, + anon_sym_LPAREN2, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + ACTIONS(7563), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7565), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7567), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7569), 1, + aux_sym__immediate_decimal_token5, + STATE(4321), 1, + sym_comment, + STATE(4939), 1, sym__immediate_decimal, - ACTIONS(1589), 2, + ACTIONS(1645), 2, sym_identifier, anon_sym_DASH2, - STATE(5030), 2, + STATE(5415), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1603), 9, + ACTIONS(1657), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -376262,21 +393589,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156592] = 7, + [170397] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7533), 1, + anon_sym_DOT, + STATE(4322), 1, + sym_comment, + STATE(4347), 1, + aux_sym_cell_path_repeat1, + STATE(4448), 1, + sym_path, + STATE(4537), 1, + sym_cell_path, + ACTIONS(1765), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1763), 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, + [170437] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(1845), 1, + ACTIONS(1832), 1, anon_sym_LPAREN2, - ACTIONS(7230), 1, + ACTIONS(7571), 1, anon_sym_DOT_DOT2, - STATE(4061), 1, + STATE(4323), 1, sym_comment, - ACTIONS(7232), 2, + ACTIONS(7573), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1851), 16, + ACTIONS(1838), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376293,22 +393652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156630] = 5, - ACTIONS(3), 1, + [170475] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7204), 1, - aux_sym__immediate_decimal_token2, - STATE(4062), 1, + ACTIONS(982), 1, + anon_sym_DOT_DOT2, + ACTIONS(7477), 1, + anon_sym_DOT, + STATE(2088), 1, + sym_path, + STATE(4324), 1, sym_comment, - ACTIONS(1647), 7, + STATE(4325), 1, + aux_sym_cell_path_repeat1, + ACTIONS(984), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1645), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376320,17 +393678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [156664] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170513] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4063), 1, - sym_comment, - ACTIONS(1785), 2, + ACTIONS(975), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 19, + ACTIONS(7575), 1, + anon_sym_DOT, + STATE(2088), 1, + sym_path, + STATE(4325), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(977), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376342,25 +393708,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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170549] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4326), 1, + sym_comment, + ACTIONS(1663), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156696] = 5, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1661), 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, + [170581] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7167), 1, + ACTIONS(7495), 1, aux_sym__immediate_decimal_token2, - STATE(4064), 1, + STATE(4327), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 18, + ACTIONS(1781), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376379,19 +393770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156730] = 4, - ACTIONS(3), 1, + [170615] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4065), 1, + STATE(4328), 1, sym_comment, - ACTIONS(1783), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1781), 15, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1820), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376405,26 +393792,28 @@ 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, - [156762] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [170647] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7234), 1, - anon_sym_DOT, - STATE(4066), 1, + ACTIONS(7578), 1, + aux_sym__immediate_decimal_token2, + STATE(4329), 1, sym_comment, - STATE(4108), 1, - aux_sym_cell_path_repeat1, - STATE(4195), 1, - sym_path, - STATE(4232), 1, - sym_cell_path, - ACTIONS(1779), 3, + ACTIONS(1713), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1777), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1711), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376436,18 +393825,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [156802] = 4, + aux_sym_unquoted_token2, + [170681] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4067), 1, + ACTIONS(7580), 1, + aux_sym__immediate_decimal_token2, + STATE(4330), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(1799), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1795), 19, + ACTIONS(1801), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376459,70 +393850,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - 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, - [156834] = 4, + [170715] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(4068), 1, + ACTIONS(7515), 1, + anon_sym_DOLLAR, + ACTIONS(7517), 1, + anon_sym_LPAREN2, + ACTIONS(7521), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7523), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7525), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7527), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7582), 1, + anon_sym_DOT, + STATE(4331), 1, sym_comment, - ACTIONS(1308), 10, + STATE(4855), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, 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(1306), 11, + STATE(4854), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 9, anon_sym_EQ, sym__newline, + anon_sym_PIPE, 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, - [156866] = 13, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170765] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7186), 1, - anon_sym_DOLLAR, - ACTIONS(7188), 1, + ACTIONS(7517), 1, anon_sym_LPAREN2, - ACTIONS(7192), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7194), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7196), 1, + ACTIONS(7525), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7527), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7236), 1, - anon_sym_DOT, - STATE(4069), 1, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + ACTIONS(7584), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7586), 1, + aux_sym__immediate_decimal_token3, + STATE(4332), 1, sym_comment, - STATE(4536), 1, + STATE(5384), 1, sym__immediate_decimal, - ACTIONS(1663), 2, + ACTIONS(1633), 2, sym_identifier, anon_sym_DASH2, - STATE(4534), 2, + STATE(5383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 9, + ACTIONS(1643), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -376532,21 +393928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156916] = 6, + [170812] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7238), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4070), 1, + ACTIONS(7588), 1, + anon_sym_DOT, + STATE(4448), 1, + sym_path, + STATE(4333), 2, sym_comment, - ACTIONS(1795), 4, + aux_sym_cell_path_repeat1, + ACTIONS(977), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1793), 15, + ACTIONS(975), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376561,35 +393957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [156952] = 13, + [170847] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7188), 1, + ACTIONS(7517), 1, anon_sym_LPAREN2, - ACTIONS(7220), 1, + ACTIONS(7525), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7527), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7561), 1, anon_sym_DOLLAR, - ACTIONS(7222), 1, + ACTIONS(7584), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7224), 1, + ACTIONS(7586), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7226), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7228), 1, - aux_sym__immediate_decimal_token5, - STATE(4071), 1, + STATE(4334), 1, sym_comment, - STATE(4645), 1, + STATE(5414), 1, sym__immediate_decimal, - ACTIONS(1675), 2, + ACTIONS(1743), 2, sym_identifier, anon_sym_DASH2, - STATE(5040), 2, + STATE(5413), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 9, + ACTIONS(1745), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -376599,45 +393992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157002] = 6, - ACTIONS(251), 1, + [170894] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_DOT, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token2, - STATE(4072), 1, + STATE(4335), 1, sym_comment, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1647), 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(1671), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157038] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4073), 1, - sym_comment, - ACTIONS(1801), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1803), 19, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376649,32 +394017,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157070] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [170925] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7234), 1, + ACTIONS(7591), 1, anon_sym_DOT, - STATE(4074), 1, + STATE(4336), 1, sym_comment, - STATE(4108), 1, + STATE(4385), 1, aux_sym_cell_path_repeat1, - STATE(4195), 1, + STATE(4556), 1, sym_path, - STATE(4273), 1, + STATE(4713), 1, sym_cell_path, - ACTIONS(1775), 3, + ACTIONS(1761), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1771), 14, + ACTIONS(1757), 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, + [170964] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(7593), 1, + anon_sym_DOT, + ACTIONS(7595), 1, + aux_sym__immediate_decimal_token2, + STATE(4337), 1, + sym_comment, + ACTIONS(1781), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376688,22 +394075,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [157110] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [170999] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7517), 1, + anon_sym_LPAREN2, + ACTIONS(7525), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7527), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + ACTIONS(7584), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7586), 1, + aux_sym__immediate_decimal_token3, + STATE(4338), 1, + sym_comment, + STATE(5409), 1, + sym__immediate_decimal, + ACTIONS(1677), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5408), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 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, + [171046] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_DOT, - ACTIONS(7248), 1, + ACTIONS(7597), 1, aux_sym__immediate_decimal_token2, - STATE(4075), 1, + STATE(4339), 1, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1801), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 15, + ACTIONS(1799), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376719,22 +394142,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157146] = 5, + [171079] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7250), 1, + ACTIONS(7599), 1, + anon_sym_DOT, + ACTIONS(7601), 1, aux_sym__immediate_decimal_token2, - STATE(4076), 1, + STATE(4340), 1, sym_comment, - ACTIONS(1747), 7, + ACTIONS(1781), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1745), 13, + ACTIONS(1779), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376748,15 +394171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157180] = 4, + [171114] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4077), 1, + STATE(4341), 1, sym_comment, - ACTIONS(1824), 2, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1826), 19, + ACTIONS(1820), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376768,57 +394192,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [157212] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token2, - STATE(4078), 1, - sym_comment, - ACTIONS(1637), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1639), 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, - [157248] = 4, + [171145] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4079), 1, + STATE(4342), 1, sym_comment, - ACTIONS(1639), 6, + ACTIONS(1769), 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(1637), 15, + ACTIONS(1767), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376830,34 +394223,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157280] = 11, - ACTIONS(3), 1, + [171176] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, anon_sym_LPAREN2, - ACTIONS(7256), 1, + ACTIONS(7603), 1, anon_sym_DOT_DOT2, - ACTIONS(7260), 1, - sym_filesize_unit, - ACTIONS(7262), 1, - sym_duration_unit, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, - STATE(4080), 1, + STATE(4343), 1, sym_comment, - STATE(7622), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1707), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7258), 2, + ACTIONS(7605), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 11, + ACTIONS(1838), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376869,24 +394252,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, - [157326] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171213] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7234), 1, - anon_sym_DOT, - STATE(4081), 1, + STATE(4344), 1, sym_comment, - STATE(4108), 1, - aux_sym_cell_path_repeat1, - STATE(4195), 1, - sym_path, - STATE(4252), 1, - sym_cell_path, - ACTIONS(975), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(973), 14, + ACTIONS(1779), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376898,23 +394276,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171244] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7607), 1, + aux_sym__immediate_decimal_token2, + STATE(4345), 1, + sym_comment, + ACTIONS(1711), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - [157366] = 4, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1713), 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, + [171277] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4082), 1, + ACTIONS(7537), 1, + aux_sym__immediate_decimal_token2, + STATE(4346), 1, sym_comment, - ACTIONS(1747), 7, - ts_builtin_sym_end, + ACTIONS(1781), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1745), 13, + ACTIONS(1779), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376926,27 +394334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157397] = 8, + [171310] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7533), 1, anon_sym_DOT, - STATE(4083), 1, - sym_comment, - STATE(4126), 1, + STATE(4333), 1, aux_sym_cell_path_repeat1, - STATE(4258), 1, + STATE(4347), 1, + sym_comment, + STATE(4448), 1, sym_path, - STATE(4364), 1, - sym_cell_path, - ACTIONS(1779), 4, - ts_builtin_sym_end, + ACTIONS(984), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1777), 12, + ACTIONS(982), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376958,17 +394365,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_RBRACE, anon_sym_DOT_DOT2, - [157436] = 4, - ACTIONS(251), 1, + [171347] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4084), 1, + ACTIONS(7591), 1, + anon_sym_DOT, + STATE(4348), 1, sym_comment, - ACTIONS(1824), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1826), 18, + STATE(4385), 1, + aux_sym_cell_path_repeat1, + STATE(4556), 1, + sym_path, + STATE(4772), 1, + sym_cell_path, + ACTIONS(1765), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1763), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376980,24 +394398,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157467] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [171386] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, + ACTIONS(1699), 1, + sym__space, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(7483), 1, + sym_filesize_unit, + ACTIONS(7485), 1, + sym_duration_unit, + ACTIONS(7487), 1, aux_sym_unquoted_token2, - ACTIONS(7268), 1, - anon_sym_DOT, - ACTIONS(7270), 1, - aux_sym__immediate_decimal_token2, - STATE(4085), 1, + STATE(4349), 1, sym_comment, - ACTIONS(1787), 17, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1687), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377011,22 +394431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [157502] = 6, - ACTIONS(251), 1, + [171427] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - ACTIONS(7272), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7274), 1, - aux_sym__immediate_decimal_token2, - STATE(4086), 1, + STATE(4350), 1, sym_comment, - ACTIONS(1795), 17, + ACTIONS(1663), 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(1661), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377038,38 +394456,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [157537] = 12, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [171458] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7188), 1, + ACTIONS(7517), 1, anon_sym_LPAREN2, - ACTIONS(7196), 1, + ACTIONS(7525), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7527), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7220), 1, + ACTIONS(7561), 1, anon_sym_DOLLAR, - ACTIONS(7276), 1, + ACTIONS(7584), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7278), 1, + ACTIONS(7586), 1, aux_sym__immediate_decimal_token3, - STATE(4087), 1, + STATE(4351), 1, sym_comment, - STATE(5035), 1, + STATE(5411), 1, sym__immediate_decimal, - ACTIONS(1733), 2, + ACTIONS(1739), 2, sym_identifier, anon_sym_DASH2, - STATE(5034), 2, + STATE(5410), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1735), 9, + ACTIONS(1741), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -377079,19 +394493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157584] = 5, - ACTIONS(3), 1, + [171505] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7248), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(7609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7611), 1, aux_sym__immediate_decimal_token2, - STATE(4088), 1, + STATE(4352), 1, sym_comment, - ACTIONS(1787), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 15, + ACTIONS(1773), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377105,22 +394518,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [157617] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [171540] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4089), 1, + STATE(4353), 1, sym_comment, - ACTIONS(1647), 7, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 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(1645), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377132,27 +394543,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_DOT_DOT2, - aux_sym_unquoted_token2, - [157648] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171571] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7591), 1, anon_sym_DOT, - STATE(4090), 1, + STATE(4354), 1, sym_comment, - STATE(4126), 1, + STATE(4385), 1, aux_sym_cell_path_repeat1, - STATE(4258), 1, + STATE(4556), 1, sym_path, - STATE(4341), 1, + STATE(4759), 1, sym_cell_path, - ACTIONS(1775), 4, + ACTIONS(971), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1771), 12, + ACTIONS(969), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377165,21 +394580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [157687] = 6, + [171610] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7280), 1, - anon_sym_DOT, - STATE(4195), 1, - sym_path, - STATE(4091), 2, + STATE(4355), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(981), 3, + ACTIONS(1713), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(979), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1711), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377191,18 +394605,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [157722] = 4, + aux_sym_unquoted_token2, + [171641] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(4092), 1, - sym_comment, - ACTIONS(1801), 2, - anon_sym_DOT_DOT2, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, aux_sym_unquoted_token2, - ACTIONS(1803), 18, + ACTIONS(7613), 1, + anon_sym_DOT_DOT2, + STATE(4356), 1, + sym_comment, + ACTIONS(7615), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1848), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377218,62 +394637,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [157753] = 4, - ACTIONS(3), 1, + [171678] = 11, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4093), 1, - sym_comment, - ACTIONS(1783), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1689), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7617), 1, + anon_sym_DOT_DOT2, + ACTIONS(7621), 1, sym_filesize_unit, + ACTIONS(7623), 1, sym_duration_unit, - ACTIONS(1781), 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, - [157784] = 12, - ACTIONS(251), 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(7220), 1, - anon_sym_DOLLAR, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7278), 1, - aux_sym__immediate_decimal_token3, - STATE(4094), 1, + ACTIONS(7625), 1, + aux_sym__unquoted_in_record_token2, + STATE(4357), 1, sym_comment, - STATE(5029), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, + STATE(8047), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1687), 2, sym_identifier, anon_sym_DASH2, - STATE(5028), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 9, + ACTIONS(7619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 10, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -377281,34 +394668,24 @@ 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, - [157831] = 12, + [171723] = 5, ACTIONS(251), 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(7220), 1, - anon_sym_DOLLAR, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7278), 1, - aux_sym__immediate_decimal_token3, - STATE(4095), 1, + ACTIONS(7541), 1, + aux_sym__immediate_decimal_token2, + STATE(4358), 1, sym_comment, - STATE(5037), 1, - sym__immediate_decimal, - ACTIONS(1737), 2, + ACTIONS(1669), 6, sym_identifier, anon_sym_DASH2, - STATE(5036), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1671), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -377316,27 +394693,28 @@ 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, - [157878] = 9, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171756] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, - sym__space, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(7180), 1, - sym_filesize_unit, - ACTIONS(7182), 1, - sym_duration_unit, - ACTIONS(7184), 1, - aux_sym_unquoted_token2, - STATE(4096), 1, + ACTIONS(7627), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7629), 1, + aux_sym__immediate_decimal_token2, + STATE(4359), 1, sym_comment, - ACTIONS(4698), 2, + ACTIONS(1773), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 13, + ACTIONS(1771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377348,23 +394726,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, - [157919] = 7, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [171791] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(7283), 1, - anon_sym_DOT_DOT2, - STATE(4097), 1, + STATE(4360), 1, sym_comment, - ACTIONS(7285), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1836), 15, + ACTIONS(1799), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377380,56 +394752,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157956] = 12, - ACTIONS(251), 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(7220), 1, - anon_sym_DOLLAR, - ACTIONS(7276), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7278), 1, - aux_sym__immediate_decimal_token3, - STATE(4098), 1, - sym_comment, - STATE(5039), 1, - sym__immediate_decimal, - ACTIONS(1741), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5038), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1743), 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, - [158003] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171822] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(7287), 1, - anon_sym_DOT_DOT2, - STATE(4099), 1, + ACTIONS(5342), 1, + anon_sym_DOT, + STATE(1508), 1, + sym_cell_path, + STATE(2148), 1, + aux_sym_cell_path_repeat1, + STATE(2293), 1, + sym_path, + STATE(4361), 1, sym_comment, - ACTIONS(7289), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1851), 15, + ACTIONS(971), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377442,23 +394781,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_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158040] = 4, - ACTIONS(3), 1, + [171859] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4100), 1, + ACTIONS(7631), 1, + anon_sym_DOT_DOT2, + STATE(4362), 1, sym_comment, - ACTIONS(1639), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7633), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1637), 13, + ACTIONS(2137), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377470,24 +394807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158071] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7291), 1, - anon_sym_DOT, - ACTIONS(7293), 1, - aux_sym__immediate_decimal_token2, - STATE(4101), 1, + STATE(4363), 1, sym_comment, - ACTIONS(1787), 5, - ts_builtin_sym_end, + ACTIONS(1773), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 13, + ACTIONS(1771), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377499,18 +394834,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_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [158106] = 4, + [171921] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4102), 1, + STATE(4364), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1671), 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, + [171951] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1799), 1, aux_sym_unquoted_token2, - ACTIONS(1795), 18, - ts_builtin_sym_end, + ACTIONS(7635), 1, + aux_sym__immediate_decimal_token2, + STATE(4365), 1, + sym_comment, + ACTIONS(1801), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377522,22 +394885,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [158137] = 4, + [171983] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4103), 1, - sym_comment, - ACTIONS(1785), 2, + ACTIONS(7639), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 18, - ts_builtin_sym_end, + STATE(4366), 1, + sym_comment, + ACTIONS(7641), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7637), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377549,28 +394913,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [158168] = 6, + [172015] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7295), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token2, - STATE(4104), 1, + STATE(4367), 1, sym_comment, - ACTIONS(1795), 5, - ts_builtin_sym_end, + ACTIONS(1006), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1793), 13, + ACTIONS(1004), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377582,55 +394939,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158203] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7299), 1, - aux_sym__immediate_decimal_token2, - STATE(4105), 1, - sym_comment, - ACTIONS(1745), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1747), 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, - [158236] = 8, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [172045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_DOT, - STATE(4106), 1, + STATE(4368), 1, sym_comment, - STATE(4126), 1, - aux_sym_cell_path_repeat1, - STATE(4258), 1, - sym_path, - STATE(4446), 1, - sym_cell_path, - ACTIONS(975), 4, - ts_builtin_sym_end, + ACTIONS(988), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(973), 12, + ACTIONS(986), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377642,20 +394965,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - [158275] = 5, + anon_sym_DOT, + [172075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7301), 1, - aux_sym__immediate_decimal_token2, - STATE(4107), 1, + ACTIONS(7643), 1, + anon_sym_QMARK2, + STATE(4369), 1, sym_comment, - ACTIONS(1803), 4, + ACTIONS(1010), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1801), 15, + ACTIONS(1008), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377670,23 +394996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158308] = 7, + anon_sym_DOT, + [172107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7234), 1, - anon_sym_DOT, - STATE(4091), 1, - aux_sym_cell_path_repeat1, - STATE(4108), 1, + STATE(4370), 1, sym_comment, - STATE(4195), 1, - sym_path, - ACTIONS(988), 3, + ACTIONS(1820), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(986), 14, + ACTIONS(1818), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377701,79 +395022,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [158345] = 11, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [172137] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7303), 1, - anon_sym_DOT_DOT2, - ACTIONS(7307), 1, - sym_filesize_unit, - ACTIONS(7309), 1, - sym_duration_unit, - ACTIONS(7311), 1, - aux_sym__unquoted_in_list_token2, - STATE(4109), 1, + ACTIONS(7645), 1, + anon_sym_QMARK2, + STATE(4371), 1, sym_comment, - STATE(7474), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1695), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(7305), 2, + ACTIONS(992), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 10, - anon_sym_EQ, + ACTIONS(990), 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, - [158390] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token2, - STATE(4110), 1, - sym_comment, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1647), 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, - [158423] = 4, + anon_sym_DOT, + [172169] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4111), 1, + ACTIONS(7647), 1, + aux_sym__immediate_decimal_token2, + STATE(4372), 1, sym_comment, - ACTIONS(1803), 4, + ACTIONS(1801), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1801), 15, + ACTIONS(1799), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377785,29 +395075,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, - [158453] = 8, + [172201] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7313), 1, - anon_sym_DOT, - STATE(4112), 1, + STATE(4373), 1, sym_comment, - STATE(4186), 1, - aux_sym_cell_path_repeat1, - STATE(4361), 1, - sym_path, - STATE(4557), 1, - sym_cell_path, - ACTIONS(973), 2, + ACTIONS(1711), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(975), 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1713), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -377817,21 +395100,56 @@ 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, - [158491] = 6, + [172231] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(7315), 1, - anon_sym_DOT, - ACTIONS(7317), 1, - aux_sym__immediate_decimal_token2, - STATE(4113), 1, + ACTIONS(2571), 1, + anon_sym_COMMA, + ACTIONS(7651), 1, + anon_sym_EQ, + ACTIONS(7653), 1, + sym__newline, + ACTIONS(7655), 1, + anon_sym_COLON, + ACTIONS(7657), 1, + anon_sym_LPAREN, + ACTIONS(7659), 1, + anon_sym_DASH2, + STATE(4374), 1, sym_comment, - ACTIONS(1787), 16, - ts_builtin_sym_end, + STATE(4489), 1, + aux_sym_parameter_repeat1, + STATE(4525), 1, + sym_flag_capsule, + STATE(5525), 1, + aux_sym_parameter_repeat2, + STATE(7307), 1, + aux_sym_shebang_repeat1, + STATE(5454), 2, + sym_param_type, + sym_param_value, + ACTIONS(7649), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172281] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7639), 1, + anon_sym_DOT_DOT2, + STATE(4375), 1, + sym_comment, + ACTIONS(7641), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7637), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377843,27 +395161,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [158525] = 8, - ACTIONS(3), 1, + [172313] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1836), 1, - sym__space, - ACTIONS(1838), 1, + ACTIONS(1771), 1, aux_sym_unquoted_token2, - ACTIONS(7319), 1, - anon_sym_DOT_DOT2, - STATE(4114), 1, + ACTIONS(7661), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7663), 1, + aux_sym__immediate_decimal_token2, + STATE(4376), 1, sym_comment, - ACTIONS(7321), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 13, + ACTIONS(1773), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377875,59 +395190,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, - [158563] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_COMMA, - ACTIONS(7325), 1, - anon_sym_EQ, - ACTIONS(7327), 1, - sym__newline, - ACTIONS(7329), 1, - anon_sym_COLON, - ACTIONS(7331), 1, - anon_sym_LPAREN, - ACTIONS(7333), 1, - anon_sym_DASH2, - STATE(4115), 1, - sym_comment, - STATE(4237), 1, - sym_flag_capsule, - STATE(4267), 1, - aux_sym_parameter_repeat1, - STATE(5217), 1, - aux_sym_parameter_repeat2, - STATE(6474), 1, - aux_sym_shebang_repeat1, - STATE(5047), 2, - sym_param_type, - sym_param_value, - ACTIONS(7323), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [158613] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [172347] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7337), 1, + ACTIONS(7665), 1, + anon_sym_DOT, + ACTIONS(7667), 1, aux_sym__immediate_decimal_token2, - STATE(4116), 1, + STATE(4377), 1, sym_comment, - ACTIONS(1793), 4, + ACTIONS(1779), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 13, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -377941,17 +395222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158647] = 4, + [172381] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4117), 1, - sym_comment, - ACTIONS(1826), 4, - sym__space, + ACTIONS(1842), 1, anon_sym_LPAREN2, + ACTIONS(1848), 1, + sym__space, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(7669), 1, + anon_sym_DOT_DOT2, + STATE(4378), 1, + sym_comment, + ACTIONS(7671), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 15, + ACTIONS(1840), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377965,73 +395252,21 @@ 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, - [158677] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4118), 1, - sym_comment, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1647), 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, - [158707] = 4, + [172419] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4119), 1, - sym_comment, - ACTIONS(1637), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1639), 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, - [158737] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4120), 1, + ACTIONS(7673), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7675), 1, + aux_sym__immediate_decimal_token2, + STATE(4379), 1, sym_comment, - ACTIONS(1745), 6, + ACTIONS(1771), 4, sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1747), 13, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -378045,20 +395280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158767] = 4, + [172453] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4121), 1, + ACTIONS(7677), 1, + anon_sym_DOT, + STATE(4380), 1, sym_comment, - ACTIONS(1781), 6, - sym_identifier, + STATE(4437), 1, + aux_sym_cell_path_repeat1, + STATE(4579), 1, + sym_path, + STATE(4783), 1, + sym_cell_path, + ACTIONS(1757), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1783), 13, + ACTIONS(1761), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -378068,23 +395308,19 @@ 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, - [158797] = 5, - ACTIONS(3), 1, + [172491] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7293), 1, - aux_sym__immediate_decimal_token2, - STATE(4122), 1, + ACTIONS(7639), 1, + anon_sym_DOT_DOT2, + STATE(4381), 1, sym_comment, - ACTIONS(1787), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7641), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 13, + ACTIONS(7637), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378096,23 +395332,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, - [158829] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [172523] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7339), 1, - anon_sym_DOT, - ACTIONS(7341), 1, - aux_sym__immediate_decimal_token2, - STATE(4123), 1, + STATE(4382), 1, sym_comment, - ACTIONS(1785), 4, + ACTIONS(1661), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1663), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -378126,23 +395363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158863] = 8, + [172553] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7313), 1, + ACTIONS(7677), 1, anon_sym_DOT, - STATE(4124), 1, + STATE(4383), 1, sym_comment, - STATE(4186), 1, + STATE(4437), 1, aux_sym_cell_path_repeat1, - STATE(4361), 1, + STATE(4579), 1, sym_path, - STATE(4578), 1, + STATE(4833), 1, sym_cell_path, - ACTIONS(1771), 2, + ACTIONS(969), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1775), 13, + ACTIONS(971), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -378156,23 +395393,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158901] = 8, + [172591] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7313), 1, + ACTIONS(7677), 1, anon_sym_DOT, - STATE(4125), 1, + STATE(4384), 1, sym_comment, - STATE(4186), 1, + STATE(4437), 1, aux_sym_cell_path_repeat1, - STATE(4361), 1, + STATE(4579), 1, sym_path, - STATE(4605), 1, + STATE(4841), 1, sym_cell_path, - ACTIONS(1777), 2, + ACTIONS(1763), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1779), 13, + ACTIONS(1765), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -378186,23 +395423,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158939] = 7, + [172629] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7591), 1, anon_sym_DOT, - STATE(4126), 1, + STATE(4385), 1, sym_comment, - STATE(4130), 1, + STATE(4386), 1, aux_sym_cell_path_repeat1, - STATE(4258), 1, + STATE(4556), 1, sym_path, - ACTIONS(988), 4, + ACTIONS(984), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(986), 12, + ACTIONS(982), 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, + [172665] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + anon_sym_DOT, + STATE(4556), 1, + sym_path, + STATE(4386), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(977), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(975), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378215,16 +395480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [158975] = 5, + [172699] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, + ACTIONS(1779), 1, aux_sym_unquoted_token2, - ACTIONS(7343), 1, + ACTIONS(7595), 1, aux_sym__immediate_decimal_token2, - STATE(4127), 1, + STATE(4387), 1, sym_comment, - ACTIONS(1803), 17, + ACTIONS(1781), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378242,20 +395507,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [159007] = 5, + [172731] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7345), 1, - aux_sym__immediate_decimal_token2, - STATE(4128), 1, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(7547), 1, + sym_filesize_unit, + ACTIONS(7549), 1, + sym_duration_unit, + ACTIONS(7551), 1, + aux_sym_unquoted_token2, + STATE(4388), 1, sym_comment, - ACTIONS(1803), 5, + ACTIONS(1699), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(4722), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1801), 13, + ACTIONS(1687), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378267,19 +395538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159039] = 5, + [172771] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, + ACTIONS(7639), 1, anon_sym_DOT_DOT2, - STATE(4129), 1, + STATE(4389), 1, sym_comment, - ACTIONS(1052), 2, + ACTIONS(7641), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7347), 16, + ACTIONS(1036), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378296,22 +395565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159071] = 6, + [172803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7349), 1, - anon_sym_DOT, - STATE(4258), 1, - sym_path, - STATE(4130), 2, + STATE(4390), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(981), 4, - ts_builtin_sym_end, + ACTIONS(1781), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(979), 12, + ACTIONS(1779), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378323,18 +395587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [159105] = 5, + aux_sym_unquoted_token2, + [172833] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, + ACTIONS(7682), 1, anon_sym_DOT_DOT2, - STATE(4131), 1, + STATE(4391), 1, sym_comment, - ACTIONS(1052), 2, + ACTIONS(7684), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7347), 16, + ACTIONS(2078), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378351,17 +395618,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159137] = 5, + [172865] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, + ACTIONS(7686), 1, anon_sym_DOT_DOT2, - STATE(4132), 1, + STATE(4392), 1, sym_comment, - ACTIONS(1052), 2, + ACTIONS(7688), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 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, + [172897] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7690), 1, + anon_sym_DOT_DOT2, + STATE(4393), 1, + sym_comment, + ACTIONS(7692), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7347), 16, + ACTIONS(2104), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378378,18 +395672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159169] = 6, + [172929] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1793), 1, + ACTIONS(1779), 1, aux_sym_unquoted_token2, - ACTIONS(7352), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7354), 1, + ACTIONS(7694), 1, + anon_sym_DOT, + ACTIONS(7696), 1, aux_sym__immediate_decimal_token2, - STATE(4133), 1, + STATE(4394), 1, sym_comment, - ACTIONS(1795), 16, + ACTIONS(1781), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -378406,18 +395700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [159203] = 5, + [172963] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7356), 1, - anon_sym_QMARK2, - STATE(4134), 1, + STATE(4395), 1, sym_comment, - ACTIONS(992), 3, + ACTIONS(998), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(990), 15, + ACTIONS(996), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378431,20 +395723,46 @@ 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, - [159235] = 5, + [172993] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4396), 1, + sym_comment, + ACTIONS(1767), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1769), 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, + [173023] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7358), 1, - anon_sym_QMARK2, - STATE(4135), 1, + STATE(4397), 1, sym_comment, - ACTIONS(1014), 3, + ACTIONS(1801), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1012), 15, + ACTIONS(1799), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378459,18 +395777,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [159267] = 4, + aux_sym_unquoted_token2, + [173053] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4136), 1, + ACTIONS(7601), 1, + aux_sym__immediate_decimal_token2, + STATE(4398), 1, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1781), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 15, + ACTIONS(1779), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378482,20 +395803,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [159297] = 4, + [173085] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4137), 1, - sym_comment, - ACTIONS(1010), 3, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, sym__space, + ACTIONS(7698), 1, + anon_sym_DOT_DOT2, + STATE(4399), 1, + sym_comment, + ACTIONS(7700), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 16, + ACTIONS(1830), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378509,19 +395835,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, - [159327] = 4, + [173123] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4138), 1, + STATE(4400), 1, sym_comment, - ACTIONS(1006), 3, + ACTIONS(1002), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 16, + ACTIONS(1000), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378538,16 +395861,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [159357] = 4, - ACTIONS(3), 1, + [173153] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4139), 1, + ACTIONS(7702), 1, + anon_sym_DOT_DOT2, + STATE(4401), 1, sym_comment, - ACTIONS(998), 3, - sym__space, + ACTIONS(7704), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(996), 16, + ACTIONS(2104), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378559,21 +395884,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173184] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5830), 1, + anon_sym_DASH2, + STATE(4402), 1, + sym_comment, + ACTIONS(5832), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [159387] = 4, - ACTIONS(3), 1, + [173213] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4140), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(4403), 1, sym_comment, - ACTIONS(1002), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 16, + ACTIONS(2270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378587,20 +395935,75 @@ 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, - [159417] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173244] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4141), 1, + ACTIONS(5834), 1, + anon_sym_DASH2, + STATE(4404), 1, + sym_comment, + ACTIONS(5836), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173273] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5838), 1, + anon_sym_DASH2, + STATE(4405), 1, sym_comment, - ACTIONS(1795), 4, + ACTIONS(5840), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173302] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(971), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1793), 15, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4406), 1, + sym_comment, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4561), 1, + sym_cell_path, + STATE(4874), 1, + sym_path, + ACTIONS(969), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378614,18 +396017,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159447] = 5, - ACTIONS(251), 1, + [173339] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(7270), 1, - aux_sym__immediate_decimal_token2, - STATE(4142), 1, + ACTIONS(1943), 1, + sym__space, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4407), 1, sym_comment, - ACTIONS(1787), 17, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4955), 1, + sym_cell_path, + ACTIONS(1941), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378639,27 +396046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159479] = 8, + [173376] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, + ACTIONS(1873), 1, sym__space, - ACTIONS(7360), 1, - anon_sym_DOT_DOT2, - STATE(4143), 1, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4408), 1, sym_comment, - ACTIONS(7362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1843), 13, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4956), 1, + sym_cell_path, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378673,26 +396075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159517] = 9, - ACTIONS(3), 1, + [173413] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(7260), 1, - sym_filesize_unit, - ACTIONS(7262), 1, - sym_duration_unit, - ACTIONS(7264), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, aux_sym_unquoted_token2, - STATE(4144), 1, + STATE(4409), 1, sym_comment, - ACTIONS(1707), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1695), 11, + ACTIONS(2230), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378704,22 +396096,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, - [159557] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173444] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(1877), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4145), 1, + STATE(4410), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4634), 1, + STATE(4965), 1, sym_cell_path, - ACTIONS(1897), 13, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378733,22 +396130,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159594] = 8, + [173481] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, + ACTIONS(1761), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4146), 1, + STATE(4411), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4527), 1, + sym_cell_path, + STATE(4874), 1, sym_path, - STATE(4755), 1, + ACTIONS(1757), 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, + [173518] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7706), 1, + anon_sym_DOT, + ACTIONS(7710), 1, + sym__space, + STATE(4412), 1, + sym_comment, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4901), 1, sym_cell_path, - ACTIONS(1921), 13, + ACTIONS(7708), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378762,14 +396188,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159631] = 4, + [173555] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5818), 1, anon_sym_DASH2, - STATE(4147), 1, + STATE(4413), 1, + sym_comment, + ACTIONS(5820), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173584] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(4414), 1, + sym_comment, + ACTIONS(1838), 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, + [173615] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7712), 1, + anon_sym_DOT_DOT2, + STATE(4415), 1, + sym_comment, + ACTIONS(7714), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1036), 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, + [173646] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5842), 1, + anon_sym_DASH2, + STATE(4416), 1, sym_comment, - ACTIONS(5701), 17, + ACTIONS(5844), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -378787,22 +396290,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [159660] = 8, + [173675] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(7716), 1, + anon_sym_DOT_DOT2, + STATE(4417), 1, + sym_comment, + ACTIONS(1838), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7718), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1830), 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, + [173712] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1881), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4148), 1, + STATE(4418), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4773), 1, + STATE(4970), 1, sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378816,22 +396348,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159697] = 8, + [173749] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1931), 1, + ACTIONS(1885), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4149), 1, + STATE(4419), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4783), 1, + STATE(4988), 1, sym_cell_path, - ACTIONS(1929), 13, + ACTIONS(1883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378845,22 +396377,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159734] = 8, + [173786] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(7720), 1, + anon_sym_QMARK2, + STATE(4420), 1, + sym_comment, + ACTIONS(1010), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1008), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [173817] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7722), 1, + anon_sym_QMARK2, + STATE(4421), 1, + sym_comment, + ACTIONS(992), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(7364), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(990), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4150), 1, + [173848] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4422), 1, sym_comment, - STATE(4227), 1, + ACTIONS(2242), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2244), 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_LPAREN2, + [173877] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1889), 1, + sym__space, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4423), 1, + sym_comment, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4794), 1, + STATE(4989), 1, sym_cell_path, - ACTIONS(1933), 13, + ACTIONS(1887), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378874,22 +396483,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159771] = 8, + [173914] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7712), 1, + anon_sym_DOT_DOT2, + STATE(4424), 1, + sym_comment, + ACTIONS(7714), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7637), 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, + [173945] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(1893), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4151), 1, + STATE(4425), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4795), 1, + STATE(5003), 1, sym_cell_path, - ACTIONS(1937), 13, + ACTIONS(1891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378903,22 +396538,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159808] = 8, + [173982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, + STATE(4426), 1, + sym_comment, + ACTIONS(1801), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1799), 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, + [174011] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2059), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4152), 1, + STATE(4427), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4627), 1, + STATE(4940), 1, sym_cell_path, - ACTIONS(1941), 13, + ACTIONS(2057), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378932,22 +396592,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159845] = 8, + [174048] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1897), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4153), 1, + STATE(4428), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4666), 1, + STATE(5006), 1, sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(1895), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378961,22 +396621,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159882] = 8, + [174085] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(2035), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4154), 1, + STATE(4429), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4676), 1, + STATE(4942), 1, sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(2033), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378990,22 +396650,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159919] = 8, + [174122] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(7724), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7726), 1, + aux_sym__immediate_decimal_token2, + STATE(4430), 1, + sym_comment, + ACTIONS(1773), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1771), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [174155] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1765), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4155), 1, + STATE(4431), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, - sym_path, - STATE(4680), 1, + STATE(4537), 1, sym_cell_path, - ACTIONS(1953), 13, + STATE(4874), 1, + sym_path, + ACTIONS(1763), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379019,22 +396706,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159956] = 8, + [174192] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, + ACTIONS(1865), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4156), 1, + STATE(4432), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4700), 1, + STATE(4995), 1, sym_cell_path, - ACTIONS(2064), 13, + ACTIONS(1861), 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, + [174229] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5822), 1, + anon_sym_DASH2, + STATE(4433), 1, + sym_comment, + ACTIONS(5824), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [174258] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + STATE(4434), 1, + sym_comment, + ACTIONS(1773), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379048,22 +396781,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159993] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [174287] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1905), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4157), 1, + STATE(4435), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4708), 1, + STATE(5007), 1, sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(1903), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379077,22 +396814,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160030] = 8, + [174324] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, + ACTIONS(1911), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4158), 1, + STATE(4436), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4714), 1, + STATE(5011), 1, sym_cell_path, - ACTIONS(1961), 13, + ACTIONS(1909), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379106,22 +396843,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160067] = 8, + [174361] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7677), 1, + anon_sym_DOT, + STATE(4437), 1, + sym_comment, + STATE(4451), 1, + aux_sym_cell_path_repeat1, + STATE(4579), 1, + sym_path, + ACTIONS(982), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(984), 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, + [174396] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(1919), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4159), 1, + STATE(4438), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4724), 1, + STATE(5013), 1, sym_cell_path, - ACTIONS(1965), 13, + ACTIONS(1917), 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, + [174433] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4439), 1, + sym_comment, + ACTIONS(1002), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1000), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [174462] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4440), 1, + sym_comment, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7728), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379135,22 +396948,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160104] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [174493] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7364), 1, + ACTIONS(1927), 1, + sym__space, + ACTIONS(7706), 1, anon_sym_DOT, - ACTIONS(7368), 1, + STATE(4441), 1, + sym_comment, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(5014), 1, + sym_cell_path, + ACTIONS(1925), 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, + [174530] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1931), 1, sym__space, - STATE(4160), 1, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4442), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4643), 1, + STATE(5015), 1, sym_cell_path, - ACTIONS(7366), 13, + ACTIONS(1929), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379164,22 +397009,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160141] = 8, + [174567] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4443), 1, + sym_comment, + ACTIONS(1006), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [174596] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(1935), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4161), 1, + STATE(4444), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4731), 1, + STATE(5022), 1, sym_cell_path, - ACTIONS(1969), 13, + ACTIONS(1933), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379193,17 +397063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160178] = 5, + [174633] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4883), 1, + ACTIONS(7712), 1, anon_sym_DOT_DOT2, - STATE(4162), 1, + STATE(4445), 1, sym_comment, - ACTIONS(4885), 2, + ACTIONS(7714), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7347), 15, + ACTIONS(7637), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379219,22 +397089,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160209] = 8, + [174664] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1895), 1, - sym__space, - ACTIONS(7364), 1, - anon_sym_DOT, - STATE(4163), 1, + STATE(4446), 1, sym_comment, - STATE(4227), 1, - aux_sym_cell_path_repeat1, - STATE(4580), 1, - sym_path, - STATE(4683), 1, - sym_cell_path, - ACTIONS(1893), 13, + ACTIONS(1820), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 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, + [174693] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4447), 1, + sym_comment, + ACTIONS(998), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(996), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379246,20 +397136,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, - [160246] = 4, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [174722] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4164), 1, + STATE(4448), 1, sym_comment, - ACTIONS(1787), 5, - ts_builtin_sym_end, + ACTIONS(1024), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1785), 13, + ACTIONS(1022), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379271,24 +397160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [160275] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1887), 1, - sym__space, - ACTIONS(7364), 1, anon_sym_DOT, - STATE(4165), 1, + [174751] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + STATE(4449), 1, sym_comment, - STATE(4227), 1, - aux_sym_cell_path_repeat1, - STATE(4580), 1, - sym_path, - STATE(4732), 1, - sym_cell_path, - ACTIONS(1885), 13, + ACTIONS(1801), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379302,20 +397185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160312] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(4166), 1, - sym_comment, - ACTIONS(2282), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2286), 13, + anon_sym_LPAREN2, + [174780] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1955), 1, + sym__space, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4450), 1, + sym_comment, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4890), 1, + sym_cell_path, + ACTIONS(1953), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379329,20 +397218,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160345] = 5, + [174817] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7341), 1, - aux_sym__immediate_decimal_token2, - STATE(4167), 1, - sym_comment, - ACTIONS(1785), 4, - sym_identifier, + ACTIONS(7730), 1, + anon_sym_DOT, + STATE(4579), 1, + sym_path, + ACTIONS(975), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 13, + STATE(4451), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(977), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -379352,48 +397243,48 @@ 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, - [160376] = 4, + [174850] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5695), 1, - anon_sym_DASH2, - STATE(4168), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(7696), 1, + aux_sym__immediate_decimal_token2, + STATE(4452), 1, sym_comment, - ACTIONS(5697), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(1781), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160405] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [174881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, + ACTIONS(2220), 1, anon_sym_LPAREN2, - ACTIONS(2296), 1, + ACTIONS(2222), 1, aux_sym_unquoted_token4, - STATE(4169), 1, + STATE(4453), 1, sym_comment, - ACTIONS(2290), 3, + ACTIONS(1034), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2294), 13, + ACTIONS(1036), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379407,20 +397298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160438] = 6, + [174914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(4170), 1, + ACTIONS(7733), 1, + anon_sym_DOT, + ACTIONS(7735), 1, + aux_sym__immediate_decimal_token2, + STATE(4454), 1, sym_comment, - ACTIONS(2298), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2300), 13, + ACTIONS(1781), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1779), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379434,24 +397324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160471] = 8, + aux_sym_unquoted_token2, + [174947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(7370), 1, - anon_sym_DOT_DOT2, - STATE(4171), 1, + STATE(4455), 1, sym_comment, - ACTIONS(1836), 2, + ACTIONS(988), 4, ts_builtin_sym_end, sym__space, - ACTIONS(7372), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1828), 11, + ACTIONS(986), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379463,18 +397347,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, - [160508] = 5, - ACTIONS(251), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [174976] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4883), 1, + STATE(4456), 1, + sym_comment, + ACTIONS(1020), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1018), 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, - STATE(4172), 1, + anon_sym_DOT, + [175005] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4457), 1, sym_comment, - ACTIONS(4885), 2, + ACTIONS(1016), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7347), 15, - ts_builtin_sym_end, + ACTIONS(1014), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379486,22 +397396,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_and2, - anon_sym_xor2, - anon_sym_or2, - [160539] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [175034] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7374), 1, + ACTIONS(2043), 1, + sym__space, + ACTIONS(7706), 1, anon_sym_DOT, - ACTIONS(7376), 1, - aux_sym__immediate_decimal_token2, - STATE(4173), 1, + STATE(4458), 1, sym_comment, - ACTIONS(1787), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 14, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4992), 1, + sym_cell_path, + ACTIONS(2041), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379515,15 +397429,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, - [160572] = 4, + [175071] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, + ACTIONS(1818), 1, aux_sym_unquoted_token2, - STATE(4174), 1, + STATE(4459), 1, sym_comment, - ACTIONS(1803), 17, + ACTIONS(1820), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379541,73 +397454,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [160601] = 5, + [175100] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7378), 1, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + ACTIONS(7737), 1, aux_sym__immediate_decimal_token2, - STATE(4175), 1, + STATE(4460), 1, sym_comment, - ACTIONS(1801), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 13, - anon_sym_EQ, + ACTIONS(1801), 16, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [175131] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4461), 1, + sym_comment, + ACTIONS(1781), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160632] = 4, + ACTIONS(1779), 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, + [175160] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5691), 1, - anon_sym_DASH2, - STATE(4176), 1, + ACTIONS(7667), 1, + aux_sym__immediate_decimal_token2, + STATE(4462), 1, sym_comment, - ACTIONS(5693), 17, - anon_sym_EQ, + ACTIONS(1779), 4, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160661] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175191] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(975), 1, - sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4177), 1, + ACTIONS(7741), 1, + sym__space, + STATE(4463), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4252), 1, - sym_cell_path, - STATE(4580), 1, + STATE(4874), 1, sym_path, - ACTIONS(973), 13, + STATE(5012), 1, + sym_cell_path, + ACTIONS(7739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379621,16 +397560,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160698] = 5, + [175228] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(4178), 1, + STATE(4464), 1, sym_comment, - ACTIONS(1851), 16, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7728), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379647,18 +397586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160729] = 4, - ACTIONS(3), 1, + [175259] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4179), 1, - sym_comment, - ACTIONS(1795), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(4149), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1793), 13, + STATE(4465), 1, + sym_comment, + STATE(8202), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7728), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379670,22 +397607,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, - [160758] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [175290] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(1842), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(4180), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(7743), 1, + anon_sym_DOT_DOT2, + STATE(4466), 1, sym_comment, - ACTIONS(1038), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(1040), 13, + ACTIONS(1848), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7745), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1840), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379697,24 +397641,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, - [160791] = 8, + [175327] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(1959), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4181), 1, + STATE(4467), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4793), 1, + STATE(4896), 1, sym_cell_path, - ACTIONS(1889), 13, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379728,18 +397670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [160828] = 4, - ACTIONS(3), 1, + [175364] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4182), 1, - sym_comment, - ACTIONS(1803), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(1842), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1801), 13, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4468), 1, + sym_comment, + ACTIONS(2294), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379751,67 +397691,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, - [160857] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5703), 1, - anon_sym_DASH2, - STATE(4183), 1, - sym_comment, - ACTIONS(5705), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [160886] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [175395] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7380), 1, - anon_sym_QMARK2, - STATE(4184), 1, - sym_comment, - ACTIONS(992), 4, - ts_builtin_sym_end, + ACTIONS(1947), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(990), 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, + ACTIONS(7706), 1, anon_sym_DOT, - [160917] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1824), 1, - aux_sym_unquoted_token2, - STATE(4185), 1, + STATE(4469), 1, sym_comment, - ACTIONS(1826), 17, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4887), 1, + sym_cell_path, + ACTIONS(1945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379825,50 +397725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [160946] = 7, + [175432] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7313), 1, - anon_sym_DOT, - STATE(4186), 1, - sym_comment, - STATE(4190), 1, - aux_sym_cell_path_repeat1, - STATE(4361), 1, - sym_path, - ACTIONS(986), 2, - anon_sym_DASH2, + ACTIONS(7712), 1, anon_sym_DOT_DOT2, - ACTIONS(988), 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, - [160981] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4187), 1, + STATE(4470), 1, sym_comment, - ACTIONS(1826), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7714), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 13, + ACTIONS(7637), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379880,19 +397748,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, - aux_sym_unquoted_token2, - [161010] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [175463] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4188), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(4471), 1, sym_comment, - ACTIONS(2247), 4, + ACTIONS(2254), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2249), 14, + ACTIONS(2258), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379906,17 +397778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - [161039] = 5, + [175496] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4189), 1, + ACTIONS(7747), 1, + anon_sym_DOT_DOT2, + STATE(4472), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7382), 16, + ACTIONS(7749), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2078), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379928,48 +397801,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161070] = 6, + [175527] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7384), 1, - anon_sym_DOT, - STATE(4361), 1, - sym_path, - ACTIONS(979), 2, + ACTIONS(5826), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(4190), 2, + STATE(4473), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(981), 13, + ACTIONS(5828), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161103] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [175556] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4191), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + STATE(4474), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7382), 16, + ACTIONS(1781), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379986,22 +397853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161134] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [175585] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2046), 1, - sym__space, - ACTIONS(7364), 1, - anon_sym_DOT, - STATE(4192), 1, + ACTIONS(7751), 1, + anon_sym_DOT_DOT2, + STATE(4475), 1, sym_comment, - STATE(4227), 1, - aux_sym_cell_path_repeat1, - STATE(4580), 1, - sym_path, - STATE(4638), 1, - sym_cell_path, - ACTIONS(2044), 13, + ACTIONS(7753), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380013,19 +397877,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, - [161171] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [175616] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, aux_sym_unquoted_token2, - ACTIONS(7317), 1, - aux_sym__immediate_decimal_token2, - STATE(4193), 1, + STATE(4476), 1, sym_comment, - ACTIONS(1787), 16, - ts_builtin_sym_end, + ACTIONS(1848), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380037,20 +397901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [161202] = 5, + [175647] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4194), 1, + ACTIONS(7755), 1, + anon_sym_DOT_DOT2, + STATE(4477), 1, sym_comment, - STATE(7711), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7382), 16, + ACTIONS(7757), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2137), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380062,21 +397929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161233] = 4, + [175678] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4195), 1, - sym_comment, - ACTIONS(1028), 3, + ACTIONS(2051), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 15, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4478), 1, + sym_comment, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4941), 1, + sym_cell_path, + ACTIONS(2049), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380090,20 +397961,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [161262] = 5, - ACTIONS(251), 1, + [175715] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4883), 1, - anon_sym_DOT_DOT2, - STATE(4196), 1, + ACTIONS(2055), 1, + sym__space, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4479), 1, sym_comment, - ACTIONS(4885), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7347), 15, - ts_builtin_sym_end, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(4949), 1, + sym_cell_path, + ACTIONS(2053), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380115,50 +397988,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_and2, - anon_sym_xor2, - anon_sym_or2, - [161293] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5684), 1, - anon_sym_DASH2, - STATE(4197), 1, - sym_comment, - ACTIONS(5686), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [161322] = 8, + [175752] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2042), 1, + ACTIONS(1951), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4198), 1, + STATE(4480), 1, sym_comment, - STATE(4227), 1, + STATE(4517), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - STATE(4658), 1, + STATE(4891), 1, sym_cell_path, - ACTIONS(2040), 13, + ACTIONS(1949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380172,16 +398019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161359] = 5, - ACTIONS(251), 1, + [175789] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(4199), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(4481), 1, sym_comment, - ACTIONS(2280), 16, + ACTIONS(2272), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2274), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380195,19 +398046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [161390] = 5, - ACTIONS(251), 1, + [175822] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(4200), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(4482), 1, sym_comment, - ACTIONS(1836), 16, + ACTIONS(2234), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2238), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380221,20 +398073,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [161421] = 5, + [175855] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - ACTIONS(7387), 1, + ACTIONS(7759), 1, aux_sym__immediate_decimal_token2, - STATE(4201), 1, + STATE(4483), 1, + sym_comment, + ACTIONS(1799), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1801), 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, + [175886] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4484), 1, sym_comment, - ACTIONS(1803), 16, + ACTIONS(1773), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380246,20 +398122,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [161452] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [175915] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4202), 1, - sym_comment, - ACTIONS(1024), 3, + ACTIONS(1939), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1022), 15, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4485), 1, + sym_comment, + STATE(4517), 1, + aux_sym_cell_path_repeat1, + STATE(4874), 1, + sym_path, + STATE(5023), 1, + sym_cell_path, + ACTIONS(1937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380273,18 +398153,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [175952] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4486), 1, + sym_comment, + ACTIONS(996), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - [161481] = 4, + ACTIONS(998), 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, + [175980] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4203), 1, - sym_comment, - ACTIONS(1020), 3, + ACTIONS(2078), 1, sym__space, + ACTIONS(7761), 1, + anon_sym_DOT_DOT2, + STATE(4487), 1, + sym_comment, + ACTIONS(7763), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 15, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380298,19 +398203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [161510] = 4, + [176012] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4204), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4488), 1, sym_comment, - ACTIONS(1010), 4, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5209), 1, + sym_cell_path, + ACTIONS(2043), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 14, + ACTIONS(2041), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380322,20 +398231,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [161539] = 4, - ACTIONS(3), 1, + [176048] = 12, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4205), 1, + ACTIONS(2571), 1, + anon_sym_COMMA, + ACTIONS(7651), 1, + anon_sym_EQ, + ACTIONS(7653), 1, + sym__newline, + ACTIONS(7655), 1, + anon_sym_COLON, + ACTIONS(7769), 1, + anon_sym_DASH2, + STATE(4489), 1, sym_comment, - ACTIONS(1006), 4, + STATE(4592), 1, + aux_sym_parameter_repeat1, + STATE(5507), 1, + aux_sym_parameter_repeat2, + STATE(7307), 1, + aux_sym_shebang_repeat1, + STATE(5454), 2, + sym_param_type, + sym_param_value, + ACTIONS(7767), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176092] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(4490), 1, + sym_comment, + ACTIONS(1838), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380347,20 +398285,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [161568] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [176122] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2571), 1, + anon_sym_COMMA, + ACTIONS(7651), 1, + anon_sym_EQ, + ACTIONS(7653), 1, + sym__newline, + ACTIONS(7655), 1, + anon_sym_COLON, + ACTIONS(7773), 1, + anon_sym_DASH2, + STATE(4491), 1, + sym_comment, + STATE(4592), 1, + aux_sym_parameter_repeat1, + STATE(5515), 1, + aux_sym_parameter_repeat2, + STATE(7307), 1, + aux_sym_shebang_repeat1, + STATE(5454), 2, + sym_param_type, + sym_param_value, + ACTIONS(7771), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176166] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4206), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4492), 1, sym_comment, - ACTIONS(998), 4, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4759), 1, + sym_cell_path, + STATE(4964), 1, + sym_path, + ACTIONS(971), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(996), 14, + ACTIONS(969), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380372,25 +398348,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [161597] = 8, + [176202] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4493), 1, + sym_comment, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7728), 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, + [176232] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1775), 1, - sym__space, - ACTIONS(7364), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4207), 1, + STATE(4494), 1, sym_comment, - STATE(4227), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4273), 1, - sym_cell_path, - STATE(4580), 1, + STATE(4964), 1, sym_path, - ACTIONS(1771), 13, + STATE(5125), 1, + sym_cell_path, + ACTIONS(1919), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1917), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380402,19 +398401,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, - [161634] = 4, + [176268] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4208), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4495), 1, sym_comment, - ACTIONS(1002), 4, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5135), 1, + sym_cell_path, + ACTIONS(1865), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 14, + ACTIONS(1861), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380426,25 +398429,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, - [161663] = 8, + [176304] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1903), 1, - sym__space, - ACTIONS(7364), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4209), 1, + STATE(4496), 1, sym_comment, - STATE(4227), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4964), 1, sym_path, - STATE(4785), 1, + STATE(5164), 1, sym_cell_path, - ACTIONS(1901), 13, + ACTIONS(1955), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1953), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380456,68 +398457,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161700] = 4, + [176340] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5680), 1, - anon_sym_DASH2, - STATE(4210), 1, + ACTIONS(7775), 1, + anon_sym_QMARK2, + STATE(4497), 1, sym_comment, - ACTIONS(5682), 17, + ACTIONS(1008), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1010), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [161729] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [176370] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5707), 1, - anon_sym_DASH2, - STATE(4211), 1, + ACTIONS(7777), 1, + anon_sym_QMARK2, + STATE(4498), 1, sym_comment, - ACTIONS(5709), 17, + ACTIONS(990), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(992), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [161758] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [176400] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4499), 1, + sym_comment, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5210), 1, + sym_cell_path, + ACTIONS(7741), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7739), 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, + [176436] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1779), 1, aux_sym_unquoted_token2, - ACTIONS(2231), 1, + STATE(4500), 1, + sym_comment, + ACTIONS(1781), 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, - STATE(4212), 1, + [176464] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4501), 1, sym_comment, - ACTIONS(2233), 16, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7728), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380529,27 +398581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161789] = 8, + [176494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, - sym__space, - ACTIONS(7364), 1, - anon_sym_DOT, - STATE(4213), 1, + STATE(4502), 1, sym_comment, - STATE(4227), 1, - aux_sym_cell_path_repeat1, - STATE(4580), 1, - sym_path, - STATE(4646), 1, - sym_cell_path, - ACTIONS(1905), 13, + ACTIONS(2242), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2244), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380561,24 +398607,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, - [161826] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [176522] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - sym__space, - ACTIONS(7364), 1, - anon_sym_DOT, - STATE(4214), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(4503), 1, sym_comment, - STATE(4227), 1, - aux_sym_cell_path_repeat1, - STATE(4232), 1, - sym_cell_path, - STATE(4580), 1, - sym_path, - ACTIONS(1777), 13, + ACTIONS(1699), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380592,22 +398629,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161863] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [176550] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__space, - ACTIONS(7364), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4215), 1, + STATE(4504), 1, sym_comment, - STATE(4227), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4964), 1, sym_path, - STATE(4722), 1, + STATE(5111), 1, sym_cell_path, - ACTIONS(1909), 13, + ACTIONS(1881), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380619,21 +398660,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, - [161900] = 6, + [176586] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7391), 1, - aux_sym__immediate_decimal_token2, - STATE(4216), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4505), 1, sym_comment, - ACTIONS(1795), 2, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5114), 1, + sym_cell_path, + ACTIONS(1885), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1793), 14, + ACTIONS(1883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380645,17 +398688,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, - [161933] = 4, + [176622] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, + ACTIONS(1659), 1, aux_sym_unquoted_token2, - STATE(4217), 1, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(4506), 1, sym_comment, - ACTIONS(1787), 17, + ACTIONS(2270), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380667,28 +398710,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [161962] = 8, + [176652] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + anon_sym_DOT, + ACTIONS(7783), 1, + anon_sym_QMARK2, + STATE(1733), 1, + aux_sym_cell_path_repeat1, + STATE(1898), 1, + sym_path, + STATE(4507), 1, + sym_comment, + STATE(5452), 1, + sym_cell_path, + ACTIONS(7779), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7781), 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, + [176690] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2013), 1, + anon_sym_DQUOTE, + ACTIONS(2017), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2019), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2027), 1, + sym_raw_string_begin, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(5255), 1, + anon_sym_LPAREN, + ACTIONS(7785), 1, + sym__unquoted_naive, + STATE(4508), 1, + sym_comment, + STATE(4967), 1, + sym__inter_single_quotes, + STATE(4983), 1, + sym__inter_double_quotes, + ACTIONS(2015), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4655), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4908), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [176738] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7364), 1, + ACTIONS(7765), 1, anon_sym_DOT, - ACTIONS(7395), 1, - sym__space, - STATE(4218), 1, + STATE(4509), 1, sym_comment, - STATE(4227), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4964), 1, sym_path, - STATE(4659), 1, + STATE(5237), 1, sym_cell_path, - ACTIONS(7393), 13, + ACTIONS(1959), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380700,18 +398804,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, - [161999] = 5, - ACTIONS(251), 1, + [176774] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, + ACTIONS(2256), 1, anon_sym_LPAREN2, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(4219), 1, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(4510), 1, sym_comment, - ACTIONS(2243), 16, + ACTIONS(2254), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2258), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380723,19 +398830,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_and2, - anon_sym_xor2, - anon_sym_or2, - [162030] = 4, + [176806] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1793), 1, + ACTIONS(1771), 1, aux_sym_unquoted_token2, - STATE(4220), 1, + STATE(4511), 1, sym_comment, - ACTIONS(1795), 17, + ACTIONS(1773), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380747,28 +398850,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [162059] = 8, + [176834] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, - sym__space, - ACTIONS(7364), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4221), 1, + STATE(4512), 1, sym_comment, - STATE(4227), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, - sym_path, - STATE(4754), 1, + STATE(4772), 1, sym_cell_path, - ACTIONS(1917), 13, + STATE(4964), 1, + sym_path, + ACTIONS(1765), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1763), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380780,55 +398882,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, - [162096] = 8, + [176870] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2038), 1, - sym__space, - ACTIONS(7364), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4222), 1, + STATE(4513), 1, sym_comment, - STATE(4227), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4964), 1, sym_path, - STATE(4768), 1, + STATE(5116), 1, sym_cell_path, - ACTIONS(2036), 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, - [162133] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(7397), 1, - anon_sym_DOT_DOT2, - STATE(4223), 1, - sym_comment, - ACTIONS(1851), 2, + ACTIONS(1889), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7399), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1843), 11, + ACTIONS(1887), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380840,19 +398910,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, - [162170] = 5, - ACTIONS(3), 1, + [176906] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7401), 1, - anon_sym_QMARK2, - STATE(4224), 1, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + STATE(4514), 1, sym_comment, - ACTIONS(1014), 4, + ACTIONS(1801), 16, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1012), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380864,22 +398930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [162201] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [176934] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7403), 1, - anon_sym_DOT, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token2, - STATE(4225), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(4515), 1, sym_comment, - ACTIONS(1787), 3, + ACTIONS(2230), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380891,22 +398956,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, - aux_sym_unquoted_token2, - [162233] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(4226), 1, - sym_comment, - ACTIONS(2298), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2300), 12, - ts_builtin_sym_end, + [176964] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + sym__space, + ACTIONS(7787), 1, + anon_sym_DOT_DOT2, + STATE(4516), 1, + sym_comment, + ACTIONS(7789), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2098), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380918,20 +398983,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, - [162265] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176996] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(988), 1, + ACTIONS(984), 1, sym__space, - ACTIONS(7364), 1, + ACTIONS(7706), 1, anon_sym_DOT, - STATE(4227), 1, + STATE(4517), 1, sym_comment, - STATE(4235), 1, + STATE(4576), 1, aux_sym_cell_path_repeat1, - STATE(4580), 1, + STATE(4874), 1, sym_path, - ACTIONS(986), 13, + ACTIONS(982), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380945,18 +399012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162299] = 5, + [177030] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7407), 1, - anon_sym_QMARK2, - STATE(4228), 1, + STATE(4518), 1, sym_comment, - ACTIONS(990), 3, + ACTIONS(1000), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(992), 13, + ACTIONS(1002), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -380968,44 +399033,26 @@ 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, - [162329] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7409), 1, anon_sym_QMARK2, - STATE(4229), 1, - sym_comment, - ACTIONS(1012), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1014), 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, - [162359] = 5, - ACTIONS(251), 1, + [177058] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LPAREN2, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(4230), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4519), 1, sym_comment, - ACTIONS(2243), 15, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5126), 1, + sym_cell_path, + ACTIONS(1927), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1925), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381017,51 +399064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [162389] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_COMMA, - ACTIONS(7325), 1, - anon_sym_EQ, - ACTIONS(7327), 1, - sym__newline, - ACTIONS(7329), 1, - anon_sym_COLON, - ACTIONS(7413), 1, - anon_sym_DASH2, - STATE(4231), 1, - sym_comment, - STATE(4272), 1, - aux_sym_parameter_repeat1, - STATE(5209), 1, - aux_sym_parameter_repeat2, - STATE(6474), 1, - aux_sym_shebang_repeat1, - STATE(5047), 2, - sym_param_type, - sym_param_value, - ACTIONS(7411), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [162433] = 4, + [177094] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4232), 1, - sym_comment, - ACTIONS(2195), 3, + ACTIONS(7793), 1, sym__space, + ACTIONS(7795), 1, + anon_sym_DOT_DOT2, + STATE(4520), 1, + sym_comment, + ACTIONS(7797), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2193), 14, + ACTIONS(7791), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381075,80 +399090,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [162461] = 6, - ACTIONS(3), 1, + [177126] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1040), 1, - sym__space, - ACTIONS(7415), 1, - anon_sym_DOT_DOT2, - STATE(4233), 1, + STATE(4521), 1, sym_comment, - ACTIONS(7417), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 13, + ACTIONS(1779), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [162493] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2158), 1, - anon_sym_DQUOTE, - ACTIONS(2162), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2164), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2172), 1, - sym_raw_string_begin, - ACTIONS(4315), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5164), 1, - anon_sym_LPAREN, - ACTIONS(7419), 1, - sym__unquoted_naive, - STATE(4234), 1, - sym_comment, - STATE(4933), 1, - sym__inter_single_quotes, - STATE(4935), 1, - sym__inter_double_quotes, - ACTIONS(2160), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4591), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4946), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [162541] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177154] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(981), 1, - sym__space, - ACTIONS(7421), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4580), 1, - sym_path, - STATE(4235), 2, + STATE(4522), 1, sym_comment, + STATE(4660), 1, aux_sym_cell_path_repeat1, - ACTIONS(979), 13, + STATE(4964), 1, + sym_path, + STATE(5117), 1, + sym_cell_path, + ACTIONS(1893), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1891), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381160,25 +399142,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, - [162573] = 8, - ACTIONS(3), 1, + [177190] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4236), 1, + ACTIONS(1818), 1, + aux_sym_unquoted_token2, + STATE(4523), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4831), 1, - sym_cell_path, - ACTIONS(1887), 2, + ACTIONS(1820), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(1885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381190,31 +399162,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, - [162609] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [177218] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2581), 1, + ACTIONS(2571), 1, anon_sym_COMMA, - ACTIONS(7325), 1, + ACTIONS(7651), 1, anon_sym_EQ, - ACTIONS(7327), 1, + ACTIONS(7653), 1, sym__newline, - ACTIONS(7329), 1, + ACTIONS(7655), 1, anon_sym_COLON, - ACTIONS(7428), 1, + ACTIONS(7801), 1, anon_sym_DASH2, - STATE(4237), 1, + STATE(4524), 1, sym_comment, - STATE(4240), 1, + STATE(4592), 1, aux_sym_parameter_repeat1, - STATE(5241), 1, + STATE(5520), 1, aux_sym_parameter_repeat2, - STATE(6474), 1, + STATE(7307), 1, aux_sym_shebang_repeat1, - STATE(5047), 2, + STATE(5454), 2, sym_param_type, sym_param_value, - ACTIONS(7426), 7, + ACTIONS(7799), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -381222,90 +399198,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162653] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5862), 1, - anon_sym_DOLLAR, - ACTIONS(7430), 1, - anon_sym_DQUOTE, - ACTIONS(7434), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7436), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7438), 1, - sym__unquoted_naive, - STATE(2502), 1, - sym__inter_double_quotes, - STATE(2532), 1, - sym__inter_single_quotes, - STATE(4238), 1, - sym_comment, - ACTIONS(7432), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5063), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [162701] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4239), 1, - sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7382), 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, - [162731] = 12, + [177262] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2581), 1, + ACTIONS(2571), 1, anon_sym_COMMA, - ACTIONS(7325), 1, + ACTIONS(7651), 1, anon_sym_EQ, - ACTIONS(7327), 1, + ACTIONS(7653), 1, sym__newline, - ACTIONS(7329), 1, + ACTIONS(7655), 1, anon_sym_COLON, - ACTIONS(7442), 1, + ACTIONS(7805), 1, anon_sym_DASH2, - STATE(4240), 1, - sym_comment, - STATE(4519), 1, + STATE(4524), 1, aux_sym_parameter_repeat1, - STATE(5219), 1, + STATE(4525), 1, + sym_comment, + STATE(5534), 1, aux_sym_parameter_repeat2, - STATE(6474), 1, + STATE(7307), 1, aux_sym_shebang_repeat1, - STATE(5047), 2, + STATE(5454), 2, sym_param_type, sym_param_value, - ACTIONS(7440), 7, + ACTIONS(7803), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -381313,41 +399230,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162775] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7376), 1, - aux_sym__immediate_decimal_token2, - STATE(4241), 1, - sym_comment, - ACTIONS(1787), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [162805] = 4, + [177306] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4242), 1, - sym_comment, - ACTIONS(1000), 3, + ACTIONS(1581), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1830), 1, anon_sym_DASH2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(7807), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1002), 14, + STATE(4526), 1, + sym_comment, + ACTIONS(7809), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1838), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381359,44 +399258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162833] = 4, + [177342] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, - sym_comment, - ACTIONS(2247), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2249), 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_LPAREN2, - [162861] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - STATE(4244), 1, + STATE(4527), 1, sym_comment, - ACTIONS(2233), 15, - ts_builtin_sym_end, + ACTIONS(1765), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1763), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381408,20 +399279,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_and2, - anon_sym_xor2, - anon_sym_or2, - [162891] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [177370] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4245), 1, + ACTIONS(2096), 1, + sym__space, + ACTIONS(7811), 1, + anon_sym_DOT_DOT2, + STATE(4528), 1, sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7382), 15, - ts_builtin_sym_end, + ACTIONS(7813), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381433,26 +399306,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_and2, - anon_sym_xor2, - anon_sym_or2, - [162921] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177402] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4246), 1, + STATE(4529), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4966), 1, + STATE(5260), 1, sym_cell_path, - ACTIONS(1891), 2, + ACTIONS(1951), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1889), 11, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381464,23 +399336,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, - [162957] = 8, + [177438] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 1, + STATE(4530), 1, + sym_comment, + ACTIONS(1004), 3, anon_sym_DASH2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(7444), 1, anon_sym_DOT_DOT2, - STATE(4247), 1, - sym_comment, - ACTIONS(7446), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1851), 11, + anon_sym_DOT, + ACTIONS(1006), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -381492,48 +399357,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162993] = 9, - ACTIONS(251), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177466] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(7765), 1, anon_sym_DOT, - ACTIONS(7452), 1, - anon_sym_QMARK2, - STATE(1681), 1, + STATE(4531), 1, + sym_comment, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(1921), 1, + STATE(4964), 1, sym_path, - STATE(4248), 1, - sym_comment, - STATE(5059), 1, + STATE(5109), 1, sym_cell_path, - ACTIONS(7448), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7450), 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, - [163031] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2187), 1, + ACTIONS(1877), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(7454), 1, - anon_sym_DOT_DOT2, - STATE(4249), 1, - sym_comment, - ACTIONS(7456), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 13, + ACTIONS(1875), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381545,21 +399388,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, - [163063] = 6, + [177502] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(1036), 1, sym__space, - ACTIONS(7458), 1, + ACTIONS(7795), 1, anon_sym_DOT_DOT2, - STATE(4250), 1, + STATE(4532), 1, sym_comment, - ACTIONS(7460), 2, + ACTIONS(7797), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2070), 13, + ACTIONS(1034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381573,19 +399414,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [163095] = 6, + [177534] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2084), 1, - sym__space, - ACTIONS(7462), 1, - anon_sym_DOT_DOT2, - STATE(4251), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4533), 1, sym_comment, - ACTIONS(7464), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 13, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5154), 1, + sym_cell_path, + ACTIONS(1947), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381597,18 +399442,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, - [163127] = 4, + [177570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, + STATE(4534), 1, sym_comment, - ACTIONS(1058), 3, + ACTIONS(2088), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1056), 14, + ACTIONS(2086), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381623,43 +399466,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [163155] = 6, + [177598] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(4253), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4535), 1, sym_comment, - ACTIONS(1038), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(1040), 12, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5103), 1, + sym_cell_path, + ACTIONS(2051), 2, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [163187] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7466), 1, - aux_sym__immediate_decimal_token2, - STATE(4254), 1, - sym_comment, - ACTIONS(1803), 2, sym__space, - anon_sym_LPAREN2, - ACTIONS(1801), 14, + ACTIONS(2049), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381671,26 +399494,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, - [163217] = 8, + [177634] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4255), 1, + STATE(4536), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4944), 1, + STATE(5106), 1, sym_cell_path, - ACTIONS(1903), 2, + ACTIONS(1943), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1901), 11, + ACTIONS(1941), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381702,16 +399522,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, - [163253] = 4, + [177670] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4256), 1, + STATE(4537), 1, sym_comment, - ACTIONS(2100), 3, + ACTIONS(2125), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 14, + ACTIONS(2123), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381726,23 +399546,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [163281] = 8, + [177698] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(4313), 1, + anon_sym_DOLLAR, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(7815), 1, + anon_sym_DQUOTE, + ACTIONS(7819), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7821), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7823), 1, + sym__unquoted_naive, + STATE(2164), 1, + sym__inter_single_quotes, + STATE(2170), 1, + sym__inter_double_quotes, + STATE(4538), 1, + sym_comment, + ACTIONS(7817), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5201), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [177746] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4257), 1, + STATE(4539), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4878), 1, + STATE(5105), 1, sym_cell_path, - ACTIONS(2038), 2, + ACTIONS(2055), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2036), 11, + ACTIONS(2053), 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, + [177782] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2571), 1, + anon_sym_COMMA, + ACTIONS(7651), 1, + anon_sym_EQ, + ACTIONS(7653), 1, + sym__newline, + ACTIONS(7655), 1, + anon_sym_COLON, + ACTIONS(7827), 1, + anon_sym_DASH2, + STATE(4491), 1, + aux_sym_parameter_repeat1, + STATE(4540), 1, + sym_comment, + STATE(5539), 1, + aux_sym_parameter_repeat2, + STATE(7307), 1, + aux_sym_shebang_repeat1, + STATE(5454), 2, + sym_param_type, + sym_param_value, + ACTIONS(7825), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177826] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7735), 1, + aux_sym__immediate_decimal_token2, + STATE(4541), 1, + sym_comment, + ACTIONS(1781), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1779), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381754,17 +399662,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, - [163317] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [177856] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4258), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4542), 1, sym_comment, - ACTIONS(1028), 4, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5119), 1, + sym_cell_path, + ACTIONS(1897), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1026), 13, + ACTIONS(1895), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381776,18 +399693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [163345] = 4, + [177892] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4259), 1, + STATE(4543), 1, sym_comment, - ACTIONS(1785), 3, + ACTIONS(986), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 14, + anon_sym_DOT, + ACTIONS(988), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -381799,26 +399714,54 @@ 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_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163373] = 8, + [177920] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4260), 1, + STATE(4544), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4446), 1, + STATE(4964), 1, + sym_path, + STATE(5127), 1, sym_cell_path, - STATE(4654), 1, + ACTIONS(1931), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1929), 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, + [177956] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4545), 1, + sym_comment, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, sym_path, - ACTIONS(975), 2, + STATE(5120), 1, + sym_cell_path, + ACTIONS(1905), 2, ts_builtin_sym_end, sym__space, - ACTIONS(973), 11, + ACTIONS(1903), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381830,23 +399773,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, - [163409] = 8, + [177992] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1828), 1, + STATE(4546), 1, + sym_comment, + ACTIONS(1771), 3, anon_sym_DASH2, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7468), 1, anon_sym_DOT_DOT2, - STATE(4261), 1, - sym_comment, - ACTIONS(7470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1836), 11, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -381858,16 +399794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163445] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178020] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4262), 1, + ACTIONS(7829), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token2, + STATE(4547), 1, sym_comment, - ACTIONS(2104), 3, + ACTIONS(1773), 3, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 14, + anon_sym_LPAREN2, + ACTIONS(1771), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381879,26 +399822,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, - [163473] = 8, + aux_sym_unquoted_token2, + [178052] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4263), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(4548), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4903), 1, - sym_cell_path, - ACTIONS(2042), 2, + ACTIONS(2272), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2274), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2040), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381910,57 +399849,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, - [163509] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2017), 1, - anon_sym_DQUOTE, - ACTIONS(2021), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2023), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2031), 1, - sym_raw_string_begin, - ACTIONS(4351), 1, - anon_sym_DOLLAR, - ACTIONS(5152), 1, - anon_sym_LPAREN, - ACTIONS(7472), 1, - sym__unquoted_naive, - STATE(4264), 1, - sym_comment, - STATE(4693), 1, - sym__inter_single_quotes, - STATE(4694), 1, - sym__inter_double_quotes, - ACTIONS(2019), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4475), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4660), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [163557] = 8, + [178084] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4265), 1, + STATE(4549), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4911), 1, + STATE(5130), 1, sym_cell_path, - ACTIONS(7395), 2, + ACTIONS(1935), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7393), 11, + ACTIONS(1933), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381972,79 +399877,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, - [163593] = 4, + [178120] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4266), 1, - sym_comment, - ACTIONS(1793), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 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, + ACTIONS(1842), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163621] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_COMMA, - ACTIONS(7325), 1, - anon_sym_EQ, - ACTIONS(7327), 1, - sym__newline, - ACTIONS(7329), 1, - anon_sym_COLON, - ACTIONS(7476), 1, - anon_sym_DASH2, - STATE(4267), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4550), 1, sym_comment, - STATE(4519), 1, - aux_sym_parameter_repeat1, - STATE(5242), 1, - aux_sym_parameter_repeat2, - STATE(6474), 1, - aux_sym_shebang_repeat1, - STATE(5047), 2, - sym_param_type, - sym_param_value, - ACTIONS(7474), 7, - sym_identifier, + ACTIONS(2294), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163665] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [178150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4268), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(4551), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4852), 1, - sym_cell_path, - ACTIONS(1907), 2, + ACTIONS(2234), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2238), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1905), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382056,23 +399928,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, - [163701] = 8, + [178182] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4269), 1, + STATE(4552), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4926), 1, + STATE(4713), 1, sym_cell_path, - ACTIONS(1911), 2, + STATE(4964), 1, + sym_path, + ACTIONS(1761), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1909), 11, + ACTIONS(1757), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382084,17 +399956,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, - [163737] = 4, + [178218] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, + ACTIONS(7833), 1, + anon_sym_DOT, + ACTIONS(7835), 1, + aux_sym__immediate_decimal_token2, + STATE(4553), 1, sym_comment, - ACTIONS(1024), 4, + ACTIONS(1781), 3, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1022), 13, + anon_sym_LPAREN2, + ACTIONS(1779), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382106,19 +399981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [163765] = 4, + aux_sym_unquoted_token2, + [178250] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4271), 1, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4554), 1, sym_comment, - ACTIONS(1020), 4, + STATE(4660), 1, + aux_sym_cell_path_repeat1, + STATE(4964), 1, + sym_path, + STATE(5124), 1, + sym_cell_path, + ACTIONS(1911), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 13, + ACTIONS(1909), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382130,50 +400010,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [163793] = 12, - ACTIONS(251), 1, + [178286] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_COMMA, - ACTIONS(7325), 1, - anon_sym_EQ, - ACTIONS(7327), 1, - sym__newline, - ACTIONS(7329), 1, - anon_sym_COLON, - ACTIONS(7480), 1, - anon_sym_DASH2, - STATE(4272), 1, + ACTIONS(2137), 1, + sym__space, + ACTIONS(7837), 1, + anon_sym_DOT_DOT2, + STATE(4555), 1, sym_comment, - STATE(4519), 1, - aux_sym_parameter_repeat1, - STATE(5240), 1, - aux_sym_parameter_repeat2, - STATE(6474), 1, - aux_sym_shebang_repeat1, - STATE(5047), 2, - sym_param_type, - sym_param_value, - ACTIONS(7478), 7, - sym_identifier, + ACTIONS(7839), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2131), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163837] = 4, + anon_sym_RBRACE, + [178318] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4273), 1, + STATE(4556), 1, sym_comment, - ACTIONS(1779), 3, + ACTIONS(1024), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1777), 14, + ACTIONS(1022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382185,26 +400058,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, - [163865] = 8, + anon_sym_DOT, + [178346] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4274), 1, + STATE(4557), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4912), 1, + STATE(5072), 1, sym_cell_path, - ACTIONS(1919), 2, + ACTIONS(2035), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1917), 11, + ACTIONS(2033), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382216,23 +400088,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, - [163901] = 8, + [178382] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(6029), 1, + anon_sym_LPAREN, + ACTIONS(6031), 1, + anon_sym_DOLLAR, + ACTIONS(7841), 1, + anon_sym_DQUOTE, + ACTIONS(7845), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7847), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7849), 1, + sym__unquoted_naive, + STATE(2621), 1, + sym__inter_single_quotes, + STATE(2630), 1, + sym__inter_double_quotes, + STATE(4558), 1, + sym_comment, + ACTIONS(7843), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5352), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [178430] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4275), 1, + STATE(4559), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4799), 1, + STATE(5129), 1, sym_cell_path, - ACTIONS(1923), 2, + ACTIONS(2059), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1921), 11, + ACTIONS(2057), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382244,23 +400150,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, - [163937] = 8, - ACTIONS(3), 1, + [178466] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4276), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4560), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4804), 1, - sym_cell_path, - ACTIONS(1927), 2, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7728), 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, + [178496] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4561), 1, + sym_comment, + ACTIONS(1054), 3, sym__space, - ACTIONS(1925), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1052), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382272,23 +400196,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, - [163973] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [178524] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4277), 1, + STATE(4562), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4820), 1, + STATE(5058), 1, sym_cell_path, - ACTIONS(1931), 2, + ACTIONS(1873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1929), 11, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382300,23 +400227,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, - [164009] = 8, + [178560] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4278), 1, + ACTIONS(2181), 1, + anon_sym_DQUOTE, + ACTIONS(2185), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2187), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2195), 1, + sym_raw_string_begin, + ACTIONS(4379), 1, + anon_sym_DOLLAR, + ACTIONS(5265), 1, + anon_sym_LPAREN, + ACTIONS(7851), 1, + sym__unquoted_naive, + STATE(4563), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4832), 1, - sym_cell_path, - ACTIONS(1935), 2, + STATE(5066), 1, + sym__inter_single_quotes, + STATE(5068), 1, + sym__inter_double_quotes, + ACTIONS(2183), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4801), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5076), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [178608] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4564), 1, + sym_comment, + ACTIONS(1848), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1933), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382328,18 +400283,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, - [164045] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [178638] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4279), 1, + STATE(4565), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4836), 1, + STATE(5131), 1, sym_cell_path, ACTIONS(1939), 2, ts_builtin_sym_end, @@ -382356,23 +400314,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, - [164081] = 8, + [178674] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_DASH2, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7853), 1, + anon_sym_DOT_DOT2, + STATE(4566), 1, + sym_comment, + ACTIONS(7855), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1848), 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, + [178710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4280), 1, + STATE(4567), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4839), 1, - sym_cell_path, - ACTIONS(1943), 2, + ACTIONS(1020), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1941), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1018), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382384,23 +400364,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, - [164117] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [178738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4281), 1, + ACTIONS(7857), 1, + aux_sym__immediate_decimal_token2, + STATE(4568), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4842), 1, - sym_cell_path, - ACTIONS(1947), 2, - ts_builtin_sym_end, + ACTIONS(1801), 2, sym__space, - ACTIONS(1945), 11, + anon_sym_LPAREN2, + ACTIONS(1799), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382412,23 +400388,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, - [164153] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [178768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4282), 1, + STATE(4569), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4843), 1, - sym_cell_path, - ACTIONS(1951), 2, + ACTIONS(1016), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1949), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1014), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [178796] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4570), 1, + sym_comment, + ACTIONS(2084), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2082), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382440,25 +400436,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164189] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [178824] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4571), 1, + sym_comment, + ACTIONS(1799), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1801), 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, + [178852] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4572), 1, + sym_comment, + ACTIONS(1818), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1820), 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, + [178880] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(4980), 1, anon_sym_DOT, - ACTIONS(7486), 1, + ACTIONS(7863), 1, anon_sym_QMARK2, - STATE(1681), 1, + STATE(1733), 1, aux_sym_cell_path_repeat1, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(4283), 1, + STATE(4573), 1, sym_comment, - STATE(5069), 1, + STATE(5377), 1, sym_cell_path, - ACTIONS(7482), 2, + ACTIONS(7859), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7484), 10, + ACTIONS(7861), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -382469,23 +400516,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [164227] = 8, + [178918] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4284), 1, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(4574), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4849), 1, - sym_cell_path, - ACTIONS(1955), 2, + ACTIONS(1034), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1036), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1953), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382497,23 +400542,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, - [164263] = 8, + [178950] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7765), 1, anon_sym_DOT, - STATE(4285), 1, + STATE(4575), 1, sym_comment, - STATE(4397), 1, + STATE(4660), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(4964), 1, sym_path, - STATE(4857), 1, + STATE(5136), 1, sym_cell_path, - ACTIONS(2066), 2, + ACTIONS(7710), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2064), 11, + ACTIONS(7708), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382525,23 +400570,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, - [164299] = 8, + [178986] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(977), 1, + sym__space, + ACTIONS(7865), 1, anon_sym_DOT, - STATE(4286), 1, + STATE(4874), 1, + sym_path, + STATE(4576), 2, sym_comment, - STATE(4397), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4868), 1, - sym_cell_path, - ACTIONS(1959), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1957), 11, + ACTIONS(975), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382553,16 +400594,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, - [164335] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179018] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4287), 1, + ACTIONS(7870), 1, + anon_sym_and2, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4577), 1, + sym_comment, + ACTIONS(7868), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [179049] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(969), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4578), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(4833), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(971), 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, + [179084] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4579), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(1022), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1826), 14, + anon_sym_DOT, + ACTIONS(1024), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -382574,26 +400669,66 @@ 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, - [164363] = 8, - ACTIONS(3), 1, + [179111] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7424), 1, + STATE(4580), 1, + sym_comment, + ACTIONS(1018), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4288), 1, + 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, + [179138] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4581), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4879), 1, - sym_cell_path, - ACTIONS(1963), 2, - ts_builtin_sym_end, + ACTIONS(1014), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1016), 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, + [179165] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2258), 1, sym__space, - ACTIONS(1961), 11, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(4582), 1, + sym_comment, + ACTIONS(2254), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382605,23 +400740,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, - [164399] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4289), 1, - sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4894), 1, - sym_cell_path, - ACTIONS(1967), 2, - ts_builtin_sym_end, + ACTIONS(1036), 1, sym__space, - ACTIONS(1965), 11, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(4583), 1, + sym_comment, + ACTIONS(1034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382633,15 +400765,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, - [164435] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179227] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - STATE(4290), 1, + STATE(4584), 1, sym_comment, - ACTIONS(1787), 16, - ts_builtin_sym_end, + STATE(4709), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382653,27 +400786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [164463] = 8, - ACTIONS(3), 1, + [179254] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4291), 1, + STATE(4585), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4900), 1, - sym_cell_path, - ACTIONS(1971), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1969), 11, + STATE(4710), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382685,18 +400809,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, - [164499] = 5, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [179281] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4292), 1, - sym_comment, - STATE(7578), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7382), 15, - ts_builtin_sym_end, + ACTIONS(7878), 1, sym__newline, + ACTIONS(7881), 1, + anon_sym_and2, + STATE(4586), 1, + sym_comment, + STATE(4714), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382707,24 +400835,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [164529] = 6, - ACTIONS(3), 1, + [179312] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7488), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7490), 1, - aux_sym__immediate_decimal_token2, - STATE(4293), 1, - sym_comment, - ACTIONS(1795), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1793), 12, + ACTIONS(7878), 1, sym__newline, + ACTIONS(7883), 1, + anon_sym_and2, + STATE(4587), 1, + sym_comment, + STATE(4715), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382735,24 +400860,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, - aux_sym_unquoted_token2, - [164561] = 8, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [179343] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4294), 1, - sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4810), 1, - sym_cell_path, - ACTIONS(1895), 2, - ts_builtin_sym_end, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + ACTIONS(2274), 1, sym__space, - ACTIONS(1893), 11, + STATE(4588), 1, + sym_comment, + ACTIONS(2272), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382764,15 +400886,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, - [164597] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179374] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - STATE(4295), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, + sym__space, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(4589), 1, sym_comment, - ACTIONS(1795), 16, - ts_builtin_sym_end, + ACTIONS(2234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382784,28 +400911,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, + [179405] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7881), 1, anon_sym_and2, + ACTIONS(7885), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [164625] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4296), 1, + STATE(4590), 1, sym_comment, - STATE(4341), 1, - sym_cell_path, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - ACTIONS(1775), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1771), 11, - sym__newline, + STATE(4718), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382816,20 +400937,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, - [164661] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [179438] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2094), 1, - sym__space, - ACTIONS(7492), 1, - anon_sym_DOT_DOT2, - STATE(4297), 1, - sym_comment, - ACTIONS(7494), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2088), 13, + ACTIONS(3919), 1, sym__newline, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(7887), 1, + anon_sym_xor2, + STATE(4591), 1, + sym_comment, + STATE(4720), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382841,24 +400964,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [164693] = 8, - ACTIONS(3), 1, + anon_sym_or2, + [179471] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7891), 1, + anon_sym_EQ, + ACTIONS(7894), 1, + sym__newline, + ACTIONS(7897), 1, + anon_sym_COLON, + ACTIONS(7900), 1, + anon_sym_DASH2, + STATE(7307), 1, + aux_sym_shebang_repeat1, + STATE(4592), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(5454), 2, + sym_param_type, + sym_param_value, + ACTIONS(7889), 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, + [179508] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(1953), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, anon_sym_DOT, - STATE(4298), 1, + STATE(4593), 1, sym_comment, - STATE(4397), 1, + STATE(4828), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(5312), 1, sym_path, - STATE(4991), 1, + STATE(5322), 1, sym_cell_path, - ACTIONS(2046), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2044), 11, + ACTIONS(1955), 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, + [179543] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4594), 1, + sym_comment, + STATE(4749), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382870,15 +401039,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, - [164729] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [179570] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - STATE(4299), 1, + STATE(4595), 1, sym_comment, - ACTIONS(1803), 16, - ts_builtin_sym_end, + STATE(4757), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382890,22 +401062,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [164757] = 5, + [179597] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - STATE(4300), 1, - sym_comment, - ACTIONS(1851), 15, - ts_builtin_sym_end, + ACTIONS(7878), 1, sym__newline, + ACTIONS(7881), 1, + anon_sym_and2, + STATE(4596), 1, + sym_comment, + STATE(4762), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382916,19 +401088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [164787] = 4, + [179628] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1824), 1, - aux_sym_unquoted_token2, - STATE(4301), 1, - sym_comment, - ACTIONS(1826), 16, - ts_builtin_sym_end, + ACTIONS(7878), 1, sym__newline, + ACTIONS(7883), 1, + anon_sym_and2, + STATE(4597), 1, + sym_comment, + STATE(4763), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382939,28 +401113,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_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [164815] = 8, - ACTIONS(3), 1, + [179659] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(1957), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, anon_sym_DOT, - STATE(4302), 1, + STATE(4598), 1, sym_comment, - STATE(4397), 1, + STATE(4828), 1, aux_sym_cell_path_repeat1, - STATE(4654), 1, + STATE(5312), 1, sym_path, - STATE(4978), 1, + STATE(5359), 1, sym_cell_path, - ACTIONS(1899), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1897), 11, + ACTIONS(1959), 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, + [179694] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(7885), 1, + anon_sym_xor2, + STATE(4599), 1, + sym_comment, + STATE(4766), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382971,24 +401167,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, - [164851] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [179727] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4303), 1, - sym_comment, - STATE(4364), 1, - sym_cell_path, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - ACTIONS(1779), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1777), 11, + ACTIONS(3919), 1, sym__newline, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(7887), 1, + anon_sym_xor2, + STATE(4600), 1, + sym_comment, + STATE(4767), 1, + aux_sym_shebang_repeat1, + ACTIONS(7876), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382999,19 +401193,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, - [164887] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [179760] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7415), 1, - anon_sym_DOT_DOT2, - ACTIONS(7498), 1, - sym__space, - STATE(4304), 1, + ACTIONS(7904), 1, + anon_sym_and2, + ACTIONS(7906), 1, + anon_sym_xor2, + ACTIONS(7908), 1, + anon_sym_or2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4601), 1, sym_comment, - ACTIONS(7417), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7496), 13, + ACTIONS(7902), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383024,18 +401221,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, - [164919] = 5, + [179793] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(4305), 1, + ACTIONS(7870), 1, + anon_sym_and2, + ACTIONS(7872), 1, + anon_sym_xor2, + ACTIONS(7910), 1, + anon_sym_or2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4602), 1, sym_comment, - ACTIONS(2280), 15, - ts_builtin_sym_end, + ACTIONS(7902), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383047,24 +401246,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, + [179826] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2033), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4603), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5177), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(2035), 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, + [179861] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2049), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4604), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5185), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(2051), 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, + [179896] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2053), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4605), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5189), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(2055), 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, + [179931] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7912), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7914), 1, + aux_sym__immediate_decimal_token2, + STATE(4606), 1, + sym_comment, + ACTIONS(1771), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 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, + [179962] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1941), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4607), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5193), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1943), 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, + [179997] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1000), 1, + anon_sym_DASH2, + STATE(4608), 1, + sym_comment, + ACTIONS(1002), 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_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [180024] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4609), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5195), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1873), 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, + [180059] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1875), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4610), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5197), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1877), 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, + [180094] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7904), 1, anon_sym_and2, + ACTIONS(7906), 1, anon_sym_xor2, + ACTIONS(7908), 1, anon_sym_or2, - [164949] = 6, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4611), 1, + sym_comment, + ACTIONS(7916), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [180127] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1879), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4612), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5200), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1881), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180162] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(4306), 1, + ACTIONS(4992), 1, + sym__space, + STATE(4613), 1, sym_comment, - ACTIONS(2290), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2294), 12, - ts_builtin_sym_end, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383076,17 +401533,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164981] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180193] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4614), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5206), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1885), 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, + [180228] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1887), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4615), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5208), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1889), 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, + [180263] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(4307), 1, + ACTIONS(5004), 1, + sym__space, + STATE(4616), 1, sym_comment, - ACTIONS(1836), 15, - ts_builtin_sym_end, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383098,26 +401612,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, + [180294] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7870), 1, anon_sym_and2, + ACTIONS(7872), 1, anon_sym_xor2, + ACTIONS(7910), 1, anon_sym_or2, - [165011] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4308), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4617), 1, sym_comment, - STATE(4397), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - STATE(4997), 1, - sym_cell_path, - ACTIONS(7368), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7366), 11, + ACTIONS(7916), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383129,49 +401639,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, - [165047] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(4141), 1, - anon_sym_DOLLAR, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(7500), 1, - anon_sym_DQUOTE, - ACTIONS(7504), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7506), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7508), 1, - sym__unquoted_naive, - STATE(2115), 1, - sym__inter_single_quotes, - STATE(2116), 1, - sym__inter_double_quotes, - STATE(4309), 1, - sym_comment, - ACTIONS(7502), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1779), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4956), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [165095] = 4, + anon_sym_RPAREN, + [180327] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(4310), 1, - sym_comment, - ACTIONS(1707), 16, + ACTIONS(3919), 1, sym__newline, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(7885), 1, + anon_sym_xor2, + ACTIONS(7920), 1, + anon_sym_or2, + STATE(4601), 1, + aux_sym_shebang_repeat1, + STATE(4618), 1, + sym_comment, + ACTIONS(7918), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383183,26 +401667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [165123] = 6, - ACTIONS(3), 1, + [180362] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(4311), 1, - sym_comment, - ACTIONS(2282), 3, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7883), 1, anon_sym_and2, + ACTIONS(7887), 1, anon_sym_xor2, + ACTIONS(7922), 1, anon_sym_or2, - ACTIONS(2286), 12, - ts_builtin_sym_end, - sym__newline, + STATE(4602), 1, + aux_sym_shebang_repeat1, + STATE(4619), 1, + sym_comment, + ACTIONS(7918), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383213,16 +401693,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, - [165155] = 4, + anon_sym_RPAREN, + [180397] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4312), 1, - sym_comment, - ACTIONS(1008), 3, + ACTIONS(1891), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(7874), 1, anon_sym_DOT, - ACTIONS(1010), 14, + STATE(4620), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5212), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1893), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383234,19 +401721,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165183] = 4, + [180432] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4313), 1, - sym_comment, - ACTIONS(1004), 3, + ACTIONS(1895), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(7874), 1, anon_sym_DOT, - ACTIONS(1006), 14, + STATE(4621), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5214), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1897), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383258,19 +401748,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165211] = 4, + [180467] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4314), 1, - sym_comment, - ACTIONS(996), 3, + ACTIONS(1903), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(7874), 1, anon_sym_DOT, - ACTIONS(998), 14, + STATE(4622), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5215), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1905), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383282,19 +401775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165239] = 4, + [180502] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4315), 1, - sym_comment, - ACTIONS(1801), 3, + ACTIONS(1909), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 14, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4623), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5217), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1911), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383306,50 +401802,22 @@ 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, - [165267] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_DOT_DOT2, - STATE(4316), 1, - sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7512), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2070), 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, - [165298] = 8, + [180537] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - ACTIONS(7514), 1, + ACTIONS(7874), 1, anon_sym_DOT, - STATE(4317), 1, + STATE(4624), 1, sym_comment, - STATE(4592), 1, + STATE(4828), 1, aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4877), 1, + STATE(5219), 1, sym_cell_path, - ACTIONS(1955), 11, + STATE(5312), 1, + sym_path, + ACTIONS(1919), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383361,14 +401829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165333] = 4, - ACTIONS(251), 1, + [180572] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4318), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(5063), 1, + sym__space, + STATE(4625), 1, sym_comment, - ACTIONS(7516), 15, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5065), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383381,21 +401853,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [165360] = 6, + anon_sym_RBRACE, + [180603] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(1836), 1, + ACTIONS(4986), 1, sym__space, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(4319), 1, + STATE(4626), 1, sym_comment, - ACTIONS(1828), 13, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4988), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383409,20 +401879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165391] = 7, - ACTIONS(251), 1, + [180634] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7522), 1, - anon_sym_xor2, - STATE(4320), 1, + ACTIONS(1781), 1, + sym__space, + ACTIONS(7537), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7924), 1, + anon_sym_DOT, + STATE(4627), 1, sym_comment, - STATE(4411), 1, - aux_sym_shebang_repeat1, - ACTIONS(7518), 12, + ACTIONS(1779), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383434,64 +401903,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_or2, - [165424] = 4, + anon_sym_RBRACE, + [180665] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4321), 1, + ACTIONS(1925), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4628), 1, sym_comment, - STATE(4469), 1, - aux_sym_shebang_repeat1, - ACTIONS(7518), 15, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5220), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1927), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [165451] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180700] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7524), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7526), 1, - aux_sym__immediate_decimal_token2, - STATE(4322), 1, - sym_comment, - ACTIONS(1637), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1639), 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, + ACTIONS(1929), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, anon_sym_DOT, - [165482] = 4, + STATE(4629), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5222), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1931), 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, + [180735] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(7885), 1, + anon_sym_xor2, + ACTIONS(7920), 1, + anon_sym_or2, + STATE(4611), 1, aux_sym_shebang_repeat1, - STATE(4323), 1, + STATE(4630), 1, sym_comment, - ACTIONS(7516), 15, - sym__newline, + ACTIONS(7926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383503,43 +401985,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_and2, - anon_sym_xor2, - anon_sym_or2, - [165509] = 4, + [180770] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4324), 1, + ACTIONS(1933), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4631), 1, sym_comment, - STATE(4471), 1, - aux_sym_shebang_repeat1, - ACTIONS(7518), 15, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5230), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1935), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [165536] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180805] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7883), 1, anon_sym_and2, - STATE(1820), 1, + ACTIONS(7887), 1, + anon_sym_xor2, + ACTIONS(7922), 1, + anon_sym_or2, + STATE(4617), 1, aux_sym_shebang_repeat1, - STATE(4325), 1, + STATE(4632), 1, sym_comment, - ACTIONS(7516), 14, - sym__newline, + ACTIONS(7926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383551,18 +402039,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [165565] = 5, + [180840] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4326), 1, + ACTIONS(1937), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4633), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5232), 1, + sym_cell_path, + STATE(5312), 1, + sym_path, + ACTIONS(1939), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180875] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4634), 1, sym_comment, - ACTIONS(7516), 14, + ACTIONS(1781), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1779), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383575,16 +402087,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [165594] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [180902] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4327), 1, + ACTIONS(7928), 1, + anon_sym_DOT_DOT2, + STATE(4635), 1, sym_comment, - ACTIONS(7532), 15, + ACTIONS(1036), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7930), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383596,22 +402114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [165621] = 6, + [180933] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7934), 1, anon_sym_and2, - ACTIONS(7534), 1, + ACTIONS(7936), 1, anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4328), 1, + ACTIONS(7938), 1, + anon_sym_or2, + STATE(4636), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(7932), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383624,19 +402138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [165652] = 6, + anon_sym_RBRACE, + [180964] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(7940), 1, anon_sym_and2, - ACTIONS(7536), 1, + ACTIONS(7942), 1, anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4329), 1, + ACTIONS(7944), 1, + anon_sym_or2, + STATE(4637), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(7932), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383649,15 +402163,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_or2, - [165683] = 4, + anon_sym_RBRACE, + [180995] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4330), 1, + STATE(4638), 1, sym_comment, - ACTIONS(7516), 15, + ACTIONS(7319), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383670,43 +402182,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_and2, anon_sym_xor2, anon_sym_or2, - [165710] = 7, + [181020] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - STATE(4331), 1, + ACTIONS(7946), 1, + anon_sym_DOT, + ACTIONS(7948), 1, + aux_sym__immediate_decimal_token2, + STATE(4639), 1, sym_comment, - STATE(4413), 1, - aux_sym_shebang_repeat1, - ACTIONS(7518), 12, - anon_sym_SEMI, + ACTIONS(1779), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 11, + anon_sym_EQ, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [165743] = 4, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [181051] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4332), 1, + STATE(4640), 1, sym_comment, - ACTIONS(7516), 15, + ACTIONS(1773), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1771), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383719,43 +402232,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [165770] = 5, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [181078] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4333), 1, + ACTIONS(1004), 1, + anon_sym_DASH2, + STATE(4641), 1, sym_comment, - ACTIONS(7516), 14, + ACTIONS(1006), 15, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [165799] = 5, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [181105] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4334), 1, + ACTIONS(4980), 1, + anon_sym_DOT, + STATE(1733), 1, + aux_sym_cell_path_repeat1, + STATE(1898), 1, + sym_path, + STATE(4642), 1, + sym_comment, + STATE(5356), 1, + sym_cell_path, + ACTIONS(7950), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7952), 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, + [181140] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4643), 1, sym_comment, - ACTIONS(7516), 14, + ACTIONS(1801), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1799), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383768,20 +402305,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_xor2, - anon_sym_or2, - [165828] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [181167] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4335), 1, + STATE(4644), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(1820), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383794,19 +402328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [165859] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [181194] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - ACTIONS(7536), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4336), 1, + STATE(4645), 1, sym_comment, - ACTIONS(7516), 13, + ACTIONS(2084), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2082), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383818,44 +402352,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_or2, - [165890] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT, - STATE(1681), 1, - aux_sym_cell_path_repeat1, - STATE(1921), 1, - sym_path, - STATE(4337), 1, - sym_comment, - STATE(5056), 1, - sym_cell_path, - ACTIONS(7542), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7544), 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, - [165925] = 4, + anon_sym_DOT_DOT2, + [181221] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4338), 1, - sym_comment, - ACTIONS(1006), 2, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, sym__space, - anon_sym_DOT, - ACTIONS(1004), 14, + STATE(4646), 1, + sym_comment, + ACTIONS(1830), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383869,19 +402378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [165952] = 6, - ACTIONS(251), 1, + [181252] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7546), 1, - sym__newline, - STATE(4339), 1, + STATE(4647), 1, sym_comment, - STATE(4476), 1, - aux_sym_shebang_repeat1, - ACTIONS(7518), 13, + ACTIONS(2088), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2086), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383892,21 +402400,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_xor2, - anon_sym_or2, - [165983] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [181279] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4340), 1, + ACTIONS(7954), 1, + anon_sym_DOT_DOT2, + STATE(4648), 1, sym_comment, - ACTIONS(7532), 13, + ACTIONS(2096), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7956), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383918,19 +402426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [166014] = 4, + [181310] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4341), 1, + ACTIONS(7958), 1, + anon_sym_DOT_DOT2, + STATE(4649), 1, sym_comment, - ACTIONS(1779), 4, + ACTIONS(2104), 2, ts_builtin_sym_end, sym__space, + ACTIONS(7960), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1777), 12, + ACTIONS(2098), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383942,15 +402451,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, - [166041] = 4, - ACTIONS(251), 1, + [181341] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4342), 1, + ACTIONS(7962), 1, + anon_sym_DOT_DOT2, + STATE(4650), 1, sym_comment, - STATE(4362), 1, - aux_sym_shebang_repeat1, - ACTIONS(7549), 15, + ACTIONS(2137), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7964), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2131), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383962,72 +402476,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_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [166068] = 6, + [181372] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7551), 1, - anon_sym_DOT, - ACTIONS(7553), 1, - aux_sym__immediate_decimal_token2, - STATE(4343), 1, - sym_comment, - ACTIONS(1785), 3, - sym_identifier, + ACTIONS(996), 1, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 11, + STATE(4651), 1, + sym_comment, + ACTIONS(998), 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, - [166099] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT, - STATE(4344), 1, + [181399] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(2294), 1, + sym__space, + STATE(4652), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4807), 1, - sym_cell_path, - STATE(4833), 1, - sym_path, - ACTIONS(1911), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2292), 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, - [166134] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [181430] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4345), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1848), 1, + sym__space, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4653), 1, sym_comment, - ACTIONS(7532), 14, + ACTIONS(1840), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384040,17 +402548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [166163] = 4, + anon_sym_RBRACE, + [181461] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4346), 1, + STATE(4654), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(2244), 2, sym__space, - anon_sym_DOT, - ACTIONS(996), 14, + anon_sym_LPAREN2, + ACTIONS(2242), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384064,44 +402571,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [166190] = 8, - ACTIONS(251), 1, + aux_sym_unquoted_token4, + [181488] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4347), 1, + STATE(4655), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(5140), 1, - sym_cell_path, - ACTIONS(1899), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1002), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1000), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166225] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + [181515] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4348), 1, + ACTIONS(5010), 1, + sym__space, + ACTIONS(7966), 1, + sym_long_flag_identifier, + ACTIONS(7968), 1, + anon_sym_EQ2, + STATE(4656), 1, sym_comment, - ACTIONS(7532), 14, + ACTIONS(5012), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384114,22 +402619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [166254] = 7, - ACTIONS(251), 1, + anon_sym_RBRACE, + [181546] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - ACTIONS(7536), 1, - anon_sym_xor2, - ACTIONS(7557), 1, - anon_sym_or2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4349), 1, + ACTIONS(5027), 1, + sym__space, + ACTIONS(7970), 1, + anon_sym_EQ2, + ACTIONS(7972), 1, + sym_short_flag_identifier, + STATE(4657), 1, sym_comment, - ACTIONS(7555), 12, + ACTIONS(5029), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384142,14 +402644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166287] = 4, + anon_sym_RBRACE, + [181577] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4350), 1, + ACTIONS(5061), 1, + aux_sym_unquoted_token2, + STATE(4658), 1, sym_comment, - ACTIONS(7532), 15, + ACTIONS(1699), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384161,46 +402665,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166314] = 8, + [181604] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2064), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, + ACTIONS(7974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7976), 1, + aux_sym__immediate_decimal_token2, + STATE(4659), 1, + sym_comment, + ACTIONS(1661), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1663), 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, - STATE(4351), 1, + [181635] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7765), 1, + anon_sym_DOT, + STATE(4660), 1, sym_comment, - STATE(4592), 1, + STATE(4667), 1, aux_sym_cell_path_repeat1, - STATE(4833), 1, + STATE(4964), 1, sym_path, - STATE(4883), 1, - sym_cell_path, - ACTIONS(2066), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(984), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(982), 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, - [166349] = 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, + [181668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4352), 1, + STATE(4661), 1, sym_comment, - ACTIONS(1826), 2, + ACTIONS(1006), 2, sym__space, - anon_sym_LPAREN2, - ACTIONS(1824), 14, + anon_sym_DOT, + ACTIONS(1004), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384214,38 +402741,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, - [166376] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4353), 1, - sym_comment, - ACTIONS(1022), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1024), 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, - [166403] = 4, + anon_sym_QMARK2, + [181695] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(986), 1, anon_sym_DASH2, - STATE(4354), 1, + STATE(4662), 1, sym_comment, - ACTIONS(998), 15, + ACTIONS(988), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -384261,20 +402765,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK2, anon_sym_DOT, - [166430] = 7, + [181722] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4663), 1, + sym_comment, + ACTIONS(998), 2, + sym__space, + anon_sym_DOT, + ACTIONS(996), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + [181749] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + ACTIONS(2270), 1, + sym__space, + STATE(4664), 1, + sym_comment, + ACTIONS(2266), 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, + [181780] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - ACTIONS(7559), 1, - anon_sym_or2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4355), 1, + ACTIONS(4980), 1, + anon_sym_DOT, + STATE(1733), 1, + aux_sym_cell_path_repeat1, + STATE(1898), 1, + sym_path, + STATE(4665), 1, + sym_comment, + STATE(5423), 1, + sym_cell_path, + ACTIONS(7978), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7980), 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, + [181815] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(7984), 1, + sym__space, + STATE(4666), 1, sym_comment, - ACTIONS(7555), 12, + STATE(8103), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7982), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384287,20 +402864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166463] = 6, + anon_sym_RBRACE, + [181846] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7561), 1, - anon_sym_DOT_DOT2, - STATE(4356), 1, - sym_comment, - ACTIONS(1040), 2, + ACTIONS(7986), 1, + anon_sym_DOT, + STATE(4964), 1, + sym_path, + ACTIONS(977), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7563), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 11, + STATE(4667), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(975), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384312,41 +402890,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, - [166494] = 4, + [181877] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4357), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4668), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - 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, - [166521] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7546), 1, + ACTIONS(7989), 15, sym__newline, - STATE(4358), 1, - sym_comment, - STATE(4481), 1, - aux_sym_shebang_repeat1, - ACTIONS(7518), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384358,16 +402910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166552] = 4, + [181904] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4359), 1, + STATE(4669), 1, sym_comment, - ACTIONS(7565), 15, + ACTIONS(7989), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384383,64 +402936,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166579] = 8, + [181931] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4360), 1, - sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4850), 1, - sym_cell_path, - ACTIONS(1935), 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, - [166614] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4361), 1, + ACTIONS(7904), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4670), 1, sym_comment, - ACTIONS(1026), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1028), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7989), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166641] = 4, + anon_sym_xor2, + anon_sym_or2, + [181960] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(7870), 1, + anon_sym_and2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4362), 1, + STATE(4671), 1, sym_comment, - ACTIONS(7565), 15, + ACTIONS(7989), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384453,47 +402982,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_and2, anon_sym_xor2, anon_sym_or2, - [166668] = 8, + [181989] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4363), 1, + ACTIONS(7904), 1, + anon_sym_and2, + ACTIONS(7906), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4672), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4848), 1, - sym_cell_path, - ACTIONS(1903), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7989), 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, - [166703] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [182020] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4364), 1, + ACTIONS(7870), 1, + anon_sym_and2, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4673), 1, sym_comment, - ACTIONS(2195), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2193), 12, + ACTIONS(7989), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384505,15 +403032,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [166730] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [182051] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4359), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4365), 1, + STATE(4674), 1, sym_comment, - ACTIONS(7549), 15, + ACTIONS(7991), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384529,17 +403057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166757] = 4, - ACTIONS(3), 1, + [182078] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4366), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4675), 1, sym_comment, - ACTIONS(2104), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 12, + ACTIONS(7991), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384551,16 +403076,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, - [166784] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [182105] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token2, - STATE(4367), 1, + STATE(4676), 1, sym_comment, - ACTIONS(1707), 15, - ts_builtin_sym_end, + STATE(4742), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384572,19 +403099,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166811] = 5, + [182132] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7904), 1, anon_sym_and2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4368), 1, + STATE(4677), 1, sym_comment, - ACTIONS(7565), 14, + ACTIONS(7991), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384599,20 +403127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [166840] = 7, + [182161] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, + ACTIONS(7870), 1, anon_sym_and2, - ACTIONS(7522), 1, - anon_sym_xor2, - STATE(4369), 1, - sym_comment, - STATE(4487), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(7518), 12, + STATE(4678), 1, + sym_comment, + ACTIONS(7991), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384624,71 +403149,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_xor2, anon_sym_or2, - [166873] = 8, + [182190] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4370), 1, - sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4800), 1, - sym_cell_path, - STATE(4833), 1, - sym_path, - ACTIONS(1907), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(7995), 1, sym__newline, + STATE(4679), 1, + sym_comment, + STATE(4743), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166908] = 8, + anon_sym_xor2, + anon_sym_or2, + [182221] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4371), 1, - sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4851), 1, - sym_cell_path, - ACTIONS(1939), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(7995), 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, - [166943] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4372), 1, + STATE(4680), 1, sym_comment, - ACTIONS(1002), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1000), 14, - sym__newline, + STATE(4744), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384700,18 +403199,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, - [166970] = 5, + anon_sym_xor2, + anon_sym_or2, + [182252] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(7904), 1, anon_sym_and2, - STATE(1820), 1, + ACTIONS(7906), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4373), 1, + STATE(4681), 1, sym_comment, - ACTIONS(7565), 14, + ACTIONS(7991), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384724,16 +403225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [166999] = 4, + [182283] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(7870), 1, + anon_sym_and2, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4374), 1, + STATE(4682), 1, sym_comment, - ACTIONS(7532), 15, + ACTIONS(7991), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384746,22 +403250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [167026] = 6, + [182314] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7881), 1, anon_sym_and2, - ACTIONS(7534), 1, + ACTIONS(7885), 1, anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4375), 1, + STATE(4683), 1, sym_comment, - ACTIONS(7565), 13, - sym__newline, + STATE(4745), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384774,19 +403277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [167057] = 6, + [182347] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7883), 1, anon_sym_and2, - ACTIONS(7536), 1, + ACTIONS(7887), 1, anon_sym_xor2, - STATE(1820), 1, + STATE(4577), 1, aux_sym_shebang_repeat1, - STATE(4376), 1, + STATE(4684), 1, sym_comment, - ACTIONS(7565), 13, - sym__newline, + ACTIONS(7993), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384799,41 +403303,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [167088] = 8, + [182380] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4377), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4685), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4853), 1, - sym_cell_path, - ACTIONS(1943), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7989), 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, - [167123] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [182407] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4378), 1, - sym_comment, - STATE(4416), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(7549), 15, + STATE(4686), 1, + sym_comment, + ACTIONS(7989), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384849,15 +403349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167150] = 4, - ACTIONS(3), 1, + [182434] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4379), 1, + ACTIONS(7904), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4687), 1, sym_comment, - ACTIONS(1803), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1801), 14, + ACTIONS(7989), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384870,16 +403371,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_token2, - [167177] = 4, + anon_sym_xor2, + anon_sym_or2, + [182463] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(7870), 1, + anon_sym_and2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4380), 1, + STATE(4688), 1, sym_comment, - ACTIONS(7567), 15, + ACTIONS(7989), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384892,15 +403395,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167204] = 3, + [182492] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4381), 1, + ACTIONS(7904), 1, + anon_sym_and2, + ACTIONS(7906), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4689), 1, sym_comment, - ACTIONS(7347), 16, + ACTIONS(7989), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384913,45 +403421,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [167229] = 8, + [182523] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4382), 1, + ACTIONS(7870), 1, + anon_sym_and2, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4690), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4909), 1, - sym_cell_path, - ACTIONS(1971), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7989), 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, - [167264] = 4, + anon_sym_or2, + [182554] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4383), 1, + STATE(4691), 1, sym_comment, - ACTIONS(7567), 15, + ACTIONS(7991), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384967,17 +403470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167291] = 5, + [182581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7569), 1, - anon_sym_QMARK2, - STATE(4384), 1, + STATE(4692), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(988), 2, sym__space, anon_sym_DOT, - ACTIONS(990), 13, + ACTIONS(986), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384991,17 +403492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167320] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7571), 1, anon_sym_QMARK2, - STATE(4385), 1, + [182608] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4693), 1, sym_comment, - ACTIONS(1014), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1012), 13, + ACTIONS(7991), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385014,65 +403513,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, - [167349] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_DASH2, - STATE(4386), 1, - sym_comment, - ACTIONS(1010), 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_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [167376] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [182635] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4387), 1, + STATE(4694), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4815), 1, - sym_cell_path, - STATE(4833), 1, - sym_path, - ACTIONS(1919), 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, - [167411] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4318), 1, + STATE(4748), 1, aux_sym_shebang_repeat1, - STATE(4388), 1, - sym_comment, - ACTIONS(7573), 15, + ACTIONS(7993), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385088,15 +403539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167438] = 4, - ACTIONS(3), 1, + [182662] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4389), 1, + STATE(4695), 1, sym_comment, - ACTIONS(1787), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 14, + STATE(4753), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385109,20 +403559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [167465] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [182689] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(7904), 1, anon_sym_and2, - ACTIONS(7575), 1, - sym__newline, - STATE(4368), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4390), 1, + STATE(4696), 1, sym_comment, - ACTIONS(7549), 13, + ACTIONS(7991), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385136,18 +403586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [167496] = 6, + [182718] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7538), 1, + ACTIONS(7870), 1, anon_sym_and2, - ACTIONS(7575), 1, - sym__newline, - STATE(4373), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4391), 1, + STATE(4697), 1, sym_comment, - ACTIONS(7549), 13, + ACTIONS(7991), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385161,46 +403610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [167527] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4392), 1, - sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(5138), 1, - sym_cell_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, - [167562] = 6, + [182747] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(7881), 1, anon_sym_and2, - ACTIONS(7536), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4393), 1, - sym_comment, - ACTIONS(7532), 13, + ACTIONS(7995), 1, sym__newline, + STATE(4698), 1, + sym_comment, + STATE(4754), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385212,23 +403633,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [167593] = 8, + [182778] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, + ACTIONS(7883), 1, anon_sym_and2, - ACTIONS(7522), 1, - anon_sym_xor2, - ACTIONS(7580), 1, - anon_sym_or2, - STATE(4355), 1, - aux_sym_shebang_repeat1, - STATE(4394), 1, + ACTIONS(7995), 1, + sym__newline, + STATE(4699), 1, sym_comment, - ACTIONS(7578), 11, + STATE(4755), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385240,14 +403658,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [167628] = 4, + anon_sym_xor2, + anon_sym_or2, + [182809] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4323), 1, + ACTIONS(7904), 1, + anon_sym_and2, + ACTIONS(7906), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4395), 1, + STATE(4700), 1, sym_comment, - ACTIONS(7573), 15, + ACTIONS(7991), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385260,19 +403684,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [167655] = 5, + [182840] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7870), 1, anon_sym_and2, - STATE(1820), 1, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4396), 1, + STATE(4701), 1, sym_comment, - ACTIONS(7567), 14, + ACTIONS(7991), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385285,23 +403709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [167684] = 7, + [182871] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT, - STATE(4397), 1, - sym_comment, - STATE(4422), 1, - aux_sym_cell_path_repeat1, - STATE(4654), 1, - sym_path, - ACTIONS(988), 2, - ts_builtin_sym_end, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, sym__space, - ACTIONS(986), 11, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(4702), 1, + sym_comment, + ACTIONS(2226), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385313,46 +403733,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, - [167717] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4398), 1, - sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4885), 1, - sym_cell_path, - ACTIONS(1959), 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, - [167752] = 6, + anon_sym_RBRACE, + [182902] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7881), 1, anon_sym_and2, - ACTIONS(7534), 1, + ACTIONS(7885), 1, anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4399), 1, + STATE(4703), 1, sym_comment, - ACTIONS(7532), 13, - sym__newline, + STATE(4756), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385365,22 +403761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [167783] = 8, + [182935] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(7538), 1, + ACTIONS(7883), 1, anon_sym_and2, - ACTIONS(7540), 1, + ACTIONS(7887), 1, anon_sym_xor2, - ACTIONS(7582), 1, - anon_sym_or2, - STATE(4349), 1, - aux_sym_shebang_repeat1, - STATE(4400), 1, + STATE(4704), 1, sym_comment, - ACTIONS(7578), 11, + STATE(4758), 1, + aux_sym_shebang_repeat1, + ACTIONS(7993), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385392,43 +403786,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [167818] = 8, - ACTIONS(251), 1, + anon_sym_or2, + [182968] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4401), 1, + ACTIONS(7998), 1, + anon_sym_QMARK2, + STATE(4705), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4856), 1, - sym_cell_path, - ACTIONS(1947), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1010), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1008), 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, - [167853] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [182997] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4402), 1, + ACTIONS(8000), 1, + anon_sym_QMARK2, + STATE(4706), 1, sym_comment, - ACTIONS(7567), 14, + ACTIONS(992), 2, + sym__space, + anon_sym_DOT, + ACTIONS(990), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385441,74 +403834,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [167882] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + [183026] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4403), 1, + ACTIONS(8002), 1, + anon_sym_DOT_DOT2, + STATE(4707), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4893), 1, - sym_cell_path, - ACTIONS(1963), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2078), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(8004), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 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, - [167917] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183057] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4404), 1, + STATE(4708), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4860), 1, - sym_cell_path, - ACTIONS(1951), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7637), 16, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167952] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7530), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(7536), 1, anon_sym_xor2, - STATE(1820), 1, + anon_sym_or2, + [183082] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4405), 1, + STATE(4709), 1, sym_comment, - ACTIONS(7532), 13, + ACTIONS(8006), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385521,19 +403902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [167983] = 6, + [183109] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7584), 1, - sym__newline, - STATE(4325), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4406), 1, + STATE(4710), 1, sym_comment, - ACTIONS(7573), 13, + ACTIONS(8006), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385545,22 +403925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168014] = 6, - ACTIONS(3), 1, + [183136] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7587), 1, - anon_sym_DOT_DOT2, - STATE(4407), 1, + STATE(4668), 1, + aux_sym_shebang_repeat1, + STATE(4711), 1, sym_comment, - ACTIONS(2094), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7589), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2088), 11, + ACTIONS(8008), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385572,18 +403947,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, - [168045] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [183163] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7584), 1, - sym__newline, - STATE(4326), 1, + STATE(4669), 1, aux_sym_shebang_repeat1, - STATE(4408), 1, + STATE(4712), 1, sym_comment, - ACTIONS(7573), 13, + ACTIONS(8008), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385595,22 +403971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168076] = 7, - ACTIONS(251), 1, + [183190] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7522), 1, - anon_sym_xor2, - STATE(4375), 1, - aux_sym_shebang_repeat1, - STATE(4409), 1, + STATE(4713), 1, sym_comment, - ACTIONS(7549), 12, + ACTIONS(1765), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1763), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385621,22 +403996,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_or2, - [168109] = 7, + anon_sym_DOT_DOT2, + [183217] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7538), 1, + ACTIONS(7904), 1, anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - STATE(4376), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4410), 1, + STATE(4714), 1, sym_comment, - ACTIONS(7549), 12, + ACTIONS(8006), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385648,19 +404019,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_xor2, anon_sym_or2, - [168142] = 6, + [183246] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7870), 1, anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4411), 1, + STATE(4715), 1, sym_comment, - ACTIONS(7567), 13, + ACTIONS(8006), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385673,16 +404043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [168173] = 4, + [183275] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4380), 1, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(8010), 1, + sym__newline, + STATE(4670), 1, aux_sym_shebang_repeat1, - STATE(4412), 1, + STATE(4716), 1, sym_comment, - ACTIONS(7518), 15, - sym__newline, + ACTIONS(8008), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385694,22 +404068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168200] = 6, + [183306] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(7883), 1, anon_sym_and2, - ACTIONS(7536), 1, - anon_sym_xor2, - STATE(1820), 1, + ACTIONS(8010), 1, + sym__newline, + STATE(4671), 1, aux_sym_shebang_repeat1, - STATE(4413), 1, + STATE(4717), 1, sym_comment, - ACTIONS(7567), 13, - sym__newline, + ACTIONS(8008), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385721,21 +404093,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [168231] = 7, + [183337] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, + ACTIONS(7904), 1, anon_sym_and2, - ACTIONS(7522), 1, + ACTIONS(7906), 1, anon_sym_xor2, - STATE(4328), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4414), 1, + STATE(4718), 1, sym_comment, - ACTIONS(7573), 12, + ACTIONS(8006), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385748,20 +404120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [168264] = 7, + [183368] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - STATE(4329), 1, - aux_sym_shebang_repeat1, - STATE(4415), 1, + STATE(4719), 1, sym_comment, - ACTIONS(7573), 12, + ACTIONS(7728), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385773,15 +404138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [168297] = 4, + [183393] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(7870), 1, + anon_sym_and2, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4416), 1, + STATE(4720), 1, sym_comment, - ACTIONS(7565), 15, + ACTIONS(8006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385794,17 +404166,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_and2, - anon_sym_xor2, anon_sym_or2, - [168324] = 4, + [183424] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4383), 1, - aux_sym_shebang_repeat1, - STATE(4417), 1, + STATE(4721), 1, sym_comment, - ACTIONS(7518), 15, + ACTIONS(7637), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385817,23 +404185,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168351] = 6, + [183449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7561), 1, - anon_sym_DOT_DOT2, - STATE(4418), 1, + ACTIONS(7835), 1, + aux_sym__immediate_decimal_token2, + STATE(4722), 1, sym_comment, - ACTIONS(7498), 2, + ACTIONS(1781), 3, ts_builtin_sym_end, sym__space, - ACTIONS(7563), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7496), 11, + anon_sym_LPAREN2, + ACTIONS(1779), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385845,13 +404212,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, - [168382] = 3, + aux_sym_unquoted_token2, + [183478] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(4419), 1, - sym_comment, - ACTIONS(7382), 16, + ACTIONS(3919), 1, sym__newline, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(7885), 1, + anon_sym_xor2, + STATE(4672), 1, + aux_sym_shebang_repeat1, + STATE(4723), 1, + sym_comment, + ACTIONS(8008), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385863,16 +404238,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, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [168407] = 3, + [183511] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4420), 1, + STATE(4724), 1, sym_comment, - ACTIONS(7347), 16, + ACTIONS(7728), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385889,18 +404261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168432] = 6, - ACTIONS(3), 1, + [183536] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - sym__space, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(4421), 1, + STATE(4725), 1, sym_comment, - ACTIONS(2239), 13, + ACTIONS(7637), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385914,21 +404280,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168463] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [183561] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7591), 1, - anon_sym_DOT, - STATE(4654), 1, - sym_path, - ACTIONS(981), 2, - ts_builtin_sym_end, - sym__space, - STATE(4422), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 11, + ACTIONS(3919), 1, sym__newline, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(7887), 1, + anon_sym_xor2, + STATE(4673), 1, + aux_sym_shebang_repeat1, + STATE(4726), 1, + sym_comment, + ACTIONS(8008), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385939,12 +404307,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, - [168494] = 3, + anon_sym_RPAREN, + anon_sym_or2, + [183594] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4423), 1, + STATE(4727), 1, sym_comment, - ACTIONS(7382), 16, + ACTIONS(7728), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385961,12 +404331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168519] = 3, + [183619] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4424), 1, + STATE(4674), 1, + aux_sym_shebang_repeat1, + STATE(4728), 1, sym_comment, - ACTIONS(7347), 16, + ACTIONS(8013), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385979,24 +404351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168544] = 7, + [183646] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - ACTIONS(7536), 1, - anon_sym_xor2, - ACTIONS(7557), 1, - anon_sym_or2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4425), 1, + STATE(4729), 1, sym_comment, - ACTIONS(7594), 12, + ACTIONS(8015), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386009,18 +404372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [168577] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [183671] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4930), 1, - sym__space, - ACTIONS(7596), 1, - anon_sym_EQ2, - ACTIONS(7598), 1, - sym_short_flag_identifier, - STATE(4426), 1, + STATE(4730), 1, sym_comment, - ACTIONS(4932), 13, + ACTIONS(8015), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386034,12 +404395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168608] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [183696] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4427), 1, + ACTIONS(7934), 1, + anon_sym_and2, + STATE(4731), 1, sym_comment, - ACTIONS(7382), 16, + ACTIONS(8015), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386053,15 +404419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168633] = 3, + [183723] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4428), 1, + ACTIONS(7940), 1, + anon_sym_and2, + STATE(4732), 1, sym_comment, - ACTIONS(7600), 16, + ACTIONS(8015), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386075,15 +404442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168658] = 3, + [183750] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4429), 1, + ACTIONS(7934), 1, + anon_sym_and2, + ACTIONS(7936), 1, + anon_sym_xor2, + STATE(4733), 1, sym_comment, - ACTIONS(7600), 16, + ACTIONS(8015), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386097,17 +404467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [168683] = 4, + [183779] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4430), 1, + ACTIONS(7940), 1, + anon_sym_and2, + ACTIONS(7942), 1, + anon_sym_xor2, + STATE(4734), 1, sym_comment, - ACTIONS(7565), 15, + ACTIONS(8015), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386120,17 +404490,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_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [168710] = 4, + [183808] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7602), 1, - anon_sym_and2, - STATE(4431), 1, + STATE(4735), 1, sym_comment, - ACTIONS(7600), 15, + ACTIONS(8015), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386144,16 +404511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168737] = 4, + [183833] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7604), 1, - anon_sym_and2, - STATE(4432), 1, + STATE(4736), 1, sym_comment, - ACTIONS(7600), 15, + ACTIONS(8015), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386167,20 +404533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168764] = 5, - ACTIONS(3), 1, + [183858] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token2, - STATE(4433), 1, + ACTIONS(7934), 1, + anon_sym_and2, + STATE(4737), 1, sym_comment, - ACTIONS(1787), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1785), 12, + ACTIONS(8015), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386192,17 +404555,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, - aux_sym_unquoted_token2, - [168793] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [183885] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - STATE(1820), 1, + STATE(4675), 1, aux_sym_shebang_repeat1, - STATE(4434), 1, + STATE(4738), 1, sym_comment, - ACTIONS(7532), 14, + ACTIONS(8013), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386215,19 +404579,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168822] = 5, + [183912] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7602), 1, + ACTIONS(7881), 1, anon_sym_and2, - ACTIONS(7606), 1, - anon_sym_xor2, - STATE(4435), 1, - sym_comment, - ACTIONS(7600), 14, + ACTIONS(8017), 1, sym__newline, + STATE(4677), 1, + aux_sym_shebang_repeat1, + STATE(4739), 1, + sym_comment, + ACTIONS(8013), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386239,18 +404605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [168851] = 5, + [183943] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7604), 1, - anon_sym_and2, - ACTIONS(7608), 1, - anon_sym_xor2, - STATE(4436), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4740), 1, sym_comment, - ACTIONS(7600), 14, + ACTIONS(7868), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386263,15 +404627,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_and2, + anon_sym_xor2, anon_sym_or2, - [168880] = 3, + [183970] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4437), 1, - sym_comment, - ACTIONS(7600), 16, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(8017), 1, sym__newline, + STATE(4678), 1, + aux_sym_shebang_repeat1, + STATE(4741), 1, + sym_comment, + ACTIONS(8013), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386283,16 +404653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168905] = 3, + [184001] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4438), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4742), 1, sym_comment, - ACTIONS(7600), 16, + ACTIONS(7868), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386305,20 +404675,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_and2, anon_sym_xor2, anon_sym_or2, - [168930] = 5, + [184028] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(7904), 1, anon_sym_and2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4439), 1, + STATE(4743), 1, sym_comment, - ACTIONS(7565), 14, + ACTIONS(7868), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386333,14 +404702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [168959] = 4, + [184057] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7602), 1, + ACTIONS(7870), 1, anon_sym_and2, - STATE(4440), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4744), 1, sym_comment, - ACTIONS(7600), 15, + ACTIONS(7868), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386353,17 +404724,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_xor2, anon_sym_or2, - [168986] = 4, + [184086] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7604), 1, + ACTIONS(7904), 1, anon_sym_and2, - STATE(4441), 1, + ACTIONS(7906), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4745), 1, sym_comment, - ACTIONS(7600), 15, + ACTIONS(7868), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386376,20 +404750,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_xor2, anon_sym_or2, - [169013] = 5, + [184117] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7602), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7881), 1, anon_sym_and2, - ACTIONS(7606), 1, + ACTIONS(7885), 1, anon_sym_xor2, - STATE(4442), 1, + STATE(4681), 1, + aux_sym_shebang_repeat1, + STATE(4746), 1, sym_comment, - ACTIONS(7600), 14, - sym__newline, + ACTIONS(8013), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386401,19 +404776,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_or2, - [169042] = 5, + [184150] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7604), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7883), 1, anon_sym_and2, - ACTIONS(7608), 1, + ACTIONS(7887), 1, anon_sym_xor2, - STATE(4443), 1, + STATE(4682), 1, + aux_sym_shebang_repeat1, + STATE(4747), 1, sym_comment, - ACTIONS(7600), 14, - sym__newline, + ACTIONS(8013), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386425,43 +404802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or2, - [169071] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7610), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7612), 1, - aux_sym__immediate_decimal_token2, - STATE(4444), 1, - sym_comment, - ACTIONS(1793), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 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, - [169102] = 5, + [184183] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4445), 1, + STATE(4748), 1, sym_comment, - ACTIONS(7565), 14, + ACTIONS(7868), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386474,19 +404823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169131] = 4, - ACTIONS(3), 1, + [184210] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4446), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4749), 1, sym_comment, - ACTIONS(1058), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1056), 12, + ACTIONS(8006), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386498,19 +404845,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, - [169158] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [184237] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(7940), 1, anon_sym_and2, - ACTIONS(7546), 1, - sym__newline, - STATE(4396), 1, - aux_sym_shebang_repeat1, - STATE(4447), 1, + STATE(4750), 1, sym_comment, - ACTIONS(7518), 13, + ACTIONS(8015), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386522,18 +404869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [169189] = 5, + [184264] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(7934), 1, anon_sym_and2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4448), 1, + ACTIONS(7936), 1, + anon_sym_xor2, + STATE(4751), 1, sym_comment, - ACTIONS(7532), 14, + ACTIONS(8015), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386546,24 +404894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [169218] = 8, + [184293] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, + ACTIONS(7940), 1, anon_sym_and2, - ACTIONS(7522), 1, + ACTIONS(7942), 1, anon_sym_xor2, - ACTIONS(7580), 1, - anon_sym_or2, - STATE(4449), 1, + STATE(4752), 1, sym_comment, - STATE(4478), 1, - aux_sym_shebang_repeat1, - ACTIONS(7614), 11, + ACTIONS(8015), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386575,18 +404918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [169253] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_or2, + [184322] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2286), 1, - sym__space, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(4450), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4753), 1, sym_comment, - ACTIONS(2282), 13, + ACTIONS(7868), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386599,19 +404940,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, - [169284] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [184349] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1040), 1, - sym__space, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(4451), 1, + ACTIONS(7904), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4754), 1, sym_comment, - ACTIONS(1038), 13, + ACTIONS(7868), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386624,18 +404965,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, - [169315] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [184378] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4452), 1, + ACTIONS(7870), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4755), 1, sym_comment, - ACTIONS(2100), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 12, + ACTIONS(7868), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386647,21 +404988,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [169342] = 7, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [184407] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, + ACTIONS(7904), 1, anon_sym_and2, - ACTIONS(7522), 1, + ACTIONS(7906), 1, anon_sym_xor2, - STATE(4453), 1, - sym_comment, - STATE(4454), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - ACTIONS(7549), 12, + STATE(4756), 1, + sym_comment, + ACTIONS(7868), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386674,18 +405016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [169375] = 6, + [184438] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4454), 1, + STATE(4757), 1, sym_comment, - ACTIONS(7565), 13, + ACTIONS(8006), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386698,19 +405036,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_and2, + anon_sym_xor2, anon_sym_or2, - [169406] = 6, + [184465] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7538), 1, + ACTIONS(7870), 1, anon_sym_and2, - ACTIONS(7546), 1, - sym__newline, - STATE(4402), 1, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4455), 1, + STATE(4758), 1, sym_comment, - ACTIONS(7518), 13, + ACTIONS(7868), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386722,20 +405063,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_xor2, anon_sym_or2, - [169437] = 5, + [184496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7616), 1, - aux_sym__immediate_decimal_token2, - STATE(4456), 1, + STATE(4759), 1, sym_comment, - ACTIONS(1803), 3, + ACTIONS(1054), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1801), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1052), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386747,19 +405086,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, - [169466] = 6, + anon_sym_DOT_DOT2, + [184523] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7575), 1, - sym__newline, - STATE(4439), 1, + STATE(4685), 1, aux_sym_shebang_repeat1, - STATE(4457), 1, + STATE(4760), 1, sym_comment, - ACTIONS(7549), 13, + ACTIONS(8008), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386771,51 +405107,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169497] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4458), 1, - sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4816), 1, - sym_cell_path, - STATE(4833), 1, - sym_path, - ACTIONS(1923), 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, - [169532] = 8, + [184550] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - ACTIONS(7582), 1, - anon_sym_or2, - STATE(4425), 1, + STATE(4686), 1, aux_sym_shebang_repeat1, - STATE(4459), 1, + STATE(4761), 1, sym_comment, - ACTIONS(7614), 11, + ACTIONS(8008), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386827,18 +405130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [169567] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [184577] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(5002), 1, - sym__space, - STATE(4460), 1, + ACTIONS(7904), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4762), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5004), 13, + ACTIONS(8006), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386851,19 +405155,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, - [169598] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [184606] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, - sym__space, - STATE(4461), 1, + ACTIONS(7870), 1, + anon_sym_and2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4763), 1, sym_comment, - ACTIONS(2229), 13, + ACTIONS(8006), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386876,47 +405179,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, - [169629] = 8, + anon_sym_xor2, + anon_sym_or2, + [184635] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4462), 1, - sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4829), 1, - sym_cell_path, - STATE(4833), 1, - sym_path, - ACTIONS(1927), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(8010), 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, - [169664] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(5006), 1, - sym__space, - STATE(4463), 1, + STATE(4687), 1, + aux_sym_shebang_repeat1, + STATE(4764), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5008), 13, - sym__newline, + ACTIONS(8008), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386928,20 +405204,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, - [169695] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [184666] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - sym__space, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(4464), 1, - sym_comment, - ACTIONS(2290), 13, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(8010), 1, sym__newline, + STATE(4688), 1, + aux_sym_shebang_repeat1, + STATE(4765), 1, + sym_comment, + ACTIONS(8008), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386953,19 +405229,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, - [169726] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [184697] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2300), 1, - sym__space, - STATE(4465), 1, + ACTIONS(7904), 1, + anon_sym_and2, + ACTIONS(7906), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4766), 1, sym_comment, - ACTIONS(2298), 13, + ACTIONS(8006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386978,16 +405255,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, - [169757] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [184728] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4466), 1, + ACTIONS(7870), 1, + anon_sym_and2, + ACTIONS(7872), 1, + anon_sym_xor2, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4767), 1, sym_comment, - ACTIONS(2249), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2247), 14, + ACTIONS(8006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387000,44 +405280,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_token4, - [169784] = 4, + anon_sym_or2, + [184759] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_DASH2, - STATE(4467), 1, - sym_comment, - ACTIONS(1002), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(3919), 1, sym__newline, - 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, - [169811] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(7881), 1, anon_sym_and2, - ACTIONS(7536), 1, + ACTIONS(7885), 1, anon_sym_xor2, - STATE(1820), 1, + STATE(4689), 1, aux_sym_shebang_repeat1, - STATE(4468), 1, + STATE(4768), 1, sym_comment, - ACTIONS(7565), 13, - sym__newline, + ACTIONS(8008), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387050,15 +405307,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [169842] = 4, + [184792] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(7887), 1, + anon_sym_xor2, + STATE(4690), 1, aux_sym_shebang_repeat1, - STATE(4469), 1, + STATE(4769), 1, sym_comment, - ACTIONS(7567), 15, - sym__newline, + ACTIONS(8008), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387070,23 +405332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [169869] = 6, - ACTIONS(3), 1, + [184825] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7618), 1, - anon_sym_DOT_DOT2, - STATE(4470), 1, + STATE(4691), 1, + aux_sym_shebang_repeat1, + STATE(4770), 1, sym_comment, - ACTIONS(2187), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7620), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 11, + ACTIONS(8013), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387098,14 +405352,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, - [169900] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [184852] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(4693), 1, aux_sym_shebang_repeat1, - STATE(4471), 1, + STATE(4771), 1, sym_comment, - ACTIONS(7567), 15, + ACTIONS(8013), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387121,18 +405379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [169927] = 6, + [184879] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(7624), 1, - sym__space, - STATE(4472), 1, + STATE(4772), 1, sym_comment, - STATE(7585), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7622), 13, + ACTIONS(2125), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2123), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387144,16 +405401,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, - [169958] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [184906] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4330), 1, - aux_sym_shebang_repeat1, - STATE(4473), 1, + ACTIONS(8020), 1, + aux_sym__immediate_decimal_token2, + STATE(4773), 1, sym_comment, - ACTIONS(7573), 15, + ACTIONS(1801), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1799), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387165,19 +405425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [169985] = 4, + aux_sym_unquoted_token2, + [184935] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4332), 1, + ACTIONS(7881), 1, + anon_sym_and2, + ACTIONS(8017), 1, + sym__newline, + STATE(4696), 1, aux_sym_shebang_repeat1, - STATE(4474), 1, + STATE(4774), 1, sym_comment, - ACTIONS(7573), 15, - sym__newline, + ACTIONS(8013), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387189,19 +405449,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170012] = 4, - ACTIONS(3), 1, + [184966] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4475), 1, - sym_comment, - ACTIONS(1010), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1008), 14, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(8017), 1, sym__newline, + STATE(4697), 1, + aux_sym_shebang_repeat1, + STATE(4775), 1, + sym_comment, + ACTIONS(8013), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387213,19 +405474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [170039] = 5, + anon_sym_xor2, + anon_sym_or2, + [184997] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7528), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(7881), 1, anon_sym_and2, - STATE(1820), 1, + ACTIONS(7885), 1, + anon_sym_xor2, + STATE(4700), 1, aux_sym_shebang_repeat1, - STATE(4476), 1, + STATE(4776), 1, sym_comment, - ACTIONS(7567), 14, - sym__newline, + ACTIONS(8013), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387237,20 +405501,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [170068] = 6, + [185030] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7575), 1, + ACTIONS(3919), 1, sym__newline, - STATE(4445), 1, + ACTIONS(7883), 1, + anon_sym_and2, + ACTIONS(7887), 1, + anon_sym_xor2, + STATE(4701), 1, aux_sym_shebang_repeat1, - STATE(4477), 1, + STATE(4777), 1, sym_comment, - ACTIONS(7549), 13, + ACTIONS(8013), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387262,22 +405527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [170099] = 7, - ACTIONS(251), 1, + [185063] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - ACTIONS(7559), 1, - anon_sym_or2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4478), 1, + ACTIONS(7928), 1, + anon_sym_DOT_DOT2, + STATE(4778), 1, sym_comment, - ACTIONS(7594), 12, + ACTIONS(7793), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7930), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7791), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387289,24 +405553,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, - [170132] = 8, + [185094] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4916), 1, + ACTIONS(4980), 1, anon_sym_DOT, - STATE(1466), 1, + STATE(1478), 1, sym_cell_path, - STATE(1681), 1, + STATE(1733), 1, aux_sym_cell_path_repeat1, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(4479), 1, + STATE(4779), 1, sym_comment, - ACTIONS(973), 2, + ACTIONS(969), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(975), 10, + ACTIONS(971), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387317,22 +405580,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [170167] = 8, + [185129] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(7514), 1, + ACTIONS(7874), 1, anon_sym_DOT, - STATE(4480), 1, + STATE(4780), 1, sym_comment, - STATE(4592), 1, + STATE(4828), 1, aux_sym_cell_path_repeat1, - STATE(4833), 1, + STATE(5121), 1, + sym_cell_path, + STATE(5312), 1, sym_path, - STATE(4932), 1, + ACTIONS(1947), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185164] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1949), 1, + anon_sym_DASH2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4781), 1, + sym_comment, + STATE(4828), 1, + aux_sym_cell_path_repeat1, + STATE(5163), 1, sym_cell_path, - ACTIONS(1887), 11, + STATE(5312), 1, + sym_path, + ACTIONS(1951), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387344,16 +405634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170202] = 5, + [185199] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, - anon_sym_and2, - STATE(1820), 1, + STATE(4740), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4782), 1, sym_comment, - ACTIONS(7567), 14, + ACTIONS(7993), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387366,24 +405654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170231] = 8, + [185226] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4482), 1, + STATE(4783), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4901), 1, - sym_cell_path, - ACTIONS(1967), 11, + ACTIONS(1763), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1765), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -387395,18 +405677,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170266] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [185252] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7584), 1, + STATE(4784), 1, + sym_comment, + ACTIONS(1020), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1018), 13, sym__newline, - STATE(4333), 1, - aux_sym_shebang_repeat1, - STATE(4483), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185278] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4785), 1, sym_comment, - ACTIONS(7573), 13, + ACTIONS(1016), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1014), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387418,24 +405722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [170297] = 8, + anon_sym_RBRACE, + [185304] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(8024), 1, anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4484), 1, + ACTIONS(8026), 1, + anon_sym_DOT_DOT2, + STATE(4786), 1, sym_comment, - STATE(4557), 1, - sym_cell_path, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - ACTIONS(975), 11, + ACTIONS(8028), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(8022), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387447,18 +405747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170332] = 6, + [185334] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4968), 1, + ACTIONS(1699), 1, sym__space, - ACTIONS(7626), 1, - sym_long_flag_identifier, - ACTIONS(7628), 1, - anon_sym_EQ2, - STATE(4485), 1, + ACTIONS(7487), 1, + aux_sym_unquoted_token2, + STATE(4787), 1, sym_comment, - ACTIONS(4970), 13, + ACTIONS(1687), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387472,18 +405770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170363] = 6, + [185362] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7584), 1, - sym__newline, - STATE(4334), 1, - aux_sym_shebang_repeat1, - STATE(4486), 1, + STATE(4788), 1, sym_comment, - ACTIONS(7573), 13, + ACTIONS(7637), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387494,21 +405788,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170394] = 6, - ACTIONS(251), 1, + [185386] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7528), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4487), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4789), 1, sym_comment, - ACTIONS(7567), 13, + ACTIONS(1848), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1840), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387520,20 +405815,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_or2, - [170425] = 6, - ACTIONS(251), 1, + [185416] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7602), 1, - anon_sym_and2, - ACTIONS(7606), 1, - anon_sym_xor2, - ACTIONS(7632), 1, - anon_sym_or2, - STATE(4488), 1, + STATE(4790), 1, sym_comment, - ACTIONS(7630), 13, + ACTIONS(988), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(986), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387545,20 +405836,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, - [170456] = 6, + anon_sym_QMARK2, + [185442] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7604), 1, + ACTIONS(8030), 1, anon_sym_and2, - ACTIONS(7608), 1, - anon_sym_xor2, - ACTIONS(7634), 1, - anon_sym_or2, - STATE(4489), 1, + STATE(4791), 1, sym_comment, - ACTIONS(7630), 13, + ACTIONS(8015), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387570,20 +405857,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [185468] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8032), 1, + anon_sym_DOT, + ACTIONS(8035), 1, + aux_sym__immediate_decimal_token2, + STATE(4792), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1671), 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, + [185498] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8035), 1, + aux_sym__immediate_decimal_token2, + STATE(4793), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1671), 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, + [185526] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, + sym__newline, + ACTIONS(8041), 1, + anon_sym_RBRACK, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4794), 1, + sym_comment, + STATE(4802), 1, + aux_sym_shebang_repeat1, + STATE(5293), 1, + aux_sym_parameter_parens_repeat1, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [185578] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, + sym__newline, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8051), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [170487] = 6, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4795), 1, + sym_comment, + STATE(4803), 1, + aux_sym_shebang_repeat1, + STATE(5295), 1, + aux_sym_parameter_parens_repeat1, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [185630] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7530), 1, + ACTIONS(8053), 1, anon_sym_and2, - ACTIONS(7536), 1, + ACTIONS(8055), 1, anon_sym_xor2, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4490), 1, + STATE(4796), 1, sym_comment, - ACTIONS(7567), 13, + ACTIONS(8015), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387595,14 +405998,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_or2, - [170518] = 3, + [185658] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4491), 1, + ACTIONS(8030), 1, + anon_sym_and2, + ACTIONS(8057), 1, + anon_sym_xor2, + STATE(4797), 1, sym_comment, - ACTIONS(7013), 16, + ACTIONS(8015), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387614,27 +406021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [170543] = 8, + [185686] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(1034), 1, anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4492), 1, + ACTIONS(8026), 1, + anon_sym_DOT_DOT2, + STATE(4798), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4837), 1, - sym_cell_path, - ACTIONS(1931), 11, + ACTIONS(8028), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1036), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387646,20 +406046,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170578] = 7, + [185716] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, sym__newline, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7522), 1, - anon_sym_xor2, - STATE(4335), 1, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8059), 1, + anon_sym_RBRACK, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4799), 1, + sym_comment, + STATE(5065), 1, + aux_sym_parameter_parens_repeat1, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5553), 1, aux_sym_shebang_repeat1, - STATE(4493), 1, + STATE(5843), 1, + sym_parameter, + [185768] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, + sym__newline, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8061), 1, + anon_sym_RPAREN, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4800), 1, + sym_comment, + STATE(5077), 1, + aux_sym_parameter_parens_repeat1, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5553), 1, + aux_sym_shebang_repeat1, + STATE(5843), 1, + sym_parameter, + [185820] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4801), 1, sym_comment, - ACTIONS(7573), 12, + ACTIONS(1002), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1000), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387670,22 +406137,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [170611] = 7, + anon_sym_QMARK2, + [185846] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, sym__newline, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - STATE(4336), 1, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8063), 1, + anon_sym_RBRACK, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4802), 1, + sym_comment, + STATE(5073), 1, + aux_sym_parameter_parens_repeat1, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5553), 1, aux_sym_shebang_repeat1, - STATE(4494), 1, + STATE(5843), 1, + sym_parameter, + [185898] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, + sym__newline, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8065), 1, + anon_sym_RPAREN, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4803), 1, + sym_comment, + STATE(5074), 1, + aux_sym_parameter_parens_repeat1, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5553), 1, + aux_sym_shebang_repeat1, + STATE(5843), 1, + sym_parameter, + [185950] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4804), 1, sym_comment, - ACTIONS(7573), 12, + ACTIONS(1781), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1779), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387696,70 +406229,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_or2, - [170644] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT, - STATE(1681), 1, - aux_sym_cell_path_repeat1, - STATE(1921), 1, - sym_path, - STATE(4495), 1, - sym_comment, - STATE(5062), 1, - sym_cell_path, - ACTIONS(7636), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7638), 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, - [170679] = 8, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [185976] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1889), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4496), 1, + ACTIONS(8067), 1, + sym_long_flag_identifier, + ACTIONS(8069), 1, + anon_sym_EQ2, + STATE(4805), 1, sym_comment, - STATE(4592), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - STATE(4835), 1, - sym_cell_path, - ACTIONS(1891), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5010), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5012), 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, - [170714] = 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, + [186006] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4497), 1, + STATE(4806), 1, sym_comment, - STATE(4499), 1, - aux_sym_shebang_repeat1, - ACTIONS(7640), 15, + ACTIONS(8015), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387771,18 +406272,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_and2, anon_sym_xor2, anon_sym_or2, - [170741] = 4, + [186030] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(4327), 1, - aux_sym_shebang_repeat1, - STATE(4498), 1, + ACTIONS(8071), 1, + sym_identifier, + ACTIONS(8076), 1, + anon_sym_DOLLAR, + ACTIONS(8079), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8082), 1, + anon_sym_DASH_DASH, + ACTIONS(8085), 1, + anon_sym_DASH2, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + STATE(4807), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(8074), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [186076] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4808), 1, sym_comment, - ACTIONS(7640), 15, + ACTIONS(7728), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387794,18 +406325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170768] = 4, + [186100] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4499), 1, + STATE(4809), 1, sym_comment, - ACTIONS(7532), 15, + ACTIONS(8015), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387817,24 +406346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170795] = 6, + [186124] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7642), 1, - anon_sym_DOT_DOT2, - STATE(4500), 1, + ACTIONS(7601), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8088), 1, + anon_sym_DOT, + STATE(4810), 1, sym_comment, - ACTIONS(2084), 2, + ACTIONS(1781), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7644), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 11, + ACTIONS(1779), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387846,43 +406373,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, - [170826] = 6, + [186154] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(8053), 1, anon_sym_and2, - ACTIONS(7646), 1, - sym__newline, - STATE(4345), 1, - aux_sym_shebang_repeat1, - STATE(4501), 1, + STATE(4811), 1, sym_comment, - ACTIONS(7640), 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, - [170857] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7646), 1, + ACTIONS(8015), 14, + ts_builtin_sym_end, sym__newline, - STATE(4348), 1, - aux_sym_shebang_repeat1, - STATE(4502), 1, - sym_comment, - ACTIONS(7640), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387893,49 +406393,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_xor2, anon_sym_or2, - [170888] = 7, - ACTIONS(251), 1, + [186180] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, - anon_sym_and2, - ACTIONS(7522), 1, - anon_sym_xor2, - STATE(4399), 1, - aux_sym_shebang_repeat1, - STATE(4503), 1, + ACTIONS(8092), 1, + sym__space, + ACTIONS(8094), 1, + aux_sym_record_entry_token1, + STATE(4812), 1, sym_comment, - ACTIONS(7640), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [170921] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, + STATE(4927), 1, + aux_sym_command_repeat1, + ACTIONS(8090), 12, sym__newline, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - STATE(4405), 1, - aux_sym_shebang_repeat1, - STATE(4504), 1, - sym_comment, - ACTIONS(7640), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387946,20 +406418,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_or2, - [170954] = 6, + anon_sym_RBRACE, + [186210] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4986), 1, + ACTIONS(8098), 1, sym__space, - STATE(4505), 1, + STATE(4813), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 13, + STATE(4815), 1, + aux_sym_command_repeat1, + ACTIONS(8096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387973,20 +406442,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170985] = 7, - ACTIONS(251), 1, + [186238] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - STATE(4490), 1, - aux_sym_shebang_repeat1, - STATE(4506), 1, + ACTIONS(8100), 1, + anon_sym_EQ2, + ACTIONS(8102), 1, + sym_short_flag_identifier, + STATE(4814), 1, sym_comment, - ACTIONS(7518), 12, + ACTIONS(5027), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5029), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387997,20 +406466,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_or2, - [171018] = 6, + [186268] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, + ACTIONS(8106), 1, sym__space, - STATE(4507), 1, + STATE(4815), 2, sym_comment, - ACTIONS(1843), 13, + aux_sym_command_repeat1, + ACTIONS(8104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388024,14 +406488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171049] = 4, - ACTIONS(251), 1, + [186294] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4350), 1, - aux_sym_shebang_repeat1, - STATE(4508), 1, + ACTIONS(8109), 1, + anon_sym_QMARK2, + STATE(4816), 1, sym_comment, - ACTIONS(7640), 15, + ACTIONS(1010), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1008), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388043,22 +406511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [171076] = 6, + [186322] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4994), 1, - sym__space, - STATE(4509), 1, + ACTIONS(8111), 1, + anon_sym_QMARK2, + STATE(4817), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4996), 13, + ACTIONS(992), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(990), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388070,16 +406534,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, - [171107] = 4, + [186350] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4374), 1, - aux_sym_shebang_repeat1, - STATE(4510), 1, + ACTIONS(8030), 1, + anon_sym_and2, + STATE(4818), 1, sym_comment, - ACTIONS(7640), 15, + ACTIONS(8015), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388091,22 +406554,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_and2, anon_sym_xor2, anon_sym_or2, - [171134] = 6, + [186376] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8113), 1, + aux_sym__immediate_decimal_token2, + STATE(4819), 1, + sym_comment, + ACTIONS(1711), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1713), 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, + [186404] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(2280), 1, - sym__space, - STATE(4511), 1, + STATE(4820), 1, sym_comment, - ACTIONS(2278), 13, + ACTIONS(1006), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1004), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388118,17 +406600,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, - [171165] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [186430] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4512), 1, + ACTIONS(8053), 1, + anon_sym_and2, + ACTIONS(8055), 1, + anon_sym_xor2, + STATE(4821), 1, sym_comment, - ACTIONS(1795), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1793), 14, + ACTIONS(8015), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388140,21 +406623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [171192] = 6, + anon_sym_or2, + [186458] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7520), 1, + ACTIONS(8030), 1, anon_sym_and2, - ACTIONS(7646), 1, - sym__newline, - STATE(4434), 1, - aux_sym_shebang_repeat1, - STATE(4513), 1, + ACTIONS(8057), 1, + anon_sym_xor2, + STATE(4822), 1, sym_comment, - ACTIONS(7640), 13, + ACTIONS(8015), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388165,71 +406646,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [171223] = 4, + [186486] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_DASH2, - STATE(4514), 1, + ACTIONS(8115), 1, + anon_sym_DOT, + ACTIONS(8117), 1, + aux_sym__immediate_decimal_token2, + STATE(4823), 1, sym_comment, - ACTIONS(1006), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1669), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 10, sym__newline, 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, - [171250] = 6, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [186516] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7646), 1, - sym__newline, - STATE(4448), 1, - aux_sym_shebang_repeat1, - STATE(4515), 1, + ACTIONS(8119), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8121), 1, + aux_sym__immediate_decimal_token2, + STATE(4824), 1, sym_comment, - ACTIONS(7640), 13, + ACTIONS(1661), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 10, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [171281] = 7, + 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, + [186546] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7520), 1, + ACTIONS(8053), 1, anon_sym_and2, - ACTIONS(7522), 1, + ACTIONS(8055), 1, anon_sym_xor2, - STATE(4340), 1, - aux_sym_shebang_repeat1, - STATE(4516), 1, + ACTIONS(8123), 1, + anon_sym_or2, + STATE(4825), 1, sym_comment, - ACTIONS(7640), 12, + ACTIONS(7932), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388240,22 +406719,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [171314] = 7, + [186576] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7538), 1, + ACTIONS(8030), 1, anon_sym_and2, - ACTIONS(7540), 1, + ACTIONS(8057), 1, anon_sym_xor2, - STATE(4468), 1, - aux_sym_shebang_repeat1, - STATE(4517), 1, + ACTIONS(8125), 1, + anon_sym_or2, + STATE(4826), 1, sym_comment, - ACTIONS(7549), 12, + ACTIONS(7932), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388266,22 +406743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [171347] = 7, - ACTIONS(251), 1, + [186606] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(7538), 1, - anon_sym_and2, - ACTIONS(7540), 1, - anon_sym_xor2, - STATE(4393), 1, - aux_sym_shebang_repeat1, - STATE(4518), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(4827), 1, sym_comment, - ACTIONS(7640), 12, + ACTIONS(2270), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2266), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388292,48 +406767,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_or2, - [171380] = 9, + [186636] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7651), 1, - anon_sym_EQ, - ACTIONS(7654), 1, - sym__newline, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(7660), 1, + ACTIONS(982), 1, anon_sym_DASH2, - STATE(6474), 1, - aux_sym_shebang_repeat1, - STATE(4519), 2, + ACTIONS(7874), 1, + anon_sym_DOT, + STATE(4828), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(5047), 2, - sym_param_type, - sym_param_value, - ACTIONS(7649), 8, + STATE(4834), 1, + aux_sym_cell_path_repeat1, + STATE(5312), 1, + sym_path, + ACTIONS(984), 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, - [171417] = 6, - ACTIONS(3), 1, + [186668] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1787), 1, - sym__space, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7662), 1, - anon_sym_DOT, - STATE(4520), 1, + STATE(4829), 1, sym_comment, - ACTIONS(1785), 13, + ACTIONS(7319), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388345,16 +406810,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, - [171448] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [186692] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4430), 1, - aux_sym_shebang_repeat1, - STATE(4521), 1, + STATE(4830), 1, sym_comment, - ACTIONS(7549), 15, + ACTIONS(7637), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388366,23 +406831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171475] = 6, + [186716] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2088), 1, - anon_sym_DASH2, - ACTIONS(7664), 1, + ACTIONS(8026), 1, anon_sym_DOT_DOT2, - STATE(4522), 1, + ACTIONS(8129), 1, + anon_sym_DASH2, + STATE(4831), 1, sym_comment, - ACTIONS(7666), 2, + ACTIONS(8028), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2094), 11, + ACTIONS(8127), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388394,15 +406858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171505] = 4, + [186746] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4523), 1, + STATE(4832), 1, sym_comment, - ACTIONS(5042), 2, + ACTIONS(998), 3, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(5044), 13, + anon_sym_DOT, + ACTIONS(996), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388414,21 +406879,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, - [171531] = 6, + anon_sym_QMARK2, + [186772] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7670), 1, + STATE(4833), 1, + sym_comment, + ACTIONS(1052), 2, anon_sym_DASH2, - ACTIONS(7672), 1, anon_sym_DOT_DOT2, - STATE(4524), 1, - sym_comment, - ACTIONS(7674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7668), 11, + ACTIONS(1054), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -388440,37 +406900,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171561] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [186798] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4525), 1, + ACTIONS(975), 1, + anon_sym_DASH2, + ACTIONS(8131), 1, + anon_sym_DOT, + STATE(5312), 1, + sym_path, + STATE(4834), 2, sym_comment, - ACTIONS(7600), 15, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(977), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [171585] = 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, + [186828] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4526), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(4835), 1, sym_comment, - ACTIONS(1826), 3, + ACTIONS(2294), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1824), 12, + ACTIONS(2292), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388482,13 +406950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [171611] = 3, + [186858] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4527), 1, + STATE(4836), 1, sym_comment, - ACTIONS(7600), 15, + ACTIONS(7637), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388504,69 +406971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171635] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7678), 1, - sym__newline, - ACTIONS(7680), 1, - anon_sym_PIPE, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4528), 1, - sym_comment, - STATE(4572), 1, - aux_sym_shebang_repeat1, - STATE(4959), 1, - aux_sym_parameter_parens_repeat1, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [171687] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4529), 1, - sym_comment, - ACTIONS(998), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(996), 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_QMARK2, - [171713] = 3, + [186882] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4530), 1, + STATE(4837), 1, sym_comment, - ACTIONS(7382), 15, + ACTIONS(8015), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388582,17 +406992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171737] = 5, - ACTIONS(251), 1, + [186906] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, - anon_sym_and2, - ACTIONS(7692), 1, - anon_sym_xor2, - STATE(4531), 1, + STATE(4838), 1, sym_comment, - ACTIONS(7600), 13, - ts_builtin_sym_end, + ACTIONS(5124), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5126), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388604,46 +407012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [171765] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7694), 1, - sym_identifier, - ACTIONS(7699), 1, - anon_sym_DOLLAR, - ACTIONS(7702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7705), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - STATE(4532), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7697), 3, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - [171811] = 3, + anon_sym_RBRACE, + [186932] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4533), 1, + STATE(4839), 1, sym_comment, - ACTIONS(7347), 15, - ts_builtin_sym_end, + ACTIONS(5243), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388655,24 +407031,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [171835] = 6, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [186956] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2181), 1, - anon_sym_DASH2, - ACTIONS(7711), 1, - anon_sym_DOT_DOT2, - STATE(4534), 1, + ACTIONS(8134), 1, + aux_sym__immediate_decimal_token2, + STATE(4840), 1, sym_comment, - ACTIONS(7713), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2187), 11, - anon_sym_EQ, + ACTIONS(1799), 3, sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1801), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -388682,43 +407057,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171865] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7717), 1, - sym__space, - ACTIONS(7719), 1, - aux_sym_record_entry_token1, - STATE(4535), 1, - sym_comment, - STATE(4765), 1, - aux_sym_command_repeat1, - ACTIONS(7715), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [171895] = 6, + anon_sym_LPAREN2, + [186984] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2070), 1, + STATE(4841), 1, + sym_comment, + ACTIONS(2123), 2, anon_sym_DASH2, - ACTIONS(7721), 1, anon_sym_DOT_DOT2, - STATE(4536), 1, - sym_comment, - ACTIONS(7723), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 11, + ACTIONS(2125), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -388730,43 +407078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171925] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4537), 1, - sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5002), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5004), 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, - [171955] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [187010] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4538), 1, + STATE(4842), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5006), 2, + ACTIONS(8015), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5008), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388778,101 +407098,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, - [171985] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7553), 1, - aux_sym__immediate_decimal_token2, - STATE(4539), 1, - sym_comment, - ACTIONS(1785), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 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, - [172013] = 17, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [187034] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(8037), 1, sym_identifier, - ACTIONS(7678), 1, + ACTIONS(8039), 1, sym__newline, - ACTIONS(7682), 1, + ACTIONS(8043), 1, anon_sym_DOLLAR, - ACTIONS(7684), 1, + ACTIONS(8045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, + ACTIONS(8047), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, + ACTIONS(8049), 1, anon_sym_DASH2, - ACTIONS(7725), 1, + ACTIONS(8136), 1, anon_sym_RBRACK, - STATE(4115), 1, + STATE(4374), 1, sym_param_long_flag, - STATE(4231), 1, - sym__param_name, STATE(4540), 1, + sym__param_name, + STATE(4799), 1, + aux_sym_shebang_repeat1, + STATE(4843), 1, sym_comment, - STATE(4834), 1, + STATE(5269), 1, aux_sym_parameter_parens_repeat1, - STATE(5044), 1, + STATE(5357), 1, sym_param_rest, - STATE(5046), 1, + STATE(5364), 1, sym_param_opt, - STATE(5050), 1, + STATE(5375), 1, sym_param_short_flag, - STATE(5251), 1, - aux_sym_shebang_repeat1, - STATE(5554), 1, + STATE(5843), 1, sym_parameter, - [172065] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7727), 1, - anon_sym_DOT, - ACTIONS(7730), 1, - aux_sym__immediate_decimal_token2, - STATE(4541), 1, - sym_comment, - ACTIONS(1645), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1647), 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, - [172095] = 6, + [187086] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(4542), 1, + STATE(4844), 1, sym_comment, - ACTIONS(2286), 2, - ts_builtin_sym_end, + ACTIONS(5136), 2, sym__space, - ACTIONS(2282), 11, + anon_sym_LPAREN2, + ACTIONS(5138), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388884,19 +407156,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, - [172125] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187112] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(2256), 1, anon_sym_LPAREN2, - ACTIONS(2268), 1, + ACTIONS(2260), 1, aux_sym_unquoted_token4, - STATE(4543), 1, + STATE(4845), 1, sym_comment, - ACTIONS(1040), 2, + ACTIONS(2258), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1038), 11, + ACTIONS(2254), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388908,39 +407182,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, - [172155] = 6, - ACTIONS(251), 1, + [187142] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_DASH2, - ACTIONS(7732), 1, - anon_sym_DOT_DOT2, - STATE(4544), 1, + ACTIONS(8098), 1, + sym__space, + STATE(4846), 1, sym_comment, - ACTIONS(7734), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2084), 11, - anon_sym_EQ, - sym_identifier, + STATE(4860), 1, + aux_sym_command_repeat1, + ACTIONS(8090), 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, - [172185] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [187170] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, - anon_sym_and2, - STATE(4545), 1, + STATE(4847), 1, sym_comment, - ACTIONS(7600), 14, + ACTIONS(1773), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1771), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388952,18 +407226,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_xor2, - anon_sym_or2, - [172211] = 4, + aux_sym_unquoted_token2, + [187196] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4546), 1, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(4848), 1, sym_comment, - ACTIONS(1002), 3, + ACTIONS(1036), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1000), 12, + ACTIONS(1034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388975,52 +407251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [172237] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7678), 1, - sym__newline, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7738), 1, - anon_sym_RBRACK, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4547), 1, - sym_comment, - STATE(4830), 1, - aux_sym_parameter_parens_repeat1, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5251), 1, - aux_sym_shebang_repeat1, - STATE(5554), 1, - sym_parameter, - [172289] = 5, + [187226] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7742), 1, - sym__space, - STATE(4548), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(4849), 1, sym_comment, - STATE(4550), 1, - aux_sym_command_repeat1, - ACTIONS(7740), 13, + ACTIONS(1838), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1830), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389032,19 +407275,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, - [172317] = 4, + [187256] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7690), 1, - anon_sym_and2, - STATE(4549), 1, - sym_comment, - ACTIONS(7600), 14, - ts_builtin_sym_end, + ACTIONS(8138), 1, sym__newline, + STATE(743), 1, + aux_sym__pipe_separator, + STATE(4850), 1, + sym_comment, + STATE(5492), 1, + aux_sym_shebang_repeat1, + ACTIONS(8141), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389054,18 +407300,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_xor2, - anon_sym_or2, - [172343] = 5, + [187288] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7742), 1, + ACTIONS(8098), 1, sym__space, - STATE(4550), 1, - sym_comment, - STATE(4623), 1, + STATE(4813), 1, aux_sym_command_repeat1, - ACTIONS(7744), 13, + STATE(4851), 1, + sym_comment, + ACTIONS(8143), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389079,74 +407323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172371] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7730), 1, - aux_sym__immediate_decimal_token2, - STATE(4551), 1, - sym_comment, - ACTIONS(1645), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1647), 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, - [172399] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7678), 1, - sym__newline, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7746), 1, - anon_sym_RPAREN, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4552), 1, - sym_comment, - STATE(4846), 1, - aux_sym_parameter_parens_repeat1, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5251), 1, - aux_sym_shebang_repeat1, - STATE(5554), 1, - sym_parameter, - [172451] = 5, + [187316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - sym__space, - ACTIONS(7748), 1, - anon_sym_EQ2, - STATE(4553), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4852), 1, sym_comment, - ACTIONS(5032), 13, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4992), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389158,18 +407347,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, - [172479] = 5, + [187346] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__space, - ACTIONS(7750), 1, - anon_sym_EQ2, - STATE(4554), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4853), 1, sym_comment, - ACTIONS(5050), 13, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5004), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5006), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389181,76 +407371,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172507] = 17, + [187376] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(2090), 1, + anon_sym_DASH2, + ACTIONS(8145), 1, + anon_sym_DOT_DOT2, + STATE(4854), 1, + sym_comment, + ACTIONS(8147), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2096), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7678), 1, sym__newline, - ACTIONS(7682), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7752), 1, - anon_sym_RPAREN, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4555), 1, - sym_comment, - STATE(4973), 1, - aux_sym_parameter_parens_repeat1, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5251), 1, - aux_sym_shebang_repeat1, - STATE(5554), 1, - sym_parameter, - [172559] = 6, + [187406] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7754), 1, - anon_sym_DOT, - ACTIONS(7756), 1, - aux_sym__immediate_decimal_token2, - STATE(4556), 1, - sym_comment, - ACTIONS(1645), 3, + ACTIONS(2098), 1, anon_sym_DASH2, + ACTIONS(8149), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, + STATE(4855), 1, + sym_comment, + ACTIONS(8151), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [172589] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4557), 1, - sym_comment, - ACTIONS(1056), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1058), 13, + ACTIONS(2104), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389262,21 +407419,56 @@ 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, - [172615] = 5, + [187436] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7758), 1, - aux_sym__immediate_decimal_token2, - STATE(4558), 1, - sym_comment, - ACTIONS(1801), 3, + ACTIONS(8037), 1, sym_identifier, + ACTIONS(8039), 1, + sym__newline, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 11, + ACTIONS(8153), 1, + anon_sym_RPAREN, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4800), 1, + aux_sym_shebang_repeat1, + STATE(4856), 1, + sym_comment, + STATE(5305), 1, + aux_sym_parameter_parens_repeat1, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [187488] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2131), 1, + anon_sym_DASH2, + ACTIONS(8155), 1, + anon_sym_DOT_DOT2, + STATE(4857), 1, + sym_comment, + ACTIONS(8157), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2137), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -389286,23 +407478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [172643] = 7, - ACTIONS(251), 1, + [187518] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7760), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4559), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(4858), 1, sym_comment, - STATE(5234), 1, - aux_sym_shebang_repeat1, - ACTIONS(7763), 3, + ACTIONS(2230), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2226), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2542), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389312,19 +407502,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, - [172675] = 6, - ACTIONS(3), 1, + [187548] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(4560), 1, + STATE(4859), 1, sym_comment, - ACTIONS(2280), 2, + ACTIONS(7728), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389336,15 +407520,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, - [172705] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [187572] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4561), 1, - sym_comment, - ACTIONS(1024), 2, + ACTIONS(8098), 1, sym__space, - anon_sym_DOT, - ACTIONS(1022), 13, + STATE(4815), 1, + aux_sym_command_repeat1, + STATE(4860), 1, + sym_comment, + ACTIONS(8159), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389358,15 +407546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172731] = 4, + [187600] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4562), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(4861), 1, sym_comment, - ACTIONS(5054), 2, + ACTIONS(2274), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(5056), 13, + ACTIONS(2272), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389378,45 +407570,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, - [172757] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7672), 1, - anon_sym_DOT_DOT2, - ACTIONS(7767), 1, - anon_sym_DASH2, - STATE(4563), 1, - sym_comment, - ACTIONS(7674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7765), 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, - [172787] = 6, + [187630] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(4564), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(4862), 1, sym_comment, - ACTIONS(2243), 2, + ACTIONS(2238), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2239), 11, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389428,15 +407594,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, - [172817] = 4, - ACTIONS(3), 1, + [187660] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4863), 1, sym_comment, - ACTIONS(1020), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1018), 13, + ACTIONS(7728), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389448,21 +407612,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, - [172843] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [187684] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7672), 1, + ACTIONS(8026), 1, anon_sym_DOT_DOT2, - ACTIONS(7771), 1, + ACTIONS(8163), 1, anon_sym_DASH2, - STATE(4566), 1, + STATE(4864), 1, sym_comment, - ACTIONS(7674), 2, + ACTIONS(8028), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7769), 11, + ACTIONS(8161), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389474,19 +407639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172873] = 6, + [187714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(4567), 1, + STATE(4865), 1, sym_comment, - ACTIONS(1836), 2, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5063), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1828), 11, + ACTIONS(5065), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389498,12 +407663,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, - [172903] = 3, - ACTIONS(251), 1, + [187744] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4568), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4866), 1, sym_comment, - ACTIONS(7773), 15, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4986), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4988), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389515,20 +407687,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_else, - anon_sym_RBRACE, - anon_sym_catch, - [172927] = 4, + [187774] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4569), 1, + STATE(4867), 1, sym_comment, - ACTIONS(1787), 3, + ACTIONS(1801), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1785), 12, + ACTIONS(1799), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389541,22 +407709,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, - [172953] = 7, + [187800] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7775), 1, + ACTIONS(8165), 1, sym__newline, STATE(743), 1, aux_sym__pipe_separator, - STATE(4570), 1, + STATE(4868), 1, sym_comment, - STATE(5234), 1, + STATE(5492), 1, aux_sym_shebang_repeat1, - ACTIONS(7778), 3, + ACTIONS(8168), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2542), 9, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389566,72 +407734,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172985] = 3, + [187832] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4571), 1, + STATE(4869), 1, sym_comment, - ACTIONS(7013), 15, - ts_builtin_sym_end, + ACTIONS(2082), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2084), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [173009] = 17, + 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, + [187858] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + STATE(4870), 1, + sym_comment, + ACTIONS(2086), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2088), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(7678), 1, sym__newline, - ACTIONS(7682), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [187884] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8039), 1, + sym__newline, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, anon_sym_DASH2, - ACTIONS(7780), 1, + ACTIONS(8170), 1, anon_sym_PIPE, - STATE(4115), 1, + STATE(4374), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4540), 1, sym__param_name, - STATE(4572), 1, + STATE(4871), 1, sym_comment, - STATE(4828), 1, + STATE(5083), 1, aux_sym_parameter_parens_repeat1, - STATE(5044), 1, + STATE(5357), 1, sym_param_rest, - STATE(5046), 1, + STATE(5364), 1, sym_param_opt, - STATE(5050), 1, + STATE(5375), 1, sym_param_short_flag, - STATE(5251), 1, + STATE(5553), 1, aux_sym_shebang_repeat1, - STATE(5554), 1, + STATE(5843), 1, sym_parameter, - [173061] = 4, + [187936] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4573), 1, + STATE(4872), 1, sym_comment, - ACTIONS(1006), 3, + ACTIONS(1820), 3, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1004), 12, + anon_sym_LPAREN2, + ACTIONS(1818), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389643,18 +407834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [173087] = 5, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [187962] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, - anon_sym_and2, - ACTIONS(7692), 1, - anon_sym_xor2, - STATE(4574), 1, + ACTIONS(8092), 1, + sym__space, + ACTIONS(8172), 1, + aux_sym_record_entry_token1, + STATE(4873), 1, sym_comment, - ACTIONS(7600), 13, - ts_builtin_sym_end, + STATE(4927), 1, + aux_sym_command_repeat1, + ACTIONS(8090), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389666,130 +407858,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [173115] = 17, - ACTIONS(251), 1, + anon_sym_RBRACE, + [187992] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7678), 1, + STATE(4874), 1, + sym_comment, + ACTIONS(1024), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1022), 13, sym__newline, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7782), 1, - anon_sym_RBRACK, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4547), 1, - aux_sym_shebang_repeat1, - STATE(4575), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188018] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(4875), 1, sym_comment, - STATE(4880), 1, - aux_sym_parameter_parens_repeat1, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [173167] = 17, + STATE(8185), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7984), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7982), 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, + [188048] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(8037), 1, sym_identifier, - ACTIONS(7678), 1, + ACTIONS(8039), 1, sym__newline, - ACTIONS(7682), 1, + ACTIONS(8043), 1, anon_sym_DOLLAR, - ACTIONS(7684), 1, + ACTIONS(8045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, + ACTIONS(8047), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, + ACTIONS(8049), 1, anon_sym_DASH2, - ACTIONS(7784), 1, - anon_sym_RPAREN, - STATE(4115), 1, + ACTIONS(8174), 1, + anon_sym_PIPE, + STATE(4374), 1, sym_param_long_flag, - STATE(4231), 1, + STATE(4540), 1, sym__param_name, - STATE(4552), 1, + STATE(4871), 1, aux_sym_shebang_repeat1, - STATE(4576), 1, + STATE(4876), 1, sym_comment, - STATE(4886), 1, + STATE(5123), 1, aux_sym_parameter_parens_repeat1, - STATE(5044), 1, + STATE(5357), 1, sym_param_rest, - STATE(5046), 1, + STATE(5364), 1, sym_param_opt, - STATE(5050), 1, + STATE(5375), 1, sym_param_short_flag, - STATE(5554), 1, + STATE(5843), 1, sym_parameter, - [173219] = 6, - ACTIONS(251), 1, + [188100] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7786), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7788), 1, - aux_sym__immediate_decimal_token2, - STATE(4577), 1, + ACTIONS(5112), 1, + sym__space, + ACTIONS(8176), 1, + anon_sym_EQ2, + STATE(4877), 1, sym_comment, - ACTIONS(1637), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 10, + ACTIONS(5114), 13, 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, - [173249] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4578), 1, - sym_comment, - ACTIONS(1777), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1779), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173275] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [188128] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4579), 1, + ACTIONS(5130), 1, + sym__space, + ACTIONS(8178), 1, + anon_sym_EQ2, + STATE(4878), 1, sym_comment, - ACTIONS(7347), 15, - ts_builtin_sym_end, + ACTIONS(5132), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389801,18 +407984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [173299] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188156] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4580), 1, + STATE(4879), 1, sym_comment, - ACTIONS(1028), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1026), 13, + ACTIONS(8180), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389825,20 +408004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_else, anon_sym_RBRACE, - [173325] = 6, + anon_sym_catch, + [188180] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(4581), 1, + STATE(4880), 1, sym_comment, - ACTIONS(2294), 2, + ACTIONS(2244), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2290), 11, + anon_sym_LPAREN2, + ACTIONS(2242), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389850,15 +408028,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, - [173355] = 4, + aux_sym_unquoted_token4, + [188206] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4582), 1, - sym_comment, - ACTIONS(2098), 2, + ACTIONS(2072), 1, anon_sym_DASH2, + ACTIONS(8182), 1, anon_sym_DOT_DOT2, - ACTIONS(2100), 13, + STATE(4881), 1, + sym_comment, + ACTIONS(8184), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2078), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389870,14 +408053,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173381] = 3, + [188236] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4583), 1, + ACTIONS(8053), 1, + anon_sym_and2, + STATE(4882), 1, sym_comment, - ACTIONS(7347), 15, + ACTIONS(8015), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389890,22 +408073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [173405] = 6, + [188262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7293), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7790), 1, - anon_sym_DOT, - STATE(4584), 1, - sym_comment, - ACTIONS(1787), 2, - ts_builtin_sym_end, + ACTIONS(2308), 1, sym__space, - ACTIONS(1785), 11, + ACTIONS(8186), 1, + anon_sym_LBRACK2, + STATE(4883), 1, + sym_comment, + ACTIONS(2304), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389917,18 +408096,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, - [173435] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188290] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7948), 1, + aux_sym__immediate_decimal_token2, + STATE(4884), 1, + sym_comment, + ACTIONS(1779), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 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, + [188318] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7717), 1, + ACTIONS(2421), 1, sym__space, - ACTIONS(7792), 1, - aux_sym_record_entry_token1, - STATE(4585), 1, + STATE(4885), 1, sym_comment, - STATE(4765), 1, - aux_sym_command_repeat1, - ACTIONS(7715), 12, + ACTIONS(2419), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389940,20 +408140,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, - [173465] = 6, + [188343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - STATE(4586), 1, - sym_comment, - ACTIONS(1851), 2, - ts_builtin_sym_end, + ACTIONS(2405), 1, sym__space, - ACTIONS(1843), 11, + STATE(4886), 1, + sym_comment, + ACTIONS(2403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389965,19 +408161,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, - [173495] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188368] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, - anon_sym_and2, - ACTIONS(7794), 1, - anon_sym_xor2, - ACTIONS(7796), 1, - anon_sym_or2, - STATE(4587), 1, + ACTIONS(1951), 1, + sym__space, + STATE(4887), 1, sym_comment, - ACTIONS(7630), 12, - ts_builtin_sym_end, + ACTIONS(1949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389989,14 +408182,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, - [173525] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188393] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4588), 1, + STATE(4888), 1, sym_comment, - ACTIONS(7382), 15, - ts_builtin_sym_end, + ACTIONS(5830), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390007,22 +408202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [173549] = 6, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [188416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(4589), 1, - sym_comment, - ACTIONS(2300), 2, - ts_builtin_sym_end, + ACTIONS(2456), 1, sym__space, - ACTIONS(2298), 11, + STATE(4889), 1, + sym_comment, + ACTIONS(2454), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390034,16 +408223,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, - [173579] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(1959), 1, sym__space, - ACTIONS(7798), 1, - anon_sym_LBRACK2, - STATE(4590), 1, + STATE(4890), 1, sym_comment, - ACTIONS(2333), 13, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390057,16 +408246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173607] = 4, + [188466] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4591), 1, - sym_comment, - ACTIONS(1010), 3, - ts_builtin_sym_end, + ACTIONS(2464), 1, sym__space, - anon_sym_DOT, - ACTIONS(1008), 12, + STATE(4891), 1, + sym_comment, + ACTIONS(2462), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390078,99 +408265,106 @@ static const uint16_t 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, - [173633] = 7, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188491] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(986), 1, - anon_sym_DASH2, - ACTIONS(7514), 1, - anon_sym_DOT, - STATE(4592), 1, - sym_comment, - STATE(4600), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_path, - ACTIONS(988), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8188), 1, sym__newline, + ACTIONS(8190), 1, + sym__space, + STATE(4892), 1, + sym_comment, + STATE(4953), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(8192), 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, - [173665] = 4, - ACTIONS(251), 1, + [188520] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4593), 1, + ACTIONS(2441), 1, + sym__space, + STATE(4893), 1, sym_comment, - ACTIONS(2102), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2104), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2439), 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, - [173691] = 17, + anon_sym_RBRACE, + [188545] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7678), 1, + ACTIONS(8194), 1, sym__newline, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7800), 1, - anon_sym_RPAREN, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4555), 1, + ACTIONS(8199), 1, + anon_sym_catch, + STATE(4894), 1, + sym_comment, + STATE(4928), 1, aux_sym_shebang_repeat1, - STATE(4594), 1, + ACTIONS(8197), 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, + [188574] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8188), 1, + sym__newline, + ACTIONS(8190), 1, + sym__space, + STATE(4895), 1, sym_comment, - STATE(4844), 1, - aux_sym_parameter_parens_repeat1, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [173743] = 5, + STATE(4937), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(8201), 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, + [188603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7742), 1, + ACTIONS(2522), 1, sym__space, - STATE(4595), 1, + STATE(4896), 1, sym_comment, - STATE(4623), 1, - aux_sym_command_repeat1, - ACTIONS(7802), 13, + ACTIONS(2520), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390184,17 +408378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173771] = 5, - ACTIONS(251), 1, + [188628] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, - anon_sym_and2, - ACTIONS(7794), 1, - anon_sym_xor2, - STATE(4596), 1, + ACTIONS(2460), 1, + sym__space, + STATE(4897), 1, sym_comment, - ACTIONS(7600), 13, - ts_builtin_sym_end, + ACTIONS(2458), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390206,21 +408397,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_or2, - [173799] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188653] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7804), 1, - sym_long_flag_identifier, - ACTIONS(7806), 1, - anon_sym_EQ2, - STATE(4597), 1, - sym_comment, - ACTIONS(4968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4970), 11, + ACTIONS(5240), 1, sym__newline, + ACTIONS(8203), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4898), 1, + sym_comment, + ACTIONS(1310), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390231,19 +408421,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, - [173829] = 6, + anon_sym_RPAREN, + [188682] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - STATE(4598), 1, - sym_comment, - ACTIONS(2233), 2, - ts_builtin_sym_end, + ACTIONS(2468), 1, sym__space, - ACTIONS(2229), 11, + STATE(4899), 1, + sym_comment, + ACTIONS(2466), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390255,16 +408441,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, - [173859] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188707] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4599), 1, + STATE(4900), 1, sym_comment, - ACTIONS(1795), 3, + ACTIONS(8180), 14, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1793), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390276,44 +408461,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_unquoted_token2, - [173885] = 6, - ACTIONS(251), 1, + anon_sym_else, + anon_sym_catch, + [188730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DASH2, - ACTIONS(7808), 1, - anon_sym_DOT, - STATE(4833), 1, - sym_path, - STATE(4600), 2, + ACTIONS(7741), 1, + sym__space, + STATE(4901), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(981), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7739), 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, - [173915] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [188755] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, - anon_sym_and2, - ACTIONS(7692), 1, - anon_sym_xor2, - ACTIONS(7811), 1, - anon_sym_or2, - STATE(4601), 1, + ACTIONS(2472), 1, + sym__space, + STATE(4902), 1, sym_comment, - ACTIONS(7630), 12, - ts_builtin_sym_end, + ACTIONS(2470), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390325,49 +408503,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, - [173945] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188780] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7678), 1, - sym__newline, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7813), 1, - anon_sym_RBRACK, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4540), 1, - aux_sym_shebang_repeat1, - STATE(4602), 1, + STATE(4903), 1, sym_comment, - STATE(4821), 1, - aux_sym_parameter_parens_repeat1, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [173997] = 3, + ACTIONS(1767), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1769), 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, + [188805] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4603), 1, - sym_comment, - ACTIONS(7382), 15, - ts_builtin_sym_end, + ACTIONS(8206), 1, sym__newline, + ACTIONS(8211), 1, + anon_sym_else, + STATE(4904), 1, + sym_comment, + STATE(4973), 1, + aux_sym_shebang_repeat1, + ACTIONS(8209), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390378,20 +408548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [174021] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [188834] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1707), 1, - sym__space, - ACTIONS(7184), 1, - aux_sym_unquoted_token2, - STATE(4604), 1, - sym_comment, - ACTIONS(1695), 13, + ACTIONS(8213), 1, sym__newline, + ACTIONS(8218), 1, + anon_sym_else, + STATE(4905), 1, + sym_comment, + STATE(4986), 1, + aux_sym_shebang_repeat1, + ACTIONS(8216), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390403,41 +408572,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [174049] = 4, + [188863] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4605), 1, - sym_comment, - ACTIONS(2193), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2195), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(8220), 1, sym__newline, + ACTIONS(8225), 1, + anon_sym_else, + STATE(4906), 1, + sym_comment, + STATE(4999), 1, + aux_sym_shebang_repeat1, + ACTIONS(8223), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174075] = 5, + [188892] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7815), 1, - anon_sym_QMARK2, - STATE(4606), 1, - sym_comment, - ACTIONS(992), 3, - ts_builtin_sym_end, + ACTIONS(2488), 1, sym__space, - anon_sym_DOT, - ACTIONS(990), 11, + STATE(4907), 1, + sym_comment, + ACTIONS(2486), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390449,18 +408614,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, - [174103] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7817), 1, - anon_sym_QMARK2, - STATE(4607), 1, - sym_comment, - ACTIONS(1014), 3, - ts_builtin_sym_end, + ACTIONS(8229), 1, sym__space, - anon_sym_DOT, - ACTIONS(1012), 11, + STATE(4908), 1, + sym_comment, + ACTIONS(8227), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390472,14 +408635,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, - [174131] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188942] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4608), 1, - sym_comment, - ACTIONS(7600), 15, - ts_builtin_sym_end, + ACTIONS(8231), 1, sym__newline, + ACTIONS(8236), 1, + anon_sym_catch, + STATE(4909), 1, + sym_comment, + STATE(5041), 1, + aux_sym_shebang_repeat1, + ACTIONS(8234), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390490,23 +408659,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_and2, - anon_sym_xor2, - anon_sym_or2, - [174155] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [188971] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7819), 1, - anon_sym_EQ2, - ACTIONS(7821), 1, - sym_short_flag_identifier, - STATE(4609), 1, + ACTIONS(8238), 1, + anon_sym_DOT, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token2, + STATE(4910), 1, sym_comment, - ACTIONS(4930), 2, + ACTIONS(1669), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(4932), 11, sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189000] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8242), 1, + sym__newline, + ACTIONS(8247), 1, + anon_sym_catch, + STATE(4909), 1, + aux_sym_shebang_repeat1, + STATE(4911), 1, + sym_comment, + ACTIONS(8245), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390517,19 +408705,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, - [174185] = 6, + anon_sym_RPAREN, + [189029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4610), 1, - sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4986), 2, - ts_builtin_sym_end, + ACTIONS(2484), 1, sym__space, - ACTIONS(4988), 11, + STATE(4912), 1, + sym_comment, + ACTIONS(2482), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390541,14 +408725,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, - [174215] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189054] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4611), 1, - sym_comment, - ACTIONS(7600), 15, - ts_builtin_sym_end, + ACTIONS(8249), 1, sym__newline, + ACTIONS(8254), 1, + anon_sym_catch, + STATE(4894), 1, + aux_sym_shebang_repeat1, + STATE(4913), 1, + sym_comment, + ACTIONS(8252), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390559,22 +408749,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [174239] = 6, + anon_sym_RPAREN, + [189083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4612), 1, + STATE(4914), 1, sym_comment, - STATE(7966), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4994), 2, + ACTIONS(5124), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4996), 11, + anon_sym_LPAREN2, + ACTIONS(5126), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390586,16 +408771,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, - [174269] = 4, - ACTIONS(251), 1, + [189108] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7736), 1, - anon_sym_and2, - STATE(4613), 1, + STATE(4915), 1, sym_comment, - ACTIONS(7600), 14, - ts_builtin_sym_end, + ACTIONS(5834), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390606,18 +408789,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_xor2, - anon_sym_or2, - [174295] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [189131] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4614), 1, - sym_comment, - ACTIONS(2249), 3, + ACTIONS(8256), 1, ts_builtin_sym_end, + ACTIONS(8258), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2247), 12, + STATE(4916), 1, + sym_comment, + STATE(5031), 1, + aux_sym_command_repeat1, + ACTIONS(8143), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390629,13 +408814,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_unquoted_token4, - [174321] = 3, + [189160] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4615), 1, + STATE(4917), 1, sym_comment, - ACTIONS(5175), 15, + ACTIONS(5243), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390647,20 +408832,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_else, - anon_sym_RBRACE, anon_sym_catch, - [174345] = 5, + [189183] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7742), 1, + ACTIONS(5844), 1, sym__space, - STATE(4595), 1, - aux_sym_command_repeat1, - STATE(4616), 1, + STATE(4918), 1, sym_comment, - ACTIONS(7715), 13, + ACTIONS(5842), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390674,19 +408855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174373] = 6, + [189208] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1038), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(8024), 1, anon_sym_DASH2, - ACTIONS(7672), 1, - anon_sym_DOT_DOT2, - STATE(4617), 1, + STATE(4919), 1, sym_comment, - ACTIONS(7674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1040), 11, + STATE(8048), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8022), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390698,15 +408878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174403] = 4, - ACTIONS(251), 1, + [189237] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, - anon_sym_and2, - STATE(4618), 1, - sym_comment, - ACTIONS(7600), 14, + ACTIONS(8258), 1, + sym__space, + ACTIONS(8260), 1, ts_builtin_sym_end, + STATE(4920), 1, + sym_comment, + STATE(5034), 1, + aux_sym_command_repeat1, + ACTIONS(8159), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390718,22 +408901,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_xor2, - anon_sym_or2, - [174429] = 6, + [189266] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(4619), 1, + STATE(4921), 1, sym_comment, - STATE(7624), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7624), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7622), 11, + ACTIONS(5838), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390744,39 +408919,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, - [174459] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7823), 1, - aux_sym__immediate_decimal_token2, - STATE(4620), 1, - sym_comment, - ACTIONS(1745), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1747), 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, - [174487] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [189289] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4621), 1, - sym_comment, - ACTIONS(1803), 3, - ts_builtin_sym_end, + ACTIONS(2078), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1801), 12, + STATE(4922), 1, + sym_comment, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390788,19 +408940,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, - [174513] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189314] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7736), 1, - anon_sym_and2, - ACTIONS(7794), 1, - anon_sym_xor2, - STATE(4622), 1, - sym_comment, - ACTIONS(7600), 13, - ts_builtin_sym_end, + ACTIONS(8262), 1, sym__newline, + ACTIONS(8267), 1, + anon_sym_else, + STATE(4904), 1, + aux_sym_shebang_repeat1, + STATE(4923), 1, + sym_comment, + ACTIONS(8265), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390811,37 +408964,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_or2, - [174541] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [189343] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7827), 1, - sym__space, - STATE(4623), 2, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_DASH2, + STATE(4924), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7825), 13, + STATE(8048), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8161), 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, - [174567] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [189372] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2522), 1, - sym__space, - STATE(4624), 1, + ACTIONS(8269), 1, + anon_sym_EQ2, + STATE(4925), 1, sym_comment, - ACTIONS(2520), 13, + ACTIONS(5130), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5132), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390853,39 +409010,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, - [174592] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4625), 1, - sym_comment, - ACTIONS(1745), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1747), 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, - [174617] = 4, + [189399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4626), 1, + STATE(4926), 1, sym_comment, - ACTIONS(5042), 3, + ACTIONS(5136), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(5044), 11, + ACTIONS(5138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390897,14 +409031,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, - [174642] = 4, + [189424] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(8098), 1, sym__space, - STATE(4627), 1, + STATE(4815), 1, + aux_sym_command_repeat1, + STATE(4927), 1, sym_comment, - ACTIONS(2473), 13, + ACTIONS(8159), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390916,16 +409052,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, - [174667] = 3, - ACTIONS(3), 1, + [189451] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4628), 1, - sym_comment, - ACTIONS(5695), 14, + ACTIONS(5240), 1, sym__newline, - sym__space, + ACTIONS(8271), 1, + anon_sym_catch, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4928), 1, + sym_comment, + ACTIONS(1310), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -390936,20 +409075,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_RBRACE, - aux_sym_record_entry_token1, - [174690] = 6, + anon_sym_RPAREN, + [189480] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1830), 1, + anon_sym_DASH2, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + STATE(4929), 1, + sym_comment, + ACTIONS(1838), 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, + [189509] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8274), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8276), 1, + aux_sym__immediate_decimal_token2, + STATE(4930), 1, + sym_comment, + ACTIONS(1661), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 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, + [189538] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7832), 1, - anon_sym_AT, - ACTIONS(7834), 1, - anon_sym_DASH2, - STATE(4629), 1, + STATE(4931), 1, sym_comment, - STATE(5009), 1, - sym_param_cmd, - ACTIONS(7830), 11, + ACTIONS(1779), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -390961,20 +409142,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174719] = 6, + anon_sym_LPAREN2, + [189563] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7832), 1, - anon_sym_AT, - ACTIONS(7834), 1, - anon_sym_DASH2, - STATE(4630), 1, + ACTIONS(7665), 1, + anon_sym_DOT, + ACTIONS(7667), 1, + aux_sym__immediate_decimal_token2, + STATE(4932), 1, sym_comment, - STATE(5010), 1, - sym_param_cmd, - ACTIONS(7830), 11, - anon_sym_EQ, + ACTIONS(1779), 2, sym_identifier, + anon_sym_DASH2, + ACTIONS(1781), 10, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -390984,41 +409166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174748] = 6, + [189592] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(7836), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4631), 1, - sym_comment, - ACTIONS(1314), 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, - [174777] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(1842), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2278), 1, + ACTIONS(1850), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2292), 1, anon_sym_DASH2, - STATE(4632), 1, + STATE(4933), 1, sym_comment, - ACTIONS(2280), 11, + ACTIONS(2294), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391030,18 +409189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174806] = 6, + [189621] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1828), 1, + ACTIONS(1840), 1, anon_sym_DASH2, - ACTIONS(1830), 1, + ACTIONS(1842), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - STATE(4633), 1, + ACTIONS(1850), 1, + aux_sym__unquoted_in_record_token2, + STATE(4934), 1, sym_comment, - ACTIONS(1836), 11, + ACTIONS(1848), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391053,14 +409212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174835] = 4, + [189650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2415), 1, + ACTIONS(2476), 1, sym__space, - STATE(4634), 1, + STATE(4935), 1, sym_comment, - ACTIONS(2413), 13, + ACTIONS(2474), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391074,14 +409233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174860] = 4, + [189675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2480), 1, sym__space, - STATE(4635), 1, + STATE(4936), 1, sym_comment, - ACTIONS(2395), 13, + ACTIONS(2478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391095,36 +409254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174885] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4636), 1, - sym_comment, - ACTIONS(1781), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1783), 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, - [174910] = 4, + [189700] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2405), 1, + ACTIONS(8278), 1, + sym__newline, + ACTIONS(8281), 1, sym__space, - STATE(4637), 1, + STATE(4937), 2, sym_comment, - ACTIONS(2403), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(8284), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391136,40 +409276,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [174935] = 4, - ACTIONS(3), 1, + [189727] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__space, - STATE(4638), 1, + ACTIONS(1659), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2266), 1, + anon_sym_DASH2, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + STATE(4938), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(2270), 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, - [174960] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [189756] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2229), 1, + ACTIONS(2226), 1, anon_sym_DASH2, - ACTIONS(2231), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(4639), 1, + ACTIONS(2232), 1, + aux_sym__unquoted_in_record_token2, + STATE(4939), 1, sym_comment, - ACTIONS(2233), 11, + ACTIONS(2230), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391181,14 +409322,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174989] = 4, + [189785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5110), 1, + ACTIONS(2043), 1, sym__space, - STATE(4640), 1, + STATE(4940), 1, sym_comment, - ACTIONS(5112), 13, + ACTIONS(2041), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391202,14 +409343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175014] = 4, + [189810] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(1943), 1, sym__space, - STATE(4641), 1, + STATE(4941), 1, sym_comment, - ACTIONS(5116), 13, + ACTIONS(1941), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391223,14 +409364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175039] = 4, + [189835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, + ACTIONS(2494), 1, sym__space, - STATE(4642), 1, + STATE(4942), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(2492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391244,35 +409385,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175064] = 4, - ACTIONS(3), 1, + [189860] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7841), 1, - sym__space, - STATE(4643), 1, + STATE(4943), 1, sym_comment, - ACTIONS(7839), 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, - [175089] = 4, + ACTIONS(1669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1671), 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, + [189885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5122), 1, - sym__space, - STATE(4644), 1, + ACTIONS(8286), 1, + anon_sym_EQ2, + STATE(4944), 1, sym_comment, - ACTIONS(5124), 13, + ACTIONS(5112), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391284,40 +409428,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [175114] = 6, + [189912] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_DASH2, - ACTIONS(2241), 1, - anon_sym_LPAREN2, - ACTIONS(2245), 1, - aux_sym__unquoted_in_list_token2, - STATE(4645), 1, + ACTIONS(8117), 1, + aux_sym__immediate_decimal_token2, + STATE(4945), 1, sym_comment, - ACTIONS(2243), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1669), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175143] = 4, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(8188), 1, + sym__newline, + ACTIONS(8190), 1, sym__space, - STATE(4646), 1, + STATE(4895), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4946), 1, sym_comment, - ACTIONS(1917), 13, - sym__newline, + ACTIONS(8288), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391329,15 +409473,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, - [175168] = 4, + [189968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(5180), 1, sym__space, - STATE(4647), 1, + STATE(4947), 1, sym_comment, - ACTIONS(2361), 13, + ACTIONS(5182), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391351,14 +409494,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175193] = 4, + [189993] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(8290), 1, + anon_sym_DOT, + ACTIONS(8294), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8296), 1, + aux_sym__immediate_decimal_token5, + STATE(4948), 1, + sym_comment, + STATE(6004), 1, + sym__immediate_decimal, + ACTIONS(8292), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6329), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1579), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [190034] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(2506), 1, sym__space, - STATE(4648), 1, + STATE(4949), 1, sym_comment, - ACTIONS(2365), 13, + ACTIONS(2504), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391372,14 +409544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175218] = 4, + [190059] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(5184), 1, sym__space, - STATE(4649), 1, + STATE(4950), 1, sym_comment, - ACTIONS(2369), 13, + ACTIONS(5186), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391393,16 +409565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175243] = 4, - ACTIONS(3), 1, + [190084] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2375), 1, - sym__space, - STATE(4650), 1, - sym_comment, - ACTIONS(2373), 13, + ACTIONS(8298), 1, sym__newline, + STATE(729), 1, + aux_sym__pipe_separator, + STATE(4951), 1, + sym_comment, + STATE(5492), 1, + aux_sym_shebang_repeat1, + ACTIONS(8301), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391412,17 +409589,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, + [190115] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4952), 1, + sym_comment, + ACTIONS(1771), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [175268] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [190140] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(8188), 1, + sym__newline, + ACTIONS(8190), 1, sym__space, - STATE(4651), 1, + STATE(4937), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4953), 1, sym_comment, - ACTIONS(2379), 13, - sym__newline, + ACTIONS(8303), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391434,15 +409633,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [190169] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8305), 1, + aux_sym__immediate_decimal_token2, + STATE(4954), 1, + sym_comment, + ACTIONS(1711), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [175293] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2510), 1, sym__space, - STATE(4652), 1, + STATE(4955), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(2508), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391456,14 +409676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175318] = 4, + [190221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5709), 1, + ACTIONS(1885), 1, sym__space, - STATE(4653), 1, + STATE(4956), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(1883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391477,36 +409697,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175343] = 4, - ACTIONS(3), 1, + [190246] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4654), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(8129), 1, + anon_sym_DASH2, + STATE(4957), 1, sym_comment, - ACTIONS(1028), 3, - ts_builtin_sym_end, - sym__space, + STATE(8048), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8127), 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, + [190275] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4958), 1, + sym_comment, + ACTIONS(1000), 2, + anon_sym_DASH2, anon_sym_DOT, - ACTIONS(1026), 11, + ACTIONS(1002), 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, - [175368] = 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_QMARK2, + [190300] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, - sym__space, - STATE(4655), 1, + STATE(4959), 1, sym_comment, - ACTIONS(2387), 13, + ACTIONS(5826), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391517,17 +409759,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, - [175393] = 4, - ACTIONS(3), 1, + aux_sym_record_entry_token1, + [190323] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2409), 1, - sym__space, - STATE(4656), 1, - sym_comment, - ACTIONS(2407), 13, + ACTIONS(5240), 1, sym__newline, + ACTIONS(8307), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4960), 1, + sym_comment, + ACTIONS(1310), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391539,39 +409784,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [175418] = 6, - ACTIONS(251), 1, + [190352] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(2220), 1, anon_sym_LPAREN2, - ACTIONS(7670), 1, - anon_sym_DASH2, - STATE(4657), 1, + ACTIONS(2222), 1, + aux_sym__unquoted_in_record_token4, + STATE(4961), 1, sym_comment, - STATE(7478), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7668), 11, + ACTIONS(1034), 6, anon_sym_EQ, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(1036), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175447] = 4, + [190381] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, - sym__space, - STATE(4658), 1, + STATE(4962), 1, sym_comment, - ACTIONS(2509), 13, + ACTIONS(5842), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391582,16 +409825,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, - [175472] = 4, + aux_sym_record_entry_token1, + [190404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7368), 1, - sym__space, - STATE(4659), 1, + ACTIONS(8310), 1, + anon_sym_LBRACK2, + STATE(4963), 1, sym_comment, - ACTIONS(7366), 13, + ACTIONS(2308), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2304), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391603,16 +409849,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, - [175497] = 4, + [190431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7845), 1, - sym__space, - STATE(4660), 1, + STATE(4964), 1, sym_comment, - ACTIONS(7843), 13, + ACTIONS(1024), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391624,16 +409870,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, - [175522] = 4, + [190456] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(1893), 1, sym__space, - STATE(4661), 1, + STATE(4965), 1, sym_comment, - ACTIONS(5684), 13, + ACTIONS(1891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391647,39 +409891,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175547] = 4, - ACTIONS(3), 1, + [190481] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5693), 1, - sym__space, - STATE(4662), 1, + STATE(4966), 1, sym_comment, - ACTIONS(5691), 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, - [175572] = 6, + ACTIONS(1661), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1663), 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, + [190506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7847), 1, - sym__newline, - ACTIONS(7849), 1, + ACTIONS(2393), 1, sym__space, - STATE(4663), 1, + STATE(4967), 1, sym_comment, - STATE(4703), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7851), 11, + ACTIONS(2391), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391691,15 +409932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175601] = 4, + anon_sym_RBRACE, + [190531] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4664), 1, + STATE(4968), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1004), 2, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 12, + anon_sym_DOT, + ACTIONS(1006), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391711,36 +409953,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175626] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [190556] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2094), 1, - sym__space, - STATE(4665), 1, + STATE(4969), 1, sym_comment, - ACTIONS(2088), 13, + ACTIONS(996), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(998), 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, - [175651] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [190581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(1897), 1, sym__space, - STATE(4666), 1, + STATE(4970), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(1895), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391754,110 +409996,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175676] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7853), 1, - sym__newline, - ACTIONS(7858), 1, - anon_sym_else, - STATE(4667), 1, - sym_comment, - STATE(4766), 1, - aux_sym_shebang_repeat1, - ACTIONS(7856), 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, - [175705] = 6, + [190606] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7860), 1, - anon_sym_DOT, - ACTIONS(7862), 1, - aux_sym__immediate_decimal_token2, - STATE(4668), 1, + STATE(4971), 1, sym_comment, - ACTIONS(1645), 3, + ACTIONS(986), 2, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 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, - [175734] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym__unquoted_in_list_token4, - STATE(4669), 1, - sym_comment, - ACTIONS(2286), 5, + anon_sym_DOT, + ACTIONS(988), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2282), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH2, - [175763] = 6, + anon_sym_QMARK2, + [190631] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7864), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7866), 1, - aux_sym__immediate_decimal_token2, - STATE(4670), 1, + STATE(4972), 1, sym_comment, - ACTIONS(1637), 3, + ACTIONS(1799), 2, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 9, - ts_builtin_sym_end, + aux_sym__unquoted_in_record_token2, + ACTIONS(1801), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [175792] = 6, + anon_sym_LPAREN2, + [190656] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(5240), 1, sym__newline, - ACTIONS(7868), 1, - anon_sym_catch, - STATE(1820), 1, + ACTIONS(8312), 1, + anon_sym_else, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4671), 1, + STATE(4973), 1, sym_comment, - ACTIONS(1314), 11, + ACTIONS(1310), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391869,17 +410061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175821] = 5, + [190685] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7871), 1, - ts_builtin_sym_end, - ACTIONS(7873), 1, + ACTIONS(8317), 1, sym__space, - STATE(4672), 2, + STATE(4974), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7825), 11, + ACTIONS(8315), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391891,35 +410080,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, - [175848] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4673), 1, - sym_comment, - ACTIONS(1793), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 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, - [175873] = 4, + anon_sym_RBRACE, + [190710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5701), 1, + ACTIONS(7793), 1, sym__space, - STATE(4674), 1, + STATE(4975), 1, sym_comment, - ACTIONS(5699), 13, + ACTIONS(7791), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391933,36 +410103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175898] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7756), 1, - aux_sym__immediate_decimal_token2, - STATE(4675), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 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, - [175925] = 4, + [190735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(8321), 1, sym__space, - STATE(4676), 1, + STATE(4976), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(8319), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391976,16 +410124,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175950] = 5, + [190760] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7878), 1, + ACTIONS(8325), 1, anon_sym_LT, - ACTIONS(7880), 1, + ACTIONS(8327), 1, anon_sym_DASH2, - STATE(4677), 1, + STATE(4977), 1, sym_comment, - ACTIONS(7876), 12, + ACTIONS(8323), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391998,57 +410146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175977] = 5, - ACTIONS(251), 1, + [190787] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7880), 1, - anon_sym_DASH2, - ACTIONS(7882), 1, - anon_sym_LT, - STATE(4678), 1, + ACTIONS(2397), 1, + sym__space, + STATE(4978), 1, sym_comment, - ACTIONS(7876), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2395), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176004] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4679), 1, - sym_comment, - ACTIONS(1645), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1647), 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, - [176029] = 4, + anon_sym_RBRACE, + [190812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(8331), 1, sym__space, - STATE(4680), 1, + STATE(4979), 1, sym_comment, - ACTIONS(1965), 13, + ACTIONS(8329), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392062,40 +410188,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176054] = 6, + [190837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - STATE(4681), 1, + ACTIONS(8335), 1, + sym__space, + STATE(4980), 1, sym_comment, - ACTIONS(2294), 5, + ACTIONS(8333), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2290), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [176083] = 5, + anon_sym_RBRACE, + [190862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7884), 1, - anon_sym_EQ2, - STATE(4682), 1, - sym_comment, - ACTIONS(5030), 2, - ts_builtin_sym_end, + ACTIONS(2096), 1, sym__space, - ACTIONS(5032), 11, + STATE(4981), 1, + sym_comment, + ACTIONS(2090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392107,14 +410228,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, - [176110] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(2104), 1, sym__space, - STATE(4683), 1, + STATE(4982), 1, sym_comment, - ACTIONS(1897), 13, + ACTIONS(2098), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392128,41 +410251,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176135] = 6, - ACTIONS(251), 1, + [190912] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7767), 1, - anon_sym_DASH2, - STATE(4684), 1, + ACTIONS(2393), 1, + sym__space, + STATE(4983), 1, sym_comment, - STATE(7478), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7765), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2391), 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, - [176164] = 6, + anon_sym_RBRACE, + [190937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7886), 1, - ts_builtin_sym_end, - ACTIONS(7888), 1, + ACTIONS(7984), 1, sym__space, - STATE(4685), 1, + STATE(4984), 1, sym_comment, - STATE(4710), 1, - aux_sym_command_repeat1, - ACTIONS(7740), 11, + ACTIONS(7982), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392174,15 +410291,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, - [176193] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190962] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4686), 1, + STATE(4985), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(1818), 2, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 12, + aux_sym__unquoted_in_record_token2, + ACTIONS(1820), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392195,81 +410314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [176218] = 5, + [190987] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7890), 1, - aux_sym__immediate_decimal_token2, - STATE(4687), 1, - sym_comment, - ACTIONS(1745), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1747), 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, - [176245] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - STATE(4688), 1, - sym_comment, - ACTIONS(2300), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2298), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [176274] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2447), 1, - sym__space, - STATE(4689), 1, - sym_comment, - ACTIONS(2445), 13, + ACTIONS(5240), 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, - [176299] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1040), 1, - sym__space, - STATE(4690), 1, + ACTIONS(8337), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4986), 1, sym_comment, - ACTIONS(1038), 13, - sym__newline, + ACTIONS(1310), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392281,20 +410337,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, - [176324] = 6, + [191016] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(8165), 1, sym__newline, - ACTIONS(7892), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4691), 1, + STATE(743), 1, + aux_sym__pipe_separator, + STATE(4987), 1, sym_comment, - ACTIONS(1314), 11, + STATE(5492), 1, + aux_sym_shebang_repeat1, + ACTIONS(8168), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392304,15 +410361,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, - [176353] = 4, - ACTIONS(251), 1, + [191047] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7897), 1, - anon_sym_catch, - STATE(4692), 1, + ACTIONS(2361), 1, + sym__space, + STATE(4988), 1, sym_comment, - ACTIONS(7895), 13, + ACTIONS(2359), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392326,14 +410382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176378] = 4, + [191072] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(1919), 1, sym__space, - STATE(4693), 1, + STATE(4989), 1, sym_comment, - ACTIONS(2417), 13, + ACTIONS(1917), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392347,14 +410403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176403] = 4, + [191097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(2137), 1, sym__space, - STATE(4694), 1, + STATE(4990), 1, sym_comment, - ACTIONS(2417), 13, + ACTIONS(2131), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392368,41 +410424,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176428] = 6, - ACTIONS(251), 1, + [191122] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7832), 1, - anon_sym_AT, - ACTIONS(7901), 1, - anon_sym_DASH2, - STATE(4695), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym__unquoted_in_record_token4, + STATE(4991), 1, sym_comment, - STATE(5070), 1, - sym_param_cmd, - ACTIONS(7899), 11, + ACTIONS(2254), 6, anon_sym_EQ, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2258), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176457] = 6, - ACTIONS(251), 1, + [191151] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7903), 1, - sym__newline, - ACTIONS(7908), 1, - anon_sym_catch, - STATE(4696), 1, + ACTIONS(2498), 1, + sym__space, + STATE(4992), 1, sym_comment, - STATE(4736), 1, - aux_sym_shebang_repeat1, - ACTIONS(7906), 11, + ACTIONS(2496), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392414,15 +410467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176486] = 4, + anon_sym_RBRACE, + [191176] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4697), 1, - sym_comment, - ACTIONS(1824), 2, + ACTIONS(8342), 1, + anon_sym_AT, + ACTIONS(8344), 1, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1826), 12, + STATE(4993), 1, + sym_comment, + STATE(5432), 1, + sym_param_cmd, + ACTIONS(8340), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392434,19 +410491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [176511] = 6, + [191205] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7912), 1, + ACTIONS(8342), 1, + anon_sym_AT, + ACTIONS(8344), 1, anon_sym_DASH2, - STATE(4698), 1, + STATE(4994), 1, sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7910), 11, + STATE(5434), 1, + sym_param_cmd, + ACTIONS(8340), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392458,37 +410514,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176540] = 6, - ACTIONS(251), 1, + [191234] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7771), 1, - anon_sym_DASH2, - STATE(4699), 1, + ACTIONS(2530), 1, + sym__space, + STATE(4995), 1, sym_comment, - STATE(7478), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7769), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2528), 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, - [176569] = 4, + anon_sym_RBRACE, + [191259] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(5188), 1, sym__space, - STATE(4700), 1, + STATE(4996), 1, sym_comment, - ACTIONS(2481), 13, + ACTIONS(5190), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392502,37 +410556,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176594] = 6, - ACTIONS(251), 1, + [191284] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(2236), 1, anon_sym_LPAREN2, - ACTIONS(7916), 1, - anon_sym_DASH2, - STATE(4701), 1, + ACTIONS(2240), 1, + aux_sym__unquoted_in_record_token4, + STATE(4997), 1, sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7914), 11, + ACTIONS(2272), 6, anon_sym_EQ, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2274), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + [191313] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym__unquoted_in_record_token4, + STATE(4998), 1, + sym_comment, + ACTIONS(2234), 6, + anon_sym_EQ, + sym_identifier, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176623] = 4, + anon_sym_DASH2, + ACTIONS(2238), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [191342] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8346), 1, + sym__newline, + ACTIONS(8351), 1, + anon_sym_else, + STATE(4960), 1, + aux_sym_shebang_repeat1, + STATE(4999), 1, + sym_comment, + ACTIONS(8349), 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, + [191371] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(5192), 1, sym__space, - STATE(4702), 1, + STATE(5000), 1, sym_comment, - ACTIONS(2421), 13, + ACTIONS(5194), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392546,17 +410646,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176648] = 5, + [191396] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5001), 1, + sym_comment, + ACTIONS(1020), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1018), 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, + [191421] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7918), 1, + STATE(5002), 1, + sym_comment, + ACTIONS(1016), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1014), 11, sym__newline, - ACTIONS(7921), 1, - sym__space, - STATE(4703), 2, - sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7924), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392567,14 +410688,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, - [176675] = 3, - ACTIONS(251), 1, + [191446] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4704), 1, + ACTIONS(2365), 1, + sym__space, + STATE(5003), 1, sym_comment, - ACTIONS(5175), 14, - ts_builtin_sym_end, + ACTIONS(2363), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392586,43 +410707,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_else, - anon_sym_catch, - [176698] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191471] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7928), 1, - anon_sym_DASH2, - STATE(4705), 1, + STATE(5004), 1, sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7926), 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, - [176727] = 6, + ACTIONS(1711), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1713), 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, + [191496] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7930), 1, - sym__newline, - ACTIONS(7935), 1, - anon_sym_else, - STATE(4706), 1, + ACTIONS(8355), 1, + anon_sym_catch, + STATE(5005), 1, sym_comment, - STATE(4763), 1, - aux_sym_shebang_repeat1, - ACTIONS(7933), 11, + ACTIONS(8353), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -392634,17 +410750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176756] = 5, + anon_sym_RBRACE, + [191521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_EQ2, - STATE(4707), 1, - sym_comment, - ACTIONS(5048), 2, - ts_builtin_sym_end, + ACTIONS(2369), 1, sym__space, - ACTIONS(5050), 11, + STATE(5006), 1, + sym_comment, + ACTIONS(2367), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392656,14 +410770,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, - [176783] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(1927), 1, sym__space, - STATE(4708), 1, + STATE(5007), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(1925), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392677,16 +410793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176808] = 4, + [191571] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4709), 1, - sym_comment, - ACTIONS(5054), 3, - ts_builtin_sym_end, + ACTIONS(5220), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(5056), 11, + STATE(5008), 1, + sym_comment, + ACTIONS(5222), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392698,18 +410812,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, - [176833] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7888), 1, + ACTIONS(5224), 1, sym__space, - ACTIONS(7939), 1, - ts_builtin_sym_end, - STATE(4672), 1, - aux_sym_command_repeat1, - STATE(4710), 1, + STATE(5009), 1, sym_comment, - ACTIONS(7744), 11, + ACTIONS(5226), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392721,44 +410833,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, - [176862] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(3613), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(7941), 1, - anon_sym_DOT, - ACTIONS(7945), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7947), 1, - aux_sym__immediate_decimal_token5, - STATE(4711), 1, - sym_comment, - STATE(5709), 1, - sym__immediate_decimal, - ACTIONS(7943), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6017), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [176903] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191621] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4712), 1, + ACTIONS(8357), 1, + anon_sym_QMARK2, + STATE(5010), 1, sym_comment, - ACTIONS(1008), 2, + ACTIONS(990), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(1010), 12, + ACTIONS(992), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392770,38 +410857,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [176928] = 6, - ACTIONS(251), 1, + [191648] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7339), 1, - anon_sym_DOT, - ACTIONS(7341), 1, - aux_sym__immediate_decimal_token2, - STATE(4713), 1, + ACTIONS(1935), 1, + sym__space, + STATE(5011), 1, sym_comment, - ACTIONS(1785), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1787), 10, - anon_sym_EQ, + ACTIONS(1933), 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, - [176957] = 4, + anon_sym_RBRACE, + [191673] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(8361), 1, sym__space, - STATE(4714), 1, + STATE(5012), 1, sym_comment, - ACTIONS(1969), 13, + ACTIONS(8359), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392815,14 +410899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176982] = 4, + [191698] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(2373), 1, sym__space, - STATE(4715), 1, + STATE(5013), 1, sym_comment, - ACTIONS(2425), 13, + ACTIONS(2371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392836,14 +410920,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177007] = 4, + [191723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(2377), 1, sym__space, - STATE(4716), 1, + STATE(5014), 1, + sym_comment, + ACTIONS(2375), 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, + [191748] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1939), 1, + sym__space, + STATE(5015), 1, sym_comment, - ACTIONS(2429), 13, + ACTIONS(1937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392857,15 +410962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177032] = 4, + [191773] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4717), 1, + ACTIONS(8363), 1, + anon_sym_QMARK2, + STATE(5016), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(1008), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(1006), 12, + ACTIONS(1010), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392877,79 +410984,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [177057] = 4, - ACTIONS(251), 1, + [191800] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4718), 1, + STATE(5017), 1, sym_comment, - ACTIONS(996), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(998), 12, + ACTIONS(2242), 7, anon_sym_EQ, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token4, + ACTIONS(2244), 7, sym__newline, anon_sym_PIPE, 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, - [177082] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [191825] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4719), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2276), 1, + anon_sym_DASH2, + STATE(5018), 1, sym_comment, - ACTIONS(2249), 6, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2278), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191854] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1689), 1, anon_sym_LPAREN2, - ACTIONS(2247), 8, + ACTIONS(2280), 1, + anon_sym_DASH2, + STATE(5019), 1, + sym_comment, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2282), 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_DASH2, - aux_sym__unquoted_in_list_token4, - [177107] = 4, - ACTIONS(3), 1, + [191883] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5188), 1, - sym__space, - STATE(4720), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2284), 1, + anon_sym_DASH2, + STATE(5020), 1, sym_comment, - ACTIONS(5190), 13, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2286), 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, - [177132] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191912] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4721), 1, - sym_comment, - ACTIONS(1000), 2, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2288), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1002), 12, + STATE(5021), 1, + sym_comment, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2290), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392961,15 +411097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [177157] = 4, + [191941] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(2381), 1, sym__space, - STATE(4722), 1, + STATE(5022), 1, sym_comment, - ACTIONS(2461), 13, + ACTIONS(2379), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392983,16 +411118,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177182] = 4, + [191966] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4723), 1, - sym_comment, - ACTIONS(1024), 3, - ts_builtin_sym_end, + ACTIONS(2385), 1, sym__space, - anon_sym_DOT, - ACTIONS(1022), 11, + STATE(5023), 1, + sym_comment, + ACTIONS(2383), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393004,14 +411137,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, - [177207] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, + ACTIONS(5832), 1, sym__space, - STATE(4724), 1, + STATE(5024), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(5830), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393025,14 +411160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177232] = 3, + [192016] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4725), 1, + ACTIONS(5836), 1, + sym__space, + STATE(5025), 1, sym_comment, - ACTIONS(5691), 14, + ACTIONS(5834), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393043,18 +411179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [177255] = 4, + [192041] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4726), 1, - sym_comment, - ACTIONS(1020), 3, - ts_builtin_sym_end, + ACTIONS(2409), 1, sym__space, - anon_sym_DOT, - ACTIONS(1018), 11, + STATE(5026), 1, + sym_comment, + ACTIONS(2407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393066,43 +411200,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, - [177280] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7949), 1, - anon_sym_QMARK2, - STATE(4727), 1, - sym_comment, - ACTIONS(990), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(992), 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, - [177307] = 7, + anon_sym_RBRACE, + [192066] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7760), 1, + ACTIONS(8365), 1, sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4728), 1, - sym_comment, - STATE(5234), 1, + ACTIONS(8370), 1, + anon_sym_else, + STATE(4905), 1, aux_sym_shebang_repeat1, - ACTIONS(7763), 2, - ts_builtin_sym_end, + STATE(5027), 1, + sym_comment, + ACTIONS(8368), 11, anon_sym_SEMI, - ACTIONS(2542), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393112,38 +411224,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, - [177338] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + [192095] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4729), 1, + ACTIONS(2401), 1, + sym__space, + STATE(5028), 1, sym_comment, - ACTIONS(1637), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1639), 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, - [177363] = 5, + ACTIONS(2399), 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, + [192120] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7951), 1, - anon_sym_QMARK2, - STATE(4730), 1, - sym_comment, - ACTIONS(1012), 2, + ACTIONS(8342), 1, + anon_sym_AT, + ACTIONS(8374), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1014), 11, + STATE(5029), 1, + sym_comment, + STATE(5436), 1, + sym_param_cmd, + ACTIONS(8372), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -393155,14 +411269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177390] = 4, + [192149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, + ACTIONS(2413), 1, sym__space, - STATE(4731), 1, + STATE(5030), 1, sym_comment, - ACTIONS(2493), 13, + ACTIONS(2411), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393176,14 +411290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177415] = 4, + [192174] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(8258), 1, sym__space, - STATE(4732), 1, + ACTIONS(8376), 1, + ts_builtin_sym_end, + STATE(5031), 1, sym_comment, - ACTIONS(1889), 13, + STATE(5034), 1, + aux_sym_command_repeat1, + ACTIONS(8096), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393195,20 +411313,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, - [177440] = 6, + [192203] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7832), 1, + ACTIONS(8342), 1, anon_sym_AT, - ACTIONS(7955), 1, + ACTIONS(8380), 1, anon_sym_DASH2, - STATE(4733), 1, + STATE(5032), 1, sym_comment, - STATE(5072), 1, + STATE(5369), 1, sym_param_cmd, - ACTIONS(7953), 11, + ACTIONS(8378), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -393220,14 +411336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177469] = 4, + [192232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2393), 1, + ACTIONS(1699), 1, sym__space, - STATE(4734), 1, + STATE(5033), 1, sym_comment, - ACTIONS(2391), 13, + ACTIONS(1687), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393241,18 +411357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177494] = 6, - ACTIONS(251), 1, + [192257] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7957), 1, - sym__newline, - ACTIONS(7962), 1, - anon_sym_else, - STATE(4735), 1, + ACTIONS(8382), 1, + ts_builtin_sym_end, + ACTIONS(8384), 1, + sym__space, + STATE(5034), 2, sym_comment, - STATE(4770), 1, - aux_sym_shebang_repeat1, - ACTIONS(7960), 11, + aux_sym_command_repeat1, + ACTIONS(8104), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393263,19 +411379,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, - [177523] = 6, - ACTIONS(251), 1, + [192284] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7964), 1, - sym__newline, - ACTIONS(7969), 1, - anon_sym_catch, - STATE(4736), 1, + ACTIONS(2417), 1, + sym__space, + STATE(5035), 1, sym_comment, - STATE(4775), 1, - aux_sym_shebang_repeat1, - ACTIONS(7967), 11, + ACTIONS(2415), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393287,15 +411399,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177552] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [192309] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2435), 1, - sym__space, - STATE(4737), 1, + ACTIONS(2304), 1, + anon_sym_DASH2, + ACTIONS(8387), 1, + anon_sym_LBRACK2, + STATE(5036), 1, sym_comment, - ACTIONS(2433), 13, + ACTIONS(2308), 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, + [192336] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8389), 1, sym__newline, + ACTIONS(8394), 1, + anon_sym_else, + STATE(4898), 1, + aux_sym_shebang_repeat1, + STATE(5037), 1, + sym_comment, + ACTIONS(8392), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393307,15 +411445,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, - [177577] = 4, + [192365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2389), 1, sym__space, - STATE(4738), 1, + STATE(5038), 1, sym_comment, - ACTIONS(2437), 13, + ACTIONS(2387), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393329,14 +411466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177602] = 4, + [192390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(5228), 1, sym__space, - STATE(4739), 1, + STATE(5039), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(5230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393350,18 +411487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177627] = 6, + [192415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7888), 1, + ACTIONS(5232), 1, sym__space, - ACTIONS(7971), 1, - ts_builtin_sym_end, - STATE(4672), 1, - aux_sym_command_repeat1, - STATE(4740), 1, + STATE(5040), 1, sym_comment, - ACTIONS(7802), 11, + ACTIONS(5234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393373,14 +411506,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, - [177656] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192440] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4741), 1, - sym_comment, - ACTIONS(5684), 14, + ACTIONS(5240), 1, sym__newline, - sym__space, + ACTIONS(8396), 1, + anon_sym_catch, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5041), 1, + sym_comment, + ACTIONS(1310), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393391,23 +411530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [177679] = 7, - ACTIONS(251), 1, + anon_sym_RPAREN, + [192469] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7973), 1, - sym__newline, - STATE(735), 1, - aux_sym__pipe_separator, - STATE(4742), 1, + ACTIONS(5840), 1, + sym__space, + STATE(5042), 1, sym_comment, - STATE(5234), 1, - aux_sym_shebang_repeat1, - ACTIONS(7976), 2, + ACTIONS(5838), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2542), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393417,14 +411550,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, - [177710] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7980), 1, + ACTIONS(1036), 1, sym__space, - STATE(4743), 1, + STATE(5043), 1, sym_comment, - ACTIONS(7978), 13, + ACTIONS(1034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393438,14 +411573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177735] = 4, + [192519] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7498), 1, + ACTIONS(8258), 1, sym__space, - STATE(4744), 1, + ACTIONS(8399), 1, + ts_builtin_sym_end, + STATE(4920), 1, + aux_sym_command_repeat1, + STATE(5044), 1, sym_comment, - ACTIONS(7496), 13, + ACTIONS(8090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393457,18 +411596,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, - [177760] = 4, - ACTIONS(3), 1, + [192548] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7984), 1, - sym__space, - STATE(4745), 1, - sym_comment, - ACTIONS(7982), 13, + ACTIONS(8138), 1, sym__newline, + STATE(743), 1, + aux_sym__pipe_separator, + STATE(5045), 1, + sym_comment, + STATE(5492), 1, + aux_sym_shebang_repeat1, + ACTIONS(8141), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393478,16 +411620,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, - [177785] = 4, + [192579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym__space, - STATE(4746), 1, + ACTIONS(7551), 1, + aux_sym_unquoted_token2, + STATE(5046), 1, sym_comment, - ACTIONS(7986), 13, + ACTIONS(1699), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1687), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393499,16 +411642,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, - [177810] = 4, + [192606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, + ACTIONS(2425), 1, sym__space, - STATE(4747), 1, + STATE(5047), 1, sym_comment, - ACTIONS(7990), 13, + ACTIONS(2423), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393522,17 +411663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177835] = 5, + [192631] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7994), 1, - anon_sym_LBRACK2, - STATE(4748), 1, - sym_comment, - ACTIONS(2337), 2, - ts_builtin_sym_end, + ACTIONS(2429), 1, sym__space, - ACTIONS(2333), 11, + STATE(5048), 1, + sym_comment, + ACTIONS(2427), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393544,14 +411682,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, - [177862] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192656] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7998), 1, + ACTIONS(2433), 1, sym__space, - STATE(4749), 1, + STATE(5049), 1, sym_comment, - ACTIONS(7996), 13, + ACTIONS(2431), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393565,18 +411705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177887] = 6, + [192681] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7847), 1, - sym__newline, - ACTIONS(7849), 1, + ACTIONS(2437), 1, sym__space, - STATE(4663), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4750), 1, + STATE(5050), 1, sym_comment, - ACTIONS(8000), 11, + ACTIONS(2435), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393588,18 +411725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177916] = 6, + anon_sym_RBRACE, + [192706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7847), 1, - sym__newline, - ACTIONS(7849), 1, + ACTIONS(2445), 1, sym__space, - STATE(4751), 1, + STATE(5051), 1, sym_comment, - STATE(4786), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(8002), 11, + ACTIONS(2443), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393611,41 +411746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177945] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 1, - anon_sym_DASH2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - STATE(4752), 1, - sym_comment, - ACTIONS(1851), 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, - [177974] = 6, + anon_sym_RBRACE, + [192731] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(8401), 1, sym__newline, - ACTIONS(8004), 1, + ACTIONS(8406), 1, anon_sym_else, - STATE(1820), 1, + STATE(5037), 1, aux_sym_shebang_repeat1, - STATE(4753), 1, + STATE(5052), 1, sym_comment, - ACTIONS(1314), 11, + ACTIONS(8404), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393657,14 +411770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178003] = 4, + [192760] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(2449), 1, sym__space, - STATE(4754), 1, + STATE(5053), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(2447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393678,14 +411791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178028] = 4, + [192785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(5828), 1, sym__space, - STATE(4755), 1, + STATE(5054), 1, sym_comment, - ACTIONS(1933), 13, + ACTIONS(5826), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393699,21 +411812,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178053] = 7, + [192810] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7775), 1, + ACTIONS(8408), 1, sym__newline, - STATE(743), 1, + STATE(729), 1, aux_sym__pipe_separator, - STATE(4756), 1, + STATE(5055), 1, sym_comment, - STATE(5234), 1, + STATE(5492), 1, aux_sym_shebang_repeat1, - ACTIONS(7778), 2, - ts_builtin_sym_end, + ACTIONS(8411), 2, anon_sym_SEMI, - ACTIONS(2542), 9, + anon_sym_RPAREN, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393723,18 +411836,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, - [178084] = 6, + [192841] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8007), 1, + ACTIONS(8327), 1, + anon_sym_DASH2, + ACTIONS(8413), 1, + anon_sym_LT, + STATE(5056), 1, + sym_comment, + ACTIONS(8323), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8012), 1, - anon_sym_else, - STATE(4753), 1, - aux_sym_shebang_repeat1, - STATE(4757), 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, + [192868] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8417), 1, + sym__space, + STATE(5057), 1, sym_comment, - ACTIONS(8010), 11, + ACTIONS(8415), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393746,14 +411878,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178113] = 4, + anon_sym_RBRACE, + [192893] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, + STATE(5058), 1, + sym_comment, + ACTIONS(1885), 2, + ts_builtin_sym_end, sym__space, - STATE(4758), 1, + ACTIONS(1883), 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, + [192917] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5059), 1, sym_comment, - ACTIONS(1695), 13, + ACTIONS(5261), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393767,14 +411918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178138] = 4, - ACTIONS(3), 1, + [192939] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7624), 1, - sym__space, - STATE(4759), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5060), 1, sym_comment, - ACTIONS(7622), 13, + ACTIONS(8419), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393787,14 +411938,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, - [178163] = 3, - ACTIONS(251), 1, + [192963] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4760), 1, + STATE(5061), 1, sym_comment, - ACTIONS(7773), 14, + ACTIONS(5228), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5230), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393806,23 +411958,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [178186] = 7, - ACTIONS(251), 1, + [192987] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8014), 1, - sym__newline, - STATE(735), 1, - aux_sym__pipe_separator, - STATE(4761), 1, + STATE(5062), 1, sym_comment, - STATE(5234), 1, - aux_sym_shebang_repeat1, - ACTIONS(8017), 2, + ACTIONS(5232), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5234), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2542), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -393832,16 +411978,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, - [178217] = 5, + [193011] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2333), 1, - anon_sym_DASH2, - ACTIONS(8019), 1, - anon_sym_LBRACK2, - STATE(4762), 1, + STATE(5063), 1, sym_comment, - ACTIONS(2337), 12, + ACTIONS(1018), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1020), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -393853,19 +411998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [178244] = 6, - ACTIONS(251), 1, + [193035] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8021), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4763), 1, + STATE(5064), 1, sym_comment, - ACTIONS(1314), 11, + ACTIONS(1036), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1034), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393876,15 +412018,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, - [178273] = 4, + [193059] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8421), 1, + anon_sym_RBRACK, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5065), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [193105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5697), 1, - sym__space, - STATE(4764), 1, + STATE(5066), 1, sym_comment, - ACTIONS(5695), 13, + ACTIONS(2393), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2391), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393896,18 +412069,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, + [193129] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5067), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1016), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [178298] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193153] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7742), 1, - sym__space, - STATE(4623), 1, - aux_sym_command_repeat1, - STATE(4765), 1, + STATE(5068), 1, sym_comment, - ACTIONS(7802), 12, + ACTIONS(2393), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2391), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393919,19 +412109,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_RBRACE, - [178325] = 6, + [193177] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8024), 1, - sym__newline, - ACTIONS(8029), 1, - anon_sym_else, - STATE(4691), 1, - aux_sym_shebang_repeat1, - STATE(4766), 1, + STATE(5069), 1, sym_comment, - ACTIONS(8027), 11, + ACTIONS(8423), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393943,35 +412127,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178354] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [193199] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2534), 1, - sym__space, - STATE(4767), 1, + ACTIONS(1687), 1, + anon_sym_DASH2, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(6720), 1, + aux_sym_unquoted_token2, + ACTIONS(8425), 1, + sym_filesize_unit, + ACTIONS(8427), 1, + sym_duration_unit, + STATE(5070), 1, sym_comment, - ACTIONS(2532), 13, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 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, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [178379] = 4, - ACTIONS(3), 1, + anon_sym_as, + [193233] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2046), 1, - sym__space, - STATE(4768), 1, + STATE(5071), 1, sym_comment, - ACTIONS(2044), 13, + ACTIONS(8429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393985,17 +412172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178404] = 5, + [193255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, - STATE(4769), 1, + STATE(5072), 1, sym_comment, - ACTIONS(1707), 2, + ACTIONS(2494), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1695), 11, + ACTIONS(2492), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394007,18 +412192,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, - [178431] = 6, + [193279] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8031), 1, - sym__newline, - ACTIONS(8036), 1, - anon_sym_else, - STATE(4631), 1, - aux_sym_shebang_repeat1, - STATE(4770), 1, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8431), 1, + anon_sym_RBRACK, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5073), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [193325] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8433), 1, + anon_sym_RPAREN, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5074), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [193371] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5075), 1, sym_comment, - ACTIONS(8034), 11, + ACTIONS(8435), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394030,18 +412272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178460] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [193393] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8038), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_else, - STATE(4757), 1, - aux_sym_shebang_repeat1, - STATE(4771), 1, + STATE(5076), 1, sym_comment, - ACTIONS(8041), 11, + ACTIONS(8229), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(8227), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394052,19 +412293,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, - [178489] = 6, + [193417] = 15, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, ACTIONS(8045), 1, - sym__newline, - ACTIONS(8050), 1, - anon_sym_else, - STATE(4706), 1, - aux_sym_shebang_repeat1, - STATE(4772), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8437), 1, + anon_sym_RPAREN, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5077), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [193463] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5078), 1, sym_comment, - ACTIONS(8048), 11, + ACTIONS(5836), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5834), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394075,15 +412344,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, - [178518] = 4, + [193487] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__space, - STATE(4773), 1, + STATE(5079), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(2421), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394095,16 +412364,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, - [178543] = 4, + [193511] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2187), 1, - sym__space, - STATE(4774), 1, + STATE(5080), 1, sym_comment, - ACTIONS(2181), 13, + ACTIONS(2401), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2399), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394116,20 +412384,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178568] = 6, + [193535] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(8441), 1, + anon_sym_DASH2, + STATE(5081), 1, + sym_comment, + ACTIONS(8439), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8052), 1, - anon_sym_catch, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4775), 1, + 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, + [193559] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5082), 1, sym_comment, - ACTIONS(1314), 11, + ACTIONS(8443), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394141,14 +412422,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178597] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [193581] = 15, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - STATE(4776), 1, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8445), 1, + anon_sym_PIPE, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5083), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [193627] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(8447), 1, + anon_sym_DOT, + ACTIONS(8451), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8453), 1, + aux_sym__immediate_decimal_token5, + STATE(5084), 1, + sym_comment, + STATE(6354), 1, + sym__immediate_decimal, + ACTIONS(1579), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8449), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6329), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193667] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1034), 1, + anon_sym_DASH2, + STATE(5085), 1, + sym_comment, + ACTIONS(1036), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [193691] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5086), 1, sym_comment, - ACTIONS(2070), 13, + ACTIONS(8455), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394162,14 +412521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178622] = 4, - ACTIONS(3), 1, + [193713] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2499), 1, - sym__space, - STATE(4777), 1, + STATE(5087), 1, sym_comment, - ACTIONS(2497), 13, + ACTIONS(8457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394183,14 +412540,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178647] = 4, - ACTIONS(3), 1, + [193735] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2084), 1, - sym__space, - STATE(4778), 1, + ACTIONS(8327), 1, + anon_sym_DASH2, + STATE(5088), 1, + sym_comment, + ACTIONS(8323), 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, + [193759] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5089), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(7181), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394204,37 +412579,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178672] = 6, + [193781] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8055), 1, - sym__newline, - ACTIONS(8060), 1, - anon_sym_catch, - STATE(4671), 1, - aux_sym_shebang_repeat1, - STATE(4779), 1, + ACTIONS(2399), 1, + anon_sym_DASH2, + STATE(5090), 1, sym_comment, - ACTIONS(8058), 11, - anon_sym_SEMI, + ACTIONS(2401), 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, - [178701] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [193805] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4780), 1, + STATE(5091), 1, sym_comment, - ACTIONS(5707), 14, - sym__newline, + ACTIONS(2078), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2072), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394245,16 +412619,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, - [178724] = 4, + [193829] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5102), 1, - sym__space, - STATE(4781), 1, + STATE(5092), 1, sym_comment, - ACTIONS(5104), 13, + ACTIONS(5188), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5190), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394266,16 +412639,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, - [178749] = 4, + [193853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - sym__space, - STATE(4782), 1, + STATE(5093), 1, sym_comment, - ACTIONS(5108), 13, + ACTIONS(2425), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2423), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394287,16 +412659,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, - [178774] = 4, + [193877] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__space, - STATE(4783), 1, + STATE(5094), 1, sym_comment, - ACTIONS(1945), 13, + ACTIONS(2429), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2427), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394308,16 +412679,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, - [178799] = 3, + [193901] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4784), 1, + STATE(5095), 1, sym_comment, - ACTIONS(5699), 14, - sym__newline, + ACTIONS(2405), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2403), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394328,16 +412699,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, - [178822] = 4, + [193925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, - sym__space, - STATE(4785), 1, + STATE(5096), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(2433), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2431), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394349,20 +412719,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, - [178847] = 6, + [193949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7847), 1, - sym__newline, - ACTIONS(7849), 1, - sym__space, - STATE(4703), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4786), 1, + STATE(5097), 1, sym_comment, - ACTIONS(8062), 11, + ACTIONS(2437), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2435), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394373,65 +412739,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, - [178876] = 6, + [193973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym__unquoted_in_list_token4, - STATE(4787), 1, - sym_comment, - ACTIONS(1040), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1038), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [178905] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(8066), 1, - anon_sym_DASH2, - STATE(4788), 1, + STATE(5098), 1, sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8064), 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, - [178934] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7888), 1, - sym__space, - ACTIONS(8068), 1, + ACTIONS(2445), 2, ts_builtin_sym_end, - STATE(4740), 1, - aux_sym_command_repeat1, - STATE(4789), 1, - sym_comment, - ACTIONS(7715), 11, + sym__space, + ACTIONS(2443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394443,18 +412759,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, - [178963] = 6, - ACTIONS(251), 1, + [193997] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8070), 1, - sym__newline, - ACTIONS(8075), 1, - anon_sym_catch, - STATE(4779), 1, - aux_sym_shebang_repeat1, - STATE(4790), 1, + STATE(5099), 1, sym_comment, - ACTIONS(8073), 11, + ACTIONS(2449), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2447), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -394465,15 +412779,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, - [178992] = 4, + [194021] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2526), 1, - sym__space, - STATE(4791), 1, + STATE(5100), 1, sym_comment, - ACTIONS(2524), 13, + ACTIONS(2441), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2439), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394485,16 +412799,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, - [179017] = 4, + [194045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2530), 1, - sym__space, - STATE(4792), 1, + STATE(5101), 1, sym_comment, - ACTIONS(2528), 13, + ACTIONS(5192), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5194), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394506,16 +412819,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, - [179042] = 4, - ACTIONS(3), 1, + [194069] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2401), 1, - sym__space, - STATE(4793), 1, + ACTIONS(8459), 1, + anon_sym_catch, + STATE(5102), 1, sym_comment, - ACTIONS(2399), 13, + ACTIONS(8353), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394527,16 +412839,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, - [179067] = 4, + [194093] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, - sym__space, - STATE(4794), 1, + STATE(5103), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(1943), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1941), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394548,16 +412859,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, + [194117] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8463), 1, + anon_sym_QMARK, + ACTIONS(8465), 1, + anon_sym_DASH2, + STATE(5104), 1, + sym_comment, + ACTIONS(8461), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [179092] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, - sym__space, - STATE(4795), 1, + STATE(5105), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2506), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2504), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394569,16 +412900,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, - [179117] = 4, + [194167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5192), 1, - sym__space, - STATE(4796), 1, + STATE(5106), 1, sym_comment, - ACTIONS(5194), 13, + ACTIONS(2510), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2508), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394590,18 +412920,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, - [179142] = 5, + [194191] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(2458), 1, anon_sym_DASH2, - ACTIONS(7311), 1, - aux_sym__unquoted_in_list_token2, - STATE(4797), 1, + STATE(5107), 1, sym_comment, - ACTIONS(1707), 11, + ACTIONS(2460), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -394613,14 +412939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179168] = 4, + anon_sym_LBRACE, + [194215] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8079), 1, + ACTIONS(2466), 1, anon_sym_DASH2, - STATE(4798), 1, + STATE(5108), 1, sym_comment, - ACTIONS(8077), 12, + ACTIONS(2468), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -394630,18 +412957,68 @@ 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, - [179192] = 4, + anon_sym_LBRACE, + [194239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4799), 1, + STATE(5109), 1, sym_comment, - ACTIONS(1935), 2, + ACTIONS(1893), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1933), 11, + ACTIONS(1891), 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, + [194263] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1565), 1, + anon_sym_RBRACE, + ACTIONS(1579), 1, + sym__entry_separator, + ACTIONS(1581), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3111), 1, + anon_sym_DOLLAR, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8469), 1, + anon_sym_DOT, + ACTIONS(8471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8473), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8475), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8477), 1, + aux_sym__immediate_decimal_token5, + STATE(5110), 1, + sym_comment, + STATE(6034), 1, + sym__immediate_decimal, + STATE(6278), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194307] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5111), 1, + sym_comment, + ACTIONS(1897), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1895), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394653,14 +413030,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, - [179216] = 4, + [194331] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(8481), 1, anon_sym_DASH2, - STATE(4800), 1, + STATE(5112), 1, sym_comment, - ACTIONS(1919), 12, + ACTIONS(8479), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -394670,18 +413047,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_LBRACE, - [179240] = 4, + [194355] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4801), 1, + STATE(5113), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(5828), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2373), 11, + ACTIONS(5826), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394693,14 +413070,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, - [179264] = 4, + [194379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8083), 1, - sym__space, - STATE(4802), 1, + STATE(5114), 1, sym_comment, - ACTIONS(8081), 12, + ACTIONS(2361), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394712,16 +413090,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, + [194403] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8485), 1, + anon_sym_DASH2, + STATE(5115), 1, + sym_comment, + ACTIONS(8483), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [179288] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194427] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4803), 1, + STATE(5116), 1, sym_comment, - ACTIONS(7980), 2, + ACTIONS(1919), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7978), 11, + ACTIONS(1917), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394733,15 +413130,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, - [179312] = 4, + [194451] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4804), 1, + STATE(5117), 1, sym_comment, - ACTIONS(1943), 2, + ACTIONS(2365), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1941), 11, + ACTIONS(2363), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394753,14 +413150,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, - [179336] = 4, + [194475] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8087), 1, + ACTIONS(2482), 1, anon_sym_DASH2, - STATE(4805), 1, + STATE(5118), 1, sym_comment, - ACTIONS(8085), 12, + ACTIONS(2484), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -394770,18 +413167,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179360] = 4, + anon_sym_LBRACE, + [194499] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4806), 1, + STATE(5119), 1, sym_comment, - ACTIONS(2381), 2, + ACTIONS(2369), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2379), 11, + ACTIONS(2367), 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, + [194523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5120), 1, + sym_comment, + ACTIONS(1927), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1925), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394793,14 +413210,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, - [179384] = 4, + [194547] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2461), 1, + ACTIONS(1949), 1, anon_sym_DASH2, - STATE(4807), 1, + STATE(5121), 1, sym_comment, - ACTIONS(2463), 12, + ACTIONS(1951), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -394813,12 +413230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179408] = 3, + [194571] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4808), 1, + STATE(5122), 1, sym_comment, - ACTIONS(8089), 13, + ACTIONS(8487), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394832,34 +413249,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179430] = 3, + [194593] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(4809), 1, - sym_comment, - ACTIONS(8091), 13, - sym__newline, - anon_sym_SEMI, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8170), 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_RBRACE, - [179452] = 4, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5123), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [194639] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4810), 1, + STATE(5124), 1, sym_comment, - ACTIONS(1899), 2, + ACTIONS(1935), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1897), 11, + ACTIONS(1933), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394871,14 +413300,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, - [179476] = 4, - ACTIONS(251), 1, + [194663] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8095), 1, - anon_sym_else, - STATE(4811), 1, + STATE(5125), 1, sym_comment, - ACTIONS(8093), 12, + ACTIONS(2373), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2371), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394890,13 +413320,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, - [179500] = 3, - ACTIONS(251), 1, + [194687] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4812), 1, + STATE(5126), 1, sym_comment, - ACTIONS(8097), 13, + ACTIONS(2377), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2375), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394908,17 +413340,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, - [179522] = 4, + [194711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4813), 1, + STATE(5127), 1, sym_comment, - ACTIONS(5118), 2, + ACTIONS(1939), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5120), 11, + ACTIONS(1937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394930,63 +413360,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, - [179546] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1673), 1, - sym__entry_separator, - ACTIONS(3115), 1, - anon_sym_DOLLAR, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8101), 1, - anon_sym_DOT, - ACTIONS(8103), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8105), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, - aux_sym__immediate_decimal_token5, - STATE(4814), 1, - sym_comment, - STATE(5961), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5816), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [179588] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2465), 1, - anon_sym_DASH2, - STATE(4815), 1, - sym_comment, - ACTIONS(2467), 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, - [179612] = 4, + [194735] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2454), 1, anon_sym_DASH2, - STATE(4816), 1, + STATE(5128), 1, sym_comment, - ACTIONS(1935), 12, + ACTIONS(2456), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -394999,42 +413380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179636] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8117), 1, - aux_sym__immediate_decimal_token5, - STATE(4817), 1, - sym_comment, - STATE(6343), 1, - sym__immediate_decimal, - ACTIONS(8113), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3440), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1603), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [179674] = 4, + [194759] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4818), 1, + STATE(5129), 1, sym_comment, - ACTIONS(2385), 2, + ACTIONS(2043), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2383), 11, + ACTIONS(2041), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395046,40 +413400,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, - [179698] = 9, - ACTIONS(251), 1, + [194783] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_DASH2, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(6484), 1, - aux_sym_unquoted_token2, - ACTIONS(8119), 1, - sym_filesize_unit, - ACTIONS(8121), 1, - sym_duration_unit, - STATE(4819), 1, + STATE(5130), 1, sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 6, + ACTIONS(2381), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2379), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [179732] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194807] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4820), 1, + STATE(5131), 1, sym_comment, - ACTIONS(1947), 2, + ACTIONS(2385), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1945), 11, + ACTIONS(2383), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395091,45 +413440,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, - [179756] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7725), 1, - anon_sym_RBRACK, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4821), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [179802] = 4, + [194831] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(8491), 1, anon_sym_DASH2, - STATE(4822), 1, + STATE(5132), 1, sym_comment, - ACTIONS(2409), 12, + ACTIONS(8489), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395139,36 +413457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179826] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7862), 1, - aux_sym__immediate_decimal_token2, - STATE(4823), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 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, - [179852] = 3, + [194855] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4824), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5133), 1, sym_comment, - ACTIONS(8123), 13, + ACTIONS(8493), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395181,43 +413480,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [179874] = 11, + [194879] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8111), 1, + ACTIONS(3697), 1, anon_sym_DOLLAR, - ACTIONS(8115), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + anon_sym_DOT, + ACTIONS(8294), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8117), 1, + ACTIONS(8296), 1, aux_sym__immediate_decimal_token5, - STATE(4825), 1, + STATE(5134), 1, sym_comment, - STATE(6428), 1, + STATE(6328), 1, sym__immediate_decimal, - ACTIONS(8113), 2, + ACTIONS(8292), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3444), 2, + STATE(6327), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 3, + ACTIONS(1643), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [179912] = 4, + [194917] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4826), 1, + STATE(5135), 1, sym_comment, - ACTIONS(2389), 2, + ACTIONS(2530), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2387), 11, + ACTIONS(2528), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395229,12 +413527,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, - [179936] = 3, - ACTIONS(251), 1, + [194941] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4827), 1, + STATE(5136), 1, sym_comment, - ACTIONS(8125), 13, + ACTIONS(7741), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7739), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395246,47 +413547,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, - [179958] = 15, + [194965] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5137), 1, + sym_comment, + ACTIONS(1699), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1687), 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, + [194989] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(8497), 1, + anon_sym_DASH2, + STATE(5138), 1, + sym_comment, + ACTIONS(8495), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7682), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(8127), 1, - anon_sym_PIPE, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [180004] = 4, + [195013] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(8501), 1, anon_sym_DASH2, - STATE(4829), 1, + STATE(5139), 1, sym_comment, - ACTIONS(1943), 12, + ACTIONS(8499), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395296,49 +413604,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180028] = 15, + [195037] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(8505), 1, + anon_sym_DASH2, + STATE(5140), 1, + sym_comment, + ACTIONS(8503), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7682), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(8129), 1, - anon_sym_RBRACK, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4830), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [180074] = 4, + [195061] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4831), 1, + STATE(5141), 1, sym_comment, - ACTIONS(1891), 2, + ACTIONS(2389), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1889), 11, + ACTIONS(2387), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395350,15 +413647,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, - [180098] = 4, - ACTIONS(3), 1, + [195085] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4832), 1, + STATE(5142), 1, sym_comment, - ACTIONS(2471), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2469), 11, + ACTIONS(8507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395370,15 +413664,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, - [180122] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [195107] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4833), 1, - sym_comment, - ACTIONS(1026), 2, + ACTIONS(2470), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1028), 11, + STATE(5143), 1, + sym_comment, + ACTIONS(2472), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395390,45 +413685,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180146] = 15, + anon_sym_LBRACE, + [195131] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(8511), 1, + anon_sym_DASH2, + STATE(5144), 1, + sym_comment, + ACTIONS(8509), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7682), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(8131), 1, - anon_sym_RBRACK, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4834), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [180192] = 4, + [195155] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2399), 1, + ACTIONS(8515), 1, anon_sym_DASH2, - STATE(4835), 1, + STATE(5145), 1, sym_comment, - ACTIONS(2401), 12, + ACTIONS(8513), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395438,18 +413723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180216] = 4, - ACTIONS(3), 1, + [195179] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4836), 1, + STATE(5146), 1, sym_comment, - ACTIONS(2066), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2064), 11, + ACTIONS(8517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395461,14 +413743,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, - [180240] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [195201] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1687), 1, anon_sym_DASH2, - STATE(4837), 1, + ACTIONS(7625), 1, + aux_sym__unquoted_in_record_token2, + STATE(5147), 1, sym_comment, - ACTIONS(1947), 12, + ACTIONS(1699), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -395480,117 +413766,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180264] = 3, + [195227] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4838), 1, + ACTIONS(8521), 1, + anon_sym_DASH2, + STATE(5148), 1, sym_comment, - ACTIONS(8133), 13, + ACTIONS(8519), 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, - [180286] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195251] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4839), 1, + ACTIONS(2334), 1, + anon_sym_DASH2, + STATE(5149), 1, sym_comment, - ACTIONS(2475), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2473), 11, + ACTIONS(2336), 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, - [180310] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [195275] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(8135), 1, - sym__newline, - STATE(4840), 1, + ACTIONS(8525), 1, + anon_sym_DASH2, + STATE(5150), 1, sym_comment, - ACTIONS(8137), 11, - anon_sym_SEMI, + ACTIONS(8523), 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_RBRACE, - [180336] = 5, + 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, + [195299] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(8139), 1, + ACTIONS(8529), 1, + anon_sym_DASH2, + STATE(5151), 1, + sym_comment, + ACTIONS(8527), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(4841), 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, + [195323] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8533), 1, + anon_sym_DASH2, + STATE(5152), 1, sym_comment, - ACTIONS(8141), 11, - anon_sym_SEMI, + ACTIONS(8531), 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_RBRACE, - [180362] = 4, - ACTIONS(3), 1, + 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, + [195347] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4842), 1, + ACTIONS(8537), 1, + anon_sym_DASH2, + STATE(5153), 1, sym_comment, - ACTIONS(2479), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2477), 11, + ACTIONS(8535), 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, - [180386] = 4, + 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, + [195371] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4843), 1, + STATE(5154), 1, sym_comment, - ACTIONS(1959), 2, + ACTIONS(1951), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1957), 11, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395602,46 +413906,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, - [180410] = 15, + [195395] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(8541), 1, + anon_sym_DASH2, + STATE(5155), 1, + sym_comment, + ACTIONS(8539), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7682), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, + [195419] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8545), 1, anon_sym_DASH2, - ACTIONS(7752), 1, - anon_sym_RPAREN, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4844), 1, + STATE(5156), 1, sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [180456] = 4, - ACTIONS(3), 1, + ACTIONS(8543), 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, + [195443] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4845), 1, + STATE(5157), 1, sym_comment, - ACTIONS(5122), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5124), 11, + ACTIONS(8547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395653,46 +413963,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, - [180480] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(8143), 1, anon_sym_RPAREN, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4846), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [180526] = 4, + anon_sym_RBRACE, + [195465] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4847), 1, + STATE(5158), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2456), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2407), 11, + ACTIONS(2454), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395704,14 +413985,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, - [180550] = 4, + [195489] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2449), 1, + ACTIONS(8551), 1, anon_sym_DASH2, - STATE(4848), 1, + STATE(5159), 1, sym_comment, - ACTIONS(2451), 12, + ACTIONS(8549), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395721,37 +414002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180574] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4849), 1, - sym_comment, - ACTIONS(1967), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1965), 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, - [180598] = 4, + [195513] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2469), 1, + ACTIONS(8555), 1, anon_sym_DASH2, - STATE(4850), 1, + STATE(5160), 1, sym_comment, - ACTIONS(2471), 12, + ACTIONS(8553), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395761,17 +414022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180622] = 4, + [195537] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(8559), 1, anon_sym_DASH2, - STATE(4851), 1, + STATE(5161), 1, sym_comment, - ACTIONS(2066), 12, + ACTIONS(8557), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395781,37 +414042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180646] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4852), 1, - sym_comment, - ACTIONS(1919), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1917), 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, - [180670] = 4, + [195561] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(8563), 1, anon_sym_DASH2, - STATE(4853), 1, + STATE(5162), 1, sym_comment, - ACTIONS(2475), 12, + ACTIONS(8561), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395821,38 +414062,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180694] = 4, + [195585] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4854), 1, + ACTIONS(2462), 1, + anon_sym_DASH2, + STATE(5163), 1, sym_comment, - STATE(4971), 1, - aux_sym_shebang_repeat1, - ACTIONS(8145), 12, + ACTIONS(2464), 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, - [180718] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [195609] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4855), 1, + STATE(5164), 1, sym_comment, - ACTIONS(2435), 2, + ACTIONS(1959), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2433), 11, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395864,14 +414105,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, - [180742] = 4, + [195633] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(8567), 1, anon_sym_DASH2, - STATE(4856), 1, + STATE(5165), 1, sym_comment, - ACTIONS(2479), 12, + ACTIONS(8565), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395881,18 +414122,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_LBRACE, - [180766] = 4, + [195657] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4857), 1, + STATE(5166), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(5840), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2481), 11, + ACTIONS(5838), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395904,15 +414145,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, - [180790] = 4, - ACTIONS(3), 1, + [195681] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4858), 1, + STATE(5060), 1, + aux_sym_shebang_repeat1, + STATE(5167), 1, sym_comment, - ACTIONS(2439), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2437), 11, + ACTIONS(8569), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395924,35 +414164,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, - [180814] = 5, + anon_sym_RPAREN, + [195705] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8147), 1, - aux_sym__immediate_decimal_token2, - STATE(4859), 1, - sym_comment, - ACTIONS(1745), 3, + ACTIONS(8573), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1747), 9, - ts_builtin_sym_end, + STATE(5168), 1, + sym_comment, + ACTIONS(8571), 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_AT, + 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, - [180840] = 4, + [195729] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2391), 1, anon_sym_DASH2, - STATE(4860), 1, + STATE(5169), 1, sym_comment, - ACTIONS(1959), 12, + ACTIONS(2393), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -395965,133 +414205,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180864] = 4, - ACTIONS(3), 1, + [195753] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4861), 1, + ACTIONS(2391), 1, + anon_sym_DASH2, + STATE(5170), 1, sym_comment, - ACTIONS(5701), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5699), 11, + ACTIONS(2393), 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, - [180888] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [195777] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4862), 1, + ACTIONS(8577), 1, + anon_sym_DASH2, + STATE(5171), 1, sym_comment, - ACTIONS(8149), 13, + ACTIONS(8575), 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, - [180910] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195801] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4863), 1, + ACTIONS(2486), 1, + anon_sym_DASH2, + STATE(5172), 1, sym_comment, - ACTIONS(8151), 13, + ACTIONS(2488), 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, - [180932] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_RBRACE, - ACTIONS(1603), 1, - sym__entry_separator, - ACTIONS(1605), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3115), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8153), 1, - anon_sym_DOT, - ACTIONS(8155), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8157), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8159), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8161), 1, - aux_sym__immediate_decimal_token5, - STATE(4864), 1, - sym_comment, - STATE(5712), 1, - sym__immediate_decimal, - STATE(5780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [180976] = 14, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [195825] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_RBRACK, - ACTIONS(1603), 1, - sym__entry_separator, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3115), 1, - anon_sym_DOLLAR, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8103), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8105), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8163), 1, - anon_sym_DOT, - STATE(4865), 1, - sym_comment, - STATE(5699), 1, - sym__immediate_decimal, - STATE(5780), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181020] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8165), 1, - anon_sym_else, - STATE(4866), 1, + STATE(5173), 1, sym_comment, - ACTIONS(8093), 12, + ACTIONS(2472), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2470), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396103,15 +414285,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, - [181044] = 4, + [195849] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8581), 1, + anon_sym_DASH2, + STATE(5174), 1, + sym_comment, + ACTIONS(8579), 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, + [195873] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4867), 1, + STATE(5175), 1, sym_comment, - ACTIONS(2443), 2, + ACTIONS(2476), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2441), 11, + ACTIONS(2474), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396123,15 +414325,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, - [181068] = 4, + [195897] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4868), 1, + STATE(5176), 1, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2480), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2485), 11, + ACTIONS(2478), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396143,15 +414345,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, - [181092] = 4, + [195921] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4869), 1, - sym_comment, - ACTIONS(1022), 2, + ACTIONS(2492), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1024), 11, + STATE(5177), 1, + sym_comment, + ACTIONS(2494), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396163,12 +414364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181116] = 3, + anon_sym_LBRACE, + [195945] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4870), 1, + STATE(5178), 1, sym_comment, - ACTIONS(8167), 13, + ACTIONS(7157), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396182,12 +414384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181138] = 3, - ACTIONS(251), 1, + [195967] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4871), 1, + STATE(5179), 1, sym_comment, - ACTIONS(8169), 13, + ACTIONS(2397), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2395), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396199,36 +414404,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181160] = 4, - ACTIONS(251), 1, + [195991] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, - anon_sym_DASH2, - STATE(4872), 1, - sym_comment, - ACTIONS(2419), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4079), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8583), 1, + sym__newline, + ACTIONS(8585), 1, + sym__space, + ACTIONS(8587), 1, anon_sym_DASH_DASH, + ACTIONS(8589), 1, + anon_sym_DASH2, + ACTIONS(8591), 1, anon_sym_LBRACE, - [181184] = 4, + STATE(1850), 1, + sym_block, + STATE(1854), 1, + sym_val_closure, + STATE(5180), 1, + sym_comment, + STATE(6038), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(790), 2, + sym__blosure, + sym_val_variable, + STATE(8157), 2, + sym_short_flag, + sym_long_flag, + [196033] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2417), 1, + ACTIONS(8595), 1, anon_sym_DASH2, - STATE(4873), 1, + STATE(5181), 1, sym_comment, - ACTIONS(2419), 12, + ACTIONS(8593), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396238,15 +414450,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_LBRACE, - [181208] = 3, - ACTIONS(251), 1, + [196057] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4874), 1, + STATE(5182), 1, sym_comment, - ACTIONS(8171), 13, + ACTIONS(2096), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396258,14 +414473,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, - [181230] = 3, - ACTIONS(251), 1, + [196081] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4875), 1, + STATE(5183), 1, sym_comment, - ACTIONS(8173), 13, + ACTIONS(2104), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2098), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396277,17 +414493,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, + [196105] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1643), 1, + sym__entry_separator, + ACTIONS(3111), 1, + anon_sym_DOLLAR, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8597), 1, + anon_sym_DOT, + ACTIONS(8599), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8601), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8603), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8605), 1, + aux_sym__immediate_decimal_token5, + STATE(5184), 1, + sym_comment, + STATE(6269), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [181252] = 4, + STATE(6267), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196147] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4876), 1, - sym_comment, - ACTIONS(1018), 2, + ACTIONS(1941), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1020), 11, + STATE(5185), 1, + sym_comment, + ACTIONS(1943), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396299,14 +414541,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181276] = 4, + anon_sym_LBRACE, + [196171] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token2, + STATE(5186), 1, + sym_comment, + ACTIONS(1669), 3, anon_sym_DASH2, - STATE(4877), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 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, + [196197] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2403), 1, + anon_sym_DASH2, + STATE(5187), 1, sym_comment, - ACTIONS(1967), 12, + ACTIONS(2405), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396319,15 +414583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [181300] = 4, + [196221] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4878), 1, + STATE(5188), 1, sym_comment, - ACTIONS(2046), 2, + ACTIONS(2137), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2044), 11, + ACTIONS(2131), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396339,86 +414603,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, - [181324] = 4, - ACTIONS(3), 1, + [196245] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4879), 1, + ACTIONS(2504), 1, + anon_sym_DASH2, + STATE(5189), 1, sym_comment, - ACTIONS(1971), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1969), 11, + ACTIONS(2506), 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, - [181348] = 15, + 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, + [196269] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(2439), 1, + anon_sym_DASH2, + STATE(5190), 1, + sym_comment, + ACTIONS(2441), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7682), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7738), 1, - anon_sym_RBRACK, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4880), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [181394] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [196293] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4881), 1, + ACTIONS(8609), 1, + anon_sym_DASH2, + STATE(5191), 1, sym_comment, - ACTIONS(2522), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2520), 11, + ACTIONS(8607), 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, - [181418] = 4, + 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, + [196317] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4882), 1, + STATE(5192), 1, sym_comment, - ACTIONS(2393), 2, + ACTIONS(5220), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2391), 11, + ACTIONS(5222), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396430,14 +414683,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, - [181442] = 4, + [196341] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(2508), 1, anon_sym_DASH2, - STATE(4883), 1, + STATE(5193), 1, sym_comment, - ACTIONS(2483), 12, + ACTIONS(2510), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396450,43 +414703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [181466] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DOLLAR, - ACTIONS(8175), 1, - sym__newline, - ACTIONS(8177), 1, - sym__space, - ACTIONS(8179), 1, - anon_sym_DASH_DASH, - ACTIONS(8181), 1, - anon_sym_DASH2, - ACTIONS(8183), 1, - anon_sym_LBRACE, - STATE(1782), 1, - sym_block, - STATE(1783), 1, - sym_val_closure, - STATE(4884), 1, - sym_comment, - STATE(5636), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(796), 2, - sym__blosure, - sym_val_variable, - STATE(7610), 2, - sym_short_flag, - sym_long_flag, - [181508] = 4, + [196365] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2485), 1, + ACTIONS(8613), 1, anon_sym_DASH2, - STATE(4885), 1, + STATE(5194), 1, sym_comment, - ACTIONS(2487), 12, + ACTIONS(8611), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396496,96 +414720,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [181532] = 15, + [196389] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, + ACTIONS(1883), 1, anon_sym_DASH2, - ACTIONS(7746), 1, - anon_sym_RPAREN, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4886), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [181578] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4887), 1, + STATE(5195), 1, sym_comment, - ACTIONS(1645), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 10, + ACTIONS(1885), 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [181602] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6422), 1, - anon_sym_DOT, - ACTIONS(8185), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - STATE(4888), 1, - sym_comment, - STATE(6005), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(6227), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6010), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181642] = 4, - ACTIONS(251), 1, + [196413] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8187), 1, - anon_sym_else, - STATE(4889), 1, + STATE(5196), 1, sym_comment, - ACTIONS(8093), 12, + ACTIONS(5224), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396597,92 +414763,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [181666] = 13, - ACTIONS(3), 1, + [196437] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DOLLAR, - ACTIONS(8175), 1, + ACTIONS(1891), 1, + anon_sym_DASH2, + STATE(5197), 1, + sym_comment, + ACTIONS(1893), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8177), 1, - sym__space, - ACTIONS(8179), 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, - ACTIONS(8181), 1, - anon_sym_DASH2, - ACTIONS(8183), 1, anon_sym_LBRACE, - STATE(1782), 1, - sym_block, - STATE(1783), 1, - sym_val_closure, - STATE(4890), 1, - sym_comment, - STATE(5636), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(793), 2, - sym__blosure, - sym_val_variable, - STATE(7610), 2, - sym_short_flag, - sym_long_flag, - [181708] = 12, - ACTIONS(251), 1, + [196461] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, + ACTIONS(1565), 1, + anon_sym_RBRACK, + ACTIONS(1579), 1, + sym__entry_separator, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3111), 1, + anon_sym_DOLLAR, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(6225), 1, - anon_sym_DOT, - ACTIONS(6229), 1, + ACTIONS(8599), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8601), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(8605), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8185), 1, - anon_sym_DOLLAR, - STATE(4891), 1, + ACTIONS(8615), 1, + anon_sym_DOT, + STATE(5198), 1, sym_comment, - STATE(6009), 1, + STATE(6016), 1, sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6227), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6008), 2, + STATE(6278), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [181748] = 4, - ACTIONS(3), 1, + [196505] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4892), 1, + ACTIONS(8619), 1, + anon_sym_DASH2, + STATE(5199), 1, sym_comment, - ACTIONS(5697), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5695), 11, + ACTIONS(8617), 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, - [181772] = 4, + 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, + [196529] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1895), 1, anon_sym_DASH2, - STATE(4893), 1, + STATE(5200), 1, sym_comment, - ACTIONS(1971), 12, + ACTIONS(1897), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396695,15 +414853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [181796] = 4, - ACTIONS(3), 1, + [196553] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4894), 1, + STATE(5201), 1, sym_comment, - ACTIONS(2491), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2489), 11, + ACTIONS(8229), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396715,34 +414870,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, - [181820] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [196575] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4895), 1, + ACTIONS(8623), 1, + anon_sym_DASH2, + STATE(5202), 1, sym_comment, - ACTIONS(5114), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5116), 11, + ACTIONS(8621), 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, - [181844] = 4, + 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, + [196599] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7880), 1, + ACTIONS(8627), 1, anon_sym_DASH2, - STATE(4896), 1, + STATE(5203), 1, sym_comment, - ACTIONS(7876), 12, + ACTIONS(8625), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396755,74 +414912,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181868] = 3, + [196623] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4897), 1, + ACTIONS(8631), 1, + anon_sym_DASH2, + STATE(5204), 1, sym_comment, - ACTIONS(8189), 13, + ACTIONS(8629), 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, - [181890] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196647] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4898), 1, + ACTIONS(8635), 1, + anon_sym_DASH2, + STATE(5205), 1, sym_comment, - ACTIONS(5686), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5684), 11, + ACTIONS(8633), 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, - [181914] = 4, - ACTIONS(3), 1, + 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, + [196671] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4899), 1, + ACTIONS(2359), 1, + anon_sym_DASH2, + STATE(5206), 1, sym_comment, - ACTIONS(2534), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2532), 11, + ACTIONS(2361), 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, - [181938] = 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, + [196695] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4900), 1, - sym_comment, - ACTIONS(2495), 2, - ts_builtin_sym_end, + ACTIONS(8639), 1, sym__space, - ACTIONS(2493), 11, + STATE(5207), 1, + sym_comment, + ACTIONS(8637), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396834,14 +414991,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, - [181962] = 4, + anon_sym_RPAREN, + [196719] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2489), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - STATE(4901), 1, + STATE(5208), 1, sym_comment, - ACTIONS(2491), 12, + ACTIONS(1919), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -396854,15 +415012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [181986] = 4, + [196743] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4902), 1, + STATE(5209), 1, sym_comment, - ACTIONS(1040), 2, + ACTIONS(2498), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1038), 11, + ACTIONS(2496), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396874,15 +415032,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, - [182010] = 4, + [196767] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4903), 1, + STATE(5210), 1, sym_comment, - ACTIONS(2511), 2, + ACTIONS(8361), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2509), 11, + ACTIONS(8359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396894,113 +415052,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182034] = 3, + [196791] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4904), 1, + ACTIONS(8643), 1, + anon_sym_DASH2, + STATE(5211), 1, sym_comment, - ACTIONS(5154), 13, + ACTIONS(8641), 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, - [182056] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4905), 1, - sym_comment, - ACTIONS(2526), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2524), 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, - [182080] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196815] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4906), 1, + ACTIONS(2363), 1, + anon_sym_DASH2, + STATE(5212), 1, sym_comment, - ACTIONS(5158), 13, + 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, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182102] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196839] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(8135), 1, - sym__newline, - STATE(4907), 1, - sym_comment, - ACTIONS(8137), 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, - [182128] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4908), 1, + ACTIONS(8647), 1, + anon_sym_DASH2, + STATE(5213), 1, sym_comment, - ACTIONS(2530), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2528), 11, + ACTIONS(8645), 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, - [182152] = 4, + 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, + [196863] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2493), 1, + ACTIONS(2367), 1, anon_sym_DASH2, - STATE(4909), 1, + STATE(5214), 1, sym_comment, - ACTIONS(2495), 12, + ACTIONS(2369), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397013,252 +415132,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [182176] = 4, + [196887] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4910), 1, + ACTIONS(1925), 1, + anon_sym_DASH2, + STATE(5215), 1, sym_comment, - STATE(5005), 1, - aux_sym_shebang_repeat1, - ACTIONS(8191), 12, + ACTIONS(1927), 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, - [182200] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4911), 1, - sym_comment, - ACTIONS(7368), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7366), 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, - [182224] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4912), 1, - sym_comment, - ACTIONS(2467), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2465), 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, - [182248] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196911] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4913), 1, + ACTIONS(8649), 1, + aux_sym__immediate_decimal_token2, + STATE(5216), 1, sym_comment, - ACTIONS(2371), 2, + ACTIONS(1711), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(2369), 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, - [182272] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7957), 1, sym__newline, - ACTIONS(8193), 1, - anon_sym_else, - STATE(4914), 1, - sym_comment, - STATE(4915), 1, - aux_sym_shebang_repeat1, - ACTIONS(7960), 10, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [182300] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196937] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8031), 1, - sym__newline, - ACTIONS(8195), 1, - anon_sym_else, - STATE(4915), 1, + ACTIONS(1933), 1, + anon_sym_DASH2, + STATE(5217), 1, sym_comment, - STATE(4918), 1, - aux_sym_shebang_repeat1, - ACTIONS(8034), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [182328] = 6, + ACTIONS(1935), 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, + [196961] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8038), 1, - sym__newline, - ACTIONS(8197), 1, - anon_sym_else, - STATE(4916), 1, + ACTIONS(2474), 1, + anon_sym_DASH2, + STATE(5218), 1, sym_comment, - STATE(4919), 1, - aux_sym_shebang_repeat1, - ACTIONS(8041), 10, - anon_sym_SEMI, + ACTIONS(2476), 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, - [182356] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196985] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__newline, - ACTIONS(8199), 1, - anon_sym_else, - STATE(4917), 1, + ACTIONS(2371), 1, + anon_sym_DASH2, + STATE(5219), 1, sym_comment, - STATE(4920), 1, - aux_sym_shebang_repeat1, - ACTIONS(8048), 10, - anon_sym_SEMI, + ACTIONS(2373), 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, - [182384] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197009] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8201), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4918), 1, + ACTIONS(2375), 1, + anon_sym_DASH2, + STATE(5220), 1, sym_comment, - ACTIONS(1314), 10, - anon_sym_SEMI, + ACTIONS(2377), 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, - [182412] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197033] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8007), 1, - sym__newline, - ACTIONS(8204), 1, - anon_sym_else, - STATE(4919), 1, + ACTIONS(2478), 1, + anon_sym_DASH2, + STATE(5221), 1, sym_comment, - STATE(4922), 1, - aux_sym_shebang_repeat1, - ACTIONS(8010), 10, - anon_sym_SEMI, + ACTIONS(2480), 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, - [182440] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197057] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7930), 1, - sym__newline, - ACTIONS(8206), 1, - anon_sym_else, - STATE(4920), 1, + ACTIONS(1937), 1, + anon_sym_DASH2, + STATE(5222), 1, sym_comment, - STATE(4923), 1, - aux_sym_shebang_repeat1, - ACTIONS(7933), 10, - anon_sym_SEMI, + ACTIONS(1939), 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, - [182468] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197081] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7853), 1, - sym__newline, - ACTIONS(8208), 1, - anon_sym_else, - STATE(4921), 1, + STATE(5223), 1, sym_comment, - STATE(4924), 1, - aux_sym_shebang_repeat1, - ACTIONS(7856), 10, + ACTIONS(8651), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -397269,18 +415310,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, - [182496] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197103] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8210), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4922), 1, + STATE(5224), 1, sym_comment, - ACTIONS(1314), 10, + ACTIONS(8653), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -397291,18 +415329,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, - [182524] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197125] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8213), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4923), 1, + STATE(5225), 1, sym_comment, - ACTIONS(1314), 10, + ACTIONS(5180), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5182), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -397313,18 +415351,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, - [182552] = 6, + [197149] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8024), 1, - sym__newline, - ACTIONS(8216), 1, - anon_sym_else, - STATE(4924), 1, + STATE(5226), 1, sym_comment, - STATE(4925), 1, - aux_sym_shebang_repeat1, - ACTIONS(8027), 10, + ACTIONS(8655), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -397335,37 +415368,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, - [182580] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197171] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8218), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4925), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(8659), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8661), 1, + aux_sym__immediate_decimal_token5, + STATE(5227), 1, sym_comment, - ACTIONS(1314), 10, - anon_sym_SEMI, + STATE(6670), 1, + sym__immediate_decimal, + ACTIONS(8657), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1657), 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, - [182608] = 4, - ACTIONS(3), 1, + anon_sym_if, + anon_sym_EQ_GT, + [197209] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4926), 1, + STATE(5228), 1, sym_comment, - ACTIONS(2463), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2461), 11, + ACTIONS(8663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397377,41 +415414,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, - [182632] = 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197231] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3613), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6225), 1, - anon_sym_DOT, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - STATE(4927), 1, + ACTIONS(2300), 1, + anon_sym_DASH2, + STATE(5229), 1, sym_comment, - STATE(6016), 1, - sym__immediate_decimal, - ACTIONS(6227), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6015), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 3, + ACTIONS(2302), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [182670] = 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_LPAREN2, + [197255] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8223), 1, + ACTIONS(2379), 1, anon_sym_DASH2, - STATE(4928), 1, + STATE(5230), 1, sym_comment, - ACTIONS(8221), 12, + ACTIONS(2381), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397421,17 +415453,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, - [182694] = 4, + anon_sym_LBRACE, + [197279] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2395), 1, + ACTIONS(8667), 1, anon_sym_DASH2, - STATE(4929), 1, + STATE(5231), 1, sym_comment, - ACTIONS(2397), 12, + ACTIONS(8665), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397441,17 +415473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182718] = 4, + [197303] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8227), 1, + ACTIONS(2383), 1, anon_sym_DASH2, - STATE(4930), 1, + STATE(5232), 1, sym_comment, - ACTIONS(8225), 12, + ACTIONS(2385), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397461,18 +415493,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, - [182742] = 4, + anon_sym_LBRACE, + [197327] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4931), 1, + STATE(5233), 1, sym_comment, - ACTIONS(2187), 2, + ACTIONS(5184), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2181), 11, + ACTIONS(5186), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397484,14 +415516,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, - [182766] = 4, + [197351] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(8671), 1, anon_sym_DASH2, - STATE(4932), 1, + STATE(5234), 1, sym_comment, - ACTIONS(1891), 12, + ACTIONS(8669), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397501,18 +415533,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [182790] = 4, + [197375] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8675), 1, + anon_sym_DASH2, + STATE(5235), 1, + sym_comment, + ACTIONS(8673), 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, + [197399] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8679), 1, + anon_sym_DASH2, + STATE(5236), 1, + sym_comment, + ACTIONS(8677), 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, + [197423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4933), 1, + STATE(5237), 1, sym_comment, - ACTIONS(2419), 2, + ACTIONS(2522), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2417), 11, + ACTIONS(2520), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397524,35 +415596,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, - [182814] = 4, + [197447] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2425), 1, - anon_sym_DASH2, - STATE(4934), 1, + STATE(5133), 1, + aux_sym_shebang_repeat1, + STATE(5238), 1, sym_comment, - ACTIONS(2427), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8681), 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, - [182838] = 4, + [197471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4935), 1, + STATE(5239), 1, sym_comment, - ACTIONS(2419), 2, + ACTIONS(5832), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2417), 11, + ACTIONS(5830), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397564,34 +415636,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, - [182862] = 4, + [197495] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2391), 1, - anon_sym_DASH2, - STATE(4936), 1, + ACTIONS(8685), 1, + anon_sym_else, + STATE(5240), 1, sym_comment, - ACTIONS(2393), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8683), 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, - [182886] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [197519] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2429), 1, + ACTIONS(1687), 1, anon_sym_DASH2, - STATE(4937), 1, + STATE(5241), 1, sym_comment, - ACTIONS(2431), 12, + ACTIONS(1699), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397604,35 +415676,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [182910] = 4, + [197543] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6106), 1, - anon_sym_DASH2, - STATE(4938), 1, + STATE(5242), 1, sym_comment, - ACTIONS(6108), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8687), 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, - [182934] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [197565] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4939), 1, + STATE(5243), 1, sym_comment, - ACTIONS(7498), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7496), 11, + ACTIONS(8689), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397644,16 +415712,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, - [182958] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197587] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4940), 1, + STATE(5244), 1, sym_comment, - ACTIONS(1637), 3, + ACTIONS(1669), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 10, + ACTIONS(1671), 10, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -397664,14 +415734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [182982] = 4, + [197611] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1038), 1, + ACTIONS(8693), 1, anon_sym_DASH2, - STATE(4941), 1, + STATE(5245), 1, sym_comment, - ACTIONS(1040), 12, + ACTIONS(8691), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397681,35 +415751,34 @@ 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, - [183006] = 4, + [197635] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_DASH2, - STATE(4942), 1, + STATE(5246), 1, sym_comment, - ACTIONS(1707), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8695), 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, - [183030] = 3, + anon_sym_RBRACE, + [197657] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4943), 1, + STATE(5247), 1, sym_comment, - ACTIONS(8229), 13, + ACTIONS(8697), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397723,15 +415792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183052] = 4, + [197679] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4944), 1, + STATE(5248), 1, sym_comment, - ACTIONS(2451), 2, + ACTIONS(5844), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2449), 11, + ACTIONS(5842), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397743,16 +415812,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, - [183076] = 5, + [197703] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(8659), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8661), 1, + aux_sym__immediate_decimal_token5, + STATE(5249), 1, + sym_comment, + STATE(7080), 1, + sym__immediate_decimal, + ACTIONS(8657), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2123), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1579), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [197741] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8701), 1, anon_sym_DASH2, - STATE(4945), 1, + STATE(5250), 1, sym_comment, - ACTIONS(8231), 11, + ACTIONS(8699), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397762,17 +415856,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, - [183102] = 4, + [197765] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4946), 1, + STATE(5251), 1, sym_comment, - ACTIONS(7845), 2, + ACTIONS(2460), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7843), 11, + ACTIONS(2458), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397784,14 +415879,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, - [183126] = 4, + [197789] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2403), 1, + ACTIONS(8705), 1, anon_sym_DASH2, - STATE(4947), 1, + STATE(5252), 1, sym_comment, - ACTIONS(2405), 12, + ACTIONS(8703), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397801,38 +415896,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_LBRACE, - [183150] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4948), 1, - sym_comment, - ACTIONS(1707), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1695), 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, - [183174] = 4, + [197813] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4949), 1, + STATE(5253), 1, sym_comment, - ACTIONS(5693), 2, + ACTIONS(2468), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5691), 11, + ACTIONS(2466), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397844,16 +415919,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, - [183198] = 5, + [197837] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, + ACTIONS(3499), 1, aux_sym_record_entry_token1, - ACTIONS(8139), 1, + ACTIONS(8707), 1, sym__newline, - STATE(4950), 1, + STATE(5254), 1, sym_comment, - ACTIONS(8141), 11, + ACTIONS(8423), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -397865,56 +415940,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [183224] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4951), 1, - sym_comment, - ACTIONS(7984), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7982), 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, - [183248] = 4, + [197863] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8237), 1, - anon_sym_catch, - STATE(4952), 1, - sym_comment, - ACTIONS(7895), 12, - ts_builtin_sym_end, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(8709), 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, - [183272] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4953), 1, + STATE(5255), 1, sym_comment, - ACTIONS(7988), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7986), 11, - sym__newline, + ACTIONS(8429), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -397925,14 +415960,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, - [183296] = 4, + anon_sym_RBRACE, + [197889] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2387), 1, anon_sym_DASH2, - STATE(4954), 1, + STATE(5256), 1, sym_comment, - ACTIONS(2447), 12, + ACTIONS(2389), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -397945,15 +415981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [183320] = 4, - ACTIONS(3), 1, + [197913] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4955), 1, + STATE(5257), 1, sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2070), 11, + ACTIONS(8711), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397965,12 +415998,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, - [183344] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197935] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4956), 1, + STATE(5258), 1, sym_comment, - ACTIONS(7845), 13, + ACTIONS(8713), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397984,16 +416019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183366] = 4, + [197957] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4957), 1, + STATE(5259), 1, sym_comment, - ACTIONS(1745), 3, + ACTIONS(1661), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 10, + ACTIONS(1663), 10, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -398004,15 +416039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [183390] = 4, + [197981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4958), 1, + STATE(5260), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2464), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2361), 11, + ACTIONS(2462), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398024,46 +416059,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, - [183414] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7676), 1, - sym_identifier, - ACTIONS(7682), 1, - anon_sym_DOLLAR, - ACTIONS(7684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, - anon_sym_DASH_DASH, - ACTIONS(7688), 1, - anon_sym_DASH2, - ACTIONS(7780), 1, - anon_sym_PIPE, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4959), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [183460] = 4, + [198005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4960), 1, + STATE(5261), 1, sym_comment, - ACTIONS(2423), 2, + ACTIONS(8317), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2421), 11, + ACTIONS(8315), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398075,12 +416079,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, - [183484] = 3, - ACTIONS(251), 1, + [198029] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4961), 1, + STATE(5262), 1, sym_comment, - ACTIONS(8239), 13, + ACTIONS(7793), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7791), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398092,17 +416099,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, - [183506] = 4, + [198053] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4962), 1, + STATE(5263), 1, sym_comment, - ACTIONS(5188), 2, + ACTIONS(8321), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5190), 11, + ACTIONS(8319), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398114,15 +416119,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, - [183530] = 4, + [198077] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4963), 1, + STATE(5264), 1, sym_comment, - ACTIONS(7992), 2, + ACTIONS(8417), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7990), 11, + ACTIONS(8415), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398134,55 +416139,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, - [183554] = 4, - ACTIONS(251), 1, + [198101] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4964), 1, + STATE(5265), 1, sym_comment, - ACTIONS(1781), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1783), 10, + ACTIONS(8331), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(8329), 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, - [183578] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2497), 1, - anon_sym_DASH2, - STATE(4965), 1, - sym_comment, - ACTIONS(2499), 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, - [183602] = 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, + [198125] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4966), 1, + STATE(5266), 1, sym_comment, - ACTIONS(2401), 2, + ACTIONS(8335), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2399), 11, + ACTIONS(8333), 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, + [198149] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8715), 1, + anon_sym_else, + STATE(5267), 1, + sym_comment, + ACTIONS(8683), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398194,15 +416198,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, - [183626] = 4, + anon_sym_RPAREN, + [198173] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4967), 1, + STATE(5268), 1, sym_comment, - ACTIONS(2367), 2, + ACTIONS(7984), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2365), 11, + ACTIONS(7982), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398214,14 +416219,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, - [183650] = 4, + [198197] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8243), 1, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, anon_sym_DASH2, - STATE(4968), 1, + ACTIONS(8059), 1, + anon_sym_RBRACK, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5269), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [198243] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8719), 1, + anon_sym_DASH2, + STATE(5270), 1, sym_comment, - ACTIONS(8241), 12, + ACTIONS(8717), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -398234,35 +416270,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183674] = 4, - ACTIONS(3), 1, + [198267] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4969), 1, + ACTIONS(8723), 1, + anon_sym_DASH2, + STATE(5271), 1, sym_comment, - ACTIONS(7998), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7996), 11, + ACTIONS(8721), 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, - [183698] = 4, + 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, + [198291] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8727), 1, + anon_sym_DASH2, + STATE(5272), 1, + sym_comment, + ACTIONS(8725), 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, + [198315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4970), 1, + STATE(5273), 1, sym_comment, - ACTIONS(2499), 2, + ACTIONS(2409), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2497), 11, + ACTIONS(2407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398274,15 +416330,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, - [183722] = 4, + [198339] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4971), 1, + ACTIONS(8731), 1, + anon_sym_DASH2, + STATE(5274), 1, sym_comment, - ACTIONS(8245), 12, + ACTIONS(8729), 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, + [198363] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(8707), 1, sym__newline, + STATE(5275), 1, + sym_comment, + ACTIONS(8423), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398293,17 +416370,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, - [183746] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [198389] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4972), 1, - sym_comment, - ACTIONS(2084), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2078), 11, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(8709), 1, sym__newline, + STATE(5276), 1, + sym_comment, + ACTIONS(8429), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398314,46 +416391,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, - [183770] = 15, + anon_sym_RBRACE, + [198415] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(8735), 1, + anon_sym_DASH2, + STATE(5277), 1, + sym_comment, + ACTIONS(8733), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7682), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7684), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7686), 1, anon_sym_DASH_DASH, - ACTIONS(7688), 1, + [198439] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5278), 1, + sym_comment, + ACTIONS(1711), 3, anon_sym_DASH2, - ACTIONS(8247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(4115), 1, - sym_param_long_flag, - STATE(4231), 1, - sym__param_name, - STATE(4532), 1, - aux_sym_parameter_parens_repeat1, - STATE(4973), 1, - sym_comment, - STATE(5044), 1, - sym_param_rest, - STATE(5046), 1, - sym_param_opt, - STATE(5050), 1, - sym_param_short_flag, - STATE(5554), 1, - sym_parameter, - [183816] = 4, + 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, + [198463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4974), 1, + STATE(5279), 1, sym_comment, - ACTIONS(2094), 2, + ACTIONS(2413), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2088), 11, + ACTIONS(2411), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398365,33 +416452,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, - [183840] = 4, - ACTIONS(3), 1, + [198487] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4975), 1, + ACTIONS(8739), 1, + anon_sym_DASH2, + STATE(5280), 1, sym_comment, - ACTIONS(5192), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5194), 11, + ACTIONS(8737), 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, - [183864] = 3, + 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, + [198511] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4976), 1, - sym_comment, - ACTIONS(6847), 13, + ACTIONS(8401), 1, sym__newline, + ACTIONS(8741), 1, + anon_sym_else, + STATE(5281), 1, + sym_comment, + STATE(5282), 1, + aux_sym_shebang_repeat1, + ACTIONS(8404), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398402,15 +416494,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, - [183886] = 3, + [198539] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4977), 1, - sym_comment, - ACTIONS(6875), 13, + ACTIONS(8389), 1, sym__newline, + ACTIONS(8743), 1, + anon_sym_else, + STATE(5282), 1, + sym_comment, + STATE(5285), 1, + aux_sym_shebang_repeat1, + ACTIONS(8392), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398421,18 +416516,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, - [183908] = 4, - ACTIONS(3), 1, + [198567] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4978), 1, - sym_comment, - ACTIONS(2415), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2413), 11, + ACTIONS(8262), 1, sym__newline, + ACTIONS(8745), 1, + anon_sym_else, + STATE(5283), 1, + sym_comment, + STATE(5286), 1, + aux_sym_shebang_repeat1, + ACTIONS(8265), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398443,13 +416538,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, - [183932] = 3, + [198595] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4979), 1, - sym_comment, - ACTIONS(8249), 13, + ACTIONS(8365), 1, sym__newline, + ACTIONS(8747), 1, + anon_sym_else, + STATE(5284), 1, + sym_comment, + STATE(5287), 1, + aux_sym_shebang_repeat1, + ACTIONS(8368), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398460,18 +416560,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, - [183954] = 4, - ACTIONS(3), 1, + [198623] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4980), 1, - sym_comment, - ACTIONS(5102), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5104), 11, + ACTIONS(5240), 1, sym__newline, + ACTIONS(8749), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5285), 1, + sym_comment, + ACTIONS(1310), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398482,16 +416582,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, - [183978] = 4, - ACTIONS(3), 1, + [198651] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4981), 1, - sym_comment, - ACTIONS(5106), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5108), 11, + ACTIONS(8206), 1, sym__newline, + ACTIONS(8752), 1, + anon_sym_else, + STATE(5286), 1, + sym_comment, + STATE(5290), 1, + aux_sym_shebang_repeat1, + ACTIONS(8209), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398502,13 +416604,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, - [184002] = 3, + [198679] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4982), 1, - sym_comment, - ACTIONS(8137), 13, + ACTIONS(8213), 1, sym__newline, + ACTIONS(8754), 1, + anon_sym_else, + STATE(5287), 1, + sym_comment, + STATE(5291), 1, + aux_sym_shebang_repeat1, + ACTIONS(8216), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398519,18 +416626,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, - [184024] = 4, - ACTIONS(3), 1, + [198707] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4983), 1, - sym_comment, - ACTIONS(2447), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2445), 11, + ACTIONS(8220), 1, sym__newline, + ACTIONS(8756), 1, + anon_sym_else, + STATE(5288), 1, + sym_comment, + STATE(5292), 1, + aux_sym_shebang_repeat1, + ACTIONS(8223), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398541,16 +416648,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, - [184048] = 4, - ACTIONS(3), 1, + [198735] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4984), 1, + ACTIONS(8760), 1, + anon_sym_DASH2, + STATE(5289), 1, sym_comment, - ACTIONS(5709), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5707), 11, + ACTIONS(8758), 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, + [198759] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5240), 1, sym__newline, + ACTIONS(8762), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5290), 1, + sym_comment, + ACTIONS(1310), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398561,16 +416690,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, - [184072] = 4, - ACTIONS(3), 1, + [198787] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4985), 1, - sym_comment, - ACTIONS(2397), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2395), 11, + ACTIONS(5240), 1, sym__newline, + ACTIONS(8765), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5291), 1, + sym_comment, + ACTIONS(1310), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398581,13 +416712,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, - [184096] = 3, + [198815] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4986), 1, - sym_comment, - ACTIONS(8141), 13, + ACTIONS(8346), 1, sym__newline, + ACTIONS(8768), 1, + anon_sym_else, + STATE(5292), 1, + sym_comment, + STATE(5294), 1, + aux_sym_shebang_repeat1, + ACTIONS(8349), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398598,15 +416734,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184118] = 3, + [198843] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8063), 1, + anon_sym_RBRACK, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5293), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [198889] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4987), 1, - sym_comment, - ACTIONS(8251), 13, + ACTIONS(5240), 1, sym__newline, + ACTIONS(8770), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5294), 1, + sym_comment, + ACTIONS(1310), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398617,17 +416787,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, + [198917] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, + sym_identifier, + ACTIONS(8043), 1, + anon_sym_DOLLAR, + ACTIONS(8045), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, + anon_sym_DASH_DASH, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8065), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [184140] = 4, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5295), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [198963] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4988), 1, + STATE(5296), 1, sym_comment, - ACTIONS(2405), 2, + ACTIONS(2417), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2403), 11, + ACTIONS(2415), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398639,122 +416838,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184164] = 4, - ACTIONS(3), 1, + [198987] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4989), 1, + ACTIONS(8775), 1, + anon_sym_DASH2, + STATE(5297), 1, sym_comment, - ACTIONS(7624), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7622), 11, + ACTIONS(8773), 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, - [184188] = 12, + 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, + [199011] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(3613), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8253), 1, - anon_sym_DOT, - ACTIONS(8257), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8259), 1, - aux_sym__immediate_decimal_token5, - STATE(4990), 1, + ACTIONS(8779), 1, + anon_sym_DASH2, + STATE(5298), 1, sym_comment, - STATE(5952), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(8777), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8255), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6017), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184228] = 4, - ACTIONS(3), 1, + 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, + [199035] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4991), 1, + ACTIONS(8783), 1, + anon_sym_DASH2, + STATE(5299), 1, sym_comment, - ACTIONS(2515), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2513), 11, + ACTIONS(8781), 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, - [184252] = 4, + 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, + [199059] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8263), 1, + ACTIONS(8787), 1, anon_sym_DASH2, - STATE(4992), 1, + STATE(5300), 1, sym_comment, - ACTIONS(8261), 12, + ACTIONS(8785), 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_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184276] = 4, - ACTIONS(3), 1, + [199083] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4993), 1, + ACTIONS(8791), 1, + anon_sym_DASH2, + STATE(5301), 1, sym_comment, - ACTIONS(2427), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2425), 11, + ACTIONS(8789), 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, - [184300] = 4, + 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, + [199107] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2433), 1, + ACTIONS(8795), 1, anon_sym_DASH2, - STATE(4994), 1, + STATE(5302), 1, sym_comment, - ACTIONS(2435), 12, + ACTIONS(8793), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -398764,18 +416955,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_LBRACE, - [184324] = 4, + [199131] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4995), 1, + STATE(5303), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(2484), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2429), 11, + ACTIONS(2482), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398787,35 +416978,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, - [184348] = 4, - ACTIONS(251), 1, + [199155] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2421), 1, + ACTIONS(4079), 1, + anon_sym_DOLLAR, + ACTIONS(8583), 1, + sym__newline, + ACTIONS(8585), 1, + sym__space, + ACTIONS(8587), 1, + anon_sym_DASH_DASH, + ACTIONS(8589), 1, anon_sym_DASH2, - STATE(4996), 1, + ACTIONS(8591), 1, + anon_sym_LBRACE, + STATE(1850), 1, + sym_block, + STATE(1854), 1, + sym_val_closure, + STATE(5304), 1, sym_comment, - ACTIONS(2423), 12, - anon_sym_EQ, + STATE(6038), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(784), 2, + sym__blosure, + sym_val_variable, + STATE(8157), 2, + sym_short_flag, + sym_long_flag, + [199197] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8037), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(8043), 1, anon_sym_DOLLAR, + ACTIONS(8045), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8047), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184372] = 4, + ACTIONS(8049), 1, + anon_sym_DASH2, + ACTIONS(8061), 1, + anon_sym_RPAREN, + STATE(4374), 1, + sym_param_long_flag, + STATE(4540), 1, + sym__param_name, + STATE(4807), 1, + aux_sym_parameter_parens_repeat1, + STATE(5305), 1, + sym_comment, + STATE(5357), 1, + sym_param_rest, + STATE(5364), 1, + sym_param_opt, + STATE(5375), 1, + sym_param_short_flag, + STATE(5843), 1, + sym_parameter, + [199243] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4997), 1, + STATE(5306), 1, sym_comment, - ACTIONS(7841), 2, + ACTIONS(2488), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7839), 11, + ACTIONS(2486), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398827,12 +417058,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, - [184396] = 3, + [199267] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4998), 1, + ACTIONS(8797), 1, + anon_sym_else, + STATE(5307), 1, sym_comment, - ACTIONS(8265), 13, + ACTIONS(8683), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398844,36 +417078,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, - [184418] = 4, + [199291] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8269), 1, - anon_sym_DASH2, - STATE(4999), 1, + STATE(5308), 1, sym_comment, - ACTIONS(8267), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1767), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1769), 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, - [184442] = 4, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199315] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(8801), 1, anon_sym_DASH2, - STATE(5000), 1, + STATE(5309), 1, sym_comment, - ACTIONS(2439), 12, + ACTIONS(8799), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -398883,17 +417115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184466] = 4, + [199339] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2441), 1, + ACTIONS(8805), 1, anon_sym_DASH2, - STATE(5001), 1, + STATE(5310), 1, sym_comment, - ACTIONS(2443), 12, + ACTIONS(8803), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -398903,18 +417135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184490] = 4, - ACTIONS(3), 1, + [199363] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5002), 1, + STATE(5311), 1, sym_comment, - ACTIONS(5110), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5112), 11, + ACTIONS(5257), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398926,34 +417155,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, - [184514] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8273), 1, - anon_sym_DASH2, - STATE(5003), 1, - sym_comment, - ACTIONS(8271), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184538] = 4, + anon_sym_RBRACE, + [199385] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6114), 1, - anon_sym_DASH2, - STATE(5004), 1, + STATE(5312), 1, sym_comment, - ACTIONS(6116), 12, + ACTIONS(1022), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1024), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -398965,15 +417177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184562] = 4, + [199409] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5005), 1, + STATE(5313), 1, sym_comment, - ACTIONS(8275), 12, + ACTIONS(8807), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398986,165 +417195,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184586] = 4, - ACTIONS(251), 1, + [199430] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8279), 1, - anon_sym_DASH2, - STATE(5006), 1, - sym_comment, - ACTIONS(8277), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(5573), 1, + anon_sym_LPAREN2, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8809), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(8811), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [184610] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(8813), 1, + anon_sym_DOLLAR2, + ACTIONS(8815), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(8817), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3627), 1, + STATE(2975), 1, sym__immediate_decimal, - STATE(5007), 1, + STATE(5314), 1, sym_comment, - ACTIONS(1677), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3444), 2, + STATE(3056), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184647] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(8283), 1, - anon_sym_DOLLAR, - ACTIONS(8285), 1, - anon_sym_DASH_DASH, - ACTIONS(8287), 1, - anon_sym_DASH2, - ACTIONS(8289), 1, - anon_sym_LBRACE, - STATE(1782), 1, - sym_block, - STATE(1783), 1, - sym_val_closure, - STATE(5008), 1, - sym_comment, - STATE(5238), 1, - aux_sym_ctrl_do_repeat1, - STATE(799), 2, - sym__blosure, - sym_val_variable, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [184686] = 4, + [199471] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8293), 1, - anon_sym_DASH2, - STATE(5009), 1, + STATE(5315), 1, sym_comment, - ACTIONS(8291), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8819), 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, - [184709] = 4, + [199492] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8293), 1, + ACTIONS(5925), 1, + sym__newline, + ACTIONS(8821), 1, anon_sym_DASH2, - STATE(5010), 1, + STATE(5316), 1, sym_comment, - ACTIONS(8291), 11, + ACTIONS(1302), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5928), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184732] = 6, + [199519] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_DOT, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token2, - STATE(5011), 1, + STATE(5317), 1, sym_comment, - ACTIONS(1647), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [184759] = 6, - ACTIONS(251), 1, + ACTIONS(8823), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [199540] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8299), 1, + ACTIONS(8825), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8301), 1, + ACTIONS(8827), 1, aux_sym__immediate_decimal_token2, - STATE(5012), 1, + STATE(5318), 1, sym_comment, - ACTIONS(1639), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1661), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1663), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1637), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [184786] = 3, + sym__entry_separator, + [199567] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5013), 1, + STATE(5319), 1, sym_comment, - ACTIONS(8303), 12, + ACTIONS(8829), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399157,12 +417319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184807] = 3, + [199588] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5014), 1, + STATE(5320), 1, sym_comment, - ACTIONS(8305), 12, + ACTIONS(8429), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399174,13 +417337,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, - [184828] = 3, + [199609] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5015), 1, + STATE(5321), 1, sym_comment, - ACTIONS(8307), 12, + ACTIONS(8651), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399192,13 +417355,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [199630] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1957), 1, + anon_sym_DASH2, + STATE(5322), 1, + sym_comment, + ACTIONS(1959), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [184849] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [199653] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1645), 1, + anon_sym_RBRACK, + ACTIONS(1657), 1, + sym__entry_separator, + ACTIONS(1659), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8833), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8835), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8837), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8839), 1, + aux_sym__immediate_decimal_token5, + STATE(5323), 1, + sym_comment, + STATE(6666), 1, + sym__immediate_decimal, + STATE(7890), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199694] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1645), 1, + anon_sym_RBRACE, + ACTIONS(1657), 1, + sym__entry_separator, + ACTIONS(1659), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8841), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8843), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8845), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8847), 1, + aux_sym__immediate_decimal_token5, + STATE(5324), 1, + sym_comment, + STATE(7090), 1, + sym__immediate_decimal, + STATE(7890), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199735] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(5016), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(8849), 1, + sym_identifier, + ACTIONS(8851), 1, + sym__newline, + ACTIONS(8853), 1, + anon_sym_GT2, + STATE(5325), 1, + sym_comment, + STATE(5533), 1, + aux_sym_shebang_repeat1, + STATE(5703), 1, + aux_sym_collection_type_repeat1, + STATE(6870), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [199774] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5326), 1, sym_comment, - ACTIONS(8309), 12, + ACTIONS(8855), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399211,18 +417475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184870] = 6, + [199795] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - STATE(735), 1, + STATE(743), 1, aux_sym__pipe_separator, - STATE(5017), 1, + STATE(5327), 1, sym_comment, - STATE(5234), 1, + STATE(5492), 1, aux_sym_shebang_repeat1, - ACTIONS(2542), 9, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -399232,93 +417496,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, - [184897] = 12, - ACTIONS(3), 1, + [199822] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1735), 1, - sym__entry_separator, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5018), 1, + STATE(5328), 1, sym_comment, - STATE(7139), 1, - sym__immediate_decimal, - ACTIONS(1733), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184936] = 12, - ACTIONS(3), 1, + ACTIONS(8487), 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, + [199843] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1739), 1, - sym__entry_separator, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5019), 1, + ACTIONS(2072), 1, + anon_sym_DASH2, + STATE(5329), 1, sym_comment, - STATE(7170), 1, - sym__immediate_decimal, - ACTIONS(1737), 2, + ACTIONS(2078), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7167), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184975] = 12, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [199866] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1743), 1, - sym__entry_separator, - ACTIONS(8099), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8107), 1, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5020), 1, + STATE(5330), 1, sym_comment, - STATE(7182), 1, + STATE(7696), 1, sym__immediate_decimal, - ACTIONS(1741), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7171), 2, + ACTIONS(1579), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8857), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2123), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185014] = 3, + [199903] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5021), 1, + STATE(5331), 1, sym_comment, - ACTIONS(8317), 12, + ACTIONS(8863), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399331,40 +417577,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185035] = 12, + [199924] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1603), 1, + ACTIONS(1579), 1, anon_sym_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8319), 1, + ACTIONS(8865), 1, anon_sym_DOLLAR, - ACTIONS(8321), 1, + ACTIONS(8867), 1, anon_sym_DOT, - ACTIONS(8325), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token5, - STATE(5022), 1, + STATE(5332), 1, sym_comment, - STATE(6158), 1, + STATE(6401), 1, sym__immediate_decimal, - ACTIONS(8323), 2, + ACTIONS(8869), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6062), 2, + STATE(6789), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185074] = 3, + [199963] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5023), 1, + STATE(5333), 1, sym_comment, - ACTIONS(8249), 12, - ts_builtin_sym_end, + ACTIONS(8875), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399376,13 +417621,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, - [185095] = 3, + anon_sym_RPAREN, + [199984] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1643), 1, + sym__entry_separator, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8603), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8605), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token3, + STATE(5334), 1, + sym_comment, + STATE(7339), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7337), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200023] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5024), 1, + STATE(5335), 1, sym_comment, - ACTIONS(8229), 12, - ts_builtin_sym_end, + ACTIONS(8881), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399394,31 +417666,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, - [185116] = 4, + anon_sym_RPAREN, + [200044] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2088), 1, - anon_sym_DASH2, - STATE(5025), 1, + STATE(5336), 1, sym_comment, - ACTIONS(2094), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8883), 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, - [185139] = 3, + [200065] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5026), 1, + STATE(5337), 1, sym_comment, - ACTIONS(8239), 12, + ACTIONS(8547), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -399431,109 +417703,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185160] = 4, + [200086] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2532), 1, - anon_sym_DASH2, - STATE(5027), 1, + STATE(5338), 1, sym_comment, - ACTIONS(2534), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8885), 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, - [185183] = 4, + [200107] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2181), 1, - anon_sym_DASH2, - STATE(5028), 1, + STATE(5339), 1, sym_comment, - ACTIONS(2187), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1669), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - [185206] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200130] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2070), 1, - anon_sym_DASH2, - STATE(5029), 1, + STATE(5340), 1, sym_comment, - ACTIONS(2076), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8887), 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, - [185229] = 4, + [200151] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_DASH2, - STATE(5030), 1, + STATE(5341), 1, sym_comment, - ACTIONS(2084), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8889), 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, - [185252] = 4, + [200172] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2520), 1, - anon_sym_DASH2, - STATE(5031), 1, + STATE(5342), 1, sym_comment, - ACTIONS(2522), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8891), 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, - [185275] = 4, + [200193] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2524), 1, + ACTIONS(8163), 1, anon_sym_DASH2, - STATE(5032), 1, + STATE(5343), 1, sym_comment, - ACTIONS(2526), 11, + ACTIONS(8161), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399545,128 +417813,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185298] = 4, + [200216] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2528), 1, - anon_sym_DASH2, - STATE(5033), 1, + STATE(5344), 1, sym_comment, - ACTIONS(2530), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7181), 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, - [185321] = 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, + [200237] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2361), 1, - anon_sym_DASH2, - STATE(5034), 1, + STATE(5345), 1, sym_comment, - ACTIONS(2363), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8893), 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, - [185344] = 4, + [200258] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2365), 1, - anon_sym_DASH2, - STATE(5035), 1, + STATE(5346), 1, sym_comment, - ACTIONS(2367), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8895), 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, - [185367] = 4, + [200279] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2369), 1, - anon_sym_DASH2, - STATE(5036), 1, + ACTIONS(8897), 1, + anon_sym_DOT, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token2, + STATE(5347), 1, sym_comment, - ACTIONS(2371), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1669), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185390] = 4, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200306] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2373), 1, - anon_sym_DASH2, - STATE(5037), 1, + STATE(5348), 1, sym_comment, - ACTIONS(2375), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8435), 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, - [185413] = 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, + [200327] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_DASH2, - STATE(5038), 1, + STATE(5349), 1, sym_comment, - ACTIONS(2381), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8901), 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, - [185436] = 4, + [200348] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(8905), 1, anon_sym_DASH2, - STATE(5039), 1, + STATE(5350), 1, sym_comment, - ACTIONS(2385), 11, + ACTIONS(8903), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399678,90 +417943,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185459] = 4, + [200371] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2387), 1, - anon_sym_DASH2, - STATE(5040), 1, + STATE(5351), 1, sym_comment, - ACTIONS(2389), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8907), 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, - [185482] = 4, + [200392] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8331), 1, - anon_sym_DASH2, - STATE(5041), 1, + STATE(5352), 1, sym_comment, - ACTIONS(8329), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8229), 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, - [185505] = 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, + [200413] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8335), 1, - anon_sym_DASH2, - STATE(5042), 1, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8911), 1, + aux_sym__immediate_decimal_token2, + STATE(5353), 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, + ACTIONS(1661), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185528] = 4, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200440] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5573), 1, + anon_sym_LPAREN2, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8811), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, + anon_sym_DOLLAR2, + ACTIONS(8815), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8817), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8913), 1, + anon_sym_RBRACK, + STATE(2975), 1, + sym__immediate_decimal, + STATE(5354), 1, + sym_comment, + STATE(3056), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200481] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8339), 1, - anon_sym_DASH2, - STATE(5043), 1, + STATE(5355), 1, sym_comment, - ACTIONS(8337), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8687), 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, - [185551] = 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, + [200502] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5356), 1, + sym_comment, + ACTIONS(8915), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(8917), 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, + [200525] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8343), 1, + ACTIONS(8921), 1, anon_sym_DASH2, - STATE(5044), 1, + STATE(5357), 1, sym_comment, - ACTIONS(8341), 11, + ACTIONS(8919), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399773,33 +418084,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185574] = 4, + [200548] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_DASH2, - STATE(5045), 1, + STATE(5358), 1, sym_comment, - ACTIONS(8345), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8653), 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, - [185597] = 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, + [200569] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8351), 1, + ACTIONS(2520), 1, anon_sym_DASH2, - STATE(5046), 1, + STATE(5359), 1, sym_comment, - ACTIONS(8349), 11, + ACTIONS(2522), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399811,14 +418121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185620] = 4, + [200592] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8355), 1, + ACTIONS(8925), 1, anon_sym_DASH2, - STATE(5047), 1, + STATE(5360), 1, sym_comment, - ACTIONS(8353), 11, + ACTIONS(8923), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399830,13 +418140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185643] = 3, + [200615] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5048), 1, + STATE(5361), 1, sym_comment, - ACTIONS(5154), 12, - ts_builtin_sym_end, + ACTIONS(8927), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399848,32 +418157,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, - [185664] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + [200636] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5049), 1, + ACTIONS(1565), 1, + anon_sym_RBRACE, + ACTIONS(1579), 1, + sym__entry_separator, + ACTIONS(1581), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8841), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8843), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8845), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8847), 1, + aux_sym__immediate_decimal_token5, + STATE(5362), 1, sym_comment, - ACTIONS(5158), 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, - [185685] = 4, + STATE(6802), 1, + sym__immediate_decimal, + STATE(7372), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200677] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5573), 1, + anon_sym_LPAREN2, + ACTIONS(5577), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8811), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, + anon_sym_DOLLAR2, + ACTIONS(8815), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8817), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8929), 1, + anon_sym_RBRACK, + STATE(2975), 1, + sym__immediate_decimal, + STATE(5363), 1, + sym_comment, + STATE(3056), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200718] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8359), 1, + ACTIONS(8933), 1, anon_sym_DASH2, - STATE(5050), 1, + STATE(5364), 1, sym_comment, - ACTIONS(8357), 11, + ACTIONS(8931), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -399885,73 +418233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185708] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5051), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 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, - [185731] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5052), 1, - sym_comment, - ACTIONS(1637), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 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, - [185754] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5053), 1, - sym_comment, - ACTIONS(1745), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1747), 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, - [185777] = 4, + [200741] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(5365), 1, sym_comment, - ACTIONS(1781), 3, + ACTIONS(1661), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1783), 9, + ACTIONS(1663), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -399961,13 +418252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [185800] = 3, + [200764] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5055), 1, + STATE(5366), 1, sym_comment, - ACTIONS(8189), 12, - ts_builtin_sym_end, + ACTIONS(8935), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399979,52 +418269,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, - [185821] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5056), 1, - sym_comment, - ACTIONS(8361), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8363), 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, - [185844] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5057), 1, - sym_comment, - ACTIONS(7027), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7033), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7029), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7031), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [185871] = 3, + anon_sym_RPAREN, + [200785] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5058), 1, + STATE(5367), 1, sym_comment, - ACTIONS(8251), 12, + ACTIONS(7157), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -400037,143 +418288,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185892] = 4, + [200806] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5059), 1, + ACTIONS(1687), 1, + anon_sym_DASH2, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(8937), 1, + sym_filesize_unit, + ACTIONS(8939), 1, + sym_duration_unit, + ACTIONS(8941), 1, + aux_sym_unquoted_token2, + STATE(5368), 1, sym_comment, - ACTIONS(7542), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7544), 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, - [185915] = 3, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [200839] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5060), 1, + ACTIONS(8945), 1, + anon_sym_DASH2, + STATE(5369), 1, sym_comment, - ACTIONS(8133), 12, - ts_builtin_sym_end, + ACTIONS(8943), 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, - [185936] = 13, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [200862] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_DOLLAR, - ACTIONS(5332), 1, + ACTIONS(1685), 1, + sym__entry_separator, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(5336), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5338), 1, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5340), 1, + ACTIONS(8605), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8365), 1, - anon_sym_RBRACK, - ACTIONS(8367), 1, - anon_sym_DOLLAR2, - ACTIONS(8369), 1, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token1, - STATE(2716), 1, - sym__immediate_decimal, - STATE(5061), 1, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token3, + STATE(5370), 1, sym_comment, - STATE(2865), 2, + STATE(7855), 1, + sym__immediate_decimal, + ACTIONS(1677), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7851), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185977] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5062), 1, - sym_comment, - ACTIONS(8371), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8373), 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, - [186000] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5063), 1, - sym_comment, - ACTIONS(7845), 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, - [186021] = 13, + [200901] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(1741), 1, + sym__entry_separator, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(5433), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5435), 1, + ACTIONS(8603), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8605), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8367), 1, - anon_sym_DOLLAR2, - ACTIONS(8375), 1, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token3, + STATE(5371), 1, + sym_comment, + STATE(7858), 1, + sym__immediate_decimal, + ACTIONS(1739), 2, anon_sym_RBRACK, - ACTIONS(8377), 1, - anon_sym_DOLLAR, - ACTIONS(8379), 1, + anon_sym_RBRACE, + STATE(7856), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200940] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1745), 1, + sym__entry_separator, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8381), 1, + ACTIONS(8605), 1, aux_sym__immediate_decimal_token5, - STATE(2813), 1, - sym__immediate_decimal, - STATE(5064), 1, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token3, + STATE(5372), 1, sym_comment, - STATE(2910), 2, + STATE(7886), 1, + sym__immediate_decimal, + ACTIONS(1743), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7859), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186062] = 3, + [200979] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5065), 1, + STATE(5373), 1, sym_comment, - ACTIONS(8149), 12, - ts_builtin_sym_end, + ACTIONS(8947), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400185,12 +418429,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, - [186083] = 3, + anon_sym_RPAREN, + [201000] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5066), 1, + STATE(5374), 1, sym_comment, - ACTIONS(8151), 12, + ACTIONS(8517), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -400203,14 +418448,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, - [186104] = 4, + [201021] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7771), 1, + ACTIONS(8951), 1, anon_sym_DASH2, - STATE(5067), 1, + STATE(5375), 1, sym_comment, - ACTIONS(7769), 11, + ACTIONS(8949), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -400222,14 +418467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186127] = 4, + [201044] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8385), 1, + ACTIONS(8955), 1, anon_sym_DASH2, - STATE(5068), 1, + STATE(5376), 1, sym_comment, - ACTIONS(8383), 11, + ACTIONS(8953), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -400241,15 +418486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186150] = 4, + [201067] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5069), 1, + STATE(5377), 1, sym_comment, - ACTIONS(7636), 2, + ACTIONS(7978), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7638), 10, + ACTIONS(7980), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -400260,71 +418505,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [186173] = 4, + [201090] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8389), 1, - anon_sym_DASH2, - STATE(5070), 1, + STATE(5378), 1, sym_comment, - ACTIONS(8387), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8957), 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, - [186196] = 6, + [201111] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5071), 1, + STATE(5379), 1, sym_comment, - ACTIONS(7015), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7021), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7017), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7019), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [186223] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8393), 1, + ACTIONS(1711), 3, anon_sym_DASH2, - STATE(5072), 1, - sym_comment, - ACTIONS(8391), 11, - anon_sym_EQ, - sym_identifier, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - [186246] = 3, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201134] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5073), 1, + STATE(5380), 1, sym_comment, - ACTIONS(8395), 12, + ACTIONS(8959), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400337,12 +418560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186267] = 3, + [201155] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5074), 1, + STATE(5381), 1, sym_comment, - ACTIONS(8397), 12, + ACTIONS(8689), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400354,67 +418578,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [186288] = 3, + [201176] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5075), 1, + ACTIONS(2395), 1, + anon_sym_DASH2, + STATE(5382), 1, sym_comment, - ACTIONS(8399), 12, + ACTIONS(2397), 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, - [186309] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201199] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5076), 1, + ACTIONS(2090), 1, + anon_sym_DASH2, + STATE(5383), 1, sym_comment, - ACTIONS(8401), 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, - [186330] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201222] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5077), 1, + ACTIONS(2098), 1, + anon_sym_DASH2, + STATE(5384), 1, sym_comment, - ACTIONS(8403), 12, + ACTIONS(2104), 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, - [186351] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201245] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5078), 1, + STATE(5385), 1, sym_comment, - ACTIONS(8405), 12, + ACTIONS(8423), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400426,31 +418653,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, - [186372] = 3, + [201266] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5079), 1, + ACTIONS(2131), 1, + anon_sym_DASH2, + STATE(5386), 1, sym_comment, - ACTIONS(8407), 12, + ACTIONS(2137), 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, - [186393] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201289] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5080), 1, + STATE(5387), 1, + sym_comment, + ACTIONS(7321), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7327), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7323), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7325), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [201316] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5388), 1, sym_comment, - ACTIONS(8409), 12, + ACTIONS(8961), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400463,101 +418711,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186414] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DOT, - ACTIONS(8413), 1, - aux_sym__immediate_decimal_token2, - STATE(5081), 1, - sym_comment, - ACTIONS(1645), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1647), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [186441] = 13, - ACTIONS(3), 1, + [201337] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1675), 1, - anon_sym_RBRACK, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8099), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8311), 1, + ACTIONS(4776), 1, anon_sym_DOLLAR, - ACTIONS(8415), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8417), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8419), 1, + ACTIONS(8294), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8421), 1, + ACTIONS(8296), 1, aux_sym__immediate_decimal_token5, - STATE(5082), 1, - sym_comment, - STATE(6751), 1, + STATE(2093), 1, sym__immediate_decimal, - STATE(7184), 2, + STATE(5389), 1, + sym_comment, + ACTIONS(8963), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2090), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186482] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8423), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8425), 1, - aux_sym__immediate_decimal_token2, - STATE(5083), 1, - sym_comment, - ACTIONS(1637), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1639), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [186509] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5084), 1, - sym_comment, - ACTIONS(6847), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1643), 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, - [186530] = 3, + anon_sym_if, + anon_sym_EQ_GT, + [201372] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5085), 1, + STATE(5390), 1, sym_comment, - ACTIONS(8091), 12, - ts_builtin_sym_end, + ACTIONS(8965), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400569,140 +418753,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186551] = 13, + anon_sym_RPAREN, + [201393] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_RBRACE, - ACTIONS(1603), 1, - sym__entry_separator, - ACTIONS(3115), 1, + ACTIONS(2573), 1, anon_sym_DOLLAR, - ACTIONS(8099), 1, + ACTIONS(5500), 1, anon_sym_LPAREN2, - ACTIONS(8103), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8105), 1, + ACTIONS(5504), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8107), 1, + ACTIONS(5506), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, + ACTIONS(5508), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8427), 1, - anon_sym_DOT, - STATE(5086), 1, - sym_comment, - STATE(6125), 1, + ACTIONS(5725), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8813), 1, + anon_sym_DOLLAR2, + ACTIONS(8967), 1, + anon_sym_RBRACK, + ACTIONS(8969), 1, + aux_sym__immediate_decimal_token1, + STATE(2797), 1, sym__immediate_decimal, - STATE(5780), 2, + STATE(5391), 1, + sym_comment, + STATE(2956), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186592] = 3, + [201434] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5087), 1, + ACTIONS(8971), 1, + anon_sym_DOT, + ACTIONS(8973), 1, + aux_sym__immediate_decimal_token2, + STATE(5392), 1, sym_comment, - ACTIONS(8429), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [186613] = 13, - ACTIONS(3), 1, + ACTIONS(1671), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [201461] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(5433), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5435), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8365), 1, - anon_sym_RBRACK, - ACTIONS(8367), 1, - anon_sym_DOLLAR2, - ACTIONS(8377), 1, + ACTIONS(4776), 1, anon_sym_DOLLAR, - ACTIONS(8379), 1, + ACTIONS(8294), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8381), 1, + ACTIONS(8296), 1, aux_sym__immediate_decimal_token5, - STATE(2813), 1, + STATE(2091), 1, sym__immediate_decimal, - STATE(5088), 1, + STATE(5393), 1, sym_comment, - STATE(2910), 2, + ACTIONS(8963), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2080), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186654] = 11, + ACTIONS(1685), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201496] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(8975), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8977), 1, + aux_sym__immediate_decimal_token2, + STATE(5394), 1, + sym_comment, + ACTIONS(1663), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1661), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(6223), 1, + [201523] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8111), 1, + ACTIONS(4776), 1, anon_sym_DOLLAR, - ACTIONS(8433), 1, + ACTIONS(8294), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8435), 1, + ACTIONS(8296), 1, aux_sym__immediate_decimal_token5, - STATE(5089), 1, - sym_comment, - STATE(6936), 1, + STATE(2140), 1, sym__immediate_decimal, - ACTIONS(1603), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8431), 2, + STATE(5395), 1, + sym_comment, + ACTIONS(8963), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3440), 2, + STATE(2138), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186691] = 13, - ACTIONS(3), 1, + ACTIONS(1741), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201558] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(5433), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5435), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8367), 1, - anon_sym_DOLLAR2, - ACTIONS(8377), 1, + ACTIONS(4776), 1, anon_sym_DOLLAR, - ACTIONS(8379), 1, + ACTIONS(8294), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8381), 1, + ACTIONS(8296), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8437), 1, - anon_sym_RBRACK, - STATE(2813), 1, + STATE(2158), 1, sym__immediate_decimal, - STATE(5090), 1, + STATE(5396), 1, sym_comment, - STATE(2910), 2, + ACTIONS(8963), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2097), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186732] = 3, + ACTIONS(1745), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201593] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5091), 1, + STATE(5397), 1, sym_comment, - ACTIONS(8167), 12, + ACTIONS(8711), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -400715,30 +418917,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, - [186753] = 3, + [201614] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5092), 1, + STATE(5398), 1, sym_comment, - ACTIONS(8439), 12, + ACTIONS(1767), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1769), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [186774] = 3, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201637] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5093), 1, + STATE(5399), 1, sym_comment, - ACTIONS(8441), 12, + ACTIONS(8713), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400750,14 +418954,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, - [186795] = 3, + [201658] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5094), 1, + STATE(5400), 1, sym_comment, - ACTIONS(8169), 12, - ts_builtin_sym_end, + ACTIONS(8979), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400769,13 +418971,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, - [186816] = 3, + anon_sym_RPAREN, + [201679] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5095), 1, + STATE(5401), 1, sym_comment, - ACTIONS(6875), 12, - ts_builtin_sym_end, + ACTIONS(8981), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400787,14 +418989,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, - [186837] = 4, + anon_sym_RPAREN, + [201700] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7670), 1, + ACTIONS(2411), 1, anon_sym_DASH2, - STATE(5096), 1, + STATE(5402), 1, sym_comment, - ACTIONS(7668), 11, + ACTIONS(2413), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -400806,74 +419009,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186860] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - ACTIONS(8433), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8435), 1, - aux_sym__immediate_decimal_token5, - STATE(5097), 1, - sym_comment, - STATE(7309), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8431), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3444), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186897] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5098), 1, - sym_comment, - ACTIONS(8443), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [186918] = 3, + [201723] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5099), 1, + ACTIONS(2415), 1, + anon_sym_DASH2, + STATE(5403), 1, sym_comment, - ACTIONS(8445), 12, + ACTIONS(2417), 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, - [186939] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201746] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5100), 1, + STATE(5404), 1, sym_comment, - ACTIONS(8447), 12, + ACTIONS(8983), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400886,12 +419046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186960] = 3, + [201767] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5101), 1, + STATE(5405), 1, sym_comment, - ACTIONS(8449), 12, + ACTIONS(8985), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400904,140 +419064,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186981] = 3, + [201788] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(5102), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(8987), 1, + anon_sym_DOLLAR, + ACTIONS(8989), 1, + anon_sym_DASH_DASH, + ACTIONS(8991), 1, + anon_sym_DASH2, + ACTIONS(8993), 1, + anon_sym_LBRACE, + STATE(1850), 1, + sym_block, + STATE(1854), 1, + sym_val_closure, + STATE(5406), 1, sym_comment, - ACTIONS(8451), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [187002] = 3, - ACTIONS(251), 1, + STATE(5541), 1, + aux_sym_ctrl_do_repeat1, + STATE(785), 2, + sym__blosure, + sym_val_variable, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [201827] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5103), 1, + ACTIONS(1565), 1, + anon_sym_RBRACK, + ACTIONS(1579), 1, + sym__entry_separator, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8833), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8835), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8837), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8839), 1, + aux_sym__immediate_decimal_token5, + STATE(5407), 1, sym_comment, - ACTIONS(8453), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [187023] = 3, + STATE(7052), 1, + sym__immediate_decimal, + STATE(7372), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201868] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5104), 1, + ACTIONS(2419), 1, + anon_sym_DASH2, + STATE(5408), 1, sym_comment, - ACTIONS(8455), 12, + ACTIONS(2421), 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, - [187044] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201891] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5105), 1, + ACTIONS(2423), 1, + anon_sym_DASH2, + STATE(5409), 1, sym_comment, - ACTIONS(8457), 12, + ACTIONS(2425), 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, - [187065] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201914] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5106), 1, + ACTIONS(2427), 1, + anon_sym_DASH2, + STATE(5410), 1, sym_comment, - ACTIONS(6917), 12, + ACTIONS(2429), 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, - [187086] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201937] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5107), 1, + ACTIONS(2431), 1, + anon_sym_DASH2, + STATE(5411), 1, sym_comment, - ACTIONS(8459), 12, + ACTIONS(2433), 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, - [187107] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201960] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5108), 1, - sym_comment, - ACTIONS(8461), 12, + ACTIONS(8401), 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, - [187128] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5109), 1, + ACTIONS(8995), 1, + anon_sym_else, + STATE(5412), 1, sym_comment, - ACTIONS(8463), 12, - sym__newline, - anon_sym_SEMI, + STATE(5416), 1, + aux_sym_shebang_repeat1, + ACTIONS(8404), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401047,76 +419216,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [187149] = 3, + [201987] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5110), 1, + ACTIONS(2435), 1, + anon_sym_DASH2, + STATE(5413), 1, sym_comment, - ACTIONS(8465), 12, + ACTIONS(2437), 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, - [187170] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202010] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5111), 1, + ACTIONS(2443), 1, + anon_sym_DASH2, + STATE(5414), 1, sym_comment, - ACTIONS(8467), 12, + ACTIONS(2445), 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, - [187191] = 9, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202033] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(2447), 1, anon_sym_DASH2, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(8469), 1, - sym_filesize_unit, - ACTIONS(8471), 1, - sym_duration_unit, - ACTIONS(8473), 1, - aux_sym_unquoted_token2, - STATE(5112), 1, + STATE(5415), 1, sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 5, - ts_builtin_sym_end, + ACTIONS(2449), 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, - [187224] = 3, + [202056] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5113), 1, - sym_comment, - ACTIONS(8171), 12, - ts_builtin_sym_end, + ACTIONS(8389), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8997), 1, + anon_sym_else, + STATE(5416), 1, + sym_comment, + STATE(5419), 1, + aux_sym_shebang_repeat1, + ACTIONS(8392), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401126,15 +419294,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, - [187245] = 3, + [202083] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5114), 1, - sym_comment, - ACTIONS(8173), 12, - ts_builtin_sym_end, + ACTIONS(8262), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8999), 1, + anon_sym_else, + STATE(5417), 1, + sym_comment, + STATE(5420), 1, + aux_sym_shebang_repeat1, + ACTIONS(8265), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401144,43 +419315,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, - [187266] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_RBRACE, - ACTIONS(1603), 1, - sym__entry_separator, - ACTIONS(1605), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8475), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8477), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8479), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8481), 1, - aux_sym__immediate_decimal_token5, - STATE(5115), 1, - sym_comment, - STATE(6758), 1, - sym__immediate_decimal, - STATE(7148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187307] = 3, + [202110] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5116), 1, - sym_comment, - ACTIONS(8137), 12, - ts_builtin_sym_end, + ACTIONS(8365), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9001), 1, + anon_sym_else, + STATE(5418), 1, + sym_comment, + STATE(5421), 1, + aux_sym_shebang_repeat1, + ACTIONS(8368), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401190,15 +419336,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, - [187328] = 3, + [202137] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5117), 1, - sym_comment, - ACTIONS(8141), 12, - ts_builtin_sym_end, + ACTIONS(5240), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9003), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5419), 1, + sym_comment, + ACTIONS(1310), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401208,14 +419357,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, - [187349] = 3, + [202164] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5118), 1, - sym_comment, - ACTIONS(8483), 12, + ACTIONS(8206), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9006), 1, + anon_sym_else, + STATE(5420), 1, + sym_comment, + STATE(5424), 1, + aux_sym_shebang_repeat1, + ACTIONS(8209), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401225,15 +419378,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, - [187370] = 3, + [202191] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5119), 1, - sym_comment, - ACTIONS(8485), 12, + ACTIONS(8213), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9008), 1, + anon_sym_else, + STATE(5421), 1, + sym_comment, + STATE(5425), 1, + aux_sym_shebang_repeat1, + ACTIONS(8216), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401243,15 +419399,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, - [187391] = 3, + [202218] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5120), 1, - sym_comment, - ACTIONS(8487), 12, + ACTIONS(8220), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9010), 1, + anon_sym_else, + STATE(5422), 1, + sym_comment, + STATE(5426), 1, + aux_sym_shebang_repeat1, + ACTIONS(8223), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401261,15 +419420,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, - [187412] = 3, + [202245] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5121), 1, + STATE(5423), 1, sym_comment, - ACTIONS(8489), 12, + ACTIONS(9012), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(9014), 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, + [202268] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5240), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9016), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5424), 1, + sym_comment, + ACTIONS(1310), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401279,15 +419460,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, - [187433] = 3, + [202295] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5122), 1, - sym_comment, - ACTIONS(8491), 12, + ACTIONS(5240), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9019), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5425), 1, + sym_comment, + ACTIONS(1310), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401297,15 +419481,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, - [187454] = 3, + [202322] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5123), 1, - sym_comment, - ACTIONS(8493), 12, + ACTIONS(8346), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9022), 1, + anon_sym_else, + STATE(5426), 1, + sym_comment, + STATE(5428), 1, + aux_sym_shebang_repeat1, + ACTIONS(8349), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401315,13 +419502,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, - [187475] = 3, + [202349] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5124), 1, + STATE(5427), 1, sym_comment, - ACTIONS(8495), 12, + ACTIONS(8663), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401333,15 +419520,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, - [187496] = 3, + [202370] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5125), 1, - sym_comment, - ACTIONS(8497), 12, + ACTIONS(5240), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9024), 1, + anon_sym_else, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5428), 1, + sym_comment, + ACTIONS(1310), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401351,13 +419541,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, - [187517] = 3, + [202397] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5126), 1, + STATE(5429), 1, sym_comment, - ACTIONS(8499), 12, + ACTIONS(8507), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401369,13 +419559,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, - [187538] = 3, + [202418] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5127), 1, + STATE(5430), 1, sym_comment, - ACTIONS(8501), 12, + ACTIONS(9027), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401388,12 +419577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187559] = 3, + [202439] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5128), 1, + STATE(5431), 1, sym_comment, - ACTIONS(8503), 12, + ACTIONS(7301), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401406,30 +419595,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187580] = 3, + [202460] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5129), 1, + ACTIONS(9031), 1, + anon_sym_DASH2, + STATE(5432), 1, sym_comment, - ACTIONS(8505), 12, + ACTIONS(9029), 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, - [187601] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202483] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5130), 1, + STATE(5433), 1, sym_comment, - ACTIONS(8507), 12, + ACTIONS(9033), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401442,30 +419632,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187622] = 3, + [202504] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5131), 1, + ACTIONS(9031), 1, + anon_sym_DASH2, + STATE(5434), 1, sym_comment, - ACTIONS(8509), 12, + ACTIONS(9029), 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, - [187643] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202527] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5132), 1, + STATE(5435), 1, sym_comment, - ACTIONS(8511), 12, + ACTIONS(8695), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401477,36 +419669,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, - [187664] = 6, + [202548] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(5133), 1, + ACTIONS(9037), 1, + anon_sym_DASH2, + STATE(5436), 1, sym_comment, - STATE(5234), 1, - aux_sym_shebang_repeat1, - ACTIONS(2542), 9, + ACTIONS(9035), 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, - [187691] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [202571] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5134), 1, - sym_comment, - ACTIONS(8513), 12, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, + STATE(729), 1, + aux_sym__pipe_separator, + STATE(5437), 1, + sym_comment, + STATE(5492), 1, + aux_sym_shebang_repeat1, + ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401516,13 +419709,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, - [187712] = 3, + [202598] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5135), 1, + STATE(5438), 1, sym_comment, - ACTIONS(8515), 12, + ACTIONS(9039), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401535,12 +419727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187733] = 3, + [202619] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5136), 1, + STATE(5439), 1, sym_comment, - ACTIONS(8265), 12, + ACTIONS(8697), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -401553,187 +419745,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187754] = 13, + [202640] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, - anon_sym_RBRACE, - ACTIONS(1677), 1, - sym__entry_separator, - ACTIONS(1679), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8099), 1, + ACTIONS(5573), 1, anon_sym_LPAREN2, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8475), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8477), 1, + ACTIONS(5577), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8479), 1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8811), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, + anon_sym_DOLLAR2, + ACTIONS(8815), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8481), 1, + ACTIONS(8817), 1, aux_sym__immediate_decimal_token5, - STATE(5137), 1, - sym_comment, - STATE(6248), 1, + ACTIONS(8967), 1, + anon_sym_RBRACK, + STATE(2975), 1, sym__immediate_decimal, - STATE(7184), 2, + STATE(5440), 1, + sym_comment, + STATE(3056), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187795] = 4, + [202681] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH2, - STATE(5138), 1, + STATE(5441), 1, sym_comment, - ACTIONS(1899), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(9041), 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, - [187818] = 6, + [202702] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5812), 1, - sym__newline, - ACTIONS(8517), 1, + ACTIONS(8024), 1, anon_sym_DASH2, - STATE(5139), 1, + STATE(5442), 1, sym_comment, - ACTIONS(1306), 2, + ACTIONS(8022), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5815), 8, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187845] = 4, + [202725] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2413), 1, - anon_sym_DASH2, - STATE(5140), 1, + STATE(5443), 1, sym_comment, - ACTIONS(2415), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(9043), 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, - [187868] = 12, + [202746] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, - sym__entry_separator, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5141), 1, - sym_comment, - STATE(7095), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, - anon_sym_RBRACK, + ACTIONS(1565), 1, anon_sym_RBRACE, - STATE(7066), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187907] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_RBRACK, - ACTIONS(1603), 1, + ACTIONS(1579), 1, sym__entry_separator, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8311), 1, + ACTIONS(3111), 1, anon_sym_DOLLAR, - ACTIONS(8415), 1, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8417), 1, + ACTIONS(8601), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8419), 1, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8421), 1, + ACTIONS(8605), 1, aux_sym__immediate_decimal_token5, - STATE(5142), 1, + ACTIONS(9045), 1, + anon_sym_DOT, + STATE(5444), 1, sym_comment, - STATE(6404), 1, + STATE(6582), 1, sym__immediate_decimal, - STATE(7148), 2, + STATE(6278), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187948] = 12, + [202787] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5445), 1, + sym_comment, + ACTIONS(8455), 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, + [202808] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, + ACTIONS(3501), 1, aux_sym_record_entry_token1, - ACTIONS(8283), 1, + ACTIONS(8987), 1, anon_sym_DOLLAR, - ACTIONS(8285), 1, + ACTIONS(8989), 1, anon_sym_DASH_DASH, - ACTIONS(8287), 1, + ACTIONS(8991), 1, anon_sym_DASH2, - ACTIONS(8289), 1, + ACTIONS(8993), 1, anon_sym_LBRACE, - STATE(1782), 1, + STATE(1850), 1, sym_block, - STATE(1783), 1, + STATE(1854), 1, sym_val_closure, - STATE(5143), 1, + STATE(5446), 1, sym_comment, - STATE(5238), 1, + STATE(5541), 1, aux_sym_ctrl_do_repeat1, - STATE(799), 2, + STATE(785), 2, sym__blosure, sym_val_variable, - STATE(6172), 2, + STATE(6545), 2, sym_short_flag, sym_long_flag, - [187987] = 6, + [202847] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7957), 1, - sym__newline, - ACTIONS(8519), 1, - anon_sym_else, - STATE(5144), 1, + STATE(5447), 1, sym_comment, - STATE(5145), 1, - aux_sym_shebang_repeat1, - ACTIONS(7960), 9, + ACTIONS(7223), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401743,18 +419918,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, - [188014] = 6, + anon_sym_RPAREN, + [202868] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8031), 1, + ACTIONS(8129), 1, + anon_sym_DASH2, + STATE(5448), 1, + sym_comment, + ACTIONS(8127), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8521), 1, - anon_sym_else, - STATE(5145), 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, + [202891] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5449), 1, sym_comment, - STATE(5150), 1, - aux_sym_shebang_repeat1, - ACTIONS(8034), 9, + ACTIONS(8457), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401764,18 +419956,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, - [188041] = 6, + [202912] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8038), 1, - sym__newline, - ACTIONS(8523), 1, - anon_sym_else, - STATE(5146), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + STATE(5450), 1, sym_comment, - STATE(5151), 1, - aux_sym_shebang_repeat1, - ACTIONS(8041), 9, + STATE(7636), 1, + sym__immediate_decimal, + ACTIONS(1657), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8857), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2133), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [202949] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5451), 1, + sym_comment, + ACTIONS(8655), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401785,18 +420000,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, - [188068] = 6, + [202970] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__newline, - ACTIONS(8525), 1, + STATE(5452), 1, + sym_comment, + ACTIONS(7950), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7952), 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, + [202993] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9047), 1, anon_sym_else, - STATE(5147), 1, + STATE(5453), 1, sym_comment, - STATE(5152), 1, - aux_sym_shebang_repeat1, - ACTIONS(8048), 9, + ACTIONS(8683), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401806,13 +420038,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, - [188095] = 3, + [203016] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5148), 1, + ACTIONS(9051), 1, + anon_sym_DASH2, + STATE(5454), 1, sym_comment, - ACTIONS(8089), 12, - ts_builtin_sym_end, + ACTIONS(9049), 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, + [203039] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5455), 1, + sym_comment, + ACTIONS(9053), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401824,13 +420074,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, - [188116] = 3, + anon_sym_RPAREN, + [203060] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5149), 1, + STATE(5456), 1, sym_comment, - ACTIONS(8097), 12, - ts_builtin_sym_end, + ACTIONS(9055), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401842,18 +420092,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, - [188137] = 6, + anon_sym_RPAREN, + [203081] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8527), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5150), 1, + STATE(5457), 1, sym_comment, - ACTIONS(1314), 9, + ACTIONS(9057), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401863,18 +420110,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, - [188164] = 6, + anon_sym_RPAREN, + [203102] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8007), 1, - sym__newline, - ACTIONS(8530), 1, - anon_sym_else, - STATE(5151), 1, + STATE(5458), 1, sym_comment, - STATE(5155), 1, - aux_sym_shebang_repeat1, - ACTIONS(8010), 9, + ACTIONS(9059), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401884,18 +420128,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, - [188191] = 6, + anon_sym_RPAREN, + [203123] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7930), 1, - sym__newline, - ACTIONS(8532), 1, - anon_sym_else, - STATE(5152), 1, + STATE(5459), 1, sym_comment, - STATE(5156), 1, - aux_sym_shebang_repeat1, - ACTIONS(7933), 9, + ACTIONS(9061), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401905,18 +420146,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, - [188218] = 6, + anon_sym_RPAREN, + [203144] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7853), 1, - sym__newline, - ACTIONS(8534), 1, - anon_sym_else, - STATE(5153), 1, + STATE(5460), 1, sym_comment, - STATE(5157), 1, - aux_sym_shebang_repeat1, - ACTIONS(7856), 9, + ACTIONS(9063), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401926,46 +420164,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, - [188245] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5429), 1, - anon_sym_LPAREN2, - ACTIONS(5433), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5435), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8367), 1, - anon_sym_DOLLAR2, - ACTIONS(8377), 1, - anon_sym_DOLLAR, - ACTIONS(8379), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8381), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8536), 1, - anon_sym_RBRACK, - STATE(2813), 1, - sym__immediate_decimal, - STATE(5154), 1, - sym_comment, - STATE(2910), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188286] = 6, + anon_sym_RPAREN, + [203165] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8538), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5155), 1, + STATE(5461), 1, sym_comment, - ACTIONS(1314), 9, + ACTIONS(9065), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401975,18 +420182,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, - [188313] = 6, + anon_sym_RPAREN, + [203186] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8541), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5156), 1, + STATE(5462), 1, sym_comment, - ACTIONS(1314), 9, + ACTIONS(9067), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -401996,18 +420200,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, - [188340] = 6, + anon_sym_RPAREN, + [203207] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8024), 1, - sym__newline, - ACTIONS(8544), 1, - anon_sym_else, - STATE(5157), 1, + STATE(5463), 1, sym_comment, - STATE(5158), 1, - aux_sym_shebang_repeat1, - ACTIONS(8027), 9, + ACTIONS(9069), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -402017,18 +420218,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, - [188367] = 6, + anon_sym_RPAREN, + [203228] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5172), 1, - sym__newline, - ACTIONS(8546), 1, - anon_sym_else, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5158), 1, + STATE(5464), 1, sym_comment, - ACTIONS(1314), 9, + ACTIONS(9071), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -402038,184 +420236,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, - [188394] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3612), 1, - sym__immediate_decimal, - STATE(5159), 1, - sym_comment, - ACTIONS(1603), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3440), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188431] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3437), 1, - sym__immediate_decimal, - STATE(5160), 1, - sym_comment, - ACTIONS(1673), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3458), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188468] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1733), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3432), 1, - sym__immediate_decimal, - STATE(5161), 1, - sym_comment, - ACTIONS(1735), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3455), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188505] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1737), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3435), 1, - sym__immediate_decimal, - STATE(5162), 1, - sym_comment, - ACTIONS(1739), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3434), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188542] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1741), 1, - anon_sym_DASH2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3438), 1, - sym__immediate_decimal, - STATE(5163), 1, - sym_comment, - ACTIONS(1743), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3459), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188579] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_DOT, - ACTIONS(8551), 1, - aux_sym__immediate_decimal_token2, - STATE(5164), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 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, - [188606] = 6, + anon_sym_RPAREN, + [203249] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8553), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8555), 1, - aux_sym__immediate_decimal_token2, - STATE(5165), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(8851), 1, + sym__newline, + ACTIONS(9073), 1, + sym_identifier, + ACTIONS(9075), 1, + anon_sym_GT2, + STATE(5465), 1, sym_comment, - ACTIONS(1637), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 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, - [188633] = 3, + STATE(5531), 1, + aux_sym_shebang_repeat1, + STATE(5802), 1, + aux_sym_collection_type_repeat1, + STATE(7261), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [203288] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5166), 1, + STATE(5466), 1, sym_comment, - ACTIONS(8123), 12, + ACTIONS(8443), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -402228,113 +420282,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, - [188654] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3437), 1, - sym__immediate_decimal, - STATE(5167), 1, - sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3458), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [188689] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3432), 1, - sym__immediate_decimal, - STATE(5168), 1, - sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3455), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1735), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [188724] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3435), 1, - sym__immediate_decimal, - STATE(5169), 1, - sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3434), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [188759] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3438), 1, - sym__immediate_decimal, - STATE(5170), 1, - sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3459), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1743), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [188794] = 3, + [203309] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5171), 1, + STATE(5467), 1, sym_comment, - ACTIONS(8125), 12, - ts_builtin_sym_end, + ACTIONS(9077), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402346,14 +420299,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, - [188815] = 4, + anon_sym_RPAREN, + [203330] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8557), 1, - anon_sym_else, - STATE(5172), 1, + STATE(5468), 1, sym_comment, - ACTIONS(8093), 11, + ACTIONS(9079), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402365,14 +420317,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188838] = 4, + anon_sym_RPAREN, + [203351] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(8851), 1, + sym__newline, + ACTIONS(9081), 1, + sym_identifier, + ACTIONS(9083), 1, + anon_sym_GT2, + STATE(5469), 1, + sym_comment, + STATE(5514), 1, + aux_sym_shebang_repeat1, + STATE(5799), 1, + aux_sym_collection_type_repeat1, + STATE(6906), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [203390] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9085), 1, + anon_sym_DOT, + ACTIONS(9087), 1, + aux_sym__immediate_decimal_token2, + STATE(5470), 1, + sym_comment, + ACTIONS(1669), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1671), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [203417] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8561), 1, + ACTIONS(9091), 1, anon_sym_DASH2, - STATE(5173), 1, + STATE(5471), 1, sym_comment, - ACTIONS(8559), 11, + ACTIONS(9089), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -402384,14 +420385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188861] = 4, + [203440] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(9095), 1, anon_sym_DASH2, - STATE(5174), 1, + STATE(5472), 1, sym_comment, - ACTIONS(7765), 11, + ACTIONS(9093), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -402403,12 +420404,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188884] = 3, + [203463] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5175), 1, + ACTIONS(9099), 1, + anon_sym_DASH2, + STATE(5473), 1, + sym_comment, + ACTIONS(9097), 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, + [203486] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5474), 1, sym_comment, - ACTIONS(6955), 12, + ACTIONS(9101), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402421,64 +420441,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188905] = 11, + [203507] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6422), 1, - anon_sym_DOT, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(5176), 1, + STATE(5475), 1, sym_comment, - STATE(6059), 1, - sym__immediate_decimal, - ACTIONS(1603), 2, + ACTIONS(9103), 12, sym__newline, - anon_sym_LBRACE, - ACTIONS(8323), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6062), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188942] = 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, + [203528] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6225), 1, - anon_sym_DOT, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(5177), 1, + STATE(5476), 1, sym_comment, - STATE(6061), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, + ACTIONS(5257), 12, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACE, - ACTIONS(8323), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6060), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188979] = 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [203549] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5178), 1, + STATE(5477), 1, sym_comment, - ACTIONS(8563), 12, + ACTIONS(5261), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402490,686 +420495,639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [189000] = 6, + [203570] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8567), 1, - aux_sym__immediate_decimal_token2, - STATE(5179), 1, + STATE(5478), 1, sym_comment, - ACTIONS(1639), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1637), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [189026] = 8, + ACTIONS(7329), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7335), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7331), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7333), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [203597] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(2407), 1, anon_sym_DASH2, - ACTIONS(8569), 1, - anon_sym_DOT, - STATE(3505), 1, - sym_cell_path, - STATE(5180), 1, + STATE(5479), 1, sym_comment, - STATE(5330), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - ACTIONS(1891), 6, + ACTIONS(2409), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189056] = 8, + [203620] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9105), 1, + anon_sym_else, + STATE(5480), 1, + sym_comment, + ACTIONS(8683), 10, + sym__newline, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [203642] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(969), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3518), 1, + STATE(4230), 1, sym_cell_path, - STATE(5181), 1, + STATE(5481), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1903), 6, + ACTIONS(971), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189086] = 8, + [203672] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9109), 1, anon_sym_DOT, - STATE(3532), 1, - sym_cell_path, - STATE(5182), 1, + ACTIONS(9111), 1, + aux_sym__immediate_decimal_token2, + STATE(5482), 1, sym_comment, - STATE(5330), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - ACTIONS(1907), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1671), 3, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189116] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [203698] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3536), 1, + STATE(3745), 1, sym_cell_path, - STATE(5183), 1, + STATE(5483), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1911), 6, + ACTIONS(1947), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189146] = 8, + [203728] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(1949), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3539), 1, + STATE(3712), 1, sym_cell_path, - STATE(5184), 1, + STATE(5484), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1919), 6, + ACTIONS(1951), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189176] = 8, + [203758] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9113), 1, anon_sym_DOT, - STATE(3540), 1, - sym_cell_path, - STATE(5185), 1, + ACTIONS(9115), 1, + aux_sym__immediate_decimal_token2, + STATE(5485), 1, sym_comment, - STATE(5330), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - ACTIONS(1923), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1669), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 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, + [203784] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9117), 1, + aux_sym__immediate_decimal_token2, + STATE(5486), 1, + sym_comment, + ACTIONS(1713), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189206] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1711), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [203808] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(975), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9119), 1, anon_sym_DOT, - STATE(3546), 1, - sym_cell_path, - STATE(5186), 1, + STATE(5806), 1, + sym_path, + STATE(5487), 2, sym_comment, - STATE(5330), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - ACTIONS(1927), 6, + ACTIONS(977), 7, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189236] = 8, + anon_sym_LBRACE, + [203834] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(2033), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3547), 1, + STATE(3741), 1, sym_cell_path, - STATE(5187), 1, + STATE(5488), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1931), 6, + ACTIONS(2035), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189266] = 8, + [203864] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2049), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3548), 1, + STATE(3703), 1, sym_cell_path, - STATE(5188), 1, + STATE(5489), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1935), 6, + ACTIONS(2051), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189296] = 8, + [203894] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(2053), 1, anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3190), 1, + STATE(3726), 1, sym_cell_path, - STATE(5189), 1, + STATE(5490), 1, sym_comment, - STATE(5218), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5495), 1, + STATE(5971), 1, sym_path, - ACTIONS(975), 6, - anon_sym_EQ, + ACTIONS(2055), 6, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [189326] = 8, + anon_sym_RBRACE, + anon_sym_as, + [203924] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1941), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3521), 1, + STATE(3740), 1, sym_cell_path, - STATE(5190), 1, + STATE(5491), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1939), 6, + ACTIONS(1943), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189356] = 8, + [203954] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5492), 1, + sym_comment, + ACTIONS(2625), 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, + [203978] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3190), 1, + STATE(3687), 1, sym_cell_path, - STATE(5191), 1, + STATE(5493), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(975), 6, + ACTIONS(1873), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189386] = 8, + [204008] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(1875), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3696), 1, sym_cell_path, - STATE(5192), 1, + STATE(5494), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1895), 6, + ACTIONS(1877), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189416] = 8, + [204038] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3519), 1, + STATE(3714), 1, sym_cell_path, - STATE(5193), 1, + STATE(5495), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1899), 6, + ACTIONS(1881), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189446] = 8, + [204068] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(1883), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3542), 1, + STATE(3716), 1, sym_cell_path, - STATE(5194), 1, + STATE(5496), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1943), 6, + ACTIONS(1885), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189476] = 8, + [204098] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1887), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3500), 1, + STATE(3730), 1, sym_cell_path, - STATE(5195), 1, + STATE(5497), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1947), 6, + ACTIONS(1889), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189506] = 9, + [204128] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3551), 1, + ACTIONS(3523), 1, aux_sym_expr_unary_token1, - ACTIONS(5860), 1, + ACTIONS(6029), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(6722), 1, anon_sym_DOLLAR, - ACTIONS(8573), 1, + ACTIONS(9122), 1, anon_sym_DASH2, - STATE(2484), 1, + STATE(2649), 1, sym__expr_unary_minus, - STATE(5196), 1, + STATE(5498), 1, sym_comment, - ACTIONS(3503), 2, + ACTIONS(3515), 2, anon_sym_true, anon_sym_false, - STATE(2510), 4, + STATE(2667), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [189538] = 8, + [204160] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1891), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3501), 1, + STATE(3686), 1, sym_cell_path, - STATE(5197), 1, + STATE(5499), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1951), 6, + ACTIONS(1893), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189568] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8285), 1, - anon_sym_DASH_DASH, - ACTIONS(8287), 1, - anon_sym_DASH2, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_LBRACE, - STATE(1916), 1, - sym_val_closure, - STATE(1959), 1, - sym_block, - STATE(5198), 1, - sym_comment, - STATE(5672), 1, - aux_sym_ctrl_do_repeat1, - STATE(818), 2, - sym__blosure, - sym_val_variable, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [189604] = 8, + [204190] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1895), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3503), 1, + STATE(3691), 1, sym_cell_path, - STATE(5199), 1, + STATE(5500), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1955), 6, + ACTIONS(1897), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189634] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8584), 1, - anon_sym_DASH2, - ACTIONS(8581), 2, - sym__newline, - anon_sym_COMMA, - STATE(5200), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8579), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [189658] = 8, + [204220] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(1903), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3508), 1, + STATE(3700), 1, sym_cell_path, - STATE(5201), 1, + STATE(5501), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(2066), 6, + ACTIONS(1905), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189688] = 8, + [204250] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1909), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3509), 1, + STATE(3725), 1, sym_cell_path, - STATE(5202), 1, + STATE(5502), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1959), 6, + ACTIONS(1911), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189718] = 8, + [204280] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3510), 1, + STATE(3713), 1, sym_cell_path, - STATE(5203), 1, + STATE(5503), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1963), 6, + ACTIONS(1919), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189748] = 8, + [204310] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1925), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3511), 1, + STATE(3688), 1, sym_cell_path, - STATE(5204), 1, + STATE(5504), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1967), 6, + ACTIONS(1927), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [189778] = 8, + [204340] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(8569), 1, - anon_sym_DOT, - STATE(3513), 1, - sym_cell_path, - STATE(5205), 1, + ACTIONS(9124), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9126), 1, + aux_sym__immediate_decimal_token2, + STATE(5505), 1, sym_comment, - STATE(5330), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - ACTIONS(1971), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1663), 3, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189808] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1661), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [204366] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(1657), 1, + anon_sym_LBRACE, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6430), 1, + ACTIONS(6678), 1, anon_sym_DOLLAR, - ACTIONS(8325), 1, + ACTIONS(9130), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, + ACTIONS(9132), 1, aux_sym__immediate_decimal_token5, - STATE(3627), 1, - sym__immediate_decimal, - STATE(5206), 1, + STATE(5506), 1, sym_comment, - ACTIONS(1677), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8586), 2, + STATE(8097), 1, + sym__immediate_decimal, + ACTIONS(9128), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3444), 2, + STATE(2133), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189842] = 9, + [204402] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3455), 1, - aux_sym_expr_unary_token1, - ACTIONS(8588), 1, - anon_sym_LPAREN, - ACTIONS(8590), 1, - anon_sym_DOLLAR, - ACTIONS(8592), 1, + ACTIONS(9136), 1, anon_sym_DASH2, - STATE(3905), 1, - sym__expr_unary_minus, - STATE(5207), 1, - sym_comment, - ACTIONS(5144), 2, - anon_sym_true, - anon_sym_false, - STATE(3919), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [189874] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1589), 1, - anon_sym_RBRACE, - ACTIONS(1603), 1, - sym__entry_separator, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token3, - STATE(5208), 1, + STATE(5507), 1, sym_comment, - STATE(7664), 1, - sym__immediate_decimal, - STATE(7148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189912] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7480), 1, - anon_sym_DASH2, - STATE(5200), 1, + STATE(5530), 1, aux_sym_parameter_repeat2, - STATE(5209), 1, - sym_comment, - ACTIONS(2581), 2, + ACTIONS(2571), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7478), 7, + ACTIONS(9134), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -403177,177 +421135,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189938] = 11, + [204428] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6422), 1, - anon_sym_DOT, - ACTIONS(8319), 1, - anon_sym_DOLLAR, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(5210), 1, + ACTIONS(8973), 1, + aux_sym__immediate_decimal_token2, + STATE(5508), 1, sym_comment, - STATE(6059), 1, - sym__immediate_decimal, - ACTIONS(8323), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6062), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189974] = 9, - ACTIONS(83), 1, - aux_sym_expr_unary_token1, + ACTIONS(1671), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [204452] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(8573), 1, - anon_sym_DASH2, - ACTIONS(8594), 1, - anon_sym_DOLLAR, - STATE(2484), 1, - sym__expr_unary_minus, - STATE(5211), 1, + ACTIONS(9138), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9140), 1, + aux_sym__immediate_decimal_token2, + STATE(5509), 1, sym_comment, - ACTIONS(3503), 2, - anon_sym_true, - anon_sym_false, - STATE(2510), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [190006] = 10, - ACTIONS(251), 1, + ACTIONS(1661), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 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, + [204478] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(1565), 1, + anon_sym_RBRACE, + ACTIONS(1579), 1, + sym__entry_separator, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8325), 1, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, + ACTIONS(8605), 1, aux_sym__immediate_decimal_token5, - STATE(3612), 1, - sym__immediate_decimal, - STATE(5212), 1, - sym_comment, - ACTIONS(1603), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8586), 2, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token3, - STATE(3440), 2, + STATE(5510), 1, + sym_comment, + STATE(8127), 1, + sym__immediate_decimal, + STATE(7372), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190040] = 5, - ACTIONS(3), 1, + [204516] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8596), 1, - aux_sym__immediate_decimal_token2, - STATE(5213), 1, + ACTIONS(1933), 1, + anon_sym_DASH2, + ACTIONS(9107), 1, + anon_sym_DOT, + STATE(3710), 1, + sym_cell_path, + STATE(5511), 1, sym_comment, - ACTIONS(1745), 4, - anon_sym_RBRACK, + STATE(5568), 1, + aux_sym_cell_path_repeat1, + STATE(5971), 1, + sym_path, + ACTIONS(1935), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1747), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [190064] = 6, + anon_sym_as, + [204546] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8598), 1, - anon_sym_DOT, - ACTIONS(8600), 1, + ACTIONS(8899), 1, aux_sym__immediate_decimal_token2, - STATE(5214), 1, + STATE(5512), 1, sym_comment, - ACTIONS(1647), 3, + ACTIONS(1669), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 7, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [190090] = 8, + [204570] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1937), 1, anon_sym_DASH2, - ACTIONS(8569), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(3541), 1, + STATE(3717), 1, sym_cell_path, - STATE(5215), 1, + STATE(5513), 1, sym_comment, - STATE(5330), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5971), 1, sym_path, - ACTIONS(1887), 6, + ACTIONS(1939), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [190120] = 11, + [204600] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(5216), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(8851), 1, + sym__newline, + ACTIONS(9142), 1, + sym_identifier, + STATE(5514), 1, sym_comment, - STATE(7705), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3440), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190156] = 6, + STATE(5800), 1, + aux_sym_collection_type_repeat1, + STATE(6084), 1, + aux_sym_shebang_repeat1, + STATE(6766), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [204636] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7476), 1, + ACTIONS(9146), 1, anon_sym_DASH2, - STATE(5200), 1, - aux_sym_parameter_repeat2, - STATE(5217), 1, + STATE(5515), 1, sym_comment, - ACTIONS(2581), 2, + STATE(5530), 1, + aux_sym_parameter_repeat2, + ACTIONS(2571), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7474), 7, + ACTIONS(9144), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -403355,40 +421308,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190182] = 7, + [204662] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(986), 1, + ACTIONS(1953), 1, anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(5218), 1, + STATE(3736), 1, + sym_cell_path, + STATE(5516), 1, sym_comment, - STATE(5243), 1, + STATE(5568), 1, aux_sym_cell_path_repeat1, - STATE(5495), 1, + STATE(5971), 1, sym_path, - ACTIONS(988), 7, - anon_sym_EQ, - sym_identifier, + ACTIONS(1955), 6, sym__newline, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [204692] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8989), 1, + anon_sym_DASH_DASH, + ACTIONS(8991), 1, + anon_sym_DASH2, + ACTIONS(9148), 1, anon_sym_DOLLAR, + ACTIONS(9150), 1, + anon_sym_LBRACE, + STATE(1976), 1, + sym_val_closure, + STATE(2020), 1, + sym_block, + STATE(5517), 1, + sym_comment, + STATE(5518), 1, + aux_sym_ctrl_do_repeat1, + STATE(804), 2, + sym__blosure, + sym_val_variable, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [204728] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8989), 1, anon_sym_DASH_DASH, + ACTIONS(8991), 1, + anon_sym_DASH2, + ACTIONS(9148), 1, + anon_sym_DOLLAR, + ACTIONS(9150), 1, anon_sym_LBRACE, - [190210] = 6, + STATE(1976), 1, + sym_val_closure, + STATE(2020), 1, + sym_block, + STATE(5518), 1, + sym_comment, + STATE(6030), 1, + aux_sym_ctrl_do_repeat1, + STATE(800), 2, + sym__blosure, + sym_val_variable, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [204764] = 9, + ACTIONS(83), 1, + aux_sym_expr_unary_token1, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8610), 1, + ACTIONS(4877), 1, + anon_sym_DOLLAR, + ACTIONS(6029), 1, + anon_sym_LPAREN, + ACTIONS(9122), 1, anon_sym_DASH2, - STATE(5200), 1, - aux_sym_parameter_repeat2, - STATE(5219), 1, + STATE(2649), 1, + sym__expr_unary_minus, + STATE(5519), 1, + sym_comment, + ACTIONS(3515), 2, + anon_sym_true, + anon_sym_false, + STATE(2667), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [204796] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9154), 1, + anon_sym_DASH2, + STATE(5520), 1, sym_comment, - ACTIONS(2581), 2, + STATE(5530), 1, + aux_sym_parameter_repeat2, + ACTIONS(2571), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8608), 7, + ACTIONS(9152), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -403396,480 +421423,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190236] = 9, + [204822] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3525), 1, + ACTIONS(3377), 1, aux_sym_expr_unary_token1, - ACTIONS(6331), 1, + ACTIONS(6597), 1, anon_sym_DOLLAR, - ACTIONS(6665), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - ACTIONS(8612), 1, + ACTIONS(9158), 1, anon_sym_DASH2, - STATE(2120), 1, + STATE(4168), 1, sym__expr_unary_minus, - STATE(5220), 1, + STATE(5521), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(5206), 2, anon_sym_true, anon_sym_false, - STATE(2122), 4, + STATE(4126), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [190268] = 10, + [204854] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(3432), 1, - sym__immediate_decimal, - STATE(5221), 1, + ACTIONS(969), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(4230), 1, + sym_cell_path, + STATE(5522), 1, sym_comment, - ACTIONS(1735), 2, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5806), 1, + sym_path, + ACTIONS(971), 6, + anon_sym_EQ, sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(8586), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3455), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190302] = 5, + [204884] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8551), 1, - aux_sym__immediate_decimal_token2, - STATE(5222), 1, - sym_comment, - ACTIONS(1645), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 7, + ACTIONS(8987), 1, anon_sym_DOLLAR, + ACTIONS(8989), 1, anon_sym_DASH_DASH, + ACTIONS(8991), 1, + anon_sym_DASH2, + ACTIONS(8993), 1, anon_sym_LBRACE, + STATE(1850), 1, + sym_block, + STATE(1854), 1, + sym_val_closure, + STATE(5523), 1, + sym_comment, + STATE(5541), 1, + aux_sym_ctrl_do_repeat1, + STATE(785), 2, + sym__blosure, + sym_val_variable, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [204920] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9162), 1, + anon_sym_DOT, + ACTIONS(9164), 1, + aux_sym__immediate_decimal_token2, + STATE(5524), 1, + sym_comment, + ACTIONS(1669), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1671), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [190326] = 10, + sym__entry_separator, + [204946] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(3435), 1, - sym__immediate_decimal, - STATE(5223), 1, + ACTIONS(7769), 1, + anon_sym_DASH2, + STATE(5525), 1, sym_comment, - ACTIONS(1739), 2, + STATE(5530), 1, + aux_sym_parameter_repeat2, + ACTIONS(2571), 2, sym__newline, - anon_sym_LBRACE, - ACTIONS(8586), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3434), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190360] = 10, + anon_sym_COMMA, + ACTIONS(7767), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [204972] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(3438), 1, - sym__immediate_decimal, - STATE(5224), 1, + ACTIONS(982), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5487), 1, + aux_sym_cell_path_repeat1, + STATE(5526), 1, sym_comment, - ACTIONS(1743), 2, + STATE(5806), 1, + sym_path, + ACTIONS(984), 7, + anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(8586), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3459), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190394] = 11, + [205000] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1603), 1, - anon_sym_EQ_GT, - ACTIONS(3613), 1, + ACTIONS(3549), 1, + aux_sym_expr_unary_token1, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(7347), 1, anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6422), 1, - anon_sym_DOT, - STATE(5225), 1, + ACTIONS(9166), 1, + anon_sym_DASH2, + STATE(2213), 1, + sym__expr_unary_minus, + STATE(5527), 1, sym_comment, - STATE(6809), 1, - sym__immediate_decimal, - ACTIONS(6227), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6017), 2, - sym__expr_parenthesized_immediate, + ACTIONS(3497), 2, + anon_sym_true, + anon_sym_false, + STATE(2272), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [190430] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8614), 1, - anon_sym_else, - STATE(5226), 1, - sym_comment, - ACTIONS(8093), 10, - sym__newline, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190452] = 12, + [205032] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, + ACTIONS(1645), 1, anon_sym_RBRACE, - ACTIONS(1677), 1, + ACTIONS(1657), 1, sym__entry_separator, - ACTIONS(8099), 1, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(8107), 1, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, + ACTIONS(8605), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8311), 1, + ACTIONS(8831), 1, anon_sym_DOLLAR, - ACTIONS(8313), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8315), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token3, - STATE(5227), 1, + STATE(5528), 1, sym_comment, - STATE(7508), 1, + STATE(8020), 1, sym__immediate_decimal, - STATE(7184), 2, + STATE(7890), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190490] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8283), 1, - anon_sym_DOLLAR, - ACTIONS(8285), 1, - anon_sym_DASH_DASH, - ACTIONS(8287), 1, - anon_sym_DASH2, - ACTIONS(8289), 1, - anon_sym_LBRACE, - STATE(1782), 1, - sym_block, - STATE(1783), 1, - sym_val_closure, - STATE(5228), 1, - sym_comment, - STATE(5238), 1, - aux_sym_ctrl_do_repeat1, - STATE(799), 2, - sym__blosure, - sym_val_variable, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [190526] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token2, - STATE(5229), 1, - sym_comment, - ACTIONS(1647), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190550] = 5, + [205070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8413), 1, + ACTIONS(9168), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9170), 1, aux_sym__immediate_decimal_token2, - STATE(5230), 1, + STATE(5529), 1, sym_comment, - ACTIONS(1645), 4, - anon_sym_RBRACK, + ACTIONS(1661), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1647), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1663), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [190574] = 5, + [205096] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8616), 1, - aux_sym__immediate_decimal_token2, - STATE(5231), 1, - sym_comment, - ACTIONS(1745), 3, + ACTIONS(9177), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1747), 7, + ACTIONS(9174), 2, + sym__newline, + anon_sym_COMMA, + STATE(5530), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(9172), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190598] = 11, + [205120] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1677), 1, - anon_sym_LBRACE, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(5232), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(8851), 1, + sym__newline, + ACTIONS(9179), 1, + sym_identifier, + STATE(5531), 1, sym_comment, - STATE(7583), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3444), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190634] = 9, + STATE(5803), 1, + aux_sym_collection_type_repeat1, + STATE(6084), 1, + aux_sym_shebang_repeat1, + STATE(6882), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [205156] = 9, ACTIONS(205), 1, aux_sym_expr_unary_token1, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6665), 1, - anon_sym_LPAREN, - ACTIONS(8111), 1, + ACTIONS(4776), 1, anon_sym_DOLLAR, - ACTIONS(8612), 1, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(9166), 1, anon_sym_DASH2, - STATE(2120), 1, + STATE(2213), 1, sym__expr_unary_minus, - STATE(5233), 1, + STATE(5532), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(3497), 2, anon_sym_true, anon_sym_false, - STATE(2122), 4, + STATE(2272), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [190666] = 5, + [205188] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(8851), 1, sym__newline, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5234), 1, + ACTIONS(9181), 1, + sym_identifier, + STATE(5533), 1, sym_comment, - ACTIONS(2571), 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, - [190690] = 6, + STATE(5670), 1, + aux_sym_collection_type_repeat1, + STATE(6084), 1, + aux_sym_shebang_repeat1, + STATE(7061), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [205224] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8618), 1, - anon_sym_DOT, - ACTIONS(8620), 1, - aux_sym__immediate_decimal_token2, - STATE(5235), 1, + ACTIONS(7801), 1, + anon_sym_DASH2, + STATE(5530), 1, + aux_sym_parameter_repeat2, + STATE(5534), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 7, + ACTIONS(2571), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7799), 7, + sym_identifier, 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, - [190716] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8622), 1, - aux_sym__immediate_decimal_token2, - STATE(5236), 1, - sym_comment, - ACTIONS(1747), 4, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1745), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190740] = 11, + [205250] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8285), 1, - anon_sym_DASH_DASH, - ACTIONS(8287), 1, - anon_sym_DASH2, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(1579), 1, anon_sym_LBRACE, - STATE(1916), 1, - sym_val_closure, - STATE(1959), 1, - sym_block, - STATE(5198), 1, - aux_sym_ctrl_do_repeat1, - STATE(5237), 1, - sym_comment, - STATE(813), 2, - sym__blosure, - sym_val_variable, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [190776] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8283), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(6678), 1, anon_sym_DOLLAR, - ACTIONS(8285), 1, - anon_sym_DASH_DASH, - ACTIONS(8287), 1, - anon_sym_DASH2, - ACTIONS(8289), 1, - anon_sym_LBRACE, - STATE(1782), 1, - sym_block, - STATE(1783), 1, - sym_val_closure, - STATE(5238), 1, + ACTIONS(9130), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9132), 1, + aux_sym__immediate_decimal_token5, + STATE(5535), 1, sym_comment, - STATE(5672), 1, - aux_sym_ctrl_do_repeat1, - STATE(784), 2, - sym__blosure, - sym_val_variable, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [190812] = 6, - ACTIONS(251), 1, + STATE(8054), 1, + sym__immediate_decimal, + ACTIONS(9128), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2123), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205286] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8626), 1, + ACTIONS(9183), 1, aux_sym__immediate_decimal_token2, - STATE(5239), 1, + STATE(5536), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1711), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_list_token2, + ACTIONS(1713), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [205310] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9087), 1, + aux_sym__immediate_decimal_token2, + STATE(5537), 1, + sym_comment, + ACTIONS(1669), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1671), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [190838] = 6, + sym__entry_separator, + [205334] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8630), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(5200), 1, - aux_sym_parameter_repeat2, - STATE(5240), 1, + ACTIONS(9107), 1, + anon_sym_DOT, + STATE(3692), 1, + sym_cell_path, + STATE(5538), 1, sym_comment, - ACTIONS(2581), 2, + STATE(5568), 1, + aux_sym_cell_path_repeat1, + STATE(5971), 1, + sym_path, + ACTIONS(1959), 6, sym__newline, - anon_sym_COMMA, - ACTIONS(8628), 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, - [190864] = 6, + anon_sym_RBRACE, + anon_sym_as, + [205364] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7442), 1, + ACTIONS(7773), 1, anon_sym_DASH2, - STATE(5200), 1, + STATE(5530), 1, aux_sym_parameter_repeat2, - STATE(5241), 1, + STATE(5539), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(2571), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7440), 7, + ACTIONS(7771), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -403877,205 +421840,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190890] = 6, + [205390] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4706), 1, + anon_sym_DOT, + ACTIONS(8865), 1, + anon_sym_DOLLAR, + ACTIONS(8871), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token5, + STATE(5540), 1, + sym_comment, + STATE(6782), 1, + sym__immediate_decimal, + ACTIONS(8869), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6781), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205426] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8634), 1, + ACTIONS(8987), 1, + anon_sym_DOLLAR, + ACTIONS(8989), 1, + anon_sym_DASH_DASH, + ACTIONS(8991), 1, anon_sym_DASH2, - STATE(5200), 1, - aux_sym_parameter_repeat2, - STATE(5242), 1, + ACTIONS(8993), 1, + anon_sym_LBRACE, + STATE(1850), 1, + sym_block, + STATE(1854), 1, + sym_val_closure, + STATE(5541), 1, sym_comment, - ACTIONS(2581), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8632), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(6030), 1, + aux_sym_ctrl_do_repeat1, + STATE(796), 2, + sym__blosure, + sym_val_variable, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [205462] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9185), 1, + aux_sym__immediate_decimal_token2, + STATE(5542), 1, + sym_comment, + ACTIONS(1711), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190916] = 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [205486] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(979), 1, + ACTIONS(1929), 1, anon_sym_DASH2, - ACTIONS(8636), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(5495), 1, - sym_path, - STATE(5243), 2, + STATE(3689), 1, + sym_cell_path, + STATE(5543), 1, sym_comment, + STATE(5568), 1, aux_sym_cell_path_repeat1, - ACTIONS(981), 7, - anon_sym_EQ, - sym_identifier, + STATE(5971), 1, + sym_path, + ACTIONS(1931), 6, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190942] = 11, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_as, + [205516] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, - anon_sym_LBRACE, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6225), 1, - anon_sym_DOT, - ACTIONS(8319), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9187), 1, anon_sym_DOLLAR, - ACTIONS(8325), 1, + ACTIONS(9189), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9191), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, + ACTIONS(9193), 1, aux_sym__immediate_decimal_token5, - STATE(5244), 1, + STATE(5544), 1, sym_comment, - STATE(6061), 1, + STATE(7564), 1, sym__immediate_decimal, - ACTIONS(8323), 2, + STATE(2144), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205551] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(6591), 1, aux_sym__immediate_decimal_token1, + ACTIONS(9187), 1, + anon_sym_DOLLAR, + ACTIONS(9195), 1, aux_sym__immediate_decimal_token3, - STATE(6060), 2, + ACTIONS(9197), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9199), 1, + aux_sym__immediate_decimal_token5, + STATE(3926), 1, + sym__immediate_decimal, + STATE(5545), 1, + sym_comment, + STATE(2144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190978] = 10, + [205586] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(1685), 1, + anon_sym_LBRACE, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6430), 1, + ACTIONS(6678), 1, anon_sym_DOLLAR, - ACTIONS(8325), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token5, - STATE(3437), 1, + STATE(2091), 1, sym__immediate_decimal, - STATE(5245), 1, + STATE(5546), 1, sym_comment, - ACTIONS(1673), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8586), 2, + ACTIONS(9201), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3458), 2, + STATE(2080), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191012] = 6, + [205619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_DOT, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token2, - STATE(5246), 1, + STATE(5547), 1, sym_comment, - ACTIONS(1645), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1647), 6, - anon_sym_LPAREN2, + ACTIONS(988), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [191038] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8645), 1, - aux_sym__immediate_decimal_token2, - STATE(5247), 1, - sym_comment, - ACTIONS(1637), 3, + ACTIONS(986), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1639), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [191064] = 11, + anon_sym_DOT, + [205640] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4267), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR, - ACTIONS(4385), 1, + ACTIONS(4067), 1, anon_sym_LPAREN2, - ACTIONS(4387), 1, + ACTIONS(4071), 1, aux_sym__immediate_decimal_token3, - ACTIONS(4389), 1, + ACTIONS(4073), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4682), 1, + ACTIONS(4690), 1, aux_sym_unquoted_token3, - ACTIONS(8647), 1, + ACTIONS(9203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8649), 1, + ACTIONS(9205), 1, aux_sym__immediate_decimal_token5, - STATE(1711), 1, + STATE(1488), 1, sym__immediate_decimal, - STATE(5248), 1, + STATE(5548), 1, sym_comment, - STATE(1908), 2, + STATE(1594), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191099] = 5, - ACTIONS(3), 1, + [205675] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8651), 1, + ACTIONS(9207), 1, aux_sym__immediate_decimal_token2, - STATE(5249), 1, + STATE(5549), 1, sym_comment, - ACTIONS(1745), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1747), 6, - anon_sym_LPAREN2, + ACTIONS(1713), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1711), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [191122] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [205698] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5250), 1, - sym_comment, - ACTIONS(1747), 4, + ACTIONS(4231), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1745), 6, - sym_identifier, + ACTIONS(4233), 1, + anon_sym_LPAREN2, + ACTIONS(4235), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4237), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4690), 1, + aux_sym_unquoted_token3, + ACTIONS(9209), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9211), 1, + aux_sym__immediate_decimal_token5, + STATE(1755), 1, + sym__immediate_decimal, + STATE(5550), 1, + sym_comment, + STATE(1897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205733] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1687), 1, anon_sym_DASH2, + ACTIONS(4720), 1, anon_sym_DOT_DOT2, + ACTIONS(9213), 1, sym_filesize_unit, + ACTIONS(9215), 1, sym_duration_unit, + ACTIONS(9217), 1, aux_sym_unquoted_token2, - [191143] = 5, + STATE(5551), 1, + sym_comment, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205764] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(5979), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9219), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9221), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9223), 1, + aux_sym__immediate_decimal_token5, + STATE(3315), 1, + sym__immediate_decimal, + STATE(5552), 1, + sym_comment, + STATE(2019), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205799] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1312), 1, + ACTIONS(1308), 1, anon_sym_DASH2, - ACTIONS(8653), 1, + ACTIONS(9225), 1, sym__newline, - STATE(5251), 2, + STATE(5553), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1314), 7, + ACTIONS(1310), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -404083,1134 +422149,1059 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191166] = 4, + [205822] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(5061), 1, + aux_sym_unquoted_token3, + ACTIONS(6031), 1, + anon_sym_DOLLAR, + ACTIONS(7381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9228), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9230), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9232), 1, + aux_sym__immediate_decimal_token5, + STATE(4490), 1, + sym__immediate_decimal, + STATE(5554), 1, + sym_comment, + STATE(2669), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [205857] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5252), 1, + STATE(5555), 1, sym_comment, - ACTIONS(1783), 4, + ACTIONS(1669), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1781), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [191187] = 11, - ACTIONS(251), 1, + [205878] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(6430), 1, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8831), 1, anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8658), 1, - anon_sym_DASH_DASH, - ACTIONS(8660), 1, - anon_sym_DASH2, - STATE(5253), 1, + ACTIONS(8841), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8843), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8845), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8847), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9234), 1, + aux_sym__unquoted_in_record_token3, + STATE(5556), 1, sym_comment, - STATE(5389), 1, - aux_sym_ctrl_do_repeat1, - STATE(5414), 1, + STATE(7060), 1, + sym__immediate_decimal, + STATE(7336), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6358), 1, - sym__variable_name, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [191222] = 6, + [205913] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8662), 1, - anon_sym_DOT, - ACTIONS(8664), 1, + ACTIONS(9236), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9238), 1, aux_sym__immediate_decimal_token2, - STATE(5254), 1, + STATE(5557), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 6, + ACTIONS(1663), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191247] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_DASH2, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(8666), 1, - sym_filesize_unit, - ACTIONS(8668), 1, - sym_duration_unit, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - STATE(5255), 1, - sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191278] = 8, - ACTIONS(251), 1, + [205938] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6506), 1, + ACTIONS(9240), 1, anon_sym_DOT, - STATE(3190), 1, - sym_cell_path, - STATE(3465), 1, - aux_sym_cell_path_repeat1, - STATE(3585), 1, - sym_path, - STATE(5256), 1, - sym_comment, - ACTIONS(973), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(975), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191307] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8672), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8674), 1, + ACTIONS(9242), 1, aux_sym__immediate_decimal_token2, - STATE(5257), 1, + STATE(5558), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1669), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1671), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191332] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_GT2, - STATE(5258), 1, - sym_comment, - STATE(5262), 1, - aux_sym_collection_type_repeat1, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [191365] = 11, + [205963] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5375), 1, + ACTIONS(3545), 1, anon_sym_DOLLAR, - ACTIONS(5377), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5381), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5383), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8680), 1, - aux_sym__immediate_decimal_token1, - STATE(2912), 1, - sym__immediate_decimal, - STATE(5259), 1, - sym_comment, - STATE(3071), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191400] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4839), 1, + ACTIONS(4946), 1, aux_sym_unquoted_token3, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8255), 1, + ACTIONS(7341), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8682), 1, + ACTIONS(9244), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8684), 1, + ACTIONS(9246), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8686), 1, + ACTIONS(9248), 1, aux_sym__immediate_decimal_token5, - STATE(5260), 1, - sym_comment, - STATE(5917), 1, + STATE(4323), 1, sym__immediate_decimal, - STATE(6006), 2, + STATE(5559), 1, + sym_comment, + STATE(4391), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191435] = 11, + [205998] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_DOLLAR, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(6070), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8688), 1, + ACTIONS(9187), 1, + anon_sym_DOLLAR, + ACTIONS(9250), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8690), 1, + ACTIONS(9252), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8692), 1, + ACTIONS(9254), 1, aux_sym__immediate_decimal_token5, - STATE(5261), 1, - sym_comment, - STATE(7163), 1, + STATE(3351), 1, sym__immediate_decimal, - STATE(3453), 2, + STATE(5560), 1, + sym_comment, + STATE(2144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191470] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8694), 1, - sym_identifier, - ACTIONS(8697), 1, - anon_sym_GT2, - ACTIONS(8699), 1, - anon_sym_DQUOTE, - ACTIONS(8705), 1, - sym_raw_string_begin, - STATE(5509), 1, - sym_val_string, - ACTIONS(8702), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5262), 2, - sym_comment, - aux_sym_collection_type_repeat1, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [191501] = 11, + [206033] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3647), 1, - anon_sym_DOLLAR, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7192), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7194), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7311), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8708), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, - aux_sym__immediate_decimal_token5, - STATE(4247), 1, - sym__immediate_decimal, - STATE(5263), 1, + STATE(5561), 1, sym_comment, - STATE(4522), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191536] = 11, + ACTIONS(1711), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1713), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [206054] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1981), 1, + ACTIONS(3369), 1, anon_sym_DOLLAR, - ACTIONS(7067), 1, + ACTIONS(6475), 1, anon_sym_LPAREN2, - ACTIONS(7071), 1, + ACTIONS(6479), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7073), 1, + ACTIONS(6720), 1, + aux_sym_unquoted_token3, + ACTIONS(9256), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7075), 1, + ACTIONS(9258), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7077), 1, + ACTIONS(9260), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7184), 1, - aux_sym_unquoted_token3, - STATE(4143), 1, + STATE(3711), 1, sym__immediate_decimal, - STATE(5264), 1, + STATE(5562), 1, sym_comment, - STATE(4297), 2, + STATE(3839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191571] = 11, + [206089] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9262), 1, + aux_sym__immediate_decimal_token2, + STATE(5563), 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, + [206112] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4351), 1, + ACTIONS(4313), 1, anon_sym_DOLLAR, - ACTIONS(7067), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(7103), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(7349), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7105), 1, + ACTIONS(9264), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7107), 1, + ACTIONS(9266), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7109), 1, + ACTIONS(9268), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7184), 1, - aux_sym_unquoted_token3, - STATE(4507), 1, + STATE(4414), 1, sym__immediate_decimal, - STATE(5265), 1, + STATE(5564), 1, sym_comment, - STATE(4665), 2, + STATE(2144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191606] = 11, + [206147] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7188), 1, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(7222), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7224), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(6658), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7311), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8712), 1, - anon_sym_DOLLAR, - ACTIONS(8714), 1, + ACTIONS(9270), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9272), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8716), 1, + ACTIONS(9274), 1, aux_sym__immediate_decimal_token5, - STATE(4752), 1, + STATE(3790), 1, sym__immediate_decimal, - STATE(5266), 1, + STATE(5565), 1, sym_comment, - STATE(5025), 2, + STATE(3947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191641] = 8, + [206182] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(1941), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5267), 1, + STATE(5566), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5972), 1, + STATE(6355), 1, sym_cell_path, - ACTIONS(1895), 5, + ACTIONS(1943), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [191670] = 6, - ACTIONS(3), 1, + [206211] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8720), 1, - anon_sym_DOT, - ACTIONS(8722), 1, + ACTIONS(9111), 1, aux_sym__immediate_decimal_token2, - STATE(5268), 1, + STATE(5567), 1, sym_comment, - ACTIONS(1785), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 4, - anon_sym_LPAREN2, + ACTIONS(1671), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191695] = 8, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [206234] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(982), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9107), 1, anon_sym_DOT, - STATE(5269), 1, + STATE(5568), 1, sym_comment, - STATE(5456), 1, + STATE(5644), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(5971), 1, sym_path, - STATE(5985), 1, - sym_cell_path, - ACTIONS(1899), 5, - ts_builtin_sym_end, + ACTIONS(984), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [191724] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1591), 1, - anon_sym_DOLLAR, - ACTIONS(1593), 1, - anon_sym_LPAREN2, - ACTIONS(1597), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1599), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1601), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(1709), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8724), 1, - aux_sym__immediate_decimal_token1, - STATE(390), 1, - sym__immediate_decimal, - STATE(5270), 1, - sym_comment, - STATE(466), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191759] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - anon_sym_DOLLAR, - ACTIONS(1655), 1, - anon_sym_LPAREN2, - ACTIONS(1657), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1659), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1661), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(1709), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8726), 1, - aux_sym__immediate_decimal_token1, - STATE(556), 1, - sym__immediate_decimal, - STATE(5271), 1, - sym_comment, - STATE(625), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191794] = 10, + [206261] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8728), 1, - anon_sym_GT2, - STATE(5272), 1, + ACTIONS(1925), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5569), 1, sym_comment, - STATE(5283), 1, - aux_sym_collection_type_repeat1, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [191827] = 4, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6348), 1, + sym_cell_path, + ACTIONS(1927), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206290] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5273), 1, + ACTIONS(1929), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5570), 1, sym_comment, - ACTIONS(1639), 4, - anon_sym_DOLLAR, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6351), 1, + sym_cell_path, + ACTIONS(1931), 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(1637), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [191848] = 8, + anon_sym_as, + [206319] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8732), 1, - anon_sym_DASH_DASH, - ACTIONS(8734), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - ACTIONS(8736), 1, - anon_sym_as, - STATE(5274), 1, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5571), 1, sym_comment, - STATE(5357), 1, - aux_sym_ctrl_do_repeat1, - STATE(5703), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8730), 4, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6356), 1, + sym_cell_path, + ACTIONS(1873), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191877] = 11, + anon_sym_DASH_DASH, + anon_sym_as, + [206348] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, + ACTIONS(6475), 1, anon_sym_LPAREN2, - ACTIONS(7943), 1, + ACTIONS(6599), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8738), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8740), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8742), 1, - aux_sym__immediate_decimal_token5, - STATE(5275), 1, - sym_comment, - STATE(5686), 1, - sym__immediate_decimal, - STATE(6006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191912] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_DOLLAR, - ACTIONS(4839), 1, + ACTIONS(6720), 1, aux_sym_unquoted_token3, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8744), 1, + ACTIONS(9278), 1, + anon_sym_DOLLAR, + ACTIONS(9280), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8746), 1, + ACTIONS(9282), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8748), 1, + ACTIONS(9284), 1, aux_sym__immediate_decimal_token5, - STATE(5276), 1, - sym_comment, - STATE(6695), 1, + STATE(3878), 1, sym__immediate_decimal, - STATE(3453), 2, + STATE(5572), 1, + sym_comment, + STATE(4150), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191947] = 11, + [206383] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3115), 1, - anon_sym_DOLLAR, - ACTIONS(8099), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8155), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(6672), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8157), 1, + ACTIONS(9187), 1, + anon_sym_DOLLAR, + ACTIONS(9286), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8159), 1, + ACTIONS(9288), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8161), 1, + ACTIONS(9290), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8750), 1, - aux_sym__unquoted_in_record_token3, - STATE(5277), 1, - sym_comment, - STATE(5657), 1, + STATE(4027), 1, sym__immediate_decimal, - STATE(5744), 2, + STATE(5573), 1, + sym_comment, + STATE(2144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191982] = 10, + [206418] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8752), 1, - anon_sym_GT2, - STATE(5258), 1, - aux_sym_collection_type_repeat1, - STATE(5278), 1, + ACTIONS(8821), 1, + anon_sym_DASH2, + STATE(5574), 1, sym_comment, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [192015] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8311), 1, + ACTIONS(5928), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8475), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8477), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8479), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8481), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8750), 1, - aux_sym__unquoted_in_record_token3, - STATE(5279), 1, - sym_comment, - STATE(6722), 1, - sym__immediate_decimal, - STATE(6912), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192050] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [206439] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_RBRACE, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - ACTIONS(1707), 1, - sym__entry_separator, - ACTIONS(8750), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8754), 1, - anon_sym_DOT_DOT2, - ACTIONS(8758), 1, - sym_filesize_unit, - ACTIONS(8760), 1, - sym_duration_unit, - STATE(5280), 1, + ACTIONS(1957), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5575), 1, sym_comment, - STATE(7628), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8756), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [192085] = 11, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6320), 1, + sym_cell_path, + ACTIONS(1959), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206468] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, + ACTIONS(5573), 1, anon_sym_LPAREN2, - ACTIONS(7093), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7095), 1, + ACTIONS(5577), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7097), 1, + ACTIONS(5579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8811), 1, + anon_sym_DOLLAR, + ACTIONS(8815), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7099), 1, + ACTIONS(8817), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7264), 1, - aux_sym_unquoted_token3, - STATE(4223), 1, + STATE(2975), 1, sym__immediate_decimal, - STATE(5281), 1, + STATE(5576), 1, sym_comment, - STATE(4407), 2, + STATE(3056), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192120] = 11, - ACTIONS(3), 1, + [206503] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4315), 1, - anon_sym_DOLLAR, - ACTIONS(7089), 1, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7151), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7153), 1, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7155), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7264), 1, - aux_sym_unquoted_token3, - STATE(4586), 1, + STATE(2093), 1, sym__immediate_decimal, - STATE(5282), 1, + STATE(5577), 1, sym_comment, - STATE(4974), 2, + ACTIONS(9201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2090), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192155] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8762), 1, - anon_sym_GT2, - STATE(5262), 1, - aux_sym_collection_type_repeat1, - STATE(5283), 1, - sym_comment, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [192188] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8732), 1, - anon_sym_DASH_DASH, - ACTIONS(8734), 1, - anon_sym_DASH2, - ACTIONS(8766), 1, - anon_sym_as, - STATE(5284), 1, - sym_comment, - STATE(5357), 1, - aux_sym_ctrl_do_repeat1, - STATE(5703), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8764), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192217] = 8, + [206536] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(2049), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5285), 1, + STATE(5578), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(6019), 1, + STATE(6343), 1, sym_cell_path, - ACTIONS(975), 5, + ACTIONS(2051), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192246] = 5, + [206565] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(1875), 1, anon_sym_DASH2, - ACTIONS(8768), 1, - anon_sym_QMARK2, - STATE(5286), 1, - sym_comment, - ACTIONS(992), 8, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(9276), 1, anon_sym_DOT, - [192269] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DASH2, - ACTIONS(8770), 1, - anon_sym_QMARK2, - STATE(5287), 1, + STATE(5579), 1, sym_comment, - ACTIONS(1014), 8, - anon_sym_EQ, - sym_identifier, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6247), 1, + sym_cell_path, + ACTIONS(1877), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [192292] = 8, + anon_sym_as, + [206594] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8732), 1, + ACTIONS(9294), 1, anon_sym_DASH_DASH, - ACTIONS(8734), 1, + ACTIONS(9297), 1, anon_sym_DASH2, - ACTIONS(8774), 1, - anon_sym_as, - STATE(5284), 1, - aux_sym_ctrl_do_repeat1, - STATE(5288), 1, + STATE(5580), 2, sym_comment, - STATE(5703), 2, + aux_sym_ctrl_do_repeat1, + STATE(6047), 2, sym_short_flag, sym_long_flag, - ACTIONS(8772), 4, + ACTIONS(9292), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [192321] = 11, + anon_sym_as, + [206619] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_RBRACK, - ACTIONS(1707), 1, - sym__entry_separator, - ACTIONS(5542), 1, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8776), 1, - anon_sym_DOT_DOT2, - ACTIONS(8780), 1, - sym_filesize_unit, - ACTIONS(8782), 1, - sym_duration_unit, - ACTIONS(8784), 1, - aux_sym__unquoted_in_list_token2, - STATE(5289), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(6581), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9300), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9302), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9304), 1, + aux_sym__immediate_decimal_token5, + STATE(3705), 1, + sym__immediate_decimal, + STATE(5581), 1, sym_comment, - STATE(7522), 1, + STATE(2019), 2, sym__expr_parenthesized_immediate, - ACTIONS(8778), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [192356] = 4, + sym_val_variable, + [206654] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5290), 1, + ACTIONS(3889), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9306), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9308), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9310), 1, + aux_sym__immediate_decimal_token5, + STATE(5582), 1, sym_comment, - ACTIONS(1645), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1647), 6, + STATE(6495), 1, + sym__immediate_decimal, + STATE(7270), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206689] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4509), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [192377] = 8, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(9128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9312), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9314), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9316), 1, + aux_sym__immediate_decimal_token5, + STATE(5583), 1, + sym_comment, + STATE(8021), 1, + sym__immediate_decimal, + STATE(2144), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206724] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8786), 1, - anon_sym_DOT, - STATE(5291), 1, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(8449), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9318), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9320), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9322), 1, + aux_sym__immediate_decimal_token5, + STATE(5584), 1, sym_comment, - STATE(5365), 1, - aux_sym_cell_path_repeat1, - STATE(5723), 1, - sym_path, - STATE(5922), 1, - sym_cell_path, - ACTIONS(1771), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1775), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [192406] = 5, + STATE(6140), 1, + sym__immediate_decimal, + STATE(6325), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206759] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8600), 1, - aux_sym__immediate_decimal_token2, - STATE(5292), 1, - sym_comment, - ACTIONS(1647), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [192429] = 11, + ACTIONS(1741), 1, + anon_sym_LBRACE, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + ACTIONS(8871), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token5, + STATE(2140), 1, + sym__immediate_decimal, + STATE(5585), 1, + sym_comment, + ACTIONS(9201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2138), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206792] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1625), 1, + ACTIONS(3111), 1, + anon_sym_DOLLAR, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(1629), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1631), 1, + ACTIONS(8471), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1759), 1, + ACTIONS(8473), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8475), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8477), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9234), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(3741), 1, + STATE(5586), 1, + sym_comment, + STATE(6018), 1, + sym__immediate_decimal, + STATE(6263), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206827] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1070), 1, anon_sym_DOLLAR, - ACTIONS(8788), 1, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(5061), 1, + aux_sym_unquoted_token3, + ACTIONS(6064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9324), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9326), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8790), 1, + ACTIONS(9328), 1, aux_sym__immediate_decimal_token5, - STATE(439), 1, + STATE(3328), 1, sym__immediate_decimal, - STATE(5293), 1, + STATE(5587), 1, sym_comment, - STATE(530), 2, + STATE(2218), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192464] = 8, + [206862] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1901), 1, + ACTIONS(1933), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5294), 1, + STATE(5588), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(6014), 1, + STATE(6094), 1, sym_cell_path, - ACTIONS(1903), 5, + ACTIONS(1935), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192493] = 11, + [206891] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1717), 1, + ACTIONS(9164), 1, + aux_sym__immediate_decimal_token2, + STATE(5589), 1, + sym_comment, + ACTIONS(1669), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1671), 6, anon_sym_LPAREN2, - ACTIONS(1719), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1721), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [206914] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3111), 1, + anon_sym_DOLLAR, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1759), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8792), 1, + ACTIONS(8601), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8603), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8605), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9330), 1, + aux_sym__unquoted_in_list_token3, + STATE(5590), 1, + sym_comment, + STATE(6023), 1, + sym__immediate_decimal, + STATE(6263), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [206949] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4079), 1, anon_sym_DOLLAR, - ACTIONS(8794), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4083), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4085), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4159), 1, + aux_sym_unquoted_token3, + ACTIONS(9332), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(9334), 1, aux_sym__immediate_decimal_token5, - STATE(606), 1, + STATE(1602), 1, sym__immediate_decimal, - STATE(5295), 1, + STATE(5591), 1, sym_comment, - STATE(762), 2, + STATE(1772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192528] = 8, + [206984] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1905), 1, + ACTIONS(2053), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5296), 1, + STATE(5592), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(6024), 1, + STATE(6352), 1, sym_cell_path, - ACTIONS(1907), 5, + ACTIONS(2055), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192557] = 8, - ACTIONS(251), 1, + [207013] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5297), 1, + STATE(5593), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5892), 1, - sym_cell_path, - ACTIONS(1911), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192586] = 8, + ACTIONS(1006), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1004), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [207034] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5298), 1, + STATE(5594), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5734), 1, + STATE(6098), 1, sym_cell_path, - ACTIONS(1919), 5, + ACTIONS(1881), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192615] = 8, + [207063] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5299), 1, + STATE(5595), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5737), 1, - sym_cell_path, - ACTIONS(1923), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1661), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 7, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [192644] = 8, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [207084] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1949), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5300), 1, + STATE(5596), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5742), 1, + STATE(6179), 1, sym_cell_path, - ACTIONS(1927), 5, + ACTIONS(1951), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192673] = 8, - ACTIONS(251), 1, + [207113] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5301), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4780), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(9187), 1, + anon_sym_DOLLAR, + ACTIONS(9336), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9338), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9340), 1, + aux_sym__immediate_decimal_token5, + STATE(2220), 1, + sym__immediate_decimal, + STATE(5597), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5754), 1, - sym_cell_path, - ACTIONS(1931), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192702] = 8, + STATE(2144), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207148] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7371), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7487), 1, + aux_sym_unquoted_token3, + STATE(4399), 1, + sym__immediate_decimal, + STATE(5598), 1, + sym_comment, + STATE(4487), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207183] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4879), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5061), 1, + aux_sym_unquoted_token3, + ACTIONS(9342), 1, + anon_sym_DOLLAR, + ACTIONS(9344), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9346), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9348), 1, + aux_sym__immediate_decimal_token5, + STATE(2280), 1, + sym__immediate_decimal, + STATE(5599), 1, + sym_comment, + STATE(2669), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207218] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5701), 1, + anon_sym_LPAREN2, + ACTIONS(5703), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5705), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9350), 1, + anon_sym_DOLLAR, + ACTIONS(9352), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9354), 1, + aux_sym__immediate_decimal_token5, + STATE(3167), 1, + sym__immediate_decimal, + STATE(5600), 1, + sym_comment, + STATE(3294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207253] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(990), 1, anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5302), 1, + ACTIONS(9356), 1, + anon_sym_QMARK2, + STATE(5601), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5766), 1, - sym_cell_path, - ACTIONS(1935), 5, - ts_builtin_sym_end, + ACTIONS(992), 8, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [192731] = 8, + anon_sym_LBRACE, + anon_sym_DOT, + [207276] = 8, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(1937), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5303), 1, + STATE(5602), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5767), 1, + STATE(6095), 1, sym_cell_path, ACTIONS(1939), 5, ts_builtin_sym_end, @@ -405218,4204 +423209,4947 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192760] = 5, - ACTIONS(3), 1, + [207305] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8641), 1, + ACTIONS(9115), 1, aux_sym__immediate_decimal_token2, - STATE(5304), 1, + STATE(5603), 1, sym_comment, - ACTIONS(1645), 3, - anon_sym_RBRACE, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1647), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1671), 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, - [192783] = 8, + [207328] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5305), 1, - sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5774), 1, - sym_cell_path, - ACTIONS(1947), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(9360), 1, anon_sym_DASH_DASH, - anon_sym_as, - [192812] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(9362), 1, anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5306), 1, - sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5777), 1, - sym_cell_path, - ACTIONS(1951), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, + ACTIONS(9364), 1, anon_sym_as, - [192841] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5307), 1, + STATE(5604), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5786), 1, - sym_cell_path, - ACTIONS(1955), 5, - ts_builtin_sym_end, + STATE(5626), 1, + aux_sym_ctrl_do_repeat1, + STATE(6047), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9358), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192870] = 8, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207357] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2064), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5308), 1, + ACTIONS(2145), 1, + anon_sym_DOLLAR, + ACTIONS(7397), 1, + anon_sym_LPAREN2, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7403), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7405), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7407), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7551), 1, + aux_sym_unquoted_token3, + STATE(4417), 1, + sym__immediate_decimal, + STATE(5605), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5789), 1, - sym_cell_path, - ACTIONS(2066), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192899] = 8, - ACTIONS(251), 1, + STATE(4707), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207392] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5309), 1, + STATE(5606), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5792), 1, - sym_cell_path, - ACTIONS(1959), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192928] = 8, + ACTIONS(998), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(996), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [207413] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1883), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5310), 1, + STATE(5607), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5793), 1, + STATE(6123), 1, sym_cell_path, - ACTIONS(1963), 5, + ACTIONS(1885), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192957] = 8, + [207442] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9368), 1, + anon_sym_DASH_DASH, + ACTIONS(9370), 1, anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5311), 1, + STATE(5608), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5799), 1, - sym_cell_path, - ACTIONS(1967), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192986] = 8, - ACTIONS(251), 1, + STATE(5685), 1, + aux_sym_ctrl_do_repeat1, + STATE(5695), 1, + sym_val_variable, + STATE(6963), 1, + sym__variable_name, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [207477] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5312), 1, + ACTIONS(1687), 1, + anon_sym_RBRACK, + ACTIONS(1699), 1, + sym__entry_separator, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + ACTIONS(9330), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9372), 1, + anon_sym_DOT_DOT2, + ACTIONS(9376), 1, + sym_filesize_unit, + ACTIONS(9378), 1, + sym_duration_unit, + STATE(5609), 1, sym_comment, - STATE(5456), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - STATE(5802), 1, - sym_cell_path, - ACTIONS(1971), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [193015] = 11, + STATE(8167), 1, + sym__expr_parenthesized_immediate, + ACTIONS(9374), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207512] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2655), 1, + ACTIONS(3519), 1, anon_sym_DOLLAR, - ACTIONS(4035), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(4039), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4233), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token3, - ACTIONS(8798), 1, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9380), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9382), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8800), 1, + ACTIONS(9384), 1, aux_sym__immediate_decimal_token5, - STATE(1444), 1, + STATE(4343), 1, sym__immediate_decimal, - STATE(5313), 1, + STATE(5610), 1, sym_comment, - STATE(1532), 2, + STATE(4472), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193050] = 11, + [207547] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4051), 1, - anon_sym_DOLLAR, - ACTIONS(4053), 1, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(4055), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4057), 1, + ACTIONS(8831), 1, + anon_sym_DOLLAR, + ACTIONS(8833), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4233), 1, - aux_sym_unquoted_token3, - ACTIONS(8802), 1, + ACTIONS(8835), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8837), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8804), 1, + ACTIONS(8839), 1, aux_sym__immediate_decimal_token5, - STATE(1612), 1, - sym__immediate_decimal, - STATE(5314), 1, + ACTIONS(9330), 1, + aux_sym__unquoted_in_list_token3, + STATE(5611), 1, sym_comment, - STATE(1781), 2, + STATE(7134), 1, + sym__immediate_decimal, + STATE(7336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193085] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8806), 1, - anon_sym_GT2, - STATE(5315), 1, - sym_comment, - STATE(5316), 1, - aux_sym_collection_type_repeat1, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [193118] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8808), 1, - anon_sym_GT2, - STATE(5262), 1, - aux_sym_collection_type_repeat1, - STATE(5316), 1, - sym_comment, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [193151] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8810), 1, - anon_sym_GT2, - STATE(5317), 1, - sym_comment, - STATE(5333), 1, - aux_sym_collection_type_repeat1, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [193184] = 4, + [207582] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5318), 1, + ACTIONS(9386), 1, + anon_sym_DOT, + ACTIONS(9388), 1, + aux_sym__immediate_decimal_token2, + STATE(5612), 1, sym_comment, - ACTIONS(1647), 4, + ACTIONS(1671), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 6, + ACTIONS(1669), 5, sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [193205] = 8, + [207607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8786), 1, - anon_sym_DOT, - STATE(5319), 1, + STATE(5613), 1, sym_comment, - STATE(5365), 1, - aux_sym_cell_path_repeat1, - STATE(5723), 1, - sym_path, - STATE(5913), 1, - sym_cell_path, - ACTIONS(973), 3, + ACTIONS(1661), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(975), 3, + aux_sym__unquoted_in_list_token2, + ACTIONS(1663), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [193234] = 11, - ACTIONS(3), 1, + [207628] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4922), 1, - aux_sym_unquoted_token3, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8812), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8814), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8816), 1, - aux_sym__immediate_decimal_token5, - STATE(4099), 1, - sym__immediate_decimal, - STATE(5320), 1, + ACTIONS(1887), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5614), 1, sym_comment, - STATE(3598), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193269] = 11, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6139), 1, + sym_cell_path, + ACTIONS(1889), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [207657] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token3, - ACTIONS(5862), 1, - anon_sym_DOLLAR, - ACTIONS(6341), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(7057), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8818), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8820), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8822), 1, - aux_sym__immediate_decimal_token5, - STATE(4300), 1, - sym__immediate_decimal, - STATE(5321), 1, - sym_comment, - STATE(3821), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193304] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3521), 1, - anon_sym_DOLLAR, - ACTIONS(4839), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token3, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(7037), 1, + ACTIONS(6174), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8824), 1, + ACTIONS(9342), 1, + anon_sym_DOLLAR, + ACTIONS(9390), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8826), 1, + ACTIONS(9392), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8828), 1, + ACTIONS(9394), 1, aux_sym__immediate_decimal_token5, - STATE(4061), 1, + STATE(3369), 1, sym__immediate_decimal, - STATE(5322), 1, + STATE(5615), 1, sym_comment, - STATE(3538), 2, + STATE(2669), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193339] = 11, + [207692] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_DOLLAR, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(7051), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8830), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8832), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8834), 1, - aux_sym__immediate_decimal_token5, - STATE(4178), 1, - sym__immediate_decimal, - STATE(5323), 1, + ACTIONS(9396), 1, + aux_sym__immediate_decimal_token2, + STATE(5616), 1, sym_comment, - STATE(3453), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193374] = 4, + ACTIONS(1711), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1713), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [207715] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5324), 1, + ACTIONS(9398), 1, + anon_sym_DOT, + ACTIONS(9400), 1, + aux_sym__immediate_decimal_token2, + STATE(5617), 1, sym_comment, - ACTIONS(1637), 4, + ACTIONS(1779), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1639), 6, + ACTIONS(1781), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [193395] = 5, - ACTIONS(251), 1, + [207740] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8836), 1, + ACTIONS(9402), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9404), 1, aux_sym__immediate_decimal_token2, - STATE(5325), 1, + STATE(5618), 1, sym_comment, - ACTIONS(1747), 3, - anon_sym_DASH_DASH, + ACTIONS(1661), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1745), 6, - sym_identifier, + sym_filesize_unit, + sym_duration_unit, + [207765] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1891), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5619), 1, + sym_comment, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6115), 1, + sym_cell_path, + ACTIONS(1893), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [207794] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5620), 1, + sym_comment, + ACTIONS(1767), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1769), 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, - aux_sym_unquoted_token2, - [193418] = 6, + [207815] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8838), 1, + ACTIONS(9406), 1, anon_sym_DOT, - ACTIONS(8840), 1, + ACTIONS(9408), 1, aux_sym__immediate_decimal_token2, - STATE(5326), 1, + STATE(5621), 1, sym_comment, - ACTIONS(1647), 3, - anon_sym_DOLLAR, + ACTIONS(1669), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [193443] = 6, + [207840] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(9410), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8844), 1, + ACTIONS(9412), 1, aux_sym__immediate_decimal_token2, - STATE(5327), 1, + STATE(5622), 1, sym_comment, - ACTIONS(1639), 3, + ACTIONS(1663), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1637), 5, + ACTIONS(1661), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [193468] = 11, + [207865] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + ACTIONS(9414), 1, + sym_filesize_unit, + ACTIONS(9416), 1, + sym_duration_unit, + STATE(5623), 1, + sym_comment, + ACTIONS(1687), 2, sym_identifier, - ACTIONS(8658), 1, - anon_sym_DASH_DASH, - ACTIONS(8660), 1, anon_sym_DASH2, - STATE(5328), 1, + ACTIONS(1699), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207896] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3635), 1, + anon_sym_DOLLAR, + ACTIONS(7517), 1, + anon_sym_LPAREN2, + ACTIONS(7521), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7523), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7625), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(9418), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9420), 1, + aux_sym__immediate_decimal_token5, + STATE(4526), 1, + sym__immediate_decimal, + STATE(5624), 1, sym_comment, - STATE(5389), 1, - aux_sym_ctrl_do_repeat1, - STATE(5414), 1, + STATE(4881), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6358), 1, - sym__variable_name, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [193503] = 6, + [207931] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8846), 1, - anon_sym_DOT, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - STATE(5329), 1, + ACTIONS(4379), 1, + anon_sym_DOLLAR, + ACTIONS(7397), 1, + anon_sym_LPAREN2, + ACTIONS(7445), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7447), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7449), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7451), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7551), 1, + aux_sym_unquoted_token3, + STATE(4849), 1, + sym__immediate_decimal, + STATE(5625), 1, sym_comment, - ACTIONS(1645), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193528] = 7, + STATE(5091), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [207966] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(986), 1, + ACTIONS(9360), 1, + anon_sym_DASH_DASH, + ACTIONS(9362), 1, anon_sym_DASH2, - ACTIONS(8569), 1, - anon_sym_DOT, - STATE(5330), 1, + ACTIONS(9424), 1, + anon_sym_as, + STATE(5580), 1, + aux_sym_ctrl_do_repeat1, + STATE(5626), 1, sym_comment, - STATE(5337), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - ACTIONS(988), 6, + STATE(6047), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9422), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, + [207995] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9360), 1, + anon_sym_DASH_DASH, + ACTIONS(9362), 1, + anon_sym_DASH2, + ACTIONS(9428), 1, anon_sym_as, - [193555] = 11, + STATE(5627), 1, + sym_comment, + STATE(5648), 1, + aux_sym_ctrl_do_repeat1, + STATE(6047), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9426), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208024] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3877), 1, - anon_sym_DOLLAR, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(6223), 1, + ACTIONS(7517), 1, anon_sym_LPAREN2, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(7563), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(7565), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7625), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(9430), 1, + anon_sym_DOLLAR, + ACTIONS(9432), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9434), 1, aux_sym__immediate_decimal_token5, - STATE(5331), 1, - sym_comment, - STATE(6090), 1, + STATE(4929), 1, sym__immediate_decimal, - STATE(6146), 2, + STATE(5628), 1, + sym_comment, + STATE(5329), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193590] = 11, + [208059] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1945), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5629), 1, + sym_comment, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6131), 1, + sym_cell_path, + ACTIONS(1947), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208088] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4309), 1, + ACTIONS(5634), 1, anon_sym_DOLLAR, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(6223), 1, + ACTIONS(5636), 1, anon_sym_LPAREN2, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(5638), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(5640), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(5642), 1, aux_sym__immediate_decimal_token5, - STATE(5332), 1, - sym_comment, - STATE(7515), 1, + ACTIONS(5725), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9436), 1, + aux_sym__immediate_decimal_token1, + STATE(3018), 1, sym__immediate_decimal, - STATE(3453), 2, + STATE(5630), 1, + sym_comment, + STATE(3197), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193625] = 10, + [208123] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string_begin, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8862), 1, - anon_sym_GT2, - STATE(5262), 1, - aux_sym_collection_type_repeat1, - STATE(5333), 1, + ACTIONS(1895), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5631), 1, sym_comment, - STATE(5509), 1, - sym_val_string, - ACTIONS(5672), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5619), 2, - sym__raw_str, - sym__str_double_quotes, - [193658] = 6, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6294), 1, + sym_cell_path, + ACTIONS(1897), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208152] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8864), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8866), 1, - aux_sym__immediate_decimal_token2, - STATE(5334), 1, + ACTIONS(9438), 1, + anon_sym_DOT, + STATE(5632), 1, sym_comment, - ACTIONS(1793), 4, + STATE(5705), 1, + aux_sym_cell_path_repeat1, + STATE(6017), 1, + sym_path, + STATE(6338), 1, + sym_cell_path, + ACTIONS(1763), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 4, - anon_sym_LPAREN2, + ACTIONS(1765), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [193683] = 4, + [208181] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5335), 1, + ACTIONS(1621), 1, + anon_sym_LPAREN2, + ACTIONS(1625), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1627), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1795), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3831), 1, + anon_sym_DOLLAR, + ACTIONS(9440), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9442), 1, + aux_sym__immediate_decimal_token5, + STATE(436), 1, + sym__immediate_decimal, + STATE(5633), 1, sym_comment, - ACTIONS(1745), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1747), 6, + STATE(553), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [208216] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [193704] = 9, + ACTIONS(4708), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(9444), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9448), 1, + aux_sym__immediate_decimal_token5, + STATE(1831), 1, + sym__immediate_decimal, + STATE(5634), 1, + sym_comment, + STATE(2019), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [208251] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4415), 1, + anon_sym_DOLLAR, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7421), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7425), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7487), 1, + aux_sym_unquoted_token3, + STATE(4646), 1, + sym__immediate_decimal, + STATE(5635), 1, + sym_comment, + STATE(4922), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [208286] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - ACTIONS(8868), 1, - sym_filesize_unit, - ACTIONS(8870), 1, - sym_duration_unit, - STATE(5336), 1, + STATE(5636), 1, sym_comment, - ACTIONS(1695), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1707), 2, + ACTIONS(1713), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(4698), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [193735] = 6, + ACTIONS(1711), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [208307] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(979), 1, + ACTIONS(1903), 1, anon_sym_DASH2, - ACTIONS(8872), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5625), 1, - sym_path, - STATE(5337), 2, + STATE(5637), 1, sym_comment, + STATE(5668), 1, aux_sym_cell_path_repeat1, - ACTIONS(981), 6, + STATE(6055), 1, + sym_path, + STATE(6316), 1, + sym_cell_path, + ACTIONS(1905), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [193760] = 11, + [208336] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1567), 1, + anon_sym_DOLLAR, + ACTIONS(1569), 1, + anon_sym_LPAREN2, + ACTIONS(1573), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1575), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1577), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1701), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(9450), 1, + aux_sym__immediate_decimal_token1, + STATE(389), 1, + sym__immediate_decimal, + STATE(5638), 1, + sym_comment, + STATE(450), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [208371] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(1719), 1, anon_sym_LPAREN2, - ACTIONS(5433), 1, + ACTIONS(1721), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5435), 1, + ACTIONS(1723), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8377), 1, + ACTIONS(1795), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(9452), 1, anon_sym_DOLLAR, - ACTIONS(8379), 1, + ACTIONS(9454), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8381), 1, + ACTIONS(9456), 1, aux_sym__immediate_decimal_token5, - STATE(2813), 1, + STATE(570), 1, sym__immediate_decimal, - STATE(5338), 1, + STATE(5639), 1, sym_comment, - STATE(2910), 2, + STATE(709), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193795] = 11, + [208406] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5560), 1, + ACTIONS(1647), 1, + anon_sym_DOLLAR, + ACTIONS(1649), 1, anon_sym_LPAREN2, - ACTIONS(5562), 1, + ACTIONS(1651), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8875), 1, - anon_sym_DOLLAR, - ACTIONS(8877), 1, + ACTIONS(1653), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8879), 1, + ACTIONS(1655), 1, aux_sym__immediate_decimal_token5, - STATE(3063), 1, + ACTIONS(1701), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(9458), 1, + aux_sym__immediate_decimal_token1, + STATE(548), 1, sym__immediate_decimal, - STATE(5339), 1, + STATE(5640), 1, sym_comment, - STATE(3105), 2, + STATE(624), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193830] = 8, + [208441] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1909), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5340), 1, + STATE(5641), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5761), 1, + STATE(6321), 1, sym_cell_path, - ACTIONS(1887), 5, + ACTIONS(1911), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [193859] = 6, - ACTIONS(3), 1, + [208470] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8883), 1, - aux_sym__immediate_decimal_token2, - STATE(5341), 1, + STATE(5642), 1, sym_comment, - ACTIONS(1637), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 5, - sym__space, + ACTIONS(1663), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1661), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [193884] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [208491] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5342), 1, + STATE(5643), 1, sym_comment, - ACTIONS(1781), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1783), 6, - anon_sym_LPAREN2, + ACTIONS(1769), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1767), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [193905] = 4, + aux_sym_unquoted_token2, + [208512] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8517), 1, + ACTIONS(975), 1, anon_sym_DASH2, - STATE(5343), 1, + ACTIONS(9460), 1, + anon_sym_DOT, + STATE(5971), 1, + sym_path, + STATE(5644), 2, sym_comment, - ACTIONS(5815), 9, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(977), 6, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193926] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3115), 1, - anon_sym_DOLLAR, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8103), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8105), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8109), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8784), 1, - aux_sym__unquoted_in_list_token3, - STATE(5344), 1, - sym_comment, - STATE(5687), 1, - sym__immediate_decimal, - STATE(5744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193961] = 4, + anon_sym_RBRACE, + anon_sym_as, + [208537] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5345), 1, - sym_comment, - ACTIONS(1645), 3, + ACTIONS(1008), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 7, + ACTIONS(9463), 1, + anon_sym_QMARK2, + STATE(5645), 1, + sym_comment, + ACTIONS(1010), 8, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT, + [208560] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1953), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5646), 1, + sym_comment, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6172), 1, + sym_cell_path, + ACTIONS(1955), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208589] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5647), 1, + sym_comment, + ACTIONS(1767), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1769), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193982] = 8, + sym__entry_separator, + [208610] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8732), 1, + ACTIONS(9360), 1, anon_sym_DASH_DASH, - ACTIONS(8734), 1, + ACTIONS(9362), 1, anon_sym_DASH2, - ACTIONS(8887), 1, + ACTIONS(9467), 1, anon_sym_as, - STATE(5274), 1, + STATE(5580), 1, aux_sym_ctrl_do_repeat1, - STATE(5346), 1, + STATE(5648), 1, sym_comment, - STATE(5703), 2, + STATE(6047), 2, sym_short_flag, sym_long_flag, - ACTIONS(8885), 4, + ACTIONS(9465), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [194011] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5347), 1, - sym_comment, - ACTIONS(1637), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 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, - [194032] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1603), 1, - anon_sym_EQ_GT, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3612), 1, - sym__immediate_decimal, - STATE(5348), 1, - sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3440), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194065] = 8, + [208639] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(2033), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5349), 1, + STATE(5649), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5895), 1, + STATE(6341), 1, sym_cell_path, - ACTIONS(1891), 5, + ACTIONS(2035), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194094] = 10, - ACTIONS(251), 1, + [208668] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, - anon_sym_EQ_GT, - ACTIONS(6223), 1, + ACTIONS(1056), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(6581), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9300), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9302), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(9304), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3627), 1, + STATE(3705), 1, sym__immediate_decimal, - STATE(5350), 1, + STATE(5650), 1, sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3444), 2, + STATE(2019), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194127] = 11, + [208703] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(1070), 1, anon_sym_DOLLAR, - ACTIONS(4067), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(4071), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4073), 1, + ACTIONS(4835), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4682), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token3, - ACTIONS(8889), 1, + ACTIONS(9469), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9471), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8891), 1, + ACTIONS(9473), 1, aux_sym__immediate_decimal_token5, - STATE(1461), 1, + STATE(1900), 1, sym__immediate_decimal, - STATE(5351), 1, + STATE(5651), 1, sym_comment, - STATE(1650), 2, + STATE(2218), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194162] = 4, - ACTIONS(251), 1, + [208738] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5352), 1, + ACTIONS(3459), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(8292), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9475), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9477), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9479), 1, + aux_sym__immediate_decimal_token5, + STATE(5652), 1, sym_comment, - ACTIONS(1745), 3, - anon_sym_DASH2, + STATE(6006), 1, + sym__immediate_decimal, + STATE(6325), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [208773] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + anon_sym_RBRACE, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(1699), 1, + sym__entry_separator, + ACTIONS(9234), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9481), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1747), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9485), 1, sym_filesize_unit, + ACTIONS(9487), 1, sym_duration_unit, - [194183] = 11, + STATE(5653), 1, + sym_comment, + STATE(8194), 1, + sym__expr_parenthesized_immediate, + ACTIONS(9483), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208808] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8311), 1, - anon_sym_DOLLAR, - ACTIONS(8415), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token3, + ACTIONS(8657), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8417), 1, + ACTIONS(9187), 1, + anon_sym_DOLLAR, + ACTIONS(9489), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8419), 1, + ACTIONS(9491), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8421), 1, + ACTIONS(9493), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8784), 1, - aux_sym__unquoted_in_list_token3, - STATE(5353), 1, + STATE(5654), 1, sym_comment, - STATE(6380), 1, + STATE(6812), 1, sym__immediate_decimal, - STATE(6912), 2, + STATE(2144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194218] = 4, - ACTIONS(251), 1, + [208843] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5354), 1, + STATE(5655), 1, sym_comment, - ACTIONS(1781), 3, - anon_sym_DASH2, + ACTIONS(1669), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1783), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + aux_sym__unquoted_in_list_token2, + ACTIONS(1671), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [194239] = 8, + sym__entry_separator, + [208864] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1917), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5656), 1, + sym_comment, + STATE(5668), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + STATE(6340), 1, + sym_cell_path, + ACTIONS(1919), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208893] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8786), 1, + ACTIONS(9438), 1, anon_sym_DOT, - STATE(5355), 1, + STATE(5657), 1, sym_comment, - STATE(5365), 1, + STATE(5705), 1, aux_sym_cell_path_repeat1, - STATE(5723), 1, + STATE(6017), 1, sym_path, - STATE(5881), 1, + STATE(6145), 1, sym_cell_path, - ACTIONS(1777), 3, + ACTIONS(1757), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1779), 3, + ACTIONS(1761), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [194268] = 5, + [208922] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2653), 1, + anon_sym_DOLLAR, + ACTIONS(4043), 1, + anon_sym_LPAREN2, + ACTIONS(4047), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4049), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4159), 1, + aux_sym_unquoted_token3, + ACTIONS(9495), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9497), 1, + aux_sym__immediate_decimal_token5, + STATE(1445), 1, + sym__immediate_decimal, + STATE(5658), 1, + sym_comment, + STATE(1559), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [208957] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8620), 1, - aux_sym__immediate_decimal_token2, - STATE(5356), 1, + STATE(5659), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1711), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1713), 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, - [194291] = 6, - ACTIONS(251), 1, + [208978] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8895), 1, - anon_sym_DASH_DASH, - ACTIONS(8898), 1, - anon_sym_DASH2, - STATE(5357), 2, + ACTIONS(9438), 1, + anon_sym_DOT, + STATE(5660), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5703), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8893), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5705), 1, + aux_sym_cell_path_repeat1, + STATE(6017), 1, + sym_path, + STATE(6114), 1, + sym_cell_path, + ACTIONS(969), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [194316] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8901), 1, - aux_sym__immediate_decimal_token2, - STATE(5358), 1, - sym_comment, - ACTIONS(1745), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1747), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(971), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194339] = 8, + sym__entry_separator, + [209007] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(969), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(9276), 1, anon_sym_DOT, - STATE(5359), 1, + STATE(5661), 1, sym_comment, - STATE(5456), 1, + STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(5678), 1, + STATE(6055), 1, sym_path, - STATE(5769), 1, + STATE(6168), 1, sym_cell_path, - ACTIONS(1943), 5, + ACTIONS(971), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194368] = 9, + [209036] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5662), 1, + sym_comment, + ACTIONS(1002), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1000), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [209057] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(1745), 1, + anon_sym_LBRACE, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6430), 1, + ACTIONS(6678), 1, anon_sym_DOLLAR, - ACTIONS(8325), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token5, - STATE(3452), 1, + STATE(2158), 1, sym__immediate_decimal, - STATE(5360), 1, + STATE(5663), 1, sym_comment, - ACTIONS(8586), 2, + ACTIONS(9201), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3449), 2, + STATE(2097), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194398] = 4, + [209090] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_DASH2, - STATE(5361), 1, + STATE(5664), 1, sym_comment, - ACTIONS(1002), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1671), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [209111] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9368), 1, anon_sym_DASH_DASH, + ACTIONS(9370), 1, + anon_sym_DASH2, + STATE(5665), 1, + sym_comment, + STATE(5685), 1, + aux_sym_ctrl_do_repeat1, + STATE(5695), 1, + sym_val_variable, + STATE(6963), 1, + sym__variable_name, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [209146] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9499), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9501), 1, + aux_sym__immediate_decimal_token2, + STATE(5666), 1, + sym_comment, + ACTIONS(1771), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [194418] = 5, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [209171] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(9503), 1, aux_sym__immediate_decimal_token2, - STATE(5362), 1, + STATE(5667), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 6, + ACTIONS(1713), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [194440] = 9, + [209193] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8905), 1, - anon_sym_DOLLAR, - ACTIONS(8907), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token5, - STATE(5363), 1, + ACTIONS(982), 1, + anon_sym_DASH2, + ACTIONS(9276), 1, + anon_sym_DOT, + STATE(5668), 1, sym_comment, - STATE(6091), 1, - sym__immediate_decimal, - ACTIONS(8103), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5744), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194470] = 9, + STATE(5669), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, + sym_path, + ACTIONS(984), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [209219] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3633), 1, - sym__immediate_decimal, - STATE(5364), 1, - sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3453), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194500] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8786), 1, + ACTIONS(975), 1, + anon_sym_DASH2, + ACTIONS(9505), 1, anon_sym_DOT, - STATE(5365), 1, + STATE(6055), 1, + sym_path, + STATE(5669), 2, sym_comment, - STATE(5372), 1, aux_sym_cell_path_repeat1, - STATE(5723), 1, - sym_path, - ACTIONS(986), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(988), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194526] = 9, + ACTIONS(977), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [209243] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6339), 1, - anon_sym_DOLLAR, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, - aux_sym__immediate_decimal_token5, - STATE(3733), 1, - sym__immediate_decimal, - STATE(5366), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(9508), 1, + sym_identifier, + STATE(5670), 1, sym_comment, - ACTIONS(6345), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3598), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194556] = 9, + STATE(5671), 1, + aux_sym_collection_type_repeat1, + STATE(7279), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [209273] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9510), 1, + sym_identifier, + ACTIONS(9513), 1, + anon_sym_DQUOTE, + ACTIONS(9519), 1, + sym_raw_string_begin, + STATE(7675), 1, + sym_val_string, + ACTIONS(9516), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5671), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [209301] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7067), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(8911), 1, - anon_sym_DOLLAR, - ACTIONS(8913), 1, + ACTIONS(4837), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8915), 1, + ACTIONS(4839), 1, aux_sym__immediate_decimal_token5, - STATE(4461), 1, + ACTIONS(4877), 1, + anon_sym_DOLLAR, + STATE(2599), 1, sym__immediate_decimal, - STATE(5367), 1, + STATE(5672), 1, sym_comment, - ACTIONS(7103), 2, + ACTIONS(4889), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4792), 2, + STATE(2654), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194586] = 9, + [209331] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - ACTIONS(8433), 1, + ACTIONS(4837), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8435), 1, + ACTIONS(4839), 1, aux_sym__immediate_decimal_token5, - STATE(5368), 1, - sym_comment, - STATE(7197), 1, + ACTIONS(4877), 1, + anon_sym_DOLLAR, + STATE(2585), 1, sym__immediate_decimal, - ACTIONS(8431), 2, + STATE(5673), 1, + sym_comment, + ACTIONS(4889), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3454), 2, + STATE(2575), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194616] = 6, + [209361] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8917), 1, - anon_sym_DOT, - ACTIONS(8919), 1, + ACTIONS(9408), 1, aux_sym__immediate_decimal_token2, - STATE(5369), 1, + STATE(5674), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 5, - anon_sym_LBRACE, + ACTIONS(1671), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [194640] = 9, + [209383] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(9522), 1, anon_sym_DASH_DASH, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - ACTIONS(8921), 1, - sym_filesize_unit, - ACTIONS(8923), 1, - sym_duration_unit, - STATE(5370), 1, - sym_comment, - ACTIONS(1695), 2, - sym_identifier, + ACTIONS(9524), 1, anon_sym_DASH2, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [194670] = 9, + ACTIONS(9526), 1, + anon_sym_as, + STATE(5675), 1, + sym_comment, + STATE(5700), 1, + aux_sym_ctrl_do_repeat1, + STATE(6220), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9422), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [209411] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7089), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8925), 1, + ACTIONS(6678), 1, anon_sym_DOLLAR, - ACTIONS(8927), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8929), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token5, - STATE(4905), 1, + STATE(2125), 1, sym__immediate_decimal, - STATE(5371), 1, + STATE(5676), 1, sym_comment, - ACTIONS(7169), 2, + ACTIONS(9201), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4881), 2, + STATE(2033), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194700] = 6, - ACTIONS(3), 1, + [209441] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8931), 1, - anon_sym_DOT, - STATE(5723), 1, - sym_path, - STATE(5372), 2, + ACTIONS(1008), 1, + anon_sym_DASH2, + ACTIONS(9528), 1, + anon_sym_QMARK2, + STATE(5677), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 3, - anon_sym_RBRACK, + ACTIONS(1010), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(981), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194724] = 9, + anon_sym_as, + anon_sym_DOT, + [209463] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(5373), 1, + ACTIONS(990), 1, + anon_sym_DASH2, + ACTIONS(9530), 1, + anon_sym_QMARK2, + STATE(5678), 1, sym_comment, - STATE(7556), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3454), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194754] = 9, + ACTIONS(992), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [209485] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(4829), 1, + anon_sym_DOLLAR, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(8907), 1, + ACTIONS(4837), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8909), 1, + ACTIONS(4839), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8934), 1, - anon_sym_DOLLAR, - STATE(5374), 1, - sym_comment, - STATE(7473), 1, + STATE(2219), 1, sym__immediate_decimal, - ACTIONS(8313), 2, + STATE(5679), 1, + sym_comment, + ACTIONS(4835), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6912), 2, + STATE(2218), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194784] = 8, + [209515] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1018), 1, anon_sym_DASH2, - ACTIONS(8571), 1, + STATE(5680), 1, + sym_comment, + ACTIONS(1020), 8, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT, - STATE(4885), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5375), 1, + [209535] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1014), 1, + anon_sym_DASH2, + STATE(5681), 1, sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1959), 4, + ACTIONS(1016), 8, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [194812] = 7, + anon_sym_DOT, + [209555] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + ACTIONS(9532), 1, + anon_sym_DOT_DOT2, + ACTIONS(9536), 1, + sym_filesize_unit, + ACTIONS(9538), 1, + sym_duration_unit, + STATE(5682), 1, + sym_comment, + ACTIONS(9534), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1699), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [209583] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2097), 1, + STATE(2202), 1, sym_cell_path, - STATE(5376), 1, + STATE(5683), 1, sym_comment, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - ACTIONS(1887), 5, + ACTIONS(1951), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - [194838] = 10, + [209609] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - ACTIONS(8658), 1, + ACTIONS(9522), 1, anon_sym_DASH_DASH, - ACTIONS(8660), 1, + ACTIONS(9524), 1, anon_sym_DASH2, - ACTIONS(8938), 1, - sym_identifier, - STATE(5377), 1, + ACTIONS(9542), 1, + anon_sym_as, + STATE(5684), 1, sym_comment, - STATE(5435), 1, + STATE(5690), 1, aux_sym_ctrl_do_repeat1, - STATE(7049), 1, - sym__variable_name, - STATE(7325), 1, - sym_val_variable, - STATE(6172), 2, + STATE(6220), 2, sym_short_flag, sym_long_flag, - [194870] = 9, + ACTIONS(9426), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [209637] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8319), 1, + ACTIONS(6678), 1, anon_sym_DOLLAR, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(5378), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9368), 1, + anon_sym_DASH_DASH, + ACTIONS(9370), 1, + anon_sym_DASH2, + STATE(5685), 1, sym_comment, - STATE(6049), 1, - sym__immediate_decimal, - ACTIONS(8323), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6146), 2, - sym__expr_parenthesized_immediate, + STATE(5695), 1, sym_val_variable, - [194900] = 9, + STATE(6013), 1, + aux_sym_ctrl_do_repeat1, + STATE(6866), 1, + sym__variable_name, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [209669] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8099), 1, - anon_sym_LPAREN2, - ACTIONS(8934), 1, - anon_sym_DOLLAR, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token5, - STATE(5379), 1, - sym_comment, - STATE(6780), 1, - sym__immediate_decimal, - ACTIONS(8475), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7240), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194930] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8722), 1, - aux_sym__immediate_decimal_token2, - STATE(5380), 1, + ACTIONS(1000), 1, + anon_sym_DASH2, + STATE(5686), 1, sym_comment, - ACTIONS(1785), 4, - anon_sym_RBRACK, + ACTIONS(1002), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194952] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7067), 1, - anon_sym_LPAREN2, - ACTIONS(8911), 1, - anon_sym_DOLLAR, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8946), 1, - aux_sym__immediate_decimal_token5, - STATE(4791), 1, - sym__immediate_decimal, - STATE(5381), 1, - sym_comment, - ACTIONS(7135), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4624), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194982] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(8948), 1, - anon_sym_DOT_DOT2, - ACTIONS(8952), 1, - sym_filesize_unit, - ACTIONS(8954), 1, - sym_duration_unit, - STATE(5382), 1, - sym_comment, - ACTIONS(8950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1707), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [195010] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_DOLLAR, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - STATE(3714), 1, - sym__immediate_decimal, - STATE(5383), 1, - sym_comment, - ACTIONS(6227), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3538), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195040] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(3633), 1, - sym__immediate_decimal, - STATE(5384), 1, - sym_comment, - ACTIONS(8586), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3453), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195070] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4053), 1, - anon_sym_LPAREN2, - ACTIONS(4059), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4061), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8283), 1, - anon_sym_DOLLAR, - STATE(1623), 1, - sym__immediate_decimal, - STATE(5385), 1, - sym_comment, - ACTIONS(4057), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1791), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195100] = 9, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [209689] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6229), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3452), 1, - sym__immediate_decimal, - STATE(5386), 1, + ACTIONS(1004), 1, + anon_sym_DASH2, + STATE(5687), 1, sym_comment, - ACTIONS(6333), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3449), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195130] = 9, + ACTIONS(1006), 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, + [209709] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_LPAREN2, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - ACTIONS(7059), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token5, - STATE(4244), 1, - sym__immediate_decimal, - STATE(5387), 1, + ACTIONS(996), 1, + anon_sym_DASH2, + STATE(5688), 1, sym_comment, - ACTIONS(7057), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3801), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195160] = 9, + ACTIONS(998), 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, + [209729] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4053), 1, - anon_sym_LPAREN2, - ACTIONS(4245), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4247), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8283), 1, - anon_sym_DOLLAR, - STATE(1853), 1, - sym__immediate_decimal, - STATE(5388), 1, + ACTIONS(986), 1, + anon_sym_DASH2, + STATE(5689), 1, sym_comment, - ACTIONS(4243), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1852), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195190] = 10, + ACTIONS(988), 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, + [209749] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8658), 1, + ACTIONS(9522), 1, anon_sym_DASH_DASH, - ACTIONS(8660), 1, + ACTIONS(9524), 1, anon_sym_DASH2, - STATE(5389), 1, + ACTIONS(9544), 1, + anon_sym_as, + STATE(5690), 1, sym_comment, - STATE(5414), 1, - sym_val_variable, - STATE(5650), 1, + STATE(5700), 1, aux_sym_ctrl_do_repeat1, - STATE(6713), 1, - sym__variable_name, - STATE(6172), 2, + STATE(6220), 2, sym_short_flag, sym_long_flag, - [195222] = 4, + ACTIONS(9465), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [209777] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1308), 1, + ACTIONS(9522), 1, + anon_sym_DASH_DASH, + ACTIONS(9524), 1, anon_sym_DASH2, - STATE(5390), 1, + ACTIONS(9546), 1, + anon_sym_as, + STATE(5675), 1, + aux_sym_ctrl_do_repeat1, + STATE(5691), 1, sym_comment, - ACTIONS(1306), 8, - sym_identifier, + STATE(6220), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9358), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195242] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - ACTIONS(7053), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7055), 1, - aux_sym__immediate_decimal_token5, - STATE(4212), 1, - sym__immediate_decimal, - STATE(5391), 1, - sym_comment, - ACTIONS(7051), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3454), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195272] = 9, + anon_sym_SEMI, + [209805] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5558), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9548), 1, anon_sym_DOLLAR, - ACTIONS(5560), 1, - anon_sym_LPAREN2, - ACTIONS(5628), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5630), 1, - aux_sym__immediate_decimal_token5, - STATE(3118), 1, - sym__immediate_decimal, - STATE(5392), 1, + ACTIONS(9550), 1, + anon_sym_DASH_DASH, + ACTIONS(9552), 1, + anon_sym_DASH2, + STATE(5692), 1, sym_comment, - ACTIONS(5626), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3117), 2, - sym__expr_parenthesized_immediate, + STATE(5695), 1, sym_val_variable, - [195302] = 9, + STATE(6640), 1, + sym__variable_name, + STATE(7304), 2, + sym_short_flag, + sym_long_flag, + [209837] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(8934), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR, - ACTIONS(8956), 1, + ACTIONS(9556), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8958), 1, + ACTIONS(9558), 1, aux_sym__immediate_decimal_token5, - STATE(5393), 1, + STATE(5693), 1, sym_comment, - STATE(6724), 1, + STATE(7185), 1, sym__immediate_decimal, - ACTIONS(8415), 2, + ACTIONS(8833), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7240), 2, + STATE(7567), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195332] = 9, + [209867] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7220), 1, - anon_sym_DOLLAR, - ACTIONS(7226), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7228), 1, - aux_sym__immediate_decimal_token5, - STATE(4639), 1, - sym__immediate_decimal, - STATE(5394), 1, + ACTIONS(9562), 1, + anon_sym_DASH2, + STATE(5694), 1, sym_comment, - ACTIONS(7224), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5033), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195362] = 9, + ACTIONS(9560), 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, + [209887] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9566), 1, + anon_sym_DASH2, + STATE(5695), 1, + sym_comment, + ACTIONS(9564), 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, + [209907] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7188), 1, + ACTIONS(4702), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(7196), 1, + ACTIONS(4710), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(4712), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7220), 1, - anon_sym_DOLLAR, - STATE(5032), 1, + STATE(1973), 1, sym__immediate_decimal, - STATE(5395), 1, + STATE(5696), 1, sym_comment, - ACTIONS(7278), 2, + ACTIONS(4708), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5031), 2, + STATE(2019), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195392] = 4, + [209937] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(5396), 1, - sym_comment, - ACTIONS(1639), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1637), 6, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + ACTIONS(9366), 1, sym_identifier, + ACTIONS(9368), 1, + anon_sym_DASH_DASH, + ACTIONS(9370), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [195412] = 9, + STATE(5685), 1, + aux_sym_ctrl_do_repeat1, + STATE(5695), 1, + sym_val_variable, + STATE(5697), 1, + sym_comment, + STATE(6963), 1, + sym__variable_name, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [209969] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5377), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8960), 1, - anon_sym_DOLLAR, - ACTIONS(8962), 1, + ACTIONS(4710), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8964), 1, + ACTIONS(4712), 1, aux_sym__immediate_decimal_token5, - STATE(2919), 1, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + STATE(2221), 1, sym__immediate_decimal, - STATE(5397), 1, + STATE(5698), 1, sym_comment, - ACTIONS(8680), 2, + ACTIONS(4778), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3083), 2, + STATE(2144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195442] = 9, + [209999] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5377), 1, - anon_sym_LPAREN2, - ACTIONS(8960), 1, + ACTIONS(6722), 1, anon_sym_DOLLAR, - ACTIONS(8968), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8970), 1, - aux_sym__immediate_decimal_token5, - STATE(3082), 1, - sym__immediate_decimal, - STATE(5398), 1, + ACTIONS(9368), 1, + anon_sym_DASH_DASH, + ACTIONS(9370), 1, + anon_sym_DASH2, + ACTIONS(9568), 1, + sym_identifier, + STATE(5699), 1, sym_comment, - ACTIONS(8966), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3081), 2, - sym__expr_parenthesized_immediate, + STATE(5713), 1, + aux_sym_ctrl_do_repeat1, + STATE(7580), 1, sym_val_variable, - [195472] = 9, + STATE(7740), 1, + sym__variable_name, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [210031] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1715), 1, - anon_sym_DOLLAR, - ACTIONS(1717), 1, + ACTIONS(9570), 1, + anon_sym_DASH_DASH, + ACTIONS(9573), 1, + anon_sym_DASH2, + STATE(5700), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6220), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9292), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + [210055] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(1723), 1, + ACTIONS(9554), 1, + anon_sym_DOLLAR, + ACTIONS(9576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1725), 1, + ACTIONS(9578), 1, aux_sym__immediate_decimal_token5, - STATE(566), 1, - sym__immediate_decimal, - STATE(5399), 1, + STATE(5701), 1, sym_comment, - ACTIONS(1721), 2, + STATE(7566), 1, + sym__immediate_decimal, + ACTIONS(8877), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(736), 2, + STATE(7565), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195502] = 9, + [210085] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1715), 1, - anon_sym_DOLLAR, - ACTIONS(1717), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(1765), 1, + ACTIONS(4710), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1767), 1, + ACTIONS(4712), 1, aux_sym__immediate_decimal_token5, - STATE(727), 1, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + STATE(2215), 1, sym__immediate_decimal, - STATE(5400), 1, + STATE(5702), 1, sym_comment, - ACTIONS(1763), 2, + ACTIONS(4778), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(772), 2, + STATE(2092), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195532] = 4, + [210115] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8974), 1, - anon_sym_DASH2, - STATE(5401), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(9580), 1, + sym_identifier, + STATE(5671), 1, + aux_sym_collection_type_repeat1, + STATE(5703), 1, sym_comment, - ACTIONS(8972), 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, - [195552] = 9, + STATE(7063), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [210145] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1655), 1, + ACTIONS(4233), 1, anon_sym_LPAREN2, - ACTIONS(8976), 1, - anon_sym_DOLLAR, - ACTIONS(8978), 1, + ACTIONS(4239), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8980), 1, + ACTIONS(4241), 1, aux_sym__immediate_decimal_token5, - STATE(525), 1, - sym__immediate_decimal, - STATE(5402), 1, - sym_comment, - ACTIONS(8726), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(688), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195582] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1655), 1, - anon_sym_LPAREN2, - ACTIONS(8976), 1, + ACTIONS(9148), 1, anon_sym_DOLLAR, - ACTIONS(8984), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8986), 1, - aux_sym__immediate_decimal_token5, - STATE(687), 1, + STATE(1683), 1, sym__immediate_decimal, - STATE(5403), 1, + STATE(5704), 1, sym_comment, - ACTIONS(8982), 2, + ACTIONS(4237), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(686), 2, + STATE(1938), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195612] = 8, - ACTIONS(251), 1, + [210175] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(9438), 1, anon_sym_DOT, - STATE(4893), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5404), 1, + STATE(5705), 1, sym_comment, - STATE(5495), 1, + STATE(5712), 1, + aux_sym_cell_path_repeat1, + STATE(6017), 1, sym_path, - ACTIONS(1963), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [195640] = 6, + ACTIONS(982), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(984), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [210201] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8988), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8990), 1, + ACTIONS(9582), 1, aux_sym__immediate_decimal_token2, - STATE(5405), 1, + STATE(5706), 1, sym_comment, - ACTIONS(1793), 3, + ACTIONS(1799), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1795), 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1801), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [195664] = 4, + [210223] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5406), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(8659), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8661), 1, + aux_sym__immediate_decimal_token5, + STATE(5707), 1, sym_comment, - ACTIONS(1747), 3, - anon_sym_DASH_DASH, + STATE(6738), 1, + sym__immediate_decimal, + ACTIONS(8657), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2092), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [210253] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9388), 1, + aux_sym__immediate_decimal_token2, + STATE(5708), 1, + sym_comment, + ACTIONS(1671), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1745), 6, + ACTIONS(1669), 5, sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [195684] = 6, + [210275] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8992), 1, - anon_sym_DOT, - ACTIONS(8994), 1, - aux_sym__immediate_decimal_token2, - STATE(5407), 1, + ACTIONS(1304), 1, + anon_sym_DASH2, + STATE(5709), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 5, + ACTIONS(1302), 8, + sym_identifier, sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [195708] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6430), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8658), 1, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8660), 1, - anon_sym_DASH2, - STATE(5389), 1, - aux_sym_ctrl_do_repeat1, - STATE(5408), 1, - sym_comment, - STATE(5414), 1, - sym_val_variable, - STATE(6358), 1, - sym__variable_name, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [195740] = 5, + [210295] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8840), 1, + ACTIONS(9584), 1, aux_sym__immediate_decimal_token2, - STATE(5409), 1, + STATE(5710), 1, sym_comment, - ACTIONS(1647), 3, + ACTIONS(1713), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 5, + ACTIONS(1711), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [195762] = 8, + [210317] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1699), 1, + anon_sym_DASH_DASH, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + ACTIONS(9586), 1, + sym_filesize_unit, + ACTIONS(9588), 1, + sym_duration_unit, + STATE(5711), 1, + sym_comment, + ACTIONS(1687), 2, + sym_identifier, anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210347] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9590), 1, anon_sym_DOT, - STATE(4901), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5410), 1, - sym_comment, - STATE(5495), 1, + STATE(6017), 1, sym_path, - ACTIONS(1967), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [195790] = 10, + STATE(5712), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(975), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(977), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [210371] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8996), 1, + ACTIONS(6722), 1, anon_sym_DOLLAR, - ACTIONS(8998), 1, + ACTIONS(9368), 1, anon_sym_DASH_DASH, - ACTIONS(9000), 1, + ACTIONS(9370), 1, anon_sym_DASH2, - STATE(5411), 1, + ACTIONS(9568), 1, + sym_identifier, + STATE(5713), 1, sym_comment, - STATE(5414), 1, + STATE(6013), 1, + aux_sym_ctrl_do_repeat1, + STATE(7580), 1, sym_val_variable, - STATE(6237), 1, + STATE(7671), 1, sym__variable_name, - STATE(6817), 2, + STATE(6545), 2, sym_short_flag, sym_long_flag, - [195822] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5412), 1, - sym_comment, - ACTIONS(1783), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1781), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [195842] = 6, + [210403] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9002), 1, + ACTIONS(9593), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9004), 1, + ACTIONS(9595), 1, aux_sym__immediate_decimal_token2, - STATE(5413), 1, + STATE(5714), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1771), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 5, - anon_sym_LBRACE, + ACTIONS(1773), 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, - [195866] = 4, + [210427] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_DASH2, - STATE(5414), 1, + ACTIONS(9597), 1, + anon_sym_EQ2, + ACTIONS(9599), 1, + sym_short_flag_identifier, + STATE(5715), 1, sym_comment, - ACTIONS(9006), 8, - anon_sym_EQ, + ACTIONS(5029), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(5027), 4, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, - [195886] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9010), 1, - aux_sym__immediate_decimal_token2, - STATE(5415), 1, - sym_comment, - ACTIONS(1747), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1745), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [195908] = 9, + [210451] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4385), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(4391), 1, + ACTIONS(4837), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4393), 1, + ACTIONS(4839), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8575), 1, + ACTIONS(4877), 1, anon_sym_DOLLAR, - STATE(1721), 1, + STATE(2636), 1, sym__immediate_decimal, - STATE(5416), 1, + STATE(5716), 1, sym_comment, - ACTIONS(4389), 2, + ACTIONS(4889), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1869), 2, + STATE(2669), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195938] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4909), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5417), 1, - sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1971), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [195966] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9012), 1, - anon_sym_EQ2, - ACTIONS(9014), 1, - sym_short_flag_identifier, - STATE(5418), 1, - sym_comment, - ACTIONS(4932), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(4930), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195990] = 4, + [210481] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5419), 1, - sym_comment, - ACTIONS(1647), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [196010] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - STATE(5420), 1, + STATE(5717), 1, sym_comment, - ACTIONS(1645), 3, - sym__newline, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 5, - sym__space, + ACTIONS(1671), 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, - [196032] = 9, + [210501] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(4710), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(4712), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, + ACTIONS(4776), 1, anon_sym_DOLLAR, - STATE(3633), 1, + STATE(2125), 1, sym__immediate_decimal, - STATE(5421), 1, + STATE(5718), 1, sym_comment, - ACTIONS(6333), 2, + ACTIONS(4778), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3453), 2, + STATE(2033), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196062] = 5, + [210531] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_DASH2, - ACTIONS(9016), 1, - anon_sym_QMARK2, - STATE(5422), 1, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(4092), 1, + sym__immediate_decimal, + STATE(5719), 1, sym_comment, - ACTIONS(992), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [196084] = 6, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4084), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [210561] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9018), 1, - anon_sym_DOT, - ACTIONS(9020), 1, - aux_sym__immediate_decimal_token2, - STATE(5423), 1, + STATE(5720), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 5, + ACTIONS(1663), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [196108] = 7, + sym_filesize_unit, + sym_duration_unit, + [210581] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8936), 1, + ACTIONS(1953), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5721), 1, + sym_comment, + STATE(5806), 1, sym_path, - STATE(2132), 1, + STATE(6105), 1, sym_cell_path, - STATE(5424), 1, - sym_comment, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1891), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1955), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - [196134] = 9, + [210609] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - STATE(3608), 1, - sym__immediate_decimal, - STATE(5425), 1, + ACTIONS(1945), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5121), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5722), 1, sym_comment, - ACTIONS(8586), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3454), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196164] = 5, + STATE(5806), 1, + sym_path, + ACTIONS(1947), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210637] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - ACTIONS(9022), 1, - anon_sym_QMARK2, - STATE(5426), 1, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5723), 1, sym_comment, - ACTIONS(1014), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5806), 1, + sym_path, + STATE(6314), 1, + sym_cell_path, + ACTIONS(1959), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_LBRACE, + [210665] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1949), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, anon_sym_DOT, - [196186] = 8, + STATE(5163), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5724), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(1951), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210693] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9024), 1, + ACTIONS(2033), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5177), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5725), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(2035), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(9026), 1, + anon_sym_LBRACE, + [210721] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2049), 1, anon_sym_DASH2, - ACTIONS(9028), 1, - anon_sym_as, - STATE(5427), 1, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5185), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5726), 1, sym_comment, - STATE(5452), 1, - aux_sym_ctrl_do_repeat1, - STATE(6026), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8885), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [196214] = 9, + STATE(5806), 1, + sym_path, + ACTIONS(2051), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210749] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, - anon_sym_LPAREN2, - ACTIONS(8111), 1, + ACTIONS(2053), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5189), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5727), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(2055), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8117), 1, - aux_sym__immediate_decimal_token5, - STATE(5428), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210777] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1941), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5193), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5728), 1, sym_comment, - STATE(6727), 1, - sym__immediate_decimal, - ACTIONS(8113), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3454), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196244] = 6, + STATE(5806), 1, + sym_path, + ACTIONS(1943), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210805] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9030), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9032), 1, - aux_sym__immediate_decimal_token2, - STATE(5429), 1, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5195), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5729), 1, sym_comment, - ACTIONS(1793), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1795), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196268] = 8, + STATE(5806), 1, + sym_path, + ACTIONS(1873), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210833] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(1875), 1, anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(9160), 1, anon_sym_DOT, - STATE(4850), 1, + STATE(5197), 1, sym_cell_path, - STATE(5218), 1, + STATE(5526), 1, aux_sym_cell_path_repeat1, - STATE(5430), 1, + STATE(5730), 1, sym_comment, - STATE(5495), 1, + STATE(5806), 1, sym_path, - ACTIONS(1935), 4, + ACTIONS(1877), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [196296] = 8, + [210861] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(9160), 1, anon_sym_DOT, - STATE(4851), 1, + STATE(5200), 1, sym_cell_path, - STATE(5218), 1, + STATE(5526), 1, aux_sym_cell_path_repeat1, - STATE(5431), 1, + STATE(5731), 1, sym_comment, - STATE(5495), 1, + STATE(5806), 1, sym_path, - ACTIONS(1939), 4, + ACTIONS(1881), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [196324] = 6, + [210889] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9034), 1, - sym_long_flag_identifier, - ACTIONS(9036), 1, - anon_sym_EQ2, - STATE(5432), 1, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5206), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5732), 1, sym_comment, - ACTIONS(4970), 2, + STATE(5806), 1, + sym_path, + ACTIONS(1885), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210917] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1887), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(4968), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5208), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5733), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(1889), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - [196348] = 6, + anon_sym_LBRACE, + [210945] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9038), 1, + ACTIONS(1891), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, anon_sym_DOT, - ACTIONS(9040), 1, - aux_sym__immediate_decimal_token2, - STATE(5433), 1, + STATE(5212), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5734), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196372] = 4, + STATE(5806), 1, + sym_path, + ACTIONS(1893), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210973] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1895), 1, anon_sym_DASH2, - STATE(5434), 1, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5214), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5735), 1, sym_comment, - ACTIONS(1024), 8, - anon_sym_EQ, + STATE(5806), 1, + sym_path, + ACTIONS(1897), 4, sym_identifier, - sym__newline, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + [211001] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1903), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, anon_sym_DOT, - [196392] = 10, + STATE(5215), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5736), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(1905), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211029] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6386), 1, + ACTIONS(1909), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5217), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5737), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(1911), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8658), 1, anon_sym_DASH_DASH, - ACTIONS(8660), 1, + anon_sym_LBRACE, + [211057] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1917), 1, anon_sym_DASH2, - ACTIONS(8938), 1, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5219), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5738), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(1919), 4, sym_identifier, - STATE(5435), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211085] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1925), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5220), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5739), 1, sym_comment, - STATE(5650), 1, - aux_sym_ctrl_do_repeat1, - STATE(7140), 1, - sym__variable_name, - STATE(7325), 1, - sym_val_variable, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [196424] = 8, + STATE(5806), 1, + sym_path, + ACTIONS(1927), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211113] = 8, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(1929), 1, anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(9160), 1, anon_sym_DOT, - STATE(4837), 1, + STATE(5222), 1, sym_cell_path, - STATE(5218), 1, + STATE(5526), 1, aux_sym_cell_path_repeat1, - STATE(5436), 1, + STATE(5740), 1, sym_comment, - STATE(5495), 1, + STATE(5806), 1, sym_path, ACTIONS(1931), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [196452] = 4, + [211141] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(1933), 1, anon_sym_DASH2, - STATE(5437), 1, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(5230), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5741), 1, sym_comment, - ACTIONS(1020), 8, - anon_sym_EQ, + STATE(5806), 1, + sym_path, + ACTIONS(1935), 4, sym_identifier, - sym__newline, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + [211169] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1937), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, anon_sym_DOT, - [196472] = 9, + STATE(5232), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5742), 1, + sym_comment, + STATE(5806), 1, + sym_path, + ACTIONS(1939), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211197] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5743), 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, + [211217] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5744), 1, + sym_comment, + ACTIONS(1767), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1769), 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, + [211237] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5745), 1, + sym_comment, + ACTIONS(1669), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1671), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [211257] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(6678), 1, + anon_sym_DOLLAR, + ACTIONS(9130), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9132), 1, + aux_sym__immediate_decimal_token5, + STATE(5746), 1, + sym_comment, + STATE(8060), 1, + sym__immediate_decimal, + ACTIONS(9128), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2092), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211287] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9601), 1, + aux_sym__immediate_decimal_token2, + STATE(5747), 1, + sym_comment, + ACTIONS(1711), 3, + sym__newline, + anon_sym_DOT_DOT2, + 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, + [211309] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6475), 1, + anon_sym_LPAREN2, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6483), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(4091), 1, + sym__immediate_decimal, + STATE(5748), 1, + sym_comment, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4150), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211339] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5749), 1, + sym_comment, + ACTIONS(1661), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1663), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [211359] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7397), 1, + anon_sym_LPAREN2, + ACTIONS(9603), 1, + anon_sym_DOLLAR, + ACTIONS(9605), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9607), 1, + aux_sym__immediate_decimal_token5, + STATE(4827), 1, + sym__immediate_decimal, + STATE(5750), 1, + sym_comment, + ACTIONS(7445), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5296), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211389] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9609), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9611), 1, + aux_sym__immediate_decimal_token2, + STATE(5751), 1, + sym_comment, + ACTIONS(1771), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [211413] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5752), 1, + sym_comment, + ACTIONS(1711), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1713), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [211433] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5753), 1, + sym_comment, + ACTIONS(1767), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1769), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [211453] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(5699), 1, + anon_sym_DOLLAR, + ACTIONS(5701), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(5707), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(5709), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - STATE(3608), 1, + STATE(3220), 1, sym__immediate_decimal, - STATE(5438), 1, + STATE(5754), 1, sym_comment, - ACTIONS(6333), 2, + ACTIONS(5705), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3454), 2, + STATE(3245), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196502] = 5, - ACTIONS(3), 1, + [211483] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9042), 1, + ACTIONS(9613), 1, + anon_sym_DOT, + ACTIONS(9615), 1, aux_sym__immediate_decimal_token2, - STATE(5439), 1, + STATE(5755), 1, sym_comment, - ACTIONS(1745), 3, - sym__newline, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 5, - sym__space, + ACTIONS(1781), 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, - [196524] = 5, - ACTIONS(3), 1, + [211507] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9044), 1, - aux_sym__immediate_decimal_token2, - STATE(5440), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(4230), 1, + sym_cell_path, + STATE(5756), 1, sym_comment, - ACTIONS(1801), 4, - anon_sym_RBRACK, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + ACTIONS(971), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [196546] = 9, + [211533] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6341), 1, + ACTIONS(4233), 1, anon_sym_LPAREN2, - ACTIONS(6347), 1, + ACTIONS(4675), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, + ACTIONS(4677), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, + ACTIONS(9148), 1, anon_sym_DOLLAR, - STATE(3991), 1, + STATE(1937), 1, sym__immediate_decimal, - STATE(5441), 1, + STATE(5757), 1, sym_comment, - ACTIONS(6388), 2, + ACTIONS(4673), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3821), 2, + STATE(1936), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196576] = 8, + [211563] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4853), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5442), 1, - sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1943), 4, - sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196604] = 6, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2215), 1, + sym__immediate_decimal, + STATE(5758), 1, + sym_comment, + ACTIONS(6735), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2092), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211593] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9046), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9048), 1, + ACTIONS(9617), 1, + anon_sym_DOT, + ACTIONS(9619), 1, aux_sym__immediate_decimal_token2, - STATE(5443), 1, + STATE(5759), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1795), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(1671), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [196628] = 9, + sym_filesize_unit, + sym_duration_unit, + [211617] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(3697), 1, + anon_sym_DOLLAR, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(6660), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(6662), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8185), 1, - anon_sym_DOLLAR, - STATE(5444), 1, + STATE(3938), 1, + sym__immediate_decimal, + STATE(5760), 1, sym_comment, - STATE(6004), 1, + ACTIONS(6658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3947), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211647] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2221), 1, sym__immediate_decimal, - ACTIONS(6227), 2, + STATE(5761), 1, + sym_comment, + ACTIONS(6735), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5935), 2, + STATE(2144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196658] = 6, + [211677] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9621), 1, + anon_sym_DOT, + ACTIONS(9623), 1, + aux_sym__immediate_decimal_token2, + STATE(5762), 1, + sym_comment, + ACTIONS(1779), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [211701] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9050), 1, + ACTIONS(9625), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9052), 1, + ACTIONS(9627), 1, aux_sym__immediate_decimal_token2, - STATE(5445), 1, + STATE(5763), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 5, + ACTIONS(1663), 5, anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [196682] = 9, + [211725] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9629), 1, + sym_long_flag_identifier, + ACTIONS(9631), 1, + anon_sym_EQ2, + STATE(5764), 1, + sym_comment, + ACTIONS(5012), 2, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(5010), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [211749] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(4877), 1, + anon_sym_DOLLAR, + ACTIONS(4881), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(4883), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3633), 1, + STATE(2275), 1, sym__immediate_decimal, - STATE(5446), 1, + STATE(5765), 1, sym_comment, - ACTIONS(6333), 2, + ACTIONS(4879), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3453), 2, + STATE(2575), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196712] = 9, + [211779] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(8907), 1, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8909), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8934), 1, - anon_sym_DOLLAR, - STATE(5447), 1, + STATE(5766), 1, sym_comment, - STATE(7237), 1, + STATE(7394), 1, sym__immediate_decimal, - ACTIONS(8313), 2, + ACTIONS(8857), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7236), 2, + STATE(2092), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196742] = 9, + [211809] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(7397), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(9603), 1, + anon_sym_DOLLAR, + ACTIONS(9633), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(9635), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - STATE(3608), 1, + STATE(5279), 1, sym__immediate_decimal, - STATE(5448), 1, + STATE(5767), 1, sym_comment, - ACTIONS(6333), 2, + ACTIONS(7489), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3454), 2, + STATE(5273), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196772] = 9, + [211839] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(8467), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(9554), 1, + anon_sym_DOLLAR, + ACTIONS(9576), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(9578), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, - anon_sym_DOLLAR, - STATE(3452), 1, - sym__immediate_decimal, - STATE(5449), 1, + STATE(5768), 1, sym_comment, - ACTIONS(6333), 2, + STATE(7984), 1, + sym__immediate_decimal, + ACTIONS(8877), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3449), 2, + STATE(7567), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196802] = 7, + [211869] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(3190), 1, - sym_cell_path, - STATE(5450), 1, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(9576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9578), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9637), 1, + anon_sym_DOLLAR, + STATE(5769), 1, sym_comment, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - ACTIONS(975), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [196828] = 8, + STATE(6650), 1, + sym__immediate_decimal, + ACTIONS(8599), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6263), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211899] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4856), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5451), 1, - sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1947), 4, - sym_identifier, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(9554), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196856] = 8, + ACTIONS(9576), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9578), 1, + aux_sym__immediate_decimal_token5, + STATE(5770), 1, + sym_comment, + STATE(8089), 1, + sym__immediate_decimal, + ACTIONS(8877), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7336), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211929] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9024), 1, - anon_sym_DASH_DASH, - ACTIONS(9026), 1, - anon_sym_DASH2, - ACTIONS(9054), 1, - anon_sym_as, - STATE(5452), 1, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, + anon_sym_DOLLAR, + ACTIONS(9641), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9643), 1, + aux_sym__immediate_decimal_token5, + STATE(4664), 1, + sym__immediate_decimal, + STATE(5771), 1, sym_comment, - STATE(5499), 1, - aux_sym_ctrl_do_repeat1, - STATE(6026), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8730), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [196884] = 8, + ACTIONS(7419), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5035), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211959] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4860), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5453), 1, - sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1951), 4, - sym_identifier, + ACTIONS(7365), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196912] = 8, + ACTIONS(9645), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9647), 1, + aux_sym__immediate_decimal_token5, + STATE(5030), 1, + sym__immediate_decimal, + STATE(5772), 1, + sym_comment, + ACTIONS(7439), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [211989] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9024), 1, - anon_sym_DASH_DASH, - ACTIONS(9026), 1, - anon_sym_DASH2, - ACTIONS(9056), 1, - anon_sym_as, - STATE(5454), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(4782), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4784), 1, + aux_sym__immediate_decimal_token5, + STATE(2181), 1, + sym__immediate_decimal, + STATE(5773), 1, sym_comment, - STATE(5492), 1, - aux_sym_ctrl_do_repeat1, - STATE(6026), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8772), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [196940] = 9, + ACTIONS(4780), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2092), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212019] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7089), 1, + ACTIONS(6475), 1, anon_sym_LPAREN2, - ACTIONS(8925), 1, - anon_sym_DOLLAR, - ACTIONS(9058), 1, + ACTIONS(6481), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9060), 1, + ACTIONS(6483), 1, aux_sym__immediate_decimal_token5, - STATE(4598), 1, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + STATE(4083), 1, sym__immediate_decimal, - STATE(5455), 1, + STATE(5774), 1, sym_comment, - ACTIONS(7149), 2, + ACTIONS(6670), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4908), 2, + STATE(4134), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196970] = 7, + [212049] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(986), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT, - STATE(5456), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6593), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6595), 1, + aux_sym__immediate_decimal_token5, + STATE(3929), 1, + sym__immediate_decimal, + STATE(5775), 1, sym_comment, - STATE(5463), 1, - aux_sym_cell_path_repeat1, - STATE(5678), 1, - sym_path, - ACTIONS(988), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196996] = 6, + ACTIONS(6591), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2092), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212079] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9064), 1, - anon_sym_COMMA, - ACTIONS(9066), 1, - anon_sym_AT, - STATE(5457), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(8294), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8296), 1, + aux_sym__immediate_decimal_token5, + STATE(2125), 1, + sym__immediate_decimal, + STATE(5776), 1, sym_comment, - STATE(5658), 1, - sym_param_cmd, - ACTIONS(9062), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197020] = 4, - ACTIONS(3), 1, + ACTIONS(8963), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212109] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5458), 1, + ACTIONS(9649), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9651), 1, + aux_sym__immediate_decimal_token2, + STATE(5777), 1, sym_comment, - ACTIONS(1781), 3, - anon_sym_RBRACE, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1783), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1663), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [197040] = 8, + [212133] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4877), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5459), 1, - sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1955), 4, - sym_identifier, + ACTIONS(8467), 1, + anon_sym_LPAREN2, + ACTIONS(9554), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197068] = 9, + ACTIONS(9653), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9655), 1, + aux_sym__immediate_decimal_token5, + STATE(5778), 1, + sym_comment, + STATE(7294), 1, + sym__immediate_decimal, + ACTIONS(8841), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7567), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212163] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(4081), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(4197), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(4199), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8111), 1, + ACTIONS(8987), 1, anon_sym_DOLLAR, - STATE(3608), 1, + STATE(1787), 1, sym__immediate_decimal, - STATE(5460), 1, + STATE(5779), 1, sym_comment, - ACTIONS(6333), 2, + ACTIONS(4195), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3454), 2, + STATE(1785), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197098] = 4, + [212193] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9068), 1, - anon_sym_LT, - STATE(5461), 1, + ACTIONS(4081), 1, + anon_sym_LPAREN2, + ACTIONS(4087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4089), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8987), 1, + anon_sym_DOLLAR, + STATE(1616), 1, + sym__immediate_decimal, + STATE(5780), 1, sym_comment, - ACTIONS(7876), 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, - [197118] = 6, + ACTIONS(4085), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212223] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9066), 1, - anon_sym_AT, - ACTIONS(9072), 1, - anon_sym_COMMA, - STATE(5462), 1, + ACTIONS(5699), 1, + anon_sym_DOLLAR, + ACTIONS(5701), 1, + anon_sym_LPAREN2, + ACTIONS(5764), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token5, + STATE(3244), 1, + sym__immediate_decimal, + STATE(5781), 1, sym_comment, - STATE(5661), 1, - sym_param_cmd, - ACTIONS(9070), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197142] = 6, + ACTIONS(5762), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3268), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212253] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(979), 1, - anon_sym_DASH2, - ACTIONS(9074), 1, - anon_sym_DOT, - STATE(5678), 1, - sym_path, - STATE(5463), 2, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4877), 1, + anon_sym_DOLLAR, + ACTIONS(6176), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6178), 1, + aux_sym__immediate_decimal_token5, + STATE(3383), 1, + sym__immediate_decimal, + STATE(5782), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(981), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197166] = 9, + ACTIONS(6174), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2575), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212283] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(7517), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(7525), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(7527), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6331), 1, + ACTIONS(7561), 1, anon_sym_DOLLAR, - STATE(3452), 1, + STATE(5402), 1, sym__immediate_decimal, - STATE(5464), 1, + STATE(5783), 1, sym_comment, - ACTIONS(6333), 2, + ACTIONS(7586), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3449), 2, + STATE(5479), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197196] = 9, + [212313] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8099), 1, + ACTIONS(4831), 1, anon_sym_LPAREN2, - ACTIONS(8907), 1, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + ACTIONS(7383), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8909), 1, + ACTIONS(7385), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8934), 1, + STATE(4506), 1, + sym__immediate_decimal, + STATE(5784), 1, + sym_comment, + ACTIONS(7381), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2575), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212343] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5636), 1, + anon_sym_LPAREN2, + ACTIONS(9657), 1, anon_sym_DOLLAR, - STATE(5465), 1, + ACTIONS(9661), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9663), 1, + aux_sym__immediate_decimal_token5, + STATE(3170), 1, + sym__immediate_decimal, + STATE(5785), 1, sym_comment, - STATE(7558), 1, + ACTIONS(9659), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3152), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212373] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6072), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6074), 1, + aux_sym__immediate_decimal_token5, + STATE(3349), 1, sym__immediate_decimal, - ACTIONS(8313), 2, + STATE(5786), 1, + sym_comment, + ACTIONS(6070), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7240), 2, + STATE(2092), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197226] = 9, + [212403] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5558), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, anon_sym_DOLLAR, - ACTIONS(5560), 1, + ACTIONS(6660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6662), 1, + aux_sym__immediate_decimal_token5, + STATE(2125), 1, + sym__immediate_decimal, + STATE(5787), 1, + sym_comment, + ACTIONS(6735), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212433] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, anon_sym_LPAREN2, - ACTIONS(5566), 1, + ACTIONS(7347), 1, + anon_sym_DOLLAR, + ACTIONS(7351), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5568), 1, + ACTIONS(7353), 1, aux_sym__immediate_decimal_token5, - STATE(3066), 1, + STATE(4403), 1, sym__immediate_decimal, - STATE(5466), 1, + STATE(5788), 1, sym_comment, - ACTIONS(5564), 2, + ACTIONS(7349), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3119), 2, + STATE(2092), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197256] = 9, + [212463] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3613), 1, + ACTIONS(1717), 1, anon_sym_DOLLAR, - ACTIONS(6223), 1, + ACTIONS(1719), 1, anon_sym_LPAREN2, - ACTIONS(6229), 1, + ACTIONS(1751), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6231), 1, + ACTIONS(1753), 1, aux_sym__immediate_decimal_token5, - STATE(5467), 1, - sym_comment, - STATE(6808), 1, + STATE(753), 1, sym__immediate_decimal, - ACTIONS(6227), 2, + STATE(5789), 1, + sym_comment, + ACTIONS(1749), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6006), 2, + STATE(735), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197286] = 4, + [212493] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9077), 1, - anon_sym_LT, - STATE(5468), 1, + ACTIONS(7517), 1, + anon_sym_LPAREN2, + ACTIONS(7561), 1, + anon_sym_DOLLAR, + ACTIONS(7567), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7569), 1, + aux_sym__immediate_decimal_token5, + STATE(4938), 1, + sym__immediate_decimal, + STATE(5790), 1, sym_comment, - ACTIONS(7876), 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, - [197306] = 8, + ACTIONS(7565), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5403), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212523] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2064), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4883), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5469), 1, - sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(2066), 4, - sym_identifier, + ACTIONS(1649), 1, + anon_sym_LPAREN2, + ACTIONS(9665), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197334] = 9, + ACTIONS(9669), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9671), 1, + aux_sym__immediate_decimal_token5, + STATE(638), 1, + sym__immediate_decimal, + STATE(5791), 1, + sym_comment, + ACTIONS(9667), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212553] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6341), 1, + ACTIONS(6475), 1, anon_sym_LPAREN2, - ACTIONS(6347), 1, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + ACTIONS(6601), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, + ACTIONS(6603), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3747), 1, + STATE(3890), 1, sym__immediate_decimal, - STATE(5470), 1, + STATE(5792), 1, sym_comment, - ACTIONS(6388), 2, + ACTIONS(6599), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3738), 2, + STATE(4084), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197364] = 9, + [212583] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6341), 1, + ACTIONS(5636), 1, anon_sym_LPAREN2, - ACTIONS(6347), 1, + ACTIONS(9657), 1, + anon_sym_DOLLAR, + ACTIONS(9673), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6349), 1, + ACTIONS(9675), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6386), 1, - anon_sym_DOLLAR, - STATE(3988), 1, + STATE(3010), 1, sym__immediate_decimal, - STATE(5471), 1, + STATE(5793), 1, sym_comment, - ACTIONS(6388), 2, + ACTIONS(9436), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3801), 2, + STATE(3156), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197394] = 9, + [212613] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4385), 1, + ACTIONS(1717), 1, + anon_sym_DOLLAR, + ACTIONS(1719), 1, anon_sym_LPAREN2, - ACTIONS(4579), 1, + ACTIONS(1725), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4581), 1, + ACTIONS(1727), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - STATE(1867), 1, + STATE(576), 1, sym__immediate_decimal, - STATE(5472), 1, + STATE(5794), 1, sym_comment, - ACTIONS(4577), 2, + ACTIONS(1723), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1866), 2, + STATE(756), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197424] = 5, + [212643] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8664), 1, - aux_sym__immediate_decimal_token2, - STATE(5473), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4776), 1, + anon_sym_DOLLAR, + ACTIONS(6674), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6676), 1, + aux_sym__immediate_decimal_token5, + STATE(4033), 1, + sym__immediate_decimal, + STATE(5795), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197446] = 4, + ACTIONS(6672), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2092), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212673] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5474), 1, + ACTIONS(1649), 1, + anon_sym_LPAREN2, + ACTIONS(9665), 1, + anon_sym_DOLLAR, + ACTIONS(9677), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9679), 1, + aux_sym__immediate_decimal_token5, + STATE(554), 1, + sym__immediate_decimal, + STATE(5796), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 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, - [197466] = 4, + ACTIONS(9458), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(639), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212703] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9548), 1, + anon_sym_DOLLAR, + ACTIONS(9550), 1, + anon_sym_DASH_DASH, + ACTIONS(9552), 1, anon_sym_DASH2, - STATE(5475), 1, + STATE(5695), 1, + sym_val_variable, + STATE(5797), 1, sym_comment, - ACTIONS(1010), 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, - [197486] = 4, + STATE(6640), 1, + sym__variable_name, + STATE(7304), 2, + sym_short_flag, + sym_long_flag, + [212735] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_DASH2, - STATE(5476), 1, + ACTIONS(4831), 1, + anon_sym_LPAREN2, + ACTIONS(4837), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4839), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6722), 1, + anon_sym_DOLLAR, + STATE(2599), 1, + sym__immediate_decimal, + STATE(5798), 1, sym_comment, - ACTIONS(1006), 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, - [197506] = 4, - ACTIONS(3), 1, + ACTIONS(4889), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2654), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212765] = 9, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5477), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(9681), 1, + sym_identifier, + STATE(5671), 1, + aux_sym_collection_type_repeat1, + STATE(5799), 1, sym_comment, - ACTIONS(1745), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1747), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [197526] = 8, + STATE(6788), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [212795] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1893), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5478), 1, - sym_comment, - STATE(5495), 1, - sym_path, - STATE(5883), 1, - sym_cell_path, - ACTIONS(1895), 4, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(9683), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197554] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9079), 1, - anon_sym_DOT, - ACTIONS(9081), 1, - aux_sym__immediate_decimal_token2, - STATE(5479), 1, + STATE(5671), 1, + aux_sym_collection_type_repeat1, + STATE(5800), 1, sym_comment, - ACTIONS(1785), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 4, + STATE(7144), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [212825] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4704), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197578] = 8, + ACTIONS(4710), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4712), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7347), 1, + anon_sym_DOLLAR, + STATE(2125), 1, + sym__immediate_decimal, + STATE(5801), 1, + sym_comment, + ACTIONS(4778), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [212855] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4932), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5480), 1, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(9685), 1, + sym_identifier, + STATE(5671), 1, + aux_sym_collection_type_repeat1, + STATE(5802), 1, sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1887), 4, + STATE(7241), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [212885] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3141), 1, + anon_sym_DQUOTE, + ACTIONS(3147), 1, + sym_raw_string_begin, + ACTIONS(9687), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197606] = 4, + STATE(5671), 1, + aux_sym_collection_type_repeat1, + STATE(5803), 1, + sym_comment, + STATE(6850), 1, + sym_val_string, + ACTIONS(3143), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5662), 2, + sym__raw_str, + sym__str_double_quotes, + [212915] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5481), 1, + STATE(5804), 1, sym_comment, - ACTIONS(1637), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1671), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [197626] = 8, + aux_sym_unquoted_token2, + [212935] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5482), 1, + STATE(5805), 1, sym_comment, - STATE(5495), 1, - sym_path, - STATE(5996), 1, - sym_cell_path, - ACTIONS(1899), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1663), 3, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197654] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1661), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [212955] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(1022), 1, anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4835), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5483), 1, + STATE(5806), 1, sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1891), 4, + ACTIONS(1024), 8, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [197682] = 8, + anon_sym_DOT, + [212975] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1901), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4848), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5484), 1, + STATE(5807), 1, sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1903), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1713), 3, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197710] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1711), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [212995] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DASH2, - STATE(5485), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2174), 1, + sym_cell_path, + STATE(5808), 1, sym_comment, - ACTIONS(998), 8, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1947), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [197730] = 4, + [213021] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5486), 1, + ACTIONS(9689), 1, + anon_sym_DOT, + ACTIONS(9691), 1, + aux_sym__immediate_decimal_token2, + STATE(5809), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1671), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197750] = 8, + [213045] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9400), 1, + aux_sym__immediate_decimal_token2, + STATE(5810), 1, + sym_comment, + ACTIONS(1779), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [213067] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4800), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5487), 1, + STATE(5811), 1, sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1907), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1769), 3, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197778] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1767), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [213087] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5488), 1, + ACTIONS(9242), 1, + aux_sym__immediate_decimal_token2, + STATE(5812), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(1669), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1783), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1671), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197798] = 8, + [213109] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4807), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5489), 1, - sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1911), 4, - sym_identifier, + ACTIONS(3697), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197826] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1917), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4815), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5490), 1, + ACTIONS(4704), 1, + anon_sym_LPAREN2, + ACTIONS(4710), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4712), 1, + aux_sym__immediate_decimal_token5, + STATE(1973), 1, + sym__immediate_decimal, + STATE(5813), 1, sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1919), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197854] = 9, + ACTIONS(4708), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2019), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [213139] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6473), 1, anon_sym_DOLLAR, - ACTIONS(6223), 1, + ACTIONS(6475), 1, anon_sym_LPAREN2, - ACTIONS(8325), 1, + ACTIONS(6481), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, + ACTIONS(6483), 1, aux_sym__immediate_decimal_token5, - STATE(5491), 1, - sym_comment, - STATE(6049), 1, + STATE(3835), 1, sym__immediate_decimal, - ACTIONS(8323), 2, + STATE(5814), 1, + sym_comment, + ACTIONS(6479), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6146), 2, + STATE(3839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197884] = 8, + [213169] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9024), 1, - anon_sym_DASH_DASH, - ACTIONS(9026), 1, + ACTIONS(1000), 1, anon_sym_DASH2, - ACTIONS(9083), 1, - anon_sym_as, - STATE(5492), 1, + STATE(5815), 1, sym_comment, - STATE(5499), 1, - aux_sym_ctrl_do_repeat1, - STATE(6026), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8764), 3, + ACTIONS(1002), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [197912] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [213188] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1921), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4816), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5493), 1, + ACTIONS(3913), 1, + anon_sym_DQUOTE, + ACTIONS(3917), 1, + sym_raw_string_begin, + ACTIONS(9693), 1, + aux_sym_path_token1, + STATE(5601), 1, + sym_val_string, + STATE(5816), 1, sym_comment, - STATE(5495), 1, - sym_path, - ACTIONS(1923), 4, + ACTIONS(3915), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4608), 2, + sym__raw_str, + sym__str_double_quotes, + [213215] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9697), 1, + anon_sym_GT2, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + STATE(5817), 1, + sym_comment, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9695), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197940] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213240] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5494), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9705), 1, + anon_sym_GT2, + ACTIONS(9707), 1, + sym_raw_string_begin, + STATE(5818), 1, sym_comment, - ACTIONS(1645), 3, - anon_sym_RBRACE, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213265] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(969), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1647), 6, - anon_sym_LPAREN2, + ACTIONS(6680), 1, + anon_sym_DOT, + STATE(1643), 1, + sym_path, + STATE(3607), 1, + aux_sym_cell_path_repeat1, + STATE(4230), 1, + sym_cell_path, + STATE(5819), 1, + sym_comment, + ACTIONS(971), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [197960] = 4, + [213292] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1026), 1, - anon_sym_DASH2, - STATE(5495), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(5820), 1, sym_comment, - ACTIONS(1028), 8, - anon_sym_EQ, - sym_identifier, + STATE(5821), 1, + aux_sym_cell_path_repeat1, + ACTIONS(984), 5, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT, - [197980] = 8, + anon_sym_RBRACE, + [213315] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, + ACTIONS(9709), 1, anon_sym_DOT, - STATE(4829), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5495), 1, + STATE(1898), 1, sym_path, - STATE(5496), 1, + STATE(5821), 2, sym_comment, - ACTIONS(1927), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + aux_sym_cell_path_repeat1, + ACTIONS(977), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - [198008] = 4, + anon_sym_RBRACE, + [213336] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5497), 1, + STATE(5822), 1, sym_comment, - ACTIONS(1637), 3, + ACTIONS(1818), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1639), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1820), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [198028] = 10, + [213355] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8996), 1, - anon_sym_DOLLAR, - ACTIONS(8998), 1, - anon_sym_DASH_DASH, - ACTIONS(9000), 1, - anon_sym_DASH2, - STATE(5414), 1, - sym_val_variable, - STATE(5498), 1, + STATE(5823), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6817), 2, - sym_short_flag, - sym_long_flag, - [198060] = 6, + ACTIONS(1663), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1661), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [213374] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9085), 1, - anon_sym_DASH_DASH, - ACTIONS(9088), 1, + ACTIONS(990), 1, anon_sym_DASH2, - STATE(5499), 2, + ACTIONS(9712), 1, + anon_sym_QMARK2, + STATE(5824), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6026), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8893), 4, + ACTIONS(992), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_DASH_DASH, anon_sym_as, - [198084] = 3, + anon_sym_DOT, + [213395] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5500), 1, + ACTIONS(5230), 1, + anon_sym_DASH2, + STATE(5825), 1, sym_comment, - ACTIONS(9091), 8, + ACTIONS(5228), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [213414] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, + ACTIONS(9714), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5826), 1, + sym_comment, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9695), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198101] = 5, - ACTIONS(3), 1, + [213439] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(5501), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + ACTIONS(9716), 1, + anon_sym_DOT_DOT2, + ACTIONS(9720), 1, + sym_filesize_unit, + ACTIONS(9722), 1, + sym_duration_unit, + STATE(5827), 1, sym_comment, - ACTIONS(2282), 3, - anon_sym_DASH_DASH, + ACTIONS(1699), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9718), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213466] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5828), 1, + sym_comment, + ACTIONS(1713), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1711), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [213485] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5182), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2286), 4, + STATE(5829), 1, + sym_comment, + ACTIONS(5180), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [198122] = 5, - ACTIONS(3), 1, + anon_sym_as, + [213504] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(5502), 1, - sym_comment, - ACTIONS(2290), 3, - anon_sym_DASH_DASH, + ACTIONS(5186), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2294), 4, + STATE(5830), 1, + sym_comment, + ACTIONS(5184), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [198143] = 5, + anon_sym_as, + [213523] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(5503), 1, + ACTIONS(9623), 1, + aux_sym__immediate_decimal_token2, + STATE(5831), 1, sym_comment, - ACTIONS(2298), 3, - anon_sym_DASH_DASH, + ACTIONS(1779), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [213544] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9724), 1, + anon_sym_GT2, + STATE(5832), 1, + sym_comment, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213569] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5234), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2300), 4, + STATE(5833), 1, + sym_comment, + ACTIONS(5232), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [198164] = 8, + anon_sym_as, + [213588] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_raw_string_begin, - ACTIONS(9093), 1, - aux_sym_path_token1, - STATE(5287), 1, - sym_val_string, - STATE(5504), 1, + STATE(5834), 1, sym_comment, - ACTIONS(3903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - [198191] = 8, + ACTIONS(1769), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1767), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [213607] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(973), 1, - anon_sym_DOT_DOT2, - ACTIONS(6436), 1, - anon_sym_DOT, - STATE(1590), 1, - sym_path, - STATE(3190), 1, - sym_cell_path, - STATE(3414), 1, - aux_sym_cell_path_repeat1, - STATE(5505), 1, + ACTIONS(9726), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9728), 1, + aux_sym__immediate_decimal_token2, + STATE(5835), 1, sym_comment, - ACTIONS(975), 3, - anon_sym_LBRACE, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198218] = 6, - ACTIONS(251), 1, + [213630] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(5506), 1, + ACTIONS(9730), 1, + aux_sym__immediate_decimal_token2, + STATE(5836), 1, sym_comment, - STATE(5507), 1, - aux_sym_cell_path_repeat1, - ACTIONS(988), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(1799), 3, anon_sym_RBRACE, - [198241] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1801), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [213651] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9095), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(5507), 2, + ACTIONS(9732), 1, + anon_sym_QMARK2, + STATE(5837), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(981), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(1010), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1008), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - [198262] = 9, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [213672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - sym__newline, - ACTIONS(1707), 1, - sym__space, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(7184), 1, - aux_sym_unquoted_token2, - ACTIONS(9098), 1, - sym_filesize_unit, - ACTIONS(9100), 1, - sym_duration_unit, - STATE(5508), 1, + ACTIONS(9734), 1, + anon_sym_QMARK2, + STATE(5838), 1, sym_comment, - ACTIONS(4698), 2, + ACTIONS(992), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198291] = 5, - ACTIONS(251), 1, + sym__entry_separator, + ACTIONS(990), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [213693] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9104), 1, - anon_sym_COLON, - ACTIONS(9106), 1, - anon_sym_COMMA, - STATE(5509), 1, - sym_comment, - ACTIONS(9102), 6, + ACTIONS(2355), 1, sym_raw_string_begin, + ACTIONS(9736), 1, + sym__entry_separator, + STATE(5839), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2350), 5, sym_identifier, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198312] = 5, - ACTIONS(251), 1, + [213714] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9040), 1, - aux_sym__immediate_decimal_token2, - STATE(5510), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9741), 1, + anon_sym_GT2, + ACTIONS(9743), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5840), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198333] = 4, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213739] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9747), 1, + anon_sym_GT2, + ACTIONS(9749), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5841), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213764] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1008), 1, + ACTIONS(5222), 1, anon_sym_DASH2, - STATE(5511), 1, + STATE(5842), 1, sym_comment, - ACTIONS(1010), 7, - ts_builtin_sym_end, + ACTIONS(5220), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [198352] = 5, + [213783] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9108), 1, - aux_sym__immediate_decimal_token2, - STATE(5512), 1, + ACTIONS(9753), 1, + anon_sym_DASH2, + STATE(5843), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(9751), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [213802] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(9755), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5844), 1, + sym_comment, + ACTIONS(9695), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213827] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5845), 1, + sym_comment, + ACTIONS(1767), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 5, - anon_sym_LBRACE, + ACTIONS(1769), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198373] = 7, + [213846] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9757), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5846), 1, + sym_comment, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213871] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(9759), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5847), 1, + sym_comment, + ACTIONS(9695), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213896] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9761), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5848), 1, + sym_comment, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213921] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1682), 1, + STATE(1738), 1, sym_cell_path, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(5513), 1, + STATE(5849), 1, sym_comment, - ACTIONS(1775), 4, + ACTIONS(1761), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [198398] = 5, - ACTIONS(3), 1, + [213946] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(5514), 1, - sym_comment, - ACTIONS(1038), 3, - anon_sym_DASH_DASH, + ACTIONS(5226), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(1040), 4, + STATE(5850), 1, + sym_comment, + ACTIONS(5224), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [198419] = 4, + anon_sym_as, + [213965] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5515), 1, + STATE(5851), 1, sym_comment, - ACTIONS(1645), 3, + ACTIONS(1711), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 5, + ACTIONS(1713), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198438] = 6, + [213984] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9110), 1, - anon_sym_EQ2, - ACTIONS(9112), 1, - sym_short_flag_identifier, - STATE(5516), 1, + ACTIONS(1687), 1, + anon_sym_DASH2, + ACTIONS(6720), 1, + aux_sym_unquoted_token2, + STATE(5852), 1, sym_comment, - ACTIONS(4930), 3, - ts_builtin_sym_end, + ACTIONS(1699), 6, sym__newline, anon_sym_SEMI, - ACTIONS(4932), 3, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_as, - [198461] = 3, - ACTIONS(251), 1, + [214005] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5517), 1, - sym_comment, - ACTIONS(7876), 8, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, sym_raw_string_begin, + ACTIONS(9763), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5853), 1, + sym_comment, + ACTIONS(9695), 4, sym_identifier, - anon_sym_COMMA, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214030] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9765), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5854), 1, + sym_comment, + ACTIONS(9703), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198478] = 4, - ACTIONS(251), 1, + [214055] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DASH2, - STATE(5518), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(9767), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5855), 1, sym_comment, - ACTIONS(5102), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [198497] = 4, - ACTIONS(251), 1, + ACTIONS(9695), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214080] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, - anon_sym_DASH2, - STATE(5519), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9769), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5856), 1, sym_comment, - ACTIONS(5106), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [198516] = 4, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214105] = 4, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(1004), 1, anon_sym_DASH2, - STATE(5520), 1, + STATE(5857), 1, sym_comment, ACTIONS(1006), 7, ts_builtin_sym_end, @@ -409425,27 +428159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT, - [198535] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5521), 1, - sym_comment, - ACTIONS(1637), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198554] = 4, + [214124] = 4, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(996), 1, anon_sym_DASH2, - STATE(5522), 1, + STATE(5858), 1, sym_comment, ACTIONS(998), 7, ts_builtin_sym_end, @@ -409455,176 +428174,486 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT, - [198573] = 4, + [214143] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5523), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9771), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5859), 1, sym_comment, - ACTIONS(1745), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1747), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198592] = 4, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214168] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5524), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(9773), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5860), 1, sym_comment, - ACTIONS(1781), 3, - sym__newline, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214193] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(9775), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5861), 1, + sym_comment, + ACTIONS(9695), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214218] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9777), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5862), 1, + sym_comment, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214243] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9781), 1, + anon_sym_GT2, + ACTIONS(9783), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5863), 1, + sym_comment, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214268] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9787), 1, + anon_sym_GT2, + ACTIONS(9789), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5864), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214293] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9791), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5865), 1, + sym_comment, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214318] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(9793), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5866), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214343] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9795), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5867), 1, + sym_comment, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214368] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(9797), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5868), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214393] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9799), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5869), 1, + sym_comment, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214418] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9801), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5870), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214443] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9803), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5871), 1, + sym_comment, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214468] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(9805), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5872), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214493] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9807), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5873), 1, + sym_comment, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214518] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9809), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5874), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214543] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9811), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5875), 1, + sym_comment, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214568] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9813), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5876), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214593] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5877), 1, + sym_comment, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1783), 5, - sym__space, + ACTIONS(1671), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198611] = 7, + [214612] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1702), 1, - sym_cell_path, - STATE(1921), 1, - sym_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(5525), 1, + ACTIONS(435), 1, + anon_sym_DQUOTE, + ACTIONS(439), 1, + sym_raw_string_begin, + ACTIONS(9815), 1, + aux_sym_path_token1, + STATE(1819), 1, + sym_val_string, + STATE(5878), 1, sym_comment, - ACTIONS(1779), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [198636] = 4, + ACTIONS(437), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1868), 2, + sym__raw_str, + sym__str_double_quotes, + [214639] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5190), 1, - anon_sym_DASH2, - STATE(5526), 1, + ACTIONS(9615), 1, + aux_sym__immediate_decimal_token2, + STATE(5879), 1, sym_comment, - ACTIONS(5188), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [198655] = 9, - ACTIONS(251), 1, + ACTIONS(1779), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214660] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8996), 1, - anon_sym_DOLLAR, - ACTIONS(8998), 1, - anon_sym_DASH_DASH, - ACTIONS(9000), 1, - anon_sym_DASH2, - STATE(5414), 1, - sym_val_variable, - STATE(5527), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(9817), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5880), 1, sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6259), 2, - sym_short_flag, - sym_long_flag, - [198684] = 5, + ACTIONS(9695), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214685] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(986), 1, anon_sym_DASH2, - ACTIONS(9114), 1, - anon_sym_QMARK2, - STATE(5528), 1, + STATE(5881), 1, sym_comment, - ACTIONS(992), 6, + ACTIONS(988), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, + anon_sym_QMARK2, anon_sym_DOT, - [198705] = 5, + [214704] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9819), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5882), 1, + sym_comment, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214729] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(5190), 1, anon_sym_DASH2, - ACTIONS(9116), 1, - anon_sym_QMARK2, - STATE(5529), 1, + STATE(5883), 1, sym_comment, - ACTIONS(1014), 6, - ts_builtin_sym_end, + ACTIONS(5188), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [198726] = 5, + [214748] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9118), 1, + ACTIONS(9619), 1, aux_sym__immediate_decimal_token2, - STATE(5530), 1, + STATE(5884), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 5, + ACTIONS(1671), 5, anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198747] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9020), 1, - aux_sym__immediate_decimal_token2, - STATE(5531), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198768] = 4, + [214769] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5532), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(5885), 1, sym_comment, - ACTIONS(2247), 4, + ACTIONS(1034), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2249), 4, + ACTIONS(1036), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [198787] = 4, + [214790] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(5194), 1, anon_sym_DASH2, - STATE(5533), 1, + STATE(5886), 1, sym_comment, - ACTIONS(5110), 7, + ACTIONS(5192), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -409632,42135 +428661,45043 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - [198806] = 4, + [214809] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5116), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9548), 1, + anon_sym_DOLLAR, + ACTIONS(9550), 1, + anon_sym_DASH_DASH, + ACTIONS(9552), 1, anon_sym_DASH2, - STATE(5534), 1, + STATE(5695), 1, + sym_val_variable, + STATE(5887), 1, sym_comment, - ACTIONS(5114), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [198825] = 4, + STATE(6592), 1, + sym__variable_name, + STATE(7274), 2, + sym_short_flag, + sym_long_flag, + [214838] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_DASH2, - STATE(5535), 1, + ACTIONS(9821), 1, + sym_long_flag_identifier, + ACTIONS(9823), 1, + anon_sym_EQ2, + STATE(5888), 1, sym_comment, - ACTIONS(1002), 7, + ACTIONS(5012), 2, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(5010), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [198844] = 5, - ACTIONS(251), 1, + [214861] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9120), 1, - aux_sym__immediate_decimal_token2, - STATE(5536), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9825), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5889), 1, sym_comment, - ACTIONS(1801), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1803), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198865] = 3, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214886] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5537), 1, + ACTIONS(969), 1, + anon_sym_DASH2, + ACTIONS(9160), 1, + anon_sym_DOT, + STATE(4833), 1, + sym_cell_path, + STATE(5526), 1, + aux_sym_cell_path_repeat1, + STATE(5806), 1, + sym_path, + STATE(5890), 1, sym_comment, - ACTIONS(8267), 8, - sym_raw_string_begin, + ACTIONS(971), 3, sym_identifier, - anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [214913] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(9827), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5891), 1, + sym_comment, + ACTIONS(9695), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198882] = 3, - ACTIONS(251), 1, + [214938] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5538), 1, - sym_comment, - ACTIONS(8085), 8, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, sym_raw_string_begin, + ACTIONS(9829), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5892), 1, + sym_comment, + ACTIONS(9703), 4, sym_identifier, - anon_sym_COMMA, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [214963] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(9831), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5893), 1, + sym_comment, + ACTIONS(9695), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198899] = 8, + [214988] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(435), 1, + ACTIONS(9833), 1, + aux_sym__immediate_decimal_token2, + STATE(5894), 1, + sym_comment, + ACTIONS(1711), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [215009] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9835), 1, anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(9122), 1, + ACTIONS(9839), 1, aux_sym_path_token1, - STATE(1744), 1, + ACTIONS(9841), 1, + sym_raw_string_begin, + STATE(2697), 1, sym_val_string, - STATE(5539), 1, + STATE(5895), 1, sym_comment, - ACTIONS(437), 2, + ACTIONS(9837), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1779), 2, + STATE(2710), 2, sym__raw_str, sym__str_double_quotes, - [198926] = 3, - ACTIONS(251), 1, + [215036] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5540), 1, - sym_comment, - ACTIONS(8277), 8, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, sym_raw_string_begin, + ACTIONS(9843), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5896), 1, + sym_comment, + ACTIONS(9703), 4, sym_identifier, - anon_sym_COMMA, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215061] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9845), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5897), 1, + sym_comment, + ACTIONS(9739), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198943] = 3, + [215086] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(5541), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1742), 1, + sym_cell_path, + STATE(1898), 1, + sym_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(5898), 1, sym_comment, - ACTIONS(8221), 8, + ACTIONS(1765), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215111] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, + ACTIONS(9847), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5899), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198960] = 3, - ACTIONS(251), 1, + [215136] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5542), 1, - sym_comment, - ACTIONS(8225), 8, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, sym_raw_string_begin, + ACTIONS(9849), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5900), 1, + sym_comment, + ACTIONS(9695), 4, sym_identifier, - anon_sym_COMMA, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215161] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(9851), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5901), 1, + sym_comment, + ACTIONS(9703), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198977] = 6, + [215186] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9124), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9126), 1, + ACTIONS(9853), 1, + anon_sym_DQUOTE, + ACTIONS(9857), 1, + aux_sym_path_token1, + ACTIONS(9859), 1, + sym_raw_string_begin, + STATE(5902), 1, + sym_comment, + STATE(6653), 1, + sym_val_string, + ACTIONS(9855), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6393), 2, + sym__raw_str, + sym__str_double_quotes, + [215213] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9861), 1, aux_sym__immediate_decimal_token2, - STATE(5543), 1, + STATE(5903), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(1799), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1795), 4, + ACTIONS(1801), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199000] = 3, - ACTIONS(251), 1, + [215234] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5544), 1, - sym_comment, - ACTIONS(8241), 8, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, + ACTIONS(9863), 1, anon_sym_GT2, - anon_sym_AT, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5904), 1, + sym_comment, + ACTIONS(9779), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199017] = 8, + [215259] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9128), 1, + ACTIONS(3141), 1, anon_sym_DQUOTE, - ACTIONS(9132), 1, - aux_sym_path_token1, - ACTIONS(9134), 1, + ACTIONS(3147), 1, sym_raw_string_begin, - STATE(2593), 1, + ACTIONS(9865), 1, + aux_sym_path_token1, + STATE(5838), 1, sym_val_string, - STATE(5545), 1, + STATE(5905), 1, sym_comment, - ACTIONS(9130), 2, + ACTIONS(3143), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2588), 2, + STATE(5662), 2, sym__raw_str, sym__str_double_quotes, - [199044] = 8, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, + [215286] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9136), 1, - aux_sym_path_token1, - STATE(2111), 1, - sym_val_string, - STATE(5546), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9867), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5906), 1, sym_comment, - ACTIONS(111), 2, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2135), 2, - sym__raw_str, - sym__str_double_quotes, - [199071] = 6, - ACTIONS(251), 1, + [215311] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9138), 1, - sym_long_flag_identifier, - ACTIONS(9140), 1, - anon_sym_EQ2, - STATE(5547), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9869), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5907), 1, sym_comment, - ACTIONS(4970), 2, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(4968), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - [199094] = 8, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215336] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9142), 1, + ACTIONS(9871), 1, anon_sym_DQUOTE, - ACTIONS(9146), 1, + ACTIONS(9875), 1, aux_sym_path_token1, - ACTIONS(9148), 1, + ACTIONS(9877), 1, sym_raw_string_begin, - STATE(5548), 1, + STATE(5908), 1, sym_comment, - STATE(6170), 1, + STATE(6550), 1, sym_val_string, - ACTIONS(9144), 2, + ACTIONS(9873), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6114), 2, + STATE(6511), 2, sym__raw_str, sym__str_double_quotes, - [199121] = 4, - ACTIONS(251), 1, + [215363] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_DASH2, - STATE(5549), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(9879), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5909), 1, sym_comment, - ACTIONS(5192), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [199140] = 4, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215388] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5550), 1, - sym_comment, - ACTIONS(1010), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(1008), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [199159] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3145), 1, - anon_sym_DQUOTE, - ACTIONS(3151), 1, + ACTIONS(9743), 1, sym_raw_string_begin, - ACTIONS(9150), 1, - aux_sym_path_token1, - STATE(5551), 1, + ACTIONS(9881), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5910), 1, sym_comment, - STATE(5613), 1, - sym_val_string, - ACTIONS(3147), 2, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(5550), 2, - sym__raw_str, - sym__str_double_quotes, - [199186] = 5, - ACTIONS(251), 1, + [215413] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8994), 1, - aux_sym__immediate_decimal_token2, - STATE(5552), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9883), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5911), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199207] = 8, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215438] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9152), 1, + ACTIONS(9885), 1, anon_sym_DQUOTE, - ACTIONS(9156), 1, + ACTIONS(9889), 1, aux_sym_path_token1, - ACTIONS(9158), 1, + ACTIONS(9891), 1, sym_raw_string_begin, - STATE(5553), 1, - sym_comment, - STATE(6040), 1, + STATE(1585), 1, sym_val_string, - ACTIONS(9154), 2, + STATE(5912), 1, + sym_comment, + ACTIONS(9887), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6104), 2, + STATE(1724), 2, sym__raw_str, sym__str_double_quotes, - [199234] = 4, - ACTIONS(251), 1, + [215465] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9162), 1, - anon_sym_DASH2, - STATE(5554), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9893), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5913), 1, sym_comment, - ACTIONS(9160), 7, + ACTIONS(9779), 4, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199253] = 5, - ACTIONS(251), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215490] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9166), 1, - anon_sym_COLON, - ACTIONS(9168), 1, - anon_sym_COMMA, - STATE(5555), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9895), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5914), 1, sym_comment, - ACTIONS(9164), 6, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215515] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, sym_raw_string_begin, + ACTIONS(9897), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5915), 1, + sym_comment, + ACTIONS(9785), 4, sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215540] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9899), 1, anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5916), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199274] = 8, + [215565] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9170), 1, + ACTIONS(9901), 1, anon_sym_DQUOTE, - ACTIONS(9174), 1, + ACTIONS(9905), 1, aux_sym_path_token1, - ACTIONS(9176), 1, + ACTIONS(9907), 1, sym_raw_string_begin, - STATE(1546), 1, + STATE(1405), 1, sym_val_string, - STATE(5556), 1, + STATE(5917), 1, sym_comment, - ACTIONS(9172), 2, + ACTIONS(9903), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1685), 2, + STATE(1393), 2, sym__raw_str, sym__str_double_quotes, - [199301] = 4, - ACTIONS(251), 1, + [215592] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5557), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9909), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5918), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199320] = 4, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215617] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5558), 1, - sym_comment, - ACTIONS(1785), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - [199339] = 8, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(9911), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5919), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215642] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9178), 1, + ACTIONS(3403), 1, anon_sym_DQUOTE, - ACTIONS(9182), 1, - aux_sym_path_token1, - ACTIONS(9184), 1, + ACTIONS(3413), 1, sym_raw_string_begin, - STATE(1397), 1, + ACTIONS(9913), 1, + aux_sym_path_token1, + STATE(3752), 1, sym_val_string, - STATE(5559), 1, + STATE(5920), 1, sym_comment, - ACTIONS(9180), 2, + ACTIONS(3405), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1360), 2, + STATE(3753), 2, sym__raw_str, sym__str_double_quotes, - [199366] = 8, - ACTIONS(251), 1, + [215669] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9915), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5921), 1, + sym_comment, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215694] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3481), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9917), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5922), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, anon_sym_DQUOTE, - ACTIONS(3491), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [215719] = 8, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(9186), 1, + ACTIONS(9889), 1, aux_sym_path_token1, - STATE(3593), 1, + STATE(1585), 1, sym_val_string, - STATE(5560), 1, + STATE(5923), 1, sym_comment, - ACTIONS(3483), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3588), 2, + STATE(1571), 2, sym__raw_str, sym__str_double_quotes, - [199393] = 8, - ACTIONS(251), 1, + [215746] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(973), 1, - anon_sym_DASH2, - ACTIONS(8571), 1, - anon_sym_DOT, - STATE(4557), 1, - sym_cell_path, - STATE(5218), 1, - aux_sym_cell_path_repeat1, - STATE(5495), 1, - sym_path, - STATE(5561), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(9919), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5924), 1, sym_comment, - ACTIONS(975), 3, + ACTIONS(9779), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [199420] = 6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215771] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(9921), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5925), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215796] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9188), 1, - anon_sym_DOT, - ACTIONS(9190), 1, - aux_sym__immediate_decimal_token2, - STATE(5562), 1, + ACTIONS(9923), 1, + anon_sym_DQUOTE, + ACTIONS(9927), 1, + aux_sym_path_token1, + ACTIONS(9929), 1, + sym_raw_string_begin, + STATE(1747), 1, + sym_val_string, + STATE(5926), 1, + sym_comment, + ACTIONS(9925), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1678), 2, + sym__raw_str, + sym__str_double_quotes, + [215823] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5927), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 4, + ACTIONS(1663), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199443] = 4, + sym_filesize_unit, + sym_duration_unit, + [215842] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5563), 1, - sym_comment, - ACTIONS(1006), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(1004), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [199462] = 8, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(9931), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5928), 1, + sym_comment, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [215867] = 8, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9933), 1, + aux_sym_path_token1, + STATE(2211), 1, + sym_val_string, + STATE(5929), 1, + sym_comment, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2190), 2, + sym__raw_str, + sym__str_double_quotes, + [215894] = 8, ACTIONS(237), 1, anon_sym_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(9174), 1, + ACTIONS(9935), 1, aux_sym_path_token1, - STATE(1546), 1, + STATE(1859), 1, sym_val_string, - STATE(5564), 1, + STATE(5930), 1, sym_comment, ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1515), 2, + STATE(1571), 2, sym__raw_str, sym__str_double_quotes, - [199489] = 8, + [215921] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9192), 1, + ACTIONS(9937), 1, anon_sym_DQUOTE, - ACTIONS(9196), 1, + ACTIONS(9941), 1, aux_sym_path_token1, - ACTIONS(9198), 1, + ACTIONS(9943), 1, sym_raw_string_begin, - STATE(1709), 1, + STATE(1430), 1, sym_val_string, - STATE(5565), 1, + STATE(5931), 1, sym_comment, - ACTIONS(9194), 2, + ACTIONS(9939), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1657), 2, + STATE(1418), 2, sym__raw_str, sym__str_double_quotes, - [199516] = 4, + [215948] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5566), 1, + STATE(5932), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 6, + ACTIONS(1713), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [199535] = 8, - ACTIONS(237), 1, - anon_sym_DQUOTE, + [215967] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(9200), 1, + ACTIONS(9945), 1, + anon_sym_DQUOTE, + ACTIONS(9949), 1, aux_sym_path_token1, - STATE(1816), 1, + ACTIONS(9951), 1, + sym_raw_string_begin, + STATE(1382), 1, sym_val_string, - STATE(5567), 1, + STATE(5933), 1, sym_comment, - ACTIONS(239), 2, + ACTIONS(9947), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1515), 2, + STATE(1386), 2, sym__raw_str, sym__str_double_quotes, - [199562] = 5, - ACTIONS(3), 1, + [215994] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9202), 1, - aux_sym__immediate_decimal_token2, - STATE(5568), 1, + STATE(5934), 1, sym_comment, - ACTIONS(1801), 3, - anon_sym_RBRACE, + ACTIONS(1767), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1803), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1769), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199583] = 8, + sym_filesize_unit, + sym_duration_unit, + [216013] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5935), 1, + sym_comment, + ACTIONS(2242), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2244), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216032] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9204), 1, + ACTIONS(2195), 1, + sym_raw_string_begin, + ACTIONS(4403), 1, anon_sym_DQUOTE, - ACTIONS(9208), 1, + ACTIONS(9953), 1, aux_sym_path_token1, - ACTIONS(9210), 1, - sym_raw_string_begin, - STATE(1384), 1, + STATE(4817), 1, sym_val_string, - STATE(5569), 1, + STATE(5936), 1, sym_comment, - ACTIONS(9206), 2, + ACTIONS(4405), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1388), 2, + STATE(4801), 2, sym__raw_str, sym__str_double_quotes, - [199610] = 8, + [216059] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(9955), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5937), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216084] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + sym_identifier, + ACTIONS(1699), 1, + anon_sym_DOLLAR, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + ACTIONS(9957), 1, + sym_filesize_unit, + ACTIONS(9959), 1, + sym_duration_unit, + STATE(5938), 1, + sym_comment, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216113] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9212), 1, + ACTIONS(9961), 1, anon_sym_DQUOTE, - ACTIONS(9216), 1, + ACTIONS(9965), 1, aux_sym_path_token1, - ACTIONS(9218), 1, + ACTIONS(9967), 1, sym_raw_string_begin, - STATE(1954), 1, + STATE(2627), 1, sym_val_string, - STATE(5570), 1, + STATE(5939), 1, sym_comment, - ACTIONS(9214), 2, + ACTIONS(9963), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1423), 2, + STATE(2606), 2, sym__raw_str, sym__str_double_quotes, - [199637] = 8, + [216140] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9969), 1, + anon_sym_EQ2, + ACTIONS(9971), 1, + sym_short_flag_identifier, + STATE(5940), 1, + sym_comment, + ACTIONS(5027), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5029), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + [216163] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2172), 1, + ACTIONS(2027), 1, sym_raw_string_begin, - ACTIONS(4339), 1, + ACTIONS(4441), 1, anon_sym_DQUOTE, - ACTIONS(9220), 1, + ACTIONS(9973), 1, aux_sym_path_token1, - STATE(4607), 1, + STATE(4706), 1, sym_val_string, - STATE(5571), 1, + STATE(5941), 1, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4443), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4591), 2, + STATE(4655), 2, sym__raw_str, sym__str_double_quotes, - [199664] = 8, + [216190] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9222), 1, + ACTIONS(3913), 1, anon_sym_DQUOTE, - ACTIONS(9226), 1, - aux_sym_path_token1, - ACTIONS(9228), 1, + ACTIONS(3917), 1, sym_raw_string_begin, - STATE(2506), 1, + ACTIONS(9815), 1, + aux_sym_path_token1, + STATE(1819), 1, sym_val_string, - STATE(5572), 1, + STATE(5942), 1, sym_comment, - ACTIONS(9224), 2, + ACTIONS(3915), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2542), 2, + STATE(4608), 2, sym__raw_str, sym__str_double_quotes, - [199691] = 8, + [216217] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9174), 1, - aux_sym_path_token1, - ACTIONS(9178), 1, + ACTIONS(9975), 1, anon_sym_DQUOTE, - ACTIONS(9184), 1, + ACTIONS(9979), 1, + aux_sym_path_token1, + ACTIONS(9981), 1, sym_raw_string_begin, - STATE(1546), 1, + STATE(1466), 1, sym_val_string, - STATE(5573), 1, + STATE(5943), 1, sym_comment, - ACTIONS(9180), 2, + ACTIONS(9977), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1360), 2, + STATE(1483), 2, sym__raw_str, sym__str_double_quotes, - [199718] = 8, + [216244] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym_raw_string_begin, - ACTIONS(4377), 1, + ACTIONS(9983), 1, + anon_sym_DOT, + ACTIONS(9985), 1, + aux_sym__immediate_decimal_token2, + STATE(5944), 1, + sym_comment, + ACTIONS(1779), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216267] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9987), 1, anon_sym_DQUOTE, - ACTIONS(9230), 1, + ACTIONS(9991), 1, aux_sym_path_token1, - STATE(4385), 1, + ACTIONS(9993), 1, + sym_raw_string_begin, + STATE(1613), 1, sym_val_string, - STATE(5574), 1, + STATE(5945), 1, sym_comment, - ACTIONS(4379), 2, + ACTIONS(9989), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4475), 2, + STATE(1655), 2, sym__raw_str, sym__str_double_quotes, - [199745] = 8, + [216294] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9232), 1, + ACTIONS(9995), 1, anon_sym_DQUOTE, - ACTIONS(9236), 1, + ACTIONS(9999), 1, aux_sym_path_token1, - ACTIONS(9238), 1, + ACTIONS(10001), 1, sym_raw_string_begin, - STATE(1473), 1, + STATE(4421), 1, sym_val_string, - STATE(5575), 1, + STATE(5946), 1, sym_comment, - ACTIONS(9234), 2, + ACTIONS(9997), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1462), 2, + STATE(4439), 2, sym__raw_str, sym__str_double_quotes, - [199772] = 8, + [216321] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9240), 1, + ACTIONS(10003), 1, anon_sym_DQUOTE, - ACTIONS(9244), 1, + ACTIONS(10007), 1, aux_sym_path_token1, - ACTIONS(9246), 1, + ACTIONS(10009), 1, sym_raw_string_begin, - STATE(1611), 1, + STATE(2944), 1, sym_val_string, - STATE(5576), 1, + STATE(5947), 1, sym_comment, - ACTIONS(9242), 2, + ACTIONS(10005), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1640), 2, + STATE(2951), 2, sym__raw_str, sym__str_double_quotes, - [199799] = 8, + [216348] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9248), 1, + ACTIONS(10011), 1, anon_sym_DQUOTE, - ACTIONS(9252), 1, + ACTIONS(10015), 1, aux_sym_path_token1, - ACTIONS(9254), 1, + ACTIONS(10017), 1, sym_raw_string_begin, - STATE(4224), 1, + STATE(4371), 1, sym_val_string, - STATE(5577), 1, + STATE(5948), 1, sym_comment, - ACTIONS(9250), 2, + ACTIONS(10013), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4204), 2, + STATE(4400), 2, sym__raw_str, sym__str_double_quotes, - [199826] = 8, + [216375] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9256), 1, + ACTIONS(4129), 1, anon_sym_DQUOTE, - ACTIONS(9260), 1, - aux_sym_path_token1, - ACTIONS(9262), 1, + ACTIONS(4133), 1, sym_raw_string_begin, - STATE(2829), 1, + ACTIONS(10019), 1, + aux_sym_path_token1, + STATE(3702), 1, sym_val_string, - STATE(5578), 1, + STATE(5949), 1, sym_comment, - ACTIONS(9258), 2, + ACTIONS(4131), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2837), 2, + STATE(3508), 2, sym__raw_str, sym__str_double_quotes, - [199853] = 8, + [216402] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9264), 1, + ACTIONS(10021), 1, anon_sym_DQUOTE, - ACTIONS(9268), 1, + ACTIONS(10025), 1, aux_sym_path_token1, - ACTIONS(9270), 1, + ACTIONS(10027), 1, sym_raw_string_begin, - STATE(4135), 1, + STATE(1453), 1, sym_val_string, - STATE(5579), 1, + STATE(5950), 1, sym_comment, - ACTIONS(9266), 2, + ACTIONS(10023), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4137), 2, + STATE(1412), 2, sym__raw_str, sym__str_double_quotes, - [199880] = 8, + [216429] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(9937), 1, anon_sym_DQUOTE, - ACTIONS(4565), 1, + ACTIONS(9943), 1, sym_raw_string_begin, - ACTIONS(9272), 1, + ACTIONS(10029), 1, aux_sym_path_token1, - STATE(3514), 1, + STATE(2017), 1, sym_val_string, - STATE(5580), 1, + STATE(5951), 1, sym_comment, - ACTIONS(4563), 2, + ACTIONS(9939), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3352), 2, + STATE(1418), 2, sym__raw_str, sym__str_double_quotes, - [199907] = 8, + [216456] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9274), 1, - anon_sym_DQUOTE, - ACTIONS(9278), 1, + ACTIONS(9889), 1, aux_sym_path_token1, - ACTIONS(9280), 1, + ACTIONS(9901), 1, + anon_sym_DQUOTE, + ACTIONS(9907), 1, sym_raw_string_begin, - STATE(1422), 1, + STATE(1585), 1, sym_val_string, - STATE(5581), 1, + STATE(5952), 1, sym_comment, - ACTIONS(9276), 2, + ACTIONS(9903), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1433), 2, + STATE(1393), 2, sym__raw_str, sym__str_double_quotes, - [199934] = 8, + [216483] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9282), 1, + ACTIONS(10031), 1, anon_sym_DQUOTE, - ACTIONS(9286), 1, + ACTIONS(10035), 1, aux_sym_path_token1, - ACTIONS(9288), 1, + ACTIONS(10037), 1, sym_raw_string_begin, - STATE(2777), 1, + STATE(2900), 1, sym_val_string, - STATE(5582), 1, + STATE(5953), 1, sym_comment, - ACTIONS(9284), 2, + ACTIONS(10033), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2780), 2, + STATE(2901), 2, sym__raw_str, sym__str_double_quotes, - [199961] = 8, + [216510] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9290), 1, + ACTIONS(10039), 1, anon_sym_DQUOTE, - ACTIONS(9294), 1, + ACTIONS(10043), 1, aux_sym_path_token1, - ACTIONS(9296), 1, + ACTIONS(10045), 1, sym_raw_string_begin, - STATE(2934), 1, + STATE(3069), 1, sym_val_string, - STATE(5583), 1, + STATE(5954), 1, sym_comment, - ACTIONS(9292), 2, + ACTIONS(10041), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2939), 2, + STATE(3077), 2, sym__raw_str, sym__str_double_quotes, - [199988] = 8, + [216537] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(10047), 1, anon_sym_DQUOTE, - ACTIONS(9302), 1, + ACTIONS(10051), 1, aux_sym_path_token1, - ACTIONS(9304), 1, + ACTIONS(10053), 1, sym_raw_string_begin, - STATE(474), 1, + STATE(459), 1, sym_val_string, - STATE(5584), 1, + STATE(5955), 1, sym_comment, - ACTIONS(9300), 2, + ACTIONS(10049), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(477), 2, + STATE(462), 2, sym__raw_str, sym__str_double_quotes, - [200015] = 8, + [216564] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9306), 1, + ACTIONS(10055), 1, anon_sym_DQUOTE, - ACTIONS(9310), 1, + ACTIONS(10059), 1, aux_sym_path_token1, - ACTIONS(9312), 1, + ACTIONS(10061), 1, sym_raw_string_begin, - STATE(594), 1, + STATE(585), 1, sym_val_string, - STATE(5585), 1, + STATE(5956), 1, sym_comment, - ACTIONS(9308), 2, + ACTIONS(10057), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(599), 2, + STATE(589), 2, sym__raw_str, sym__str_double_quotes, - [200042] = 8, + [216591] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3677), 1, + ACTIONS(3665), 1, anon_sym_DQUOTE, - ACTIONS(3687), 1, + ACTIONS(3679), 1, sym_raw_string_begin, - ACTIONS(9314), 1, + ACTIONS(10063), 1, aux_sym_path_token1, - STATE(4730), 1, + STATE(5010), 1, sym_val_string, - STATE(5586), 1, + STATE(5957), 1, sym_comment, - ACTIONS(3679), 2, + ACTIONS(3667), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4712), 2, + STATE(4958), 2, sym__raw_str, sym__str_double_quotes, - [200069] = 8, + [216618] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9316), 1, + ACTIONS(10065), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(10069), 1, aux_sym_path_token1, - ACTIONS(9322), 1, + ACTIONS(10071), 1, sym_raw_string_begin, - STATE(4229), 1, + STATE(4498), 1, sym_val_string, - STATE(5587), 1, + STATE(5958), 1, sym_comment, - ACTIONS(9318), 2, + ACTIONS(10067), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4312), 2, + STATE(4518), 2, sym__raw_str, sym__str_double_quotes, - [200096] = 8, + [216645] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4447), 1, + ACTIONS(4497), 1, anon_sym_DQUOTE, - ACTIONS(4457), 1, + ACTIONS(4507), 1, sym_raw_string_begin, - ACTIONS(9324), 1, + ACTIONS(10073), 1, aux_sym_path_token1, - STATE(3551), 1, + STATE(3746), 1, sym_val_string, - STATE(5588), 1, + STATE(5959), 1, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4499), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3567), 2, + STATE(3792), 2, sym__raw_str, sym__str_double_quotes, - [200123] = 8, + [216672] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9326), 1, + ACTIONS(10075), 1, anon_sym_DQUOTE, - ACTIONS(9330), 1, + ACTIONS(10079), 1, aux_sym_path_token1, - ACTIONS(9332), 1, + ACTIONS(10081), 1, sym_raw_string_begin, - STATE(2723), 1, + STATE(2818), 1, sym_val_string, - STATE(5589), 1, + STATE(5960), 1, sym_comment, - ACTIONS(9328), 2, + ACTIONS(10077), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2699), 2, + STATE(2820), 2, sym__raw_str, sym__str_double_quotes, - [200150] = 8, + [216699] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9334), 1, + ACTIONS(10083), 1, anon_sym_DQUOTE, - ACTIONS(9338), 1, + ACTIONS(10087), 1, aux_sym_path_token1, - ACTIONS(9340), 1, + ACTIONS(10089), 1, sym_raw_string_begin, - STATE(2878), 1, + STATE(3033), 1, sym_val_string, - STATE(5590), 1, + STATE(5961), 1, sym_comment, - ACTIONS(9336), 2, + ACTIONS(10085), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2885), 2, + STATE(3052), 2, sym__raw_str, sym__str_double_quotes, - [200177] = 8, + [216726] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4521), 1, + ACTIONS(4569), 1, anon_sym_DQUOTE, - ACTIONS(4531), 1, + ACTIONS(4579), 1, sym_raw_string_begin, - ACTIONS(9342), 1, + ACTIONS(10091), 1, aux_sym_path_token1, - STATE(5529), 1, + STATE(5824), 1, sym_val_string, - STATE(5591), 1, + STATE(5962), 1, sym_comment, - ACTIONS(4523), 2, + ACTIONS(4571), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5511), 2, + STATE(5815), 2, sym__raw_str, sym__str_double_quotes, - [200204] = 8, + [216753] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9344), 1, + ACTIONS(10093), 1, anon_sym_DQUOTE, - ACTIONS(9348), 1, + ACTIONS(10097), 1, aux_sym_path_token1, - ACTIONS(9350), 1, + ACTIONS(10099), 1, sym_raw_string_begin, - STATE(5426), 1, + STATE(5678), 1, sym_val_string, - STATE(5592), 1, + STATE(5963), 1, sym_comment, - ACTIONS(9346), 2, + ACTIONS(10095), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5475), 2, + STATE(5686), 2, sym__raw_str, sym__str_double_quotes, - [200231] = 8, + [216780] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9352), 1, + ACTIONS(10101), 1, anon_sym_DQUOTE, - ACTIONS(9356), 1, + ACTIONS(10105), 1, aux_sym_path_token1, - ACTIONS(9358), 1, + ACTIONS(10107), 1, sym_raw_string_begin, - STATE(160), 1, + STATE(154), 1, sym_val_string, - STATE(5593), 1, + STATE(5964), 1, sym_comment, - ACTIONS(9354), 2, + ACTIONS(10103), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(159), 2, + STATE(156), 2, sym__raw_str, sym__str_double_quotes, - [200258] = 8, + [216807] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9360), 1, + ACTIONS(10109), 1, anon_sym_DQUOTE, - ACTIONS(9364), 1, + ACTIONS(10113), 1, aux_sym_path_token1, - ACTIONS(9366), 1, + ACTIONS(10115), 1, sym_raw_string_begin, - STATE(524), 1, + STATE(523), 1, sym_val_string, - STATE(5594), 1, + STATE(5965), 1, sym_comment, - ACTIONS(9362), 2, + ACTIONS(10111), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(546), 2, + STATE(538), 2, sym__raw_str, sym__str_double_quotes, - [200285] = 8, + [216834] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9368), 1, + ACTIONS(10117), 1, anon_sym_DQUOTE, - ACTIONS(9372), 1, + ACTIONS(10121), 1, aux_sym_path_token1, - ACTIONS(9374), 1, + ACTIONS(10123), 1, sym_raw_string_begin, - STATE(438), 1, + STATE(428), 1, sym_val_string, - STATE(5595), 1, + STATE(5966), 1, sym_comment, - ACTIONS(9370), 2, + ACTIONS(10119), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(448), 2, + STATE(432), 2, sym__raw_str, sym__str_double_quotes, - [200312] = 8, + [216861] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9376), 1, + ACTIONS(10125), 1, anon_sym_DQUOTE, - ACTIONS(9380), 1, + ACTIONS(10129), 1, aux_sym_path_token1, - ACTIONS(9382), 1, + ACTIONS(10131), 1, sym_raw_string_begin, - STATE(394), 1, + STATE(387), 1, sym_val_string, - STATE(5596), 1, + STATE(5967), 1, sym_comment, - ACTIONS(9378), 2, + ACTIONS(10127), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(391), 2, + STATE(384), 2, sym__raw_str, sym__str_double_quotes, - [200339] = 4, - ACTIONS(251), 1, + [216888] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5597), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(10133), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5968), 1, sym_comment, - ACTIONS(1647), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1645), 5, + ACTIONS(9779), 4, sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200358] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216913] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5598), 1, - sym_comment, - ACTIONS(998), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(996), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [200377] = 8, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(10135), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5969), 1, + sym_comment, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [216938] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9216), 1, + ACTIONS(10029), 1, aux_sym_path_token1, - ACTIONS(9384), 1, + ACTIONS(10137), 1, anon_sym_DQUOTE, - ACTIONS(9388), 1, + ACTIONS(10141), 1, sym_raw_string_begin, - STATE(1954), 1, + STATE(2017), 1, sym_val_string, - STATE(5599), 1, + STATE(5970), 1, sym_comment, - ACTIONS(9386), 2, + ACTIONS(10139), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1917), 2, + STATE(1977), 2, sym__raw_str, sym__str_double_quotes, - [200404] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5600), 1, - sym_comment, - ACTIONS(1639), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1637), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200423] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5601), 1, - sym_comment, - ACTIONS(1747), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1745), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200442] = 4, + [216965] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5602), 1, + ACTIONS(1022), 1, + anon_sym_DASH2, + STATE(5971), 1, sym_comment, - ACTIONS(1783), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1781), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200461] = 4, + ACTIONS(1024), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [216984] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5603), 1, + ACTIONS(10143), 1, + aux_sym__immediate_decimal_token2, + STATE(5972), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1713), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200480] = 4, + [217005] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5604), 1, + ACTIONS(5114), 1, + anon_sym_DASH2, + ACTIONS(10145), 1, + anon_sym_EQ2, + STATE(5973), 1, sym_comment, - ACTIONS(1781), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1783), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200499] = 4, + ACTIONS(5112), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [217026] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5605), 1, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(5974), 1, sym_comment, - ACTIONS(1793), 4, - anon_sym_RBRACK, + ACTIONS(2254), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2258), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [200518] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1707), 1, - anon_sym_DOLLAR, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - ACTIONS(9390), 1, - sym_filesize_unit, - ACTIONS(9392), 1, - sym_duration_unit, - STATE(5606), 1, - sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200547] = 4, + [217047] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5607), 1, - sym_comment, - ACTIONS(1002), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(1000), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [200566] = 5, + ACTIONS(9749), 1, + sym_raw_string_begin, + ACTIONS(10147), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5975), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217072] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5132), 1, anon_sym_DASH2, - ACTIONS(9394), 1, + ACTIONS(10149), 1, anon_sym_EQ2, - STATE(5608), 1, + STATE(5976), 1, sym_comment, - ACTIONS(5030), 6, + ACTIONS(5130), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [200587] = 5, - ACTIONS(251), 1, + [217093] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5050), 1, - anon_sym_DASH2, - ACTIONS(9396), 1, - anon_sym_EQ2, - STATE(5609), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(5977), 1, sym_comment, - ACTIONS(5048), 6, + ACTIONS(2272), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2274), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [200608] = 5, - ACTIONS(251), 1, + [217114] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8919), 1, - aux_sym__immediate_decimal_token2, - STATE(5610), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(5978), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200629] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5120), 1, + ACTIONS(2234), 3, + anon_sym_DASH_DASH, anon_sym_DASH2, - STATE(5611), 1, - sym_comment, - ACTIONS(5118), 7, + anon_sym_as, + ACTIONS(2238), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, - anon_sym_as, - [200648] = 5, + [217135] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9398), 1, - anon_sym_QMARK2, - STATE(5612), 1, - sym_comment, - ACTIONS(992), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(990), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [200669] = 5, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(10151), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5979), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217160] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9400), 1, - anon_sym_QMARK2, - STATE(5613), 1, - sym_comment, - ACTIONS(1014), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(1012), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [200690] = 5, + ACTIONS(9701), 1, + sym_raw_string_begin, + ACTIONS(10153), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5980), 1, + sym_comment, + ACTIONS(9695), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217185] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(1018), 1, anon_sym_DASH2, - ACTIONS(6484), 1, - aux_sym_unquoted_token2, - STATE(5614), 1, + STATE(5981), 1, sym_comment, - ACTIONS(1707), 6, + ACTIONS(1020), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [200711] = 4, + anon_sym_DOT, + [217204] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5124), 1, + ACTIONS(1014), 1, anon_sym_DASH2, - STATE(5615), 1, + STATE(5982), 1, sym_comment, - ACTIONS(5122), 7, + ACTIONS(1016), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - [200730] = 4, + anon_sym_DOT, + [217223] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5616), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + ACTIONS(10155), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5983), 1, sym_comment, - ACTIONS(1801), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217248] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, + sym_raw_string_begin, + ACTIONS(10157), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5984), 1, + sym_comment, + ACTIONS(9703), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217273] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1687), 1, + sym__newline, + ACTIONS(1699), 1, + sym__space, + ACTIONS(4720), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 4, - anon_sym_LPAREN2, + ACTIONS(7487), 1, + aux_sym_unquoted_token2, + ACTIONS(10159), 1, + sym_filesize_unit, + ACTIONS(10161), 1, + sym_duration_unit, + STATE(5985), 1, + sym_comment, + ACTIONS(4722), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [217302] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9743), 1, + sym_raw_string_begin, + ACTIONS(10163), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5986), 1, + sym_comment, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217327] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, sym__entry_separator, - [200749] = 5, + ACTIONS(9789), 1, + sym_raw_string_begin, + ACTIONS(10165), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5987), 1, + sym_comment, + ACTIONS(9785), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [217352] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9402), 1, + ACTIONS(9691), 1, aux_sym__immediate_decimal_token2, - STATE(5617), 1, + STATE(5988), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1803), 5, - sym__newline, + ACTIONS(1671), 5, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200770] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(9404), 1, - anon_sym_DOT_DOT2, - ACTIONS(9408), 1, sym_filesize_unit, - ACTIONS(9410), 1, sym_duration_unit, - STATE(5618), 1, + [217373] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5989), 1, sym_comment, - ACTIONS(1707), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9406), 2, + ACTIONS(1779), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200797] = 3, - ACTIONS(251), 1, + sym__entry_separator, + [217392] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5619), 1, - sym_comment, - ACTIONS(1010), 8, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(10167), 1, anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5990), 1, + sym_comment, + ACTIONS(9745), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200814] = 4, + [217417] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5620), 1, + STATE(5991), 1, sym_comment, - ACTIONS(1824), 4, + ACTIONS(1771), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1826), 4, + ACTIONS(1773), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [200833] = 8, - ACTIONS(251), 1, + [217436] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9212), 1, - anon_sym_DQUOTE, - ACTIONS(9218), 1, - sym_raw_string_begin, - ACTIONS(9412), 1, - aux_sym_path_token1, - STATE(1445), 1, - sym_val_string, - STATE(5621), 1, + STATE(5992), 1, sym_comment, - ACTIONS(9214), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1423), 2, - sym__raw_str, - sym__str_double_quotes, - [200860] = 3, - ACTIONS(251), 1, + ACTIONS(1669), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [217455] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5622), 1, + STATE(5993), 1, sym_comment, - ACTIONS(1006), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200877] = 3, + ACTIONS(1799), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1801), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [217474] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5623), 1, + STATE(5994), 1, sym_comment, - ACTIONS(998), 8, - sym_raw_string_begin, + ACTIONS(1671), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1669), 5, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200894] = 3, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [217493] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5624), 1, + STATE(5995), 1, sym_comment, - ACTIONS(1002), 8, - sym_raw_string_begin, + ACTIONS(1661), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1663), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [217512] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9366), 1, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200911] = 4, + ACTIONS(9548), 1, + anon_sym_DOLLAR, + ACTIONS(9550), 1, + anon_sym_DASH_DASH, + ACTIONS(9552), 1, + anon_sym_DASH2, + STATE(5695), 1, + sym_val_variable, + STATE(5996), 1, + sym_comment, + STATE(6640), 1, + sym__variable_name, + STATE(7304), 2, + sym_short_flag, + sym_long_flag, + [217541] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1026), 1, + ACTIONS(1008), 1, anon_sym_DASH2, - STATE(5625), 1, + ACTIONS(10169), 1, + anon_sym_QMARK2, + STATE(5997), 1, sym_comment, - ACTIONS(1028), 7, + ACTIONS(1010), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, anon_sym_DOT, - [200930] = 8, - ACTIONS(251), 1, + [217562] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3901), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9749), 1, sym_raw_string_begin, - ACTIONS(9122), 1, - aux_sym_path_token1, - STATE(1744), 1, - sym_val_string, - STATE(5626), 1, + ACTIONS(10171), 1, + anon_sym_GT2, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(5998), 1, sym_comment, - ACTIONS(3903), 2, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(4386), 2, - sym__raw_str, - sym__str_double_quotes, - [200957] = 4, + [217587] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1022), 1, - anon_sym_DASH2, - STATE(5627), 1, + ACTIONS(4980), 1, + anon_sym_DOT, + STATE(1733), 1, + aux_sym_cell_path_repeat1, + STATE(1898), 1, + sym_path, + STATE(5999), 1, sym_comment, - ACTIONS(1024), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, + STATE(7778), 1, + sym_cell_path, + ACTIONS(5994), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217611] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10173), 1, anon_sym_DOT, - [200976] = 4, - ACTIONS(251), 1, + STATE(6000), 1, + sym_comment, + STATE(6283), 1, + aux_sym_cell_path_repeat1, + STATE(7065), 1, + sym_path, + STATE(7479), 1, + sym_cell_path, + ACTIONS(1957), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [217635] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, - anon_sym_DASH2, - STATE(5628), 1, + ACTIONS(2035), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6001), 1, sym_comment, - ACTIONS(1020), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + STATE(7749), 1, + sym_cell_path, + ACTIONS(2033), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [200995] = 9, + [217661] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6002), 1, + sym_comment, + ACTIONS(1779), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [217679] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8996), 1, - anon_sym_DOLLAR, - ACTIONS(8998), 1, - anon_sym_DASH_DASH, - ACTIONS(9000), 1, - anon_sym_DASH2, - STATE(5414), 1, - sym_val_variable, - STATE(5629), 1, + ACTIONS(1699), 1, + anon_sym_in2, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + ACTIONS(10177), 1, + sym_filesize_unit, + ACTIONS(10179), 1, + sym_duration_unit, + STATE(6003), 1, sym_comment, - STATE(6237), 1, - sym__variable_name, - STATE(6817), 2, - sym_short_flag, - sym_long_flag, - [201024] = 5, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [217705] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(10181), 1, + anon_sym_DOT_DOT2, + STATE(6004), 1, + sym_comment, + ACTIONS(10183), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1848), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9081), 1, - aux_sym__immediate_decimal_token2, - STATE(5630), 1, + STATE(6005), 1, sym_comment, - ACTIONS(1785), 3, + ACTIONS(1771), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 4, + ACTIONS(1773), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [201045] = 8, + [217745] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9414), 1, - anon_sym_DOT, - STATE(5631), 1, + ACTIONS(10185), 1, + anon_sym_DOT_DOT2, + STATE(6006), 1, sym_comment, - STATE(6243), 1, - sym__immediate_decimal, - ACTIONS(8323), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [201071] = 8, + ACTIONS(10187), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1838), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, + STATE(6007), 1, + sym_comment, + ACTIONS(1799), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1801), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5632), 1, + [217785] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6008), 1, sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(7425), 1, - sym_cell_path, - ACTIONS(1961), 2, - anon_sym_RBRACK, + ACTIONS(1818), 3, anon_sym_RBRACE, - [201097] = 8, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1820), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [217803] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(1951), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5633), 1, + STATE(6009), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7204), 1, + STATE(7560), 1, sym_cell_path, - ACTIONS(1953), 2, + ACTIONS(1949), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201123] = 4, - ACTIONS(3), 1, + [217829] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5634), 1, + ACTIONS(1687), 1, + anon_sym_DASH2, + ACTIONS(8941), 1, + aux_sym_unquoted_token2, + STATE(6010), 1, sym_comment, - ACTIONS(1801), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1803), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201141] = 4, + ACTIONS(1699), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [217849] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5635), 1, + ACTIONS(10189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10191), 1, + aux_sym__immediate_decimal_token2, + STATE(6011), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(1771), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1795), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1773), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201159] = 5, + [217871] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9418), 1, - sym__newline, - ACTIONS(9421), 1, - sym__space, - STATE(5636), 2, + ACTIONS(10173), 1, + anon_sym_DOT, + STATE(6012), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3507), 4, + STATE(6283), 1, + aux_sym_cell_path_repeat1, + STATE(7065), 1, + sym_path, + STATE(7842), 1, + sym_cell_path, + ACTIONS(1953), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [217895] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10193), 1, + anon_sym_DASH_DASH, + ACTIONS(10196), 1, + anon_sym_DASH2, + ACTIONS(9292), 2, + sym_identifier, anon_sym_DOLLAR, + STATE(6013), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [217917] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(6014), 1, + sym_comment, + ACTIONS(1034), 3, anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_LBRACE, - [201179] = 8, + anon_sym_as, + ACTIONS(1036), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [217937] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_in2, - ACTIONS(4696), 1, + STATE(6015), 1, + sym_comment, + ACTIONS(1767), 2, anon_sym_DOT_DOT2, - ACTIONS(4839), 1, aux_sym_unquoted_token2, - ACTIONS(9424), 1, + ACTIONS(1769), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(9426), 1, sym_duration_unit, - STATE(5637), 1, + [217955] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_RBRACK, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(10199), 1, + anon_sym_DOT_DOT2, + STATE(6016), 1, sym_comment, - ACTIONS(4698), 2, + ACTIONS(10201), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201205] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5638), 1, - sym_comment, - ACTIONS(5693), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201221] = 4, + [217981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5639), 1, + STATE(6017), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(1024), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1022), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_DOT, + [217999] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1581), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(1826), 4, + ACTIONS(1830), 1, + anon_sym_RBRACE, + ACTIONS(1832), 1, anon_sym_LPAREN2, + ACTIONS(1838), 1, + sym__entry_separator, + ACTIONS(10203), 1, + anon_sym_DOT_DOT2, + STATE(6018), 1, + sym_comment, + ACTIONS(10205), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [218025] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5114), 1, + anon_sym_DASH2, + ACTIONS(10207), 1, + anon_sym_EQ2, + STATE(6019), 1, + sym_comment, + ACTIONS(5112), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [218045] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(8871), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(10209), 1, + anon_sym_DOT, + STATE(6020), 1, + sym_comment, + STATE(6735), 1, + sym__immediate_decimal, + ACTIONS(8869), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [218071] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2059), 1, sym__entry_separator, - [201239] = 4, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6021), 1, + sym_comment, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + STATE(7751), 1, + sym_cell_path, + ACTIONS(2057), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218097] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5640), 1, + ACTIONS(1018), 1, + anon_sym_DASH2, + STATE(6022), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1020), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT, + [218115] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1830), 1, + anon_sym_RBRACK, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, + sym__entry_separator, + ACTIONS(10211), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1639), 5, - anon_sym_in2, + STATE(6023), 1, + sym_comment, + ACTIONS(10213), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201257] = 5, + [218141] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(1014), 1, anon_sym_DASH2, - ACTIONS(9428), 1, - anon_sym_LBRACK2, - STATE(5641), 1, + STATE(6024), 1, sym_comment, - ACTIONS(2337), 5, + ACTIONS(1016), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [201277] = 4, + anon_sym_DOT, + [218159] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2051), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6025), 1, + sym_comment, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + STATE(7340), 1, + sym_cell_path, + ACTIONS(2049), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218185] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2055), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6026), 1, + sym_comment, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + STATE(7311), 1, + sym_cell_path, + ACTIONS(2053), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218211] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5642), 1, + STATE(6027), 1, sym_comment, - ACTIONS(1745), 2, + ACTIONS(1669), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1747), 5, - anon_sym_LBRACE, + ACTIONS(1671), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [201295] = 4, + [218229] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9783), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(6028), 1, + sym_comment, + ACTIONS(9779), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [218251] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9701), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(6029), 1, + sym_comment, + ACTIONS(9695), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [218273] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5643), 1, + ACTIONS(10215), 1, + anon_sym_DASH_DASH, + ACTIONS(10218), 1, + anon_sym_DASH2, + ACTIONS(9292), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + STATE(6030), 2, sym_comment, - ACTIONS(1801), 2, + aux_sym_ctrl_do_repeat1, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [218295] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6031), 1, + sym_comment, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1803), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1663), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201313] = 3, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [218313] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5644), 1, - sym_comment, - ACTIONS(5709), 7, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9789), 1, sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(6032), 1, + sym_comment, + ACTIONS(9785), 4, sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201329] = 3, - ACTIONS(251), 1, + [218335] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5645), 1, - sym_comment, - ACTIONS(5701), 7, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(9707), 1, sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(6033), 1, + sym_comment, + ACTIONS(9703), 4, sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201345] = 4, + [218357] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_RBRACE, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(1850), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(10221), 1, + anon_sym_DOT_DOT2, + STATE(6034), 1, + sym_comment, + ACTIONS(10223), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218383] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5646), 1, + STATE(6035), 1, sym_comment, - ACTIONS(1824), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1826), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1713), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201363] = 8, + sym_filesize_unit, + sym_duration_unit, + [218401] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, + ACTIONS(971), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5647), 1, + STATE(6036), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(7173), 1, + STATE(6114), 1, sym_cell_path, - ACTIONS(1921), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201389] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5648), 1, - sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7183), 1, - sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(969), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201415] = 5, + [218427] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9190), 1, - aux_sym__immediate_decimal_token2, - STATE(5649), 1, + STATE(6037), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1767), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1769), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201435] = 6, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [218445] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9430), 1, + ACTIONS(10225), 1, + sym__newline, + ACTIONS(10228), 1, + sym__space, + STATE(6038), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3579), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(9433), 1, anon_sym_DASH2, - ACTIONS(8893), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(5650), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [201457] = 8, + anon_sym_LBRACE, + [218465] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(1943), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5651), 1, + STATE(6039), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7160), 1, + STATE(7447), 1, sym_cell_path, - ACTIONS(1937), 2, + ACTIONS(1941), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201483] = 8, + [218491] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(1873), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5652), 1, + STATE(6040), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7432), 1, + STATE(7450), 1, sym_cell_path, - ACTIONS(1965), 2, + ACTIONS(1871), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201509] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5653), 1, - sym_comment, - 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, - [201525] = 8, + [218517] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, + ACTIONS(1877), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5654), 1, + STATE(6041), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7445), 1, + STATE(7459), 1, sym_cell_path, - ACTIONS(1941), 2, + ACTIONS(1875), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201551] = 8, + [218543] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1881), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5655), 1, + STATE(6042), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7449), 1, + STATE(7470), 1, sym_cell_path, - ACTIONS(1945), 2, + ACTIONS(1879), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201577] = 4, - ACTIONS(251), 1, + [218569] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5656), 1, + STATE(6043), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1647), 5, - anon_sym_in2, + ACTIONS(1020), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201595] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1843), 1, - anon_sym_RBRACE, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, sym__entry_separator, - ACTIONS(9436), 1, + ACTIONS(1018), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(5657), 1, - sym_comment, - ACTIONS(9438), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201621] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9442), 1, - anon_sym_COMMA, - STATE(5658), 1, - sym_comment, - ACTIONS(9440), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201639] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(8325), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9444), 1, anon_sym_DOT, - STATE(5659), 1, - sym_comment, - STATE(6368), 1, - sym__immediate_decimal, - ACTIONS(8323), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [201665] = 7, + [218587] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9446), 1, - anon_sym_DOT, - STATE(5660), 1, + STATE(6044), 1, sym_comment, - STATE(6023), 1, - aux_sym_cell_path_repeat1, - STATE(6814), 1, - sym_path, - STATE(7206), 1, - sym_cell_path, - ACTIONS(1893), 3, - anon_sym_RBRACK, + ACTIONS(1016), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - [201689] = 4, - ACTIONS(251), 1, + ACTIONS(1014), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [218605] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9450), 1, - anon_sym_COMMA, - STATE(5661), 1, + STATE(6045), 1, sym_comment, - ACTIONS(9448), 6, + ACTIONS(2502), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2500), 5, sym_identifier, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201707] = 8, + [218623] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(1885), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5662), 1, + STATE(6046), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(6838), 1, + STATE(7702), 1, sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201733] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9452), 1, - aux_sym__immediate_decimal_token2, - STATE(5663), 1, - sym_comment, - ACTIONS(1801), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1803), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201753] = 4, + [218649] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5664), 1, - sym_comment, - ACTIONS(1781), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1783), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201771] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5665), 1, + ACTIONS(10233), 1, + anon_sym_DASH2, + STATE(6047), 1, sym_comment, - ACTIONS(2249), 3, - ts_builtin_sym_end, + ACTIONS(10231), 6, sym__newline, anon_sym_SEMI, - ACTIONS(2247), 4, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_as, - aux_sym_unquoted_token4, - [201789] = 5, + [218667] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DASH2, - ACTIONS(9454), 1, - anon_sym_EQ2, - STATE(5666), 1, + STATE(6048), 1, sym_comment, - ACTIONS(5030), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201809] = 8, + ACTIONS(1779), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218685] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1893), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5667), 1, + STATE(6049), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7214), 1, + STATE(7709), 1, sym_cell_path, - ACTIONS(1925), 2, + ACTIONS(1891), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201835] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5668), 1, - sym_comment, - ACTIONS(5705), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201851] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5669), 1, - sym_comment, - ACTIONS(5682), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201867] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(9456), 1, - anon_sym_alias, - ACTIONS(9458), 1, - anon_sym_const, - ACTIONS(9460), 1, - anon_sym_def, - ACTIONS(9462), 1, - anon_sym_extern, - ACTIONS(9464), 1, - anon_sym_module, - ACTIONS(9466), 1, - anon_sym_use, - STATE(5670), 1, - sym_comment, - [201895] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_DASH2, - ACTIONS(8473), 1, - aux_sym_unquoted_token2, - STATE(5671), 1, - sym_comment, - ACTIONS(1707), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201915] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9468), 1, - anon_sym_DASH_DASH, - ACTIONS(9471), 1, - anon_sym_DASH2, - ACTIONS(8893), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - STATE(5672), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [201937] = 8, + [218711] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(1897), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5673), 1, + STATE(6050), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7253), 1, + STATE(7711), 1, sym_cell_path, - ACTIONS(1885), 2, + ACTIONS(1895), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [201963] = 7, + [218737] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9446), 1, + ACTIONS(1905), 1, + sym__entry_separator, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5674), 1, + STATE(6051), 1, sym_comment, - STATE(6023), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6814), 1, + STATE(7284), 1, sym_path, - STATE(7045), 1, + STATE(7712), 1, sym_cell_path, - ACTIONS(1897), 3, + ACTIONS(1903), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [201987] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5675), 1, - sym_comment, - ACTIONS(5686), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [202003] = 8, + anon_sym_RBRACE, + [218763] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(1911), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5676), 1, + STATE(6052), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(6829), 1, + STATE(7718), 1, sym_cell_path, - ACTIONS(1969), 2, + ACTIONS(1909), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202029] = 8, + [218789] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1947), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5677), 1, + STATE(6053), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(6844), 1, + STATE(7422), 1, sym_cell_path, - ACTIONS(1905), 2, + ACTIONS(1945), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202055] = 4, + [218815] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6054), 1, + sym_comment, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218833] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1026), 1, + ACTIONS(1022), 1, anon_sym_DASH2, - STATE(5678), 1, + STATE(6055), 1, sym_comment, - ACTIONS(1028), 6, + ACTIONS(1024), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, anon_sym_DOT, - [202073] = 4, + [218851] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5679), 1, + STATE(6056), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 5, - sym__newline, + ACTIONS(1713), 5, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202091] = 7, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [218869] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT, - STATE(1681), 1, - aux_sym_cell_path_repeat1, - STATE(1921), 1, - sym_path, - STATE(5680), 1, + STATE(6057), 1, sym_comment, - STATE(6913), 1, - sym_cell_path, - ACTIONS(5980), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202115] = 8, + ACTIONS(2244), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(2242), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + [218887] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(1865), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5681), 1, + STATE(6058), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(6869), 1, + STATE(7788), 1, sym_cell_path, - ACTIONS(1909), 2, + ACTIONS(1861), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202141] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5682), 1, - sym_comment, - ACTIONS(1793), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1795), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202159] = 4, + [218913] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5683), 1, + ACTIONS(9985), 1, + aux_sym__immediate_decimal_token2, + STATE(6059), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1783), 5, - anon_sym_LBRACE, + ACTIONS(1781), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202177] = 4, + [218933] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8583), 1, + sym__newline, + ACTIONS(8585), 1, + sym__space, + ACTIONS(8587), 1, + anon_sym_DASH_DASH, + ACTIONS(8589), 1, + anon_sym_DASH2, + STATE(6038), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6060), 1, + sym_comment, + STATE(8157), 2, + sym_short_flag, + sym_long_flag, + [218959] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5684), 1, + ACTIONS(10235), 1, + aux_sym__immediate_decimal_token2, + STATE(6061), 1, sym_comment, - ACTIONS(1645), 2, + ACTIONS(1799), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1647), 5, - anon_sym_LBRACE, + ACTIONS(1801), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202195] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1903), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5685), 1, - sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(6960), 1, - sym_cell_path, - ACTIONS(1901), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202221] = 6, + [218979] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(9474), 1, - anon_sym_DOT_DOT2, - STATE(5686), 1, + STATE(6062), 1, sym_comment, - ACTIONS(9476), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1851), 3, + ACTIONS(1799), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [202243] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 1, - anon_sym_RBRACK, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, - sym__entry_separator, - ACTIONS(9478), 1, - anon_sym_DOT_DOT2, - STATE(5687), 1, - sym_comment, - ACTIONS(9480), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202269] = 8, - ACTIONS(3), 1, + [218997] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, - sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(969), 1, + anon_sym_DASH2, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(5688), 1, - sym_comment, - STATE(5924), 1, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(3825), 1, sym_path, - STATE(7216), 1, + STATE(4230), 1, sym_cell_path, - ACTIONS(1889), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202295] = 4, + STATE(6063), 1, + sym_comment, + ACTIONS(971), 2, + anon_sym_DASH_DASH, + anon_sym_in2, + [219023] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5689), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(10237), 1, + anon_sym_alias, + ACTIONS(10239), 1, + anon_sym_const, + ACTIONS(10241), 1, + anon_sym_def, + ACTIONS(10243), 1, + anon_sym_extern, + ACTIONS(10245), 1, + anon_sym_module, + ACTIONS(10247), 1, + anon_sym_use, + STATE(6064), 1, sym_comment, - ACTIONS(1793), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1795), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202313] = 8, + [219051] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2038), 1, + ACTIONS(1919), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5690), 1, + STATE(6065), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(6914), 1, + STATE(7764), 1, sym_cell_path, - ACTIONS(2036), 2, + ACTIONS(1917), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202339] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(9482), 1, - sym_filesize_unit, - ACTIONS(9484), 1, - sym_duration_unit, - STATE(5691), 1, - sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202365] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_RBRACE, - ACTIONS(1707), 1, - sym__entry_separator, - ACTIONS(9486), 1, - anon_sym_DOT_DOT2, - ACTIONS(9490), 1, - sym_filesize_unit, - ACTIONS(9492), 1, - sym_duration_unit, - STATE(5692), 1, - sym_comment, - ACTIONS(9488), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202391] = 8, + [219077] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(975), 1, + ACTIONS(1927), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5693), 1, + STATE(6066), 1, sym_comment, - STATE(5913), 1, - sym_cell_path, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - ACTIONS(973), 2, + STATE(7769), 1, + sym_cell_path, + ACTIONS(1925), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202417] = 8, + [219103] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1931), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5694), 1, + STATE(6067), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7224), 1, + STATE(7770), 1, sym_cell_path, ACTIONS(1929), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202443] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_DOT, - STATE(1681), 1, - aux_sym_cell_path_repeat1, - STATE(1921), 1, - sym_path, - STATE(5695), 1, - sym_comment, - STATE(7371), 1, - sym_cell_path, - ACTIONS(5854), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202467] = 8, + [219129] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2046), 1, + ACTIONS(1935), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5696), 1, + STATE(6068), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7280), 1, + STATE(7772), 1, sym_cell_path, - ACTIONS(2044), 2, + ACTIONS(1933), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202493] = 8, + [219155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5697), 1, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(6069), 1, sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(6946), 1, - sym_cell_path, - ACTIONS(1933), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202519] = 4, + ACTIONS(2254), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2258), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219175] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5698), 1, + STATE(6070), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1787), 5, + ACTIONS(1820), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202537] = 8, + [219193] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_RBRACK, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1836), 1, + ACTIONS(1955), 1, sym__entry_separator, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9494), 1, - anon_sym_DOT_DOT2, - STATE(5699), 1, - sym_comment, - ACTIONS(9496), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202563] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - ACTIONS(9482), 1, - sym_filesize_unit, - ACTIONS(9484), 1, - sym_duration_unit, - ACTIONS(9498), 1, - anon_sym_DOT_DOT2, - STATE(5700), 1, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6071), 1, sym_comment, - ACTIONS(9500), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202589] = 4, - ACTIONS(251), 1, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + STATE(7318), 1, + sym_cell_path, + ACTIONS(1953), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219219] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5701), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(6072), 1, sym_comment, - ACTIONS(1824), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1826), 5, + ACTIONS(2272), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2274), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202607] = 4, + anon_sym_SEMI, + [219239] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5702), 1, + ACTIONS(10249), 1, + anon_sym_DOT, + ACTIONS(10251), 1, + aux_sym__immediate_decimal_token2, + STATE(6073), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(1779), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1803), 5, - sym__newline, + ACTIONS(1781), 3, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202625] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9504), 1, - anon_sym_DASH2, - STATE(5703), 1, - sym_comment, - ACTIONS(9502), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [202643] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(9456), 1, - anon_sym_alias, - ACTIONS(9458), 1, - anon_sym_const, - ACTIONS(9460), 1, - anon_sym_def, - ACTIONS(9462), 1, - anon_sym_extern, - ACTIONS(9464), 1, - anon_sym_module, - ACTIONS(9466), 1, - anon_sym_use, - STATE(5704), 1, - sym_comment, - [202671] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(973), 1, - anon_sym_DASH2, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3190), 1, - sym_cell_path, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_path, - STATE(5705), 1, - sym_comment, - ACTIONS(975), 2, - anon_sym_DASH_DASH, - anon_sym_in2, - [202697] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8175), 1, - sym__newline, - ACTIONS(8177), 1, - sym__space, - ACTIONS(8179), 1, - anon_sym_DASH_DASH, - ACTIONS(8181), 1, - anon_sym_DASH2, - STATE(5636), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5706), 1, - sym_comment, - STATE(7610), 2, - sym_short_flag, - sym_long_flag, - [202723] = 5, + [219261] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2288), 1, + ACTIONS(2240), 1, aux_sym_unquoted_token4, - STATE(5707), 1, + STATE(6074), 1, sym_comment, - ACTIONS(2282), 3, + ACTIONS(2234), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, - ACTIONS(2286), 3, + ACTIONS(2238), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [202743] = 8, + [219281] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2042), 1, + ACTIONS(1939), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5708), 1, + STATE(6075), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(6917), 1, + STATE(7828), 1, sym_cell_path, - ACTIONS(2040), 2, + ACTIONS(1937), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [202769] = 6, + [219307] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1838), 1, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(4946), 1, aux_sym_unquoted_token2, - ACTIONS(9506), 1, + ACTIONS(10253), 1, anon_sym_DOT_DOT2, - STATE(5709), 1, + ACTIONS(10257), 1, + sym_filesize_unit, + ACTIONS(10259), 1, + sym_duration_unit, + STATE(6076), 1, sym_comment, - ACTIONS(9508), 2, + ACTIONS(10255), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1836), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202791] = 8, - ACTIONS(3), 1, + [219333] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(4980), 1, anon_sym_DOT, - STATE(5710), 1, - sym_comment, - STATE(5924), 1, + STATE(1733), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(1898), 1, sym_path, - STATE(6932), 1, + STATE(6077), 1, + sym_comment, + STATE(7538), 1, sym_cell_path, - ACTIONS(1949), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202817] = 4, - ACTIONS(3), 1, + ACTIONS(6156), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [219357] = 9, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5711), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(10237), 1, + anon_sym_alias, + ACTIONS(10239), 1, + anon_sym_const, + ACTIONS(10241), 1, + anon_sym_def, + ACTIONS(10243), 1, + anon_sym_extern, + ACTIONS(10245), 1, + anon_sym_module, + ACTIONS(10247), 1, + anon_sym_use, + STATE(6078), 1, sym_comment, - ACTIONS(1024), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1022), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202835] = 8, + [219385] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_RBRACE, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1836), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(1838), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9510), 1, - anon_sym_DOT_DOT2, - STATE(5712), 1, + ACTIONS(9743), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(6079), 1, sym_comment, - ACTIONS(9512), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202861] = 4, + ACTIONS(9739), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [219407] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5713), 1, - sym_comment, - ACTIONS(1785), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9699), 1, sym__entry_separator, - [202879] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5714), 1, + ACTIONS(9749), 1, + sym_raw_string_begin, + STATE(5839), 1, + aux_sym__multiple_types_repeat1, + STATE(6080), 1, sym_comment, - ACTIONS(1020), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1018), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [202897] = 4, + ACTIONS(9745), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [219429] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5715), 1, + STATE(6081), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(1661), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1639), 5, + ACTIONS(1663), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202915] = 4, + [219447] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5716), 1, - sym_comment, - ACTIONS(1745), 2, + ACTIONS(1699), 1, + anon_sym_LBRACE, + ACTIONS(4720), 1, anon_sym_DOT_DOT2, + ACTIONS(4946), 1, aux_sym_unquoted_token2, - ACTIONS(1747), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(10257), 1, sym_filesize_unit, + ACTIONS(10259), 1, sym_duration_unit, - [202933] = 8, + STATE(6082), 1, + sym_comment, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219473] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5717), 1, - sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(7401), 1, - sym_cell_path, - ACTIONS(1957), 2, - anon_sym_RBRACK, + ACTIONS(1687), 1, anon_sym_RBRACE, - [202959] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1022), 1, - anon_sym_DASH2, - STATE(5718), 1, + ACTIONS(1699), 1, + sym__entry_separator, + ACTIONS(10261), 1, + anon_sym_DOT_DOT2, + ACTIONS(10265), 1, + sym_filesize_unit, + ACTIONS(10267), 1, + sym_duration_unit, + STATE(6083), 1, sym_comment, - ACTIONS(1024), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [202977] = 5, + ACTIONS(10263), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [219499] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5050), 1, - anon_sym_DASH2, - ACTIONS(9514), 1, - anon_sym_EQ2, - STATE(5719), 1, - sym_comment, - ACTIONS(5048), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202997] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(5720), 1, - sym_comment, - ACTIONS(2290), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2294), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [203017] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(5721), 1, - sym_comment, - ACTIONS(2298), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2300), 3, - ts_builtin_sym_end, + ACTIONS(10269), 1, sym__newline, - anon_sym_SEMI, - [203037] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5722), 1, + STATE(6084), 2, sym_comment, - ACTIONS(8271), 7, + aux_sym_shebang_repeat1, + ACTIONS(1310), 5, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [203053] = 4, - ACTIONS(3), 1, + [219517] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5723), 1, + STATE(6085), 1, sym_comment, - ACTIONS(1028), 3, + ACTIONS(1669), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1671), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1026), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [203071] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1018), 1, - anon_sym_DASH2, - STATE(5724), 1, - sym_comment, - ACTIONS(1020), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [203089] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(5725), 1, - sym_comment, - ACTIONS(1038), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1040), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [203109] = 8, + sym_filesize_unit, + sym_duration_unit, + [219535] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(1959), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5726), 1, + STATE(6086), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7166), 1, + STATE(7530), 1, sym_cell_path, - ACTIONS(1917), 2, + ACTIONS(1957), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [203135] = 8, + [219561] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, + ACTIONS(2043), 1, sym__entry_separator, - ACTIONS(9416), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5727), 1, + STATE(6087), 1, sym_comment, - STATE(5924), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6800), 1, + STATE(7284), 1, sym_path, - STATE(7290), 1, + STATE(7426), 1, sym_cell_path, - ACTIONS(2064), 2, + ACTIONS(2041), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [203161] = 4, + [219587] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5120), 1, + ACTIONS(2304), 1, anon_sym_DASH2, - STATE(5728), 1, + ACTIONS(10272), 1, + anon_sym_LBRACK2, + STATE(6088), 1, sym_comment, - ACTIONS(5118), 5, + ACTIONS(2308), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203178] = 8, - ACTIONS(3), 1, + [219607] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8670), 1, - aux_sym_unquoted_token3, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - STATE(5729), 1, + ACTIONS(5132), 1, + anon_sym_DASH2, + ACTIONS(10274), 1, + anon_sym_EQ2, + STATE(6089), 1, sym_comment, - STATE(6260), 1, - sym__immediate_decimal, - [203203] = 8, + ACTIONS(5130), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [219627] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8670), 1, - aux_sym_unquoted_token3, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, - aux_sym__immediate_decimal_token5, - STATE(5730), 1, + ACTIONS(1889), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6090), 1, sym_comment, - STATE(7771), 1, - sym__immediate_decimal, - [203228] = 7, - ACTIONS(3), 1, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + STATE(7703), 1, + sym_cell_path, + ACTIONS(1887), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219653] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9520), 1, - anon_sym_DQUOTE2, - STATE(5731), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10278), 1, + anon_sym_RBRACK, + STATE(6091), 1, sym_comment, - STATE(5918), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203251] = 5, + STATE(6616), 1, + aux_sym_shebang_repeat1, + STATE(7436), 1, + sym_val_list, + STATE(7878), 1, + aux_sym_val_table_repeat1, + [219678] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_LBRACE, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(5732), 1, + ACTIONS(10280), 1, + anon_sym_DOT, + STATE(7065), 1, + sym_path, + STATE(6092), 2, sym_comment, - ACTIONS(2282), 4, - sym_identifier, - anon_sym_DOLLAR, + aux_sym_cell_path_repeat1, + ACTIONS(975), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [219697] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, anon_sym_DASH_DASH, + ACTIONS(10285), 1, anon_sym_DASH2, - [203270] = 8, + STATE(6093), 1, + sym_comment, + STATE(6678), 1, + sym_block, + STATE(8033), 1, + sym_short_flag, + STATE(8034), 1, + sym_long_flag, + [219722] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(2379), 1, + anon_sym_DASH2, + STATE(6094), 1, + sym_comment, + ACTIONS(2381), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9524), 1, - anon_sym_RBRACK, - STATE(5733), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [219739] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2383), 1, + anon_sym_DASH2, + STATE(6095), 1, sym_comment, - STATE(6203), 1, - aux_sym_shebang_repeat1, - STATE(6850), 1, - sym_val_list, - STATE(7323), 1, - aux_sym_val_table_repeat1, - [203295] = 4, + ACTIONS(2385), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [219756] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2465), 1, + ACTIONS(2403), 1, anon_sym_DASH2, - STATE(5734), 1, + STATE(6096), 1, sym_comment, - ACTIONS(2467), 5, + ACTIONS(2405), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203312] = 8, + [219773] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5735), 1, + STATE(6097), 1, sym_comment, - STATE(6720), 1, + STATE(7626), 1, sym_block, - STATE(7574), 1, + STATE(8203), 1, sym_short_flag, - STATE(7587), 1, + STATE(8216), 1, sym_long_flag, - [203337] = 8, + [219798] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9530), 1, + ACTIONS(1895), 1, + anon_sym_DASH2, + STATE(6098), 1, + sym_comment, + ACTIONS(1897), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9532), 1, anon_sym_SEMI, - ACTIONS(9534), 1, - anon_sym_RPAREN, - STATE(255), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5736), 1, - sym_comment, - STATE(6277), 1, - aux_sym__block_body_repeat1, - STATE(7385), 1, - aux_sym_shebang_repeat1, - [203362] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + [219815] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(1687), 1, anon_sym_DASH2, - STATE(5737), 1, + STATE(6099), 1, sym_comment, - ACTIONS(1935), 5, + ACTIONS(1699), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203379] = 8, + [219832] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + ACTIONS(10287), 1, + anon_sym_LBRACE, + STATE(6100), 1, + sym_comment, + STATE(6691), 1, + sym_val_record, + STATE(8188), 2, + sym_short_flag, + sym_long_flag, + [219855] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9536), 1, + ACTIONS(10289), 1, anon_sym_RBRACK, - STATE(5738), 1, + STATE(6101), 1, sym_comment, - STATE(6204), 1, + STATE(6587), 1, aux_sym_shebang_repeat1, - STATE(6853), 1, + STATE(7533), 1, sym_val_list, - STATE(7326), 1, + STATE(7795), 1, aux_sym_val_table_repeat1, - [203404] = 5, - ACTIONS(3), 1, + [219880] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1040), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, anon_sym_LBRACE, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(5739), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, + sym_block, + STATE(5342), 1, + sym__blosure, + STATE(6102), 1, sym_comment, - ACTIONS(1038), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [203423] = 4, + [219905] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(2387), 1, anon_sym_DASH2, - STATE(5740), 1, + STATE(6103), 1, sym_comment, - ACTIONS(5110), 5, + ACTIONS(2389), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203440] = 3, + [219922] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(5741), 1, - sym_comment, - ACTIONS(9538), 6, - sym_raw_string_begin, + ACTIONS(10293), 1, sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [203455] = 4, + ACTIONS(10295), 1, + anon_sym_DASH_DASH, + ACTIONS(10297), 1, + anon_sym_DASH2, + STATE(6104), 1, + sym_comment, + STATE(6300), 1, + aux_sym_ctrl_do_repeat1, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [219945] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(5742), 1, + STATE(6105), 1, sym_comment, - ACTIONS(1943), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1959), 5, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [203472] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9540), 1, - anon_sym_DQUOTE2, - STATE(5743), 1, - sym_comment, - STATE(5747), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203495] = 6, + anon_sym_LBRACE, + sym__table_head_separator, + [219962] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2094), 1, + ACTIONS(6438), 1, sym__entry_separator, - ACTIONS(9542), 1, - anon_sym_DOT_DOT2, - STATE(5744), 1, - sym_comment, - ACTIONS(2088), 2, - anon_sym_RBRACK, + ACTIONS(10175), 1, + anon_sym_DOT, + ACTIONS(10299), 1, anon_sym_RBRACE, - ACTIONS(9544), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203516] = 8, - ACTIONS(3), 1, + STATE(6106), 1, + sym_comment, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + STATE(7422), 1, + sym_cell_path, + [219987] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4769), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(10302), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - STATE(5745), 1, + ACTIONS(10304), 1, + aux_sym__immediate_decimal_token2, + STATE(6107), 1, sym_comment, - STATE(6260), 1, - sym__immediate_decimal, - [203541] = 8, - ACTIONS(3), 1, + ACTIONS(1773), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220008] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4769), 1, - aux_sym_unquoted_token3, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, - aux_sym__immediate_decimal_token5, - STATE(5746), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(6108), 1, sym_comment, - STATE(7771), 1, - sym__immediate_decimal, - [203566] = 7, + STATE(7062), 1, + sym_block, + ACTIONS(10306), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220027] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_DASH2, + STATE(6109), 1, + sym_comment, + ACTIONS(5124), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [220044] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9546), 1, + ACTIONS(10312), 1, anon_sym_DQUOTE2, - STATE(5747), 1, + STATE(6110), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203589] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9548), 1, - anon_sym_DOT, - ACTIONS(9550), 1, - aux_sym__immediate_decimal_token2, - STATE(5748), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [203610] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9552), 1, - anon_sym_RBRACK, - STATE(5749), 1, - sym_comment, - STATE(6205), 1, - aux_sym_shebang_repeat1, - STATE(6873), 1, - sym_val_list, - STATE(7333), 1, - aux_sym_val_table_repeat1, - [203635] = 4, + [220067] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5116), 1, + ACTIONS(2439), 1, anon_sym_DASH2, - STATE(5750), 1, + STATE(6111), 1, sym_comment, - ACTIONS(5114), 5, + ACTIONS(2441), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203652] = 8, + [220084] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(984), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6112), 1, + sym_comment, + STATE(6309), 1, + aux_sym_cell_path_repeat1, + STATE(7284), 1, + sym_path, + ACTIONS(982), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220107] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9554), 1, + ACTIONS(10314), 1, anon_sym_RBRACK, - STATE(5751), 1, + STATE(6113), 1, sym_comment, - STATE(6206), 1, + STATE(6588), 1, aux_sym_shebang_repeat1, - STATE(6877), 1, + STATE(7591), 1, sym_val_list, - STATE(7335), 1, + STATE(7797), 1, aux_sym_val_table_repeat1, - [203677] = 5, - ACTIONS(251), 1, + [220132] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9558), 1, - anon_sym_LBRACE, - STATE(5752), 1, + STATE(6114), 1, sym_comment, - STATE(6708), 1, - sym_val_record, - ACTIONS(9556), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1052), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [203696] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5753), 1, - sym_comment, - STATE(7292), 1, - sym_block, - STATE(7619), 1, - sym_short_flag, - STATE(7626), 1, - sym_long_flag, - [203721] = 4, + anon_sym_DOT_DOT2, + ACTIONS(1054), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [220149] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(2363), 1, anon_sym_DASH2, - STATE(5754), 1, + STATE(6115), 1, sym_comment, - ACTIONS(1947), 5, + ACTIONS(2365), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203738] = 5, + [220166] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9558), 1, + ACTIONS(10316), 1, + anon_sym_EQ2, + ACTIONS(10318), 1, + sym_short_flag_identifier, + STATE(6116), 1, + sym_comment, + ACTIONS(5027), 2, + anon_sym_DOLLAR, anon_sym_LBRACE, - STATE(5755), 1, + ACTIONS(5029), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [220187] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6117), 1, sym_comment, - STATE(6709), 1, - sym_val_record, - ACTIONS(9560), 4, + ACTIONS(1302), 6, + sym_raw_string_begin, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203757] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [220202] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9562), 1, + ACTIONS(10320), 1, anon_sym_DQUOTE2, - STATE(5756), 1, + STATE(6118), 1, sym_comment, - STATE(5760), 1, + STATE(6124), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203780] = 6, - ACTIONS(3), 1, + [220225] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9564), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9566), 1, - aux_sym__immediate_decimal_token2, - STATE(5757), 1, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(10324), 1, + aux_sym_unquoted_token2, + STATE(6119), 1, sym_comment, - ACTIONS(1793), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [203801] = 8, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(10322), 2, + sym_filesize_unit, + sym_duration_unit, + [220246] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, + ACTIONS(4946), 1, aux_sym_unquoted_token3, - ACTIONS(8323), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5758), 1, + STATE(6120), 1, sym_comment, - STATE(6260), 1, + STATE(7174), 1, sym__immediate_decimal, - [203826] = 8, + [220271] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, + ACTIONS(4946), 1, aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - STATE(5759), 1, + STATE(6121), 1, sym_comment, - STATE(7771), 1, + STATE(8356), 1, sym__immediate_decimal, - [203851] = 7, - ACTIONS(3), 1, + [220296] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9568), 1, - anon_sym_DQUOTE2, - STATE(5760), 1, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(6122), 1, sym_comment, - STATE(5918), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203874] = 4, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(10322), 2, + sym_filesize_unit, + sym_duration_unit, + [220317] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(2359), 1, anon_sym_DASH2, - STATE(5761), 1, + STATE(6123), 1, sym_comment, - ACTIONS(1891), 5, + ACTIONS(2361), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203891] = 7, + [220334] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9570), 1, + ACTIONS(10326), 1, anon_sym_DQUOTE2, - STATE(5762), 1, + STATE(6124), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203914] = 8, + [220357] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3610), 1, + sym__space, + STATE(6125), 1, + sym_comment, + ACTIONS(3608), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [220374] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9572), 1, + ACTIONS(10328), 1, anon_sym_RBRACK, - STATE(5763), 1, + STATE(6126), 1, sym_comment, - STATE(6207), 1, + STATE(6603), 1, aux_sym_shebang_repeat1, - STATE(6898), 1, + STATE(7807), 1, sym_val_list, - STATE(7341), 1, + STATE(7821), 1, aux_sym_val_table_repeat1, - [203939] = 4, + [220399] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(10330), 1, + anon_sym_DOT_DOT2, + STATE(6127), 1, + sym_comment, + ACTIONS(10332), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6092), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220418] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + ACTIONS(2274), 1, + anon_sym_LBRACE, + STATE(6128), 1, + sym_comment, + ACTIONS(2272), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, - STATE(5764), 1, + [220437] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5138), 1, + anon_sym_DASH2, + STATE(6129), 1, sym_comment, - ACTIONS(2393), 5, + ACTIONS(5136), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203956] = 8, + [220454] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9574), 1, + ACTIONS(10334), 1, anon_sym_RBRACK, - STATE(5765), 1, + STATE(6130), 1, sym_comment, - STATE(6208), 1, + STATE(6604), 1, aux_sym_shebang_repeat1, - STATE(6901), 1, + STATE(7815), 1, sym_val_list, - STATE(7343), 1, + STATE(7823), 1, aux_sym_val_table_repeat1, - [203981] = 4, + [220479] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2469), 1, + ACTIONS(1949), 1, anon_sym_DASH2, - STATE(5766), 1, + STATE(6131), 1, sym_comment, - ACTIONS(2471), 5, + ACTIONS(1951), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203998] = 4, + [220496] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(10336), 1, + anon_sym_LT, + STATE(6132), 1, + sym_comment, + ACTIONS(8323), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [220513] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6414), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5767), 1, + STATE(6133), 1, + sym_comment, + STATE(7635), 1, + sym_block, + STATE(7979), 1, + sym_short_flag, + STATE(7998), 1, + sym_long_flag, + [220538] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10330), 1, + anon_sym_DOT_DOT2, + STATE(6134), 1, + sym_comment, + ACTIONS(10332), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(6099), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220557] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2238), 1, + anon_sym_LBRACE, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(6135), 1, + sym_comment, + ACTIONS(2234), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [220576] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(9130), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9132), 1, + aux_sym__immediate_decimal_token5, + STATE(6136), 1, + sym_comment, + STATE(8489), 1, + sym__immediate_decimal, + ACTIONS(9128), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [220599] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5182), 1, + anon_sym_DASH2, + STATE(6137), 1, sym_comment, - ACTIONS(2066), 5, + ACTIONS(5180), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204015] = 8, + [220616] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(5186), 1, anon_sym_DASH2, - STATE(5768), 1, + STATE(6138), 1, sym_comment, - STATE(7346), 1, - sym_block, - STATE(7649), 1, - sym_short_flag, - STATE(7654), 1, - sym_long_flag, - [204040] = 4, + ACTIONS(5184), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [220633] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(1917), 1, anon_sym_DASH2, - STATE(5769), 1, + STATE(6139), 1, sym_comment, - ACTIONS(2475), 5, + ACTIONS(1919), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204057] = 7, + [220650] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(10338), 1, + anon_sym_DOT_DOT2, + STATE(6140), 1, + sym_comment, + ACTIONS(1838), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(10340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [220671] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10342), 1, + anon_sym_LT, + STATE(6141), 1, + sym_comment, + ACTIONS(8323), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [220688] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6142), 1, + sym_comment, + STATE(7247), 1, + sym_block, + STATE(8092), 1, + sym_short_flag, + STATE(8093), 1, + sym_long_flag, + [220713] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6143), 1, + sym_comment, + STATE(7258), 1, + sym_block, + STATE(8095), 1, + sym_short_flag, + STATE(8098), 1, + sym_long_flag, + [220738] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9576), 1, + ACTIONS(10344), 1, anon_sym_DQUOTE2, - STATE(5770), 1, + STATE(6144), 1, sym_comment, - STATE(5773), 1, + STATE(6149), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204080] = 8, + [220761] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6145), 1, + sym_comment, + ACTIONS(1763), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1765), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [220778] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10346), 1, + anon_sym_DOT, + ACTIONS(10348), 1, + aux_sym__immediate_decimal_token2, + STATE(6146), 1, + sym_comment, + ACTIONS(1779), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [220799] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7184), 1, + ACTIONS(5774), 1, aux_sym_unquoted_token3, - ACTIONS(8323), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5771), 1, + STATE(6147), 1, sym_comment, - STATE(6260), 1, + STATE(7174), 1, sym__immediate_decimal, - [204105] = 8, + [220824] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7184), 1, + ACTIONS(5774), 1, aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - STATE(5772), 1, + STATE(6148), 1, sym_comment, - STATE(7771), 1, + STATE(8356), 1, sym__immediate_decimal, - [204130] = 7, + [220849] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9578), 1, + ACTIONS(10350), 1, anon_sym_DQUOTE2, - STATE(5773), 1, + STATE(6149), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204153] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2477), 1, - anon_sym_DASH2, - STATE(5774), 1, - sym_comment, - ACTIONS(2479), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [204170] = 8, + [220872] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9580), 1, + ACTIONS(10352), 1, anon_sym_RBRACK, - STATE(5775), 1, + STATE(6150), 1, sym_comment, - STATE(6209), 1, + STATE(6605), 1, aux_sym_shebang_repeat1, - STATE(6921), 1, - sym_val_list, - STATE(7350), 1, + STATE(7830), 1, aux_sym_val_table_repeat1, - [204195] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7366), 1, - anon_sym_RBRACK, - ACTIONS(7368), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5776), 1, - sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(7599), 1, - sym_cell_path, - [204220] = 4, + STATE(7963), 1, + sym_val_list, + [220897] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5777), 1, + STATE(6151), 1, sym_comment, - ACTIONS(1959), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [204237] = 8, + STATE(7259), 1, + sym_block, + STATE(8099), 1, + sym_short_flag, + STATE(8100), 1, + sym_long_flag, + [220922] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9582), 1, + ACTIONS(10354), 1, anon_sym_RBRACK, - STATE(5778), 1, + STATE(6152), 1, sym_comment, - STATE(6210), 1, + STATE(6606), 1, aux_sym_shebang_repeat1, - STATE(6926), 1, - sym_val_list, - STATE(7352), 1, + STATE(7833), 1, aux_sym_val_table_repeat1, - [204262] = 8, + STATE(7970), 1, + sym_val_list, + [220947] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9584), 1, - anon_sym_RBRACK, - STATE(5779), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6153), 1, sym_comment, - STATE(6190), 1, - aux_sym_shebang_repeat1, - STATE(6957), 1, - sym_val_list, - STATE(7272), 1, - aux_sym_val_table_repeat1, - [204287] = 6, - ACTIONS(3), 1, + STATE(7264), 1, + sym_block, + STATE(8104), 1, + sym_short_flag, + STATE(8107), 1, + sym_long_flag, + [220972] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2084), 1, - sym__entry_separator, - ACTIONS(9586), 1, - anon_sym_DOT_DOT2, - STATE(5780), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6154), 1, sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9588), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204308] = 7, + STATE(7271), 1, + sym_block, + STATE(8118), 1, + sym_short_flag, + STATE(8124), 1, + sym_long_flag, + [220997] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9590), 1, + ACTIONS(10356), 1, anon_sym_DQUOTE2, - STATE(5781), 1, + STATE(6155), 1, sym_comment, - STATE(5868), 1, + STATE(6159), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204331] = 7, + [221020] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9592), 1, - anon_sym_DQUOTE2, - STATE(5782), 1, + STATE(6156), 1, sym_comment, - STATE(5785), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204354] = 8, + ACTIONS(2086), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2088), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [221037] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6472), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(9217), 1, + aux_sym_unquoted_token3, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5783), 1, + STATE(6157), 1, sym_comment, - STATE(6260), 1, + STATE(7174), 1, sym__immediate_decimal, - [204379] = 8, + [221062] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6472), 1, - aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9217), 1, + aux_sym_unquoted_token3, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - STATE(5784), 1, + STATE(6158), 1, sym_comment, - STATE(7771), 1, + STATE(8356), 1, sym__immediate_decimal, - [204404] = 7, + [221087] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9594), 1, + ACTIONS(10358), 1, anon_sym_DQUOTE2, - STATE(5785), 1, + STATE(6159), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204427] = 4, + [221110] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - STATE(5786), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10360), 1, + anon_sym_RBRACK, + STATE(6160), 1, sym_comment, - ACTIONS(1967), 5, - ts_builtin_sym_end, + STATE(6607), 1, + aux_sym_shebang_repeat1, + STATE(7325), 1, + sym_val_list, + STATE(7840), 1, + aux_sym_val_table_repeat1, + [221135] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10362), 1, sym__newline, + ACTIONS(10364), 1, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [204444] = 8, + ACTIONS(10366), 1, + anon_sym_RPAREN, + STATE(288), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6161), 1, + sym_comment, + STATE(7273), 1, + aux_sym__block_body_repeat1, + STATE(7746), 1, + aux_sym_shebang_repeat1, + [221160] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9596), 1, + ACTIONS(10368), 1, anon_sym_RBRACK, - STATE(5787), 1, + STATE(6162), 1, sym_comment, - STATE(6211), 1, + STATE(6608), 1, aux_sym_shebang_repeat1, - STATE(6945), 1, + STATE(7330), 1, sym_val_list, - STATE(7356), 1, + STATE(7843), 1, aux_sym_val_table_repeat1, - [204469] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5788), 1, - sym_comment, - ACTIONS(9598), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204484] = 4, + [221185] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(10295), 1, + anon_sym_DASH_DASH, + ACTIONS(10297), 1, anon_sym_DASH2, - STATE(5789), 1, + ACTIONS(10370), 1, + sym_identifier, + STATE(6163), 1, sym_comment, - ACTIONS(2483), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [204501] = 8, + STATE(6350), 1, + aux_sym_ctrl_do_repeat1, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [221208] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9600), 1, + ACTIONS(10372), 1, anon_sym_RBRACK, - STATE(5790), 1, + STATE(6164), 1, sym_comment, - STATE(6212), 1, + STATE(6590), 1, aux_sym_shebang_repeat1, - STATE(6949), 1, + STATE(7773), 1, sym_val_list, - STATE(7359), 1, + STATE(7806), 1, aux_sym_val_table_repeat1, - [204526] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7393), 1, - anon_sym_RBRACK, - ACTIONS(7395), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5791), 1, - sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(7633), 1, - sym_cell_path, - [204551] = 4, + [221233] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2485), 1, - anon_sym_DASH2, - STATE(5792), 1, + ACTIONS(10374), 1, + aux_sym__immediate_decimal_token2, + STATE(6165), 1, sym_comment, - ACTIONS(2487), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [204568] = 4, + ACTIONS(1799), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [221252] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - STATE(5793), 1, - sym_comment, - ACTIONS(1971), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(6414), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - anon_sym_as, - [204585] = 7, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6166), 1, + sym_comment, + STATE(7594), 1, + sym_block, + STATE(8162), 1, + sym_short_flag, + STATE(8164), 1, + sym_long_flag, + [221277] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9602), 1, + ACTIONS(10376), 1, anon_sym_DQUOTE2, - STATE(5794), 1, + STATE(6167), 1, sym_comment, - STATE(5798), 1, + STATE(6171), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204608] = 8, + [221300] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_DASH2, + STATE(6168), 1, + sym_comment, + ACTIONS(1054), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [221317] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4801), 1, aux_sym_unquoted_token3, - ACTIONS(8323), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5795), 1, + STATE(6169), 1, sym_comment, - STATE(6260), 1, + STATE(7174), 1, sym__immediate_decimal, - [204633] = 8, + [221342] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4801), 1, aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - STATE(5796), 1, + STATE(6170), 1, sym_comment, - STATE(7771), 1, + STATE(8356), 1, sym__immediate_decimal, - [204658] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5797), 1, - sym_comment, - STATE(7374), 1, - sym_block, - STATE(7670), 1, - sym_short_flag, - STATE(7673), 1, - sym_long_flag, - [204683] = 7, + [221367] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9604), 1, + ACTIONS(10378), 1, anon_sym_DQUOTE2, - STATE(5798), 1, + STATE(6171), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204706] = 4, + [221390] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2489), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(5799), 1, + STATE(6172), 1, sym_comment, - ACTIONS(2491), 5, + ACTIONS(1959), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204723] = 8, + [221407] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10380), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10382), 1, + aux_sym__immediate_decimal_token2, + STATE(6173), 1, + sym_comment, + ACTIONS(1771), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221428] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9606), 1, + ACTIONS(10384), 1, anon_sym_RBRACK, - STATE(5800), 1, + STATE(6174), 1, sym_comment, - STATE(6214), 1, + STATE(6609), 1, aux_sym_shebang_repeat1, - STATE(6967), 1, + STATE(7350), 1, sym_val_list, - STATE(7364), 1, + STATE(7849), 1, aux_sym_val_table_repeat1, - [204748] = 8, + [221453] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9608), 1, - anon_sym_alias, - ACTIONS(9610), 1, - anon_sym_const, - ACTIONS(9612), 1, + ACTIONS(10241), 1, anon_sym_def, - ACTIONS(9614), 1, + ACTIONS(10243), 1, anon_sym_extern, - ACTIONS(9616), 1, + ACTIONS(10245), 1, anon_sym_module, - ACTIONS(9618), 1, + ACTIONS(10247), 1, anon_sym_use, - STATE(5801), 1, + ACTIONS(10386), 1, + anon_sym_alias, + ACTIONS(10388), 1, + anon_sym_const, + STATE(6175), 1, sym_comment, - [204773] = 4, - ACTIONS(251), 1, + [221478] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2493), 1, - anon_sym_DASH2, - STATE(5802), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10390), 1, + anon_sym_DQUOTE2, + STATE(6176), 1, sym_comment, - ACTIONS(2495), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [204790] = 8, + STATE(6353), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [221501] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9620), 1, + ACTIONS(10392), 1, anon_sym_RBRACK, - STATE(5803), 1, + STATE(6177), 1, sym_comment, - STATE(6215), 1, + STATE(6610), 1, aux_sym_shebang_repeat1, - STATE(6972), 1, + STATE(7355), 1, sym_val_list, - STATE(7366), 1, + STATE(7852), 1, aux_sym_val_table_repeat1, - [204815] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - STATE(5804), 1, - sym_comment, - STATE(6260), 1, - sym__immediate_decimal, - [204840] = 7, + [221526] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(2458), 1, anon_sym_DASH2, - ACTIONS(9622), 1, - anon_sym_LBRACE, - STATE(5805), 1, + STATE(6178), 1, sym_comment, - STATE(7009), 1, - sym_val_record, - STATE(7643), 2, - sym_short_flag, - sym_long_flag, - [204863] = 8, + ACTIONS(2460), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [221543] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9624), 1, - anon_sym_RBRACK, - STATE(5806), 1, + ACTIONS(2462), 1, + anon_sym_DASH2, + STATE(6179), 1, sym_comment, - STATE(6218), 1, - aux_sym_shebang_repeat1, - STATE(7369), 1, - sym_val_list, - STATE(7379), 1, - aux_sym_val_table_repeat1, - [204888] = 7, + ACTIONS(2464), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [221560] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9626), 1, + ACTIONS(10394), 1, anon_sym_DQUOTE2, - STATE(5807), 1, + STATE(6180), 1, sym_comment, - STATE(5810), 1, + STATE(6183), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204911] = 8, + [221583] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8473), 1, + ACTIONS(7551), 1, aux_sym_unquoted_token3, - ACTIONS(8850), 1, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5808), 1, + STATE(6181), 1, sym_comment, - STATE(6260), 1, + STATE(7174), 1, sym__immediate_decimal, - [204936] = 8, + [221608] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, + ACTIONS(7551), 1, aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - STATE(5809), 1, + STATE(6182), 1, sym_comment, - STATE(7771), 1, + STATE(8356), 1, sym__immediate_decimal, - [204961] = 7, + [221633] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9628), 1, + ACTIONS(10396), 1, anon_sym_DQUOTE2, - STATE(5810), 1, + STATE(6183), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204984] = 8, + [221656] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9630), 1, + ACTIONS(10398), 1, anon_sym_RBRACK, - STATE(5811), 1, + STATE(6184), 1, sym_comment, - STATE(6216), 1, + STATE(6611), 1, aux_sym_shebang_repeat1, - STATE(6994), 1, + STATE(7380), 1, sym_val_list, - STATE(7372), 1, + STATE(7860), 1, aux_sym_val_table_repeat1, - [205009] = 8, - ACTIONS(3), 1, + [221681] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - STATE(5812), 1, + ACTIONS(2466), 1, + anon_sym_DASH2, + STATE(6185), 1, sym_comment, - STATE(6120), 1, - sym__immediate_decimal, - [205034] = 8, - ACTIONS(3), 1, + ACTIONS(2468), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [221698] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token3, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, - aux_sym__immediate_decimal_token5, - STATE(5813), 1, + ACTIONS(5190), 1, + anon_sym_DASH2, + STATE(6186), 1, sym_comment, - STATE(7665), 1, - sym__immediate_decimal, - [205059] = 8, + ACTIONS(5188), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [221715] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9632), 1, + ACTIONS(10400), 1, anon_sym_RBRACK, - STATE(5814), 1, + STATE(6187), 1, sym_comment, - STATE(6217), 1, + STATE(6612), 1, aux_sym_shebang_repeat1, - STATE(6998), 1, + STATE(7384), 1, sym_val_list, - STATE(7375), 1, + STATE(7862), 1, aux_sym_val_table_repeat1, - [205084] = 4, + [221740] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(5194), 1, anon_sym_DASH2, - STATE(5815), 1, + STATE(6188), 1, sym_comment, - ACTIONS(1707), 5, + ACTIONS(5192), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [205101] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2187), 1, - sym__entry_separator, - ACTIONS(9634), 1, - anon_sym_DOT_DOT2, - STATE(5816), 1, - sym_comment, - ACTIONS(2181), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9636), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205122] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9530), 1, - sym__newline, - ACTIONS(9532), 1, - anon_sym_SEMI, - ACTIONS(9638), 1, - anon_sym_RPAREN, - STATE(255), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5817), 1, - sym_comment, - STATE(6522), 1, - aux_sym__block_body_repeat1, - STATE(7385), 1, - aux_sym_shebang_repeat1, - [205147] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token3, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, - aux_sym__immediate_decimal_token5, - STATE(5818), 1, - sym_comment, - STATE(7771), 1, - sym__immediate_decimal, - [205172] = 4, + [221757] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2497), 1, + ACTIONS(1034), 1, anon_sym_DASH2, - STATE(5819), 1, + STATE(6189), 1, sym_comment, - ACTIONS(2499), 5, + ACTIONS(1036), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [205189] = 7, + [221774] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9640), 1, + ACTIONS(10402), 1, anon_sym_DQUOTE2, - STATE(5820), 1, + STATE(6190), 1, sym_comment, - STATE(5823), 1, + STATE(6193), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205212] = 8, + [221797] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(7487), 1, aux_sym_unquoted_token3, - ACTIONS(8323), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5821), 1, + STATE(6191), 1, sym_comment, - STATE(6260), 1, + STATE(7174), 1, sym__immediate_decimal, - [205237] = 8, + [221822] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(7487), 1, aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - STATE(5822), 1, + STATE(6192), 1, sym_comment, - STATE(7771), 1, + STATE(8356), 1, sym__immediate_decimal, - [205262] = 7, + [221847] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9642), 1, + ACTIONS(10404), 1, anon_sym_DQUOTE2, - STATE(5823), 1, + STATE(6193), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205285] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5044), 1, - anon_sym_DASH2, - STATE(5824), 1, - sym_comment, - ACTIONS(5042), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [205302] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9644), 1, - anon_sym_RBRACK, - STATE(5825), 1, - sym_comment, - STATE(6219), 1, - aux_sym_shebang_repeat1, - STATE(7016), 1, - sym_val_list, - STATE(7380), 1, - aux_sym_val_table_repeat1, - [205327] = 8, + [221870] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10406), 1, anon_sym_RBRACK, - STATE(5826), 1, + STATE(6194), 1, sym_comment, - STATE(6220), 1, + STATE(6613), 1, aux_sym_shebang_repeat1, - STATE(7020), 1, + STATE(7403), 1, sym_val_list, - STATE(7382), 1, + STATE(7868), 1, aux_sym_val_table_repeat1, - [205352] = 8, + [221895] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5126), 1, - sym__blosure, - STATE(5827), 1, - sym_comment, - [205377] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9650), 1, - anon_sym_RBRACK, - STATE(5828), 1, - sym_comment, - STATE(6244), 1, - aux_sym_shebang_repeat1, - STATE(6956), 1, - sym_val_list, - STATE(6958), 1, - aux_sym_val_table_repeat1, - [205402] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9652), 1, - anon_sym_DQUOTE2, - STATE(5829), 1, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6195), 1, sym_comment, - STATE(5831), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205425] = 6, + STATE(6792), 1, + sym_block, + STATE(8210), 1, + sym_short_flag, + STATE(8212), 1, + sym_long_flag, + [221920] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(4922), 1, - aux_sym_unquoted_token2, - STATE(5830), 1, - sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9654), 2, - sym_filesize_unit, - sym_duration_unit, - [205446] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9656), 1, - anon_sym_DQUOTE2, - STATE(5831), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6196), 1, sym_comment, - STATE(5918), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205469] = 8, + STATE(6796), 1, + sym_block, + STATE(8214), 1, + sym_short_flag, + STATE(8217), 1, + sym_long_flag, + [221945] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5832), 1, + STATE(6197), 1, sym_comment, - STATE(7431), 1, + STATE(6803), 1, sym_block, - STATE(7693), 1, + STATE(8218), 1, sym_short_flag, - STATE(7695), 1, + STATE(8219), 1, sym_long_flag, - [205494] = 8, + [221970] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9658), 1, + ACTIONS(10408), 1, anon_sym_RBRACK, - STATE(5833), 1, + STATE(6198), 1, sym_comment, - STATE(6221), 1, + STATE(6614), 1, aux_sym_shebang_repeat1, - STATE(7039), 1, + STATE(7406), 1, sym_val_list, - STATE(7388), 1, + STATE(7870), 1, aux_sym_val_table_repeat1, - [205519] = 8, + [221995] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9660), 1, - anon_sym_RBRACK, - STATE(5834), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6199), 1, sym_comment, - STATE(6222), 1, - aux_sym_shebang_repeat1, - STATE(7043), 1, - sym_val_list, - STATE(7390), 1, - aux_sym_val_table_repeat1, - [205544] = 4, - ACTIONS(3), 1, + STATE(6814), 1, + sym_block, + STATE(8220), 1, + sym_short_flag, + STATE(8221), 1, + sym_long_flag, + [222020] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(5835), 1, - sym_comment, - ACTIONS(2247), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(10283), 1, anon_sym_DASH_DASH, + ACTIONS(10285), 1, anon_sym_DASH2, - aux_sym_unquoted_token4, - [205561] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9662), 1, - anon_sym_DOT, - STATE(6814), 1, - sym_path, - STATE(5836), 2, + STATE(6200), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(979), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [205580] = 7, + STATE(6821), 1, + sym_block, + STATE(8109), 1, + sym_long_flag, + STATE(8222), 1, + sym_short_flag, + [222045] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9665), 1, + ACTIONS(10410), 1, anon_sym_DQUOTE2, - STATE(5837), 1, + STATE(6201), 1, sym_comment, - STATE(5839), 1, + STATE(6204), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205603] = 7, - ACTIONS(251), 1, + [222068] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9667), 1, - sym_identifier, - ACTIONS(9669), 1, - anon_sym_DASH_DASH, - ACTIONS(9671), 1, - anon_sym_DASH2, - STATE(5838), 1, + ACTIONS(6728), 1, + aux_sym_unquoted_token3, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9306), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9308), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9310), 1, + aux_sym__immediate_decimal_token5, + STATE(6202), 1, sym_comment, - STATE(5948), 1, - aux_sym_ctrl_do_repeat1, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [205626] = 7, + STATE(7174), 1, + sym__immediate_decimal, + [222093] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(6728), 1, + aux_sym_unquoted_token3, + ACTIONS(9128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9312), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9314), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9316), 1, + aux_sym__immediate_decimal_token5, + STATE(6203), 1, + sym_comment, + STATE(8356), 1, + sym__immediate_decimal, + [222118] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9673), 1, + ACTIONS(10412), 1, anon_sym_DQUOTE2, - STATE(5839), 1, + STATE(6204), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205649] = 8, + [222141] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9675), 1, + ACTIONS(10414), 1, anon_sym_RBRACK, - STATE(5840), 1, + STATE(6205), 1, sym_comment, - STATE(6223), 1, + STATE(6615), 1, aux_sym_shebang_repeat1, - STATE(7054), 1, + STATE(7430), 1, sym_val_list, - STATE(7394), 1, + STATE(7875), 1, aux_sym_val_table_repeat1, - [205674] = 8, + [222166] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9677), 1, - anon_sym_RBRACK, - STATE(5841), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6206), 1, sym_comment, - STATE(6224), 1, - aux_sym_shebang_repeat1, - STATE(7058), 1, - sym_val_list, - STATE(7397), 1, - aux_sym_val_table_repeat1, - [205699] = 3, + STATE(6825), 1, + sym_block, + STATE(8180), 1, + sym_long_flag, + STATE(8197), 1, + sym_short_flag, + [222191] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5842), 1, + ACTIONS(2399), 1, + anon_sym_DASH2, + STATE(6207), 1, sym_comment, - ACTIONS(9679), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205714] = 3, + ACTIONS(2401), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [222208] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5843), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6208), 1, sym_comment, - ACTIONS(9681), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205729] = 7, + STATE(6827), 1, + sym_block, + STATE(8161), 1, + sym_short_flag, + STATE(8178), 1, + sym_long_flag, + [222233] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6436), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6209), 1, + sym_comment, + STATE(6840), 1, + sym_block, + STATE(8035), 1, + sym_short_flag, + STATE(8038), 1, + sym_long_flag, + [222258] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9683), 1, + ACTIONS(10416), 1, anon_sym_DQUOTE2, - STATE(5844), 1, + STATE(6210), 1, sym_comment, - STATE(5846), 1, + STATE(6213), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205752] = 5, - ACTIONS(251), 1, + [222281] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(5845), 1, + ACTIONS(4728), 1, + aux_sym_unquoted_token3, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9306), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9308), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9310), 1, + aux_sym__immediate_decimal_token5, + STATE(6211), 1, sym_comment, - STATE(6746), 1, - sym_block, - ACTIONS(9685), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205771] = 7, + STATE(7174), 1, + sym__immediate_decimal, + [222306] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4728), 1, + aux_sym_unquoted_token3, + ACTIONS(9128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9312), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9314), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9316), 1, + aux_sym__immediate_decimal_token5, + STATE(6212), 1, + sym_comment, + STATE(8356), 1, + sym__immediate_decimal, + [222331] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9687), 1, + ACTIONS(10418), 1, anon_sym_DQUOTE2, - STATE(5846), 1, + STATE(6213), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205794] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9689), 1, - anon_sym_RBRACK, - STATE(5847), 1, - sym_comment, - STATE(6225), 1, - aux_sym_shebang_repeat1, - STATE(7075), 1, - sym_val_list, - STATE(7402), 1, - aux_sym_val_table_repeat1, - [205819] = 8, + [222354] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9691), 1, + ACTIONS(10420), 1, anon_sym_RBRACK, - STATE(5848), 1, + STATE(6214), 1, sym_comment, - STATE(6226), 1, + STATE(6617), 1, aux_sym_shebang_repeat1, - STATE(7080), 1, + STATE(7457), 1, sym_val_list, - STATE(7404), 1, + STATE(7884), 1, aux_sym_val_table_repeat1, - [205844] = 8, + [222379] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5849), 1, + STATE(6215), 1, sym_comment, - STATE(6820), 1, + STATE(7313), 1, sym_block, - STATE(7469), 1, + STATE(8116), 1, sym_short_flag, - STATE(7661), 1, + STATE(8177), 1, sym_long_flag, - [205869] = 8, + [222404] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5087), 1, - sym__blosure, - STATE(5850), 1, - sym_comment, - STATE(5902), 1, - aux_sym_shebang_repeat1, - [205894] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9693), 1, - anon_sym_RBRACK, - STATE(5851), 1, - sym_comment, - STATE(6227), 1, - aux_sym_shebang_repeat1, - STATE(7089), 1, - sym_val_list, - STATE(7408), 1, - aux_sym_val_table_repeat1, - [205919] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9695), 1, - anon_sym_RBRACK, - STATE(5852), 1, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6216), 1, sym_comment, - STATE(6228), 1, - aux_sym_shebang_repeat1, - STATE(7093), 1, - sym_val_list, - STATE(7410), 1, - aux_sym_val_table_repeat1, - [205944] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4904), 1, + STATE(7316), 1, sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5080), 1, - sym__blosure, - STATE(5853), 1, - sym_comment, - [205969] = 8, + STATE(7986), 1, + sym_short_flag, + STATE(7987), 1, + sym_long_flag, + [222429] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9697), 1, + ACTIONS(10422), 1, anon_sym_RBRACK, - STATE(5854), 1, + STATE(6217), 1, sym_comment, - STATE(6229), 1, + STATE(6558), 1, aux_sym_shebang_repeat1, - STATE(7104), 1, + STATE(7497), 1, sym_val_list, - STATE(7415), 1, + STATE(7743), 1, aux_sym_val_table_repeat1, - [205994] = 8, + [222454] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9699), 1, + ACTIONS(10424), 1, anon_sym_RBRACK, - STATE(5855), 1, + STATE(6218), 1, sym_comment, - STATE(6230), 1, + STATE(6618), 1, aux_sym_shebang_repeat1, - STATE(7108), 1, + STATE(7462), 1, sym_val_list, - STATE(7417), 1, + STATE(7887), 1, aux_sym_val_table_repeat1, - [206019] = 7, + [222479] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(2470), 1, anon_sym_DASH2, - ACTIONS(9558), 1, - anon_sym_LBRACE, - STATE(5856), 1, - sym_comment, - STATE(6687), 1, - sym_val_record, - STATE(7546), 2, - sym_short_flag, - sym_long_flag, - [206042] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(5857), 1, + STATE(6219), 1, sym_comment, - STATE(6422), 1, - sym_block, - ACTIONS(9701), 4, + ACTIONS(2472), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206061] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9703), 1, - anon_sym_RBRACK, - STATE(5858), 1, - sym_comment, - STATE(6231), 1, - aux_sym_shebang_repeat1, - STATE(7117), 1, - sym_val_list, - STATE(7421), 1, - aux_sym_val_table_repeat1, - [206086] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9705), 1, - anon_sym_RBRACK, - STATE(5859), 1, - sym_comment, - STATE(6232), 1, - aux_sym_shebang_repeat1, - STATE(7121), 1, - sym_val_list, - STATE(7423), 1, - aux_sym_val_table_repeat1, - [206111] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + [222496] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5056), 1, + ACTIONS(10233), 1, anon_sym_DASH2, - STATE(5860), 1, + STATE(6220), 1, sym_comment, - ACTIONS(5054), 5, + ACTIONS(10231), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206128] = 5, + [222513] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6414), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6221), 1, + sym_comment, + STATE(7344), 1, + sym_block, + STATE(8072), 1, + sym_short_flag, + STATE(8136), 1, + sym_long_flag, + [222538] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(5861), 1, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6222), 1, sym_comment, - STATE(6423), 1, + STATE(7351), 1, sym_block, - ACTIONS(9701), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206147] = 8, + STATE(8156), 1, + sym_short_flag, + STATE(8166), 1, + sym_long_flag, + [222563] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10426), 1, + anon_sym_DQUOTE2, + STATE(6223), 1, + sym_comment, + STATE(6227), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [222586] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(8941), 1, + aux_sym_unquoted_token3, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5862), 1, + STATE(6224), 1, sym_comment, - STATE(6120), 1, + STATE(7174), 1, sym__immediate_decimal, - [206172] = 8, + [222611] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(8941), 1, aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - STATE(5863), 1, + STATE(6225), 1, sym_comment, - STATE(7665), 1, + STATE(8356), 1, sym__immediate_decimal, - [206197] = 7, - ACTIONS(251), 1, + [222636] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(8604), 1, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9306), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5864), 1, + ACTIONS(10324), 1, + aux_sym_unquoted_token3, + STATE(6226), 1, sym_comment, - STATE(7703), 1, + STATE(7174), 1, sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [206220] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9707), 1, - anon_sym_RBRACK, - STATE(5865), 1, - sym_comment, - STATE(6191), 1, - aux_sym_shebang_repeat1, - STATE(7032), 1, - sym_val_list, - STATE(7275), 1, - aux_sym_val_table_repeat1, - [206245] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9669), 1, - anon_sym_DASH_DASH, - ACTIONS(9671), 1, - anon_sym_DASH2, - ACTIONS(9709), 1, - sym_identifier, - STATE(5866), 1, - sym_comment, - STATE(5889), 1, - aux_sym_ctrl_do_repeat1, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [206268] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2417), 1, - anon_sym_DASH2, - STATE(5867), 1, - sym_comment, - ACTIONS(2419), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206285] = 7, + [222661] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9711), 1, + ACTIONS(10428), 1, anon_sym_DQUOTE2, - STATE(5868), 1, + STATE(6227), 1, sym_comment, - STATE(5918), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206308] = 4, + [222684] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2417), 1, + ACTIONS(2454), 1, anon_sym_DASH2, - STATE(5869), 1, + STATE(6228), 1, sym_comment, - ACTIONS(2419), 5, + ACTIONS(2456), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206325] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, - anon_sym_LBRACE, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5080), 1, - sym__blosure, - STATE(5870), 1, - sym_comment, - STATE(5951), 1, - aux_sym_shebang_repeat1, - [206350] = 4, + [222701] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2421), 1, - anon_sym_DASH2, - STATE(5871), 1, - sym_comment, - ACTIONS(2423), 5, - ts_builtin_sym_end, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206367] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5872), 1, - sym_comment, - STATE(6868), 1, - sym_block, - STATE(7463), 1, - sym_long_flag, - STATE(7692), 1, - sym_short_flag, - [206392] = 4, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10430), 1, + anon_sym_RBRACK, + STATE(6229), 1, + sym_comment, + STATE(6619), 1, + aux_sym_shebang_repeat1, + STATE(7478), 1, + sym_val_list, + STATE(7894), 1, + aux_sym_val_table_repeat1, + [222726] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2425), 1, + ACTIONS(2474), 1, anon_sym_DASH2, - STATE(5873), 1, + STATE(6230), 1, sym_comment, - ACTIONS(2427), 5, + ACTIONS(2476), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206409] = 8, + [222743] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - ACTIONS(9713), 1, + ACTIONS(10432), 1, anon_sym_RBRACK, - STATE(5874), 1, + STATE(6231), 1, sym_comment, - STATE(6179), 1, + STATE(6620), 1, aux_sym_shebang_repeat1, - STATE(7226), 1, - aux_sym_val_table_repeat1, - STATE(7247), 1, + STATE(7483), 1, sym_val_list, - [206434] = 4, + STATE(7897), 1, + aux_sym_val_table_repeat1, + [222768] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2429), 1, + ACTIONS(2478), 1, anon_sym_DASH2, - STATE(5875), 1, + STATE(6232), 1, sym_comment, - ACTIONS(2431), 5, + ACTIONS(2480), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206451] = 5, + [222785] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6697), 1, - anon_sym_DOT_DOT2, - STATE(5876), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, + sym_block, + STATE(5467), 1, + sym__blosure, + STATE(6233), 1, sym_comment, - ACTIONS(6699), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5918), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206470] = 8, + [222810] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10434), 1, + anon_sym_DQUOTE2, + STATE(6234), 1, + sym_comment, + STATE(6237), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [222833] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8323), 1, + ACTIONS(6720), 1, + aux_sym_unquoted_token3, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9715), 1, - aux_sym_unquoted_token3, - STATE(5877), 1, + STATE(6235), 1, sym_comment, - STATE(6260), 1, + STATE(7174), 1, sym__immediate_decimal, - [206495] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6697), 1, - anon_sym_DOT_DOT2, - STATE(5878), 1, - sym_comment, - ACTIONS(6699), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5928), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206514] = 8, + [222858] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8602), 1, + ACTIONS(6720), 1, + aux_sym_unquoted_token3, + ACTIONS(9128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9312), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9314), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9316), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9715), 1, - aux_sym_unquoted_token3, - STATE(5879), 1, + STATE(6236), 1, sym_comment, - STATE(7771), 1, + STATE(8356), 1, sym__immediate_decimal, - [206539] = 7, + [222883] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9717), 1, + ACTIONS(10436), 1, anon_sym_DQUOTE2, - STATE(5762), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5880), 1, + STATE(6237), 1, sym_comment, - STATE(6698), 1, + STATE(6312), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206562] = 4, - ACTIONS(3), 1, + [222906] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5881), 1, - sym_comment, - ACTIONS(2193), 3, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10438), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2195), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [206579] = 8, + STATE(6238), 1, + sym_comment, + STATE(6621), 1, + aux_sym_shebang_repeat1, + STATE(7500), 1, + sym_val_list, + STATE(7905), 1, + aux_sym_val_table_repeat1, + [222931] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(4904), 1, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6239), 1, + sym_comment, + STATE(7707), 1, sym_block, - STATE(4906), 1, + STATE(8003), 1, + sym_long_flag, + STATE(8059), 1, + sym_short_flag, + [222956] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, + anon_sym_LBRACE, + STATE(5059), 1, sym_val_closure, - STATE(5079), 1, + STATE(5311), 1, + sym_block, + STATE(5342), 1, sym__blosure, - STATE(5882), 1, + STATE(6240), 1, sym_comment, - STATE(5926), 1, + STATE(6284), 1, aux_sym_shebang_repeat1, - [206604] = 4, + [222981] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_DASH2, - STATE(5883), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10440), 1, + anon_sym_RBRACK, + STATE(6241), 1, sym_comment, - ACTIONS(1899), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym__table_head_separator, - [206621] = 4, - ACTIONS(251), 1, + STATE(6622), 1, + aux_sym_shebang_repeat1, + STATE(7504), 1, + sym_val_list, + STATE(7908), 1, + aux_sym_val_table_repeat1, + [223006] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5884), 1, + STATE(6242), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(2082), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1787), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(2084), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206638] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9460), 1, - anon_sym_def, - ACTIONS(9462), 1, - anon_sym_extern, - ACTIONS(9464), 1, - anon_sym_module, - ACTIONS(9466), 1, - anon_sym_use, - ACTIONS(9719), 1, - anon_sym_alias, - ACTIONS(9721), 1, - anon_sym_const, - STATE(5885), 1, - sym_comment, - [206663] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2433), 1, - anon_sym_DASH2, - STATE(5886), 1, - sym_comment, - ACTIONS(2435), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206680] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - anon_sym_DASH2, - STATE(5887), 1, - sym_comment, - ACTIONS(2439), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206697] = 4, + sym__entry_separator, + [223023] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5104), 1, + ACTIONS(2482), 1, anon_sym_DASH2, - STATE(5888), 1, + STATE(6243), 1, sym_comment, - ACTIONS(5102), 5, + ACTIONS(2484), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206714] = 7, - ACTIONS(251), 1, + [223040] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9669), 1, - anon_sym_DASH_DASH, - ACTIONS(9671), 1, - anon_sym_DASH2, - ACTIONS(9723), 1, - sym_identifier, - STATE(5889), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10442), 1, + anon_sym_DQUOTE2, + STATE(6244), 1, sym_comment, - STATE(5948), 1, - aux_sym_ctrl_do_repeat1, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [206737] = 8, - ACTIONS(251), 1, + STATE(6245), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [223063] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(5890), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10444), 1, + anon_sym_DQUOTE2, + STATE(6245), 1, sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6278), 1, - sym__assignment_pattern, - [206762] = 8, + STATE(6312), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [223086] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(5891), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10446), 1, + anon_sym_RBRACK, + STATE(6246), 1, sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6280), 1, - sym__assignment_pattern, - [206787] = 4, + STATE(6624), 1, + aux_sym_shebang_repeat1, + STATE(7523), 1, + sym_val_list, + STATE(7913), 1, + aux_sym_val_table_repeat1, + [223111] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2461), 1, + ACTIONS(1891), 1, anon_sym_DASH2, - STATE(5892), 1, + STATE(6247), 1, sym_comment, - ACTIONS(2463), 5, + ACTIONS(1893), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [206804] = 4, + [223128] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2395), 1, - anon_sym_DASH2, - STATE(5893), 1, - sym_comment, - ACTIONS(2397), 5, - ts_builtin_sym_end, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206821] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - STATE(5894), 1, - sym_comment, - STATE(6120), 1, - sym__immediate_decimal, - [206846] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2399), 1, - anon_sym_DASH2, - STATE(5895), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10448), 1, + anon_sym_RBRACK, + STATE(6248), 1, sym_comment, - ACTIONS(2401), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206863] = 8, + STATE(6625), 1, + aux_sym_shebang_repeat1, + STATE(7527), 1, + sym_val_list, + STATE(7915), 1, + aux_sym_val_table_repeat1, + [223153] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5896), 1, + STATE(6249), 1, sym_comment, - STATE(7144), 1, + STATE(7095), 1, sym_block, - STATE(7479), 1, + STATE(7995), 1, sym_short_flag, - STATE(7481), 1, + STATE(8000), 1, sym_long_flag, - [206888] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_DASH2, - STATE(5897), 1, - sym_comment, - ACTIONS(2405), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206905] = 8, + [223178] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5898), 1, + STATE(6250), 1, sym_comment, - STATE(7146), 1, + STATE(7096), 1, sym_block, - STATE(7486), 1, + STATE(8001), 1, sym_short_flag, - STATE(7487), 1, + STATE(8005), 1, sym_long_flag, - [206930] = 8, - ACTIONS(251), 1, + [223203] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5899), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10450), 1, + anon_sym_DQUOTE2, + STATE(6251), 1, sym_comment, - STATE(7150), 1, - sym_block, - STATE(7489), 1, - sym_short_flag, - STATE(7493), 1, - sym_long_flag, - [206955] = 4, - ACTIONS(251), 1, + STATE(6252), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [223226] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DASH2, - STATE(5900), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10452), 1, + anon_sym_DQUOTE2, + STATE(6252), 1, sym_comment, - ACTIONS(2443), 5, - ts_builtin_sym_end, + STATE(6312), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [223249] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206972] = 8, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10454), 1, + anon_sym_RBRACK, + STATE(6253), 1, + sym_comment, + STATE(6626), 1, + aux_sym_shebang_repeat1, + STATE(7548), 1, + sym_val_list, + STATE(7919), 1, + aux_sym_val_table_repeat1, + [223274] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5901), 1, + STATE(6254), 1, sym_comment, - STATE(7172), 1, + STATE(7099), 1, sym_block, - STATE(7514), 1, + STATE(8019), 1, sym_short_flag, - STATE(7518), 1, + STATE(8025), 1, sym_long_flag, - [206997] = 8, + [223299] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9648), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5016), 1, - sym__blosure, - STATE(5902), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10456), 1, + anon_sym_RBRACK, + STATE(6255), 1, sym_comment, - [207022] = 8, + STATE(6627), 1, + aux_sym_shebang_repeat1, + STATE(7552), 1, + sym_val_list, + STATE(7922), 1, + aux_sym_val_table_repeat1, + [223324] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5903), 1, + STATE(6256), 1, sym_comment, - STATE(7185), 1, + STATE(7100), 1, sym_block, - STATE(7520), 1, + STATE(8029), 1, sym_short_flag, - STATE(7521), 1, + STATE(8031), 1, sym_long_flag, - [207047] = 6, + [223349] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9725), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9727), 1, - aux_sym__immediate_decimal_token2, - STATE(5904), 1, - sym_comment, - ACTIONS(1793), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1795), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [207068] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5905), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10458), 1, + anon_sym_DQUOTE2, + STATE(6257), 1, sym_comment, - STATE(6356), 1, - sym_block, - STATE(7586), 1, - sym_long_flag, - STATE(7669), 1, - sym_short_flag, - [207093] = 8, + STATE(6259), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [223372] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(10460), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, - aux_sym__immediate_decimal_token5, - STATE(5906), 1, + ACTIONS(10462), 1, + aux_sym__immediate_decimal_token2, + STATE(6258), 1, sym_comment, - STATE(7665), 1, - sym__immediate_decimal, - [207118] = 5, + ACTIONS(1771), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [223393] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2294), 1, - anon_sym_LBRACE, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(5907), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10464), 1, + anon_sym_DQUOTE2, + STATE(6259), 1, sym_comment, - ACTIONS(2290), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [207137] = 4, + STATE(6312), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [223416] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5108), 1, - anon_sym_DASH2, - STATE(5908), 1, - sym_comment, - ACTIONS(5106), 5, - ts_builtin_sym_end, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207154] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5909), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10466), 1, + anon_sym_RBRACK, + STATE(6260), 1, sym_comment, - STATE(6361), 1, - sym_block, - STATE(7504), 1, - sym_short_flag, - STATE(7559), 1, - sym_long_flag, - [207179] = 8, + STATE(6628), 1, + aux_sym_shebang_repeat1, + STATE(7574), 1, + sym_val_list, + STATE(7926), 1, + aux_sym_val_table_repeat1, + [223441] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5910), 1, + ACTIONS(10251), 1, + aux_sym__immediate_decimal_token2, + STATE(6261), 1, sym_comment, - STATE(6363), 1, - sym_block, - STATE(7573), 1, - sym_short_flag, - STATE(7575), 1, - sym_long_flag, - [207204] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(1779), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 3, anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5911), 1, - sym_comment, - STATE(6366), 1, - sym_block, - STATE(7603), 1, - sym_short_flag, - STATE(7612), 1, - sym_long_flag, - [207229] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223460] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5912), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10468), 1, + anon_sym_RBRACK, + STATE(6262), 1, sym_comment, - STATE(6387), 1, - sym_block, - STATE(7653), 1, - sym_short_flag, - STATE(7655), 1, - sym_long_flag, - [207254] = 4, + STATE(6629), 1, + aux_sym_shebang_repeat1, + STATE(7578), 1, + sym_val_list, + STATE(7928), 1, + aux_sym_val_table_repeat1, + [223485] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5913), 1, + ACTIONS(2078), 1, + sym__entry_separator, + ACTIONS(10470), 1, + anon_sym_DOT_DOT2, + STATE(6263), 1, sym_comment, - ACTIONS(1056), 3, + ACTIONS(2072), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1058), 3, + ACTIONS(10472), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207271] = 4, + [223506] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DASH2, - STATE(5914), 1, - sym_comment, - ACTIONS(2409), 5, - ts_builtin_sym_end, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207288] = 8, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10474), 1, + anon_sym_RBRACK, + STATE(6264), 1, + sym_comment, + STATE(6630), 1, + aux_sym_shebang_repeat1, + STATE(7592), 1, + sym_val_list, + STATE(7932), 1, + aux_sym_val_table_repeat1, + [223531] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5915), 1, - sym_comment, - STATE(7102), 1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, sym_block, - STATE(7527), 1, - sym_short_flag, - STATE(7532), 1, - sym_long_flag, - [207313] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6202), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - ACTIONS(9729), 1, - anon_sym_RBRACE, - STATE(5916), 1, + STATE(5373), 1, + sym__blosure, + STATE(6265), 1, sym_comment, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(6800), 1, - sym_path, - STATE(7253), 1, - sym_cell_path, - [207338] = 6, + STATE(6342), 1, + aux_sym_shebang_repeat1, + [223556] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(9732), 1, - anon_sym_DOT_DOT2, - STATE(5917), 1, - sym_comment, - ACTIONS(1851), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9734), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207359] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9736), 1, - anon_sym_LPAREN, - ACTIONS(9742), 1, - anon_sym_DQUOTE2, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9739), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(5918), 2, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10476), 1, + anon_sym_RBRACK, + STATE(6266), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [207380] = 6, + STATE(6631), 1, + aux_sym_shebang_repeat1, + STATE(7597), 1, + sym_val_list, + STATE(7935), 1, + aux_sym_val_table_repeat1, + [223581] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(981), 1, + ACTIONS(2096), 1, sym__entry_separator, - ACTIONS(9744), 1, - anon_sym_DOT, - STATE(6800), 1, - sym_path, - ACTIONS(979), 2, + ACTIONS(10478), 1, + anon_sym_DOT_DOT2, + STATE(6267), 1, + sym_comment, + ACTIONS(2090), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(5919), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [207401] = 4, + ACTIONS(10480), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223602] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9747), 1, - anon_sym_LT, - STATE(5920), 1, - sym_comment, - ACTIONS(7876), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [207418] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2300), 1, - anon_sym_LBRACE, - STATE(5921), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10482), 1, + anon_sym_RBRACK, + STATE(6268), 1, sym_comment, - ACTIONS(2298), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [207437] = 4, + STATE(6632), 1, + aux_sym_shebang_repeat1, + STATE(7605), 1, + sym_val_list, + STATE(7939), 1, + aux_sym_val_table_repeat1, + [223627] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5922), 1, + ACTIONS(2104), 1, + sym__entry_separator, + ACTIONS(10484), 1, + anon_sym_DOT_DOT2, + STATE(6269), 1, sym_comment, - ACTIONS(1777), 3, + ACTIONS(2098), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1779), 3, + ACTIONS(10486), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207454] = 4, + [223648] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9749), 1, - anon_sym_LT, - STATE(5923), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10488), 1, + anon_sym_RBRACK, + STATE(6270), 1, sym_comment, - ACTIONS(7876), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [207471] = 7, + STATE(6633), 1, + aux_sym_shebang_repeat1, + STATE(7608), 1, + sym_val_list, + STATE(7941), 1, + aux_sym_val_table_repeat1, + [223673] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(988), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5919), 1, - aux_sym_cell_path_repeat1, - STATE(5924), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10490), 1, + anon_sym_DQUOTE2, + STATE(6110), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6271), 1, sym_comment, - STATE(6800), 1, - sym_path, - ACTIONS(986), 2, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [223696] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10492), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [207494] = 8, + STATE(6272), 1, + sym_comment, + STATE(6634), 1, + aux_sym_shebang_repeat1, + STATE(7620), 1, + sym_val_list, + STATE(7945), 1, + aux_sym_val_table_repeat1, + [223721] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5925), 1, + ACTIONS(10237), 1, + anon_sym_alias, + ACTIONS(10239), 1, + anon_sym_const, + ACTIONS(10241), 1, + anon_sym_def, + ACTIONS(10243), 1, + anon_sym_extern, + ACTIONS(10245), 1, + anon_sym_module, + ACTIONS(10247), 1, + anon_sym_use, + STATE(6273), 1, sym_comment, - STATE(7007), 1, - sym_block, - STATE(7552), 1, - sym_short_flag, - STATE(7557), 1, - sym_long_flag, - [207519] = 8, + [223746] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9648), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5109), 1, - sym__blosure, - STATE(5926), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10494), 1, + anon_sym_RBRACK, + STATE(6274), 1, sym_comment, - [207544] = 8, + STATE(6635), 1, + aux_sym_shebang_repeat1, + STATE(7624), 1, + sym_val_list, + STATE(7947), 1, + aux_sym_val_table_repeat1, + [223771] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5927), 1, + STATE(6275), 1, sym_comment, - STATE(7008), 1, + STATE(7369), 1, sym_block, - STATE(7560), 1, + STATE(7992), 1, sym_short_flag, - STATE(7566), 1, + STATE(8046), 1, sym_long_flag, - [207569] = 8, + [223796] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(10287), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5928), 1, + STATE(6276), 1, sym_comment, - STATE(7014), 1, - sym_block, - STATE(7597), 1, - sym_short_flag, - STATE(7601), 1, - sym_long_flag, - [207594] = 8, + STATE(6851), 1, + sym_val_record, + ACTIONS(10496), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223815] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(10287), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5929), 1, + STATE(6277), 1, sym_comment, - STATE(7036), 1, - sym_block, - STATE(7620), 1, - sym_short_flag, - STATE(7623), 1, - sym_long_flag, - [207619] = 6, - ACTIONS(251), 1, + STATE(6852), 1, + sym_val_record, + ACTIONS(10498), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [223834] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9751), 1, - sym_long_flag_identifier, - ACTIONS(9753), 1, - anon_sym_EQ2, - STATE(5930), 1, + ACTIONS(2137), 1, + sym__entry_separator, + ACTIONS(10500), 1, + anon_sym_DOT_DOT2, + STATE(6278), 1, sym_comment, - ACTIONS(4968), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4970), 2, - sym_identifier, - anon_sym_DASH2, - [207640] = 8, + ACTIONS(2131), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(10502), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223855] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9648), 1, + ACTIONS(10291), 1, anon_sym_LBRACE, - STATE(4904), 1, - sym_block, - STATE(4906), 1, + STATE(5059), 1, sym_val_closure, - STATE(5016), 1, + STATE(5311), 1, + sym_block, + STATE(5326), 1, sym__blosure, - STATE(5931), 1, + STATE(6279), 1, sym_comment, - STATE(6021), 1, + STATE(6282), 1, aux_sym_shebang_repeat1, - [207665] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9755), 1, - anon_sym_DQUOTE2, - STATE(5932), 1, - sym_comment, - STATE(5947), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207688] = 8, - ACTIONS(3), 1, + [223880] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - STATE(5933), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6280), 1, sym_comment, - STATE(6260), 1, - sym__immediate_decimal, - [207713] = 8, + STATE(7393), 1, + sym_block, + STATE(8058), 1, + sym_short_flag, + STATE(8090), 1, + sym_long_flag, + [223905] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9648), 1, + ACTIONS(10291), 1, anon_sym_LBRACE, - STATE(4904), 1, - sym_block, - STATE(4906), 1, + STATE(5059), 1, sym_val_closure, - STATE(5178), 1, + STATE(5311), 1, + sym_block, + STATE(5401), 1, sym__blosure, - STATE(5853), 1, + STATE(6102), 1, aux_sym_shebang_repeat1, - STATE(5934), 1, + STATE(6281), 1, sym_comment, - [207738] = 6, + [223930] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2088), 1, - anon_sym_DASH2, - ACTIONS(9757), 1, - anon_sym_DOT_DOT2, - STATE(5935), 1, - sym_comment, - ACTIONS(2094), 2, - anon_sym_DASH_DASH, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, anon_sym_LBRACE, - ACTIONS(9759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207759] = 8, - ACTIONS(251), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, + sym_block, + STATE(5349), 1, + sym__blosure, + STATE(6282), 1, + sym_comment, + [223955] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5936), 1, + ACTIONS(10173), 1, + anon_sym_DOT, + STATE(6092), 1, + aux_sym_cell_path_repeat1, + STATE(6283), 1, sym_comment, - STATE(6714), 1, - sym_block, - STATE(7617), 1, - sym_short_flag, - STATE(7632), 1, - sym_long_flag, - [207784] = 8, + STATE(7065), 1, + sym_path, + ACTIONS(982), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [223976] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5937), 1, - sym_comment, - STATE(6715), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, sym_block, - STATE(7635), 1, - sym_short_flag, - STATE(7638), 1, - sym_long_flag, - [207809] = 8, + STATE(5351), 1, + sym__blosure, + STATE(6284), 1, + sym_comment, + [224001] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5938), 1, + STATE(6285), 1, sym_comment, - STATE(6731), 1, - sym_block, - STATE(7659), 1, - sym_short_flag, - STATE(7660), 1, - sym_long_flag, - [207834] = 8, + ACTIONS(1779), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224018] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5939), 1, + STATE(6286), 1, sym_comment, - STATE(6744), 1, + STATE(7402), 1, sym_block, - STATE(7674), 1, + STATE(8126), 1, sym_short_flag, - STATE(7676), 1, + STATE(8137), 1, sym_long_flag, - [207859] = 8, + [224043] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4839), 1, + ACTIONS(5061), 1, aux_sym_unquoted_token3, - ACTIONS(8602), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, + ACTIONS(9306), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, + ACTIONS(9308), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, + ACTIONS(9310), 1, aux_sym__immediate_decimal_token5, - STATE(5940), 1, + STATE(6287), 1, sym_comment, - STATE(7771), 1, + STATE(7174), 1, sym__immediate_decimal, - [207884] = 6, + [224068] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(5941), 1, - sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9654), 2, - sym_filesize_unit, - sym_duration_unit, - [207905] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5942), 1, + STATE(6288), 1, sym_comment, - ACTIONS(2098), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1771), 2, anon_sym_DOT_DOT2, - ACTIONS(2100), 3, + aux_sym_unquoted_token2, + ACTIONS(1773), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207922] = 8, + [224085] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5943), 1, - sym_comment, - STATE(6757), 1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, sym_block, - STATE(7680), 1, - sym_short_flag, - STATE(7684), 1, - sym_long_flag, - [207947] = 8, + STATE(5351), 1, + sym__blosure, + STATE(6233), 1, + aux_sym_shebang_repeat1, + STATE(6289), 1, + sym_comment, + [224110] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5944), 1, + STATE(6290), 1, sym_comment, - STATE(6802), 1, + STATE(7468), 1, sym_block, - STATE(7694), 1, + STATE(8007), 1, sym_short_flag, - STATE(7697), 1, + STATE(8013), 1, sym_long_flag, - [207972] = 8, + [224135] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5945), 1, + STATE(6291), 1, sym_comment, - STATE(6810), 1, - sym_block, - STATE(7600), 1, - sym_long_flag, - STATE(7698), 1, - sym_short_flag, - [207997] = 8, + ACTIONS(1799), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224152] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(5946), 1, + STATE(6292), 1, sym_comment, - STATE(6812), 1, - sym_block, - STATE(7459), 1, - sym_short_flag, - STATE(7462), 1, - sym_long_flag, - [208022] = 7, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1820), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [224169] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9761), 1, - anon_sym_DQUOTE2, - STATE(5918), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5947), 1, + ACTIONS(7708), 1, + anon_sym_RBRACK, + ACTIONS(7710), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(6293), 1, sym_comment, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [208045] = 6, + STATE(7284), 1, + sym_path, + STATE(8101), 1, + sym_cell_path, + [224194] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8893), 1, - sym_identifier, - ACTIONS(9763), 1, - anon_sym_DASH_DASH, - ACTIONS(9766), 1, + ACTIONS(2367), 1, anon_sym_DASH2, - STATE(5948), 2, + STATE(6294), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6172), 2, - sym_short_flag, - sym_long_flag, - [208066] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(2369), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9769), 1, - anon_sym_RBRACK, - STATE(5949), 1, - sym_comment, - STATE(6199), 1, - aux_sym_shebang_repeat1, - STATE(7262), 1, - sym_val_list, - STATE(7305), 1, - aux_sym_val_table_repeat1, - [208091] = 8, - ACTIONS(251), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [224211] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9456), 1, - anon_sym_alias, - ACTIONS(9458), 1, - anon_sym_const, - ACTIONS(9460), 1, - anon_sym_def, - ACTIONS(9462), 1, - anon_sym_extern, - ACTIONS(9464), 1, - anon_sym_module, - ACTIONS(9466), 1, - anon_sym_use, - STATE(5950), 1, + ACTIONS(5061), 1, + aux_sym_unquoted_token3, + ACTIONS(9128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9312), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9314), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9316), 1, + aux_sym__immediate_decimal_token5, + STATE(6295), 1, sym_comment, - [208116] = 8, + STATE(8356), 1, + sym__immediate_decimal, + [224236] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5110), 1, - sym__blosure, - STATE(5951), 1, - sym_comment, - [208141] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(9771), 1, - anon_sym_DOT_DOT2, - STATE(5952), 1, + STATE(6296), 1, sym_comment, - ACTIONS(1836), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9773), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208162] = 8, + STATE(6724), 1, + sym_block, + ACTIONS(10504), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224255] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5110), 1, - sym__blosure, - STATE(5827), 1, - aux_sym_shebang_repeat1, - STATE(5953), 1, + STATE(6297), 1, sym_comment, - [208187] = 8, + STATE(6730), 1, + sym_block, + ACTIONS(10504), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224274] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(5222), 1, + anon_sym_DASH2, + STATE(6298), 1, + sym_comment, + ACTIONS(5220), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9775), 1, - anon_sym_RBRACK, - STATE(5954), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [224291] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9312), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9314), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9316), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(10324), 1, + aux_sym_unquoted_token3, + STATE(6299), 1, sym_comment, - STATE(6200), 1, - aux_sym_shebang_repeat1, - STATE(7271), 1, - sym_val_list, - STATE(7307), 1, - aux_sym_val_table_repeat1, - [208212] = 6, + STATE(8356), 1, + sym__immediate_decimal, + [224316] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4970), 1, + ACTIONS(10295), 1, + anon_sym_DASH_DASH, + ACTIONS(10297), 1, anon_sym_DASH2, - ACTIONS(9777), 1, - sym_long_flag_identifier, - ACTIONS(9779), 1, - anon_sym_EQ2, - STATE(5955), 1, + ACTIONS(10506), 1, + sym_identifier, + STATE(6300), 1, sym_comment, - ACTIONS(4968), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [208233] = 6, + STATE(6335), 1, + aux_sym_ctrl_do_repeat1, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [224339] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(9781), 1, - anon_sym_DOT, - ACTIONS(9783), 1, - aux_sym__immediate_decimal_token2, - STATE(5956), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6301), 1, sym_comment, - ACTIONS(1787), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208254] = 4, + STATE(6480), 1, + sym__variable_name, + STATE(6967), 1, + sym__assignment_pattern, + [224364] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5957), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6302), 1, sym_comment, - ACTIONS(1793), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1795), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208271] = 8, + STATE(6480), 1, + sym__variable_name, + STATE(6983), 1, + sym__assignment_pattern, + [224389] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9785), 1, - anon_sym_RBRACK, - STATE(5958), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6303), 1, sym_comment, - STATE(6180), 1, - aux_sym_shebang_repeat1, - STATE(7234), 1, - aux_sym_val_table_repeat1, - STATE(7437), 1, - sym_val_list, - [208296] = 8, + STATE(6480), 1, + sym__variable_name, + STATE(7003), 1, + sym__assignment_pattern, + [224414] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(5226), 1, anon_sym_DASH2, - STATE(5959), 1, - sym_comment, - STATE(7004), 1, - sym_block, - STATE(7467), 1, - sym_short_flag, - STATE(7512), 1, - sym_long_flag, - [208321] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3581), 1, - sym__space, - STATE(5960), 1, + STATE(6304), 1, sym_comment, - ACTIONS(3579), 5, + ACTIONS(5224), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DOLLAR, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [208338] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, - ACTIONS(9787), 1, - anon_sym_DOT_DOT2, - STATE(5961), 1, - sym_comment, - ACTIONS(2070), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9789), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208359] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5962), 1, - sym_comment, - ACTIONS(2102), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2104), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [208376] = 3, + anon_sym_as, + [224431] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(5963), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(9130), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9132), 1, + aux_sym__immediate_decimal_token5, + STATE(6305), 1, sym_comment, - ACTIONS(9791), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208391] = 8, + STATE(8267), 1, + sym__immediate_decimal, + ACTIONS(9128), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [224454] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5964), 1, + ACTIONS(10510), 1, + anon_sym_LBRACE, + STATE(6306), 1, sym_comment, - STATE(6667), 1, - sym_block, - STATE(7494), 1, + STATE(7812), 1, + sym_val_record, + STATE(8165), 2, sym_short_flag, - STATE(7495), 1, sym_long_flag, - [208416] = 8, + [224477] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5965), 1, + STATE(6307), 1, sym_comment, - STATE(6670), 1, + STATE(7599), 1, sym_block, - STATE(7496), 1, + STATE(8175), 1, sym_short_flag, - STATE(7498), 1, + STATE(8176), 1, sym_long_flag, - [208441] = 8, + [224502] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5966), 1, + STATE(6308), 1, sym_comment, - STATE(6775), 1, + STATE(7619), 1, sym_block, - STATE(7499), 1, + STATE(8191), 1, sym_short_flag, - STATE(7500), 1, + STATE(8193), 1, sym_long_flag, - [208466] = 8, + [224527] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(977), 1, + sym__entry_separator, + ACTIONS(10512), 1, + anon_sym_DOT, + STATE(7284), 1, + sym_path, + ACTIONS(975), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6309), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [224548] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, + ACTIONS(10283), 1, anon_sym_DASH_DASH, - ACTIONS(9528), 1, + ACTIONS(10285), 1, anon_sym_DASH2, - STATE(5967), 1, + STATE(6310), 1, sym_comment, - STATE(6778), 1, + STATE(7621), 1, sym_block, - STATE(7501), 1, + STATE(8198), 1, sym_short_flag, - STATE(7502), 1, + STATE(8215), 1, sym_long_flag, - [208491] = 4, + [224573] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10515), 1, + anon_sym_DQUOTE2, + STATE(6311), 1, + sym_comment, + STATE(6362), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [224596] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10517), 1, + anon_sym_LPAREN, + ACTIONS(10523), 1, + anon_sym_DQUOTE2, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10520), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(6312), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [224617] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9306), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9308), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9310), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(10525), 1, + aux_sym_unquoted_token3, + STATE(6313), 1, + sym_comment, + STATE(7174), 1, + sym__immediate_decimal, + [224642] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(2520), 1, anon_sym_DASH2, - STATE(5968), 1, + STATE(6314), 1, sym_comment, - ACTIONS(5188), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2522), 5, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [208508] = 4, + anon_sym_LBRACE, + sym__table_head_separator, + [224659] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5194), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(10527), 1, + anon_sym_DOT, + ACTIONS(10529), 1, + aux_sym__immediate_decimal_token2, + STATE(6315), 1, + sym_comment, + ACTIONS(1781), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224680] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1925), 1, anon_sym_DASH2, - STATE(5969), 1, + STATE(6316), 1, sym_comment, - ACTIONS(5192), 5, + ACTIONS(1927), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208525] = 6, + [224697] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9312), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9314), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9316), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(10525), 1, + aux_sym_unquoted_token3, + STATE(6317), 1, + sym_comment, + STATE(8356), 1, + sym__immediate_decimal, + [224722] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(9715), 1, - aux_sym_unquoted_token2, - STATE(5970), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6318), 1, sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9654), 2, - sym_filesize_unit, - sym_duration_unit, - [208546] = 7, + STATE(7528), 1, + sym_block, + STATE(8106), 1, + sym_short_flag, + STATE(8108), 1, + sym_long_flag, + [224747] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9793), 1, - anon_sym_DQUOTE2, - STATE(5918), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5971), 1, + ACTIONS(2045), 1, + anon_sym_RBRACE, + ACTIONS(2047), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(6319), 1, sym_comment, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [208569] = 4, + STATE(7284), 1, + sym_path, + STATE(8053), 1, + sym_cell_path, + [224772] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(2520), 1, anon_sym_DASH2, - STATE(5972), 1, + STATE(6320), 1, sym_comment, - ACTIONS(1899), 5, + ACTIONS(2522), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208586] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4930), 1, - anon_sym_DOLLAR, - ACTIONS(9795), 1, - anon_sym_EQ2, - ACTIONS(9797), 1, - sym_short_flag_identifier, - STATE(5973), 1, - sym_comment, - ACTIONS(4932), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [208607] = 4, + [224789] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1038), 1, + ACTIONS(1933), 1, anon_sym_DASH2, - STATE(5974), 1, + STATE(6321), 1, sym_comment, - ACTIONS(1040), 5, + ACTIONS(1935), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208624] = 5, + [224806] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10531), 1, + sym_long_flag_identifier, + ACTIONS(10533), 1, + anon_sym_EQ2, + STATE(6322), 1, + sym_comment, + ACTIONS(5010), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(5012), 2, + sym_identifier, + anon_sym_DASH2, + [224827] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(5975), 1, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6323), 1, sym_comment, - STATE(6818), 1, + STATE(7541), 1, sym_block, - ACTIONS(9799), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208643] = 8, - ACTIONS(3), 1, + STATE(8117), 1, + sym_short_flag, + STATE(8122), 1, + sym_long_flag, + [224852] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9801), 1, - aux_sym_unquoted_token3, - STATE(5976), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6324), 1, sym_comment, - STATE(6260), 1, - sym__immediate_decimal, - [208668] = 7, + STATE(6480), 1, + sym__variable_name, + STATE(6967), 1, + sym__assignment_pattern, + [224877] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(5977), 1, + ACTIONS(10535), 1, + anon_sym_DOT_DOT2, + STATE(6325), 1, sym_comment, - STATE(8110), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [208691] = 5, + ACTIONS(10537), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2078), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224896] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(5978), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6326), 1, sym_comment, - STATE(6342), 1, - sym_block, - ACTIONS(9803), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208710] = 6, - ACTIONS(3), 1, + STATE(6480), 1, + sym__variable_name, + STATE(6983), 1, + sym__assignment_pattern, + [224921] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1040), 1, - sym__entry_separator, - ACTIONS(9805), 1, + ACTIONS(10539), 1, anon_sym_DOT_DOT2, - STATE(5979), 1, + STATE(6327), 1, sym_comment, - ACTIONS(1038), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9807), 2, + ACTIONS(10541), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208731] = 7, + ACTIONS(2096), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224940] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(5980), 1, + ACTIONS(10543), 1, + anon_sym_DOT_DOT2, + STATE(6328), 1, sym_comment, - STATE(7516), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [208754] = 6, + ACTIONS(10545), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2104), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [224959] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - ACTIONS(9809), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9811), 1, - aux_sym__immediate_decimal_token2, - STATE(5981), 1, + ACTIONS(10547), 1, + anon_sym_DOT_DOT2, + STATE(6329), 1, sym_comment, - ACTIONS(1795), 3, + ACTIONS(10549), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2137), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [208775] = 4, + [224978] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6330), 1, + sym_comment, + STATE(6480), 1, + sym__variable_name, + STATE(7003), 1, + sym__assignment_pattern, + [225003] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5230), 1, anon_sym_DASH2, - STATE(5982), 1, + STATE(6331), 1, sym_comment, - ACTIONS(2447), 5, + ACTIONS(5228), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208792] = 3, + [225020] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5983), 1, + ACTIONS(5234), 1, + anon_sym_DASH2, + STATE(6332), 1, sym_comment, - ACTIONS(9813), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [208807] = 7, + ACTIONS(5232), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [225037] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9815), 1, - anon_sym_DQUOTE2, - STATE(5984), 1, + ACTIONS(1036), 1, + sym__entry_separator, + ACTIONS(10551), 1, + anon_sym_DOT_DOT2, + STATE(6333), 1, sym_comment, - STATE(5995), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [208830] = 4, + ACTIONS(1034), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(10553), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225058] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2413), 1, + ACTIONS(2486), 1, anon_sym_DASH2, - STATE(5985), 1, + STATE(6334), 1, sym_comment, - ACTIONS(2415), 5, + ACTIONS(2488), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [208847] = 8, + [225075] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(635), 1, - anon_sym_RPAREN, - ACTIONS(9530), 1, + ACTIONS(9292), 1, + sym_identifier, + ACTIONS(10555), 1, + anon_sym_DASH_DASH, + ACTIONS(10558), 1, + anon_sym_DASH2, + STATE(6335), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6545), 2, + sym_short_flag, + sym_long_flag, + [225096] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9532), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10561), 1, + anon_sym_RBRACK, + STATE(6336), 1, + sym_comment, + STATE(6561), 1, + aux_sym_shebang_repeat1, + STATE(7655), 1, + sym_val_list, + STATE(7757), 1, + aux_sym_val_table_repeat1, + [225121] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10362), 1, + sym__newline, + ACTIONS(10364), 1, anon_sym_SEMI, - STATE(255), 1, + ACTIONS(10563), 1, + anon_sym_RPAREN, + STATE(288), 1, aux_sym__parenthesized_body_repeat1, - STATE(5986), 1, + STATE(6337), 1, sym_comment, - STATE(6786), 1, + STATE(6846), 1, aux_sym__block_body_repeat1, - STATE(7385), 1, + STATE(7746), 1, aux_sym_shebang_repeat1, - [208872] = 8, + [225146] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5640), 1, - aux_sym_unquoted_token3, - ACTIONS(8323), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8850), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8854), 1, - aux_sym__immediate_decimal_token5, - STATE(5987), 1, + STATE(6338), 1, sym_comment, - STATE(6260), 1, - sym__immediate_decimal, - [208897] = 8, + ACTIONS(2123), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2125), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [225163] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(5988), 1, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(10525), 1, + aux_sym_unquoted_token2, + STATE(6339), 1, sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6278), 1, - sym__assignment_pattern, - [208922] = 8, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(10322), 2, + sym_filesize_unit, + sym_duration_unit, + [225184] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(5989), 1, + ACTIONS(2371), 1, + anon_sym_DASH2, + STATE(6340), 1, sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6280), 1, - sym__assignment_pattern, - [208947] = 8, - ACTIONS(3), 1, + ACTIONS(2373), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [225201] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5640), 1, - aux_sym_unquoted_token3, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, - aux_sym__immediate_decimal_token5, - STATE(5990), 1, + ACTIONS(2492), 1, + anon_sym_DASH2, + STATE(6341), 1, sym_comment, - STATE(7771), 1, - sym__immediate_decimal, - [208972] = 5, + ACTIONS(2494), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [225218] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, anon_sym_LBRACE, - STATE(5991), 1, - sym_comment, - STATE(6367), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, sym_block, - ACTIONS(9803), 4, + STATE(5326), 1, + sym__blosure, + STATE(6342), 1, + sym_comment, + [225243] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1941), 1, + anon_sym_DASH2, + STATE(6343), 1, + sym_comment, + ACTIONS(1943), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208991] = 7, + anon_sym_DASH_DASH, + anon_sym_as, + [225260] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(4720), 1, + anon_sym_DOT_DOT2, + ACTIONS(5061), 1, aux_sym_unquoted_token2, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(5992), 1, + STATE(6344), 1, sym_comment, - STATE(7965), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [209014] = 6, + ACTIONS(4722), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(10322), 2, + sym_filesize_unit, + sym_duration_unit, + [225281] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_EQ2, - ACTIONS(9819), 1, - sym_short_flag_identifier, - STATE(5993), 1, + ACTIONS(10565), 1, + anon_sym_alias, + ACTIONS(10567), 1, + anon_sym_const, + ACTIONS(10569), 1, + anon_sym_def, + ACTIONS(10571), 1, + anon_sym_extern, + ACTIONS(10573), 1, + anon_sym_module, + ACTIONS(10575), 1, + anon_sym_use, + STATE(6345), 1, sym_comment, - ACTIONS(4930), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(4932), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [209035] = 8, + [225306] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(5994), 1, + ACTIONS(617), 1, + anon_sym_RPAREN, + ACTIONS(10362), 1, + sym__newline, + ACTIONS(10364), 1, + anon_sym_SEMI, + STATE(288), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6346), 1, sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6281), 1, - sym__assignment_pattern, - [209060] = 7, + STATE(7267), 1, + aux_sym__block_body_repeat1, + STATE(7746), 1, + aux_sym_shebang_repeat1, + [225331] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9821), 1, - anon_sym_DQUOTE2, - STATE(5918), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5995), 1, + ACTIONS(2258), 1, + anon_sym_LBRACE, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(6347), 1, sym_comment, - STATE(6698), 1, - sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209083] = 4, + ACTIONS(2254), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [225350] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2413), 1, + ACTIONS(2375), 1, anon_sym_DASH2, - STATE(5996), 1, + STATE(6348), 1, sym_comment, - ACTIONS(2415), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2377), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym__table_head_separator, - [209100] = 8, + anon_sym_as, + [225367] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(5997), 1, + ACTIONS(1036), 1, + anon_sym_LBRACE, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(6349), 1, sym_comment, - STATE(6800), 1, - sym_path, - STATE(7668), 1, - sym_cell_path, - [209125] = 7, + ACTIONS(1034), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [225386] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9669), 1, + ACTIONS(10295), 1, anon_sym_DASH_DASH, - ACTIONS(9671), 1, + ACTIONS(10297), 1, anon_sym_DASH2, - ACTIONS(9823), 1, + ACTIONS(10577), 1, sym_identifier, - STATE(5838), 1, + STATE(6335), 1, aux_sym_ctrl_do_repeat1, - STATE(5998), 1, + STATE(6350), 1, sym_comment, - STATE(6172), 2, + STATE(6545), 2, sym_short_flag, sym_long_flag, - [209148] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_RBRACE, - ACTIONS(1883), 1, - sym__entry_separator, - ACTIONS(9416), 1, - anon_sym_DOT, - STATE(5924), 1, - aux_sym_cell_path_repeat1, - STATE(5999), 1, - sym_comment, - STATE(6800), 1, - sym_path, - STATE(7472), 1, - sym_cell_path, - [209173] = 8, + [225409] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9825), 1, - anon_sym_RBRACK, - STATE(6000), 1, + ACTIONS(1937), 1, + anon_sym_DASH2, + STATE(6351), 1, sym_comment, - STATE(6201), 1, - aux_sym_shebang_repeat1, - STATE(7314), 1, - aux_sym_val_table_repeat1, - STATE(7448), 1, - sym_val_list, - [209198] = 8, - ACTIONS(3), 1, + ACTIONS(1939), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [225426] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8858), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8860), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9801), 1, - aux_sym_unquoted_token3, - STATE(6001), 1, + ACTIONS(2504), 1, + anon_sym_DASH2, + STATE(6352), 1, sym_comment, - STATE(7771), 1, - sym__immediate_decimal, - [209223] = 7, + ACTIONS(2506), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [225443] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10308), 1, anon_sym_LPAREN, - ACTIONS(9827), 1, + ACTIONS(10579), 1, anon_sym_DQUOTE2, - STATE(5971), 1, + STATE(6312), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6002), 1, + STATE(6353), 1, sym_comment, - STATE(6698), 1, + STATE(6668), 1, sym_expr_interpolated, - ACTIONS(9518), 2, + ACTIONS(10310), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [209246] = 4, + [225466] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(10581), 1, + anon_sym_DOT_DOT2, + STATE(6354), 1, + sym_comment, + ACTIONS(1848), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(10583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [225487] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5124), 1, + ACTIONS(2508), 1, anon_sym_DASH2, - STATE(6003), 1, + STATE(6355), 1, sym_comment, - ACTIONS(5122), 5, + ACTIONS(2510), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [209263] = 6, + [225504] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1883), 1, anon_sym_DASH2, - ACTIONS(9829), 1, - anon_sym_DOT_DOT2, - STATE(6004), 1, + STATE(6356), 1, sym_comment, - ACTIONS(1851), 2, + ACTIONS(1885), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9831), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209284] = 6, + anon_sym_as, + [225521] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_DASH2, - ACTIONS(9833), 1, - anon_sym_DOT_DOT2, - STATE(6005), 1, - sym_comment, - ACTIONS(1836), 2, - anon_sym_DASH_DASH, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(9835), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209305] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9837), 1, - anon_sym_DOT_DOT2, - STATE(6006), 1, + STATE(6357), 1, sym_comment, - ACTIONS(9839), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2094), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209324] = 4, + STATE(6692), 1, + sym_block, + ACTIONS(10585), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225540] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6007), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_DASH_DASH, + ACTIONS(10285), 1, + anon_sym_DASH2, + STATE(6358), 1, sym_comment, - ACTIONS(1801), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1803), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209341] = 6, + STATE(7558), 1, + sym_block, + STATE(8154), 1, + sym_short_flag, + STATE(8155), 1, + sym_long_flag, + [225565] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2181), 1, - anon_sym_DASH2, - ACTIONS(9841), 1, - anon_sym_DOT_DOT2, - STATE(6008), 1, - sym_comment, - ACTIONS(2187), 2, - anon_sym_DASH_DASH, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, anon_sym_LBRACE, - ACTIONS(9843), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209362] = 6, - ACTIONS(251), 1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, + sym_block, + STATE(5341), 1, + sym__blosure, + STATE(6359), 1, + sym_comment, + STATE(6375), 1, + aux_sym_shebang_repeat1, + [225590] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2070), 1, - anon_sym_DASH2, - ACTIONS(9845), 1, - anon_sym_DOT_DOT2, - STATE(6009), 1, + ACTIONS(2244), 1, + anon_sym_LBRACE, + STATE(6360), 1, sym_comment, - ACTIONS(2076), 2, + ACTIONS(2242), 5, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9847), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209383] = 6, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [225607] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_DASH2, - ACTIONS(9849), 1, - anon_sym_DOT_DOT2, - STATE(6010), 1, + ACTIONS(10241), 1, + anon_sym_def, + ACTIONS(10243), 1, + anon_sym_extern, + ACTIONS(10245), 1, + anon_sym_module, + ACTIONS(10247), 1, + anon_sym_use, + ACTIONS(10587), 1, + anon_sym_alias, + ACTIONS(10589), 1, + anon_sym_const, + STATE(6361), 1, sym_comment, - ACTIONS(2084), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9851), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209404] = 4, - ACTIONS(251), 1, + [225632] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6011), 1, + ACTIONS(10308), 1, + anon_sym_LPAREN, + ACTIONS(10591), 1, + anon_sym_DQUOTE2, + STATE(6312), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6362), 1, sym_comment, - ACTIONS(1824), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1826), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209421] = 8, + STATE(6668), 1, + sym_expr_interpolated, + ACTIONS(10310), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [225655] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9460), 1, + ACTIONS(10241), 1, anon_sym_def, - ACTIONS(9462), 1, + ACTIONS(10243), 1, anon_sym_extern, - ACTIONS(9464), 1, + ACTIONS(10245), 1, anon_sym_module, - ACTIONS(9466), 1, + ACTIONS(10247), 1, anon_sym_use, - ACTIONS(9853), 1, + ACTIONS(10593), 1, anon_sym_alias, - ACTIONS(9855), 1, + ACTIONS(10595), 1, anon_sym_const, - STATE(6012), 1, + STATE(6363), 1, sym_comment, - [209446] = 8, + [225680] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - ACTIONS(9857), 1, - anon_sym_RBRACK, - STATE(6013), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(6364), 1, sym_comment, - STATE(6202), 1, - aux_sym_shebang_repeat1, - STATE(6823), 1, - sym_val_list, - STATE(7317), 1, - aux_sym_val_table_repeat1, - [209471] = 4, + STATE(6755), 1, + sym_block, + ACTIONS(10597), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225699] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2449), 1, + ACTIONS(5012), 1, anon_sym_DASH2, - STATE(6014), 1, + ACTIONS(10599), 1, + sym_long_flag_identifier, + ACTIONS(10601), 1, + anon_sym_EQ2, + STATE(6365), 1, sym_comment, - ACTIONS(2451), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(5010), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [209488] = 5, + anon_sym_LBRACE, + [225720] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9859), 1, - anon_sym_DOT_DOT2, - STATE(6015), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + ACTIONS(10603), 1, + anon_sym_RBRACK, + STATE(6366), 1, sym_comment, - ACTIONS(9861), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2187), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209507] = 5, + STATE(6416), 1, + aux_sym_shebang_repeat1, + STATE(7725), 1, + sym_val_list, + STATE(7734), 1, + aux_sym_val_table_repeat1, + [225745] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9863), 1, - anon_sym_DOT_DOT2, - STATE(6016), 1, + ACTIONS(5027), 1, + anon_sym_DOLLAR, + ACTIONS(10605), 1, + anon_sym_EQ2, + ACTIONS(10607), 1, + sym_short_flag_identifier, + STATE(6367), 1, sym_comment, - ACTIONS(9865), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209526] = 5, + ACTIONS(5029), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [225766] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_DOT_DOT2, - STATE(6017), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(6368), 1, sym_comment, - ACTIONS(9869), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2084), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209545] = 8, + STATE(6758), 1, + sym_block, + ACTIONS(10597), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [225785] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9460), 1, + ACTIONS(10241), 1, anon_sym_def, - ACTIONS(9462), 1, + ACTIONS(10243), 1, anon_sym_extern, - ACTIONS(9464), 1, + ACTIONS(10245), 1, anon_sym_module, - ACTIONS(9466), 1, + ACTIONS(10247), 1, anon_sym_use, - ACTIONS(9871), 1, + ACTIONS(10609), 1, anon_sym_alias, - ACTIONS(9873), 1, + ACTIONS(10611), 1, anon_sym_const, - STATE(6018), 1, + STATE(6369), 1, + sym_comment, + [225810] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7739), 1, + anon_sym_RBRACK, + ACTIONS(7741), 1, + sym__entry_separator, + ACTIONS(10175), 1, + anon_sym_DOT, + STATE(6112), 1, + aux_sym_cell_path_repeat1, + STATE(6370), 1, + sym_comment, + STATE(7284), 1, + sym_path, + STATE(8181), 1, + sym_cell_path, + [225835] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10613), 1, + anon_sym_DOT, + ACTIONS(10615), 1, + aux_sym__immediate_decimal_token2, + STATE(6371), 1, sym_comment, - [209570] = 4, + ACTIONS(1779), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [225856] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1056), 1, + ACTIONS(2391), 1, anon_sym_DASH2, - STATE(6019), 1, + STATE(6372), 1, sym_comment, - ACTIONS(1058), 5, + ACTIONS(2393), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [209587] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4696), 1, - anon_sym_DOT_DOT2, - ACTIONS(9801), 1, - aux_sym_unquoted_token2, - STATE(6020), 1, - sym_comment, - ACTIONS(4698), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9654), 2, - sym_filesize_unit, - sym_duration_unit, - [209608] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9648), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4904), 1, - sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(5079), 1, - sym__blosure, - STATE(6021), 1, - sym_comment, - [209633] = 6, + [225873] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9875), 1, - anon_sym_DOT, - ACTIONS(9877), 1, - aux_sym__immediate_decimal_token2, - STATE(6022), 1, - sym_comment, - ACTIONS(1785), 2, + ACTIONS(2037), 1, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 2, - anon_sym_LPAREN2, + ACTIONS(2039), 1, sym__entry_separator, - [209654] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9446), 1, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(5836), 1, + STATE(6112), 1, aux_sym_cell_path_repeat1, - STATE(6023), 1, + STATE(6373), 1, sym_comment, - STATE(6814), 1, + STATE(7284), 1, sym_path, - ACTIONS(986), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [209675] = 4, + STATE(8002), 1, + sym_cell_path, + [225898] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(2391), 1, anon_sym_DASH2, - STATE(6024), 1, + STATE(6374), 1, sym_comment, - ACTIONS(1919), 5, + ACTIONS(2393), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [209692] = 7, + [225915] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10291), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5059), 1, + sym_val_closure, + STATE(5311), 1, + sym_block, + STATE(5373), 1, + sym__blosure, + STATE(6375), 1, + sym_comment, + [225940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9516), 1, + ACTIONS(10617), 1, anon_sym_LPAREN, - ACTIONS(9879), 1, - anon_sym_DQUOTE2, - STATE(5731), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6025), 1, - sym_comment, - STATE(6698), 1, + ACTIONS(10620), 1, + sym_unescaped_interpolated_content, + ACTIONS(10623), 1, + anon_sym_SQUOTE, + STATE(7667), 1, sym_expr_interpolated, - ACTIONS(9518), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [209715] = 4, + STATE(6376), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [225960] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9504), 1, - anon_sym_DASH2, - STATE(6026), 1, + STATE(6377), 1, sym_comment, - ACTIONS(9502), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209732] = 8, + ACTIONS(8571), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [225974] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9460), 1, - anon_sym_def, - ACTIONS(9462), 1, - anon_sym_extern, - ACTIONS(9464), 1, - anon_sym_module, - ACTIONS(9466), 1, - anon_sym_use, - ACTIONS(9881), 1, - anon_sym_alias, - ACTIONS(9883), 1, - anon_sym_const, - STATE(6027), 1, + STATE(6378), 1, sym_comment, - [209757] = 8, + ACTIONS(8721), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [225988] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(1885), 1, anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_DASH_DASH, - ACTIONS(9528), 1, - anon_sym_DASH2, - STATE(6028), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2051), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6379), 1, sym_comment, - STATE(7193), 1, - sym_block, - STATE(7604), 1, - sym_short_flag, - STATE(7611), 1, - sym_long_flag, - [209782] = 8, + [226010] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6029), 1, + ACTIONS(1889), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2065), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6380), 1, sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6281), 1, - sym__assignment_pattern, - [209807] = 4, + [226032] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10625), 1, + anon_sym_GT2, + ACTIONS(10627), 1, + anon_sym_AT, + STATE(5969), 1, + aux_sym__multiple_types_repeat1, + STATE(6381), 1, + sym_comment, + STATE(7721), 1, + sym_param_cmd, + [226054] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5190), 1, - anon_sym_DASH2, - STATE(6030), 1, + STATE(6382), 1, sym_comment, - ACTIONS(5188), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8575), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [209823] = 7, + [226068] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10629), 1, + anon_sym_GT2, + STATE(5975), 1, + aux_sym__multiple_types_repeat1, + STATE(6383), 1, + sym_comment, + STATE(7753), 1, + sym_param_cmd, + [226090] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9885), 1, - anon_sym_EQ, - ACTIONS(9887), 1, - anon_sym_COLON, - STATE(6031), 1, + STATE(6384), 1, sym_comment, - STATE(7060), 1, - aux_sym_shebang_repeat1, - STATE(7960), 1, - sym_param_type, - [209845] = 7, + ACTIONS(8543), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226104] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6032), 1, + STATE(6385), 1, sym_comment, - STATE(6184), 1, - sym__variable_name, - STATE(7245), 1, - sym__assignment_pattern_parenthesized, - [209867] = 7, + ACTIONS(8717), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226118] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6033), 1, + STATE(6386), 1, sym_comment, - STATE(6184), 1, - sym__variable_name, - STATE(7277), 1, - sym__assignment_pattern_parenthesized, - [209889] = 7, + ACTIONS(8699), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226132] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6034), 1, + STATE(6387), 1, sym_comment, - STATE(6184), 1, - sym__variable_name, - STATE(7282), 1, - sym__assignment_pattern_parenthesized, - [209911] = 7, + ACTIONS(8579), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226146] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1899), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2126), 1, + STATE(2071), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6035), 1, - sym_comment, - [209933] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_DASH2, - STATE(6036), 1, + STATE(6388), 1, sym_comment, - ACTIONS(5102), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [209949] = 3, + [226168] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6037), 1, + STATE(6389), 1, sym_comment, - ACTIONS(8085), 5, + ACTIONS(8489), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [209963] = 4, + [226182] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2086), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6390), 1, + sym_comment, + [226204] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(1687), 1, anon_sym_DASH2, - STATE(6038), 1, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + STATE(6391), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(1699), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, + [226222] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1905), 1, anon_sym_LBRACE, - [209979] = 5, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2163), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6392), 1, + sym_comment, + [226244] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9889), 1, - anon_sym_QMARK2, - STATE(6039), 1, + ACTIONS(1002), 1, + anon_sym_DOT, + STATE(6393), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(1000), 4, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(992), 2, - anon_sym_DOT, + anon_sym_QMARK2, sym__entry_separator, - [209997] = 5, + sym__table_head_separator, + [226260] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1911), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2141), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6394), 1, + sym_comment, + [226282] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9891), 1, - anon_sym_QMARK2, - STATE(6040), 1, + ACTIONS(1781), 1, + sym__entry_separator, + ACTIONS(9400), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10631), 1, + anon_sym_DOT, + STATE(6395), 1, sym_comment, - ACTIONS(1012), 2, + ACTIONS(1779), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1014), 2, - anon_sym_DOT, + [226302] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10633), 1, + anon_sym_GT2, + STATE(5859), 1, + aux_sym__multiple_types_repeat1, + STATE(6396), 1, + sym_comment, + STATE(7693), 1, + sym_param_cmd, + [226324] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, sym__entry_separator, - [210015] = 7, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10635), 1, + anon_sym_GT2, + STATE(5860), 1, + aux_sym__multiple_types_repeat1, + STATE(6397), 1, + sym_comment, + STATE(7695), 1, + sym_param_cmd, + [226346] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(1687), 1, + anon_sym_DASH2, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + STATE(6398), 1, + sym_comment, + ACTIONS(1699), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [226364] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2035), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2018), 1, + STATE(2035), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6041), 1, + STATE(6399), 1, sym_comment, - [210037] = 5, + [226386] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(1959), 1, anon_sym_LBRACE, - STATE(6042), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2266), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6400), 1, sym_comment, - STATE(7213), 1, - sym_block, - ACTIONS(9799), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210055] = 4, + [226408] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5044), 1, - anon_sym_DASH2, - STATE(6043), 1, + ACTIONS(1848), 1, + anon_sym_LBRACE, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(10637), 1, + anon_sym_DOT_DOT2, + STATE(6401), 1, sym_comment, - ACTIONS(5042), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(10639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [226428] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6402), 1, + sym_comment, + ACTIONS(8737), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [210071] = 7, + [226442] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10641), 1, + anon_sym_GT2, + STATE(5865), 1, + aux_sym__multiple_types_repeat1, + STATE(6403), 1, + sym_comment, + STATE(7713), 1, + sym_param_cmd, + [226464] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10643), 1, + anon_sym_GT2, + STATE(5866), 1, + aux_sym__multiple_types_repeat1, + STATE(6404), 1, + sym_comment, + STATE(7714), 1, + sym_param_cmd, + [226486] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1775), 1, - aux_sym_record_entry_token1, - ACTIONS(6546), 1, + STATE(6405), 1, + sym_comment, + ACTIONS(8758), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226500] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10645), 1, + anon_sym_GT2, + STATE(5867), 1, + aux_sym__multiple_types_repeat1, + STATE(6406), 1, + sym_comment, + STATE(7717), 1, + sym_param_cmd, + [226522] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10647), 1, + anon_sym_GT2, + STATE(5868), 1, + aux_sym__multiple_types_repeat1, + STATE(6407), 1, + sym_comment, + STATE(7720), 1, + sym_param_cmd, + [226544] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1006), 1, anon_sym_DOT, - STATE(2003), 1, - sym_cell_path, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_path, - STATE(6044), 1, + STATE(6408), 1, + sym_comment, + ACTIONS(1004), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [226560] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6409), 1, + sym_comment, + ACTIONS(8773), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226574] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6410), 1, sym_comment, - [210093] = 7, + ACTIONS(8703), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8175), 1, - sym__newline, - ACTIONS(8177), 1, - sym__space, - STATE(4890), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6045), 1, + ACTIONS(998), 1, + anon_sym_DOT, + STATE(6411), 1, sym_comment, - STATE(6192), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7712), 1, - sym__flags_parenthesized, - [210115] = 4, + ACTIONS(996), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [226604] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10649), 1, + anon_sym_GT2, + STATE(5871), 1, + aux_sym__multiple_types_repeat1, + STATE(6412), 1, + sym_comment, + STATE(7727), 1, + sym_param_cmd, + [226626] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10651), 1, + anon_sym_GT2, + STATE(5872), 1, + aux_sym__multiple_types_repeat1, + STATE(6413), 1, + sym_comment, + STATE(7728), 1, + sym_param_cmd, + [226648] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5056), 1, - anon_sym_DASH2, - STATE(6046), 1, + STATE(6414), 1, sym_comment, - ACTIONS(5054), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8777), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [210131] = 6, + [226662] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - ACTIONS(9893), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9895), 1, - aux_sym__immediate_decimal_token2, - STATE(6047), 1, + STATE(6415), 1, sym_comment, - ACTIONS(1795), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210151] = 7, + ACTIONS(8677), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226676] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_record_entry_token1, - ACTIONS(6546), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(6416), 1, + sym_comment, + STATE(7379), 1, + sym_val_list, + STATE(7453), 1, + aux_sym_val_table_repeat1, + [226698] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(2014), 1, + STATE(1898), 1, + sym_path, + STATE(2058), 1, sym_cell_path, - STATE(3504), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_path, - STATE(6048), 1, + STATE(6417), 1, sym_comment, - [210173] = 5, + [226720] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9897), 1, - anon_sym_DOT_DOT2, - STATE(6049), 1, + ACTIONS(5230), 1, + anon_sym_DASH2, + STATE(6418), 1, sym_comment, - ACTIONS(1851), 2, - sym__newline, + ACTIONS(5228), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9899), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210191] = 3, + [226736] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5182), 1, + anon_sym_DASH2, + STATE(6419), 1, + sym_comment, + ACTIONS(5180), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [226752] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6050), 1, + ACTIONS(5234), 1, + anon_sym_DASH2, + STATE(6420), 1, + sym_comment, + ACTIONS(5232), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [226768] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10653), 1, + aux_sym__immediate_decimal_token2, + STATE(6421), 1, + sym_comment, + ACTIONS(1799), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1801), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [226786] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10659), 1, + anon_sym_SQUOTE, + STATE(6422), 1, sym_comment, - ACTIONS(8241), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210205] = 7, + STATE(6426), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7667), 1, + sym_expr_interpolated, + [226808] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1927), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2026), 1, + STATE(2067), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6051), 1, + STATE(6423), 1, sym_comment, - [210227] = 7, + [226830] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2063), 1, + STATE(2081), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6052), 1, + STATE(6424), 1, sym_comment, - [210249] = 7, + [226852] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6031), 1, - sym__variable_name, - STATE(6053), 1, + STATE(6425), 1, sym_comment, - STATE(7430), 1, + STATE(6459), 1, + sym__variable_name, + STATE(7911), 1, sym__assignment_pattern, - [210271] = 7, - ACTIONS(251), 1, + [226874] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6031), 1, - sym__variable_name, - STATE(6054), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10661), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6426), 1, sym_comment, - STATE(7026), 1, - sym__assignment_pattern, - [210293] = 7, + STATE(7667), 1, + sym_expr_interpolated, + [226896] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1919), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2053), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, + STATE(6427), 1, sym_comment, - [210315] = 7, + ACTIONS(8323), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [226910] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1923), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2055), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6056), 1, + ACTIONS(5190), 1, + anon_sym_DASH2, + STATE(6428), 1, sym_comment, - [210337] = 7, + ACTIONS(5188), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [226926] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2083), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6057), 1, + ACTIONS(5194), 1, + anon_sym_DASH2, + STATE(6429), 1, sym_comment, - [210359] = 7, + ACTIONS(5192), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [226942] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1931), 1, + STATE(6430), 1, + sym_comment, + ACTIONS(8781), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - ACTIONS(8936), 1, + [226956] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10663), 1, + anon_sym_SQUOTE, + STATE(6431), 1, + sym_comment, + STATE(6437), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7667), 1, + sym_expr_interpolated, + [226978] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(988), 1, anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2017), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6058), 1, + STATE(6432), 1, sym_comment, - [210381] = 5, + ACTIONS(986), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [226994] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9901), 1, - anon_sym_DOT_DOT2, - STATE(6059), 1, + ACTIONS(9130), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9132), 1, + aux_sym__immediate_decimal_token5, + STATE(6433), 1, sym_comment, - ACTIONS(1836), 2, + STATE(8624), 1, + sym__immediate_decimal, + ACTIONS(9128), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [227014] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, sym__newline, - anon_sym_LBRACE, - ACTIONS(9903), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210399] = 5, + ACTIONS(10665), 1, + anon_sym_EQ, + ACTIONS(10667), 1, + anon_sym_COLON, + STATE(6434), 1, + sym_comment, + STATE(7487), 1, + aux_sym_shebang_repeat1, + STATE(8312), 1, + sym_param_type, + [227036] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9905), 1, - anon_sym_DOT_DOT2, - STATE(6060), 1, + ACTIONS(10510), 1, + anon_sym_LBRACE, + STATE(6435), 1, sym_comment, - ACTIONS(2187), 2, + STATE(7431), 1, + sym_val_record, + ACTIONS(10496), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACE, - ACTIONS(9907), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210417] = 5, + anon_sym_SEMI, + [227054] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9909), 1, - anon_sym_DOT_DOT2, - STATE(6061), 1, + ACTIONS(10510), 1, + anon_sym_LBRACE, + STATE(6436), 1, sym_comment, - ACTIONS(2076), 2, + STATE(7432), 1, + sym_val_record, + ACTIONS(10498), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACE, - ACTIONS(9911), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210435] = 5, + anon_sym_SEMI, + [227072] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10669), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6437), 1, + sym_comment, + STATE(7667), 1, + sym_expr_interpolated, + [227094] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9913), 1, - anon_sym_DOT_DOT2, - STATE(6062), 1, + ACTIONS(5126), 1, + anon_sym_DASH2, + STATE(6438), 1, sym_comment, - ACTIONS(2084), 2, - sym__newline, + ACTIONS(5124), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9915), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210453] = 5, + [227110] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(218), 1, + STATE(219), 1, aux_sym__block_body_repeat1, - STATE(6063), 1, + STATE(6439), 1, sym_comment, ACTIONS(141), 2, sym__newline, anon_sym_SEMI, - ACTIONS(1430), 2, + ACTIONS(1480), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [210471] = 7, + [227128] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(975), 1, + ACTIONS(1761), 1, aux_sym_record_entry_token1, - ACTIONS(6546), 1, + ACTIONS(6826), 1, anon_sym_DOT, - STATE(1458), 1, + STATE(2156), 1, sym_cell_path, - STATE(3504), 1, + STATE(3706), 1, aux_sym_cell_path_repeat1, - STATE(3630), 1, + STATE(3825), 1, sym_path, - STATE(6064), 1, - sym_comment, - [210493] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2201), 1, - anon_sym_RBRACE, - ACTIONS(2203), 1, - sym__entry_separator, - ACTIONS(9805), 1, - anon_sym_DOT_DOT2, - STATE(6065), 1, + STATE(6440), 1, sym_comment, - ACTIONS(9807), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210513] = 4, + [227150] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(5186), 1, anon_sym_DASH2, - STATE(6066), 1, + STATE(6441), 1, sym_comment, - ACTIONS(5110), 4, + ACTIONS(5184), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [210529] = 7, + [227166] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1895), 1, - sym__table_head_separator, - ACTIONS(6546), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_path, - STATE(5883), 1, - sym_cell_path, - STATE(6067), 1, + STATE(6442), 1, sym_comment, - [210551] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1820), 3, anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(1979), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6068), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [227182] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10671), 1, + sym__newline, + ACTIONS(10674), 1, + sym__space, + STATE(6060), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(8045), 1, + sym__flags_parenthesized, + STATE(6443), 2, sym_comment, - [210573] = 7, + aux_sym_ctrl_do_parenthesized_repeat1, + [227202] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1899), 1, - sym__table_head_separator, - ACTIONS(6546), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(10677), 1, anon_sym_DOT, - STATE(3504), 1, - aux_sym_cell_path_repeat1, - STATE(3630), 1, - sym_path, - STATE(5996), 1, - sym_cell_path, - STATE(6069), 1, + ACTIONS(10679), 1, + aux_sym__immediate_decimal_token2, + STATE(6444), 1, sym_comment, - [210595] = 7, + ACTIONS(1781), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [227222] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1939), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(1994), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6070), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6445), 1, sym_comment, - [210617] = 7, + STATE(6459), 1, + sym__variable_name, + STATE(7865), 1, + sym__assignment_pattern, + [227244] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1943), 1, + ACTIONS(2051), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2037), 1, + STATE(2084), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6071), 1, - sym_comment, - [210639] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5116), 1, - anon_sym_DASH2, - STATE(6072), 1, + STATE(6446), 1, sym_comment, - ACTIONS(5114), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210655] = 7, + [227266] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1935), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2046), 1, + STATE(2113), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6073), 1, + STATE(6447), 1, sym_comment, - [210677] = 7, + [227288] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(2055), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2071), 1, + STATE(2126), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6074), 1, + STATE(6448), 1, sym_comment, - [210699] = 7, + [227310] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(1939), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9540), 1, anon_sym_DOT, - STATE(1921), 1, + STATE(1898), 1, sym_path, - STATE(2061), 1, + STATE(2150), 1, sym_cell_path, - STATE(5506), 1, + STATE(5820), 1, aux_sym_cell_path_repeat1, - STATE(6075), 1, + STATE(6449), 1, sym_comment, - [210721] = 7, + [227332] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9921), 1, + ACTIONS(10681), 1, anon_sym_SQUOTE, - STATE(6076), 1, + STATE(6450), 1, sym_comment, - STATE(6081), 1, + STATE(6452), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [210743] = 7, + [227354] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9887), 1, - anon_sym_COLON, - ACTIONS(9923), 1, - anon_sym_EQ, - STATE(6077), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(6451), 1, sym_comment, - STATE(7060), 1, - aux_sym_shebang_repeat1, - STATE(7848), 1, - sym_param_type, - [210765] = 7, - ACTIONS(251), 1, + STATE(7687), 1, + sym_block, + ACTIONS(10597), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227372] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(1986), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6078), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10683), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6452), 1, sym_comment, - [210787] = 7, - ACTIONS(251), 1, + STATE(7667), 1, + sym_expr_interpolated, + [227394] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(1996), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6079), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10685), 1, + anon_sym_GT2, + STATE(5897), 1, + aux_sym__multiple_types_repeat1, + STATE(6453), 1, sym_comment, - [210809] = 7, - ACTIONS(251), 1, + STATE(7341), 1, + sym_param_cmd, + [227416] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2004), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6080), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10687), 1, + anon_sym_GT2, + STATE(5899), 1, + aux_sym__multiple_types_repeat1, + STATE(6454), 1, sym_comment, - [210831] = 7, + STATE(7343), 1, + sym_param_cmd, + [227438] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9925), 1, + ACTIONS(10689), 1, anon_sym_SQUOTE, - STATE(6081), 1, + STATE(6455), 1, sym_comment, - STATE(6175), 1, + STATE(6456), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, + sym_expr_interpolated, + [227460] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10691), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6456), 1, + sym_comment, + STATE(7667), 1, sym_expr_interpolated, - [210853] = 4, + [227482] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5194), 1, + ACTIONS(5138), 1, anon_sym_DASH2, - STATE(6082), 1, + STATE(6457), 1, sym_comment, - ACTIONS(5192), 4, + ACTIONS(5136), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [210869] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1967), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2007), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6083), 1, - sym_comment, - [210891] = 5, + [227498] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9622), 1, - anon_sym_LBRACE, - STATE(6084), 1, + STATE(221), 1, + aux_sym__block_body_repeat1, + STATE(6458), 1, sym_comment, - STATE(7134), 1, - sym_val_record, - ACTIONS(9556), 3, - ts_builtin_sym_end, + ACTIONS(141), 2, sym__newline, anon_sym_SEMI, - [210909] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_DASH2, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - STATE(6085), 1, - sym_comment, - ACTIONS(1707), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210927] = 7, + ACTIONS(631), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227516] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1971), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2008), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6086), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10667), 1, + anon_sym_COLON, + ACTIONS(10693), 1, + anon_sym_EQ, + STATE(6459), 1, sym_comment, - [210949] = 6, + STATE(7487), 1, + aux_sym_shebang_repeat1, + STATE(8242), 1, + sym_param_type, + [227538] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1787), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(8722), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9927), 1, - anon_sym_DOT, - STATE(6087), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210969] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6088), 1, - sym_comment, - STATE(7169), 1, - sym_block, - ACTIONS(9685), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210987] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9622), 1, - anon_sym_LBRACE, - STATE(6089), 1, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10695), 1, + anon_sym_GT2, + STATE(5907), 1, + aux_sym__multiple_types_repeat1, + STATE(6460), 1, sym_comment, - STATE(7136), 1, - sym_val_record, - ACTIONS(9560), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [211005] = 6, - ACTIONS(251), 1, + STATE(7352), 1, + sym_param_cmd, + [227560] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1851), 1, - anon_sym_LBRACE, - ACTIONS(9929), 1, - anon_sym_DOT_DOT2, - STATE(6090), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10697), 1, + anon_sym_SQUOTE, + STATE(6461), 1, sym_comment, - ACTIONS(9931), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211025] = 6, + STATE(6464), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7667), 1, + sym_expr_interpolated, + [227582] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1843), 1, - anon_sym_RBRACE, - ACTIONS(1851), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(9933), 1, - anon_sym_DOT_DOT2, - STATE(6091), 1, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10699), 1, + anon_sym_GT2, + STATE(5909), 1, + aux_sym__multiple_types_repeat1, + STATE(6462), 1, sym_comment, - ACTIONS(9935), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211045] = 5, - ACTIONS(251), 1, + STATE(7356), 1, + sym_param_cmd, + [227604] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_DASH2, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - STATE(6092), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10701), 1, + anon_sym_GT2, + STATE(5910), 1, + aux_sym__multiple_types_repeat1, + STATE(6463), 1, sym_comment, - ACTIONS(1707), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [211063] = 5, + STATE(7360), 1, + sym_param_cmd, + [227626] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9550), 1, - aux_sym__immediate_decimal_token2, - STATE(6093), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10703), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6464), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [211081] = 6, + STATE(7667), 1, + sym_expr_interpolated, + [227648] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2106), 1, - anon_sym_RBRACE, - ACTIONS(2112), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(9805), 1, - anon_sym_DOT_DOT2, - STATE(6094), 1, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10705), 1, + anon_sym_GT2, + STATE(5998), 1, + aux_sym__multiple_types_repeat1, + STATE(6465), 1, sym_comment, - ACTIONS(9807), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211101] = 3, + STATE(7363), 1, + sym_param_cmd, + [227670] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6095), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6466), 1, sym_comment, - ACTIONS(8267), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [211115] = 7, + STATE(6480), 1, + sym__variable_name, + STATE(6967), 1, + sym__assignment_pattern, + [227692] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6031), 1, + STATE(6467), 1, + sym_comment, + STATE(6480), 1, sym__variable_name, - STATE(6096), 1, + STATE(6983), 1, + sym__assignment_pattern, + [227714] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6468), 1, sym_comment, - STATE(7181), 1, + STATE(6480), 1, + sym__variable_name, + STATE(7003), 1, sym__assignment_pattern, - [211137] = 6, + [227736] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(9937), 1, + ACTIONS(971), 1, + aux_sym_record_entry_token1, + ACTIONS(6826), 1, anon_sym_DOT, - ACTIONS(9939), 1, - aux_sym__immediate_decimal_token2, - STATE(6097), 1, + STATE(1475), 1, + sym_cell_path, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3825), 1, + sym_path, + STATE(6469), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [211157] = 5, + [227758] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9941), 1, - aux_sym__immediate_decimal_token2, - STATE(6098), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10707), 1, + anon_sym_SQUOTE, + STATE(6470), 1, sym_comment, - ACTIONS(1801), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [211175] = 7, - ACTIONS(251), 1, + STATE(6473), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7667), 1, + sym_expr_interpolated, + [227780] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9943), 1, - anon_sym_DASH_DASH, - ACTIONS(9945), 1, - anon_sym_DASH2, - ACTIONS(9947), 1, - anon_sym_in2, - STATE(6099), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10709), 1, + anon_sym_GT2, + STATE(5918), 1, + aux_sym__multiple_types_repeat1, + STATE(6471), 1, sym_comment, - STATE(7974), 1, - sym_short_flag, - STATE(8131), 1, - sym_long_flag, - [211197] = 5, - ACTIONS(251), 1, + STATE(7365), 1, + sym_param_cmd, + [227802] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6100), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10711), 1, + anon_sym_GT2, + STATE(5919), 1, + aux_sym__multiple_types_repeat1, + STATE(6472), 1, sym_comment, - STATE(6862), 1, - sym_block, - ACTIONS(9701), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [211215] = 5, - ACTIONS(251), 1, + STATE(7367), 1, + sym_param_cmd, + [227824] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6101), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10713), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6473), 1, sym_comment, - STATE(7105), 1, - sym_block, - ACTIONS(9803), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [211233] = 5, + STATE(7667), 1, + sym_expr_interpolated, + [227846] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6102), 1, + STATE(6474), 1, sym_comment, - STATE(7116), 1, + STATE(7515), 1, sym_block, - ACTIONS(9803), 3, + ACTIONS(10585), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [211251] = 6, + [227864] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - ACTIONS(9949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9951), 1, - aux_sym__immediate_decimal_token2, - STATE(6103), 1, + STATE(6475), 1, sym_comment, - ACTIONS(1795), 2, + ACTIONS(8691), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - anon_sym_LPAREN2, - [211271] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6104), 1, - sym_comment, - ACTIONS(1010), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1008), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [211287] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6105), 1, - sym_comment, - ACTIONS(1006), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1004), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [211303] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6106), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(996), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [211319] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(223), 1, - aux_sym__block_body_repeat1, - STATE(6107), 1, - sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(621), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211337] = 4, + [227878] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6108), 1, - sym_comment, - ACTIONS(1002), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1000), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [211353] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(9953), 1, - anon_sym_use, - ACTIONS(9955), 1, - anon_sym_list, - ACTIONS(9957), 1, - anon_sym_hide, - ACTIONS(9959), 1, - anon_sym_new, - STATE(6109), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10715), 1, + anon_sym_SQUOTE, + STATE(6476), 1, sym_comment, - [211375] = 3, + STATE(6497), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7667), 1, + sym_expr_interpolated, + [227900] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6110), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6477), 1, sym_comment, - ACTIONS(7876), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [211389] = 7, + STATE(6529), 1, + sym__variable_name, + STATE(7446), 1, + sym__assignment_pattern_parenthesized, + [227922] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9961), 1, + ACTIONS(10717), 1, anon_sym_SQUOTE, - STATE(6111), 1, + STATE(6478), 1, sym_comment, - STATE(6115), 1, + STATE(6481), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [211411] = 5, + [227944] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6112), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6479), 1, sym_comment, - STATE(6864), 1, - sym_block, - ACTIONS(9701), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [211429] = 7, + STATE(6480), 1, + sym__variable_name, + STATE(6867), 1, + sym__assignment_pattern, + [227966] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9887), 1, + ACTIONS(10667), 1, anon_sym_COLON, - ACTIONS(9963), 1, + ACTIONS(10719), 1, anon_sym_EQ, - STATE(6113), 1, + STATE(6480), 1, sym_comment, - STATE(7060), 1, + STATE(7487), 1, aux_sym_shebang_repeat1, - STATE(7743), 1, + STATE(8404), 1, sym_param_type, - [211451] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_DOT, - STATE(6114), 1, - sym_comment, - ACTIONS(1008), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [211467] = 7, + [227988] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9965), 1, + ACTIONS(10721), 1, anon_sym_SQUOTE, - STATE(6115), 1, - sym_comment, - STATE(6175), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [211489] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5910), 1, - anon_sym_RBRACK, - ACTIONS(5916), 1, - sym__entry_separator, - ACTIONS(9805), 1, - anon_sym_DOT_DOT2, - STATE(6116), 1, + STATE(6481), 1, sym_comment, - ACTIONS(9807), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211509] = 5, + STATE(7667), 1, + sym_expr_interpolated, + [228010] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(9783), 1, - aux_sym__immediate_decimal_token2, - STATE(6117), 1, - sym_comment, - ACTIONS(1787), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211527] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DOT, - STATE(6118), 1, + STATE(6482), 1, sym_comment, - ACTIONS(1004), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [211543] = 4, - ACTIONS(3), 1, + ACTIONS(8593), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228024] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(998), 1, - anon_sym_DOT, - STATE(6119), 1, + STATE(6483), 1, sym_comment, - ACTIONS(996), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [211559] = 6, + ACTIONS(8607), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228038] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(9967), 1, - anon_sym_DOT_DOT2, - STATE(6120), 1, + STATE(6484), 1, sym_comment, - ACTIONS(9969), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211579] = 4, - ACTIONS(3), 1, + ACTIONS(8611), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228052] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_DOT, - STATE(6121), 1, + STATE(222), 1, + aux_sym__block_body_repeat1, + STATE(6485), 1, sym_comment, - ACTIONS(1000), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [211595] = 7, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1478), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [228070] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9971), 1, + ACTIONS(10723), 1, anon_sym_SQUOTE, - STATE(6122), 1, + STATE(6486), 1, sym_comment, - STATE(6124), 1, + STATE(6487), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [211617] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_DOT_DOT2, - ACTIONS(9973), 1, - anon_sym_RBRACE, - ACTIONS(9975), 1, - sym__entry_separator, - STATE(6123), 1, - sym_comment, - ACTIONS(9807), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211637] = 7, + [228092] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9977), 1, + ACTIONS(10725), 1, anon_sym_SQUOTE, - STATE(6124), 1, - sym_comment, - STATE(6175), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(6487), 1, + sym_comment, + STATE(7667), 1, sym_expr_interpolated, - [211659] = 6, + [228114] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_RBRACE, - ACTIONS(1836), 1, - sym__entry_separator, - ACTIONS(9979), 1, - anon_sym_DOT_DOT2, - STATE(6125), 1, + ACTIONS(10727), 1, + anon_sym_LT, + STATE(6488), 1, sym_comment, - ACTIONS(9981), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211679] = 5, + ACTIONS(8323), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8327), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [228132] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - ACTIONS(9983), 1, - aux_sym__immediate_decimal_token2, - STATE(6126), 1, + STATE(6489), 1, sym_comment, - ACTIONS(1803), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211697] = 6, + ACTIONS(8617), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_DOT_DOT2, - ACTIONS(9985), 1, - anon_sym_RBRACE, - ACTIONS(9987), 1, + ACTIONS(10729), 1, + anon_sym_LT, + STATE(6490), 1, + sym_comment, + ACTIONS(8323), 2, + anon_sym_AT, sym__entry_separator, - STATE(6127), 1, + ACTIONS(8327), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [228164] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6084), 1, + anon_sym_RBRACK, + ACTIONS(6090), 1, + sym__entry_separator, + ACTIONS(10551), 1, + anon_sym_DOT_DOT2, + STATE(6491), 1, sym_comment, - ACTIONS(9807), 2, + ACTIONS(10553), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211717] = 7, - ACTIONS(3), 1, + [228184] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(9989), 1, - anon_sym_SQUOTE, - STATE(6128), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6459), 1, + sym__variable_name, + STATE(6492), 1, sym_comment, - STATE(6129), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [211739] = 7, + STATE(7904), 1, + sym__assignment_pattern, + [228206] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9991), 1, + ACTIONS(10731), 1, anon_sym_SQUOTE, - STATE(6129), 1, + STATE(6493), 1, sym_comment, - STATE(6175), 1, + STATE(6496), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [211761] = 7, - ACTIONS(3), 1, + [228228] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(9993), 1, - anon_sym_SQUOTE, - STATE(6130), 1, + ACTIONS(5222), 1, + anon_sym_DASH2, + STATE(6494), 1, sym_comment, - STATE(6132), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [211783] = 6, + ACTIONS(5220), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [228244] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(6131), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1838), 1, + anon_sym_LBRACE, + ACTIONS(10733), 1, + anon_sym_DOT_DOT2, + STATE(6495), 1, sym_comment, - STATE(7785), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [211803] = 7, + ACTIONS(10735), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [228264] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9995), 1, + ACTIONS(10737), 1, anon_sym_SQUOTE, - STATE(6132), 1, - sym_comment, - STATE(6175), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [211825] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(9997), 1, - anon_sym_SQUOTE, - STATE(6133), 1, + STATE(6496), 1, sym_comment, - STATE(6134), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [211847] = 7, + [228286] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(9999), 1, + ACTIONS(10739), 1, anon_sym_SQUOTE, - STATE(6134), 1, - sym_comment, - STATE(6175), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(6497), 1, + sym_comment, + STATE(7667), 1, sym_expr_interpolated, - [211869] = 7, + [228308] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6135), 1, - sym_comment, - STATE(6148), 1, + STATE(6459), 1, sym__variable_name, - STATE(6278), 1, + STATE(6498), 1, + sym_comment, + STATE(7907), 1, sym__assignment_pattern, - [211891] = 7, + [228330] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6136), 1, + STATE(6499), 1, sym_comment, - STATE(6148), 1, + STATE(6529), 1, sym__variable_name, - STATE(6280), 1, - sym__assignment_pattern, - [211913] = 7, + STATE(7456), 1, + sym__assignment_pattern_parenthesized, + [228352] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6137), 1, + STATE(6500), 1, sym_comment, - STATE(6148), 1, - sym__variable_name, - STATE(6281), 1, - sym__assignment_pattern, - [211935] = 7, - ACTIONS(3), 1, + ACTIONS(8725), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228366] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10001), 1, - anon_sym_SQUOTE, - STATE(6138), 1, + ACTIONS(5226), 1, + anon_sym_DASH2, + STATE(6501), 1, sym_comment, - STATE(6139), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [211957] = 7, + ACTIONS(5224), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [228382] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10003), 1, + ACTIONS(10741), 1, anon_sym_SQUOTE, - STATE(6139), 1, + STATE(6502), 1, sym_comment, - STATE(6175), 1, + STATE(6503), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [211979] = 7, + [228404] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10005), 1, + ACTIONS(10743), 1, anon_sym_SQUOTE, - STATE(6140), 1, - sym_comment, - STATE(6142), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(6503), 1, + sym_comment, + STATE(7667), 1, sym_expr_interpolated, - [212001] = 7, + [228426] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10007), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(10529), 1, + aux_sym__immediate_decimal_token2, + STATE(6504), 1, + sym_comment, + ACTIONS(1781), 3, anon_sym_PIPE, - ACTIONS(10009), 1, anon_sym_if, - ACTIONS(10011), 1, anon_sym_EQ_GT, - STATE(6141), 1, + [228444] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6505), 1, sym_comment, - STATE(7295), 1, - aux_sym_match_pattern_repeat1, - STATE(7839), 1, - sym_match_guard, - [212023] = 7, - ACTIONS(3), 1, + ACTIONS(8621), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228458] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10013), 1, - anon_sym_SQUOTE, - STATE(6142), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(6506), 1, sym_comment, - STATE(6175), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212045] = 7, + STATE(7331), 1, + sym_block, + ACTIONS(10306), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228476] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10015), 1, + ACTIONS(10745), 1, anon_sym_SQUOTE, - STATE(6143), 1, + STATE(6507), 1, sym_comment, - STATE(6161), 1, + STATE(6509), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [212067] = 7, + [228498] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6144), 1, + STATE(6508), 1, sym_comment, - STATE(6148), 1, + STATE(6529), 1, sym__variable_name, - STATE(6509), 1, - sym__assignment_pattern, - [212089] = 3, - ACTIONS(251), 1, + STATE(7785), 1, + sym__assignment_pattern_parenthesized, + [228520] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6145), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10747), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6509), 1, sym_comment, - ACTIONS(8277), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [212103] = 5, + STATE(7667), 1, + sym_expr_interpolated, + [228542] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10017), 1, - anon_sym_DOT_DOT2, - STATE(6146), 1, + STATE(6510), 1, sym_comment, - ACTIONS(2094), 2, - sym__newline, + ACTIONS(1779), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1781), 3, anon_sym_LBRACE, - ACTIONS(10019), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [212121] = 7, + [228558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + STATE(6511), 1, + sym_comment, + ACTIONS(1002), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1000), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [228574] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9615), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10749), 1, + anon_sym_DOT, + STATE(6512), 1, + sym_comment, + ACTIONS(1781), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [228592] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10021), 1, + ACTIONS(10751), 1, anon_sym_SQUOTE, - STATE(6147), 1, + STATE(6513), 1, sym_comment, - STATE(6150), 1, + STATE(6514), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [212143] = 7, - ACTIONS(251), 1, + [228614] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9887), 1, - anon_sym_COLON, - ACTIONS(10023), 1, - anon_sym_EQ, - STATE(6148), 1, + ACTIONS(10655), 1, + anon_sym_LPAREN, + ACTIONS(10657), 1, + sym_unescaped_interpolated_content, + ACTIONS(10753), 1, + anon_sym_SQUOTE, + STATE(6376), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6514), 1, sym_comment, - STATE(7060), 1, - aux_sym_shebang_repeat1, - STATE(8146), 1, - sym_param_type, - [212165] = 3, + STATE(7667), 1, + sym_expr_interpolated, + [228636] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6149), 1, + STATE(6515), 1, sym_comment, - ACTIONS(8221), 5, + ACTIONS(8785), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [212179] = 7, + [228650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10025), 1, - anon_sym_SQUOTE, - STATE(6150), 1, + STATE(6516), 1, sym_comment, - STATE(6175), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212201] = 3, + ACTIONS(1006), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1004), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [228666] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6517), 1, + sym_comment, + ACTIONS(998), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(996), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [228682] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6518), 1, + sym_comment, + ACTIONS(988), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(986), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [228698] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6151), 1, + STATE(6519), 1, sym_comment, - ACTIONS(8225), 5, + ACTIONS(8625), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [212215] = 7, + [228712] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10027), 1, + ACTIONS(10755), 1, anon_sym_SQUOTE, - STATE(6152), 1, + STATE(6520), 1, sym_comment, - STATE(6153), 1, + STATE(6523), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [212237] = 7, + [228734] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6521), 1, + sym_comment, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [228750] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1765), 1, + aux_sym_record_entry_token1, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(2104), 1, + sym_cell_path, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3825), 1, + sym_path, + STATE(6522), 1, + sym_comment, + [228772] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10029), 1, + ACTIONS(10757), 1, anon_sym_SQUOTE, - STATE(6153), 1, - sym_comment, - STATE(6175), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(6523), 1, + sym_comment, + STATE(7667), 1, sym_expr_interpolated, - [212259] = 7, + [228794] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6524), 1, + sym_comment, + ACTIONS(8789), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228808] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10031), 1, + ACTIONS(10759), 1, anon_sym_SQUOTE, - STATE(6154), 1, + STATE(6525), 1, sym_comment, - STATE(6156), 1, + STATE(6527), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [212281] = 5, - ACTIONS(3), 1, + [228830] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_DOT, - ACTIONS(10033), 1, - anon_sym_QMARK2, - STATE(6155), 1, + STATE(6526), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [212299] = 7, + ACTIONS(8527), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228844] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10035), 1, + ACTIONS(10761), 1, anon_sym_SQUOTE, - STATE(6156), 1, - sym_comment, - STATE(6175), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(6527), 1, + sym_comment, + STATE(7667), 1, sym_expr_interpolated, - [212321] = 6, - ACTIONS(3), 1, + [228866] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10037), 1, + STATE(6528), 1, + sym_comment, + ACTIONS(8793), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228880] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, sym__newline, - ACTIONS(10040), 1, - sym__space, - STATE(5706), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7712), 1, - sym__flags_parenthesized, - STATE(6157), 2, + ACTIONS(10667), 1, + anon_sym_COLON, + ACTIONS(10763), 1, + anon_sym_EQ, + STATE(6529), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [212341] = 6, + STATE(7487), 1, + aux_sym_shebang_repeat1, + STATE(8426), 1, + sym_param_type, + [228902] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10765), 1, + anon_sym_GT2, + STATE(5986), 1, + aux_sym__multiple_types_repeat1, + STATE(6530), 1, + sym_comment, + STATE(7789), 1, + sym_param_cmd, + [228924] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1836), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(10043), 1, - anon_sym_DOT_DOT2, - STATE(6158), 1, + STATE(6531), 1, sym_comment, - ACTIONS(10045), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212361] = 7, - ACTIONS(3), 1, + STATE(7682), 1, + sym_block, + ACTIONS(10504), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228942] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10047), 1, - anon_sym_SQUOTE, - STATE(6159), 1, + STATE(6532), 1, sym_comment, - STATE(6160), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212383] = 7, - ACTIONS(3), 1, + ACTIONS(8539), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [228956] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10049), 1, - anon_sym_SQUOTE, - STATE(6160), 1, + ACTIONS(1955), 1, + sym__table_head_separator, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3825), 1, + sym_path, + STATE(6105), 1, + sym_cell_path, + STATE(6533), 1, sym_comment, - STATE(6175), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212405] = 7, + [228978] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1959), 1, + sym__table_head_separator, + ACTIONS(6826), 1, + anon_sym_DOT, + STATE(3706), 1, + aux_sym_cell_path_repeat1, + STATE(3825), 1, + sym_path, + STATE(6314), 1, + sym_cell_path, + STATE(6534), 1, + sym_comment, + [229000] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(10767), 1, + anon_sym_use, + ACTIONS(10769), 1, + anon_sym_list, + ACTIONS(10771), 1, + anon_sym_hide, + ACTIONS(10773), 1, + anon_sym_new, + STATE(6535), 1, + sym_comment, + [229022] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10051), 1, + ACTIONS(10775), 1, anon_sym_SQUOTE, - STATE(6161), 1, + STATE(6536), 1, sym_comment, - STATE(6175), 1, + STATE(6541), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(7667), 1, sym_expr_interpolated, - [212427] = 5, + [229044] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(222), 1, - aux_sym__block_body_repeat1, - STATE(6162), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(6537), 1, sym_comment, - ACTIONS(141), 2, + STATE(7683), 1, + sym_block, + ACTIONS(10504), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(1432), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212445] = 7, + [229062] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6031), 1, - sym__variable_name, - STATE(6163), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10667), 1, + anon_sym_COLON, + ACTIONS(10777), 1, + anon_sym_EQ, + STATE(6538), 1, sym_comment, - STATE(6929), 1, - sym__assignment_pattern, - [212467] = 7, - ACTIONS(3), 1, + STATE(7487), 1, + aux_sym_shebang_repeat1, + STATE(8639), 1, + sym_param_type, + [229084] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10053), 1, - anon_sym_SQUOTE, - STATE(6164), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(6539), 1, sym_comment, - STATE(6165), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212489] = 7, + STATE(7686), 1, + sym_block, + ACTIONS(10597), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229102] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10055), 1, - anon_sym_SQUOTE, - STATE(6165), 1, + ACTIONS(8583), 1, + sym__newline, + ACTIONS(8585), 1, + sym__space, + STATE(5304), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6443), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6540), 1, sym_comment, - STATE(6175), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212511] = 7, + STATE(8045), 1, + sym__flags_parenthesized, + [229124] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, + ACTIONS(10655), 1, anon_sym_LPAREN, - ACTIONS(9919), 1, + ACTIONS(10657), 1, sym_unescaped_interpolated_content, - ACTIONS(10057), 1, + ACTIONS(10779), 1, anon_sym_SQUOTE, - STATE(6166), 1, - sym_comment, - STATE(6167), 1, + STATE(6376), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, + STATE(6541), 1, + sym_comment, + STATE(7667), 1, sym_expr_interpolated, - [212533] = 7, + [229146] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6542), 1, + sym_comment, + ACTIONS(8629), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229160] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10059), 1, - anon_sym_SQUOTE, - STATE(6167), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10781), 1, + anon_sym_GT2, + STATE(5990), 1, + aux_sym__multiple_types_repeat1, + STATE(6543), 1, sym_comment, - STATE(6175), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212555] = 4, + STATE(7593), 1, + sym_param_cmd, + [229182] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5120), 1, - anon_sym_DASH2, - STATE(6168), 1, + STATE(6544), 1, sym_comment, - ACTIONS(5118), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8633), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [212571] = 4, + [229196] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5124), 1, + ACTIONS(10233), 1, anon_sym_DASH2, - STATE(6169), 1, + STATE(6545), 1, sym_comment, - ACTIONS(5122), 4, + ACTIONS(10231), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [212587] = 5, + [229212] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10783), 1, + anon_sym_PIPE, + ACTIONS(10785), 1, + anon_sym_if, + ACTIONS(10787), 1, + anon_sym_EQ_GT, + STATE(6546), 1, + sym_comment, + STATE(7801), 1, + aux_sym_match_pattern_repeat1, + STATE(8274), 1, + sym_match_guard, + [229234] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6547), 1, + sym_comment, + ACTIONS(8641), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229248] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1014), 1, - anon_sym_DOT, - ACTIONS(10061), 1, + ACTIONS(10789), 1, anon_sym_QMARK2, - STATE(6170), 1, + STATE(6548), 1, sym_comment, - ACTIONS(1012), 3, + ACTIONS(1008), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1010), 2, + anon_sym_DOT, sym__entry_separator, - sym__table_head_separator, - [212605] = 5, + [229266] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1943), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2048), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6549), 1, + sym_comment, + [229288] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9877), 1, - aux_sym__immediate_decimal_token2, - STATE(6171), 1, + ACTIONS(10791), 1, + anon_sym_QMARK2, + STATE(6550), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(990), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 2, - anon_sym_LPAREN2, + ACTIONS(992), 2, + anon_sym_DOT, sym__entry_separator, - [212623] = 4, + [229306] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9504), 1, - anon_sym_DASH2, - STATE(6172), 1, - sym_comment, - ACTIONS(9502), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1873), 1, anon_sym_LBRACE, - [212639] = 7, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2060), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6551), 1, + sym_comment, + [229328] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, + ACTIONS(3499), 1, aux_sym_record_entry_token1, - ACTIONS(9953), 1, + ACTIONS(10767), 1, anon_sym_use, - ACTIONS(9955), 1, + ACTIONS(10769), 1, anon_sym_list, - ACTIONS(9957), 1, + ACTIONS(10771), 1, anon_sym_hide, - ACTIONS(9959), 1, + ACTIONS(10773), 1, anon_sym_new, - STATE(6173), 1, + STATE(6552), 1, sym_comment, - [212661] = 7, - ACTIONS(3), 1, + [229350] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10063), 1, - anon_sym_SQUOTE, - STATE(6174), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6529), 1, + sym__variable_name, + STATE(6553), 1, sym_comment, - STATE(6175), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7207), 1, - sym_expr_interpolated, - [212683] = 6, - ACTIONS(3), 1, + STATE(7458), 1, + sym__assignment_pattern_parenthesized, + [229372] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10065), 1, - anon_sym_LPAREN, - ACTIONS(10068), 1, - sym_unescaped_interpolated_content, - ACTIONS(10071), 1, - anon_sym_SQUOTE, - STATE(7207), 1, - sym_expr_interpolated, - STATE(6175), 2, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10667), 1, + anon_sym_COLON, + ACTIONS(10793), 1, + anon_sym_EQ, + STATE(6554), 1, + sym_comment, + STATE(7487), 1, + aux_sym_shebang_repeat1, + STATE(8647), 1, + sym_param_type, + [229394] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6555), 1, + sym_comment, + ACTIONS(8535), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229408] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5114), 1, + anon_sym_DASH2, + ACTIONS(10795), 1, + anon_sym_EQ2, + STATE(6556), 1, + sym_comment, + ACTIONS(5112), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [229426] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6557), 1, + sym_comment, + ACTIONS(8479), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229440] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(6558), 1, + sym_comment, + STATE(7651), 1, + sym_val_list, + STATE(7755), 1, + aux_sym_val_table_repeat1, + [229462] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6559), 1, + sym_comment, + ACTIONS(8645), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229476] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6560), 1, + sym_comment, + ACTIONS(8729), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229490] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(6561), 1, + sym_comment, + STATE(7742), 1, + sym_val_list, + STATE(7766), 1, + aux_sym_val_table_repeat1, + [229512] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6562), 1, + sym_comment, + ACTIONS(8495), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229526] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6563), 1, + sym_comment, + ACTIONS(8799), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229540] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10797), 1, + anon_sym_GT2, + STATE(5840), 1, + aux_sym__multiple_types_repeat1, + STATE(6564), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [212703] = 7, + STATE(7643), 1, + sym_param_cmd, + [229562] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9887), 1, - anon_sym_COLON, - ACTIONS(10073), 1, + STATE(6565), 1, + sym_comment, + ACTIONS(8509), 5, anon_sym_EQ, - STATE(6176), 1, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229576] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8583), 1, + sym__newline, + ACTIONS(8585), 1, + sym__space, + STATE(5180), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6540), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6566), 1, sym_comment, - STATE(7060), 1, - aux_sym_shebang_repeat1, - STATE(7718), 1, - sym_param_type, - [212725] = 5, - ACTIONS(251), 1, + STATE(8045), 1, + sym__flags_parenthesized, + [229598] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DASH2, - ACTIONS(10075), 1, - anon_sym_EQ2, - STATE(6177), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10799), 1, + anon_sym_GT2, + STATE(5841), 1, + aux_sym__multiple_types_repeat1, + STATE(6567), 1, sym_comment, - ACTIONS(5030), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [212743] = 5, + STATE(7644), 1, + sym_param_cmd, + [229620] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10077), 1, + ACTIONS(10615), 1, aux_sym__immediate_decimal_token2, - STATE(6178), 1, + STATE(6568), 1, sym_comment, - ACTIONS(1801), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1803), 2, + ACTIONS(1779), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 2, anon_sym_LPAREN2, sym__entry_separator, - [212761] = 7, + [229638] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(6179), 1, + ACTIONS(1877), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2062), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6569), 1, sym_comment, - STATE(7232), 1, - aux_sym_val_table_repeat1, - STATE(7435), 1, - sym_val_list, - [212783] = 7, + [229660] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(6180), 1, + ACTIONS(5132), 1, + anon_sym_DASH2, + ACTIONS(10801), 1, + anon_sym_EQ2, + STATE(6570), 1, sym_comment, - STATE(7187), 1, - sym_val_list, - STATE(7239), 1, - aux_sym_val_table_repeat1, - [212805] = 7, + ACTIONS(5130), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [229678] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, - sym_identifier, - STATE(5414), 1, - sym_val_variable, - STATE(6181), 1, + STATE(6571), 1, sym_comment, - STATE(6184), 1, - sym__variable_name, - STATE(7010), 1, - sym__assignment_pattern_parenthesized, - [212827] = 5, + ACTIONS(8513), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229692] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5050), 1, - anon_sym_DASH2, - ACTIONS(10079), 1, - anon_sym_EQ2, - STATE(6182), 1, + STATE(6572), 1, sym_comment, - ACTIONS(5048), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8519), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [212845] = 5, + [229706] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10081), 1, + ACTIONS(10803), 1, anon_sym_EQ2, - ACTIONS(10083), 1, + ACTIONS(10805), 1, sym_short_flag_identifier, - STATE(6183), 1, + STATE(6573), 1, sym_comment, - ACTIONS(4932), 3, + ACTIONS(5029), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH2, - [212863] = 7, + [229724] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9887), 1, - anon_sym_COLON, - ACTIONS(10085), 1, + STATE(6574), 1, + sym_comment, + ACTIONS(8803), 5, anon_sym_EQ, - STATE(6184), 1, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229738] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6575), 1, sym_comment, - STATE(7060), 1, - aux_sym_shebang_repeat1, - STATE(7808), 1, - sym_param_type, - [212885] = 7, + ACTIONS(1799), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1801), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229754] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_DOT_DOT2, + ACTIONS(10807), 1, + anon_sym_RBRACE, + ACTIONS(10809), 1, + sym__entry_separator, + STATE(6576), 1, + sym_comment, + ACTIONS(10553), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229774] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_DOT_DOT2, + ACTIONS(10811), 1, + anon_sym_RBRACE, + ACTIONS(10813), 1, + sym__entry_separator, + STATE(6577), 1, + sym_comment, + ACTIONS(10553), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229794] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10348), 1, + aux_sym__immediate_decimal_token2, + STATE(6578), 1, + sym_comment, + ACTIONS(1779), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [229812] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6077), 1, + STATE(6538), 1, sym__variable_name, - STATE(6185), 1, + STATE(6579), 1, sym_comment, - STATE(6278), 1, + STATE(6967), 1, sym__assignment_pattern, - [212907] = 7, + [229834] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6077), 1, + STATE(6538), 1, sym__variable_name, - STATE(6186), 1, + STATE(6580), 1, sym_comment, - STATE(6280), 1, + STATE(6983), 1, sym__assignment_pattern, - [212929] = 7, + [229856] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6077), 1, + STATE(6538), 1, sym__variable_name, - STATE(6187), 1, + STATE(6581), 1, sym_comment, - STATE(6281), 1, + STATE(7003), 1, sym__assignment_pattern, - [212951] = 7, + [229878] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_RBRACE, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(10815), 1, + anon_sym_DOT_DOT2, + STATE(6582), 1, + sym_comment, + ACTIONS(10817), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [229898] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6077), 1, + STATE(6538), 1, sym__variable_name, - STATE(6188), 1, + STATE(6583), 1, sym_comment, - STATE(6509), 1, + STATE(6867), 1, sym__assignment_pattern, - [212973] = 5, + [229920] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6584), 1, + sym_comment, + ACTIONS(8733), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [229934] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1955), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2189), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6585), 1, + sym_comment, + [229956] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5114), 1, anon_sym_DASH2, - ACTIONS(10087), 1, + ACTIONS(10819), 1, anon_sym_EQ2, - STATE(6189), 1, + STATE(6586), 1, sym_comment, - ACTIONS(5030), 3, + ACTIONS(5112), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [212991] = 7, + [229974] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6190), 1, + STATE(6587), 1, sym_comment, - STATE(7030), 1, + STATE(7589), 1, sym_val_list, - STATE(7274), 1, + STATE(7796), 1, aux_sym_val_table_repeat1, - [213013] = 7, + [229996] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6191), 1, + STATE(6588), 1, sym_comment, - STATE(7101), 1, + STATE(7641), 1, sym_val_list, - STATE(7279), 1, + STATE(7800), 1, aux_sym_val_table_repeat1, - [213035] = 7, + [230018] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8175), 1, + ACTIONS(10821), 1, + aux_sym__immediate_decimal_token2, + STATE(6589), 1, + sym_comment, + ACTIONS(1799), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1801), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [230036] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, sym__newline, - ACTIONS(8177), 1, - sym__space, - STATE(4884), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6157), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6192), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(6590), 1, sym_comment, - STATE(7712), 1, - sym__flags_parenthesized, - [213057] = 6, + STATE(7748), 1, + sym_val_list, + STATE(7756), 1, + aux_sym_val_table_repeat1, + [230058] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(1898), 1, + sym_path, + STATE(2096), 1, + sym_cell_path, + STATE(5820), 1, + aux_sym_cell_path_repeat1, + STATE(6591), 1, + sym_comment, + [230080] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4968), 1, + ACTIONS(10823), 1, anon_sym_DASH_DASH, - ACTIONS(10089), 1, + ACTIONS(10825), 1, + anon_sym_DASH2, + ACTIONS(10827), 1, + anon_sym_in2, + STATE(6592), 1, + sym_comment, + STATE(8666), 1, + sym_long_flag, + STATE(8677), 1, + sym_short_flag, + [230102] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1010), 1, + anon_sym_DOT, + ACTIONS(10829), 1, + anon_sym_QMARK2, + STATE(6593), 1, + sym_comment, + ACTIONS(1008), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [230120] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5010), 1, + anon_sym_DASH_DASH, + ACTIONS(10831), 1, sym_long_flag_identifier, - ACTIONS(10091), 1, + ACTIONS(10833), 1, anon_sym_EQ2, - STATE(6193), 1, + STATE(6594), 1, sym_comment, - ACTIONS(4970), 2, + ACTIONS(5012), 2, sym_identifier, anon_sym_DASH2, - [213077] = 5, + [230140] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5050), 1, + ACTIONS(5132), 1, anon_sym_DASH2, - ACTIONS(10093), 1, + ACTIONS(10835), 1, anon_sym_EQ2, - STATE(6194), 1, + STATE(6595), 1, sym_comment, - ACTIONS(5048), 3, + ACTIONS(5130), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [213095] = 7, + [230158] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(10823), 1, + anon_sym_DASH_DASH, + ACTIONS(10825), 1, + anon_sym_DASH2, + ACTIONS(10837), 1, + anon_sym_in2, + STATE(6596), 1, + sym_comment, + STATE(8431), 1, + sym_short_flag, + STATE(8456), 1, + sym_long_flag, + [230180] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6597), 1, + sym_comment, + ACTIONS(8523), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [230194] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(10839), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10841), 1, + aux_sym__immediate_decimal_token2, + STATE(6598), 1, + sym_comment, + ACTIONS(1773), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230214] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6113), 1, + STATE(6434), 1, sym__variable_name, - STATE(6195), 1, + STATE(6599), 1, sym_comment, - STATE(6278), 1, + STATE(6967), 1, sym__assignment_pattern, - [213117] = 7, + [230236] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6113), 1, + STATE(6434), 1, sym__variable_name, - STATE(6196), 1, + STATE(6600), 1, sym_comment, - STATE(6280), 1, + STATE(6983), 1, sym__assignment_pattern, - [213139] = 7, + [230258] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6113), 1, + STATE(6434), 1, sym__variable_name, - STATE(6197), 1, + STATE(6601), 1, sym_comment, - STATE(6281), 1, + STATE(7003), 1, sym__assignment_pattern, - [213161] = 7, + [230280] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6113), 1, + STATE(6434), 1, sym__variable_name, - STATE(6198), 1, + STATE(6602), 1, sym_comment, - STATE(6509), 1, + STATE(6867), 1, sym__assignment_pattern, - [213183] = 7, + [230302] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6199), 1, + STATE(6603), 1, sym_comment, - STATE(7269), 1, + STATE(7813), 1, sym_val_list, - STATE(7306), 1, + STATE(7822), 1, aux_sym_val_table_repeat1, - [213205] = 7, + [230324] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6200), 1, + STATE(6604), 1, sym_comment, - STATE(7288), 1, + STATE(7819), 1, sym_val_list, - STATE(7308), 1, + STATE(7824), 1, aux_sym_val_table_repeat1, - [213227] = 7, + [230346] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6201), 1, + STATE(6605), 1, sym_comment, - STATE(6821), 1, - sym_val_list, - STATE(7315), 1, + STATE(7831), 1, aux_sym_val_table_repeat1, - [213249] = 7, + STATE(7968), 1, + sym_val_list, + [230368] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6202), 1, + STATE(6606), 1, sym_comment, - STATE(6826), 1, - sym_val_list, - STATE(7318), 1, + STATE(7834), 1, aux_sym_val_table_repeat1, - [213271] = 7, + STATE(7974), 1, + sym_val_list, + [230390] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6203), 1, + STATE(6607), 1, sym_comment, - STATE(6851), 1, + STATE(7328), 1, sym_val_list, - STATE(7324), 1, + STATE(7841), 1, aux_sym_val_table_repeat1, - [213293] = 7, + [230412] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6204), 1, + STATE(6608), 1, sym_comment, - STATE(6858), 1, + STATE(7334), 1, sym_val_list, - STATE(7327), 1, + STATE(7844), 1, aux_sym_val_table_repeat1, - [213315] = 7, + [230434] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6205), 1, + STATE(6609), 1, sym_comment, - STATE(6875), 1, + STATE(7353), 1, sym_val_list, - STATE(7334), 1, + STATE(7850), 1, aux_sym_val_table_repeat1, - [213337] = 7, + [230456] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6206), 1, + STATE(6610), 1, sym_comment, - STATE(6881), 1, + STATE(7358), 1, sym_val_list, - STATE(7336), 1, + STATE(7853), 1, aux_sym_val_table_repeat1, - [213359] = 7, + [230478] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6207), 1, + STATE(6611), 1, sym_comment, - STATE(6899), 1, + STATE(7382), 1, sym_val_list, - STATE(7342), 1, + STATE(7861), 1, aux_sym_val_table_repeat1, - [213381] = 7, + [230500] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6208), 1, + STATE(6612), 1, sym_comment, - STATE(6903), 1, + STATE(7387), 1, sym_val_list, - STATE(7344), 1, + STATE(7863), 1, aux_sym_val_table_repeat1, - [213403] = 7, + [230522] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6209), 1, + STATE(6613), 1, sym_comment, - STATE(6924), 1, + STATE(7404), 1, sym_val_list, - STATE(7351), 1, + STATE(7869), 1, aux_sym_val_table_repeat1, - [213425] = 7, + [230544] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6210), 1, + STATE(6614), 1, sym_comment, - STATE(6930), 1, + STATE(7408), 1, sym_val_list, - STATE(7353), 1, + STATE(7871), 1, aux_sym_val_table_repeat1, - [213447] = 7, + [230566] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6211), 1, + STATE(6615), 1, sym_comment, - STATE(6947), 1, + STATE(7434), 1, sym_val_list, - STATE(7357), 1, + STATE(7876), 1, aux_sym_val_table_repeat1, - [213469] = 7, + [230588] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6212), 1, + STATE(6616), 1, sym_comment, - STATE(6952), 1, + STATE(7439), 1, sym_val_list, - STATE(7360), 1, + STATE(7879), 1, aux_sym_val_table_repeat1, - [213491] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(2134), 1, - sym_cell_path, - STATE(5506), 1, - aux_sym_cell_path_repeat1, - STATE(6213), 1, - sym_comment, - [213513] = 7, + [230610] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6214), 1, + STATE(6617), 1, sym_comment, - STATE(6970), 1, + STATE(7460), 1, sym_val_list, - STATE(7365), 1, + STATE(7885), 1, aux_sym_val_table_repeat1, - [213535] = 7, + [230632] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6215), 1, + STATE(6618), 1, sym_comment, - STATE(6976), 1, + STATE(7465), 1, sym_val_list, - STATE(7367), 1, + STATE(7888), 1, aux_sym_val_table_repeat1, - [213557] = 7, + [230654] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6216), 1, + STATE(6619), 1, sym_comment, - STATE(6996), 1, + STATE(7481), 1, sym_val_list, - STATE(7373), 1, + STATE(7895), 1, aux_sym_val_table_repeat1, - [213579] = 7, + [230676] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6217), 1, + STATE(6620), 1, sym_comment, - STATE(7002), 1, + STATE(7485), 1, sym_val_list, - STATE(7376), 1, + STATE(7898), 1, aux_sym_val_table_repeat1, - [213601] = 7, + [230698] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6218), 1, + STATE(6621), 1, sym_comment, - STATE(6846), 1, + STATE(7502), 1, sym_val_list, - STATE(6874), 1, + STATE(7906), 1, aux_sym_val_table_repeat1, - [213623] = 7, + [230720] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6219), 1, + STATE(6622), 1, sym_comment, - STATE(7018), 1, + STATE(7508), 1, sym_val_list, - STATE(7381), 1, + STATE(7909), 1, aux_sym_val_table_repeat1, - [213645] = 7, + [230742] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(6220), 1, + STATE(6623), 1, sym_comment, - STATE(7024), 1, - sym_val_list, - STATE(7383), 1, - aux_sym_val_table_repeat1, - [213667] = 7, + ACTIONS(8549), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [230756] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6221), 1, + STATE(6624), 1, sym_comment, - STATE(7041), 1, + STATE(7525), 1, sym_val_list, - STATE(7389), 1, + STATE(7914), 1, aux_sym_val_table_repeat1, - [213689] = 7, + [230778] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6222), 1, + STATE(6625), 1, sym_comment, - STATE(7047), 1, + STATE(7531), 1, sym_val_list, - STATE(7391), 1, + STATE(7916), 1, aux_sym_val_table_repeat1, - [213711] = 7, + [230800] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6223), 1, + STATE(6626), 1, sym_comment, - STATE(7056), 1, + STATE(7550), 1, sym_val_list, - STATE(7395), 1, + STATE(7920), 1, aux_sym_val_table_repeat1, - [213733] = 7, + [230822] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6224), 1, + STATE(6627), 1, sym_comment, - STATE(7061), 1, + STATE(7556), 1, sym_val_list, - STATE(7398), 1, + STATE(7923), 1, aux_sym_val_table_repeat1, - [213755] = 7, + [230844] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6225), 1, + STATE(6628), 1, sym_comment, - STATE(7078), 1, + STATE(7576), 1, sym_val_list, - STATE(7403), 1, + STATE(7927), 1, aux_sym_val_table_repeat1, - [213777] = 7, + [230866] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6226), 1, + STATE(6629), 1, sym_comment, - STATE(7082), 1, + STATE(7581), 1, sym_val_list, - STATE(7405), 1, + STATE(7929), 1, aux_sym_val_table_repeat1, - [213799] = 7, + [230888] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6227), 1, + STATE(6630), 1, sym_comment, - STATE(7091), 1, + STATE(7595), 1, sym_val_list, - STATE(7409), 1, + STATE(7933), 1, aux_sym_val_table_repeat1, - [213821] = 7, + [230910] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6228), 1, + STATE(6631), 1, sym_comment, - STATE(7096), 1, + STATE(7600), 1, sym_val_list, - STATE(7411), 1, + STATE(7936), 1, aux_sym_val_table_repeat1, - [213843] = 7, + [230932] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6229), 1, + STATE(6632), 1, sym_comment, - STATE(7106), 1, + STATE(7606), 1, sym_val_list, - STATE(7416), 1, + STATE(7940), 1, aux_sym_val_table_repeat1, - [213865] = 7, + [230954] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6230), 1, + STATE(6633), 1, sym_comment, - STATE(7111), 1, + STATE(7611), 1, sym_val_list, - STATE(7418), 1, + STATE(7942), 1, aux_sym_val_table_repeat1, - [213887] = 7, + [230976] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6231), 1, + STATE(6634), 1, sym_comment, - STATE(7119), 1, + STATE(7622), 1, sym_val_list, - STATE(7422), 1, + STATE(7946), 1, aux_sym_val_table_repeat1, - [213909] = 7, + [230998] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(6232), 1, + STATE(6635), 1, sym_comment, - STATE(7125), 1, + STATE(7627), 1, sym_val_list, - STATE(7424), 1, + STATE(7948), 1, aux_sym_val_table_repeat1, - [213931] = 7, + [231020] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9917), 1, - anon_sym_LPAREN, - ACTIONS(9919), 1, - sym_unescaped_interpolated_content, - ACTIONS(10095), 1, - anon_sym_SQUOTE, - STATE(6174), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6233), 1, + ACTIONS(2064), 1, + anon_sym_RBRACE, + ACTIONS(2070), 1, + sym__entry_separator, + ACTIONS(10551), 1, + anon_sym_DOT_DOT2, + STATE(6636), 1, sym_comment, - STATE(7207), 1, - sym_expr_interpolated, - [213953] = 7, + ACTIONS(10553), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231040] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6176), 1, + STATE(6554), 1, sym__variable_name, - STATE(6234), 1, + STATE(6637), 1, sym_comment, - STATE(7245), 1, + STATE(7446), 1, sym__assignment_pattern_parenthesized, - [213975] = 7, + [231062] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6176), 1, + STATE(6554), 1, sym__variable_name, - STATE(6235), 1, + STATE(6638), 1, sym_comment, - STATE(7277), 1, + STATE(7456), 1, sym__assignment_pattern_parenthesized, - [213997] = 7, + [231084] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6176), 1, + STATE(6554), 1, sym__variable_name, - STATE(6236), 1, + STATE(6639), 1, sym_comment, - STATE(7282), 1, + STATE(7458), 1, sym__assignment_pattern_parenthesized, - [214019] = 7, + [231106] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9943), 1, + ACTIONS(10823), 1, anon_sym_DASH_DASH, - ACTIONS(9945), 1, + ACTIONS(10825), 1, anon_sym_DASH2, - ACTIONS(10097), 1, + ACTIONS(10843), 1, anon_sym_in2, - STATE(6237), 1, + STATE(6640), 1, sym_comment, - STATE(8115), 1, + STATE(8619), 1, sym_short_flag, - STATE(8116), 1, + STATE(8620), 1, sym_long_flag, - [214041] = 7, + [231128] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8281), 1, - anon_sym_DOLLAR, - ACTIONS(8656), 1, + ACTIONS(9366), 1, sym_identifier, - STATE(5414), 1, + ACTIONS(10508), 1, + anon_sym_DOLLAR, + STATE(5695), 1, sym_val_variable, - STATE(6176), 1, + STATE(6554), 1, sym__variable_name, - STATE(6238), 1, + STATE(6641), 1, sym_comment, - STATE(7010), 1, + STATE(7785), 1, sym__assignment_pattern_parenthesized, - [214063] = 7, + [231150] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9943), 1, + ACTIONS(10823), 1, anon_sym_DASH_DASH, - ACTIONS(9945), 1, + ACTIONS(10825), 1, anon_sym_DASH2, - ACTIONS(10099), 1, + ACTIONS(10845), 1, anon_sym_in2, - STATE(6239), 1, + STATE(6642), 1, sym_comment, - STATE(8120), 1, + STATE(8627), 1, sym_short_flag, - STATE(8121), 1, + STATE(8628), 1, sym_long_flag, - [214085] = 7, + [231172] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9943), 1, - anon_sym_DASH_DASH, - ACTIONS(9945), 1, - anon_sym_DASH2, - ACTIONS(10101), 1, - anon_sym_in2, - STATE(6240), 1, + STATE(6643), 1, sym_comment, - STATE(7941), 1, - sym_short_flag, - STATE(8002), 1, - sym_long_flag, - [214107] = 6, + ACTIONS(8553), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231186] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10847), 1, + anon_sym_GT2, + STATE(5928), 1, + aux_sym__multiple_types_repeat1, + STATE(6644), 1, + sym_comment, + STATE(7475), 1, + sym_param_cmd, + [231208] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8604), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8606), 1, - aux_sym__immediate_decimal_token5, - STATE(6241), 1, + STATE(6645), 1, sym_comment, - STATE(7596), 1, - sym__immediate_decimal, - ACTIONS(8602), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214127] = 6, + ACTIONS(8557), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231222] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(10103), 1, + STATE(6646), 1, + sym_comment, + ACTIONS(8531), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231236] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6647), 1, + sym_comment, + ACTIONS(8665), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231250] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + ACTIONS(10849), 1, + anon_sym_GT2, + STATE(5937), 1, + aux_sym__multiple_types_repeat1, + STATE(6648), 1, + sym_comment, + STATE(7563), 1, + sym_param_cmd, + [231272] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6649), 1, + sym_comment, + ACTIONS(8669), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231286] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1830), 1, + anon_sym_RBRACE, + ACTIONS(1838), 1, + sym__entry_separator, + ACTIONS(10851), 1, + anon_sym_DOT_DOT2, + STATE(6650), 1, + sym_comment, + ACTIONS(10853), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231306] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6651), 1, + sym_comment, + ACTIONS(8561), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231320] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2197), 1, + anon_sym_RBRACE, + ACTIONS(2199), 1, + sym__entry_separator, + ACTIONS(10551), 1, + anon_sym_DOT_DOT2, + STATE(6652), 1, + sym_comment, + ACTIONS(10553), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [231340] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(992), 1, anon_sym_DOT, - ACTIONS(10105), 1, - aux_sym__immediate_decimal_token2, - STATE(6242), 1, + ACTIONS(10855), 1, + anon_sym_QMARK2, + STATE(6653), 1, + sym_comment, + ACTIONS(990), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [231358] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6654), 1, + sym_comment, + ACTIONS(8565), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231372] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6655), 1, + sym_comment, + ACTIONS(8673), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [231386] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6656), 1, sym_comment, - ACTIONS(1787), 2, + ACTIONS(8503), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - anon_sym_LPAREN2, - [214147] = 6, + [231400] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, + ACTIONS(1799), 1, aux_sym_unquoted_token2, - ACTIONS(10107), 1, - anon_sym_DOT_DOT2, - STATE(6243), 1, + ACTIONS(10857), 1, + aux_sym__immediate_decimal_token2, + STATE(6657), 1, sym_comment, - ACTIONS(10109), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [214167] = 7, - ACTIONS(251), 1, + ACTIONS(1801), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231418] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(6244), 1, + STATE(6658), 1, sym_comment, - STATE(7294), 1, - sym_val_list, - STATE(7297), 1, - aux_sym_val_table_repeat1, - [214189] = 5, + ACTIONS(8509), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8511), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [231433] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10111), 1, - anon_sym_DQUOTE, - STATE(6245), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(10861), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6659), 1, sym_comment, - STATE(6477), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214206] = 3, - ACTIONS(251), 1, + [231452] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6246), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(10863), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6660), 1, sym_comment, - ACTIONS(10115), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214219] = 3, + [231471] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6247), 1, + STATE(6661), 1, sym_comment, - ACTIONS(10117), 4, + ACTIONS(10865), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214232] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_RBRACE, - ACTIONS(2241), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - sym__entry_separator, - ACTIONS(2245), 1, - aux_sym__unquoted_in_record_token2, - STATE(6248), 1, - sym_comment, - [214251] = 3, + [231484] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6249), 1, + STATE(6662), 1, sym_comment, - ACTIONS(10119), 4, + ACTIONS(10867), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214264] = 4, + [231497] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6250), 1, - sym_comment, - ACTIONS(2247), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2249), 2, - anon_sym_LPAREN2, + ACTIONS(6760), 1, sym__entry_separator, - [214279] = 5, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6663), 1, + sym_comment, + [231516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10121), 1, + ACTIONS(10871), 1, anon_sym_DQUOTE, - STATE(6251), 1, + STATE(6664), 1, sym_comment, - STATE(6262), 1, + STATE(6671), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [214296] = 4, + [231533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10123), 1, + ACTIONS(10875), 1, anon_sym_LPAREN, - STATE(6252), 1, + STATE(6665), 1, sym_comment, - ACTIONS(10125), 3, + ACTIONS(10877), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, - [214311] = 3, + [231548] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + anon_sym_RBRACK, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + sym__entry_separator, + ACTIONS(2232), 1, + aux_sym__unquoted_in_list_token2, + STATE(6666), 1, + sym_comment, + [231567] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6253), 1, + ACTIONS(5027), 1, + anon_sym_DOLLAR, + ACTIONS(5029), 1, + sym_identifier, + ACTIONS(10879), 1, + anon_sym_EQ2, + ACTIONS(10881), 1, + sym_short_flag_identifier, + STATE(6667), 1, sym_comment, - ACTIONS(8077), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - anon_sym_LBRACE, - [214324] = 5, + [231586] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LPAREN, + STATE(6668), 1, + sym_comment, + ACTIONS(10885), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [231601] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1432), 1, - ts_builtin_sym_end, - STATE(306), 1, - aux_sym__block_body_repeat1, - STATE(6254), 1, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(6364), 1, + sym_parameter_parens, + STATE(6368), 1, + sym_parameter_bracks, + STATE(6669), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [214341] = 3, + [231620] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6255), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(6670), 1, sym_comment, - ACTIONS(10127), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214354] = 3, + ACTIONS(2230), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231635] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10891), 1, + anon_sym_DQUOTE, + STATE(6671), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [231652] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6256), 1, + STATE(6672), 1, sym_comment, - ACTIONS(10129), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214367] = 3, + ACTIONS(10893), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [231665] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6257), 1, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(3321), 1, + sym_parameter_bracks, + STATE(3322), 1, + sym_parameter_parens, + STATE(6673), 1, sym_comment, - ACTIONS(10131), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214380] = 6, + [231684] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_RBRACK, - ACTIONS(1040), 1, + ACTIONS(2308), 1, sym__entry_separator, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym__unquoted_in_list_token4, - STATE(6258), 1, + ACTIONS(10895), 1, + anon_sym_LBRACK2, + STATE(6674), 1, sym_comment, - [214399] = 6, - ACTIONS(251), 1, + ACTIONS(2304), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [231701] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8996), 1, - anon_sym_DOLLAR, - STATE(5414), 1, - sym_val_variable, - STATE(6240), 1, - sym__variable_name, - STATE(6259), 1, + ACTIONS(1020), 1, + anon_sym_DOT, + STATE(6675), 1, sym_comment, - [214418] = 5, + ACTIONS(1018), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [231716] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(10133), 1, + ACTIONS(1036), 1, + anon_sym_LBRACE, + ACTIONS(10897), 1, anon_sym_DOT_DOT2, - STATE(6260), 1, + STATE(6676), 1, sym_comment, - ACTIONS(10135), 2, + ACTIONS(10899), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214435] = 6, + [231733] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10139), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6261), 1, + ACTIONS(5010), 1, + sym__space, + ACTIONS(5012), 1, + sym__newline, + ACTIONS(10901), 1, + sym_long_flag_identifier, + ACTIONS(10903), 1, + anon_sym_EQ2, + STATE(6677), 1, sym_comment, - [214454] = 5, - ACTIONS(3), 1, + [231752] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10141), 1, - anon_sym_DQUOTE, - STATE(6262), 1, + STATE(6678), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214471] = 6, + ACTIONS(10905), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10143), 1, + ACTIONS(1016), 1, + anon_sym_DOT, + STATE(6679), 1, + sym_comment, + ACTIONS(1014), 3, anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6263), 1, + sym__entry_separator, + sym__table_head_separator, + [231780] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6680), 1, sym_comment, - [214490] = 3, + ACTIONS(10907), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [231793] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6264), 1, + STATE(6681), 1, sym_comment, - ACTIONS(10131), 4, + ACTIONS(10909), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214503] = 6, - ACTIONS(3), 1, + [231806] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10145), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6265), 1, + STATE(6682), 1, sym_comment, - [214522] = 6, + ACTIONS(10911), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10147), 1, + ACTIONS(10913), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6266), 1, + STATE(6683), 1, sym_comment, - [214541] = 6, + [231838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10149), 1, + ACTIONS(10915), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6267), 1, + STATE(6684), 1, sym_comment, - [214560] = 6, + [231857] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10151), 1, + ACTIONS(10917), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6268), 1, + STATE(6685), 1, sym_comment, - [214579] = 6, + [231876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10153), 1, + ACTIONS(10919), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6269), 1, + STATE(6686), 1, sym_comment, - [214598] = 6, + [231895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10155), 1, + ACTIONS(10921), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6270), 1, + STATE(6687), 1, sym_comment, - [214617] = 6, + [231914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10157), 1, + ACTIONS(10923), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6271), 1, + STATE(6688), 1, sym_comment, - [214636] = 6, + [231933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10159), 1, + ACTIONS(10925), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6272), 1, + STATE(6689), 1, sym_comment, - [214655] = 6, + [231952] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10161), 1, + ACTIONS(10927), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6273), 1, + STATE(6690), 1, sym_comment, - [214674] = 3, + [231971] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6274), 1, + STATE(6691), 1, sym_comment, - ACTIONS(5705), 4, - ts_builtin_sym_end, + ACTIONS(10929), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [214687] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [231984] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6275), 1, + STATE(6692), 1, sym_comment, - ACTIONS(5682), 4, - ts_builtin_sym_end, + ACTIONS(10931), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [214700] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - STATE(6276), 1, - sym_comment, - ACTIONS(1787), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214715] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9638), 1, anon_sym_RPAREN, - STATE(6277), 1, - sym_comment, - STATE(6734), 1, - aux_sym__block_body_repeat1, - ACTIONS(10163), 2, - sym__newline, - anon_sym_SEMI, - [214732] = 3, + anon_sym_RBRACE, + [231997] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6278), 1, + STATE(6693), 1, sym_comment, - ACTIONS(10165), 4, + ACTIONS(10933), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214745] = 4, + [232010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT, - STATE(6279), 1, - sym_comment, - ACTIONS(1022), 3, - anon_sym_RBRACK, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2272), 1, + anon_sym_RBRACE, + ACTIONS(2274), 1, sym__entry_separator, - sym__table_head_separator, - [214760] = 3, + STATE(6694), 1, + sym_comment, + [232029] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6280), 1, + STATE(6695), 1, sym_comment, - ACTIONS(10167), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214773] = 3, + ACTIONS(10935), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [232042] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6281), 1, + STATE(6696), 1, sym_comment, - ACTIONS(10169), 4, + ACTIONS(10937), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214786] = 6, - ACTIONS(251), 1, + [232055] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_DOLLAR, - ACTIONS(4970), 1, - sym_identifier, - ACTIONS(10171), 1, - sym_long_flag_identifier, - ACTIONS(10173), 1, - anon_sym_EQ2, - STATE(6282), 1, + ACTIONS(10939), 1, + anon_sym_DQUOTE, + STATE(6697), 1, sym_comment, - [214805] = 4, + STATE(6703), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232072] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_DOT, - STATE(6283), 1, + STATE(6698), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_RBRACK, + ACTIONS(2242), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2244), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - [214820] = 3, + [232087] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6284), 1, + STATE(6699), 1, sym_comment, - ACTIONS(10175), 4, + ACTIONS(10941), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214833] = 3, + [232100] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6285), 1, + STATE(6700), 1, sym_comment, - ACTIONS(10177), 4, + ACTIONS(10943), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214846] = 3, + [232113] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6286), 1, + STATE(6701), 1, sym_comment, - ACTIONS(10179), 4, + ACTIONS(10945), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214859] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - STATE(6287), 1, - sym_comment, - ACTIONS(1795), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214874] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6288), 1, - sym_comment, - ACTIONS(10181), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [214887] = 3, + [232126] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6289), 1, + STATE(6702), 1, sym_comment, - ACTIONS(10183), 4, + ACTIONS(10937), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214900] = 5, + [232139] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10185), 1, + ACTIONS(10947), 1, anon_sym_DQUOTE, - STATE(6290), 1, + STATE(6703), 1, sym_comment, - STATE(6294), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [214917] = 3, - ACTIONS(251), 1, + [232156] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6291), 1, + ACTIONS(2244), 1, + anon_sym_PIPE, + STATE(6704), 1, sym_comment, - ACTIONS(10187), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214930] = 3, - ACTIONS(251), 1, + ACTIONS(2242), 3, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [232171] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6292), 1, + STATE(6705), 1, sym_comment, - ACTIONS(6355), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [214943] = 3, - ACTIONS(251), 1, + ACTIONS(8323), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8327), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [232186] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6293), 1, + STATE(6706), 1, sym_comment, - ACTIONS(10187), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214956] = 5, + ACTIONS(8479), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8481), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [232201] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10189), 1, - anon_sym_DQUOTE, - STATE(6294), 1, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2292), 1, + anon_sym_RBRACE, + ACTIONS(2294), 1, + sym__entry_separator, + STATE(6707), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214973] = 3, - ACTIONS(251), 1, + [232220] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6295), 1, + STATE(6708), 1, sym_comment, - ACTIONS(10187), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214986] = 3, - ACTIONS(251), 1, + ACTIONS(8489), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8491), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [232235] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6296), 1, + ACTIONS(2234), 1, + anon_sym_RBRACE, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, + sym__entry_separator, + ACTIONS(2240), 1, + aux_sym__unquoted_in_record_token4, + STATE(6709), 1, sym_comment, - ACTIONS(6357), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [214999] = 3, - ACTIONS(251), 1, + [232254] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6297), 1, + ACTIONS(10949), 1, + anon_sym_DQUOTE, + STATE(6710), 1, sym_comment, - ACTIONS(10191), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215012] = 3, - ACTIONS(251), 1, + STATE(6739), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232271] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6298), 1, + STATE(6711), 1, sym_comment, - ACTIONS(5709), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [215025] = 3, + ACTIONS(8495), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8497), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [232286] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6299), 1, + STATE(6712), 1, sym_comment, - ACTIONS(10129), 4, + ACTIONS(10951), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215038] = 3, + [232299] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6300), 1, + STATE(6713), 1, sym_comment, - ACTIONS(10187), 4, + ACTIONS(10953), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215051] = 3, - ACTIONS(251), 1, + [232312] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6301), 1, + STATE(6714), 1, sym_comment, - ACTIONS(10187), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215064] = 6, + ACTIONS(8503), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8505), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [232327] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10193), 1, + ACTIONS(10955), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6302), 1, + STATE(6715), 1, sym_comment, - [215083] = 6, + [232346] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10195), 1, + ACTIONS(10957), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6303), 1, + STATE(6716), 1, sym_comment, - [215102] = 6, + [232365] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10197), 1, + ACTIONS(10959), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6304), 1, + STATE(6717), 1, sym_comment, - [215121] = 6, + [232384] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10199), 1, + ACTIONS(10961), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6305), 1, + STATE(6718), 1, sym_comment, - [215140] = 6, + [232403] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10201), 1, + ACTIONS(10963), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6306), 1, + STATE(6719), 1, sym_comment, - [215159] = 6, + [232422] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10203), 1, + ACTIONS(10965), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6307), 1, + STATE(6720), 1, sym_comment, - [215178] = 6, + [232441] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10205), 1, + ACTIONS(10967), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6308), 1, + STATE(6721), 1, sym_comment, - [215197] = 6, + [232460] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10207), 1, + ACTIONS(10969), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6309), 1, + STATE(6722), 1, sym_comment, - [215216] = 3, + [232479] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6310), 1, + STATE(6723), 1, sym_comment, - ACTIONS(10183), 4, + ACTIONS(10951), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215229] = 3, + [232492] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6311), 1, + STATE(6724), 1, sym_comment, - ACTIONS(5701), 4, - ts_builtin_sym_end, + ACTIONS(10971), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [215242] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232505] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - STATE(6312), 1, + STATE(6725), 1, sym_comment, - ACTIONS(1803), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215257] = 3, + ACTIONS(10973), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232518] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6313), 1, + STATE(6726), 1, + sym_comment, + ACTIONS(10975), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232531] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6727), 1, sym_comment, - ACTIONS(10209), 4, + ACTIONS(10977), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215270] = 5, + [232544] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6728), 1, + sym_comment, + ACTIONS(10979), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10211), 1, + ACTIONS(10981), 1, anon_sym_DQUOTE, - STATE(6314), 1, + STATE(6729), 1, sym_comment, - STATE(6320), 1, + STATE(6734), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [215287] = 3, + [232574] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6315), 1, + STATE(6730), 1, sym_comment, - ACTIONS(10187), 4, + ACTIONS(10971), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215300] = 3, - ACTIONS(251), 1, + [232587] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6316), 1, - sym_comment, - ACTIONS(10129), 4, + ACTIONS(5027), 1, + sym__space, + ACTIONS(5029), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215313] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(6317), 1, + ACTIONS(10983), 1, + anon_sym_EQ2, + ACTIONS(10985), 1, + sym_short_flag_identifier, + STATE(6731), 1, sym_comment, - ACTIONS(1707), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215328] = 3, + [232606] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6318), 1, + STATE(6732), 1, sym_comment, - ACTIONS(10213), 4, + ACTIONS(5832), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215341] = 3, + anon_sym_LBRACE, + [232619] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6319), 1, + STATE(6733), 1, sym_comment, - ACTIONS(10215), 4, + ACTIONS(10987), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215354] = 5, + [232632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10217), 1, + ACTIONS(10989), 1, anon_sym_DQUOTE, - STATE(6320), 1, + STATE(6734), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [215371] = 3, + [232649] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6321), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(10991), 1, + anon_sym_DOT_DOT2, + STATE(6735), 1, sym_comment, - ACTIONS(10187), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215384] = 3, - ACTIONS(251), 1, + ACTIONS(10993), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [232666] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6322), 1, + ACTIONS(10995), 1, + anon_sym_DQUOTE, + STATE(6736), 1, sym_comment, - ACTIONS(10219), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215397] = 6, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232683] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10221), 1, - anon_sym_RBRACK, - STATE(3402), 1, + ACTIONS(10997), 1, + anon_sym_COLON, + ACTIONS(10999), 1, + anon_sym_GT2, + STATE(5853), 1, aux_sym__multiple_types_repeat1, - STATE(6323), 1, + STATE(6737), 1, sym_comment, - [215416] = 4, + [232702] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1824), 1, + ACTIONS(1659), 1, aux_sym_unquoted_token2, - STATE(6324), 1, + STATE(6738), 1, sym_comment, - ACTIONS(1826), 3, + ACTIONS(2270), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [215431] = 6, + [232717] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11001), 1, + anon_sym_DQUOTE, + STATE(6739), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [232734] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6740), 1, + sym_comment, + ACTIONS(2242), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [232747] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11003), 1, + anon_sym_LBRACE, + STATE(5337), 1, + sym__blosure, + STATE(5476), 1, + sym_block, + STATE(5477), 1, + sym_val_closure, + STATE(6741), 1, + sym_comment, + [232766] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6742), 1, + sym_comment, + ACTIONS(6573), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [232779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10223), 1, + ACTIONS(11005), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6325), 1, + STATE(6743), 1, sym_comment, - [215450] = 6, + [232798] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10225), 1, + ACTIONS(11007), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6326), 1, + STATE(6744), 1, sym_comment, - [215469] = 6, + [232817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10227), 1, + ACTIONS(11009), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6327), 1, + STATE(6745), 1, sym_comment, - [215488] = 6, + [232836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10229), 1, + ACTIONS(11011), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6328), 1, + STATE(6746), 1, sym_comment, - [215507] = 6, + [232855] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10231), 1, + ACTIONS(11013), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6329), 1, + STATE(6747), 1, sym_comment, - [215526] = 6, + [232874] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10233), 1, + ACTIONS(11015), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6330), 1, + STATE(6748), 1, sym_comment, - [215545] = 6, + [232893] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10235), 1, + ACTIONS(11017), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6331), 1, + STATE(6749), 1, sym_comment, - [215564] = 6, + [232912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10237), 1, + ACTIONS(11019), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6332), 1, + STATE(6750), 1, sym_comment, - [215583] = 4, + [232931] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(6333), 1, + STATE(6751), 1, sym_comment, - ACTIONS(2280), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215598] = 3, + ACTIONS(6575), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [232944] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6334), 1, + STATE(6752), 1, + sym_comment, + ACTIONS(11021), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232957] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6753), 1, + sym_comment, + ACTIONS(11021), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232970] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6754), 1, sym_comment, - ACTIONS(10239), 4, + ACTIONS(11023), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215611] = 5, + [232983] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6755), 1, + sym_comment, + ACTIONS(11025), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [232996] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10241), 1, + ACTIONS(11027), 1, anon_sym_DQUOTE, - STATE(6335), 1, + STATE(6756), 1, sym_comment, - STATE(6341), 1, + STATE(6762), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [215628] = 3, + [233013] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11029), 1, + anon_sym_COLON, + ACTIONS(11031), 1, + anon_sym_GT2, + STATE(5891), 1, + aux_sym__multiple_types_repeat1, + STATE(6757), 1, + sym_comment, + [233032] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6336), 1, + STATE(6758), 1, sym_comment, - ACTIONS(10187), 4, + ACTIONS(11025), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215641] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - ACTIONS(2209), 1, - anon_sym_RBRACE, - ACTIONS(2211), 1, - sym__entry_separator, - STATE(6337), 1, - sym_comment, - STATE(7875), 1, - sym__expr_parenthesized_immediate, - [215660] = 3, + [233045] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6338), 1, + STATE(6759), 1, sym_comment, - ACTIONS(10243), 4, + ACTIONS(11033), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215673] = 6, + [233058] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(2254), 1, + anon_sym_RBRACK, + ACTIONS(2256), 1, anon_sym_LPAREN2, - ACTIONS(2213), 1, - anon_sym_RBRACE, - ACTIONS(2215), 1, + ACTIONS(2258), 1, sym__entry_separator, - STATE(6339), 1, + ACTIONS(2260), 1, + aux_sym__unquoted_in_list_token4, + STATE(6760), 1, sym_comment, - STATE(7875), 1, - sym__expr_parenthesized_immediate, - [215692] = 3, - ACTIONS(251), 1, + [233077] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6340), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(6761), 1, sym_comment, - ACTIONS(5693), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [215705] = 5, + ACTIONS(1034), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [233092] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10245), 1, + ACTIONS(11035), 1, anon_sym_DQUOTE, - STATE(6341), 1, + STATE(6762), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [215722] = 3, + [233109] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6342), 1, + ACTIONS(631), 1, + ts_builtin_sym_end, + STATE(302), 1, + aux_sym__block_body_repeat1, + STATE(6763), 1, sym_comment, - ACTIONS(10247), 4, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215735] = 4, + [233126] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1838), 1, + ACTIONS(1478), 1, + ts_builtin_sym_end, + STATE(228), 1, + aux_sym__block_body_repeat1, + STATE(6764), 1, + sym_comment, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [233143] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1779), 1, aux_sym_unquoted_token2, - STATE(6343), 1, + STATE(6765), 1, sym_comment, - ACTIONS(1836), 3, + ACTIONS(1781), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [215750] = 3, + [233158] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11037), 1, + anon_sym_COLON, + ACTIONS(11039), 1, + anon_sym_GT2, + STATE(5892), 1, + aux_sym__multiple_types_repeat1, + STATE(6766), 1, + sym_comment, + [233177] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6344), 1, + STATE(6767), 1, sym_comment, - ACTIONS(10249), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215763] = 3, + [233190] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11043), 1, + anon_sym_COLON, + ACTIONS(11045), 1, + anon_sym_GT2, + STATE(5893), 1, + aux_sym__multiple_types_repeat1, + STATE(6768), 1, + sym_comment, + [233209] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6345), 1, + STATE(6769), 1, sym_comment, - ACTIONS(10251), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215776] = 3, + [233222] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6346), 1, + ACTIONS(11047), 1, + anon_sym_LBRACK, + ACTIONS(11049), 1, + anon_sym_LPAREN, + STATE(6451), 1, + sym_parameter_bracks, + STATE(6539), 1, + sym_parameter_parens, + STATE(6770), 1, + sym_comment, + [233241] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11051), 1, + anon_sym_LPAREN, + STATE(6771), 1, + sym_comment, + ACTIONS(11053), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [233256] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6772), 1, sym_comment, - ACTIONS(10253), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215789] = 6, + [233269] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10255), 1, + ACTIONS(11055), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6347), 1, + STATE(6773), 1, sym_comment, - [215808] = 6, + [233288] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10257), 1, + ACTIONS(11057), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6348), 1, + STATE(6774), 1, sym_comment, - [215827] = 6, + [233307] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10259), 1, + ACTIONS(11059), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6349), 1, + STATE(6775), 1, sym_comment, - [215846] = 6, + [233326] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10261), 1, + ACTIONS(11061), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6350), 1, + STATE(6776), 1, sym_comment, - [215865] = 6, + [233345] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10263), 1, + ACTIONS(11063), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6351), 1, + STATE(6777), 1, sym_comment, - [215884] = 6, + [233364] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10265), 1, + ACTIONS(11065), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6352), 1, + STATE(6778), 1, sym_comment, - [215903] = 6, + [233383] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10267), 1, + ACTIONS(11067), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6353), 1, + STATE(6779), 1, sym_comment, - [215922] = 6, + [233402] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10269), 1, + ACTIONS(11069), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6354), 1, + STATE(6780), 1, sym_comment, - [215941] = 3, + [233421] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2096), 1, + anon_sym_LBRACE, + ACTIONS(11071), 1, + anon_sym_DOT_DOT2, + STATE(6781), 1, + sym_comment, + ACTIONS(11073), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [233438] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + anon_sym_LBRACE, + ACTIONS(11075), 1, + anon_sym_DOT_DOT2, + STATE(6782), 1, + sym_comment, + ACTIONS(11077), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [233455] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6355), 1, + STATE(6783), 1, sym_comment, - ACTIONS(10253), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215954] = 3, + [233468] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6356), 1, + STATE(6784), 1, sym_comment, - ACTIONS(10271), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215967] = 3, + [233481] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6357), 1, + STATE(6785), 1, sym_comment, - ACTIONS(10273), 4, + ACTIONS(11079), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215980] = 3, + [233494] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6358), 1, + STATE(6786), 1, sym_comment, - ACTIONS(10275), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215993] = 5, + [233507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10277), 1, + ACTIONS(11081), 1, anon_sym_DQUOTE, - STATE(6359), 1, + STATE(6787), 1, sym_comment, - STATE(6364), 1, + STATE(6793), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [216010] = 3, - ACTIONS(251), 1, + [233524] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6360), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11083), 1, + anon_sym_COLON, + ACTIONS(11085), 1, + anon_sym_GT2, + STATE(5896), 1, + aux_sym__multiple_types_repeat1, + STATE(6788), 1, sym_comment, - ACTIONS(10127), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216023] = 3, + [233543] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6361), 1, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(11087), 1, + anon_sym_DOT_DOT2, + STATE(6789), 1, sym_comment, - ACTIONS(10271), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216036] = 3, + ACTIONS(11089), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [233560] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11091), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6790), 1, + sym_comment, + [233579] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6362), 1, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(3341), 1, + sym_parameter_parens, + STATE(3343), 1, + sym_parameter_bracks, + STATE(6791), 1, sym_comment, - ACTIONS(10279), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216049] = 3, + [233598] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6363), 1, + STATE(6792), 1, sym_comment, - ACTIONS(10271), 4, + ACTIONS(11093), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216062] = 5, + [233611] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10281), 1, + ACTIONS(11095), 1, anon_sym_DQUOTE, - STATE(6364), 1, + STATE(6793), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [216079] = 4, + [233628] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6365), 1, - sym_comment, - ACTIONS(2247), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2249), 2, - anon_sym_LPAREN2, + ACTIONS(6760), 1, sym__entry_separator, - [216094] = 3, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11097), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6794), 1, + sym_comment, + [233647] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6366), 1, + ACTIONS(11099), 1, + anon_sym_use, + ACTIONS(11101), 1, + anon_sym_list, + ACTIONS(11103), 1, + anon_sym_hide, + ACTIONS(11105), 1, + anon_sym_new, + STATE(6795), 1, + sym_comment, + [233666] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6796), 1, sym_comment, - ACTIONS(10271), 4, + ACTIONS(11093), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216107] = 3, + [233679] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2254), 1, + anon_sym_RBRACE, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2258), 1, + sym__entry_separator, + ACTIONS(2260), 1, + aux_sym__unquoted_in_record_token4, + STATE(6797), 1, + sym_comment, + [233698] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6367), 1, + STATE(6798), 1, sym_comment, - ACTIONS(10247), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216120] = 5, - ACTIONS(251), 1, + [233711] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(10283), 1, - anon_sym_DOT_DOT2, - STATE(6368), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11107), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6799), 1, sym_comment, - ACTIONS(10285), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216137] = 3, + [233730] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6369), 1, + STATE(6800), 1, sym_comment, - ACTIONS(10287), 4, + ACTIONS(11041), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216150] = 6, + [233743] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1529), 1, - anon_sym_SEMI, - ACTIONS(3907), 1, - sym__newline, - STATE(255), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6370), 1, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(6296), 1, + sym_parameter_parens, + STATE(6297), 1, + sym_parameter_bracks, + STATE(6801), 1, sym_comment, - STATE(7385), 1, - aux_sym_shebang_repeat1, - [216169] = 6, + [233762] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(1840), 1, + anon_sym_RBRACE, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1848), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(1850), 1, + aux_sym__unquoted_in_record_token2, + STATE(6802), 1, + sym_comment, + [233781] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6803), 1, + sym_comment, + ACTIONS(11093), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233794] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10289), 1, + ACTIONS(11109), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6371), 1, + STATE(6804), 1, sym_comment, - [216188] = 6, + [233813] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10291), 1, + ACTIONS(11111), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6372), 1, + STATE(6805), 1, sym_comment, - [216207] = 6, + [233832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10293), 1, + ACTIONS(11113), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6373), 1, + STATE(6806), 1, sym_comment, - [216226] = 6, + [233851] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10295), 1, + ACTIONS(11115), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6374), 1, + STATE(6807), 1, sym_comment, - [216245] = 6, + [233870] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10297), 1, + ACTIONS(11117), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6375), 1, + STATE(6808), 1, sym_comment, - [216264] = 6, + [233889] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10299), 1, + ACTIONS(11119), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6376), 1, + STATE(6809), 1, sym_comment, - [216283] = 6, + [233908] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10301), 1, + ACTIONS(11121), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6377), 1, + STATE(6810), 1, sym_comment, - [216302] = 6, + [233927] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10303), 1, + ACTIONS(11123), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6378), 1, + STATE(6811), 1, sym_comment, - [216321] = 5, - ACTIONS(3), 1, + [233946] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10305), 1, - anon_sym_DQUOTE, - STATE(6379), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + STATE(6812), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216338] = 6, - ACTIONS(3), 1, + ACTIONS(1838), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [233961] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1843), 1, - anon_sym_RBRACK, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, - sym__entry_separator, - STATE(6380), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(1773), 1, + anon_sym_LBRACE, + ACTIONS(11125), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(11127), 1, + aux_sym__immediate_decimal_token2, + STATE(6813), 1, sym_comment, - [216357] = 3, + [233980] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6381), 1, + STATE(6814), 1, + sym_comment, + ACTIONS(11093), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [233993] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6815), 1, + sym_comment, + ACTIONS(11129), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [234006] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6816), 1, sym_comment, - ACTIONS(10307), 4, + ACTIONS(11131), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216370] = 5, + [234019] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6817), 1, + sym_comment, + ACTIONS(11129), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [234032] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10309), 1, + ACTIONS(11133), 1, anon_sym_DQUOTE, - STATE(6382), 1, + STATE(6818), 1, sym_comment, - STATE(6385), 1, + STATE(6822), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [216387] = 6, + [234049] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10311), 1, + ACTIONS(11135), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6383), 1, + STATE(6819), 1, + sym_comment, + [234068] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11137), 1, + anon_sym_COLON, + ACTIONS(11139), 1, + anon_sym_GT2, + STATE(5980), 1, + aux_sym__multiple_types_repeat1, + STATE(6820), 1, sym_comment, - [216406] = 3, + [234087] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6384), 1, + STATE(6821), 1, sym_comment, - ACTIONS(10313), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [216419] = 5, + ACTIONS(11141), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [234100] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10315), 1, + ACTIONS(11143), 1, anon_sym_DQUOTE, - STATE(6385), 1, + STATE(6822), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [216436] = 6, + [234117] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - ACTIONS(2201), 1, - anon_sym_RBRACE, - ACTIONS(2203), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(6386), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11145), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6823), 1, sym_comment, - STATE(7637), 1, - sym__expr_parenthesized_immediate, - [216455] = 3, + [234136] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11147), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6824), 1, + sym_comment, + [234155] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6387), 1, + STATE(6825), 1, sym_comment, - ACTIONS(10317), 4, + ACTIONS(11141), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216468] = 5, + [234168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - ACTIONS(5928), 1, - anon_sym_PIPE, - STATE(6388), 1, + STATE(6826), 1, sym_comment, - ACTIONS(5923), 2, - anon_sym_if, - anon_sym_EQ_GT, - [216485] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(1771), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 2, anon_sym_LPAREN2, - ACTIONS(7914), 1, sym__entry_separator, - ACTIONS(7916), 1, - anon_sym_RBRACK, - STATE(6389), 1, + [234183] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6827), 1, sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - [216504] = 6, + ACTIONS(11141), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [234196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10319), 1, + ACTIONS(11149), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6390), 1, + STATE(6828), 1, sym_comment, - [216523] = 6, + [234215] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(11151), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6391), 1, + STATE(6829), 1, sym_comment, - [216542] = 6, + [234234] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10323), 1, + ACTIONS(11153), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6392), 1, + STATE(6830), 1, sym_comment, - [216561] = 6, + [234253] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10325), 1, + ACTIONS(11155), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6393), 1, + STATE(6831), 1, sym_comment, - [216580] = 6, + [234272] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10327), 1, + ACTIONS(11157), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6394), 1, + STATE(6832), 1, sym_comment, - [216599] = 6, + [234291] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10329), 1, + ACTIONS(11159), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6395), 1, + STATE(6833), 1, sym_comment, - [216618] = 6, + [234310] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10331), 1, + ACTIONS(11161), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6396), 1, + STATE(6834), 1, sym_comment, - [216637] = 6, + [234329] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10333), 1, + ACTIONS(11163), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6397), 1, + STATE(6835), 1, sym_comment, - [216656] = 6, + [234348] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2278), 1, - anon_sym_RBRACK, - ACTIONS(2280), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(6398), 1, - sym_comment, - [216675] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6399), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11165), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6836), 1, sym_comment, - ACTIONS(10335), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [216688] = 6, - ACTIONS(251), 1, + [234367] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9953), 1, - anon_sym_use, - ACTIONS(9955), 1, - anon_sym_list, - ACTIONS(9957), 1, - anon_sym_hide, - ACTIONS(9959), 1, - anon_sym_new, - STATE(6400), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11167), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6837), 1, sym_comment, - [216707] = 5, + [234386] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10337), 1, - anon_sym_DQUOTE, - STATE(6401), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11169), 1, + anon_sym_COLON, + ACTIONS(11171), 1, + anon_sym_GT2, + STATE(5826), 1, + aux_sym__multiple_types_repeat1, + STATE(6838), 1, sym_comment, - STATE(6405), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216724] = 6, + [234405] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2282), 1, - anon_sym_RBRACE, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(2288), 1, - aux_sym__unquoted_in_record_token4, - STATE(6402), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11173), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6839), 1, sym_comment, - [216743] = 3, + [234424] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6403), 1, + STATE(6840), 1, sym_comment, - ACTIONS(10127), 4, + ACTIONS(11141), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216756] = 6, + [234437] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6841), 1, + sym_comment, + ACTIONS(11175), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [234450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_RBRACK, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1836), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(1838), 1, - aux_sym__unquoted_in_list_token2, - STATE(6404), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11177), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6842), 1, sym_comment, - [216775] = 5, + [234469] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10339), 1, + ACTIONS(11179), 1, anon_sym_DQUOTE, - STATE(6405), 1, + STATE(6843), 1, sym_comment, - STATE(6665), 1, + STATE(6847), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [216792] = 6, + [234486] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10341), 1, + ACTIONS(11181), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6406), 1, + STATE(6844), 1, + sym_comment, + [234505] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11183), 1, + anon_sym_COLON, + ACTIONS(11185), 1, + anon_sym_GT2, + STATE(5861), 1, + aux_sym__multiple_types_repeat1, + STATE(6845), 1, + sym_comment, + [234524] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10366), 1, + anon_sym_RPAREN, + STATE(6846), 1, sym_comment, - [216811] = 5, + STATE(7175), 1, + aux_sym__block_body_repeat1, + ACTIONS(11187), 2, + sym__newline, + anon_sym_SEMI, + [234541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10343), 1, + ACTIONS(11189), 1, anon_sym_DQUOTE, - STATE(6407), 1, + STATE(6847), 1, sym_comment, - STATE(6479), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [216828] = 3, - ACTIONS(251), 1, + [234558] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6408), 1, + STATE(6848), 1, sym_comment, - ACTIONS(10127), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216841] = 3, + ACTIONS(1799), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1801), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [234573] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2272), 1, + anon_sym_RBRACK, + ACTIONS(2274), 1, + sym__entry_separator, + STATE(6849), 1, + sym_comment, + [234592] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11191), 1, + anon_sym_COLON, + ACTIONS(11193), 1, + anon_sym_GT2, + STATE(5862), 1, + aux_sym__multiple_types_repeat1, + STATE(6850), 1, + sym_comment, + [234611] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6409), 1, + STATE(6851), 1, sym_comment, - ACTIONS(10345), 4, + ACTIONS(11195), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216854] = 3, + [234624] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6410), 1, + STATE(6852), 1, sym_comment, - ACTIONS(10345), 4, + ACTIONS(11197), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216867] = 6, + [234637] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10347), 1, + ACTIONS(11199), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6411), 1, + STATE(6853), 1, sym_comment, - [216886] = 6, + [234656] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10349), 1, + ACTIONS(11201), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6412), 1, + STATE(6854), 1, sym_comment, - [216905] = 6, + [234675] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10351), 1, + ACTIONS(11203), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6413), 1, + STATE(6855), 1, sym_comment, - [216924] = 6, + [234694] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10353), 1, + ACTIONS(11205), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6414), 1, + STATE(6856), 1, sym_comment, - [216943] = 6, + [234713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10355), 1, + ACTIONS(11207), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6415), 1, + STATE(6857), 1, sym_comment, - [216962] = 6, + [234732] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10357), 1, + ACTIONS(11209), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6416), 1, + STATE(6858), 1, sym_comment, - [216981] = 6, + [234751] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10359), 1, + ACTIONS(11211), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6417), 1, + STATE(6859), 1, sym_comment, - [217000] = 6, + [234770] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10361), 1, + ACTIONS(11213), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6418), 1, + STATE(6860), 1, sym_comment, - [217019] = 3, + [234789] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6419), 1, + STATE(6861), 1, sym_comment, - ACTIONS(10345), 4, + ACTIONS(11215), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217032] = 3, + [234802] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6420), 1, + STATE(6862), 1, + sym_comment, + ACTIONS(8483), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [234815] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6863), 1, sym_comment, - ACTIONS(10363), 4, + ACTIONS(11217), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217045] = 5, + [234828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10365), 1, + ACTIONS(11219), 1, anon_sym_DQUOTE, - STATE(6421), 1, + STATE(6864), 1, sym_comment, - STATE(6426), 1, + STATE(6868), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [217062] = 3, + [234845] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6422), 1, + STATE(6865), 1, sym_comment, - ACTIONS(10367), 4, + ACTIONS(11221), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217075] = 3, + [234858] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6423), 1, + STATE(6866), 1, sym_comment, - ACTIONS(10367), 4, + ACTIONS(11223), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217088] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6424), 1, - sym_comment, - ACTIONS(10369), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [217101] = 6, + [234871] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(5857), 1, - sym_parameter_parens, - STATE(5861), 1, - sym_parameter_bracks, - STATE(6425), 1, + STATE(6867), 1, sym_comment, - [217120] = 5, + ACTIONS(11225), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [234884] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10375), 1, + ACTIONS(11227), 1, anon_sym_DQUOTE, - STATE(6426), 1, + STATE(6868), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [217137] = 3, + [234901] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6427), 1, + STATE(6869), 1, sym_comment, - ACTIONS(10377), 4, + ACTIONS(11229), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217150] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(6428), 1, - sym_comment, - ACTIONS(2243), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217165] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(8064), 1, - sym__entry_separator, - ACTIONS(8066), 1, - anon_sym_RBRACK, - STATE(6429), 1, - sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - [217184] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10379), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6430), 1, - sym_comment, - [217203] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10381), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6431), 1, - sym_comment, - [217222] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10383), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6432), 1, - sym_comment, - [217241] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10385), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6433), 1, - sym_comment, - [217260] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10387), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6434), 1, - sym_comment, - [217279] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10389), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6435), 1, - sym_comment, - [217298] = 6, + [234914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10391), 1, - anon_sym_RBRACK, - STATE(3402), 1, + ACTIONS(11231), 1, + anon_sym_COLON, + ACTIONS(11233), 1, + anon_sym_GT2, + STATE(5984), 1, aux_sym__multiple_types_repeat1, - STATE(6436), 1, + STATE(6870), 1, sym_comment, - [217317] = 6, - ACTIONS(3), 1, + [234933] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10393), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6437), 1, + ACTIONS(1538), 1, + anon_sym_SEMI, + ACTIONS(3919), 1, + sym__newline, + STATE(288), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6871), 1, sym_comment, - [217336] = 3, + STATE(7746), 1, + aux_sym_shebang_repeat1, + [234952] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6438), 1, + STATE(6872), 1, sym_comment, - ACTIONS(6351), 4, - ts_builtin_sym_end, + ACTIONS(11235), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [217349] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6439), 1, - sym_comment, - ACTIONS(10395), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [217362] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10397), 1, - anon_sym_DQUOTE, - STATE(6440), 1, - sym_comment, - STATE(6442), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [217379] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [234965] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6441), 1, + STATE(6873), 1, sym_comment, - ACTIONS(6353), 4, - ts_builtin_sym_end, + ACTIONS(11237), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [217392] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10399), 1, - anon_sym_DQUOTE, - STATE(6442), 1, - sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [217409] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [234978] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10401), 1, - anon_sym_DQUOTE, - STATE(6443), 1, - sym_comment, - STATE(6513), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [217426] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - ACTIONS(10403), 1, - aux_sym__immediate_decimal_token2, - STATE(6444), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6874), 1, sym_comment, - ACTIONS(1803), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [217443] = 6, + [234997] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10405), 1, + ACTIONS(11241), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6445), 1, + STATE(6875), 1, sym_comment, - [217462] = 6, + [235016] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10407), 1, + ACTIONS(11243), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6446), 1, + STATE(6876), 1, sym_comment, - [217481] = 6, + [235035] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10409), 1, + ACTIONS(11245), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6447), 1, + STATE(6877), 1, sym_comment, - [217500] = 6, + [235054] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10411), 1, + ACTIONS(11247), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6448), 1, + STATE(6878), 1, sym_comment, - [217519] = 6, + [235073] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(11249), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6449), 1, + STATE(6879), 1, sym_comment, - [217538] = 6, + [235092] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10415), 1, + ACTIONS(11251), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6450), 1, + STATE(6880), 1, sym_comment, - [217557] = 6, + [235111] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10417), 1, + ACTIONS(11253), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6451), 1, + STATE(6881), 1, sym_comment, - [217576] = 6, + [235130] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10419), 1, - anon_sym_RBRACK, - STATE(3402), 1, + ACTIONS(11255), 1, + anon_sym_COLON, + ACTIONS(11257), 1, + anon_sym_GT2, + STATE(5854), 1, aux_sym__multiple_types_repeat1, - STATE(6452), 1, + STATE(6882), 1, sym_comment, - [217595] = 3, + [235149] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6453), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11259), 1, + anon_sym_COLON, + ACTIONS(11261), 1, + anon_sym_GT2, + STATE(5880), 1, + aux_sym__multiple_types_repeat1, + STATE(6883), 1, sym_comment, - ACTIONS(2247), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [217608] = 3, + [235168] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6454), 1, + STATE(6884), 1, sym_comment, - ACTIONS(10421), 4, + ACTIONS(11263), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217621] = 5, + [235181] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, + ACTIONS(11265), 1, anon_sym_DQUOTE, - STATE(6455), 1, + STATE(6885), 1, sym_comment, - STATE(6458), 1, + STATE(6887), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [217638] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10425), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6456), 1, - sym_comment, - [217657] = 3, + [235198] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6457), 1, + STATE(6886), 1, sym_comment, - ACTIONS(10427), 4, + ACTIONS(11267), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217670] = 5, + [235211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10429), 1, + ACTIONS(11269), 1, anon_sym_DQUOTE, - STATE(6458), 1, + STATE(6887), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [217687] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6459), 1, - sym_comment, - ACTIONS(10427), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217700] = 3, - ACTIONS(251), 1, + [235228] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6460), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + ACTIONS(2274), 1, + anon_sym_PIPE, + STATE(6888), 1, sym_comment, - ACTIONS(10431), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217713] = 3, + ACTIONS(2272), 2, + anon_sym_if, + anon_sym_EQ_GT, + [235245] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6461), 1, + STATE(6889), 1, sym_comment, - ACTIONS(10433), 4, + ACTIONS(11271), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217726] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2290), 1, - anon_sym_RBRACK, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2294), 1, - sym__entry_separator, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - STATE(6462), 1, - sym_comment, - [217745] = 3, + [235258] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6463), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + STATE(6890), 1, sym_comment, - ACTIONS(10345), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217758] = 6, + ACTIONS(1773), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [235273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(11273), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6464), 1, + STATE(6891), 1, sym_comment, - [217777] = 6, + [235292] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10437), 1, + ACTIONS(11275), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6465), 1, + STATE(6892), 1, sym_comment, - [217796] = 6, + [235311] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10439), 1, + ACTIONS(11277), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6466), 1, + STATE(6893), 1, sym_comment, - [217815] = 6, + [235330] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10441), 1, + ACTIONS(11279), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6467), 1, + STATE(6894), 1, sym_comment, - [217834] = 6, + [235349] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10443), 1, + ACTIONS(11281), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6468), 1, + STATE(6895), 1, sym_comment, - [217853] = 6, + [235368] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10445), 1, + ACTIONS(11283), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6469), 1, + STATE(6896), 1, sym_comment, - [217872] = 6, + [235387] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10447), 1, + ACTIONS(11285), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6470), 1, + STATE(6897), 1, sym_comment, - [217891] = 6, + [235406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10449), 1, + ACTIONS(11287), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6471), 1, + STATE(6898), 1, sym_comment, - [217910] = 6, + [235425] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2298), 1, - anon_sym_RBRACK, - ACTIONS(2300), 1, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(6899), 1, + sym_comment, + ACTIONS(2234), 2, + anon_sym_if, + anon_sym_EQ_GT, + [235442] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, sym__entry_separator, - STATE(6472), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11289), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6900), 1, sym_comment, - [217929] = 3, + [235461] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6473), 1, + STATE(6901), 1, sym_comment, - ACTIONS(10451), 4, + ACTIONS(11291), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217942] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(10453), 1, - anon_sym_EQ, - ACTIONS(10455), 1, - anon_sym_COLON, - STATE(4042), 1, - aux_sym_shebang_repeat1, - STATE(6474), 1, - sym_comment, - [217961] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6475), 1, - sym_comment, - ACTIONS(10183), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217974] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6476), 1, - sym_comment, - ACTIONS(10457), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217987] = 5, + [235474] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10459), 1, + ACTIONS(11293), 1, anon_sym_DQUOTE, - STATE(6477), 1, + STATE(6902), 1, sym_comment, - STATE(6665), 1, + STATE(6904), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218004] = 3, - ACTIONS(251), 1, + [235491] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6478), 1, + STATE(6903), 1, sym_comment, - ACTIONS(10183), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218017] = 5, + ACTIONS(8513), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8515), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [235506] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10461), 1, + ACTIONS(11295), 1, anon_sym_DQUOTE, - STATE(6479), 1, + STATE(6904), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218034] = 5, + [235523] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(9939), 1, - aux_sym__immediate_decimal_token2, - STATE(6480), 1, + ACTIONS(10291), 1, + anon_sym_LBRACE, + STATE(5059), 1, + sym_val_closure, + STATE(5157), 1, + sym__blosure, + STATE(5311), 1, + sym_block, + STATE(6905), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [218051] = 3, - ACTIONS(251), 1, + [235542] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6481), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11297), 1, + anon_sym_COLON, + ACTIONS(11299), 1, + anon_sym_GT2, + STATE(5882), 1, + aux_sym__multiple_types_repeat1, + STATE(6906), 1, sym_comment, - ACTIONS(10463), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218064] = 3, - ACTIONS(251), 1, + [235561] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6482), 1, + ACTIONS(2258), 1, + anon_sym_PIPE, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(6907), 1, sym_comment, - ACTIONS(10457), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218077] = 6, + ACTIONS(2254), 2, + anon_sym_if, + anon_sym_EQ_GT, + [235578] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10465), 1, + ACTIONS(11301), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6483), 1, + STATE(6908), 1, sym_comment, - [218096] = 6, + [235597] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10467), 1, + ACTIONS(11303), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6484), 1, + STATE(6909), 1, sym_comment, - [218115] = 6, + [235616] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10469), 1, + ACTIONS(11305), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6485), 1, + STATE(6910), 1, sym_comment, - [218134] = 6, + [235635] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10471), 1, + ACTIONS(11307), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6486), 1, + STATE(6911), 1, sym_comment, - [218153] = 6, + [235654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10473), 1, + ACTIONS(11309), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6487), 1, + STATE(6912), 1, sym_comment, - [218172] = 6, + [235673] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10475), 1, + ACTIONS(11311), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6488), 1, + STATE(6913), 1, sym_comment, - [218191] = 6, + [235692] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10477), 1, + ACTIONS(11313), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6489), 1, + STATE(6914), 1, sym_comment, - [218210] = 6, + [235711] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10479), 1, + ACTIONS(11315), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6490), 1, + STATE(6915), 1, sym_comment, - [218229] = 6, + [235730] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10481), 1, - anon_sym_use, - ACTIONS(10483), 1, - anon_sym_list, - ACTIONS(10485), 1, - anon_sym_hide, - ACTIONS(10487), 1, - anon_sym_new, - STATE(6491), 1, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + STATE(6916), 1, sym_comment, - [218248] = 3, + ACTIONS(1801), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [235745] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6492), 1, + STATE(6917), 1, sym_comment, - ACTIONS(10489), 4, + ACTIONS(11317), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218261] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4771), 1, - sym_block, - STATE(6493), 1, - sym_comment, - [218280] = 5, + [235758] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10491), 1, + ACTIONS(11319), 1, anon_sym_DQUOTE, - STATE(6494), 1, + STATE(6918), 1, sym_comment, - STATE(6496), 1, + STATE(6920), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218297] = 3, - ACTIONS(251), 1, + [235775] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6495), 1, + STATE(6919), 1, sym_comment, - ACTIONS(10493), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [218310] = 5, + ACTIONS(8519), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8521), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [235790] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10495), 1, + ACTIONS(11321), 1, anon_sym_DQUOTE, - STATE(6496), 1, + STATE(6920), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218327] = 3, + [235807] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6497), 1, + STATE(6921), 1, sym_comment, - ACTIONS(10345), 4, + ACTIONS(11323), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218340] = 3, + [235820] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6498), 1, + STATE(6922), 1, sym_comment, - ACTIONS(5686), 4, + ACTIONS(5820), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [218353] = 6, + [235833] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(1034), 1, + anon_sym_RBRACE, + ACTIONS(1036), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym__unquoted_in_record_token4, + STATE(6923), 1, + sym_comment, + [235852] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10497), 1, + ACTIONS(11325), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6499), 1, + STATE(6924), 1, sym_comment, - [218372] = 6, + [235871] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10499), 1, + ACTIONS(11327), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6500), 1, + STATE(6925), 1, sym_comment, - [218391] = 6, + [235890] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10501), 1, + ACTIONS(11329), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6501), 1, + STATE(6926), 1, sym_comment, - [218410] = 6, + [235909] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10503), 1, + ACTIONS(11331), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6502), 1, + STATE(6927), 1, sym_comment, - [218429] = 6, + [235928] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10505), 1, + ACTIONS(11333), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6503), 1, + STATE(6928), 1, sym_comment, - [218448] = 6, + [235947] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10507), 1, + ACTIONS(11335), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6504), 1, + STATE(6929), 1, sym_comment, - [218467] = 6, + [235966] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10509), 1, + ACTIONS(11337), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6505), 1, + STATE(6930), 1, sym_comment, - [218486] = 6, + [235985] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10511), 1, + ACTIONS(11339), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6506), 1, + STATE(6931), 1, sym_comment, - [218505] = 6, + [236004] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(4772), 1, - sym_block, - STATE(6507), 1, + ACTIONS(1818), 1, + aux_sym_unquoted_token2, + STATE(6932), 1, sym_comment, - STATE(6774), 1, - aux_sym_shebang_repeat1, - [218524] = 3, + ACTIONS(1820), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [236019] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6508), 1, + STATE(6933), 1, + sym_comment, + ACTIONS(11341), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236032] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11343), 1, + anon_sym_DQUOTE, + STATE(6934), 1, + sym_comment, + STATE(6936), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236049] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6935), 1, + sym_comment, + ACTIONS(8523), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8525), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [236064] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11345), 1, + anon_sym_DQUOTE, + STATE(6936), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236081] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11347), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(6937), 1, sym_comment, - ACTIONS(10513), 4, + [236100] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6938), 1, + sym_comment, + ACTIONS(11349), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218537] = 3, + [236113] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11351), 1, + anon_sym_DQUOTE, + STATE(6939), 1, + sym_comment, + STATE(6941), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236130] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6940), 1, + sym_comment, + ACTIONS(8531), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8533), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [236145] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11353), 1, + anon_sym_DQUOTE, + STATE(6941), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236162] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6509), 1, + STATE(6942), 1, sym_comment, - ACTIONS(10515), 4, + ACTIONS(5824), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218550] = 5, + anon_sym_LBRACE, + [236175] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6943), 1, + sym_comment, + ACTIONS(11355), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10517), 1, + ACTIONS(11357), 1, anon_sym_DQUOTE, - STATE(6510), 1, + STATE(6944), 1, sym_comment, - STATE(6512), 1, + STATE(6946), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236205] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6945), 1, + sym_comment, + ACTIONS(8539), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8541), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [236220] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11359), 1, + anon_sym_DQUOTE, + STATE(6946), 1, + sym_comment, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218567] = 6, + [236237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, + STATE(6947), 1, + sym_comment, + ACTIONS(1818), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1820), 2, anon_sym_LPAREN2, - ACTIONS(2221), 1, - anon_sym_RBRACE, - ACTIONS(2223), 1, sym__entry_separator, - STATE(6511), 1, + [236252] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6948), 1, sym_comment, - STATE(7875), 1, - sym__expr_parenthesized_immediate, - [218586] = 5, + ACTIONS(11361), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236265] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10519), 1, + ACTIONS(11363), 1, anon_sym_DQUOTE, - STATE(6512), 1, + STATE(6949), 1, sym_comment, - STATE(6665), 1, + STATE(6950), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218603] = 5, + [236282] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10521), 1, + ACTIONS(11365), 1, anon_sym_DQUOTE, - STATE(6513), 1, + STATE(6950), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218620] = 6, + [236299] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10523), 1, + ACTIONS(11367), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6514), 1, + STATE(6951), 1, + sym_comment, + [236318] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6952), 1, sym_comment, - [218639] = 6, + ACTIONS(11369), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236331] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10525), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6515), 1, + ACTIONS(11371), 1, + anon_sym_DQUOTE, + STATE(6953), 1, sym_comment, - [218658] = 6, + STATE(6954), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236348] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10527), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6516), 1, + ACTIONS(11373), 1, + anon_sym_DQUOTE, + STATE(6954), 1, sym_comment, - [218677] = 6, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236365] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10529), 1, + ACTIONS(2234), 1, anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6517), 1, + ACTIONS(2236), 1, + anon_sym_LPAREN2, + ACTIONS(2238), 1, + sym__entry_separator, + ACTIONS(2240), 1, + aux_sym__unquoted_in_list_token4, + STATE(6955), 1, + sym_comment, + [236384] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6956), 1, sym_comment, - [218696] = 6, + ACTIONS(11375), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10531), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6518), 1, + ACTIONS(11377), 1, + anon_sym_DQUOTE, + STATE(6957), 1, sym_comment, - [218715] = 6, + STATE(6958), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236414] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10533), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6519), 1, + ACTIONS(11379), 1, + anon_sym_DQUOTE, + STATE(6958), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236431] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6959), 1, + sym_comment, + ACTIONS(11381), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236444] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6960), 1, sym_comment, - [218734] = 6, + ACTIONS(11383), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10535), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6520), 1, + ACTIONS(11385), 1, + anon_sym_DQUOTE, + STATE(6961), 1, sym_comment, - [218753] = 6, + STATE(6962), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236474] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10537), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6521), 1, + ACTIONS(11387), 1, + anon_sym_DQUOTE, + STATE(6962), 1, sym_comment, - [218772] = 5, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236491] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10539), 1, - anon_sym_RPAREN, - STATE(6522), 1, + STATE(6963), 1, sym_comment, - STATE(6734), 1, - aux_sym__block_body_repeat1, - ACTIONS(10163), 2, + ACTIONS(11389), 4, sym__newline, anon_sym_SEMI, - [218789] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [236504] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6523), 1, + STATE(6964), 1, sym_comment, - ACTIONS(10541), 4, + ACTIONS(11391), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218802] = 3, + [236517] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11393), 1, + anon_sym_DQUOTE, + STATE(6965), 1, + sym_comment, + STATE(6966), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236534] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_DQUOTE, + STATE(6966), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236551] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6524), 1, + STATE(6967), 1, sym_comment, - ACTIONS(10345), 4, + ACTIONS(11397), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218815] = 5, + [236564] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6968), 1, + sym_comment, + ACTIONS(11399), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10543), 1, + ACTIONS(11401), 1, anon_sym_DQUOTE, - STATE(6525), 1, + STATE(6969), 1, sym_comment, - STATE(6526), 1, + STATE(6970), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218832] = 5, + [236594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10545), 1, + ACTIONS(11403), 1, anon_sym_DQUOTE, - STATE(6526), 1, + STATE(6970), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [218849] = 6, + [236611] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(5978), 1, - sym_parameter_parens, - STATE(5991), 1, - sym_parameter_bracks, - STATE(6527), 1, + STATE(6971), 1, sym_comment, - [218868] = 6, - ACTIONS(3), 1, + ACTIONS(11405), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [236624] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10547), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6528), 1, + STATE(6972), 1, sym_comment, - [218887] = 6, + ACTIONS(11407), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236637] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10549), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6529), 1, + ACTIONS(11409), 1, + anon_sym_DQUOTE, + STATE(6973), 1, sym_comment, - [218906] = 6, + STATE(6974), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10551), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6530), 1, + ACTIONS(11411), 1, + anon_sym_DQUOTE, + STATE(6974), 1, sym_comment, - [218925] = 6, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236671] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10553), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6531), 1, + ACTIONS(11413), 1, + anon_sym_DQUOTE, + STATE(6975), 1, + sym_comment, + STATE(7019), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236688] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6976), 1, sym_comment, - [218944] = 6, + ACTIONS(11415), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236701] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10555), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6532), 1, + ACTIONS(11417), 1, + anon_sym_DQUOTE, + STATE(6977), 1, sym_comment, - [218963] = 6, + STATE(6978), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236718] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10557), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6533), 1, + ACTIONS(11419), 1, + anon_sym_DQUOTE, + STATE(6978), 1, sym_comment, - [218982] = 6, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236735] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10559), 1, + ACTIONS(11421), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6534), 1, + STATE(6979), 1, + sym_comment, + [236754] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6980), 1, sym_comment, - [219001] = 6, + ACTIONS(11423), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236767] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10561), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6535), 1, + ACTIONS(11425), 1, + anon_sym_DQUOTE, + STATE(6981), 1, sym_comment, - [219020] = 6, + STATE(6982), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236784] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10563), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6536), 1, + ACTIONS(11427), 1, + anon_sym_DQUOTE, + STATE(6982), 1, sym_comment, - [219039] = 3, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236801] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6537), 1, + STATE(6983), 1, + sym_comment, + ACTIONS(11429), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [236814] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6984), 1, sym_comment, - ACTIONS(10565), 4, + ACTIONS(11431), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219052] = 5, + [236827] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10567), 1, + ACTIONS(11433), 1, anon_sym_DQUOTE, - STATE(6538), 1, + STATE(6985), 1, sym_comment, - STATE(6539), 1, + STATE(6986), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219069] = 5, + [236844] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10569), 1, + ACTIONS(11435), 1, anon_sym_DQUOTE, - STATE(6539), 1, + STATE(6986), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219086] = 6, + [236861] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10571), 1, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + ACTIONS(6084), 1, anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6540), 1, + ACTIONS(6090), 1, + sym__entry_separator, + STATE(6987), 1, sym_comment, - [219105] = 6, - ACTIONS(3), 1, + STATE(8043), 1, + sym__expr_parenthesized_immediate, + [236880] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10573), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6541), 1, + STATE(6988), 1, sym_comment, - [219124] = 6, + ACTIONS(11437), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10575), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6542), 1, + ACTIONS(11439), 1, + anon_sym_DQUOTE, + STATE(6989), 1, sym_comment, - [219143] = 6, + STATE(6990), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236910] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6543), 1, + ACTIONS(11441), 1, + anon_sym_DQUOTE, + STATE(6990), 1, sym_comment, - [219162] = 6, - ACTIONS(3), 1, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236927] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10579), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6544), 1, + STATE(6991), 1, sym_comment, - [219181] = 6, - ACTIONS(3), 1, + ACTIONS(11443), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236940] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10581), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6545), 1, + STATE(6992), 1, sym_comment, - [219200] = 6, + ACTIONS(11445), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [236953] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10583), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6546), 1, + ACTIONS(11447), 1, + anon_sym_DQUOTE, + STATE(6993), 1, sym_comment, - [219219] = 6, + STATE(6994), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236970] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10585), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6547), 1, + ACTIONS(11449), 1, + anon_sym_DQUOTE, + STATE(6994), 1, sym_comment, - [219238] = 6, - ACTIONS(3), 1, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [236987] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10887), 1, anon_sym_LBRACK, - ACTIONS(10587), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6548), 1, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(3325), 1, + sym_parameter_bracks, + STATE(3327), 1, + sym_parameter_parens, + STATE(6995), 1, sym_comment, - [219257] = 3, + [237006] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6549), 1, + STATE(6996), 1, sym_comment, - ACTIONS(10589), 4, + ACTIONS(11451), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219270] = 5, + [237019] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10591), 1, + ACTIONS(11453), 1, anon_sym_DQUOTE, - STATE(6550), 1, + STATE(6997), 1, sym_comment, - STATE(6551), 1, + STATE(6998), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219287] = 5, + [237036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10593), 1, + ACTIONS(11455), 1, anon_sym_DQUOTE, - STATE(6551), 1, + STATE(6998), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219304] = 6, - ACTIONS(3), 1, + [237053] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10595), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6552), 1, + STATE(6999), 1, + sym_comment, + ACTIONS(11457), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [237066] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7000), 1, sym_comment, - [219323] = 6, + ACTIONS(11459), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [237079] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10597), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6553), 1, + ACTIONS(11461), 1, + anon_sym_DQUOTE, + STATE(7001), 1, sym_comment, - [219342] = 6, + STATE(7002), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237096] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6554), 1, + ACTIONS(11463), 1, + anon_sym_DQUOTE, + STATE(7002), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237113] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7003), 1, + sym_comment, + ACTIONS(11465), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [237126] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7004), 1, sym_comment, - [219361] = 6, + ACTIONS(11467), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [237139] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10601), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6555), 1, + ACTIONS(11469), 1, + anon_sym_DQUOTE, + STATE(7005), 1, sym_comment, - [219380] = 6, + STATE(7006), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237156] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10603), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6556), 1, + ACTIONS(11471), 1, + anon_sym_DQUOTE, + STATE(7006), 1, + sym_comment, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237173] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7007), 1, + sym_comment, + ACTIONS(11473), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [237186] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7008), 1, sym_comment, - [219399] = 6, + ACTIONS(11475), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [237199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10605), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6557), 1, + ACTIONS(11477), 1, + anon_sym_DQUOTE, + STATE(7009), 1, sym_comment, - [219418] = 6, + STATE(7010), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237216] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10607), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6558), 1, + ACTIONS(11479), 1, + anon_sym_DQUOTE, + STATE(7010), 1, sym_comment, - [219437] = 6, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237233] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10609), 1, + ACTIONS(11481), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6559), 1, + STATE(7011), 1, sym_comment, - [219456] = 3, + [237252] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6560), 1, + STATE(7012), 1, sym_comment, - ACTIONS(10611), 4, + ACTIONS(11483), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219469] = 5, + [237265] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10613), 1, + ACTIONS(11485), 1, anon_sym_DQUOTE, - STATE(6561), 1, + STATE(7013), 1, sym_comment, - STATE(6562), 1, + STATE(7014), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219486] = 5, + [237282] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10615), 1, + ACTIONS(11487), 1, anon_sym_DQUOTE, - STATE(6562), 1, + STATE(7014), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219503] = 3, + [237299] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1034), 1, + anon_sym_RBRACK, + ACTIONS(1036), 1, + sym__entry_separator, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + aux_sym__unquoted_in_list_token4, + STATE(7015), 1, + sym_comment, + [237318] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6563), 1, + STATE(7016), 1, sym_comment, - ACTIONS(10617), 4, + ACTIONS(11489), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219516] = 5, + [237331] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10619), 1, + ACTIONS(11491), 1, anon_sym_DQUOTE, - STATE(6564), 1, + STATE(7017), 1, sym_comment, - STATE(6566), 1, + STATE(7018), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219533] = 3, - ACTIONS(251), 1, + [237348] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6565), 1, + ACTIONS(11493), 1, + anon_sym_DQUOTE, + STATE(7018), 1, sym_comment, - ACTIONS(10621), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219546] = 5, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237365] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10623), 1, + ACTIONS(11495), 1, anon_sym_DQUOTE, - STATE(6566), 1, + STATE(7019), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219563] = 3, + [237382] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6567), 1, + STATE(7020), 1, sym_comment, - ACTIONS(10625), 4, + ACTIONS(11497), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219576] = 5, + [237395] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10627), 1, + ACTIONS(11499), 1, anon_sym_DQUOTE, - STATE(6568), 1, + STATE(7021), 1, sym_comment, - STATE(6569), 1, + STATE(7022), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219593] = 5, + [237412] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10629), 1, + ACTIONS(11501), 1, anon_sym_DQUOTE, - STATE(6569), 1, + STATE(7022), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219610] = 3, + [237429] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11503), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7023), 1, + sym_comment, + [237448] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6570), 1, + STATE(7024), 1, sym_comment, - ACTIONS(10631), 4, + ACTIONS(11505), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219623] = 5, + [237461] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10633), 1, + ACTIONS(11507), 1, anon_sym_DQUOTE, - STATE(6571), 1, + STATE(7025), 1, sym_comment, - STATE(6572), 1, + STATE(7310), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219640] = 5, + [237478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10635), 1, - anon_sym_DQUOTE, - STATE(6572), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11509), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7026), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219657] = 3, + [237497] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6573), 1, + STATE(7027), 1, sym_comment, - ACTIONS(10637), 4, + ACTIONS(11511), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219670] = 5, + [237510] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10639), 1, + ACTIONS(11513), 1, anon_sym_DQUOTE, - STATE(6574), 1, + STATE(7028), 1, sym_comment, - STATE(6575), 1, + STATE(7029), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219687] = 5, + [237527] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10641), 1, + ACTIONS(11515), 1, anon_sym_DQUOTE, - STATE(6575), 1, + STATE(7029), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219704] = 3, + [237544] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6576), 1, + STATE(7030), 1, sym_comment, - ACTIONS(10643), 4, + ACTIONS(11517), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219717] = 5, + [237557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10645), 1, + ACTIONS(11519), 1, anon_sym_DQUOTE, - STATE(6577), 1, + STATE(7031), 1, sym_comment, - STATE(6578), 1, + STATE(7032), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219734] = 5, + [237574] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10647), 1, + ACTIONS(11521), 1, anon_sym_DQUOTE, - STATE(6578), 1, + STATE(7032), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219751] = 3, + [237591] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6579), 1, + STATE(7033), 1, sym_comment, - ACTIONS(10649), 4, + ACTIONS(11523), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219764] = 5, + [237604] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10651), 1, + ACTIONS(11525), 1, anon_sym_DQUOTE, - STATE(6580), 1, + STATE(7034), 1, sym_comment, - STATE(6581), 1, + STATE(7035), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219781] = 5, + [237621] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10653), 1, + ACTIONS(11527), 1, anon_sym_DQUOTE, - STATE(6581), 1, + STATE(7035), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219798] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6582), 1, - sym_comment, - ACTIONS(10655), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219811] = 3, + [237638] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6583), 1, + STATE(7036), 1, sym_comment, - ACTIONS(10657), 4, + ACTIONS(11529), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219824] = 5, + [237651] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10659), 1, + ACTIONS(11531), 1, anon_sym_DQUOTE, - STATE(6584), 1, + STATE(7037), 1, sym_comment, - STATE(6585), 1, + STATE(7038), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219841] = 5, + [237668] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10661), 1, + ACTIONS(11533), 1, anon_sym_DQUOTE, - STATE(6585), 1, + STATE(7038), 1, sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219858] = 6, + [237685] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10663), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6586), 1, - sym_comment, - [219877] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6587), 1, + ACTIONS(11535), 1, + anon_sym_DQUOTE, + STATE(7039), 1, sym_comment, - ACTIONS(10665), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219890] = 5, + STATE(7040), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [237702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10667), 1, + ACTIONS(11537), 1, anon_sym_DQUOTE, - STATE(6588), 1, + STATE(7040), 1, sym_comment, - STATE(6589), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219907] = 5, + [237719] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10669), 1, + ACTIONS(11539), 1, anon_sym_DQUOTE, - STATE(6589), 1, + STATE(7041), 1, sym_comment, - STATE(6665), 1, + STATE(7042), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219924] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6590), 1, - sym_comment, - ACTIONS(10671), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219937] = 5, + [237736] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10673), 1, + ACTIONS(11541), 1, anon_sym_DQUOTE, - STATE(6591), 1, + STATE(7042), 1, sym_comment, - STATE(6592), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219954] = 5, + [237753] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10675), 1, + ACTIONS(11543), 1, anon_sym_DQUOTE, - STATE(6592), 1, + STATE(7043), 1, sym_comment, - STATE(6665), 1, + STATE(7044), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [219971] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6593), 1, - sym_comment, - ACTIONS(10677), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219984] = 5, + [237770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10679), 1, + ACTIONS(11545), 1, anon_sym_DQUOTE, - STATE(6594), 1, + STATE(7044), 1, sym_comment, - STATE(6595), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [220001] = 5, + [237787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10681), 1, + ACTIONS(11547), 1, anon_sym_DQUOTE, - STATE(6595), 1, + STATE(7045), 1, sym_comment, - STATE(6665), 1, + STATE(7069), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [220018] = 3, + [237804] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6596), 1, + STATE(7046), 1, sym_comment, - ACTIONS(10683), 4, + ACTIONS(11549), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220031] = 5, + [237817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10685), 1, - anon_sym_DQUOTE, - STATE(6597), 1, + STATE(7047), 1, sym_comment, - STATE(6598), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220048] = 5, - ACTIONS(3), 1, + ACTIONS(8543), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8545), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [237832] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10687), 1, - anon_sym_DQUOTE, - STATE(6598), 1, + STATE(7048), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220065] = 6, + ACTIONS(11551), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [237845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10689), 1, + ACTIONS(11553), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6599), 1, + STATE(7049), 1, sym_comment, - [220084] = 3, + [237864] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6600), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4906), 1, + sym_block, + STATE(7050), 1, + sym_comment, + [237883] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_parameter_parens, + STATE(3331), 1, + sym_parameter_bracks, + STATE(7051), 1, + sym_comment, + [237902] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + anon_sym_RBRACK, + ACTIONS(1842), 1, + anon_sym_LPAREN2, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + STATE(7052), 1, + sym_comment, + [237921] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10897), 1, + anon_sym_DOT_DOT2, + ACTIONS(11555), 1, + anon_sym_LBRACE, + STATE(7053), 1, + sym_comment, + ACTIONS(10899), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [237938] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11557), 1, + anon_sym_COLON, + ACTIONS(11559), 1, + anon_sym_GT2, + STATE(5817), 1, + aux_sym__multiple_types_repeat1, + STATE(7054), 1, sym_comment, - ACTIONS(10691), 4, + [237957] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5010), 1, + anon_sym_DOLLAR, + ACTIONS(5012), 1, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220097] = 5, + ACTIONS(11561), 1, + sym_long_flag_identifier, + ACTIONS(11563), 1, + anon_sym_EQ2, + STATE(7055), 1, + sym_comment, + [237976] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7056), 1, + sym_comment, + ACTIONS(11565), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [237989] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10693), 1, - anon_sym_DQUOTE, - STATE(6601), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + ACTIONS(6099), 1, + anon_sym_PIPE, + STATE(7057), 1, sym_comment, - STATE(6602), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220114] = 5, + ACTIONS(6094), 2, + anon_sym_if, + anon_sym_EQ_GT, + [238006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10695), 1, - anon_sym_DQUOTE, - STATE(6602), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11567), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7058), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220131] = 3, + [238025] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6603), 1, + STATE(7059), 1, sym_comment, - ACTIONS(10697), 4, + ACTIONS(11457), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220144] = 3, + [238038] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1581), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1830), 1, + anon_sym_RBRACE, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, + sym__entry_separator, + STATE(7060), 1, + sym_comment, + [238057] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11569), 1, + anon_sym_COLON, + ACTIONS(11571), 1, + anon_sym_GT2, + STATE(5818), 1, + aux_sym__multiple_types_repeat1, + STATE(7061), 1, + sym_comment, + [238076] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6604), 1, + STATE(7062), 1, sym_comment, - ACTIONS(10699), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220157] = 5, + ACTIONS(11573), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238089] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10701), 1, - anon_sym_DQUOTE, - STATE(6605), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11575), 1, + anon_sym_COLON, + ACTIONS(11577), 1, + anon_sym_GT2, + STATE(5832), 1, + aux_sym__multiple_types_repeat1, + STATE(7063), 1, sym_comment, - STATE(6606), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220174] = 5, + [238108] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7064), 1, + sym_comment, + ACTIONS(11579), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10703), 1, - anon_sym_DQUOTE, - STATE(6606), 1, + ACTIONS(1024), 1, + anon_sym_DOT, + STATE(7065), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220191] = 3, + ACTIONS(1022), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [238136] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6607), 1, + STATE(7066), 1, sym_comment, - ACTIONS(10705), 4, + ACTIONS(11579), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220204] = 3, + [238149] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6608), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(7067), 1, sym_comment, - ACTIONS(10707), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220217] = 5, + ACTIONS(2294), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [238164] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7068), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10709), 1, + ACTIONS(11583), 1, anon_sym_DQUOTE, - STATE(6609), 1, + STATE(7069), 1, sym_comment, - STATE(6610), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [220234] = 5, + [238194] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7070), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238207] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7071), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238220] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7072), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238233] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7073), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238246] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7074), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238259] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10711), 1, - anon_sym_DQUOTE, - STATE(6610), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11585), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7075), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220251] = 3, + [238278] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6611), 1, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_parameter_parens, + STATE(3333), 1, + sym_parameter_bracks, + STATE(7076), 1, sym_comment, - ACTIONS(10713), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220264] = 5, + [238297] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(3334), 1, + sym_parameter_parens, + STATE(3335), 1, + sym_parameter_bracks, + STATE(7077), 1, + sym_comment, + [238316] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7078), 1, + sym_comment, + ACTIONS(11587), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238329] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10715), 1, - anon_sym_DQUOTE, - STATE(6612), 1, + STATE(7079), 1, sym_comment, - STATE(6613), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220281] = 5, + ACTIONS(8527), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8529), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238344] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(7080), 1, + sym_comment, + ACTIONS(1848), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [238359] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7081), 1, + sym_comment, + ACTIONS(11589), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238372] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7082), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238385] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7083), 1, + sym_comment, + ACTIONS(11581), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238398] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7084), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10717), 1, + ACTIONS(11593), 1, anon_sym_DQUOTE, - STATE(6613), 1, + STATE(7085), 1, sym_comment, - STATE(6665), 1, + STATE(7292), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [220298] = 3, + [238428] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6614), 1, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_LPAREN, + STATE(3336), 1, + sym_parameter_parens, + STATE(3337), 1, + sym_parameter_bracks, + STATE(7086), 1, sym_comment, - ACTIONS(10719), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220311] = 5, + [238447] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10721), 1, - anon_sym_DQUOTE, - STATE(6615), 1, + STATE(7087), 1, sym_comment, - STATE(6616), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220328] = 5, + ACTIONS(8535), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8537), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238462] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7088), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238475] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7089), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10723), 1, - anon_sym_DQUOTE, - STATE(6616), 1, + ACTIONS(2226), 1, + anon_sym_RBRACE, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + sym__entry_separator, + ACTIONS(2232), 1, + aux_sym__unquoted_in_record_token2, + STATE(7090), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220345] = 3, + [238507] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6617), 1, + STATE(7091), 1, sym_comment, - ACTIONS(10725), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220358] = 5, + ACTIONS(5840), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [238520] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7092), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238533] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7093), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238546] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7094), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238559] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7095), 1, + sym_comment, + ACTIONS(11595), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238572] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7096), 1, + sym_comment, + ACTIONS(11595), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238585] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7097), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238598] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7098), 1, + sym_comment, + ACTIONS(11591), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238611] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7099), 1, + sym_comment, + ACTIONS(11595), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238624] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7100), 1, + sym_comment, + ACTIONS(11595), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [238637] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10727), 1, - anon_sym_DQUOTE, - STATE(6618), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11597), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7101), 1, sym_comment, - STATE(6619), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220375] = 5, + [238656] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10729), 1, - anon_sym_DQUOTE, - STATE(6619), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11599), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7102), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220392] = 3, - ACTIONS(251), 1, + [238675] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6620), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2197), 1, + anon_sym_RBRACE, + ACTIONS(2199), 1, + sym__entry_separator, + STATE(7103), 1, sym_comment, - ACTIONS(10731), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220405] = 5, + STATE(8196), 1, + sym__expr_parenthesized_immediate, + [238694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10733), 1, - anon_sym_DQUOTE, - STATE(6621), 1, + STATE(7104), 1, sym_comment, - STATE(6622), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220422] = 5, + ACTIONS(8549), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8551), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10735), 1, - anon_sym_DQUOTE, - STATE(6622), 1, + STATE(7105), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220439] = 3, - ACTIONS(251), 1, + ACTIONS(8553), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8555), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238724] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6623), 1, + STATE(7106), 1, sym_comment, - ACTIONS(10737), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220452] = 5, + ACTIONS(8557), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8559), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10739), 1, - anon_sym_DQUOTE, - STATE(6624), 1, + STATE(7107), 1, sym_comment, - STATE(6625), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220469] = 5, + ACTIONS(8561), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8563), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10741), 1, - anon_sym_DQUOTE, - STATE(6625), 1, + STATE(7108), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220486] = 3, - ACTIONS(251), 1, + ACTIONS(8565), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8567), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238769] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6626), 1, + STATE(7109), 1, sym_comment, - ACTIONS(10743), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220499] = 5, + ACTIONS(8571), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8573), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238784] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10745), 1, - anon_sym_DQUOTE, - STATE(6627), 1, + STATE(7110), 1, sym_comment, - STATE(6628), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220516] = 5, + ACTIONS(8575), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8577), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10747), 1, - anon_sym_DQUOTE, - STATE(6628), 1, + STATE(7111), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220533] = 3, - ACTIONS(251), 1, + ACTIONS(8579), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8581), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [238814] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6629), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2284), 1, + anon_sym_RBRACE, + ACTIONS(2286), 1, + sym__entry_separator, + STATE(7112), 1, sym_comment, - ACTIONS(10749), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220546] = 5, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + [238833] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10751), 1, - anon_sym_DQUOTE, - STATE(6630), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2288), 1, + anon_sym_RBRACE, + ACTIONS(2290), 1, + sym__entry_separator, + STATE(7113), 1, sym_comment, - STATE(6631), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220563] = 5, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + [238852] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10753), 1, - anon_sym_DQUOTE, - STATE(6631), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11601), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7114), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220580] = 3, - ACTIONS(251), 1, + [238871] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6632), 1, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + ACTIONS(11603), 1, + anon_sym_RBRACK, + ACTIONS(11605), 1, + sym__entry_separator, + STATE(7115), 1, sym_comment, - ACTIONS(10755), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220593] = 5, + STATE(8421), 1, + sym__expr_parenthesized_immediate, + [238890] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10757), 1, - anon_sym_DQUOTE, - STATE(6633), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11607), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7116), 1, sym_comment, - STATE(6634), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220610] = 5, + [238909] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10759), 1, - anon_sym_DQUOTE, - STATE(6634), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11609), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7117), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + [238928] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11611), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7118), 1, + sym_comment, + [238947] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11613), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7119), 1, + sym_comment, + [238966] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11615), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7120), 1, + sym_comment, + [238985] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7121), 1, + sym_comment, + ACTIONS(1779), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1781), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [239000] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11617), 1, + anon_sym_COLON, + ACTIONS(11619), 1, + anon_sym_GT2, + STATE(5855), 1, + aux_sym__multiple_types_repeat1, + STATE(7122), 1, + sym_comment, + [239019] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7123), 1, + sym_comment, + ACTIONS(11621), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239032] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7124), 1, + sym_comment, + ACTIONS(11623), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239045] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7125), 1, + sym_comment, + ACTIONS(6525), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [239058] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7126), 1, + sym_comment, + ACTIONS(6571), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [239071] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11625), 1, + anon_sym_DQUOTE, + ACTIONS(11627), 2, sym__escaped_str_content, sym_escape_sequence, - [220627] = 3, + STATE(7127), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [239086] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6635), 1, + STATE(7128), 1, sym_comment, - ACTIONS(10761), 4, + ACTIONS(11630), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220640] = 5, + [239099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10763), 1, + ACTIONS(11632), 1, anon_sym_DQUOTE, - STATE(6636), 1, + STATE(7129), 1, sym_comment, - STATE(6637), 1, + STATE(7147), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [220657] = 5, - ACTIONS(3), 1, + [239116] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10765), 1, - anon_sym_DQUOTE, - STATE(6637), 1, + ACTIONS(1687), 1, + anon_sym_DASH2, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + STATE(7130), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220674] = 3, + ACTIONS(1699), 2, + sym_identifier, + anon_sym_DASH_DASH, + [239133] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6638), 1, + STATE(7131), 1, + sym_comment, + ACTIONS(11634), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239146] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11636), 1, + anon_sym_COLON, + ACTIONS(11638), 1, + anon_sym_GT2, + STATE(5900), 1, + aux_sym__multiple_types_repeat1, + STATE(7132), 1, sym_comment, - ACTIONS(10767), 4, + [239165] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(7133), 1, + sym_comment, + ACTIONS(2254), 3, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220687] = 5, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [239180] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10769), 1, - anon_sym_DQUOTE, - STATE(6639), 1, + ACTIONS(1581), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1830), 1, + anon_sym_RBRACK, + ACTIONS(1832), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, + sym__entry_separator, + STATE(7134), 1, sym_comment, - STATE(6640), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220704] = 5, + [239199] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10771), 1, - anon_sym_DQUOTE, - STATE(6640), 1, + STATE(7135), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220721] = 3, + ACTIONS(1779), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1781), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [239214] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6641), 1, + ACTIONS(11640), 1, + anon_sym_RBRACK, + STATE(5530), 1, + aux_sym_parameter_repeat2, + STATE(7136), 1, sym_comment, - ACTIONS(10773), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220734] = 5, + ACTIONS(2571), 2, + sym__newline, + anon_sym_COMMA, + [239231] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10775), 1, - anon_sym_DQUOTE, - STATE(6642), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11642), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7137), 1, sym_comment, - STATE(6643), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220751] = 5, + [239250] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7138), 1, + sym_comment, + ACTIONS(11457), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10777), 1, - anon_sym_DQUOTE, - STATE(6643), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(7139), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220768] = 3, + ACTIONS(2272), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [239278] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6644), 1, + STATE(7140), 1, sym_comment, - ACTIONS(10779), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220781] = 5, + ACTIONS(11621), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239291] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10781), 1, - anon_sym_DQUOTE, - STATE(6645), 1, + STATE(7141), 1, sym_comment, - STATE(6646), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220798] = 5, + ACTIONS(1018), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1020), 2, + anon_sym_DOT, + sym__entry_separator, + [239306] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10783), 1, - anon_sym_DQUOTE, - STATE(6646), 1, + STATE(7142), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220815] = 3, - ACTIONS(251), 1, + ACTIONS(1014), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1016), 2, + anon_sym_DOT, + sym__entry_separator, + [239321] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6647), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(7143), 1, sym_comment, - ACTIONS(10785), 4, + ACTIONS(2234), 3, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220828] = 5, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [239336] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10787), 1, - anon_sym_DQUOTE, - STATE(6648), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11644), 1, + anon_sym_COLON, + ACTIONS(11646), 1, + anon_sym_GT2, + STATE(5901), 1, + aux_sym__multiple_types_repeat1, + STATE(7144), 1, sym_comment, - STATE(6649), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220845] = 5, - ACTIONS(3), 1, + [239355] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10789), 1, - anon_sym_DQUOTE, - STATE(6649), 1, + STATE(7145), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220862] = 5, - ACTIONS(3), 1, + ACTIONS(11648), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239368] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10791), 1, - anon_sym_DQUOTE, - STATE(6650), 1, + STATE(7146), 1, sym_comment, - STATE(6651), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220879] = 5, + ACTIONS(11457), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239381] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10793), 1, + ACTIONS(11650), 1, anon_sym_DQUOTE, - STATE(6651), 1, - sym_comment, - STATE(6665), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, + STATE(7147), 1, + sym_comment, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [220896] = 5, - ACTIONS(3), 1, + [239398] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10795), 1, - anon_sym_DQUOTE, - STATE(6652), 1, + STATE(7148), 1, sym_comment, - STATE(6653), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220913] = 5, - ACTIONS(3), 1, + ACTIONS(6485), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [239411] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10797), 1, - anon_sym_DQUOTE, - STATE(6653), 1, + STATE(7149), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220930] = 5, + ACTIONS(11652), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239424] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10799), 1, - anon_sym_DQUOTE, - STATE(6654), 1, + STATE(7150), 1, sym_comment, - STATE(6655), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220947] = 5, - ACTIONS(3), 1, + ACTIONS(1771), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [239439] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10801), 1, - anon_sym_DQUOTE, - STATE(6655), 1, + STATE(7151), 1, sym_comment, - STATE(6665), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10113), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220964] = 3, + ACTIONS(11654), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239452] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6656), 1, + STATE(7152), 1, sym_comment, - ACTIONS(10803), 4, + ACTIONS(11621), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220977] = 3, + [239465] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6657), 1, + STATE(7153), 1, sym_comment, - ACTIONS(10805), 4, + ACTIONS(11656), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220990] = 3, + [239478] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6658), 1, + STATE(7154), 1, + sym_comment, + ACTIONS(11658), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [239491] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7155), 1, sym_comment, - ACTIONS(10807), 4, + ACTIONS(11621), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221003] = 3, + [239504] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6659), 1, + STATE(7156), 1, sym_comment, - ACTIONS(10809), 4, + ACTIONS(11621), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221016] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - ACTIONS(2270), 1, - anon_sym_RBRACE, - ACTIONS(2272), 1, - sym__entry_separator, - STATE(6660), 1, - sym_comment, - STATE(7875), 1, - sym__expr_parenthesized_immediate, - [221035] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(3171), 1, - sym_parameter_parens, - STATE(3182), 1, - sym_parameter_bracks, - STATE(6661), 1, - sym_comment, - [221054] = 3, + [239517] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6662), 1, + STATE(7157), 1, sym_comment, - ACTIONS(10811), 4, + ACTIONS(11621), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221067] = 3, + [239530] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6663), 1, + STATE(7158), 1, sym_comment, - ACTIONS(10813), 4, + ACTIONS(11621), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221080] = 5, - ACTIONS(251), 1, + [239543] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6679), 1, - anon_sym_DOT_DOT2, - ACTIONS(10815), 1, - anon_sym_LBRACE, - STATE(6664), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11660), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7159), 1, sym_comment, - ACTIONS(6634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221097] = 4, - ACTIONS(3), 1, + [239562] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10817), 1, - anon_sym_DQUOTE, - ACTIONS(10819), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6665), 2, + STATE(7160), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [221112] = 4, + ACTIONS(11621), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [239575] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6666), 1, + STATE(7161), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1787), 2, - anon_sym_LPAREN2, + ACTIONS(8593), 2, + anon_sym_AT, sym__entry_separator, - [221127] = 3, + ACTIONS(8595), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [239590] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6667), 1, + STATE(7162), 1, sym_comment, - ACTIONS(10822), 4, + ACTIONS(11662), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221140] = 6, + [239603] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9648), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(4897), 1, - sym__blosure, - STATE(4904), 1, + STATE(4911), 1, sym_block, - STATE(4906), 1, - sym_val_closure, - STATE(6668), 1, + STATE(7163), 1, sym_comment, - [221159] = 3, + STATE(7290), 1, + aux_sym_shebang_repeat1, + [239622] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6669), 1, + STATE(7164), 1, sym_comment, - ACTIONS(10824), 4, + ACTIONS(6487), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221172] = 3, + anon_sym_LBRACE, + [239635] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6670), 1, - sym_comment, - ACTIONS(10822), 4, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221185] = 3, + ACTIONS(11664), 1, + anon_sym_LBRACK, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(7165), 1, + sym_comment, + STATE(8678), 1, + sym_val_list, + [239654] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6671), 1, + STATE(7166), 1, sym_comment, - ACTIONS(10826), 4, + ACTIONS(11666), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221198] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4930), 1, - sym__space, - ACTIONS(4932), 1, - sym__newline, - ACTIONS(10828), 1, - anon_sym_EQ2, - ACTIONS(10830), 1, - sym_short_flag_identifier, - STATE(6672), 1, - sym_comment, - [221217] = 4, + [239667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6673), 1, + STATE(7167), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(1799), 2, anon_sym_RBRACE, aux_sym__unquoted_in_record_token2, - ACTIONS(1795), 2, + ACTIONS(1801), 2, anon_sym_LPAREN2, sym__entry_separator, - [221232] = 6, + [239682] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, + ACTIONS(10887), 1, anon_sym_LBRACK, - ACTIONS(10373), 1, + ACTIONS(10889), 1, anon_sym_LPAREN, - STATE(3173), 1, - sym_parameter_bracks, - STATE(3181), 1, + STATE(3319), 1, sym_parameter_parens, - STATE(6674), 1, + STATE(3329), 1, + sym_parameter_bracks, + STATE(7168), 1, sym_comment, - [221251] = 6, - ACTIONS(251), 1, + [239701] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10832), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10834), 1, - anon_sym_LPAREN, - STATE(6101), 1, - sym_parameter_parens, - STATE(6102), 1, - sym_parameter_bracks, - STATE(6675), 1, + ACTIONS(11668), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7169), 1, sym_comment, - [221270] = 6, + [239720] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(10679), 1, + aux_sym__immediate_decimal_token2, + STATE(7170), 1, + sym_comment, + ACTIONS(1781), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [239737] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(3176), 1, - sym_parameter_bracks, - STATE(3187), 1, - sym_parameter_parens, - STATE(6676), 1, + ACTIONS(11670), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7171), 1, + sym_comment, + [239756] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + STATE(6079), 1, + aux_sym__multiple_types_repeat1, + STATE(7172), 1, + sym_comment, + STATE(8132), 1, + sym_param_cmd, + [239775] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(10627), 1, + anon_sym_AT, + STATE(6080), 1, + aux_sym__multiple_types_repeat1, + STATE(7173), 1, sym_comment, - [221289] = 6, + STATE(8069), 1, + sym_param_cmd, + [239794] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(3172), 1, - sym_parameter_parens, - STATE(3179), 1, - sym_parameter_bracks, - STATE(6677), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(11672), 1, + anon_sym_DOT_DOT2, + STATE(7174), 1, sym_comment, - [221308] = 6, + ACTIONS(11674), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [239811] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10832), 1, - anon_sym_LBRACK, - ACTIONS(10834), 1, - anon_sym_LPAREN, - STATE(6100), 1, - sym_parameter_parens, - STATE(6112), 1, - sym_parameter_bracks, - STATE(6678), 1, + ACTIONS(1415), 1, + anon_sym_RPAREN, + ACTIONS(11676), 2, + sym__newline, + anon_sym_SEMI, + STATE(7175), 2, sym_comment, - [221327] = 6, + aux_sym__block_body_repeat1, + [239826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + STATE(7176), 1, + sym_comment, + ACTIONS(1818), 2, anon_sym_RBRACE, - ACTIONS(2292), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1820), 2, anon_sym_LPAREN2, - ACTIONS(2294), 1, sym__entry_separator, - ACTIONS(2296), 1, - aux_sym__unquoted_in_record_token4, - STATE(6679), 1, - sym_comment, - [221346] = 4, + [239841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10836), 1, - anon_sym_LPAREN, - STATE(6680), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11679), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7177), 1, sym_comment, - ACTIONS(10838), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [221361] = 6, - ACTIONS(251), 1, + [239860] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(3180), 1, - sym_parameter_parens, - STATE(3185), 1, - sym_parameter_bracks, - STATE(6681), 1, + STATE(7178), 1, sym_comment, - [221380] = 6, + ACTIONS(8607), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8609), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [239875] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2298), 1, - anon_sym_RBRACE, - ACTIONS(2300), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(6682), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11681), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7179), 1, sym_comment, - [221399] = 4, + [239894] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6683), 1, - sym_comment, - ACTIONS(1801), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1803), 2, - anon_sym_LPAREN2, + ACTIONS(6760), 1, sym__entry_separator, - [221414] = 6, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11683), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7180), 1, + sym_comment, + [239913] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(4696), 1, + STATE(5027), 1, sym_block, - STATE(6684), 1, - sym_comment, - STATE(6739), 1, + STATE(7050), 1, aux_sym_shebang_repeat1, - [221433] = 4, + STATE(7181), 1, + sym_comment, + [239932] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6685), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11685), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7182), 1, sym_comment, - ACTIONS(1824), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1826), 2, + [239951] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11687), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7183), 1, + sym_comment, + [239970] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11689), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7184), 1, + sym_comment, + [239989] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2266), 1, + anon_sym_RBRACK, + ACTIONS(2268), 1, anon_sym_LPAREN2, + ACTIONS(2270), 1, sym__entry_separator, - [221448] = 5, - ACTIONS(251), 1, + STATE(7185), 1, + sym_comment, + [240008] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8994), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10840), 1, - anon_sym_DOT, - STATE(6686), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11691), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7186), 1, sym_comment, - ACTIONS(1787), 2, - sym__newline, - anon_sym_LBRACE, - [221465] = 3, + [240027] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6687), 1, + STATE(7187), 1, sym_comment, - ACTIONS(10842), 4, + ACTIONS(11693), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221478] = 5, - ACTIONS(251), 1, + [240040] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - ACTIONS(10105), 1, - aux_sym__immediate_decimal_token2, - STATE(6688), 1, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + ACTIONS(11695), 1, + anon_sym_RBRACK, + ACTIONS(11697), 1, + sym__entry_separator, + STATE(7188), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_LBRACE, + STATE(8421), 1, + sym__expr_parenthesized_immediate, + [240059] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5715), 1, anon_sym_LPAREN2, - [221495] = 3, - ACTIONS(251), 1, + ACTIONS(11699), 1, + anon_sym_RBRACK, + ACTIONS(11701), 1, + sym__entry_separator, + STATE(7189), 1, + sym_comment, + STATE(8421), 1, + sym__expr_parenthesized_immediate, + [240078] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6689), 1, + STATE(7190), 1, sym_comment, - ACTIONS(10844), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221508] = 5, + ACTIONS(8611), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8613), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240093] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11703), 1, + anon_sym_COLON, + ACTIONS(11705), 1, + anon_sym_GT2, + STATE(5844), 1, + aux_sym__multiple_types_repeat1, + STATE(7191), 1, + sym_comment, + [240112] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7192), 1, + sym_comment, + ACTIONS(8617), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8619), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240127] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11707), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7193), 1, + sym_comment, + [240146] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7194), 1, + sym_comment, + ACTIONS(8621), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8623), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240161] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7195), 1, + sym_comment, + ACTIONS(8625), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8627), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240176] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, + ACTIONS(5114), 1, anon_sym_DASH2, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - STATE(6690), 1, + ACTIONS(11709), 1, + anon_sym_EQ2, + STATE(7196), 1, sym_comment, - ACTIONS(1707), 2, + ACTIONS(5112), 2, sym_identifier, anon_sym_DASH_DASH, - [221525] = 3, - ACTIONS(251), 1, + [240193] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6691), 1, + STATE(7197), 1, sym_comment, - ACTIONS(6359), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [221538] = 3, + ACTIONS(8629), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8631), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240208] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7198), 1, + sym_comment, + ACTIONS(8633), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8635), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240223] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6692), 1, + STATE(7199), 1, sym_comment, - ACTIONS(10846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221551] = 3, + ACTIONS(11711), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [240236] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6693), 1, + STATE(7200), 1, sym_comment, - ACTIONS(10846), 4, + ACTIONS(11693), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221564] = 4, - ACTIONS(3), 1, + [240249] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6694), 1, + ACTIONS(5132), 1, + anon_sym_DASH2, + ACTIONS(11713), 1, + anon_sym_EQ2, + STATE(7201), 1, sym_comment, - ACTIONS(1022), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1024), 2, - anon_sym_DOT, - sym__entry_separator, - [221579] = 4, + ACTIONS(5130), 2, + sym_identifier, + anon_sym_DASH_DASH, + [240266] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(1779), 1, aux_sym_unquoted_token2, - STATE(6695), 1, + ACTIONS(1781), 1, + anon_sym_LBRACE, + ACTIONS(11715), 1, + anon_sym_DOT, + ACTIONS(11717), 1, + aux_sym__immediate_decimal_token2, + STATE(7202), 1, sym_comment, - ACTIONS(1851), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221594] = 4, + [240285] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6696), 1, + STATE(7203), 1, sym_comment, - ACTIONS(1785), 2, + ACTIONS(8641), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8643), 2, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1787), 2, - anon_sym_LPAREN2, + anon_sym_GT2, + [240300] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7204), 1, + sym_comment, + ACTIONS(8645), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8647), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240315] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7205), 1, + sym_comment, + ACTIONS(8665), 2, + anon_sym_AT, sym__entry_separator, - [221609] = 3, + ACTIONS(8667), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240330] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11719), 1, + anon_sym_DQUOTE, + STATE(7206), 1, + sym_comment, + STATE(7222), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [240347] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6697), 1, + STATE(7207), 1, sym_comment, - ACTIONS(10846), 4, + ACTIONS(10951), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221622] = 4, + [240360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10848), 1, - anon_sym_LPAREN, - STATE(6698), 1, + STATE(7208), 1, sym_comment, - ACTIONS(10850), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [221637] = 5, - ACTIONS(251), 1, + ACTIONS(8669), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8671), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240375] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(621), 1, - ts_builtin_sym_end, - STATE(254), 1, - aux_sym__block_body_repeat1, - STATE(6699), 1, + STATE(7209), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [221654] = 4, + ACTIONS(8673), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8675), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240390] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6700), 1, + STATE(7210), 1, sym_comment, - ACTIONS(1018), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1020), 2, - anon_sym_DOT, + ACTIONS(8677), 2, + anon_sym_AT, sym__entry_separator, - [221669] = 3, + ACTIONS(8679), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240405] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6701), 1, + STATE(7211), 1, sym_comment, - ACTIONS(10345), 4, + ACTIONS(10951), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221682] = 6, + [240418] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(4923), 1, + sym_block, + STATE(7212), 1, + sym_comment, + [240437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + STATE(7213), 1, + sym_comment, + ACTIONS(8691), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10852), 1, + ACTIONS(8693), 2, anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6702), 1, + anon_sym_GT2, + [240452] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7214), 1, + sym_comment, + ACTIONS(8699), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8701), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240467] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7215), 1, sym_comment, - [221701] = 6, + ACTIONS(8703), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8705), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240482] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(1842), 1, anon_sym_LPAREN2, - ACTIONS(2106), 1, - anon_sym_RBRACE, - ACTIONS(2112), 1, + ACTIONS(1850), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2292), 1, + anon_sym_RBRACK, + ACTIONS(2294), 1, sym__entry_separator, - STATE(6703), 1, + STATE(7216), 1, sym_comment, - STATE(7637), 1, - sym__expr_parenthesized_immediate, - [221720] = 3, + [240501] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6704), 1, + STATE(7217), 1, sym_comment, - ACTIONS(10846), 4, + ACTIONS(11721), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221733] = 3, - ACTIONS(251), 1, + [240514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6705), 1, + STATE(7218), 1, sym_comment, - ACTIONS(10345), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221746] = 3, - ACTIONS(251), 1, + ACTIONS(8717), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8719), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240529] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6706), 1, + STATE(7219), 1, sym_comment, - ACTIONS(10846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221759] = 3, - ACTIONS(251), 1, + ACTIONS(8721), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8723), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6707), 1, + STATE(7220), 1, sym_comment, - ACTIONS(10846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221772] = 3, + ACTIONS(8725), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8727), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240559] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6708), 1, + STATE(7221), 1, sym_comment, - ACTIONS(10854), 4, + ACTIONS(11723), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221785] = 3, - ACTIONS(251), 1, + [240572] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6709), 1, + ACTIONS(11725), 1, + anon_sym_DQUOTE, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + STATE(7222), 1, sym_comment, - ACTIONS(10856), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221798] = 3, - ACTIONS(251), 1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [240589] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6710), 1, + STATE(7223), 1, sym_comment, - ACTIONS(10858), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [221811] = 3, - ACTIONS(251), 1, + ACTIONS(8729), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8731), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240604] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6711), 1, + STATE(7224), 1, sym_comment, - ACTIONS(10860), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [221824] = 3, - ACTIONS(251), 1, + ACTIONS(8733), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8735), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240619] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6712), 1, + STATE(7225), 1, sym_comment, - ACTIONS(10862), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221837] = 3, - ACTIONS(251), 1, + ACTIONS(8737), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8739), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240634] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6713), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11727), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7226), 1, sym_comment, - ACTIONS(10864), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221850] = 3, + [240653] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11729), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7227), 1, + sym_comment, + [240672] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7228), 1, + sym_comment, + ACTIONS(8758), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8760), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240687] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7229), 1, + sym_comment, + ACTIONS(8773), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8775), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240702] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7230), 1, + sym_comment, + ACTIONS(8777), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8779), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240717] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6714), 1, + STATE(7231), 1, sym_comment, - ACTIONS(10866), 4, + ACTIONS(11731), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221863] = 3, + [240730] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6715), 1, + STATE(7232), 1, sym_comment, - ACTIONS(10866), 4, + ACTIONS(11733), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221876] = 5, + [240743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(6716), 1, + STATE(7233), 1, sym_comment, - ACTIONS(2282), 2, - anon_sym_if, - anon_sym_EQ_GT, - [221893] = 6, + ACTIONS(8781), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8783), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_RBRACE, - ACTIONS(1040), 1, - sym__entry_separator, - ACTIONS(2266), 1, - anon_sym_LPAREN2, - ACTIONS(2268), 1, - aux_sym__unquoted_in_record_token4, - STATE(6717), 1, + STATE(7234), 1, sym_comment, - [221912] = 3, - ACTIONS(251), 1, + ACTIONS(8785), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8787), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240773] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6718), 1, + STATE(7235), 1, sym_comment, - ACTIONS(10868), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221925] = 3, + ACTIONS(8789), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8791), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240788] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6719), 1, + ACTIONS(11047), 1, + anon_sym_LBRACK, + ACTIONS(11049), 1, + anon_sym_LPAREN, + STATE(6531), 1, + sym_parameter_parens, + STATE(6537), 1, + sym_parameter_bracks, + STATE(7236), 1, sym_comment, - ACTIONS(10870), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221938] = 3, + [240807] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6720), 1, + STATE(7237), 1, sym_comment, - ACTIONS(10872), 4, + ACTIONS(11735), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221951] = 6, - ACTIONS(251), 1, + [240820] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(10874), 1, - anon_sym_LBRACK, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(6721), 1, + STATE(7238), 1, sym_comment, - STATE(7939), 1, - sym_val_list, - [221970] = 6, + ACTIONS(8793), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8795), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1843), 1, - anon_sym_RBRACE, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - ACTIONS(1851), 1, - sym__entry_separator, - STATE(6722), 1, + STATE(7239), 1, sym_comment, - [221989] = 3, - ACTIONS(251), 1, + ACTIONS(8799), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8801), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240850] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6723), 1, + STATE(7240), 1, sym_comment, - ACTIONS(6361), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [222002] = 6, + ACTIONS(8803), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8805), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [240865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2229), 1, - anon_sym_RBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(6724), 1, + ACTIONS(11737), 1, + anon_sym_COLON, + ACTIONS(11739), 1, + anon_sym_GT2, + STATE(5856), 1, + aux_sym__multiple_types_repeat1, + STATE(7241), 1, sym_comment, - [222021] = 3, + [240884] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6725), 1, + STATE(7242), 1, sym_comment, - ACTIONS(10846), 4, + ACTIONS(11735), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222034] = 3, + [240897] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6726), 1, + STATE(7243), 1, sym_comment, - ACTIONS(5697), 4, + ACTIONS(5828), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [222047] = 4, + [240910] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7244), 1, + sym_comment, + ACTIONS(11741), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [240923] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(4946), 1, aux_sym_unquoted_token2, - STATE(6727), 1, + STATE(7245), 1, sym_comment, - ACTIONS(2233), 3, + ACTIONS(1699), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [222062] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7910), 1, - sym__entry_separator, - ACTIONS(7912), 1, - anon_sym_RBRACK, - STATE(6728), 1, - sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - [222081] = 4, + [240938] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6729), 1, + STATE(7246), 1, sym_comment, - ACTIONS(1793), 2, + ACTIONS(2242), 2, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1795), 2, + aux_sym__unquoted_in_list_token4, + ACTIONS(2244), 2, anon_sym_LPAREN2, sym__entry_separator, - [222096] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6730), 1, - sym_comment, - ACTIONS(10846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222109] = 3, + [240953] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6731), 1, + STATE(7247), 1, sym_comment, - ACTIONS(10866), 4, + ACTIONS(11743), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222122] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6679), 1, - anon_sym_DOT_DOT2, - ACTIONS(10876), 1, - anon_sym_LBRACE, - STATE(6732), 1, - sym_comment, - ACTIONS(6634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [222139] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(4735), 1, - sym_block, - STATE(6493), 1, - aux_sym_shebang_repeat1, - STATE(6733), 1, - sym_comment, - [222158] = 4, - ACTIONS(251), 1, + [240966] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1425), 1, - anon_sym_RPAREN, - ACTIONS(10878), 2, - sym__newline, - anon_sym_SEMI, - STATE(6734), 2, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11745), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7248), 1, sym_comment, - aux_sym__block_body_repeat1, - [222173] = 3, - ACTIONS(251), 1, + [240985] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6735), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11747), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7249), 1, sym_comment, - ACTIONS(10881), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222186] = 3, - ACTIONS(251), 1, + [241004] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6736), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11749), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7250), 1, sym_comment, - ACTIONS(10883), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222199] = 6, + [241023] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10885), 1, + ACTIONS(11751), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6737), 1, + STATE(7251), 1, sym_comment, - [222218] = 6, + [241042] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10887), 1, + ACTIONS(11753), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6738), 1, + STATE(7252), 1, sym_comment, - [222237] = 6, - ACTIONS(251), 1, + [241061] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4790), 1, - sym_block, - STATE(6739), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11755), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7253), 1, sym_comment, - [222256] = 5, - ACTIONS(251), 1, + [241080] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DASH2, - ACTIONS(10889), 1, - anon_sym_EQ2, - STATE(6740), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11757), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7254), 1, sym_comment, - ACTIONS(5030), 2, - sym_identifier, - anon_sym_DASH_DASH, - [222273] = 6, + [241099] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10891), 1, + ACTIONS(11759), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6741), 1, + STATE(7255), 1, sym_comment, - [222292] = 6, + [241118] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10893), 1, + ACTIONS(11761), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6742), 1, + STATE(7256), 1, sym_comment, - [222311] = 5, + [241137] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5050), 1, - anon_sym_DASH2, - ACTIONS(10895), 1, - anon_sym_EQ2, - STATE(6743), 1, + STATE(7257), 1, sym_comment, - ACTIONS(5048), 2, + ACTIONS(11763), 4, sym_identifier, - anon_sym_DASH_DASH, - [222328] = 3, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [241150] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6744), 1, + STATE(7258), 1, sym_comment, - ACTIONS(10866), 4, + ACTIONS(11743), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222341] = 3, + [241163] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6745), 1, + STATE(7259), 1, sym_comment, - ACTIONS(10897), 4, + ACTIONS(11743), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222354] = 3, + [241176] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11765), 1, + anon_sym_COLON, + ACTIONS(11767), 1, + anon_sym_GT2, + STATE(5847), 1, + aux_sym__multiple_types_repeat1, + STATE(7260), 1, + sym_comment, + [241195] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11769), 1, + anon_sym_COLON, + ACTIONS(11771), 1, + anon_sym_GT2, + STATE(5848), 1, + aux_sym__multiple_types_repeat1, + STATE(7261), 1, + sym_comment, + [241214] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6746), 1, + STATE(7262), 1, sym_comment, - ACTIONS(10899), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222367] = 3, + ACTIONS(11773), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [241227] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11775), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7263), 1, + sym_comment, + [241246] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6747), 1, + STATE(7264), 1, sym_comment, - ACTIONS(10901), 4, + ACTIONS(11743), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222380] = 4, + [241259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, - anon_sym_PIPE, - STATE(6748), 1, + ACTIONS(11777), 1, + anon_sym_DQUOTE, + STATE(7265), 1, sym_comment, - ACTIONS(2247), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [222395] = 6, + STATE(7283), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [241276] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2282), 1, - anon_sym_RBRACK, - ACTIONS(2284), 1, + ACTIONS(5715), 1, anon_sym_LPAREN2, - ACTIONS(2286), 1, + ACTIONS(11779), 1, + anon_sym_RBRACK, + ACTIONS(11781), 1, sym__entry_separator, - ACTIONS(2288), 1, - aux_sym__unquoted_in_list_token4, - STATE(6749), 1, + STATE(7266), 1, + sym_comment, + STATE(8421), 1, + sym__expr_parenthesized_immediate, + [241295] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10563), 1, + anon_sym_RPAREN, + STATE(7175), 1, + aux_sym__block_body_repeat1, + STATE(7267), 1, sym_comment, - [222414] = 6, + ACTIONS(11187), 2, + sym__newline, + anon_sym_SEMI, + [241312] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7926), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(7928), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11783), 1, anon_sym_RBRACK, - STATE(6750), 1, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7268), 1, sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - [222433] = 6, + [241331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_RBRACK, - ACTIONS(2241), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(2245), 1, - aux_sym__unquoted_in_list_token2, - STATE(6751), 1, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7269), 1, sym_comment, - [222452] = 6, + [241350] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10903), 1, + ACTIONS(2078), 1, anon_sym_LBRACE, - STATE(5048), 1, - sym_block, - STATE(5049), 1, - sym_val_closure, - STATE(5055), 1, - sym__blosure, - STATE(6752), 1, - sym_comment, - [222471] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(6753), 1, + ACTIONS(11787), 1, + anon_sym_DOT_DOT2, + STATE(7270), 1, sym_comment, - ACTIONS(1038), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [222486] = 3, + ACTIONS(11789), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [241367] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6754), 1, + STATE(7271), 1, sym_comment, - ACTIONS(10901), 4, + ACTIONS(11791), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222499] = 6, + [241380] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(3183), 1, - sym_parameter_parens, - STATE(3184), 1, - sym_parameter_bracks, - STATE(6755), 1, - sym_comment, - [222518] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2278), 1, - anon_sym_RBRACE, - ACTIONS(2280), 1, - sym__entry_separator, - STATE(6756), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5412), 1, + sym_block, + STATE(7272), 1, sym_comment, - [222537] = 3, + STATE(7275), 1, + aux_sym_shebang_repeat1, + [241399] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6757), 1, + ACTIONS(11793), 1, + anon_sym_RPAREN, + STATE(7175), 1, + aux_sym__block_body_repeat1, + STATE(7273), 1, sym_comment, - ACTIONS(10905), 4, + ACTIONS(11187), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222550] = 6, - ACTIONS(3), 1, + [241416] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_RBRACE, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1836), 1, - sym__entry_separator, - ACTIONS(1838), 1, - aux_sym__unquoted_in_record_token2, - STATE(6758), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9548), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6596), 1, + sym__variable_name, + STATE(7274), 1, sym_comment, - [222569] = 6, + [241435] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(3186), 1, - sym_parameter_parens, - STATE(3188), 1, - sym_parameter_bracks, - STATE(6759), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5417), 1, + sym_block, + STATE(7275), 1, sym_comment, - [222588] = 6, - ACTIONS(3), 1, + [241454] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10907), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6760), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5418), 1, + sym_block, + STATE(7276), 1, sym_comment, - [222607] = 6, - ACTIONS(3), 1, + STATE(7277), 1, + aux_sym_shebang_repeat1, + [241473] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5422), 1, + sym_block, + STATE(7277), 1, + sym_comment, + [241492] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(11664), 1, anon_sym_LBRACK, - ACTIONS(10909), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6761), 1, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(7278), 1, sym_comment, - [222626] = 6, + STATE(8247), 1, + sym_val_list, + [241511] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10911), 1, - anon_sym_RBRACK, - STATE(3402), 1, + ACTIONS(11795), 1, + anon_sym_COLON, + ACTIONS(11797), 1, + anon_sym_GT2, + STATE(5846), 1, aux_sym__multiple_types_repeat1, - STATE(6762), 1, - sym_comment, - [222645] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4930), 1, - anon_sym_DOLLAR, - ACTIONS(4932), 1, - sym_identifier, - ACTIONS(10913), 1, - anon_sym_EQ2, - ACTIONS(10915), 1, - sym_short_flag_identifier, - STATE(6763), 1, + STATE(7279), 1, sym_comment, - [222664] = 3, + [241530] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6764), 1, + STATE(7280), 1, sym_comment, - ACTIONS(10883), 4, + ACTIONS(11799), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222677] = 5, + [241543] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5052), 1, + sym_block, + STATE(7212), 1, + aux_sym_shebang_repeat1, + STATE(7281), 1, + sym_comment, + [241562] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + ACTIONS(11801), 1, + aux_sym__immediate_decimal_token2, + STATE(7282), 1, + sym_comment, + ACTIONS(1801), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [241579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10917), 1, + ACTIONS(11803), 1, anon_sym_DQUOTE, - STATE(6379), 1, + STATE(7127), 1, aux_sym__str_double_quotes_repeat1, - STATE(6765), 1, + STATE(7283), 1, sym_comment, - ACTIONS(10113), 2, + ACTIONS(10873), 2, sym__escaped_str_content, sym_escape_sequence, - [222694] = 4, + [241596] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6766), 1, + STATE(7284), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(1022), 2, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1803), 2, - anon_sym_LPAREN2, + anon_sym_RBRACE, + ACTIONS(1024), 2, + anon_sym_DOT, sym__entry_separator, - [222709] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(6767), 1, - sym_comment, - ACTIONS(2290), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [222724] = 5, + [241611] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1430), 1, + ACTIONS(1480), 1, ts_builtin_sym_end, - STATE(288), 1, + STATE(225), 1, aux_sym__block_body_repeat1, - STATE(6768), 1, + STATE(7285), 1, sym_comment, ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - [222741] = 3, + [241628] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6769), 1, - sym_comment, - ACTIONS(10919), 4, + ACTIONS(3919), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222754] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(6770), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5281), 1, + sym_block, + STATE(7286), 1, sym_comment, - ACTIONS(2282), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [222769] = 6, - ACTIONS(3), 1, + STATE(7287), 1, + aux_sym_shebang_repeat1, + [241647] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(5910), 1, - anon_sym_RBRACK, - ACTIONS(5916), 1, - sym__entry_separator, - STATE(6771), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5283), 1, + sym_block, + STATE(7287), 1, sym_comment, - STATE(7535), 1, - sym__expr_parenthesized_immediate, - [222788] = 6, + [241666] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10371), 1, - anon_sym_LBRACK, - ACTIONS(10373), 1, - anon_sym_LPAREN, - STATE(3177), 1, - sym_parameter_bracks, - STATE(3178), 1, - sym_parameter_parens, - STATE(6772), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5284), 1, + sym_block, + STATE(7288), 1, sym_comment, - [222807] = 6, - ACTIONS(3), 1, + STATE(7289), 1, + aux_sym_shebang_repeat1, + [241685] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10921), 1, - anon_sym_RBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(6773), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(5288), 1, + sym_block, + STATE(7289), 1, sym_comment, - [222826] = 6, + [241704] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(3919), 1, sym__newline, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(1820), 1, + STATE(1800), 1, aux_sym_shebang_repeat1, - STATE(4667), 1, + STATE(4913), 1, sym_block, - STATE(6774), 1, + STATE(7290), 1, sym_comment, - [222845] = 3, + [241723] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6775), 1, + STATE(7291), 1, sym_comment, - ACTIONS(10822), 4, + ACTIONS(11805), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [222858] = 5, + [241736] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11807), 1, + anon_sym_DQUOTE, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + STATE(7292), 1, + sym_comment, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [241753] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - ACTIONS(10923), 1, - aux_sym__immediate_decimal_token2, - STATE(6776), 1, + ACTIONS(10767), 1, + anon_sym_use, + ACTIONS(10769), 1, + anon_sym_list, + ACTIONS(10771), 1, + anon_sym_hide, + ACTIONS(10773), 1, + anon_sym_new, + STATE(7293), 1, sym_comment, - ACTIONS(1803), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222875] = 4, + [241772] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(6777), 1, + ACTIONS(1659), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2266), 1, + anon_sym_RBRACE, + ACTIONS(2268), 1, + anon_sym_LPAREN2, + ACTIONS(2270), 1, + sym__entry_separator, + STATE(7294), 1, sym_comment, - ACTIONS(2298), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [222890] = 3, - ACTIONS(251), 1, + [241791] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6778), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2064), 1, + anon_sym_RBRACE, + ACTIONS(2070), 1, + sym__entry_separator, + STATE(7295), 1, sym_comment, - ACTIONS(10822), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(8196), 1, + sym__expr_parenthesized_immediate, + [241810] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(2276), 1, anon_sym_RBRACE, - [222903] = 6, + ACTIONS(2278), 1, + sym__entry_separator, + STATE(7296), 1, + sym_comment, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + [241829] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11809), 1, + anon_sym_DQUOTE, + STATE(6736), 1, + aux_sym__str_double_quotes_repeat1, + STATE(7297), 1, + sym_comment, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [241846] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10925), 1, + ACTIONS(11811), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6779), 1, + STATE(7298), 1, sym_comment, - [222922] = 6, + [241865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2229), 1, - anon_sym_RBRACE, - ACTIONS(2231), 1, + ACTIONS(1689), 1, anon_sym_LPAREN2, - ACTIONS(2233), 1, + ACTIONS(2280), 1, + anon_sym_RBRACE, + ACTIONS(2282), 1, sym__entry_separator, - STATE(6780), 1, + STATE(7299), 1, sym_comment, - [222941] = 5, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + [241884] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10927), 1, - anon_sym_LBRACK2, - STATE(6781), 1, - sym_comment, - ACTIONS(2333), 2, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11813), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [222958] = 6, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7300), 1, + sym_comment, + [241903] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10929), 1, + ACTIONS(11815), 1, anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6782), 1, + STATE(7301), 1, sym_comment, - [222977] = 5, + [241922] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10931), 1, - anon_sym_RBRACK, - STATE(5200), 1, - aux_sym_parameter_repeat2, - STATE(6783), 1, + STATE(7302), 1, sym_comment, - ACTIONS(2581), 2, + ACTIONS(5844), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_COMMA, - [222994] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + [241935] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2294), 1, - anon_sym_PIPE, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(6784), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11817), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7303), 1, sym_comment, - ACTIONS(2290), 2, - anon_sym_if, - anon_sym_EQ_GT, - [223011] = 5, - ACTIONS(3), 1, + [241954] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2300), 1, - anon_sym_PIPE, - STATE(6785), 1, + ACTIONS(9366), 1, + sym_identifier, + ACTIONS(9548), 1, + anon_sym_DOLLAR, + STATE(5695), 1, + sym_val_variable, + STATE(6642), 1, + sym__variable_name, + STATE(7304), 1, sym_comment, - ACTIONS(2298), 2, - anon_sym_if, - anon_sym_EQ_GT, - [223028] = 5, + [241973] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_RPAREN, - STATE(6734), 1, - aux_sym__block_body_repeat1, - STATE(6786), 1, + STATE(7305), 1, sym_comment, - ACTIONS(10163), 2, + ACTIONS(5836), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223045] = 3, - ACTIONS(251), 1, + anon_sym_LBRACE, + [241986] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6787), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11819), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7306), 1, sym_comment, - ACTIONS(10127), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223058] = 3, + [242005] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6788), 1, - sym_comment, - ACTIONS(10933), 4, + ACTIONS(6979), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223071] = 3, + ACTIONS(11821), 1, + anon_sym_EQ, + ACTIONS(11823), 1, + anon_sym_COLON, + STATE(4296), 1, + aux_sym_shebang_repeat1, + STATE(7307), 1, + sym_comment, + [242024] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6789), 1, + ACTIONS(10897), 1, + anon_sym_DOT_DOT2, + ACTIONS(11825), 1, + anon_sym_LBRACE, + STATE(7308), 1, sym_comment, - ACTIONS(10127), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223084] = 3, - ACTIONS(251), 1, + ACTIONS(10899), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [242041] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6790), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(10859), 1, + anon_sym_LBRACK, + ACTIONS(11827), 1, + anon_sym_RBRACK, + STATE(3591), 1, + aux_sym__multiple_types_repeat1, + STATE(7309), 1, sym_comment, - ACTIONS(10935), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223097] = 3, - ACTIONS(251), 1, + [242060] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6791), 1, + ACTIONS(11829), 1, + anon_sym_DQUOTE, + STATE(7127), 1, + aux_sym__str_double_quotes_repeat1, + STATE(7310), 1, sym_comment, - ACTIONS(10937), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223110] = 4, + ACTIONS(10873), 2, + sym__escaped_str_content, + sym_escape_sequence, + [242077] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6792), 1, + ACTIONS(2506), 1, + sym__entry_separator, + STATE(7311), 1, sym_comment, - ACTIONS(1824), 2, + ACTIONS(2504), 2, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1826), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [223125] = 6, + anon_sym_RBRACE, + [242091] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(5144), 1, - sym_block, - STATE(6793), 1, + ACTIONS(6491), 1, + anon_sym_AT, + ACTIONS(8372), 1, + anon_sym_EQ, + STATE(5436), 1, + sym_param_cmd, + STATE(7312), 1, sym_comment, - STATE(6795), 1, - aux_sym_shebang_repeat1, - [223144] = 3, + [242107] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6794), 1, + STATE(7313), 1, sym_comment, - ACTIONS(10939), 4, + ACTIONS(11093), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223157] = 6, + [242119] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, + ACTIONS(1781), 1, anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5146), 1, - sym_block, - STATE(6795), 1, + ACTIONS(10251), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(11831), 1, + anon_sym_DOT, + STATE(7314), 1, sym_comment, - [223176] = 6, + [242135] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(5147), 1, - sym_block, - STATE(6796), 1, + ACTIONS(11833), 1, + anon_sym_RBRACK, + ACTIONS(11835), 1, + sym_hex_digit, + STATE(7315), 1, sym_comment, - STATE(6797), 1, - aux_sym_shebang_repeat1, - [223195] = 6, + STATE(7322), 1, + aux_sym_val_binary_repeat1, + [242151] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(5153), 1, - sym_block, - STATE(6797), 1, + STATE(7316), 1, sym_comment, - [223214] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, + ACTIONS(11093), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(10874), 1, - anon_sym_LBRACK, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(6798), 1, - sym_comment, - STATE(7757), 1, - sym_val_list, - [223233] = 6, + anon_sym_SEMI, + [242163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10137), 1, + ACTIONS(10859), 1, anon_sym_LBRACK, - ACTIONS(10941), 1, - anon_sym_RBRACK, - STATE(3402), 1, + STATE(3591), 1, aux_sym__multiple_types_repeat1, - STATE(6799), 1, + STATE(7317), 1, sym_comment, - [223252] = 4, + [242179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6800), 1, + ACTIONS(1959), 1, + sym__entry_separator, + STATE(7318), 1, sym_comment, - ACTIONS(1026), 2, + ACTIONS(1957), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1028), 2, - anon_sym_DOT, + [242193] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6105), 1, sym__entry_separator, - [223267] = 3, + ACTIONS(11837), 1, + anon_sym_RBRACK, + STATE(2996), 1, + aux_sym__multiple_types_repeat1, + STATE(7319), 1, + sym_comment, + [242209] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + ACTIONS(2272), 1, + anon_sym_EQ_GT, + ACTIONS(2274), 1, + anon_sym_PIPE, + STATE(7320), 1, + sym_comment, + [242225] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(4159), 1, + aux_sym_unquoted_token4, + STATE(7321), 1, + sym_comment, + STATE(8148), 1, + sym__expr_parenthesized_immediate, + [242241] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6801), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11839), 1, + anon_sym_RBRACK, + STATE(7322), 1, sym_comment, - ACTIONS(10127), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223280] = 3, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + [242257] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6802), 1, + STATE(7323), 1, sym_comment, - ACTIONS(10905), 4, + ACTIONS(11271), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + [242269] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2405), 1, + sym__entry_separator, + STATE(7324), 1, + sym_comment, + ACTIONS(2403), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [223293] = 6, - ACTIONS(251), 1, + [242283] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(4914), 1, - sym_block, - STATE(6803), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11841), 1, + anon_sym_RBRACK, + STATE(7171), 1, + aux_sym__multiple_types_repeat1, + STATE(7325), 1, sym_comment, - STATE(6804), 1, - aux_sym_shebang_repeat1, - [223312] = 6, - ACTIONS(251), 1, + [242299] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4916), 1, - sym_block, - STATE(6804), 1, + ACTIONS(2234), 1, + anon_sym_EQ_GT, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(7326), 1, sym_comment, - [223331] = 6, + [242315] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3907), 1, + STATE(7327), 1, + sym_comment, + ACTIONS(11041), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(4917), 1, - sym_block, - STATE(6805), 1, + anon_sym_SEMI, + [242327] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11843), 1, + anon_sym_RBRACK, + STATE(7177), 1, + aux_sym__multiple_types_repeat1, + STATE(7328), 1, sym_comment, - STATE(6806), 1, - aux_sym_shebang_repeat1, - [223350] = 6, - ACTIONS(251), 1, + [242343] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(4921), 1, - sym_block, - STATE(6806), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11845), 1, + anon_sym_RBRACK, + STATE(7179), 1, + aux_sym__multiple_types_repeat1, + STATE(7329), 1, + sym_comment, + [242359] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11847), 1, + anon_sym_RBRACK, + STATE(7180), 1, + aux_sym__multiple_types_repeat1, + STATE(7330), 1, sym_comment, - [223369] = 3, + [242375] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6807), 1, + STATE(7331), 1, sym_comment, - ACTIONS(10943), 4, + ACTIONS(11573), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + [242387] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11849), 1, + anon_sym_RBRACK, + STATE(7182), 1, + aux_sym__multiple_types_repeat1, + STATE(7332), 1, + sym_comment, + [242403] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, + sym__entry_separator, + STATE(7333), 1, + sym_comment, + ACTIONS(2395), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [223382] = 5, - ACTIONS(251), 1, + [242417] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1851), 1, - anon_sym_EQ_GT, - ACTIONS(10945), 1, - anon_sym_DOT_DOT2, - STATE(6808), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11851), 1, + anon_sym_RBRACK, + STATE(7183), 1, + aux_sym__multiple_types_repeat1, + STATE(7334), 1, sym_comment, - ACTIONS(10947), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223399] = 5, - ACTIONS(251), 1, + [242433] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_EQ_GT, - ACTIONS(10949), 1, - anon_sym_DOT_DOT2, - STATE(6809), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11853), 1, + anon_sym_RBRACK, + STATE(7184), 1, + aux_sym__multiple_types_repeat1, + STATE(7335), 1, sym_comment, - ACTIONS(10951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223416] = 3, - ACTIONS(251), 1, + [242449] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6810), 1, + ACTIONS(2078), 1, + sym__entry_separator, + STATE(7336), 1, sym_comment, - ACTIONS(10905), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2072), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [242463] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2096), 1, + sym__entry_separator, + STATE(7337), 1, + sym_comment, + ACTIONS(2090), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [242477] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11855), 1, + anon_sym_RBRACK, + STATE(7186), 1, + aux_sym__multiple_types_repeat1, + STATE(7338), 1, + sym_comment, + [242493] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + sym__entry_separator, + STATE(7339), 1, + sym_comment, + ACTIONS(2098), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [242507] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1943), 1, + sym__entry_separator, + STATE(7340), 1, + sym_comment, + ACTIONS(1941), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [223429] = 3, - ACTIONS(251), 1, + [242521] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6811), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11857), 1, + anon_sym_GT2, + STATE(5904), 1, + aux_sym__multiple_types_repeat1, + STATE(7341), 1, sym_comment, - ACTIONS(10127), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223442] = 3, + [242537] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6812), 1, + STATE(7342), 1, sym_comment, - ACTIONS(10905), 4, + ACTIONS(11041), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223455] = 6, + [242549] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - ACTIONS(10953), 1, - anon_sym_RBRACK, - STATE(3402), 1, + ACTIONS(11859), 1, + anon_sym_GT2, + STATE(5906), 1, aux_sym__multiple_types_repeat1, - STATE(6813), 1, + STATE(7343), 1, sym_comment, - [223474] = 4, - ACTIONS(3), 1, + [242565] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1028), 1, - anon_sym_DOT, - STATE(6814), 1, + STATE(7344), 1, sym_comment, - ACTIONS(1026), 3, + ACTIONS(11093), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [242577] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11861), 1, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [223489] = 3, + STATE(7345), 1, + sym_comment, + STATE(7349), 1, + aux_sym_val_binary_repeat1, + [242593] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6815), 1, + STATE(7346), 1, sym_comment, - ACTIONS(10129), 4, + ACTIONS(11693), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223502] = 6, + [242605] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4968), 1, - sym__space, - ACTIONS(4970), 1, - sym__newline, - ACTIONS(10955), 1, - sym_long_flag_identifier, - ACTIONS(10957), 1, - anon_sym_EQ2, - STATE(6816), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(4690), 1, + aux_sym_unquoted_token4, + STATE(7347), 1, sym_comment, - [223521] = 6, - ACTIONS(251), 1, + STATE(8062), 1, + sym__expr_parenthesized_immediate, + [242621] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8656), 1, - sym_identifier, - ACTIONS(8996), 1, - anon_sym_DOLLAR, - STATE(5414), 1, - sym_val_variable, - STATE(6239), 1, - sym__variable_name, - STATE(6817), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(6720), 1, + aux_sym_unquoted_token4, + STATE(7348), 1, sym_comment, - [223540] = 3, + STATE(8140), 1, + sym__expr_parenthesized_immediate, + [242637] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6818), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11863), 1, + anon_sym_RBRACK, + STATE(7349), 1, sym_comment, - ACTIONS(10959), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223553] = 5, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + [242653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10961), 1, + ACTIONS(11865), 1, anon_sym_RBRACK, - STATE(6418), 1, + STATE(7248), 1, aux_sym__multiple_types_repeat1, - STATE(6819), 1, + STATE(7350), 1, sym_comment, - [223569] = 3, + [242669] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6820), 1, + STATE(7351), 1, sym_comment, - ACTIONS(10905), 3, + ACTIONS(11093), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223581] = 5, + [242681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(10963), 1, - anon_sym_RBRACK, - STATE(6303), 1, + ACTIONS(11867), 1, + anon_sym_GT2, + STATE(5913), 1, aux_sym__multiple_types_repeat1, - STATE(6821), 1, + STATE(7352), 1, sym_comment, - [223597] = 5, + [242697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10965), 1, + ACTIONS(11869), 1, anon_sym_RBRACK, - STATE(6304), 1, + STATE(7249), 1, aux_sym__multiple_types_repeat1, - STATE(6822), 1, + STATE(7353), 1, sym_comment, - [223613] = 5, + [242713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10967), 1, + ACTIONS(11871), 1, anon_sym_RBRACK, - STATE(6305), 1, + STATE(7250), 1, aux_sym__multiple_types_repeat1, - STATE(6823), 1, + STATE(7354), 1, sym_comment, - [223629] = 5, + [242729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10969), 1, + ACTIONS(11873), 1, anon_sym_RBRACK, - STATE(6306), 1, + STATE(7251), 1, aux_sym__multiple_types_repeat1, - STATE(6824), 1, + STATE(7355), 1, sym_comment, - [223645] = 4, - ACTIONS(251), 1, + [242745] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(6825), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11875), 1, + anon_sym_GT2, + STATE(5916), 1, + aux_sym__multiple_types_repeat1, + STATE(7356), 1, sym_comment, - ACTIONS(1707), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [223659] = 5, + [242761] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10971), 1, + ACTIONS(11877), 1, anon_sym_RBRACK, - STATE(6307), 1, + STATE(7252), 1, aux_sym__multiple_types_repeat1, - STATE(6826), 1, + STATE(7357), 1, sym_comment, - [223675] = 5, + [242777] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10973), 1, + ACTIONS(11879), 1, anon_sym_RBRACK, - STATE(6308), 1, + STATE(7253), 1, aux_sym__multiple_types_repeat1, - STATE(6827), 1, + STATE(7358), 1, sym_comment, - [223691] = 3, - ACTIONS(251), 1, + [242793] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6828), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11881), 1, + anon_sym_RBRACK, + STATE(7254), 1, + aux_sym__multiple_types_repeat1, + STATE(7359), 1, sym_comment, - ACTIONS(10846), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223703] = 4, + [242809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(6829), 1, + ACTIONS(11883), 1, + anon_sym_GT2, + STATE(5921), 1, + aux_sym__multiple_types_repeat1, + STATE(7360), 1, sym_comment, - ACTIONS(2493), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223717] = 5, + [242825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10975), 1, + ACTIONS(11885), 1, anon_sym_RBRACK, - STATE(6309), 1, + STATE(7255), 1, aux_sym__multiple_types_repeat1, - STATE(6830), 1, + STATE(7361), 1, sym_comment, - [223733] = 4, - ACTIONS(251), 1, + [242841] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1310), 1, - anon_sym_RPAREN, - STATE(6831), 1, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + ACTIONS(5725), 1, + aux_sym__unquoted_in_list_token4, + STATE(7362), 1, sym_comment, - ACTIONS(1303), 2, - sym__newline, - anon_sym_SEMI, - [223747] = 3, - ACTIONS(251), 1, + STATE(8167), 1, + sym__expr_parenthesized_immediate, + [242857] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6832), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11887), 1, + anon_sym_GT2, + STATE(5922), 1, + aux_sym__multiple_types_repeat1, + STATE(7363), 1, sym_comment, - ACTIONS(1310), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [223759] = 3, + [242873] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6833), 1, + STATE(7364), 1, sym_comment, - ACTIONS(10846), 3, + ACTIONS(11129), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223771] = 3, + [242885] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11889), 1, + anon_sym_GT2, + STATE(5924), 1, + aux_sym__multiple_types_repeat1, + STATE(7365), 1, + sym_comment, + [242901] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6834), 1, + STATE(7366), 1, sym_comment, - ACTIONS(10117), 3, - ts_builtin_sym_end, + ACTIONS(11891), 3, sym__newline, anon_sym_SEMI, - [223783] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + [242913] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(10977), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(11893), 1, anon_sym_GT2, - STATE(6835), 1, + STATE(5925), 1, + aux_sym__multiple_types_repeat1, + STATE(7367), 1, sym_comment, - STATE(7723), 1, - sym_param_cmd, - [223799] = 3, + [242929] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6836), 1, + STATE(7368), 1, sym_comment, - ACTIONS(10883), 3, + ACTIONS(11129), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223811] = 3, + [242941] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6837), 1, + STATE(7369), 1, sym_comment, - ACTIONS(10846), 3, + ACTIONS(11141), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223823] = 4, - ACTIONS(3), 1, + [242953] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2415), 1, - sym__entry_separator, - STATE(6838), 1, + STATE(7370), 1, sym_comment, - ACTIONS(2413), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223837] = 5, - ACTIONS(3), 1, + ACTIONS(11621), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [242965] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2290), 1, - anon_sym_EQ_GT, - ACTIONS(2294), 1, - anon_sym_PIPE, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(6839), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11895), 1, + anon_sym_RBRACK, + STATE(7371), 1, sym_comment, - [223853] = 5, + STATE(7378), 1, + aux_sym_val_binary_repeat1, + [242981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_RBRACE, - ACTIONS(1707), 1, + ACTIONS(2137), 1, sym__entry_separator, - ACTIONS(8750), 1, - aux_sym__unquoted_in_record_token2, - STATE(6840), 1, + STATE(7372), 1, sym_comment, - [223869] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2339), 1, + ACTIONS(2131), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(6841), 1, - sym_comment, - ACTIONS(2341), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [223883] = 5, + [242995] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10979), 1, - anon_sym_RBRACK, - ACTIONS(10981), 1, - sym_hex_digit, - STATE(6842), 1, - sym_comment, - STATE(6848), 1, - aux_sym_val_binary_repeat1, - [223899] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2298), 1, - anon_sym_EQ_GT, - ACTIONS(2300), 1, - anon_sym_PIPE, - STATE(6843), 1, + STATE(7373), 1, sym_comment, - [223915] = 4, - ACTIONS(3), 1, + ACTIONS(10933), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243007] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1919), 1, - sym__entry_separator, - STATE(6844), 1, + STATE(7374), 1, sym_comment, - ACTIONS(1917), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223929] = 4, + ACTIONS(11621), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243019] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10983), 1, - anon_sym_PIPE, - ACTIONS(10986), 1, - anon_sym_EQ_GT, - STATE(6845), 2, + STATE(7375), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [223943] = 5, - ACTIONS(3), 1, + ACTIONS(11621), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243031] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10988), 1, - anon_sym_RBRACK, - STATE(6586), 1, - aux_sym__multiple_types_repeat1, - STATE(6846), 1, + STATE(7376), 1, sym_comment, - [223959] = 5, - ACTIONS(3), 1, + ACTIONS(11621), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243043] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4233), 1, - aux_sym_unquoted_token4, - STATE(6847), 1, + STATE(7377), 1, sym_comment, - STATE(7490), 1, - sym__expr_parenthesized_immediate, - [223975] = 5, + ACTIONS(11621), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243055] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(10990), 1, + ACTIONS(11897), 1, anon_sym_RBRACK, - STATE(6848), 1, + STATE(7378), 1, sym_comment, - STATE(7264), 1, + STATE(7421), 1, aux_sym_val_binary_repeat1, - [223991] = 5, + [243071] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(6083), 1, - anon_sym_RBRACE, - STATE(3004), 1, + ACTIONS(11899), 1, + anon_sym_RBRACK, + STATE(7011), 1, aux_sym__multiple_types_repeat1, - STATE(6849), 1, + STATE(7379), 1, sym_comment, - [224007] = 5, + [243087] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10992), 1, + ACTIONS(11901), 1, anon_sym_RBRACK, - STATE(6325), 1, + STATE(7298), 1, aux_sym__multiple_types_repeat1, - STATE(6850), 1, + STATE(7380), 1, sym_comment, - [224023] = 5, - ACTIONS(3), 1, + [243103] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10994), 1, - anon_sym_RBRACK, - STATE(6326), 1, - aux_sym__multiple_types_repeat1, - STATE(6851), 1, + STATE(7381), 1, sym_comment, - [224039] = 5, + ACTIONS(11621), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10996), 1, + ACTIONS(11903), 1, anon_sym_RBRACK, - STATE(6327), 1, + STATE(7300), 1, aux_sym__multiple_types_repeat1, - STATE(6852), 1, + STATE(7382), 1, sym_comment, - [224055] = 5, + [243131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(10998), 1, + ACTIONS(11905), 1, anon_sym_RBRACK, - STATE(6328), 1, + STATE(7301), 1, aux_sym__multiple_types_repeat1, - STATE(6853), 1, + STATE(7383), 1, sym_comment, - [224071] = 4, + [243147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(6854), 1, - sym_comment, - ACTIONS(2417), 2, + ACTIONS(11907), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [224085] = 5, + STATE(7303), 1, + aux_sym__multiple_types_repeat1, + STATE(7384), 1, + sym_comment, + [243163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11000), 1, + ACTIONS(11909), 1, anon_sym_RBRACK, - STATE(6329), 1, + STATE(7306), 1, aux_sym__multiple_types_repeat1, - STATE(6855), 1, + STATE(7385), 1, sym_comment, - [224101] = 4, + [243179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(2389), 1, sym__entry_separator, - STATE(6856), 1, + STATE(7386), 1, sym_comment, - ACTIONS(2417), 2, + ACTIONS(2387), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224115] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - ACTIONS(8750), 1, - aux_sym__unquoted_in_record_token4, - STATE(6857), 1, - sym_comment, - STATE(7628), 1, - sym__expr_parenthesized_immediate, - [224131] = 5, + [243193] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11002), 1, + ACTIONS(11911), 1, anon_sym_RBRACK, - STATE(6330), 1, + STATE(7309), 1, aux_sym__multiple_types_repeat1, - STATE(6858), 1, + STATE(7387), 1, sym_comment, - [224147] = 5, + [243209] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11004), 1, + ACTIONS(11913), 1, anon_sym_RBRACK, - STATE(6331), 1, + STATE(7026), 1, aux_sym__multiple_types_repeat1, - STATE(6859), 1, + STATE(7388), 1, + sym_comment, + [243225] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11915), 1, + anon_sym_RBRACK, + STATE(7389), 1, sym_comment, - [224163] = 5, + STATE(7452), 1, + aux_sym_val_binary_repeat1, + [243241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11006), 1, + ACTIONS(11917), 1, anon_sym_RBRACK, - STATE(6332), 1, + STATE(6659), 1, aux_sym__multiple_types_repeat1, - STATE(6860), 1, + STATE(7390), 1, sym_comment, - [224179] = 3, + [243257] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6861), 1, + STATE(7391), 1, sym_comment, - ACTIONS(10846), 3, + ACTIONS(11621), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224191] = 3, + [243269] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6862), 1, + STATE(7392), 1, sym_comment, - ACTIONS(10367), 3, + ACTIONS(11621), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224203] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6085), 1, - anon_sym_RBRACE, - STATE(3008), 1, - aux_sym__multiple_types_repeat1, - STATE(6863), 1, - sym_comment, - [224219] = 3, + [243281] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6864), 1, + STATE(7393), 1, sym_comment, - ACTIONS(10367), 3, + ACTIONS(11141), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224231] = 3, + [243293] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6865), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + STATE(7394), 1, + sym_comment, + ACTIONS(2270), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [243307] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7395), 1, sym_comment, - ACTIONS(10846), 3, + ACTIONS(11565), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224243] = 5, + [243319] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11008), 1, + ACTIONS(11919), 1, anon_sym_RBRACK, - STATE(6866), 1, + STATE(7396), 1, sym_comment, - STATE(6871), 1, + STATE(7401), 1, aux_sym_val_binary_repeat1, - [224259] = 3, + [243335] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6867), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + STATE(7397), 1, sym_comment, - ACTIONS(10377), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224271] = 3, + ACTIONS(1781), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [243349] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6868), 1, + STATE(7398), 1, sym_comment, - ACTIONS(10866), 3, + ACTIONS(11579), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224283] = 4, + [243361] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2463), 1, - sym__entry_separator, - STATE(6869), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + ACTIONS(6094), 1, + anon_sym_EQ_GT, + ACTIONS(6099), 1, + anon_sym_PIPE, + STATE(7399), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224297] = 5, + [243377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(6484), 1, - aux_sym_unquoted_token4, - STATE(6870), 1, + ACTIONS(2401), 1, + sym__entry_separator, + STATE(7400), 1, sym_comment, - STATE(7457), 1, - sym__expr_parenthesized_immediate, - [224313] = 5, + ACTIONS(2399), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [243391] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11010), 1, + ACTIONS(11921), 1, anon_sym_RBRACK, - STATE(6871), 1, + STATE(7401), 1, sym_comment, - STATE(7264), 1, + STATE(7421), 1, aux_sym_val_binary_repeat1, - [224329] = 5, + [243407] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11012), 1, - anon_sym_RBRACK, - STATE(6872), 1, + STATE(7402), 1, sym_comment, - STATE(7145), 1, - aux_sym_val_binary_repeat1, - [224345] = 5, + ACTIONS(11141), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11014), 1, + ACTIONS(11923), 1, anon_sym_RBRACK, - STATE(6347), 1, + STATE(6683), 1, aux_sym__multiple_types_repeat1, - STATE(6873), 1, - sym_comment, - [224361] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(6874), 1, + STATE(7403), 1, sym_comment, - STATE(7149), 1, - sym_val_list, - STATE(7303), 1, - aux_sym_val_table_repeat1, - [224377] = 5, + [243435] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11016), 1, + ACTIONS(11925), 1, anon_sym_RBRACK, - STATE(6348), 1, + STATE(6684), 1, aux_sym__multiple_types_repeat1, - STATE(6875), 1, + STATE(7404), 1, sym_comment, - [224393] = 5, + [243451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11018), 1, + ACTIONS(11927), 1, anon_sym_RBRACK, - STATE(6349), 1, + STATE(6685), 1, aux_sym__multiple_types_repeat1, - STATE(6876), 1, + STATE(7405), 1, sym_comment, - [224409] = 5, + [243467] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11020), 1, + ACTIONS(11929), 1, anon_sym_RBRACK, - STATE(6350), 1, + STATE(6686), 1, aux_sym__multiple_types_repeat1, - STATE(6877), 1, + STATE(7406), 1, sym_comment, - [224425] = 5, + [243483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(2349), 1, - anon_sym_RBRACE, - STATE(568), 1, + ACTIONS(11931), 1, + anon_sym_RBRACK, + STATE(6687), 1, aux_sym__multiple_types_repeat1, - STATE(6878), 1, + STATE(7407), 1, sym_comment, - [224441] = 5, + [243499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11022), 1, + ACTIONS(11933), 1, anon_sym_RBRACK, - STATE(6351), 1, + STATE(6688), 1, aux_sym__multiple_types_repeat1, - STATE(6879), 1, - sym_comment, - [224457] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6880), 1, + STATE(7408), 1, sym_comment, - ACTIONS(10881), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224469] = 5, + [243515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11024), 1, + ACTIONS(11935), 1, anon_sym_RBRACK, - STATE(6352), 1, + STATE(6689), 1, aux_sym__multiple_types_repeat1, - STATE(6881), 1, + STATE(7409), 1, sym_comment, - [224485] = 5, + [243531] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11026), 1, + ACTIONS(11937), 1, anon_sym_RBRACK, - STATE(6353), 1, + STATE(6690), 1, aux_sym__multiple_types_repeat1, - STATE(6882), 1, + STATE(7410), 1, sym_comment, - [224501] = 5, + [243547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11028), 1, - anon_sym_RBRACK, - STATE(6354), 1, - aux_sym__multiple_types_repeat1, - STATE(6883), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + ACTIONS(11939), 1, + sym__space, + STATE(7411), 1, sym_comment, - [224517] = 5, - ACTIONS(3), 1, + [243563] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6118), 1, - anon_sym_RBRACE, - STATE(2998), 1, - aux_sym__multiple_types_repeat1, - STATE(6884), 1, + STATE(305), 1, + aux_sym__block_body_repeat1, + STATE(7412), 1, sym_comment, - [224533] = 3, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + [243577] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6885), 1, + STATE(7413), 1, sym_comment, - ACTIONS(6154), 3, + ACTIONS(5937), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [224545] = 3, + [243589] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11941), 1, + anon_sym_POUND_BANG, + ACTIONS(11943), 1, + sym__newline, + STATE(7414), 1, + sym_comment, + STATE(7618), 1, + aux_sym_shebang_repeat1, + [243605] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6886), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + STATE(7415), 1, + sym_comment, + ACTIONS(1773), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [243619] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7416), 1, sym_comment, - ACTIONS(10251), 3, + ACTIONS(11741), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224557] = 5, + [243631] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(11030), 1, + ACTIONS(6312), 1, anon_sym_RBRACK, - STATE(2864), 1, - aux_sym__multiple_types_repeat1, - STATE(6887), 1, + STATE(7417), 1, sym_comment, - [224573] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(6314), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6120), 1, - anon_sym_RBRACE, - STATE(2999), 1, - aux_sym__multiple_types_repeat1, - STATE(6888), 1, - sym_comment, - [224589] = 4, - ACTIONS(3), 1, + [243645] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11032), 1, - anon_sym_DQUOTE, - STATE(6889), 1, + STATE(7418), 1, sym_comment, - ACTIONS(11034), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224603] = 5, - ACTIONS(3), 1, + ACTIONS(10953), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243657] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - ACTIONS(5923), 1, - anon_sym_EQ_GT, - ACTIONS(5928), 1, - anon_sym_PIPE, - STATE(6890), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11945), 1, + anon_sym_RBRACK, + STATE(7419), 1, sym_comment, - [224619] = 4, + STATE(7427), 1, + aux_sym_val_binary_repeat1, + [243673] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6114), 1, + ACTIONS(6257), 1, anon_sym_RBRACK, - STATE(6891), 1, + STATE(7420), 1, sym_comment, - ACTIONS(6116), 2, + ACTIONS(6259), 2, anon_sym_LPAREN2, sym__entry_separator, - [224633] = 5, + [243687] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11036), 1, + ACTIONS(11947), 1, anon_sym_RBRACK, - STATE(6892), 1, + ACTIONS(11949), 1, + sym_hex_digit, + STATE(7421), 2, sym_comment, - STATE(6896), 1, aux_sym_val_binary_repeat1, - [224649] = 5, + [243701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token4, - STATE(6893), 1, + ACTIONS(1951), 1, + sym__entry_separator, + STATE(7422), 1, sym_comment, - STATE(7522), 1, - sym__expr_parenthesized_immediate, - [224665] = 3, - ACTIONS(251), 1, + ACTIONS(1949), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [243715] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6894), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11952), 1, + anon_sym_RBRACK, + STATE(7227), 1, + aux_sym__multiple_types_repeat1, + STATE(7423), 1, sym_comment, - ACTIONS(10431), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224677] = 5, + [243731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2456), 1, sym__entry_separator, - ACTIONS(11038), 1, + STATE(7424), 1, + sym_comment, + ACTIONS(2454), 2, anon_sym_RBRACK, - STATE(6599), 1, - aux_sym__multiple_types_repeat1, - STATE(6895), 1, + anon_sym_RBRACE, + [243745] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + STATE(7425), 1, + sym_comment, + ACTIONS(1801), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [243759] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2498), 1, + sym__entry_separator, + STATE(7426), 1, sym_comment, - [224693] = 5, + ACTIONS(2496), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [243773] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11040), 1, + ACTIONS(11954), 1, anon_sym_RBRACK, - STATE(6896), 1, - sym_comment, - STATE(7264), 1, + STATE(7421), 1, aux_sym_val_binary_repeat1, - [224709] = 3, + STATE(7427), 1, + sym_comment, + [243789] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6897), 1, + ACTIONS(1818), 1, + aux_sym_unquoted_token2, + STATE(7428), 1, sym_comment, - ACTIONS(6154), 3, + ACTIONS(1820), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [224721] = 5, + [243803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2441), 1, sym__entry_separator, - ACTIONS(11042), 1, - anon_sym_RBRACK, - STATE(6371), 1, - aux_sym__multiple_types_repeat1, - STATE(6898), 1, + STATE(7429), 1, sym_comment, - [224737] = 5, + ACTIONS(2439), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [243817] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11044), 1, + ACTIONS(11956), 1, anon_sym_RBRACK, - STATE(6372), 1, + STATE(6715), 1, aux_sym__multiple_types_repeat1, - STATE(6899), 1, + STATE(7430), 1, + sym_comment, + [243833] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7431), 1, + sym_comment, + ACTIONS(11195), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243845] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7432), 1, + sym_comment, + ACTIONS(11197), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243857] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7433), 1, sym_comment, - [224753] = 5, + ACTIONS(10987), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11046), 1, + ACTIONS(11958), 1, anon_sym_RBRACK, - STATE(6373), 1, + STATE(6716), 1, aux_sym__multiple_types_repeat1, - STATE(6900), 1, + STATE(7434), 1, sym_comment, - [224769] = 5, + [243885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11048), 1, + ACTIONS(11960), 1, anon_sym_RBRACK, - STATE(6374), 1, + STATE(6717), 1, aux_sym__multiple_types_repeat1, - STATE(6901), 1, + STATE(7435), 1, sym_comment, - [224785] = 5, + [243901] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11050), 1, + ACTIONS(11962), 1, anon_sym_RBRACK, - STATE(6375), 1, + STATE(6718), 1, aux_sym__multiple_types_repeat1, - STATE(6902), 1, + STATE(7436), 1, + sym_comment, + [243917] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7437), 1, sym_comment, - [224801] = 5, + ACTIONS(11589), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [243929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11052), 1, + ACTIONS(11964), 1, anon_sym_RBRACK, - STATE(6376), 1, + STATE(6719), 1, aux_sym__multiple_types_repeat1, - STATE(6903), 1, + STATE(7438), 1, sym_comment, - [224817] = 5, + [243945] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11054), 1, + ACTIONS(11966), 1, anon_sym_RBRACK, - STATE(6377), 1, + STATE(6720), 1, aux_sym__multiple_types_repeat1, - STATE(6904), 1, + STATE(7439), 1, sym_comment, - [224833] = 5, - ACTIONS(251), 1, + [243961] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11056), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11968), 1, anon_sym_RBRACK, - STATE(6905), 1, + STATE(6721), 1, + aux_sym__multiple_types_repeat1, + STATE(7440), 1, sym_comment, - STATE(6951), 1, - aux_sym_val_binary_repeat1, - [224849] = 5, + [243977] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11058), 1, + ACTIONS(11970), 1, anon_sym_RBRACK, - STATE(6378), 1, + STATE(6722), 1, aux_sym__multiple_types_repeat1, - STATE(6906), 1, + STATE(7441), 1, + sym_comment, + [243993] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11051), 1, + anon_sym_LPAREN, + STATE(7442), 1, + sym_comment, + ACTIONS(11053), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [244007] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(7551), 1, + aux_sym_unquoted_token4, + STATE(7443), 1, + sym_comment, + STATE(8184), 1, + sym__expr_parenthesized_immediate, + [244023] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + ACTIONS(1801), 1, + anon_sym_LBRACE, + ACTIONS(11972), 1, + aux_sym__immediate_decimal_token2, + STATE(7444), 1, + sym_comment, + [244039] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7445), 1, sym_comment, - [224865] = 5, + ACTIONS(11974), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [244051] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7446), 1, + sym_comment, + ACTIONS(11976), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [244063] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2510), 1, sym__entry_separator, - ACTIONS(11060), 1, + STATE(7447), 1, + sym_comment, + ACTIONS(2508), 2, anon_sym_RBRACK, - STATE(6536), 1, - aux_sym__multiple_types_repeat1, - STATE(6907), 1, + anon_sym_RBRACE, + [244077] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11978), 1, + anon_sym_RBRACK, + STATE(7448), 1, sym_comment, - [224881] = 3, + STATE(7454), 1, + aux_sym_val_binary_repeat1, + [244093] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6908), 1, + STATE(7449), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(11581), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224893] = 3, + [244105] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + sym__entry_separator, + STATE(7450), 1, + sym_comment, + ACTIONS(1883), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [244119] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6909), 1, + STATE(7451), 1, sym_comment, - ACTIONS(10933), 3, - ts_builtin_sym_end, + ACTIONS(11980), 3, sym__newline, anon_sym_SEMI, - [224905] = 3, + anon_sym_RPAREN, + [244131] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6910), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11982), 1, + anon_sym_RBRACK, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + STATE(7452), 1, + sym_comment, + [244147] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(7453), 1, + sym_comment, + STATE(7767), 1, + aux_sym_val_table_repeat1, + STATE(7955), 1, + sym_val_list, + [244163] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(11984), 1, + anon_sym_RBRACK, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + STATE(7454), 1, sym_comment, - ACTIONS(10129), 3, + [244179] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7455), 1, + sym_comment, + ACTIONS(11581), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224917] = 3, + [244191] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6911), 1, + STATE(7456), 1, sym_comment, - ACTIONS(11062), 3, + ACTIONS(11986), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [224929] = 4, + [244203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2094), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(6912), 1, - sym_comment, - ACTIONS(2088), 2, + ACTIONS(11988), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [224943] = 3, + STATE(6743), 1, + aux_sym__multiple_types_repeat1, + STATE(7457), 1, + sym_comment, + [244219] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6913), 1, + STATE(7458), 1, sym_comment, - ACTIONS(6176), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224955] = 4, + ACTIONS(11990), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [244231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2046), 1, + ACTIONS(1893), 1, sym__entry_separator, - STATE(6914), 1, + STATE(7459), 1, sym_comment, - ACTIONS(2044), 2, + ACTIONS(1891), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224969] = 5, + [244245] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11992), 1, + anon_sym_RBRACK, + STATE(6744), 1, + aux_sym__multiple_types_repeat1, + STATE(7460), 1, + sym_comment, + [244261] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11994), 1, + anon_sym_RBRACK, + STATE(6745), 1, + aux_sym__multiple_types_repeat1, + STATE(7461), 1, + sym_comment, + [244277] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11996), 1, + anon_sym_RBRACK, + STATE(6746), 1, + aux_sym__multiple_types_repeat1, + STATE(7462), 1, + sym_comment, + [244293] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11064), 1, + STATE(7463), 1, + sym_comment, + ACTIONS(11581), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [244305] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(11998), 1, anon_sym_RBRACK, - STATE(6915), 1, + STATE(6747), 1, + aux_sym__multiple_types_repeat1, + STATE(7464), 1, sym_comment, - STATE(6919), 1, - aux_sym_val_binary_repeat1, - [224985] = 3, + [244321] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12000), 1, + anon_sym_RBRACK, + STATE(6748), 1, + aux_sym__multiple_types_repeat1, + STATE(7465), 1, + sym_comment, + [244337] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12002), 1, + anon_sym_RBRACK, + STATE(6749), 1, + aux_sym__multiple_types_repeat1, + STATE(7466), 1, + sym_comment, + [244353] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12004), 1, + anon_sym_RBRACK, + STATE(6750), 1, + aux_sym__multiple_types_repeat1, + STATE(7467), 1, + sym_comment, + [244369] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6916), 1, + STATE(7468), 1, sym_comment, - ACTIONS(10457), 3, + ACTIONS(11141), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224997] = 4, + [244381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(5832), 1, sym__entry_separator, - STATE(6917), 1, + STATE(7469), 1, + sym_comment, + ACTIONS(5830), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [244395] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + sym__entry_separator, + STATE(7470), 1, sym_comment, - ACTIONS(2509), 2, + ACTIONS(1895), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [225011] = 5, + [244409] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10009), 1, - anon_sym_if, - ACTIONS(11066), 1, - anon_sym_EQ_GT, - STATE(6918), 1, + STATE(7471), 1, sym_comment, - STATE(7839), 1, - sym_match_guard, - [225027] = 5, + ACTIONS(11733), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [244421] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11068), 1, + ACTIONS(12006), 1, anon_sym_RBRACK, - STATE(6919), 1, + STATE(7472), 1, sym_comment, - STATE(7264), 1, + STATE(7476), 1, aux_sym_val_binary_repeat1, - [225043] = 3, + [244437] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6920), 1, + STATE(7473), 1, sym_comment, - ACTIONS(10457), 3, + ACTIONS(11215), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225055] = 5, + [244449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11070), 1, + ACTIONS(12008), 1, anon_sym_RBRACK, - STATE(6390), 1, + STATE(3634), 1, aux_sym__multiple_types_repeat1, - STATE(6921), 1, + STATE(7474), 1, + sym_comment, + [244465] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(12010), 1, + anon_sym_GT2, + STATE(5911), 1, + aux_sym__multiple_types_repeat1, + STATE(7475), 1, sym_comment, - [225071] = 3, + [244481] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6922), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(12012), 1, + anon_sym_RBRACK, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + STATE(7476), 1, sym_comment, - ACTIONS(10131), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225083] = 4, + [244497] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2249), 1, + ACTIONS(1034), 1, + sym__newline, + ACTIONS(1036), 1, sym__space, - STATE(6923), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(7477), 1, + sym_comment, + [244513] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12014), 1, + anon_sym_RBRACK, + STATE(6773), 1, + aux_sym__multiple_types_repeat1, + STATE(7478), 1, + sym_comment, + [244529] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7479), 1, + sym_comment, + ACTIONS(2520), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [244541] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7480), 1, sym_comment, - ACTIONS(2247), 2, + ACTIONS(11799), 3, + ts_builtin_sym_end, sym__newline, - aux_sym_unquoted_token4, - [225097] = 5, + anon_sym_SEMI, + [244553] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11072), 1, + ACTIONS(12016), 1, anon_sym_RBRACK, - STATE(6391), 1, + STATE(6774), 1, aux_sym__multiple_types_repeat1, - STATE(6924), 1, + STATE(7481), 1, sym_comment, - [225113] = 5, + [244569] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11074), 1, + ACTIONS(12018), 1, anon_sym_RBRACK, - STATE(6392), 1, + STATE(6775), 1, aux_sym__multiple_types_repeat1, - STATE(6925), 1, + STATE(7482), 1, sym_comment, - [225129] = 5, + [244585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11076), 1, + ACTIONS(12020), 1, anon_sym_RBRACK, - STATE(6393), 1, + STATE(6776), 1, aux_sym__multiple_types_repeat1, - STATE(6926), 1, - sym_comment, - [225145] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(6927), 1, + STATE(7483), 1, sym_comment, - ACTIONS(2280), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [225159] = 5, + [244601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11078), 1, + ACTIONS(12022), 1, anon_sym_RBRACK, - STATE(6394), 1, + STATE(6777), 1, aux_sym__multiple_types_repeat1, - STATE(6928), 1, - sym_comment, - [225175] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6929), 1, + STATE(7484), 1, sym_comment, - ACTIONS(10515), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225187] = 5, + [244617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11080), 1, + ACTIONS(12024), 1, anon_sym_RBRACK, - STATE(6395), 1, + STATE(6778), 1, aux_sym__multiple_types_repeat1, - STATE(6930), 1, + STATE(7485), 1, sym_comment, - [225203] = 5, + [244633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11082), 1, + ACTIONS(12026), 1, anon_sym_RBRACK, - STATE(6396), 1, + STATE(6779), 1, aux_sym__multiple_types_repeat1, - STATE(6931), 1, + STATE(7486), 1, sym_comment, - [225219] = 4, - ACTIONS(3), 1, + [244649] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1959), 1, - sym__entry_separator, - STATE(6932), 1, + ACTIONS(3919), 1, + sym__newline, + ACTIONS(12028), 1, + anon_sym_COLON, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(7487), 1, sym_comment, - ACTIONS(1957), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225233] = 5, + [244665] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11084), 1, + ACTIONS(12030), 1, anon_sym_RBRACK, - STATE(6397), 1, + STATE(6780), 1, aux_sym__multiple_types_repeat1, - STATE(6933), 1, + STATE(7488), 1, sym_comment, - [225249] = 3, + [244681] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6934), 1, + STATE(7489), 1, sym_comment, - ACTIONS(10115), 3, + ACTIONS(11581), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225261] = 5, - ACTIONS(3), 1, + [244693] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(11086), 1, - anon_sym_RBRACE, - STATE(2937), 1, - aux_sym__multiple_types_repeat1, - STATE(6935), 1, + STATE(7490), 1, sym_comment, - [225277] = 4, + ACTIONS(11581), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [244705] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(6936), 1, - sym_comment, - ACTIONS(1836), 2, - anon_sym_PIPE, + ACTIONS(10785), 1, + anon_sym_if, + ACTIONS(12032), 1, anon_sym_EQ_GT, - [225291] = 5, - ACTIONS(3), 1, + STATE(7491), 1, + sym_comment, + STATE(8274), 1, + sym_match_guard, + [244721] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3573), 1, - sym__newline, - ACTIONS(3575), 1, - sym__space, - STATE(1169), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6937), 1, + STATE(7492), 1, sym_comment, - [225307] = 3, + ACTIONS(11648), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [244733] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6938), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(12034), 1, + anon_sym_RBRACK, + STATE(7493), 1, sym_comment, - ACTIONS(11088), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225319] = 5, + STATE(7524), 1, + aux_sym_val_binary_repeat1, + [244749] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11090), 1, + ACTIONS(12036), 1, anon_sym_RBRACK, - STATE(6939), 1, + STATE(7494), 1, sym_comment, - STATE(6943), 1, + STATE(7498), 1, aux_sym_val_binary_repeat1, - [225335] = 5, + [244765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4922), 1, - aux_sym_unquoted_token4, - STATE(6940), 1, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(12038), 1, + anon_sym_RBRACK, + STATE(2988), 1, + aux_sym__multiple_types_repeat1, + STATE(7495), 1, sym_comment, - STATE(7577), 1, - sym__expr_parenthesized_immediate, - [225351] = 4, + [244781] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - STATE(6941), 1, - sym_comment, - ACTIONS(1787), 2, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(6436), 1, anon_sym_LBRACE, - anon_sym_LPAREN2, - [225365] = 3, - ACTIONS(251), 1, + STATE(7056), 1, + sym_block, + STATE(7496), 1, + sym_comment, + [244797] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6942), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12040), 1, + anon_sym_RBRACK, + STATE(7193), 1, + aux_sym__multiple_types_repeat1, + STATE(7497), 1, sym_comment, - ACTIONS(5918), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225377] = 5, + [244813] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11092), 1, + ACTIONS(12042), 1, anon_sym_RBRACK, - STATE(6943), 1, - sym_comment, - STATE(7264), 1, + STATE(7421), 1, aux_sym_val_binary_repeat1, - [225393] = 3, + STATE(7498), 1, + sym_comment, + [244829] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6944), 1, + STATE(7499), 1, sym_comment, - ACTIONS(6158), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225405] = 5, + ACTIONS(11805), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [244841] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11094), 1, + ACTIONS(12044), 1, anon_sym_RBRACK, - STATE(6411), 1, + STATE(6804), 1, aux_sym__multiple_types_repeat1, - STATE(6945), 1, + STATE(7500), 1, sym_comment, - [225421] = 4, + [244857] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, - sym__entry_separator, - STATE(6946), 1, + STATE(7501), 1, sym_comment, - ACTIONS(2469), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225435] = 5, + ACTIONS(2242), 3, + sym_identifier, + anon_sym_DOLLAR, + aux_sym_unquoted_token4, + [244869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11096), 1, + ACTIONS(12046), 1, anon_sym_RBRACK, - STATE(6412), 1, + STATE(6805), 1, aux_sym__multiple_types_repeat1, - STATE(6947), 1, + STATE(7502), 1, sym_comment, - [225451] = 5, + [244885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11098), 1, + ACTIONS(12048), 1, anon_sym_RBRACK, - STATE(6413), 1, + STATE(6806), 1, aux_sym__multiple_types_repeat1, - STATE(6948), 1, + STATE(7503), 1, sym_comment, - [225467] = 5, + [244901] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11100), 1, + ACTIONS(12050), 1, anon_sym_RBRACK, - STATE(6414), 1, + STATE(6807), 1, aux_sym__multiple_types_repeat1, - STATE(6949), 1, + STATE(7504), 1, + sym_comment, + [244917] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(12052), 1, + anon_sym_RBRACE, + STATE(3104), 1, + aux_sym__multiple_types_repeat1, + STATE(7505), 1, sym_comment, - [225483] = 5, + [244933] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11102), 1, + ACTIONS(12054), 1, anon_sym_RBRACK, - STATE(6415), 1, + STATE(6808), 1, aux_sym__multiple_types_repeat1, - STATE(6950), 1, + STATE(7506), 1, sym_comment, - [225499] = 5, + [244949] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11104), 1, - anon_sym_RBRACK, - STATE(6951), 1, + STATE(7507), 1, sym_comment, - STATE(7264), 1, - aux_sym_val_binary_repeat1, - [225515] = 5, + ACTIONS(9560), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [244961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11106), 1, + ACTIONS(12056), 1, anon_sym_RBRACK, - STATE(6416), 1, + STATE(6809), 1, aux_sym__multiple_types_repeat1, - STATE(6952), 1, + STATE(7508), 1, sym_comment, - [225531] = 5, + [244977] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11108), 1, + ACTIONS(12058), 1, anon_sym_RBRACK, - STATE(6417), 1, + STATE(6810), 1, aux_sym__multiple_types_repeat1, - STATE(6953), 1, - sym_comment, - [225547] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6954), 1, + STATE(7509), 1, sym_comment, - ACTIONS(10131), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225559] = 3, + [244993] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6955), 1, + STATE(7510), 1, sym_comment, - ACTIONS(6162), 3, + ACTIONS(12060), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [225571] = 5, + [245005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11110), 1, + ACTIONS(12062), 1, anon_sym_RBRACK, - STATE(6737), 1, + STATE(6811), 1, aux_sym__multiple_types_repeat1, - STATE(6956), 1, + STATE(7511), 1, sym_comment, - [225587] = 5, - ACTIONS(3), 1, + [245021] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11112), 1, - anon_sym_RBRACK, - STATE(6702), 1, - aux_sym__multiple_types_repeat1, - STATE(6957), 1, + STATE(7512), 1, sym_comment, - [225603] = 5, + ACTIONS(6378), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [245033] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(6958), 1, + STATE(7513), 1, sym_comment, - STATE(7300), 1, - sym_val_list, - STATE(7303), 1, - aux_sym_val_table_repeat1, - [225619] = 3, + ACTIONS(6378), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [245045] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6959), 1, + STATE(7514), 1, sym_comment, - ACTIONS(10127), 3, + ACTIONS(10951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225631] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2451), 1, - sym__entry_separator, - STATE(6960), 1, - sym_comment, - ACTIONS(2449), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225645] = 3, + [245057] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6961), 1, + STATE(7515), 1, sym_comment, - ACTIONS(10127), 3, + ACTIONS(10931), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225657] = 5, + [245069] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11114), 1, - anon_sym_RBRACK, - STATE(6962), 1, + STATE(7516), 1, sym_comment, - STATE(6966), 1, - aux_sym_val_binary_repeat1, - [225673] = 3, + ACTIONS(10941), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [245081] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6963), 1, + STATE(7517), 1, sym_comment, - ACTIONS(10127), 3, + ACTIONS(11735), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225685] = 3, + [245093] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6964), 1, + STATE(7518), 1, sym_comment, - ACTIONS(10127), 3, + ACTIONS(11735), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225697] = 3, + [245105] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6965), 1, + STATE(7519), 1, sym_comment, - ACTIONS(11116), 3, + ACTIONS(11581), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [225709] = 5, + [245117] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11118), 1, + ACTIONS(12064), 1, anon_sym_RBRACK, - STATE(6966), 1, + STATE(7520), 1, sym_comment, - STATE(7264), 1, + STATE(7522), 1, aux_sym_val_binary_repeat1, - [225725] = 5, + [245133] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11120), 1, - anon_sym_RBRACK, - STATE(6430), 1, - aux_sym__multiple_types_repeat1, - STATE(6967), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(5061), 1, + aux_sym_unquoted_token4, + STATE(7521), 1, sym_comment, - [225741] = 3, + STATE(8150), 1, + sym__expr_parenthesized_immediate, + [245149] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6968), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(12066), 1, + anon_sym_RBRACK, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + STATE(7522), 1, sym_comment, - ACTIONS(5928), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225753] = 3, + [245165] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12068), 1, + anon_sym_RBRACK, + STATE(6830), 1, + aux_sym__multiple_types_repeat1, + STATE(7523), 1, + sym_comment, + [245181] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6969), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(12070), 1, + anon_sym_RBRACK, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + STATE(7524), 1, sym_comment, - ACTIONS(10129), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225765] = 5, + [245197] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11122), 1, + ACTIONS(12072), 1, anon_sym_RBRACK, - STATE(6431), 1, + STATE(6831), 1, aux_sym__multiple_types_repeat1, - STATE(6970), 1, + STATE(7525), 1, sym_comment, - [225781] = 5, + [245213] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11124), 1, + ACTIONS(12074), 1, anon_sym_RBRACK, - STATE(6432), 1, + STATE(6832), 1, aux_sym__multiple_types_repeat1, - STATE(6971), 1, + STATE(7526), 1, sym_comment, - [225797] = 5, + [245229] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11126), 1, + ACTIONS(12076), 1, anon_sym_RBRACK, - STATE(6433), 1, + STATE(6833), 1, aux_sym__multiple_types_repeat1, - STATE(6972), 1, + STATE(7527), 1, + sym_comment, + [245245] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7528), 1, sym_comment, - [225813] = 5, + ACTIONS(11743), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [245257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11128), 1, + ACTIONS(12078), 1, anon_sym_RBRACK, - STATE(6434), 1, + STATE(6834), 1, aux_sym__multiple_types_repeat1, - STATE(6973), 1, + STATE(7529), 1, sym_comment, - [225829] = 5, + [245273] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2282), 1, - sym__newline, - ACTIONS(2286), 1, - sym__space, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(6974), 1, + ACTIONS(2522), 1, + sym__entry_separator, + STATE(7530), 1, sym_comment, - [225845] = 5, - ACTIONS(251), 1, + ACTIONS(2520), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [245287] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4970), 1, - anon_sym_in2, - ACTIONS(11130), 1, - sym_long_flag_identifier, - ACTIONS(11132), 1, - anon_sym_EQ2, - STATE(6975), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12080), 1, + anon_sym_RBRACK, + STATE(6835), 1, + aux_sym__multiple_types_repeat1, + STATE(7531), 1, sym_comment, - [225861] = 5, + [245303] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11134), 1, + ACTIONS(12082), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6836), 1, aux_sym__multiple_types_repeat1, - STATE(6976), 1, + STATE(7532), 1, sym_comment, - [225877] = 5, + [245319] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11136), 1, + ACTIONS(12084), 1, anon_sym_RBRACK, - STATE(6436), 1, + STATE(7137), 1, aux_sym__multiple_types_repeat1, - STATE(6977), 1, + STATE(7533), 1, sym_comment, - [225893] = 3, + [245335] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6978), 1, + ACTIONS(6491), 1, + anon_sym_AT, + ACTIONS(12086), 1, + anon_sym_GT2, + STATE(7534), 1, sym_comment, - ACTIONS(10127), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225905] = 5, + STATE(8301), 1, + sym_param_cmd, + [245351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11138), 1, + ACTIONS(12088), 1, anon_sym_RBRACK, - STATE(6437), 1, + STATE(6837), 1, aux_sym__multiple_types_repeat1, - STATE(6979), 1, + STATE(7535), 1, sym_comment, - [225921] = 3, + [245367] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6980), 1, + STATE(7536), 1, sym_comment, - ACTIONS(10127), 3, + ACTIONS(11581), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225933] = 3, - ACTIONS(251), 1, + [245379] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6981), 1, + ACTIONS(2472), 1, + sym__entry_separator, + STATE(7537), 1, sym_comment, - ACTIONS(10127), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225945] = 3, + ACTIONS(2470), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [245393] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6982), 1, + STATE(7538), 1, sym_comment, - ACTIONS(10127), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225957] = 4, - ACTIONS(3), 1, + ACTIONS(6382), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [245405] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2249), 1, + STATE(7539), 1, + sym_comment, + ACTIONS(6092), 3, anon_sym_PIPE, - STATE(6983), 1, + anon_sym_if, + anon_sym_EQ_GT, + [245417] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7540), 1, sym_comment, - ACTIONS(2247), 2, + ACTIONS(6354), 3, + anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [225971] = 3, + [245429] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6984), 1, + STATE(7541), 1, sym_comment, - ACTIONS(10345), 3, + ACTIONS(11743), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225983] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2427), 1, - sym__entry_separator, - STATE(6985), 1, - sym_comment, - ACTIONS(2425), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225997] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5747), 1, - sym__entry_separator, - ACTIONS(11140), 1, - anon_sym_RBRACK, - STATE(2685), 1, - aux_sym__multiple_types_repeat1, - STATE(6986), 1, - sym_comment, - [226013] = 5, + [245441] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11142), 1, + ACTIONS(12090), 1, anon_sym_RBRACK, - STATE(6987), 1, + STATE(7542), 1, sym_comment, - STATE(6992), 1, + STATE(7546), 1, aux_sym_val_binary_repeat1, - [226029] = 3, + [245457] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6988), 1, + STATE(7543), 1, sym_comment, - ACTIONS(10345), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226041] = 3, + ACTIONS(6358), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [245469] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6989), 1, + STATE(7544), 1, sym_comment, - ACTIONS(10345), 3, + ACTIONS(11581), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226053] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(7311), 1, - aux_sym__unquoted_in_list_token4, - STATE(6990), 1, - sym_comment, - STATE(7474), 1, - sym__expr_parenthesized_immediate, - [226069] = 5, + [245481] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4932), 1, - anon_sym_in2, - ACTIONS(11144), 1, - anon_sym_EQ2, - ACTIONS(11146), 1, - sym_short_flag_identifier, - STATE(6991), 1, + STATE(7545), 1, sym_comment, - [226085] = 5, + ACTIONS(11652), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [245493] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11148), 1, + ACTIONS(12092), 1, anon_sym_RBRACK, - STATE(6992), 1, - sym_comment, - STATE(7264), 1, + STATE(7421), 1, aux_sym_val_binary_repeat1, - [226101] = 4, + STATE(7546), 1, + sym_comment, + [245509] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - STATE(6993), 1, + STATE(7547), 1, sym_comment, - ACTIONS(1803), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [226115] = 5, + ACTIONS(6099), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [245521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11150), 1, + ACTIONS(12094), 1, anon_sym_RBRACK, - STATE(6445), 1, + STATE(6853), 1, aux_sym__multiple_types_repeat1, - STATE(6994), 1, + STATE(7548), 1, sym_comment, - [226131] = 3, - ACTIONS(251), 1, + [245537] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6995), 1, + ACTIONS(2460), 1, + sym__entry_separator, + STATE(7549), 1, sym_comment, - ACTIONS(10345), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226143] = 5, + ACTIONS(2458), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [245551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11152), 1, + ACTIONS(12096), 1, anon_sym_RBRACK, - STATE(6446), 1, + STATE(6854), 1, aux_sym__multiple_types_repeat1, - STATE(6996), 1, + STATE(7550), 1, sym_comment, - [226159] = 5, + [245567] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11154), 1, + ACTIONS(12098), 1, anon_sym_RBRACK, - STATE(6447), 1, + STATE(6855), 1, aux_sym__multiple_types_repeat1, - STATE(6997), 1, + STATE(7551), 1, sym_comment, - [226175] = 5, + [245583] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11156), 1, + ACTIONS(12100), 1, anon_sym_RBRACK, - STATE(6448), 1, + STATE(6856), 1, aux_sym__multiple_types_repeat1, - STATE(6998), 1, + STATE(7552), 1, sym_comment, - [226191] = 3, - ACTIONS(251), 1, + [245599] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6999), 1, + ACTIONS(5828), 1, + sym__entry_separator, + STATE(7553), 1, sym_comment, - ACTIONS(10345), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226203] = 5, + ACTIONS(5826), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [245613] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11158), 1, + ACTIONS(12102), 1, anon_sym_RBRACK, - STATE(6449), 1, + STATE(6857), 1, aux_sym__multiple_types_repeat1, - STATE(7000), 1, + STATE(7554), 1, sym_comment, - [226219] = 4, - ACTIONS(3), 1, + [245629] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2431), 1, - sym__entry_separator, - STATE(7001), 1, + STATE(7555), 1, sym_comment, - ACTIONS(2429), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226233] = 5, + ACTIONS(12104), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [245641] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11160), 1, + ACTIONS(12106), 1, anon_sym_RBRACK, - STATE(6450), 1, + STATE(6858), 1, aux_sym__multiple_types_repeat1, - STATE(7002), 1, + STATE(7556), 1, sym_comment, - [226249] = 5, + [245657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11162), 1, + ACTIONS(12108), 1, anon_sym_RBRACK, - STATE(6451), 1, + STATE(6859), 1, aux_sym__multiple_types_repeat1, - STATE(7003), 1, + STATE(7557), 1, sym_comment, - [226265] = 3, + [245673] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7004), 1, + STATE(7558), 1, sym_comment, - ACTIONS(10866), 3, + ACTIONS(11743), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226277] = 3, - ACTIONS(251), 1, + [245685] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7005), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12110), 1, + anon_sym_RBRACK, + STATE(6860), 1, + aux_sym__multiple_types_repeat1, + STATE(7559), 1, sym_comment, - ACTIONS(10345), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226289] = 5, + [245701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2464), 1, sym__entry_separator, - ACTIONS(11164), 1, + STATE(7560), 1, + sym_comment, + ACTIONS(2462), 2, anon_sym_RBRACK, - STATE(6452), 1, + anon_sym_RBRACE, + [245715] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2468), 1, + sym__entry_separator, + STATE(7561), 1, + sym_comment, + ACTIONS(2466), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [245729] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3571), 1, + sym__newline, + ACTIONS(3573), 1, + sym__space, + STATE(1165), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7562), 1, + sym_comment, + [245745] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(12112), 1, + anon_sym_GT2, + STATE(5889), 1, aux_sym__multiple_types_repeat1, - STATE(7006), 1, + STATE(7563), 1, sym_comment, - [226305] = 3, + [245761] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7007), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + STATE(7564), 1, sym_comment, - ACTIONS(10822), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226317] = 3, - ACTIONS(251), 1, + ACTIONS(1838), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [245775] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7008), 1, + ACTIONS(2409), 1, + sym__entry_separator, + STATE(7565), 1, sym_comment, - ACTIONS(10822), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226329] = 3, - ACTIONS(251), 1, + ACTIONS(2407), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [245789] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7009), 1, + ACTIONS(2413), 1, + sym__entry_separator, + STATE(7566), 1, sym_comment, - ACTIONS(10842), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226341] = 3, - ACTIONS(251), 1, + ACTIONS(2411), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [245803] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7010), 1, + ACTIONS(2417), 1, + sym__entry_separator, + STATE(7567), 1, sym_comment, - ACTIONS(11166), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [226353] = 5, + ACTIONS(2415), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [245817] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11168), 1, + ACTIONS(12114), 1, anon_sym_RBRACK, - STATE(7011), 1, + STATE(7568), 1, sym_comment, - STATE(7015), 1, + STATE(7572), 1, aux_sym_val_binary_repeat1, - [226369] = 3, + [245833] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7012), 1, + STATE(7569), 1, sym_comment, - ACTIONS(10345), 3, + ACTIONS(11591), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226381] = 3, + [245845] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7013), 1, + STATE(7570), 1, sym_comment, - ACTIONS(10345), 3, + ACTIONS(11591), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226393] = 3, + [245857] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7014), 1, + STATE(7571), 1, sym_comment, - ACTIONS(10822), 3, + ACTIONS(11591), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226405] = 5, + [245869] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11170), 1, + ACTIONS(12116), 1, anon_sym_RBRACK, - STATE(7015), 1, - sym_comment, - STATE(7264), 1, + STATE(7421), 1, aux_sym_val_binary_repeat1, - [226421] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11172), 1, - anon_sym_RBRACK, - STATE(6464), 1, - aux_sym__multiple_types_repeat1, - STATE(7016), 1, + STATE(7572), 1, sym_comment, - [226437] = 3, + [245885] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7017), 1, + STATE(7573), 1, sym_comment, - ACTIONS(10213), 3, + ACTIONS(11591), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226449] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11174), 1, - anon_sym_RBRACK, - STATE(6465), 1, - aux_sym__multiple_types_repeat1, - STATE(7018), 1, - sym_comment, - [226465] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11176), 1, - anon_sym_RBRACK, - STATE(6466), 1, - aux_sym__multiple_types_repeat1, - STATE(7019), 1, - sym_comment, - [226481] = 5, + [245897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11178), 1, + ACTIONS(12118), 1, anon_sym_RBRACK, - STATE(6467), 1, + STATE(6874), 1, aux_sym__multiple_types_repeat1, - STATE(7020), 1, + STATE(7574), 1, sym_comment, - [226497] = 3, + [245913] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7021), 1, + STATE(7575), 1, sym_comment, - ACTIONS(10215), 3, + ACTIONS(11591), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226509] = 5, + [245925] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11180), 1, + ACTIONS(12120), 1, anon_sym_RBRACK, - STATE(6468), 1, + STATE(6875), 1, aux_sym__multiple_types_repeat1, - STATE(7022), 1, - sym_comment, - [226525] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - ACTIONS(1709), 1, - aux_sym__unquoted_in_record_token4, - STATE(7023), 1, + STATE(7576), 1, sym_comment, - STATE(7686), 1, - sym__expr_parenthesized_immediate, - [226541] = 5, + [245941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11182), 1, + ACTIONS(12122), 1, anon_sym_RBRACK, - STATE(6469), 1, + STATE(6876), 1, aux_sym__multiple_types_repeat1, - STATE(7024), 1, + STATE(7577), 1, sym_comment, - [226557] = 5, + [245957] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11184), 1, + ACTIONS(12124), 1, anon_sym_RBRACK, - STATE(6470), 1, + STATE(6877), 1, aux_sym__multiple_types_repeat1, - STATE(7025), 1, - sym_comment, - [226573] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7026), 1, + STATE(7578), 1, sym_comment, - ACTIONS(10169), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226585] = 5, + [245973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11186), 1, + ACTIONS(12126), 1, anon_sym_RBRACK, - STATE(6471), 1, + STATE(6878), 1, aux_sym__multiple_types_repeat1, - STATE(7027), 1, + STATE(7579), 1, sym_comment, - [226601] = 3, + [245989] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7028), 1, + STATE(7580), 1, sym_comment, - ACTIONS(10179), 3, + ACTIONS(9564), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226613] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7029), 1, - sym_comment, - ACTIONS(11188), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [226625] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11190), 1, - anon_sym_RBRACK, - STATE(6738), 1, - aux_sym__multiple_types_repeat1, - STATE(7030), 1, - sym_comment, - [226641] = 5, + [246001] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11192), 1, + ACTIONS(12128), 1, anon_sym_RBRACK, - STATE(6741), 1, + STATE(6879), 1, aux_sym__multiple_types_repeat1, - STATE(7031), 1, + STATE(7581), 1, sym_comment, - [226657] = 5, + [246017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11194), 1, + ACTIONS(12130), 1, anon_sym_RBRACK, - STATE(6742), 1, + STATE(6880), 1, aux_sym__multiple_types_repeat1, - STATE(7032), 1, + STATE(7582), 1, sym_comment, - [226673] = 5, + [246033] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11196), 1, + ACTIONS(12132), 1, anon_sym_RBRACK, - STATE(3442), 1, + STATE(6881), 1, aux_sym__multiple_types_repeat1, - STATE(7033), 1, + STATE(7583), 1, sym_comment, - [226689] = 5, + [246049] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(11198), 1, - anon_sym_RBRACK, - STATE(2822), 1, - aux_sym__multiple_types_repeat1, - STATE(7034), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(1795), 1, + aux_sym__unquoted_in_record_token4, + STATE(7584), 1, sym_comment, - [226705] = 5, + STATE(7982), 1, + sym__expr_parenthesized_immediate, + [246065] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11200), 1, - anon_sym_RBRACK, - STATE(7035), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(7585), 1, sym_comment, - STATE(7038), 1, - aux_sym_val_binary_repeat1, - [226721] = 3, + ACTIONS(1699), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [246079] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7036), 1, + STATE(7586), 1, sym_comment, - ACTIONS(10822), 3, + ACTIONS(11591), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226733] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11202), 1, - anon_sym_RBRACK, - STATE(7037), 1, - sym_comment, - STATE(7211), 1, - aux_sym_val_binary_repeat1, - [226749] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11204), 1, - anon_sym_RBRACK, - STATE(7038), 1, - sym_comment, - STATE(7264), 1, - aux_sym_val_binary_repeat1, - [226765] = 5, + [246091] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11206), 1, + ACTIONS(12134), 1, anon_sym_RBRACK, - STATE(6483), 1, + STATE(6900), 1, aux_sym__multiple_types_repeat1, - STATE(7039), 1, + STATE(7587), 1, sym_comment, - [226781] = 3, + [246107] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7040), 1, + STATE(7588), 1, sym_comment, - ACTIONS(10177), 3, + ACTIONS(11267), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226793] = 5, + [246119] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11208), 1, + ACTIONS(12136), 1, anon_sym_RBRACK, - STATE(6484), 1, + STATE(7263), 1, aux_sym__multiple_types_repeat1, - STATE(7041), 1, + STATE(7589), 1, sym_comment, - [226809] = 5, + [246135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11210), 1, + ACTIONS(12138), 1, anon_sym_RBRACK, - STATE(6485), 1, + STATE(7268), 1, aux_sym__multiple_types_repeat1, - STATE(7042), 1, + STATE(7590), 1, sym_comment, - [226825] = 5, + [246151] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11212), 1, + ACTIONS(12140), 1, anon_sym_RBRACK, - STATE(6486), 1, + STATE(7269), 1, aux_sym__multiple_types_repeat1, - STATE(7043), 1, + STATE(7591), 1, sym_comment, - [226841] = 5, + [246167] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11214), 1, + ACTIONS(12142), 1, anon_sym_RBRACK, - STATE(6487), 1, + STATE(6891), 1, aux_sym__multiple_types_repeat1, - STATE(7044), 1, + STATE(7592), 1, sym_comment, - [226857] = 3, + [246183] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7045), 1, - sym_comment, - ACTIONS(2413), 3, - anon_sym_RBRACK, + ACTIONS(9699), 1, sym__entry_separator, - sym__table_head_separator, - [226869] = 3, + ACTIONS(12144), 1, + anon_sym_GT2, + STATE(5987), 1, + aux_sym__multiple_types_repeat1, + STATE(7593), 1, + sym_comment, + [246199] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7046), 1, + STATE(7594), 1, sym_comment, - ACTIONS(10219), 3, + ACTIONS(11595), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226881] = 5, + [246211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11216), 1, + ACTIONS(12146), 1, anon_sym_RBRACK, - STATE(6488), 1, + STATE(6892), 1, aux_sym__multiple_types_repeat1, - STATE(7047), 1, + STATE(7595), 1, sym_comment, - [226897] = 5, + [246227] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11218), 1, + ACTIONS(12148), 1, anon_sym_RBRACK, - STATE(6489), 1, + STATE(6893), 1, aux_sym__multiple_types_repeat1, - STATE(7048), 1, - sym_comment, - [226913] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7049), 1, + STATE(7596), 1, sym_comment, - ACTIONS(10275), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226925] = 5, + [246243] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11220), 1, + ACTIONS(12150), 1, anon_sym_RBRACK, - STATE(6490), 1, + STATE(6894), 1, aux_sym__multiple_types_repeat1, - STATE(7050), 1, - sym_comment, - [226941] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11222), 1, - anon_sym_RBRACK, - STATE(7051), 1, + STATE(7597), 1, sym_comment, - STATE(7053), 1, - aux_sym_val_binary_repeat1, - [226957] = 5, + [246259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11224), 1, - anon_sym_RBRACE, - STATE(574), 1, + ACTIONS(12152), 1, + anon_sym_RBRACK, + STATE(6895), 1, aux_sym__multiple_types_repeat1, - STATE(7052), 1, + STATE(7598), 1, sym_comment, - [226973] = 5, + [246275] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11226), 1, - anon_sym_RBRACK, - STATE(7053), 1, + STATE(7599), 1, sym_comment, - STATE(7264), 1, - aux_sym_val_binary_repeat1, - [226989] = 5, + ACTIONS(11595), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [246287] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11228), 1, + ACTIONS(12154), 1, anon_sym_RBRACK, - STATE(6499), 1, + STATE(6896), 1, aux_sym__multiple_types_repeat1, - STATE(7054), 1, + STATE(7600), 1, sym_comment, - [227005] = 4, + [246303] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(7055), 1, - sym_comment, - ACTIONS(2395), 2, + ACTIONS(12156), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [227019] = 5, + STATE(6897), 1, + aux_sym__multiple_types_repeat1, + STATE(7601), 1, + sym_comment, + [246319] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7602), 1, + sym_comment, + ACTIONS(10951), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [246331] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11230), 1, + ACTIONS(12158), 1, anon_sym_RBRACK, - STATE(6500), 1, + STATE(6898), 1, aux_sym__multiple_types_repeat1, - STATE(7056), 1, + STATE(7603), 1, + sym_comment, + [246347] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7604), 1, sym_comment, - [227035] = 5, + ACTIONS(11591), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [246359] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11232), 1, + ACTIONS(12160), 1, anon_sym_RBRACK, - STATE(6501), 1, + STATE(6908), 1, aux_sym__multiple_types_repeat1, - STATE(7057), 1, + STATE(7605), 1, sym_comment, - [227051] = 5, + [246375] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11234), 1, + ACTIONS(12162), 1, anon_sym_RBRACK, - STATE(6502), 1, + STATE(6909), 1, aux_sym__multiple_types_repeat1, - STATE(7058), 1, + STATE(7606), 1, sym_comment, - [227067] = 5, + [246391] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11236), 1, + ACTIONS(12164), 1, anon_sym_RBRACK, - STATE(6503), 1, + STATE(6910), 1, aux_sym__multiple_types_repeat1, - STATE(7059), 1, - sym_comment, - [227083] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3907), 1, - sym__newline, - ACTIONS(11238), 1, - anon_sym_COLON, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(7060), 1, + STATE(7607), 1, sym_comment, - [227099] = 5, + [246407] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11240), 1, + ACTIONS(12166), 1, anon_sym_RBRACK, - STATE(6504), 1, + STATE(6911), 1, aux_sym__multiple_types_repeat1, - STATE(7061), 1, + STATE(7608), 1, sym_comment, - [227115] = 5, + [246423] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11242), 1, + ACTIONS(12168), 1, anon_sym_RBRACK, - STATE(6505), 1, + STATE(6912), 1, aux_sym__multiple_types_repeat1, - STATE(7062), 1, + STATE(7609), 1, sym_comment, - [227131] = 5, - ACTIONS(3), 1, + [246439] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11244), 1, - anon_sym_POUND_BANG, - ACTIONS(11246), 1, - sym__newline, - STATE(7063), 1, + STATE(7610), 1, sym_comment, - STATE(7283), 1, - aux_sym_shebang_repeat1, - [227147] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5030), 1, - sym__space, - ACTIONS(5032), 1, + ACTIONS(11591), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(11248), 1, - anon_sym_EQ2, - STATE(7064), 1, - sym_comment, - [227163] = 5, + anon_sym_SEMI, + [246451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11250), 1, + ACTIONS(12170), 1, anon_sym_RBRACK, - STATE(6506), 1, + STATE(6913), 1, aux_sym__multiple_types_repeat1, - STATE(7065), 1, + STATE(7611), 1, sym_comment, - [227179] = 4, + [246467] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2187), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(7066), 1, - sym_comment, - ACTIONS(2181), 2, + ACTIONS(12172), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [227193] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7067), 1, - sym_comment, - ACTIONS(10279), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227205] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7068), 1, - sym_comment, - ACTIONS(10655), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227217] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7069), 1, + STATE(6914), 1, + aux_sym__multiple_types_repeat1, + STATE(7612), 1, sym_comment, - ACTIONS(10939), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227229] = 3, + [246483] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7070), 1, + STATE(7613), 1, sym_comment, - ACTIONS(10697), 3, - ts_builtin_sym_end, + ACTIONS(12174), 3, sym__newline, anon_sym_SEMI, - [227241] = 3, + anon_sym_RPAREN, + [246495] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7071), 1, + STATE(7614), 1, sym_comment, - ACTIONS(10183), 3, + ACTIONS(10973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227253] = 5, - ACTIONS(251), 1, + [246507] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11252), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12176), 1, anon_sym_RBRACK, - STATE(7072), 1, + STATE(6915), 1, + aux_sym__multiple_types_repeat1, + STATE(7615), 1, sym_comment, - STATE(7074), 1, - aux_sym_val_binary_repeat1, - [227269] = 3, + [246523] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7073), 1, + STATE(7616), 1, sym_comment, - ACTIONS(10705), 3, + ACTIONS(10937), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227281] = 5, - ACTIONS(251), 1, + [246535] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11254), 1, - anon_sym_RBRACK, - STATE(7074), 1, + ACTIONS(2254), 1, + sym__newline, + ACTIONS(2258), 1, + sym__space, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(7617), 1, sym_comment, - STATE(7264), 1, - aux_sym_val_binary_repeat1, - [227297] = 5, + [246551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11256), 1, - anon_sym_RBRACK, - STATE(6514), 1, - aux_sym__multiple_types_repeat1, - STATE(7075), 1, + ACTIONS(1310), 1, + anon_sym_POUND_BANG, + ACTIONS(12178), 1, + sym__newline, + STATE(7618), 2, sym_comment, - [227313] = 3, + aux_sym_shebang_repeat1, + [246565] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7076), 1, + STATE(7619), 1, sym_comment, - ACTIONS(10183), 3, + ACTIONS(11595), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227325] = 3, + [246577] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12181), 1, + anon_sym_RBRACK, + STATE(6924), 1, + aux_sym__multiple_types_repeat1, + STATE(7620), 1, + sym_comment, + [246593] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7077), 1, + STATE(7621), 1, sym_comment, - ACTIONS(10935), 3, + ACTIONS(11595), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227337] = 5, + [246605] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11258), 1, + ACTIONS(12183), 1, anon_sym_RBRACK, - STATE(6515), 1, + STATE(6925), 1, aux_sym__multiple_types_repeat1, - STATE(7078), 1, + STATE(7622), 1, sym_comment, - [227353] = 5, + [246621] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11260), 1, + ACTIONS(12185), 1, anon_sym_RBRACK, - STATE(6516), 1, + STATE(6926), 1, aux_sym__multiple_types_repeat1, - STATE(7079), 1, + STATE(7623), 1, sym_comment, - [227369] = 5, + [246637] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11262), 1, + ACTIONS(12187), 1, anon_sym_RBRACK, - STATE(6517), 1, + STATE(6927), 1, aux_sym__multiple_types_repeat1, - STATE(7080), 1, + STATE(7624), 1, sym_comment, - [227385] = 5, + [246653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11264), 1, + ACTIONS(12189), 1, anon_sym_RBRACK, - STATE(6518), 1, + STATE(6928), 1, aux_sym__multiple_types_repeat1, - STATE(7081), 1, + STATE(7625), 1, sym_comment, - [227401] = 5, - ACTIONS(3), 1, + [246669] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11266), 1, - anon_sym_RBRACK, - STATE(6519), 1, - aux_sym__multiple_types_repeat1, - STATE(7082), 1, + STATE(7626), 1, sym_comment, - [227417] = 5, + ACTIONS(11743), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [246681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11268), 1, + ACTIONS(12191), 1, anon_sym_RBRACK, - STATE(6520), 1, + STATE(6929), 1, aux_sym__multiple_types_repeat1, - STATE(7083), 1, + STATE(7627), 1, sym_comment, - [227433] = 5, + [246697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11270), 1, + ACTIONS(12193), 1, anon_sym_RBRACK, - STATE(6521), 1, + STATE(6930), 1, aux_sym__multiple_types_repeat1, - STATE(7084), 1, + STATE(7628), 1, sym_comment, - [227449] = 3, + [246713] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7085), 1, + STATE(7629), 1, sym_comment, - ACTIONS(10937), 3, + ACTIONS(10951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227461] = 4, + [246725] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(7086), 1, - sym_comment, - ACTIONS(2407), 2, + ACTIONS(12195), 1, anon_sym_RBRACK, + STATE(6931), 1, + aux_sym__multiple_types_repeat1, + STATE(7630), 1, + sym_comment, + [246741] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + ACTIONS(2272), 1, + sym__newline, + ACTIONS(2274), 1, + sym__space, + STATE(7631), 1, + sym_comment, + [246757] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2234), 1, + sym__newline, + ACTIONS(2238), 1, + sym__space, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(7632), 1, + sym_comment, + [246773] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(12197), 1, anon_sym_RBRACE, - [227475] = 5, + STATE(3126), 1, + aux_sym__multiple_types_repeat1, + STATE(7633), 1, + sym_comment, + [246789] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(11272), 1, + ACTIONS(12199), 1, anon_sym_RBRACE, - STATE(598), 1, + STATE(3127), 1, aux_sym__multiple_types_repeat1, - STATE(7087), 1, + STATE(7634), 1, sym_comment, - [227491] = 4, + [246805] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11274), 1, - anon_sym_EQ2, - STATE(7088), 1, + STATE(7635), 1, sym_comment, - ACTIONS(5048), 2, - sym_identifier, - anon_sym_DOLLAR, - [227505] = 5, - ACTIONS(3), 1, + ACTIONS(11791), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [246817] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11276), 1, - anon_sym_RBRACK, - STATE(6528), 1, - aux_sym__multiple_types_repeat1, - STATE(7089), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token2, + STATE(7636), 1, sym_comment, - [227521] = 4, - ACTIONS(3), 1, + ACTIONS(2230), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [246831] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11278), 1, - anon_sym_LPAREN, - STATE(7090), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7131), 1, + sym_block, + STATE(7637), 1, sym_comment, - ACTIONS(11280), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [227535] = 5, + [246847] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6491), 1, + anon_sym_AT, + ACTIONS(12201), 1, + anon_sym_GT2, + STATE(7638), 1, + sym_comment, + STATE(8249), 1, + sym_param_cmd, + [246863] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11282), 1, - anon_sym_RBRACK, - STATE(6529), 1, - aux_sym__multiple_types_repeat1, - STATE(7091), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(7625), 1, + aux_sym__unquoted_in_record_token4, + STATE(7639), 1, sym_comment, - [227551] = 5, + STATE(8047), 1, + sym__expr_parenthesized_immediate, + [246879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11284), 1, + ACTIONS(12203), 1, anon_sym_RBRACK, - STATE(6530), 1, + STATE(7256), 1, aux_sym__multiple_types_repeat1, - STATE(7092), 1, + STATE(7640), 1, sym_comment, - [227567] = 5, + [246895] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11286), 1, + ACTIONS(12205), 1, anon_sym_RBRACK, - STATE(6531), 1, + STATE(6660), 1, aux_sym__multiple_types_repeat1, - STATE(7093), 1, + STATE(7641), 1, sym_comment, - [227583] = 5, + [246911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11288), 1, + ACTIONS(12207), 1, anon_sym_RBRACK, - STATE(6532), 1, + STATE(6663), 1, aux_sym__multiple_types_repeat1, - STATE(7094), 1, + STATE(7642), 1, sym_comment, - [227599] = 4, + [246927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(7095), 1, + ACTIONS(12209), 1, + anon_sym_GT2, + STATE(5914), 1, + aux_sym__multiple_types_repeat1, + STATE(7643), 1, sym_comment, - ACTIONS(2070), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227613] = 5, + [246943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(11290), 1, - anon_sym_RBRACK, - STATE(6533), 1, + ACTIONS(12211), 1, + anon_sym_GT2, + STATE(5915), 1, aux_sym__multiple_types_repeat1, - STATE(7096), 1, + STATE(7644), 1, sym_comment, - [227629] = 5, - ACTIONS(3), 1, + [246959] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11292), 1, - anon_sym_RBRACK, - STATE(6534), 1, - aux_sym__multiple_types_repeat1, - STATE(7097), 1, + STATE(7645), 1, sym_comment, - [227645] = 5, + ACTIONS(11623), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [246971] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6325), 1, + ACTIONS(6491), 1, anon_sym_AT, - ACTIONS(11294), 1, - anon_sym_GT2, - STATE(7098), 1, - sym_comment, - STATE(8014), 1, + ACTIONS(8378), 1, + anon_sym_EQ, + STATE(5369), 1, sym_param_cmd, - [227661] = 5, + STATE(7646), 1, + sym_comment, + [246987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(1699), 1, sym__entry_separator, - ACTIONS(11296), 1, - anon_sym_RBRACK, - STATE(6535), 1, - aux_sym__multiple_types_repeat1, - STATE(7099), 1, + STATE(7647), 1, sym_comment, - [227677] = 5, + ACTIONS(1687), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [247001] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6105), 1, sym__entry_separator, - ACTIONS(11298), 1, + ACTIONS(12213), 1, anon_sym_RBRACK, - STATE(6760), 1, + STATE(2990), 1, aux_sym__multiple_types_repeat1, - STATE(7100), 1, + STATE(7648), 1, sym_comment, - [227693] = 5, + [247017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6105), 1, sym__entry_separator, - ACTIONS(11300), 1, + ACTIONS(12215), 1, anon_sym_RBRACK, - STATE(6761), 1, + STATE(2991), 1, aux_sym__multiple_types_repeat1, - STATE(7101), 1, + STATE(7649), 1, sym_comment, - [227709] = 3, + [247033] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7102), 1, + STATE(7650), 1, sym_comment, - ACTIONS(10872), 3, + ACTIONS(10951), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227721] = 5, + [247045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11302), 1, + ACTIONS(12217), 1, anon_sym_RBRACK, - STATE(6762), 1, + STATE(6979), 1, aux_sym__multiple_types_repeat1, - STATE(7103), 1, + STATE(7651), 1, sym_comment, - [227737] = 5, + [247061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11304), 1, + ACTIONS(12219), 1, anon_sym_RBRACK, - STATE(6540), 1, + STATE(7049), 1, aux_sym__multiple_types_repeat1, - STATE(7104), 1, + STATE(7652), 1, sym_comment, - [227753] = 3, + [247077] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7105), 1, + STATE(7653), 1, sym_comment, - ACTIONS(10247), 3, + ACTIONS(10943), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227765] = 5, - ACTIONS(3), 1, + [247089] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11306), 1, - anon_sym_RBRACK, - STATE(6541), 1, - aux_sym__multiple_types_repeat1, - STATE(7106), 1, + STATE(7654), 1, sym_comment, - [227781] = 5, + ACTIONS(10945), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [247101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11308), 1, + ACTIONS(12221), 1, anon_sym_RBRACK, - STATE(6542), 1, + STATE(7058), 1, aux_sym__multiple_types_repeat1, - STATE(7107), 1, + STATE(7655), 1, sym_comment, - [227797] = 5, - ACTIONS(3), 1, + [247117] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11310), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(12223), 1, anon_sym_RBRACK, - STATE(6543), 1, - aux_sym__multiple_types_repeat1, - STATE(7108), 1, + STATE(7656), 1, sym_comment, - [227813] = 5, + STATE(7724), 1, + aux_sym_val_binary_repeat1, + [247133] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7657), 1, + sym_comment, + ACTIONS(11235), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [247145] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(2324), 1, sym__entry_separator, - ACTIONS(11312), 1, + ACTIONS(12225), 1, anon_sym_RBRACE, - STATE(603), 1, + STATE(578), 1, aux_sym__multiple_types_repeat1, - STATE(7109), 1, + STATE(7658), 1, sym_comment, - [227829] = 5, + [247161] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11314), 1, - anon_sym_RBRACK, - STATE(6544), 1, - aux_sym__multiple_types_repeat1, - STATE(7110), 1, + ACTIONS(12227), 1, + anon_sym_DQUOTE, + STATE(7659), 1, + sym_comment, + ACTIONS(12229), 2, + sym__escaped_str_content, + sym_escape_sequence, + [247175] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7660), 1, sym_comment, - [227845] = 5, + ACTIONS(11731), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [247187] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11316), 1, - anon_sym_RBRACK, - STATE(6545), 1, - aux_sym__multiple_types_repeat1, - STATE(7111), 1, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(7661), 1, sym_comment, - [227861] = 5, + ACTIONS(2254), 2, + sym_identifier, + anon_sym_DOLLAR, + [247201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11318), 1, - anon_sym_RBRACK, - STATE(6546), 1, - aux_sym__multiple_types_repeat1, - STATE(7112), 1, + ACTIONS(12231), 1, + anon_sym_LPAREN, + STATE(7662), 1, sym_comment, - [227877] = 5, + ACTIONS(12233), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [247215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - ACTIONS(6110), 1, - anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(7113), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(7663), 1, sym_comment, - [227893] = 5, + ACTIONS(1034), 2, + sym_identifier, + anon_sym_DOLLAR, + [247229] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11320), 1, + ACTIONS(12235), 1, anon_sym_RBRACK, - STATE(6547), 1, + STATE(3639), 1, aux_sym__multiple_types_repeat1, - STATE(7114), 1, - sym_comment, - [227909] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1785), 1, - aux_sym_unquoted_token2, - STATE(7115), 1, + STATE(7664), 1, sym_comment, - ACTIONS(1787), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [227923] = 3, + [247245] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7116), 1, + STATE(7665), 1, sym_comment, - ACTIONS(10247), 3, + ACTIONS(11021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227935] = 5, + [247257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11322), 1, + ACTIONS(12237), 1, anon_sym_RBRACK, - STATE(6552), 1, + STATE(3625), 1, aux_sym__multiple_types_repeat1, - STATE(7117), 1, + STATE(7666), 1, sym_comment, - [227951] = 5, + [247273] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(10137), 1, - anon_sym_LBRACK, - STATE(3402), 1, - aux_sym__multiple_types_repeat1, - STATE(7118), 1, + ACTIONS(12239), 1, + anon_sym_LPAREN, + STATE(7667), 1, sym_comment, - [227967] = 5, + ACTIONS(12241), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [247287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(5836), 1, sym__entry_separator, - ACTIONS(11324), 1, - anon_sym_RBRACK, - STATE(6553), 1, - aux_sym__multiple_types_repeat1, - STATE(7119), 1, + STATE(7668), 1, sym_comment, - [227983] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11326), 1, + ACTIONS(5834), 2, anon_sym_RBRACK, - STATE(6554), 1, - aux_sym__multiple_types_repeat1, - STATE(7120), 1, + anon_sym_GT2, + [247301] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7669), 1, sym_comment, - [227999] = 5, + ACTIONS(11237), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [247313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11328), 1, + ACTIONS(12243), 1, anon_sym_RBRACK, - STATE(6555), 1, + STATE(3643), 1, aux_sym__multiple_types_repeat1, - STATE(7121), 1, + STATE(7670), 1, sym_comment, - [228015] = 3, + [247329] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7122), 1, + STATE(7671), 1, sym_comment, - ACTIONS(10187), 3, + ACTIONS(11223), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228027] = 5, + [247341] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11330), 1, + ACTIONS(12245), 1, anon_sym_RBRACK, - STATE(6556), 1, + STATE(7075), 1, aux_sym__multiple_types_repeat1, - STATE(7123), 1, + STATE(7672), 1, sym_comment, - [228043] = 3, + [247357] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7124), 1, + STATE(7673), 1, sym_comment, - ACTIONS(10187), 3, + ACTIONS(10865), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228055] = 5, + [247369] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(11332), 1, - anon_sym_RBRACK, - STATE(6557), 1, + ACTIONS(12247), 1, + anon_sym_COLON, + STATE(6029), 1, aux_sym__multiple_types_repeat1, - STATE(7125), 1, + STATE(7674), 1, sym_comment, - [228071] = 5, + [247385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(11334), 1, - anon_sym_RBRACK, - STATE(6558), 1, + ACTIONS(12249), 1, + anon_sym_COLON, + STATE(6033), 1, aux_sym__multiple_types_repeat1, - STATE(7126), 1, + STATE(7675), 1, sym_comment, - [228087] = 3, - ACTIONS(251), 1, + [247401] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7127), 1, + ACTIONS(2488), 1, + sym__entry_separator, + STATE(7676), 1, sym_comment, - ACTIONS(10187), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228099] = 5, + ACTIONS(2486), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [247415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(5840), 1, sym__entry_separator, - ACTIONS(11336), 1, - anon_sym_RBRACK, - STATE(6559), 1, - aux_sym__multiple_types_repeat1, - STATE(7128), 1, + STATE(7677), 1, sym_comment, - [228115] = 3, + ACTIONS(5838), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [247429] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7129), 1, + STATE(7678), 1, sym_comment, - ACTIONS(10187), 3, + ACTIONS(11457), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228127] = 3, + [247441] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7130), 1, + STATE(7679), 1, sym_comment, - ACTIONS(10187), 3, + ACTIONS(11587), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228139] = 3, + [247453] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7131), 1, + STATE(7680), 1, sym_comment, - ACTIONS(10187), 3, + ACTIONS(10975), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228151] = 3, + [247465] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7132), 1, + STATE(7681), 1, sym_comment, - ACTIONS(10187), 3, + ACTIONS(11457), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228163] = 4, + [247477] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11340), 1, - anon_sym_COMMA, - STATE(7133), 1, + STATE(7682), 1, sym_comment, - ACTIONS(11338), 2, - anon_sym_RBRACK, - sym_hex_digit, - [228177] = 3, + ACTIONS(10971), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [247489] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7134), 1, + STATE(7683), 1, sym_comment, - ACTIONS(10854), 3, + ACTIONS(10971), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228189] = 3, + [247501] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7135), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(7684), 1, + sym_comment, + ACTIONS(2294), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [247515] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7685), 1, sym_comment, - ACTIONS(10187), 3, + ACTIONS(11634), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228201] = 3, + [247527] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7136), 1, + STATE(7686), 1, sym_comment, - ACTIONS(10856), 3, + ACTIONS(11025), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228213] = 3, + [247539] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7137), 1, + STATE(7687), 1, sym_comment, - ACTIONS(10862), 3, + ACTIONS(11025), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228225] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2363), 1, - sym__entry_separator, - STATE(7138), 1, - sym_comment, - ACTIONS(2361), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228239] = 4, + [247551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(1036), 1, sym__entry_separator, - STATE(7139), 1, + STATE(7688), 1, sym_comment, - ACTIONS(2365), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228253] = 3, + [247565] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7140), 1, + STATE(7689), 1, sym_comment, - ACTIONS(10864), 3, + ACTIONS(11033), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228265] = 3, - ACTIONS(251), 1, + [247577] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7141), 1, + ACTIONS(6105), 1, + sym__entry_separator, + ACTIONS(12251), 1, + anon_sym_RBRACK, + STATE(2969), 1, + aux_sym__multiple_types_repeat1, + STATE(7690), 1, sym_comment, - ACTIONS(10253), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228277] = 5, + [247593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(2324), 1, sym__entry_separator, - ACTIONS(6112), 1, + ACTIONS(12253), 1, anon_sym_RBRACE, - STATE(2997), 1, + STATE(579), 1, aux_sym__multiple_types_repeat1, - STATE(7142), 1, + STATE(7691), 1, sym_comment, - [228293] = 3, + [247609] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7143), 1, + STATE(7692), 1, sym_comment, - ACTIONS(10253), 3, - ts_builtin_sym_end, + ACTIONS(12255), 3, sym__newline, anon_sym_SEMI, - [228305] = 3, + anon_sym_RPAREN, + [247621] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(12257), 1, + anon_sym_GT2, + STATE(5863), 1, + aux_sym__multiple_types_repeat1, + STATE(7693), 1, + sym_comment, + [247637] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7144), 1, + STATE(7694), 1, sym_comment, - ACTIONS(10271), 3, + ACTIONS(11551), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228317] = 5, + [247649] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(12259), 1, + anon_sym_GT2, + STATE(5864), 1, + aux_sym__multiple_types_repeat1, + STATE(7695), 1, + sym_comment, + [247665] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11342), 1, - anon_sym_RBRACK, - STATE(7145), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(7696), 1, sym_comment, - STATE(7264), 1, - aux_sym_val_binary_repeat1, - [228333] = 3, + ACTIONS(1848), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [247679] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7146), 1, + STATE(7697), 1, sym_comment, - ACTIONS(10271), 3, + ACTIONS(11457), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228345] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11344), 1, - anon_sym_RBRACK, - STATE(6773), 1, - aux_sym__multiple_types_repeat1, - STATE(7147), 1, - sym_comment, - [228361] = 4, + [247691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2084), 1, + ACTIONS(5820), 1, sym__entry_separator, - STATE(7148), 1, + STATE(7698), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(5818), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [228375] = 5, + anon_sym_GT2, + [247705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(5824), 1, sym__entry_separator, - ACTIONS(11346), 1, - anon_sym_RBRACK, - STATE(6782), 1, - aux_sym__multiple_types_repeat1, - STATE(7149), 1, + STATE(7699), 1, sym_comment, - [228391] = 3, + ACTIONS(5822), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [247719] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7150), 1, + STATE(7700), 1, sym_comment, - ACTIONS(10271), 3, + ACTIONS(11323), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228403] = 4, - ACTIONS(251), 1, + [247731] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1824), 1, - aux_sym_unquoted_token2, - STATE(7151), 1, + ACTIONS(12261), 1, + sym__table_head_separator, + STATE(7701), 1, sym_comment, - ACTIONS(1826), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [228417] = 5, - ACTIONS(251), 1, + ACTIONS(1034), 2, + anon_sym_RBRACK, + sym__entry_separator, + [247745] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(11348), 1, - anon_sym_GT2, - STATE(7152), 1, + ACTIONS(2361), 1, + sym__entry_separator, + STATE(7702), 1, sym_comment, - STATE(7836), 1, - sym_param_cmd, - [228433] = 5, + ACTIONS(2359), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [247759] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(4682), 1, - aux_sym_unquoted_token4, - STATE(7153), 1, + ACTIONS(1919), 1, + sym__entry_separator, + STATE(7703), 1, sym_comment, - STATE(7675), 1, - sym__expr_parenthesized_immediate, - [228449] = 5, + ACTIONS(1917), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [247773] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(7830), 1, - anon_sym_EQ, - STATE(5009), 1, - sym_param_cmd, - STATE(7154), 1, - sym_comment, - [228465] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2290), 1, - sym__newline, - ACTIONS(2294), 1, - sym__space, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(7155), 1, + ACTIONS(5012), 1, + anon_sym_in2, + ACTIONS(12263), 1, + sym_long_flag_identifier, + ACTIONS(12265), 1, + anon_sym_EQ2, + STATE(7704), 1, sym_comment, - [228481] = 4, + [247789] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(312), 1, - aux_sym__block_body_repeat1, - STATE(7156), 1, + STATE(7705), 1, sym_comment, - ACTIONS(141), 2, + ACTIONS(10979), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228495] = 4, - ACTIONS(3), 1, + [247801] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1707), 1, - sym__entry_separator, - STATE(7157), 1, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + STATE(7706), 1, sym_comment, - ACTIONS(1695), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228509] = 3, + ACTIONS(1699), 2, + sym_identifier, + anon_sym_DOLLAR, + [247815] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7158), 1, + STATE(7707), 1, sym_comment, - ACTIONS(10287), 3, + ACTIONS(10905), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228521] = 4, + [247827] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - STATE(7159), 1, + STATE(7708), 1, sym_comment, - ACTIONS(1795), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [228535] = 4, + ACTIONS(11457), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [247839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2066), 1, + ACTIONS(2365), 1, sym__entry_separator, - STATE(7160), 1, + STATE(7709), 1, sym_comment, - ACTIONS(2064), 2, + ACTIONS(2363), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228549] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1793), 1, - aux_sym_unquoted_token2, - STATE(7161), 1, - sym_comment, - ACTIONS(1795), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228563] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(7830), 1, - anon_sym_EQ, - STATE(5010), 1, - sym_param_cmd, - STATE(7162), 1, - sym_comment, - [228579] = 4, + [247853] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - STATE(7163), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7056), 1, + sym_block, + STATE(7710), 1, sym_comment, - ACTIONS(1851), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228593] = 5, + [247869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, + ACTIONS(2369), 1, sym__entry_separator, - ACTIONS(11350), 1, - anon_sym_RBRACK, - STATE(2858), 1, - aux_sym__multiple_types_repeat1, - STATE(7164), 1, - sym_comment, - [228609] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7165), 1, + STATE(7711), 1, sym_comment, - ACTIONS(11352), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [228621] = 4, + ACTIONS(2367), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [247883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(1927), 1, sym__entry_separator, - STATE(7166), 1, + STATE(7712), 1, sym_comment, - ACTIONS(2465), 2, + ACTIONS(1925), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228635] = 4, + [247897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(7167), 1, + ACTIONS(12267), 1, + anon_sym_GT2, + STATE(5869), 1, + aux_sym__multiple_types_repeat1, + STATE(7713), 1, sym_comment, - ACTIONS(2369), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228649] = 4, + [247913] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1040), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(7168), 1, + ACTIONS(12269), 1, + anon_sym_GT2, + STATE(5870), 1, + aux_sym__multiple_types_repeat1, + STATE(7714), 1, sym_comment, - ACTIONS(1038), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228663] = 3, + [247929] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7169), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7131), 1, + sym_block, + STATE(7715), 1, sym_comment, - ACTIONS(10899), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228675] = 4, + [247945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, - sym__entry_separator, - STATE(7170), 1, + ACTIONS(12271), 1, + sym__table_head_separator, + STATE(7716), 1, sym_comment, - ACTIONS(2373), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [228689] = 4, + sym__entry_separator, + [247959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(7171), 1, - sym_comment, - ACTIONS(2379), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228703] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7172), 1, + ACTIONS(12273), 1, + anon_sym_GT2, + STATE(5873), 1, + aux_sym__multiple_types_repeat1, + STATE(7717), 1, sym_comment, - ACTIONS(10271), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228715] = 4, + [247975] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1935), 1, sym__entry_separator, - STATE(7173), 1, + STATE(7718), 1, sym_comment, ACTIONS(1933), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228729] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7174), 1, - sym_comment, - ACTIONS(10243), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228741] = 3, + [247989] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7175), 1, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5005), 1, + sym_block, + STATE(7719), 1, sym_comment, - ACTIONS(10129), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228753] = 4, + [248005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(7176), 1, + ACTIONS(12275), 1, + anon_sym_GT2, + STATE(5874), 1, + aux_sym__multiple_types_repeat1, + STATE(7720), 1, sym_comment, - ACTIONS(2437), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228767] = 4, + [248021] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(9699), 1, sym__entry_separator, - STATE(7177), 1, - sym_comment, - ACTIONS(2441), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228781] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7178), 1, + ACTIONS(12277), 1, + anon_sym_GT2, + STATE(5968), 1, + aux_sym__multiple_types_repeat1, + STATE(7721), 1, sym_comment, - ACTIONS(10824), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228793] = 3, + [248037] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7179), 1, + ACTIONS(12281), 1, + anon_sym_COMMA, + STATE(7722), 1, sym_comment, - ACTIONS(10621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228805] = 5, + ACTIONS(12279), 2, + anon_sym_RBRACK, + sym_hex_digit, + [248051] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(11354), 1, - anon_sym_RBRACK, - STATE(6261), 1, + ACTIONS(6298), 1, + anon_sym_RBRACE, + STATE(3130), 1, aux_sym__multiple_types_repeat1, - STATE(7180), 1, + STATE(7723), 1, sym_comment, - [228821] = 3, + [248067] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7181), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(12283), 1, + anon_sym_RBRACK, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + STATE(7724), 1, sym_comment, - ACTIONS(10165), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228833] = 4, + [248083] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(7182), 1, - sym_comment, - ACTIONS(2383), 2, + ACTIONS(12285), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [228847] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1899), 1, - sym__entry_separator, - STATE(7183), 1, + STATE(6937), 1, + aux_sym__multiple_types_repeat1, + STATE(7725), 1, sym_comment, - ACTIONS(1897), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [228861] = 4, + [248099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(6244), 1, sym__entry_separator, - STATE(7184), 1, - sym_comment, - ACTIONS(2387), 2, - anon_sym_RBRACK, + ACTIONS(6300), 1, anon_sym_RBRACE, - [228875] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7185), 1, + STATE(3131), 1, + aux_sym__multiple_types_repeat1, + STATE(7726), 1, sym_comment, - ACTIONS(10317), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228887] = 5, + [248115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(11356), 1, - anon_sym_RBRACK, - STATE(6548), 1, + ACTIONS(12287), 1, + anon_sym_GT2, + STATE(5875), 1, aux_sym__multiple_types_repeat1, - STATE(7186), 1, + STATE(7727), 1, sym_comment, - [228903] = 5, + [248131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(11358), 1, - anon_sym_RBRACK, - STATE(6263), 1, + ACTIONS(12289), 1, + anon_sym_GT2, + STATE(5876), 1, aux_sym__multiple_types_repeat1, - STATE(7187), 1, + STATE(7728), 1, sym_comment, - [228919] = 5, + [248147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11360), 1, + ACTIONS(12291), 1, + sym__table_head_separator, + STATE(7729), 1, + sym_comment, + ACTIONS(1034), 2, anon_sym_RBRACK, - STATE(6265), 1, - aux_sym__multiple_types_repeat1, - STATE(7188), 1, + sym__entry_separator, + [248161] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5112), 1, + sym__space, + ACTIONS(5114), 1, + sym__newline, + ACTIONS(12293), 1, + anon_sym_EQ2, + STATE(7730), 1, sym_comment, - [228935] = 3, + [248177] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7189), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5005), 1, + sym_block, + STATE(7731), 1, sym_comment, - ACTIONS(10826), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228947] = 3, + [248193] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7190), 1, + ACTIONS(6491), 1, + anon_sym_AT, + ACTIONS(12295), 1, + anon_sym_GT2, + STATE(7732), 1, sym_comment, - ACTIONS(10846), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228959] = 3, + STATE(8475), 1, + sym_param_cmd, + [248209] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7191), 1, + STATE(7733), 1, sym_comment, - ACTIONS(10846), 3, + ACTIONS(11021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228971] = 5, + [248221] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(7587), 1, + sym_val_list, + STATE(7734), 1, + sym_comment, + STATE(7767), 1, + aux_sym_val_table_repeat1, + [248237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(6105), 1, sym__entry_separator, - ACTIONS(11362), 1, - anon_sym_RBRACE, - STATE(2940), 1, + ACTIONS(12297), 1, + anon_sym_RBRACK, + STATE(2992), 1, aux_sym__multiple_types_repeat1, - STATE(7192), 1, + STATE(7735), 1, sym_comment, - [228987] = 3, + [248253] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7193), 1, + STATE(7736), 1, sym_comment, - ACTIONS(10866), 3, + ACTIONS(11405), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228999] = 3, - ACTIONS(251), 1, + [248265] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7194), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + ACTIONS(12299), 1, + sym__space, + STATE(7737), 1, sym_comment, - ACTIONS(10868), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229011] = 3, + [248281] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7195), 1, + STATE(7738), 1, sym_comment, - ACTIONS(10870), 3, + ACTIONS(10909), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229023] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(7953), 1, - anon_sym_EQ, - STATE(5072), 1, - sym_param_cmd, - STATE(7196), 1, - sym_comment, - [229039] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - STATE(7197), 1, - sym_comment, - ACTIONS(2233), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [229053] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - STATE(7198), 1, - sym_comment, - ACTIONS(1707), 2, - sym_identifier, - anon_sym_DOLLAR, - [229067] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(7199), 1, - sym_comment, - ACTIONS(2282), 2, - sym_identifier, - anon_sym_DOLLAR, - [229081] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(7264), 1, - aux_sym_unquoted_token4, - STATE(7200), 1, - sym_comment, - STATE(7622), 1, - sym__expr_parenthesized_immediate, - [229097] = 5, + [248293] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1695), 1, - anon_sym_RBRACK, - ACTIONS(1707), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(8784), 1, - aux_sym__unquoted_in_list_token2, - STATE(7201), 1, + ACTIONS(12301), 1, + anon_sym_RBRACK, + STATE(6790), 1, + aux_sym__multiple_types_repeat1, + STATE(7739), 1, sym_comment, - [229113] = 4, - ACTIONS(3), 1, + [248309] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11364), 1, - sym__table_head_separator, - STATE(7202), 1, + STATE(7740), 1, sym_comment, - ACTIONS(1038), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229127] = 3, + ACTIONS(11389), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [248321] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7203), 1, + STATE(7741), 1, sym_comment, - ACTIONS(10919), 3, + ACTIONS(11693), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229139] = 4, + [248333] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(7204), 1, - sym_comment, - ACTIONS(1965), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229153] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(7205), 1, - sym_comment, - ACTIONS(1038), 2, - sym_identifier, - anon_sym_DOLLAR, - [229167] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7206), 1, - sym_comment, - ACTIONS(1897), 3, + ACTIONS(12303), 1, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [229179] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11366), 1, - anon_sym_LPAREN, - STATE(7207), 1, - sym_comment, - ACTIONS(11368), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [229193] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6284), 1, - sym_block, - STATE(7208), 1, + STATE(6794), 1, + aux_sym__multiple_types_repeat1, + STATE(7742), 1, sym_comment, - [229209] = 5, + [248349] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6297), 1, - sym_block, - STATE(7209), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(7652), 1, + sym_val_list, + STATE(7743), 1, sym_comment, - [229225] = 4, - ACTIONS(251), 1, + STATE(7767), 1, + aux_sym_val_table_repeat1, + [248365] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1801), 1, - aux_sym_unquoted_token2, - STATE(7210), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12305), 1, + anon_sym_RBRACK, + STATE(6799), 1, + aux_sym__multiple_types_repeat1, + STATE(7744), 1, sym_comment, - ACTIONS(1803), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [229239] = 5, - ACTIONS(251), 1, + [248381] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11370), 1, - anon_sym_RBRACK, - STATE(7211), 1, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(12307), 1, + anon_sym_RBRACE, + STATE(3081), 1, + aux_sym__multiple_types_repeat1, + STATE(7745), 1, sym_comment, - STATE(7264), 1, - aux_sym_val_binary_repeat1, - [229255] = 5, + [248397] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(4692), 1, - sym_block, - STATE(7212), 1, + ACTIONS(1559), 1, + anon_sym_SEMI, + ACTIONS(3919), 1, + sym__newline, + STATE(1800), 1, + aux_sym_shebang_repeat1, + STATE(7746), 1, sym_comment, - [229271] = 3, + [248413] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7213), 1, + STATE(7747), 1, sym_comment, - ACTIONS(10959), 3, + ACTIONS(11473), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229283] = 4, + [248425] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(7214), 1, - sym_comment, - ACTIONS(1941), 2, + ACTIONS(12309), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229297] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11372), 1, - sym__table_head_separator, - STATE(7215), 1, + STATE(7023), 1, + aux_sym__multiple_types_repeat1, + STATE(7748), 1, sym_comment, - ACTIONS(1038), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229311] = 4, + [248441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2401), 1, + ACTIONS(2494), 1, sym__entry_separator, - STATE(7216), 1, + STATE(7749), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2492), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229325] = 4, - ACTIONS(3), 1, + [248455] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2405), 1, - sym__entry_separator, - STATE(7217), 1, + STATE(7750), 1, sym_comment, - ACTIONS(2403), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229339] = 4, + ACTIONS(11654), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [248467] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(2043), 1, sym__entry_separator, - STATE(7218), 1, + STATE(7751), 1, sym_comment, - ACTIONS(2445), 2, + ACTIONS(2041), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229353] = 3, + [248481] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7219), 1, + STATE(7752), 1, sym_comment, - ACTIONS(11374), 3, + ACTIONS(11721), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [229365] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11376), 1, - sym__table_head_separator, - STATE(7220), 1, - sym_comment, - ACTIONS(1038), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229379] = 5, + [248493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5747), 1, + ACTIONS(9699), 1, sym__entry_separator, - ACTIONS(11378), 1, - anon_sym_RBRACK, - STATE(2727), 1, + ACTIONS(12311), 1, + anon_sym_GT2, + STATE(5979), 1, aux_sym__multiple_types_repeat1, - STATE(7221), 1, - sym_comment, - [229395] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - ACTIONS(11380), 1, - sym__space, - STATE(7222), 1, + STATE(7753), 1, sym_comment, - [229411] = 3, + [248509] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7223), 1, + STATE(7754), 1, sym_comment, - ACTIONS(10249), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229423] = 4, - ACTIONS(3), 1, + ACTIONS(6370), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [248521] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__entry_separator, - STATE(7224), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(7739), 1, + sym_val_list, + STATE(7755), 1, sym_comment, - ACTIONS(1945), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229437] = 4, + STATE(7767), 1, + aux_sym_val_table_repeat1, + [248537] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1824), 1, - aux_sym_unquoted_token2, - STATE(7225), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(7423), 1, + sym_val_list, + STATE(7756), 1, sym_comment, - ACTIONS(1826), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [229451] = 5, + STATE(7767), 1, + aux_sym_val_table_repeat1, + [248553] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7226), 1, + STATE(7744), 1, + sym_val_list, + STATE(7757), 1, sym_comment, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7436), 1, - sym_val_list, - [229467] = 5, + [248569] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7758), 1, + sym_comment, + ACTIONS(6374), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [248581] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5747), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11382), 1, + ACTIONS(12313), 1, anon_sym_RBRACK, - STATE(2674), 1, + STATE(7169), 1, aux_sym__multiple_types_repeat1, - STATE(7227), 1, - sym_comment, - [229483] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11384), 1, - anon_sym_RBRACK, - STATE(7228), 1, + STATE(7759), 1, sym_comment, - STATE(7258), 1, - aux_sym_val_binary_repeat1, - [229499] = 3, + [248597] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7229), 1, + STATE(7760), 1, sym_comment, - ACTIONS(11386), 3, + ACTIONS(12315), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [229511] = 3, + [248609] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7230), 1, + STATE(7761), 1, sym_comment, - ACTIONS(11388), 3, + ACTIONS(12317), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [229523] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7876), 1, - sym__entry_separator, - ACTIONS(7880), 1, - anon_sym_RBRACK, - ACTIONS(11390), 1, - anon_sym_LT, - STATE(7231), 1, - sym_comment, - [229539] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(7180), 1, - sym_val_list, - STATE(7232), 1, - sym_comment, - STATE(7303), 1, - aux_sym_val_table_repeat1, - [229555] = 3, + [248621] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7233), 1, + STATE(7762), 1, sym_comment, - ACTIONS(10943), 3, + ACTIONS(11662), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229567] = 5, + [248633] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(7188), 1, - sym_val_list, - STATE(7234), 1, - sym_comment, - STATE(7303), 1, - aux_sym_val_table_repeat1, - [229583] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7876), 1, - sym__entry_separator, - ACTIONS(7880), 1, - anon_sym_RBRACK, - ACTIONS(11392), 1, - anon_sym_LT, - STATE(7235), 1, + STATE(7763), 1, sym_comment, - [229599] = 4, + ACTIONS(11723), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [248645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2522), 1, + ACTIONS(2373), 1, sym__entry_separator, - STATE(7236), 1, + STATE(7764), 1, sym_comment, - ACTIONS(2520), 2, + ACTIONS(2371), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229613] = 4, + [248659] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2526), 1, - sym__entry_separator, - STATE(7237), 1, + ACTIONS(2244), 1, + sym__space, + STATE(7765), 1, sym_comment, - ACTIONS(2524), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [229627] = 3, + ACTIONS(2242), 2, + sym__newline, + aux_sym_unquoted_token4, + [248673] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7238), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(7766), 1, sym_comment, - ACTIONS(5806), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [229639] = 5, + STATE(7767), 1, + aux_sym_val_table_repeat1, + STATE(7896), 1, + sym_val_list, + [248689] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(12319), 1, anon_sym_LBRACK, - STATE(6907), 1, + STATE(8009), 1, sym_val_list, - STATE(7239), 1, + STATE(7767), 2, sym_comment, - STATE(7303), 1, aux_sym_val_table_repeat1, - [229655] = 4, + [248703] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2530), 1, + ACTIONS(5882), 1, sym__entry_separator, - STATE(7240), 1, - sym_comment, - ACTIONS(2528), 2, + ACTIONS(12322), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229669] = 5, + STATE(2803), 1, + aux_sym__multiple_types_repeat1, + STATE(7768), 1, + sym_comment, + [248719] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2377), 1, sym__entry_separator, - ACTIONS(11394), 1, - anon_sym_RBRACK, - STATE(3439), 1, - aux_sym__multiple_types_repeat1, - STATE(7241), 1, + STATE(7769), 1, sym_comment, - [229685] = 5, + ACTIONS(2375), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [248733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - ACTIONS(11396), 1, - sym__space, - STATE(7242), 1, + ACTIONS(1939), 1, + sym__entry_separator, + STATE(7770), 1, sym_comment, - [229701] = 5, + ACTIONS(1937), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [248747] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, + ACTIONS(6105), 1, sym__entry_separator, - ACTIONS(11398), 1, + ACTIONS(12324), 1, anon_sym_RBRACK, - STATE(2855), 1, + STATE(2983), 1, aux_sym__multiple_types_repeat1, - STATE(7243), 1, + STATE(7771), 1, sym_comment, - [229717] = 4, + [248763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2499), 1, + ACTIONS(2381), 1, sym__entry_separator, - STATE(7244), 1, + STATE(7772), 1, sym_comment, - ACTIONS(2497), 2, + ACTIONS(2379), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229731] = 3, - ACTIONS(251), 1, + [248777] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7245), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12326), 1, + anon_sym_RBRACK, + STATE(7226), 1, + aux_sym__multiple_types_repeat1, + STATE(7773), 1, sym_comment, - ACTIONS(11400), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229743] = 3, + [248793] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7246), 1, + STATE(7774), 1, sym_comment, - ACTIONS(10427), 3, + ACTIONS(11666), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229755] = 5, - ACTIONS(3), 1, + [248805] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11402), 1, - anon_sym_RBRACK, - STATE(6799), 1, - aux_sym__multiple_types_repeat1, - STATE(7247), 1, + ACTIONS(6491), 1, + anon_sym_AT, + ACTIONS(8340), 1, + anon_sym_EQ, + STATE(5432), 1, + sym_param_cmd, + STATE(7775), 1, sym_comment, - [229771] = 3, + [248821] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7248), 1, + ACTIONS(5029), 1, + anon_sym_in2, + ACTIONS(12328), 1, + anon_sym_EQ2, + ACTIONS(12330), 1, + sym_short_flag_identifier, + STATE(7776), 1, sym_comment, - ACTIONS(11404), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229783] = 3, + [248837] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7249), 1, + STATE(7777), 1, sym_comment, - ACTIONS(10427), 3, + ACTIONS(11229), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229795] = 4, - ACTIONS(3), 1, + [248849] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6106), 1, - anon_sym_RBRACK, - STATE(7250), 1, + STATE(7778), 1, sym_comment, - ACTIONS(6108), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [229809] = 5, - ACTIONS(3), 1, + ACTIONS(6332), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [248861] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - ACTIONS(7184), 1, - aux_sym_unquoted_token4, - STATE(7251), 1, + ACTIONS(5010), 1, + anon_sym_LBRACE, + ACTIONS(12332), 1, + sym_long_flag_identifier, + ACTIONS(12334), 1, + anon_sym_EQ2, + STATE(7779), 1, sym_comment, - STATE(7584), 1, - sym__expr_parenthesized_immediate, - [229825] = 3, + [248877] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7252), 1, + STATE(7780), 1, sym_comment, - ACTIONS(10183), 3, + ACTIONS(10911), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229837] = 4, + [248889] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(5882), 1, sym__entry_separator, - STATE(7253), 1, - sym_comment, - ACTIONS(1889), 2, + ACTIONS(12336), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [229851] = 4, + STATE(2867), 1, + aux_sym__multiple_types_repeat1, + STATE(7781), 1, + sym_comment, + [248905] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2393), 1, + ACTIONS(5844), 1, sym__entry_separator, - STATE(7254), 1, + STATE(7782), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(5842), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [229865] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7255), 1, - sym_comment, - ACTIONS(10183), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229877] = 3, + anon_sym_GT2, + [248919] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7256), 1, + ACTIONS(6491), 1, + anon_sym_AT, + ACTIONS(8340), 1, + anon_sym_EQ, + STATE(5434), 1, + sym_param_cmd, + STATE(7783), 1, sym_comment, - ACTIONS(10463), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229889] = 4, + [248935] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11406), 1, + ACTIONS(12338), 1, anon_sym_EQ2, - STATE(7257), 1, + STATE(7784), 1, sym_comment, - ACTIONS(5030), 2, + ACTIONS(5130), 2, sym_identifier, anon_sym_DOLLAR, - [229903] = 5, + [248949] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - sym_hex_digit, - ACTIONS(11408), 1, - anon_sym_RBRACK, - STATE(7258), 1, - sym_comment, - STATE(7264), 1, - aux_sym_val_binary_repeat1, - [229919] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(11410), 1, - anon_sym_RBRACK, - STATE(2852), 1, - aux_sym__multiple_types_repeat1, - STATE(7259), 1, + STATE(7785), 1, sym_comment, - [229935] = 5, + ACTIONS(12340), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [248961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, + ACTIONS(5882), 1, sym__entry_separator, - ACTIONS(11412), 1, + ACTIONS(12342), 1, anon_sym_RBRACK, - STATE(2853), 1, + STATE(2804), 1, aux_sym__multiple_types_repeat1, - STATE(7260), 1, + STATE(7786), 1, sym_comment, - [229951] = 3, + [248977] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7261), 1, + STATE(7787), 1, sym_comment, - ACTIONS(10191), 3, + ACTIONS(11579), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229963] = 5, + [248989] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2530), 1, sym__entry_separator, - ACTIONS(11414), 1, - anon_sym_RBRACK, - STATE(6266), 1, - aux_sym__multiple_types_repeat1, - STATE(7262), 1, + STATE(7788), 1, sym_comment, - [229979] = 3, - ACTIONS(251), 1, + ACTIONS(2528), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [249003] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7263), 1, + ACTIONS(9699), 1, + sym__entry_separator, + ACTIONS(12344), 1, + anon_sym_GT2, + STATE(5983), 1, + aux_sym__multiple_types_repeat1, + STATE(7789), 1, sym_comment, - ACTIONS(10803), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229991] = 4, + [249019] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11416), 1, - anon_sym_RBRACK, - ACTIONS(11418), 1, + ACTIONS(11835), 1, sym_hex_digit, - STATE(7264), 2, + ACTIONS(12346), 1, + anon_sym_RBRACK, + STATE(7790), 1, sym_comment, + STATE(7804), 1, aux_sym_val_binary_repeat1, - [230005] = 4, + [249035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11421), 1, + ACTIONS(12348), 1, sym__table_head_separator, - STATE(7265), 1, + STATE(7791), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230019] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10123), 1, - anon_sym_LPAREN, - STATE(7266), 1, - sym_comment, - ACTIONS(10125), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [230033] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7267), 1, - sym_comment, - ACTIONS(10807), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230045] = 4, + [249049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11423), 1, + ACTIONS(12350), 1, sym__table_head_separator, - STATE(7268), 1, + STATE(7792), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230059] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11425), 1, - anon_sym_RBRACK, - STATE(6267), 1, - aux_sym__multiple_types_repeat1, - STATE(7269), 1, - sym_comment, - [230075] = 5, - ACTIONS(3), 1, + [249063] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11427), 1, - anon_sym_RBRACK, - STATE(6268), 1, - aux_sym__multiple_types_repeat1, - STATE(7270), 1, + ACTIONS(12352), 1, + anon_sym_PIPE, + ACTIONS(12355), 1, + anon_sym_EQ_GT, + STATE(7793), 2, sym_comment, - [230091] = 5, + aux_sym_match_pattern_repeat1, + [249077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11429), 1, - anon_sym_RBRACK, - STATE(6269), 1, - aux_sym__multiple_types_repeat1, - STATE(7271), 1, + ACTIONS(1687), 1, + sym__newline, + ACTIONS(1699), 1, + sym__space, + ACTIONS(7487), 1, + aux_sym_unquoted_token2, + STATE(7794), 1, sym_comment, - [230107] = 5, + [249093] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7031), 1, + STATE(7590), 1, sym_val_list, - STATE(7272), 1, - sym_comment, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - [230123] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1695), 1, - sym__newline, - ACTIONS(1707), 1, - sym__space, - ACTIONS(7184), 1, - aux_sym_unquoted_token2, - STATE(7273), 1, + STATE(7795), 1, sym_comment, - [230139] = 5, + [249109] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7100), 1, + STATE(7640), 1, sym_val_list, - STATE(7274), 1, - sym_comment, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - [230155] = 5, + STATE(7796), 1, + sym_comment, + [249125] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7103), 1, + STATE(7642), 1, sym_val_list, - STATE(7275), 1, - sym_comment, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - [230171] = 4, + STATE(7797), 1, + sym_comment, + [249141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11431), 1, - sym__table_head_separator, - STATE(7276), 1, - sym_comment, - ACTIONS(1038), 2, - anon_sym_RBRACK, + ACTIONS(6244), 1, sym__entry_separator, - [230185] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7277), 1, + ACTIONS(6248), 1, + anon_sym_RBRACE, + STATE(3125), 1, + aux_sym__multiple_types_repeat1, + STATE(7798), 1, sym_comment, - ACTIONS(11433), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [230197] = 3, - ACTIONS(251), 1, + [249157] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7278), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(7487), 1, + aux_sym_unquoted_token4, + STATE(7799), 1, sym_comment, - ACTIONS(6168), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230209] = 5, + STATE(8102), 1, + sym__expr_parenthesized_immediate, + [249173] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7147), 1, + STATE(7672), 1, sym_val_list, - STATE(7279), 1, - sym_comment, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - [230225] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2515), 1, - sym__entry_separator, - STATE(7280), 1, - sym_comment, - ACTIONS(2513), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230239] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(11435), 1, - anon_sym_GT2, - STATE(7281), 1, + STATE(7800), 1, sym_comment, - STATE(7854), 1, - sym_param_cmd, - [230255] = 3, + [249189] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7282), 1, + ACTIONS(10783), 1, + anon_sym_PIPE, + ACTIONS(12357), 1, + anon_sym_EQ_GT, + STATE(7793), 1, + aux_sym_match_pattern_repeat1, + STATE(7801), 1, sym_comment, - ACTIONS(11437), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [230267] = 4, + [249205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1314), 1, - anon_sym_POUND_BANG, - ACTIONS(11439), 1, - sym__newline, - STATE(7283), 2, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6273), 1, + anon_sym_RBRACE, + STATE(3083), 1, + aux_sym__multiple_types_repeat1, + STATE(7802), 1, sym_comment, - aux_sym_shebang_repeat1, - [230281] = 5, + [249221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11442), 1, - anon_sym_RBRACK, - STATE(6270), 1, - aux_sym__multiple_types_repeat1, - STATE(7284), 1, + ACTIONS(2244), 1, + anon_sym_PIPE, + STATE(7803), 1, sym_comment, - [230297] = 3, + ACTIONS(2242), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [249235] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7285), 1, + ACTIONS(11835), 1, + sym_hex_digit, + ACTIONS(12359), 1, + anon_sym_RBRACK, + STATE(7421), 1, + aux_sym_val_binary_repeat1, + STATE(7804), 1, sym_comment, - ACTIONS(10175), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230309] = 4, + [249251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, - sym__entry_separator, - STATE(7286), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(7805), 1, sym_comment, - ACTIONS(2433), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230323] = 4, - ACTIONS(3), 1, + ACTIONS(2272), 2, + sym_identifier, + anon_sym_DOLLAR, + [249265] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2534), 1, - sym__entry_separator, - STATE(7287), 1, + ACTIONS(10276), 1, + anon_sym_LBRACK, + STATE(7759), 1, + sym_val_list, + STATE(7767), 1, + aux_sym_val_table_repeat1, + STATE(7806), 1, sym_comment, - ACTIONS(2532), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230337] = 5, + [249281] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11444), 1, + ACTIONS(12361), 1, anon_sym_RBRACK, - STATE(6271), 1, + STATE(6819), 1, aux_sym__multiple_types_repeat1, - STATE(7288), 1, + STATE(7807), 1, sym_comment, - [230353] = 5, - ACTIONS(3), 1, + [249297] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11446), 1, - anon_sym_RBRACK, - STATE(6272), 1, - aux_sym__multiple_types_repeat1, - STATE(7289), 1, + ACTIONS(5027), 1, + anon_sym_LBRACE, + ACTIONS(12363), 1, + anon_sym_EQ2, + ACTIONS(12365), 1, + sym_short_flag_identifier, + STATE(7808), 1, sym_comment, - [230369] = 4, + [249313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(1687), 1, + anon_sym_RBRACK, + ACTIONS(1699), 1, sym__entry_separator, - STATE(7290), 1, + ACTIONS(9330), 1, + aux_sym__unquoted_in_list_token2, + STATE(7809), 1, sym_comment, - ACTIONS(2481), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [230383] = 5, + [249329] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(1781), 1, + anon_sym_LBRACE, + ACTIONS(11717), 1, + aux_sym__immediate_decimal_token2, + STATE(7810), 1, + sym_comment, + [249345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11448), 1, - anon_sym_RBRACK, - STATE(6273), 1, - aux_sym__multiple_types_repeat1, - STATE(7291), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(1701), 1, + aux_sym__unquoted_in_record_token4, + STATE(7811), 1, sym_comment, - [230399] = 3, + STATE(8112), 1, + sym__expr_parenthesized_immediate, + [249361] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7292), 1, + STATE(7812), 1, sym_comment, - ACTIONS(10866), 3, + ACTIONS(10929), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230411] = 5, + [249373] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2298), 1, - sym__newline, - ACTIONS(2300), 1, - sym__space, - STATE(7293), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12367), 1, + anon_sym_RBRACK, + STATE(6823), 1, + aux_sym__multiple_types_repeat1, + STATE(7813), 1, sym_comment, - [230427] = 5, + [249389] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11450), 1, + ACTIONS(12369), 1, anon_sym_RBRACK, - STATE(6779), 1, + STATE(6824), 1, aux_sym__multiple_types_repeat1, - STATE(7294), 1, - sym_comment, - [230443] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_PIPE, - ACTIONS(11452), 1, - anon_sym_EQ_GT, - STATE(6845), 1, - aux_sym_match_pattern_repeat1, - STATE(7295), 1, + STATE(7814), 1, sym_comment, - [230459] = 5, + [249405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6071), 1, - anon_sym_RBRACE, - ACTIONS(6073), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(2952), 1, + ACTIONS(12371), 1, + anon_sym_RBRACK, + STATE(6828), 1, aux_sym__multiple_types_repeat1, - STATE(7296), 1, - sym_comment, - [230475] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(7186), 1, - sym_val_list, - STATE(7297), 1, + STATE(7815), 1, sym_comment, - STATE(7303), 1, - aux_sym_val_table_repeat1, - [230491] = 4, + [249421] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11454), 1, + ACTIONS(12373), 1, sym__table_head_separator, - STATE(7298), 1, + STATE(7816), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230505] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7299), 1, - sym_comment, - ACTIONS(10809), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230517] = 5, + [249435] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11456), 1, + ACTIONS(12375), 1, anon_sym_RBRACK, - STATE(6813), 1, + STATE(6829), 1, aux_sym__multiple_types_repeat1, - STATE(7300), 1, + STATE(7817), 1, sym_comment, - [230533] = 4, + [249451] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11458), 1, + ACTIONS(12377), 1, sym__table_head_separator, - STATE(7301), 1, + STATE(7818), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230547] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7302), 1, - sym_comment, - ACTIONS(10811), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230559] = 4, - ACTIONS(251), 1, + [249465] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11460), 1, - anon_sym_LBRACK, - STATE(7526), 1, - sym_val_list, - STATE(7303), 2, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12379), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym__multiple_types_repeat1, + STATE(7819), 1, sym_comment, - aux_sym_val_table_repeat1, - [230573] = 3, - ACTIONS(251), 1, + [249481] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7304), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12381), 1, + anon_sym_RBRACK, + STATE(6842), 1, + aux_sym__multiple_types_repeat1, + STATE(7820), 1, sym_comment, - ACTIONS(10813), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230585] = 5, + [249497] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7270), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7305), 1, + STATE(7814), 1, + sym_val_list, + STATE(7821), 1, sym_comment, - [230601] = 5, + [249513] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7284), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7306), 1, + STATE(7817), 1, + sym_val_list, + STATE(7822), 1, sym_comment, - [230617] = 5, + [249529] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7289), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7307), 1, + STATE(7820), 1, + sym_val_list, + STATE(7823), 1, sym_comment, - [230633] = 5, + [249545] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7291), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7308), 1, + STATE(7824), 1, sym_comment, - [230649] = 4, - ACTIONS(251), 1, + STATE(7827), 1, + sym_val_list, + [249561] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(7309), 1, + ACTIONS(2476), 1, + sym__entry_separator, + STATE(7825), 1, sym_comment, - ACTIONS(2243), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230663] = 4, + ACTIONS(2474), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [249575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11463), 1, + ACTIONS(12383), 1, sym__table_head_separator, - STATE(7310), 1, + STATE(7826), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230677] = 5, + [249589] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(6077), 1, - anon_sym_RBRACE, - STATE(2954), 1, + ACTIONS(12385), 1, + anon_sym_RBRACK, + STATE(6844), 1, aux_sym__multiple_types_repeat1, - STATE(7311), 1, + STATE(7827), 1, sym_comment, - [230693] = 4, + [249605] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11465), 1, - sym__table_head_separator, - STATE(7312), 1, + ACTIONS(2385), 1, + sym__entry_separator, + STATE(7828), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(2383), 2, anon_sym_RBRACK, - sym__entry_separator, - [230707] = 4, + anon_sym_RBRACE, + [249619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2343), 1, - anon_sym_RBRACE, - STATE(7313), 1, + ACTIONS(12387), 1, + sym__table_head_separator, + STATE(7829), 1, sym_comment, - ACTIONS(2345), 2, - anon_sym_LPAREN2, + ACTIONS(1034), 2, + anon_sym_RBRACK, sym__entry_separator, - [230721] = 5, + [249633] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6822), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7314), 1, + STATE(7830), 1, sym_comment, - [230737] = 5, + STATE(7969), 1, + sym_val_list, + [249649] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6824), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7315), 1, + STATE(7831), 1, sym_comment, - [230753] = 3, - ACTIONS(251), 1, + STATE(7972), 1, + sym_val_list, + [249665] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7316), 1, - sym_comment, - ACTIONS(8972), 3, - ts_builtin_sym_end, + ACTIONS(5130), 1, + sym__space, + ACTIONS(5132), 1, sym__newline, - anon_sym_SEMI, - [230765] = 5, + ACTIONS(12389), 1, + anon_sym_EQ2, + STATE(7832), 1, + sym_comment, + [249681] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6827), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7317), 1, + STATE(7833), 1, sym_comment, - [230781] = 5, + STATE(7975), 1, + sym_val_list, + [249697] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6830), 1, - sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7318), 1, + STATE(7834), 1, sym_comment, - [230797] = 4, + STATE(7976), 1, + sym_val_list, + [249713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11467), 1, + ACTIONS(12391), 1, sym__table_head_separator, - STATE(7319), 1, + STATE(7835), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230811] = 4, + [249727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11469), 1, + ACTIONS(2324), 1, + sym__entry_separator, + ACTIONS(2344), 1, + anon_sym_RBRACE, + STATE(596), 1, + aux_sym__multiple_types_repeat1, + STATE(7836), 1, + sym_comment, + [249743] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12393), 1, sym__table_head_separator, - STATE(7320), 1, + STATE(7837), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230825] = 5, - ACTIONS(251), 1, + [249757] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACE, - ACTIONS(11471), 1, - sym_long_flag_identifier, - ACTIONS(11473), 1, - anon_sym_EQ2, - STATE(7321), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(7838), 1, sym_comment, - [230841] = 5, + ACTIONS(2234), 2, + sym_identifier, + anon_sym_DOLLAR, + [249771] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2484), 1, sym__entry_separator, - ACTIONS(11475), 1, - anon_sym_RBRACK, - STATE(3446), 1, - aux_sym__multiple_types_repeat1, - STATE(7322), 1, + STATE(7839), 1, sym_comment, - [230857] = 5, + ACTIONS(2482), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [249785] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6852), 1, + STATE(7329), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7323), 1, + STATE(7840), 1, sym_comment, - [230873] = 5, + [249801] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6855), 1, + STATE(7332), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7324), 1, + STATE(7841), 1, sym_comment, - [230889] = 3, - ACTIONS(251), 1, + [249817] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7325), 1, + STATE(7842), 1, sym_comment, - ACTIONS(9006), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230901] = 5, + ACTIONS(1957), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [249829] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6859), 1, + STATE(7335), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7326), 1, + STATE(7843), 1, sym_comment, - [230917] = 5, + [249845] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6860), 1, + STATE(7338), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7327), 1, + STATE(7844), 1, sym_comment, - [230933] = 4, + [249861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11477), 1, + ACTIONS(12395), 1, sym__table_head_separator, - STATE(7328), 1, + STATE(7845), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230947] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7329), 1, - sym_comment, - ACTIONS(10901), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230959] = 5, + [249875] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(11479), 1, + ACTIONS(6304), 1, anon_sym_RBRACE, - STATE(2993), 1, + STATE(3133), 1, aux_sym__multiple_types_repeat1, - STATE(7330), 1, + STATE(7846), 1, sym_comment, - [230975] = 4, + [249891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11481), 1, + ACTIONS(12397), 1, sym__table_head_separator, - STATE(7331), 1, + STATE(7847), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [230989] = 5, - ACTIONS(251), 1, + [249905] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(4692), 1, - sym_block, - STATE(7332), 1, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6306), 1, + anon_sym_RBRACE, + STATE(3134), 1, + aux_sym__multiple_types_repeat1, + STATE(7848), 1, sym_comment, - [231005] = 5, + [249921] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6876), 1, + STATE(7354), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7333), 1, + STATE(7849), 1, sym_comment, - [231021] = 5, + [249937] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6879), 1, + STATE(7357), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7334), 1, + STATE(7850), 1, + sym_comment, + [249953] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + sym__entry_separator, + STATE(7851), 1, sym_comment, - [231037] = 5, + ACTIONS(2419), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [249967] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6882), 1, + STATE(7359), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7335), 1, + STATE(7852), 1, sym_comment, - [231053] = 5, + [249983] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6883), 1, + STATE(7361), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7336), 1, + STATE(7853), 1, sym_comment, - [231069] = 4, + [249999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11483), 1, + ACTIONS(12399), 1, sym__table_head_separator, - STATE(7337), 1, + STATE(7854), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231083] = 3, - ACTIONS(251), 1, + [250013] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7338), 1, + ACTIONS(2425), 1, + sym__entry_separator, + STATE(7855), 1, sym_comment, - ACTIONS(10901), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231095] = 5, + ACTIONS(2423), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [250027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, + ACTIONS(2429), 1, sym__entry_separator, - ACTIONS(11485), 1, - anon_sym_RBRACE, - STATE(2994), 1, - aux_sym__multiple_types_repeat1, - STATE(7339), 1, + STATE(7856), 1, sym_comment, - [231111] = 4, + ACTIONS(2427), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [250041] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11487), 1, + ACTIONS(12401), 1, sym__table_head_separator, - STATE(7340), 1, + STATE(7857), 1, + sym_comment, + ACTIONS(1034), 2, + anon_sym_RBRACK, + sym__entry_separator, + [250055] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2433), 1, + sym__entry_separator, + STATE(7858), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(2431), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [250069] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2437), 1, sym__entry_separator, - [231125] = 5, + STATE(7859), 1, + sym_comment, + ACTIONS(2435), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [250083] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6900), 1, + STATE(7383), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7341), 1, + STATE(7860), 1, sym_comment, - [231141] = 5, + [250099] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6902), 1, + STATE(7385), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7342), 1, + STATE(7861), 1, sym_comment, - [231157] = 5, + [250115] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6904), 1, + STATE(7388), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7343), 1, + STATE(7862), 1, sym_comment, - [231173] = 5, + [250131] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6906), 1, + STATE(7390), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7344), 1, + STATE(7863), 1, sym_comment, - [231189] = 4, + [250147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11489), 1, + ACTIONS(12403), 1, sym__table_head_separator, - STATE(7345), 1, + STATE(7864), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231203] = 3, + [250161] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7346), 1, + STATE(7865), 1, sym_comment, - ACTIONS(10905), 3, + ACTIONS(11397), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231215] = 4, + [250173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11491), 1, + ACTIONS(12405), 1, sym__table_head_separator, - STATE(7347), 1, + STATE(7866), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231229] = 5, + [250187] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - ACTIONS(1759), 1, - aux_sym__unquoted_in_record_token4, - STATE(7348), 1, - sym_comment, - STATE(7475), 1, - sym__expr_parenthesized_immediate, - [231245] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7349), 1, + ACTIONS(12407), 1, + sym__table_head_separator, + STATE(7867), 1, sym_comment, - ACTIONS(6172), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231257] = 5, + ACTIONS(1034), 2, + anon_sym_RBRACK, + sym__entry_separator, + [250201] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6925), 1, + STATE(7405), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7350), 1, + STATE(7868), 1, sym_comment, - [231273] = 5, + [250217] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6928), 1, + STATE(7407), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7351), 1, + STATE(7869), 1, sym_comment, - [231289] = 5, + [250233] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6931), 1, + STATE(7409), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7352), 1, + STATE(7870), 1, sym_comment, - [231305] = 5, + [250249] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6933), 1, + STATE(7410), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7353), 1, + STATE(7871), 1, sym_comment, - [231321] = 4, + [250265] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, + ACTIONS(12409), 1, sym__table_head_separator, - STATE(7354), 1, + STATE(7872), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231335] = 4, + [250279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11495), 1, + ACTIONS(2480), 1, + sym__entry_separator, + STATE(7873), 1, + sym_comment, + ACTIONS(2478), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [250293] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12411), 1, sym__table_head_separator, - STATE(7355), 1, + STATE(7874), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231349] = 5, + [250307] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6948), 1, + STATE(7435), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7356), 1, + STATE(7875), 1, sym_comment, - [231365] = 5, + [250323] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6950), 1, + STATE(7438), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7357), 1, + STATE(7876), 1, sym_comment, - [231381] = 3, + [250339] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7358), 1, + ACTIONS(2324), 1, + sym__entry_separator, + ACTIONS(12413), 1, + anon_sym_RBRACE, + STATE(582), 1, + aux_sym__multiple_types_repeat1, + STATE(7877), 1, sym_comment, - ACTIONS(2247), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token4, - [231393] = 5, + [250355] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6953), 1, + STATE(7440), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7359), 1, + STATE(7878), 1, sym_comment, - [231409] = 5, + [250371] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6819), 1, + STATE(7441), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7360), 1, + STATE(7879), 1, sym_comment, - [231425] = 4, + [250387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11497), 1, + ACTIONS(12415), 1, sym__table_head_separator, - STATE(7361), 1, + STATE(7880), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231439] = 5, + [250401] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5747), 1, + ACTIONS(5882), 1, sym__entry_separator, - ACTIONS(11499), 1, + ACTIONS(12417), 1, anon_sym_RBRACK, - STATE(2675), 1, + STATE(2805), 1, aux_sym__multiple_types_repeat1, - STATE(7362), 1, + STATE(7881), 1, sym_comment, - [231455] = 4, + [250417] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11501), 1, + ACTIONS(12419), 1, sym__table_head_separator, - STATE(7363), 1, + STATE(7882), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231469] = 5, + [250431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2254), 1, + anon_sym_EQ_GT, + ACTIONS(2258), 1, + anon_sym_PIPE, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(7883), 1, + sym_comment, + [250447] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6971), 1, + STATE(7461), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7364), 1, + STATE(7884), 1, sym_comment, - [231485] = 5, + [250463] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6973), 1, + STATE(7464), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7365), 1, + STATE(7885), 1, + sym_comment, + [250479] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2445), 1, + sym__entry_separator, + STATE(7886), 1, sym_comment, - [231501] = 5, + ACTIONS(2443), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [250493] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6977), 1, + STATE(7466), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7366), 1, + STATE(7887), 1, sym_comment, - [231517] = 5, + [250509] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6979), 1, + STATE(7467), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7367), 1, + STATE(7888), 1, sym_comment, - [231533] = 4, + [250525] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11503), 1, + ACTIONS(12421), 1, sym__table_head_separator, - STATE(7368), 1, + STATE(7889), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231547] = 5, + [250539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(2449), 1, sym__entry_separator, - ACTIONS(11505), 1, - anon_sym_RBRACK, - STATE(6323), 1, - aux_sym__multiple_types_repeat1, - STATE(7369), 1, + STATE(7890), 1, sym_comment, - [231563] = 4, + ACTIONS(2447), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [250553] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11507), 1, + ACTIONS(12423), 1, sym__table_head_separator, - STATE(7370), 1, + STATE(7891), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231577] = 3, + [250567] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7371), 1, + STATE(7892), 1, sym_comment, - ACTIONS(6148), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231589] = 5, + ACTIONS(11041), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [250579] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + STATE(7893), 1, + sym_comment, + ACTIONS(11041), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [250591] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(6997), 1, + STATE(7482), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7372), 1, + STATE(7894), 1, sym_comment, - [231605] = 5, + [250607] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7000), 1, + STATE(7484), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7373), 1, + STATE(7895), 1, sym_comment, - [231621] = 3, - ACTIONS(251), 1, + [250623] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7374), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12425), 1, + anon_sym_RBRACK, + STATE(7159), 1, + aux_sym__multiple_types_repeat1, + STATE(7896), 1, sym_comment, - ACTIONS(10905), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231633] = 5, + [250639] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7003), 1, + STATE(7486), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7375), 1, + STATE(7897), 1, sym_comment, - [231649] = 5, + [250655] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7006), 1, + STATE(7488), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7376), 1, + STATE(7898), 1, sym_comment, - [231665] = 4, + [250671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11509), 1, + ACTIONS(12427), 1, sym__table_head_separator, - STATE(7377), 1, + STATE(7899), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231679] = 4, + [250685] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7900), 1, + sym_comment, + ACTIONS(11041), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [250697] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1306), 1, + anon_sym_RPAREN, + STATE(7901), 1, + sym_comment, + ACTIONS(1299), 2, + sym__newline, + anon_sym_SEMI, + [250711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11511), 1, + ACTIONS(12429), 1, sym__table_head_separator, - STATE(7378), 1, + STATE(7902), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231693] = 5, + [250725] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_LBRACK, - STATE(6895), 1, - sym_val_list, - STATE(7303), 1, - aux_sym_val_table_repeat1, - STATE(7379), 1, + STATE(7903), 1, sym_comment, - [231709] = 5, + ACTIONS(1306), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [250737] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + STATE(7904), 1, + sym_comment, + ACTIONS(11429), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [250749] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7019), 1, + STATE(7503), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7380), 1, + STATE(7905), 1, sym_comment, - [231725] = 5, + [250765] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7022), 1, + STATE(7506), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7381), 1, + STATE(7906), 1, sym_comment, - [231741] = 5, + [250781] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + STATE(7907), 1, + sym_comment, + ACTIONS(11465), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [250793] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7025), 1, + STATE(7509), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7382), 1, + STATE(7908), 1, sym_comment, - [231757] = 5, + [250809] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7027), 1, + STATE(7511), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7383), 1, + STATE(7909), 1, sym_comment, - [231773] = 4, + [250825] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11513), 1, + ACTIONS(12431), 1, sym__table_head_separator, - STATE(7384), 1, + STATE(7910), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231787] = 5, + [250839] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1548), 1, - anon_sym_SEMI, - ACTIONS(3907), 1, - sym__newline, - STATE(1820), 1, - aux_sym_shebang_repeat1, - STATE(7385), 1, + STATE(7911), 1, sym_comment, - [231803] = 4, + ACTIONS(11225), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [250851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11515), 1, + ACTIONS(12433), 1, sym__table_head_separator, - STATE(7386), 1, + STATE(7912), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231817] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2282), 1, - anon_sym_EQ_GT, - ACTIONS(2286), 1, - anon_sym_PIPE, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(7387), 1, - sym_comment, - [231833] = 5, + [250865] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7042), 1, + STATE(7526), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7388), 1, + STATE(7913), 1, sym_comment, - [231849] = 5, + [250881] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7044), 1, + STATE(7529), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7389), 1, + STATE(7914), 1, sym_comment, - [231865] = 5, + [250897] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7048), 1, + STATE(7532), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7390), 1, + STATE(7915), 1, sym_comment, - [231881] = 5, + [250913] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7050), 1, + STATE(7535), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7391), 1, + STATE(7916), 1, sym_comment, - [231897] = 4, + [250929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11517), 1, + ACTIONS(12435), 1, sym__table_head_separator, - STATE(7392), 1, + STATE(7917), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231911] = 4, + [250943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11519), 1, + ACTIONS(12437), 1, sym__table_head_separator, - STATE(7393), 1, + STATE(7918), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [231925] = 5, + [250957] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7057), 1, + STATE(7551), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7394), 1, + STATE(7919), 1, sym_comment, - [231941] = 5, + [250973] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7059), 1, + STATE(7554), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7395), 1, + STATE(7920), 1, sym_comment, - [231957] = 5, + [250989] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6105), 1, sym__entry_separator, - ACTIONS(11521), 1, + ACTIONS(12439), 1, anon_sym_RBRACK, - STATE(3447), 1, + STATE(2995), 1, aux_sym__multiple_types_repeat1, - STATE(7396), 1, + STATE(7921), 1, sym_comment, - [231973] = 5, + [251005] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7062), 1, + STATE(7557), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7397), 1, + STATE(7922), 1, sym_comment, - [231989] = 5, + [251021] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7065), 1, + STATE(7559), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7398), 1, + STATE(7923), 1, sym_comment, - [232005] = 4, + [251037] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11523), 1, + ACTIONS(12441), 1, sym__table_head_separator, - STATE(7399), 1, + STATE(7924), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232019] = 4, + [251051] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, + ACTIONS(12443), 1, sym__table_head_separator, - STATE(7400), 1, + STATE(7925), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232033] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2487), 1, - sym__entry_separator, - STATE(7401), 1, - sym_comment, - ACTIONS(2485), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232047] = 5, + [251065] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7079), 1, + STATE(7577), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7402), 1, + STATE(7926), 1, sym_comment, - [232063] = 5, + [251081] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7081), 1, + STATE(7579), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7403), 1, + STATE(7927), 1, sym_comment, - [232079] = 5, + [251097] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7083), 1, + STATE(7582), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7404), 1, + STATE(7928), 1, sym_comment, - [232095] = 5, + [251113] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7084), 1, + STATE(7583), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7405), 1, + STATE(7929), 1, sym_comment, - [232111] = 4, + [251129] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11527), 1, + ACTIONS(12445), 1, sym__table_head_separator, - STATE(7406), 1, + STATE(7930), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232125] = 4, + [251143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11529), 1, + ACTIONS(12447), 1, sym__table_head_separator, - STATE(7407), 1, + STATE(7931), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232139] = 5, + [251157] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7092), 1, + STATE(7596), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7408), 1, + STATE(7932), 1, sym_comment, - [232155] = 5, + [251173] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7094), 1, + STATE(7598), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7409), 1, + STATE(7933), 1, sym_comment, - [232171] = 5, + [251189] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + STATE(7934), 1, + sym_comment, + ACTIONS(10937), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [251201] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7097), 1, + STATE(7601), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7410), 1, + STATE(7935), 1, sym_comment, - [232187] = 5, + [251217] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7099), 1, + STATE(7603), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7411), 1, + STATE(7936), 1, sym_comment, - [232203] = 4, + [251233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11531), 1, + ACTIONS(12449), 1, sym__table_head_separator, - STATE(7412), 1, + STATE(7937), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232217] = 4, + [251247] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11533), 1, + ACTIONS(12451), 1, sym__table_head_separator, - STATE(7413), 1, + STATE(7938), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2423), 1, - sym__entry_separator, - STATE(7414), 1, - sym_comment, - ACTIONS(2421), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232245] = 5, + [251261] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7107), 1, + STATE(7607), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7415), 1, + STATE(7939), 1, sym_comment, - [232261] = 5, + [251277] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7110), 1, + STATE(7609), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7416), 1, + STATE(7940), 1, sym_comment, - [232277] = 5, + [251293] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7112), 1, + STATE(7612), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7417), 1, + STATE(7941), 1, sym_comment, - [232293] = 5, + [251309] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7114), 1, + STATE(7615), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7418), 1, + STATE(7942), 1, sym_comment, - [232309] = 4, + [251325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11535), 1, + ACTIONS(12453), 1, sym__table_head_separator, - STATE(7419), 1, + STATE(7943), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232323] = 4, + [251339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11537), 1, + ACTIONS(12455), 1, sym__table_head_separator, - STATE(7420), 1, + STATE(7944), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1034), 2, anon_sym_RBRACK, sym__entry_separator, - [232337] = 5, + [251353] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7120), 1, + STATE(7623), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7421), 1, + STATE(7945), 1, sym_comment, - [232353] = 5, + [251369] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7123), 1, + STATE(7625), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7422), 1, + STATE(7946), 1, sym_comment, - [232369] = 5, + [251385] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7126), 1, + STATE(7628), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7423), 1, + STATE(7947), 1, sym_comment, - [232385] = 5, + [251401] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, + ACTIONS(10276), 1, anon_sym_LBRACK, - STATE(7128), 1, + STATE(7630), 1, sym_val_list, - STATE(7303), 1, + STATE(7767), 1, aux_sym_val_table_repeat1, - STATE(7424), 1, + STATE(7948), 1, sym_comment, - [232401] = 4, + [251417] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, - sym__entry_separator, - STATE(7425), 1, - sym_comment, - ACTIONS(1969), 2, - anon_sym_RBRACK, + ACTIONS(1687), 1, anon_sym_RBRACE, - [232415] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6284), 1, - sym_block, - STATE(7426), 1, - sym_comment, - [232431] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7427), 1, + ACTIONS(1699), 1, + sym__entry_separator, + ACTIONS(9234), 1, + aux_sym__unquoted_in_record_token2, + STATE(7949), 1, sym_comment, - ACTIONS(10897), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232443] = 5, + [251433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(8784), 1, - aux_sym__unquoted_in_list_token4, - STATE(7428), 1, + ACTIONS(2334), 1, + anon_sym_RBRACE, + STATE(7950), 1, sym_comment, - STATE(7522), 1, - sym__expr_parenthesized_immediate, - [232459] = 5, + ACTIONS(2336), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [251447] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11539), 1, + ACTIONS(12457), 1, anon_sym_RBRACK, - STATE(7429), 1, + STATE(7951), 1, sym_comment, - STATE(7440), 1, + STATE(7960), 1, aux_sym_val_binary_repeat1, - [232475] = 3, + [251463] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7430), 1, + STATE(7952), 1, sym_comment, - ACTIONS(10167), 3, + ACTIONS(11041), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232487] = 3, + [251475] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7431), 1, + STATE(7953), 1, sym_comment, - ACTIONS(10905), 3, + ACTIONS(11041), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232499] = 4, + [251487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, - sym__entry_separator, - STATE(7432), 1, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + ACTIONS(9330), 1, + aux_sym__unquoted_in_list_token4, + STATE(7954), 1, sym_comment, - ACTIONS(2489), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [232513] = 5, + STATE(8167), 1, + sym__expr_parenthesized_immediate, + [251503] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11541), 1, + ACTIONS(12459), 1, anon_sym_RBRACK, - STATE(2856), 1, + STATE(6951), 1, aux_sym__multiple_types_repeat1, - STATE(7433), 1, + STATE(7955), 1, sym_comment, - [232529] = 5, - ACTIONS(3), 1, + [251519] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(11543), 1, - anon_sym_RBRACK, - STATE(2857), 1, - aux_sym__multiple_types_repeat1, - STATE(7434), 1, + STATE(7956), 1, sym_comment, - [232545] = 5, + ACTIONS(12461), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [251531] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6242), 1, + anon_sym_RBRACE, + ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(11545), 1, - anon_sym_RBRACK, - STATE(6383), 1, + STATE(3097), 1, aux_sym__multiple_types_repeat1, - STATE(7435), 1, + STATE(7957), 1, sym_comment, - [232561] = 5, + [251547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11547), 1, - anon_sym_RBRACK, - STATE(6406), 1, - aux_sym__multiple_types_repeat1, - STATE(7436), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym_unquoted_token4, + STATE(7958), 1, sym_comment, - [232577] = 5, + STATE(8201), 1, + sym__expr_parenthesized_immediate, + [251563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - ACTIONS(11549), 1, - anon_sym_RBRACK, - STATE(6456), 1, - aux_sym__multiple_types_repeat1, - STATE(7437), 1, - sym_comment, - [232593] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4930), 1, - anon_sym_LBRACE, - ACTIONS(11551), 1, - anon_sym_EQ2, - ACTIONS(11553), 1, - sym_short_flag_identifier, - STATE(7438), 1, + ACTIONS(2300), 1, + anon_sym_RBRACE, + STATE(7959), 1, sym_comment, - [232609] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(2302), 2, anon_sym_LPAREN2, - ACTIONS(4839), 1, - aux_sym_unquoted_token4, - STATE(7439), 1, - sym_comment, - STATE(7710), 1, - sym__expr_parenthesized_immediate, - [232625] = 5, + sym__entry_separator, + [251577] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, + ACTIONS(11835), 1, sym_hex_digit, - ACTIONS(11555), 1, + ACTIONS(12463), 1, anon_sym_RBRACK, - STATE(7264), 1, + STATE(7421), 1, aux_sym_val_binary_repeat1, - STATE(7440), 1, + STATE(7960), 1, sym_comment, - [232641] = 3, + [251593] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7441), 1, + ACTIONS(12465), 1, + anon_sym_EQ2, + STATE(7961), 1, sym_comment, - ACTIONS(10844), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232653] = 3, - ACTIONS(251), 1, + ACTIONS(5112), 2, + sym_identifier, + anon_sym_DOLLAR, + [251607] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7442), 1, + ACTIONS(12467), 1, + anon_sym_GT2, + STATE(7962), 1, sym_comment, - ACTIONS(11557), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [232665] = 3, - ACTIONS(251), 1, + ACTIONS(12469), 2, + anon_sym_AT, + sym__entry_separator, + [251621] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7443), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12471), 1, + anon_sym_RBRACK, + STATE(7101), 1, + aux_sym__multiple_types_repeat1, + STATE(7963), 1, sym_comment, - ACTIONS(11559), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [232677] = 3, + [251637] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6244), 1, + sym__entry_separator, + ACTIONS(6255), 1, + anon_sym_RBRACE, + STATE(3128), 1, + aux_sym__multiple_types_repeat1, + STATE(7964), 1, + sym_comment, + [251653] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7444), 1, + STATE(7965), 1, sym_comment, - ACTIONS(10883), 3, + ACTIONS(11041), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232689] = 4, + [251665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(2393), 1, sym__entry_separator, - STATE(7445), 1, + STATE(7966), 1, sym_comment, - ACTIONS(2473), 2, + ACTIONS(2391), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [232703] = 5, + [251679] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1038), 1, - sym__newline, - ACTIONS(1040), 1, - sym__space, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(7446), 1, + ACTIONS(2393), 1, + sym__entry_separator, + STATE(7967), 1, sym_comment, - [232719] = 5, + ACTIONS(2391), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [251693] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__space, - ACTIONS(5050), 1, - sym__newline, - ACTIONS(11561), 1, - anon_sym_EQ2, - STATE(7447), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12473), 1, + anon_sym_RBRACK, + STATE(7102), 1, + aux_sym__multiple_types_repeat1, + STATE(7968), 1, sym_comment, - [232735] = 5, + [251709] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, + ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(11563), 1, + ACTIONS(12475), 1, anon_sym_RBRACK, - STATE(6302), 1, + STATE(7114), 1, aux_sym__multiple_types_repeat1, - STATE(7448), 1, + STATE(7969), 1, sym_comment, - [232751] = 4, + [251725] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(6760), 1, sym__entry_separator, - STATE(7449), 1, - sym_comment, - ACTIONS(2477), 2, + ACTIONS(12477), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [232765] = 4, + STATE(7116), 1, + aux_sym__multiple_types_repeat1, + STATE(7970), 1, + sym_comment, + [251741] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(7450), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + ACTIONS(9234), 1, + aux_sym__unquoted_in_record_token4, + STATE(7971), 1, sym_comment, - ACTIONS(2290), 2, - sym_identifier, - anon_sym_DOLLAR, - [232779] = 4, + STATE(8194), 1, + sym__expr_parenthesized_immediate, + [251757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(7451), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12479), 1, + anon_sym_RBRACK, + STATE(7117), 1, + aux_sym__multiple_types_repeat1, + STATE(7972), 1, sym_comment, - ACTIONS(2298), 2, - sym_identifier, - anon_sym_DOLLAR, - [232793] = 3, + [251773] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7452), 1, + STATE(7973), 1, sym_comment, - ACTIONS(10846), 3, - ts_builtin_sym_end, + ACTIONS(12481), 3, sym__newline, anon_sym_SEMI, - [232805] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + [251785] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6297), 1, - sym_block, - STATE(7453), 1, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12483), 1, + anon_sym_RBRACK, + STATE(7118), 1, + aux_sym__multiple_types_repeat1, + STATE(7974), 1, + sym_comment, + [251801] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12485), 1, + anon_sym_RBRACK, + STATE(7119), 1, + aux_sym__multiple_types_repeat1, + STATE(7975), 1, + sym_comment, + [251817] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + ACTIONS(12487), 1, + anon_sym_RBRACK, + STATE(7120), 1, + aux_sym__multiple_types_repeat1, + STATE(7976), 1, sym_comment, - [232821] = 3, + [251833] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7454), 1, + STATE(7977), 1, sym_comment, - ACTIONS(10129), 3, + ACTIONS(11221), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232833] = 5, + [251845] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6325), 1, - anon_sym_AT, - ACTIONS(7899), 1, - anon_sym_EQ, - STATE(5070), 1, - sym_param_cmd, - STATE(7455), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(5480), 1, + sym_block, + STATE(7978), 1, sym_comment, - [232849] = 4, + [251858] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - ACTIONS(11565), 1, - anon_sym_make, - STATE(7456), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7364), 1, + sym_block, + STATE(7979), 1, sym_comment, - [232862] = 4, + [251871] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11567), 1, + ACTIONS(12489), 1, aux_sym__unquoted_with_expr_token1, - STATE(7457), 1, + STATE(7980), 1, sym_comment, - STATE(7465), 1, + STATE(8192), 1, aux_sym__unquoted_with_expr_repeat1, - [232875] = 4, + [251884] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, + ACTIONS(12491), 1, aux_sym__unquoted_with_expr_token1, - STATE(7458), 1, + STATE(7981), 1, sym_comment, - STATE(7466), 1, + STATE(8192), 1, aux_sym__unquoted_with_expr_repeat1, - [232888] = 4, - ACTIONS(251), 1, + [251897] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6701), 1, - sym_block, - STATE(7459), 1, + ACTIONS(12493), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7982), 1, sym_comment, - [232901] = 4, - ACTIONS(251), 1, + STATE(8011), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [251910] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(7261), 1, - sym_block, - STATE(7460), 1, + ACTIONS(12495), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7983), 1, sym_comment, - [232914] = 4, + STATE(8012), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [251923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8221), 1, + ACTIONS(2266), 1, + anon_sym_RBRACE, + ACTIONS(2270), 1, sym__entry_separator, - ACTIONS(8223), 1, - anon_sym_RBRACK, - STATE(7461), 1, + STATE(7984), 1, sym_comment, - [232927] = 4, + [251936] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6705), 1, + STATE(6999), 1, sym_block, - STATE(7462), 1, + STATE(7985), 1, sym_comment, - [232940] = 4, + [251949] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6961), 1, - sym_block, STATE(7463), 1, - sym_comment, - [232953] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5684), 1, - anon_sym_RBRACK, - ACTIONS(5686), 1, - sym__entry_separator, - STATE(7464), 1, - sym_comment, - [232966] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11571), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7465), 1, - sym_comment, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - [232979] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11573), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7466), 1, - sym_comment, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - [232992] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6963), 1, sym_block, - STATE(7467), 1, - sym_comment, - [233005] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3585), 1, - sym__space, - STATE(1172), 1, - aux_sym_pipe_element_repeat1, - STATE(7468), 1, + STATE(7986), 1, sym_comment, - [233018] = 4, + [251962] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7012), 1, + STATE(7489), 1, sym_block, - STATE(7469), 1, + STATE(7987), 1, sym_comment, - [233031] = 4, + [251975] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7249), 1, + STATE(7059), 1, sym_block, - STATE(7470), 1, + STATE(7988), 1, sym_comment, - [233044] = 4, + [251988] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - sym__entry_separator, - STATE(3072), 1, - aux_sym__multiple_types_repeat1, - STATE(7471), 1, + ACTIONS(1034), 1, + anon_sym_in2, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(7989), 1, sym_comment, - [233057] = 4, - ACTIONS(3), 1, + [252001] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - sym__entry_separator, - STATE(7472), 1, + ACTIONS(1799), 1, + aux_sym_unquoted_token2, + ACTIONS(1801), 1, + anon_sym_LBRACE, + STATE(7990), 1, sym_comment, - [233070] = 4, - ACTIONS(3), 1, + [252014] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1843), 1, - anon_sym_RBRACE, - ACTIONS(1851), 1, - sym__entry_separator, - STATE(7473), 1, + ACTIONS(1699), 1, + anon_sym_in2, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(7991), 1, sym_comment, - [233083] = 4, - ACTIONS(3), 1, + [252027] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11575), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7474), 1, - sym_comment, + ACTIONS(6414), 1, + anon_sym_LBRACE, STATE(7569), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [233096] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11577), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7475), 1, + sym_block, + STATE(7992), 1, sym_comment, - STATE(7509), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233109] = 4, + [252040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8225), 1, - sym__entry_separator, - ACTIONS(8227), 1, + ACTIONS(12497), 1, anon_sym_RBRACK, - STATE(7476), 1, - sym_comment, - [233122] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11579), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7477), 1, + ACTIONS(12499), 1, + sym__entry_separator, + STATE(7993), 1, sym_comment, - STATE(7511), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233135] = 4, - ACTIONS(3), 1, + [252053] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11581), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7478), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(7994), 1, sym_comment, - STATE(7570), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [233148] = 4, + STATE(8062), 1, + sym__expr_parenthesized_immediate, + [252066] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7452), 1, + STATE(7123), 1, sym_block, - STATE(7479), 1, + STATE(7995), 1, sym_comment, - [233161] = 4, - ACTIONS(251), 1, + [252079] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6476), 1, - sym_block, - STATE(7480), 1, + STATE(7996), 1, sym_comment, - [233174] = 4, + ACTIONS(1302), 2, + anon_sym_POUND_BANG, + sym__newline, + [252090] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6828), 1, + STATE(7138), 1, sym_block, - STATE(7481), 1, - sym_comment, - [233187] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11583), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7482), 1, - sym_comment, - STATE(7484), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233200] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11585), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7483), 1, + STATE(7997), 1, sym_comment, - STATE(7484), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233213] = 3, - ACTIONS(3), 1, + [252103] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11587), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7484), 2, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7368), 1, + sym_block, + STATE(7998), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [233224] = 4, + [252116] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6482), 1, + STATE(7146), 1, sym_block, - STATE(7485), 1, + STATE(7999), 1, sym_comment, - [233237] = 4, + [252129] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6833), 1, + STATE(7140), 1, sym_block, - STATE(7486), 1, + STATE(8000), 1, sym_comment, - [233250] = 4, + [252142] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6837), 1, + STATE(7152), 1, sym_block, - STATE(7487), 1, + STATE(8001), 1, sym_comment, - [233263] = 4, + [252155] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5182), 1, - sym__entry_separator, - ACTIONS(5185), 1, + ACTIONS(2045), 1, anon_sym_RBRACE, - STATE(7488), 1, + ACTIONS(2047), 1, + sym__entry_separator, + STATE(8002), 1, sym_comment, - [233276] = 4, + [252168] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6861), 1, + STATE(7518), 1, sym_block, - STATE(7489), 1, - sym_comment, - [233289] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11590), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7490), 1, - sym_comment, - STATE(7513), 1, - aux_sym__unquoted_with_expr_repeat1, - [233302] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5707), 1, - anon_sym_RBRACK, - ACTIONS(5709), 1, - sym__entry_separator, - STATE(7491), 1, + STATE(8003), 1, sym_comment, - [233315] = 4, - ACTIONS(3), 1, + [252181] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11592), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7492), 1, + ACTIONS(5715), 1, + anon_sym_LPAREN2, + STATE(8004), 1, sym_comment, - STATE(7524), 1, - aux_sym__unquoted_with_expr_repeat1, - [233328] = 4, + STATE(8167), 1, + sym__expr_parenthesized_immediate, + [252194] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6865), 1, + STATE(7155), 1, sym_block, - STATE(7493), 1, + STATE(8005), 1, sym_comment, - [233341] = 4, + [252207] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6291), 1, + STATE(7346), 1, sym_block, - STATE(7494), 1, + STATE(8006), 1, sym_comment, - [233354] = 4, + [252220] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6293), 1, + STATE(7604), 1, sym_block, - STATE(7495), 1, + STATE(8007), 1, sym_comment, - [233367] = 4, - ACTIONS(251), 1, + [252233] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6295), 1, - sym_block, - STATE(7496), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym__unquoted_in_list_token4, + STATE(8008), 1, + sym_comment, + [252246] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6760), 1, + sym__entry_separator, + STATE(7317), 1, + aux_sym__multiple_types_repeat1, + STATE(8009), 1, sym_comment, - [233380] = 4, + [252259] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2247), 1, + STATE(8010), 1, + sym_comment, + ACTIONS(2242), 2, + anon_sym_in2, aux_sym_unquoted_token4, - ACTIONS(2249), 1, - anon_sym_LBRACE, - STATE(7497), 1, + [252270] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12501), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8011), 1, + sym_comment, + STATE(8141), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [252283] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12503), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8012), 1, sym_comment, - [233393] = 4, + STATE(8141), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [252296] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6300), 1, + STATE(7610), 1, sym_block, - STATE(7498), 1, + STATE(8013), 1, sym_comment, - [233406] = 4, + [252309] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6301), 1, + STATE(7678), 1, sym_block, - STATE(7499), 1, + STATE(8014), 1, sym_comment, - [233419] = 4, + [252322] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6315), 1, - sym_block, - STATE(7500), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(8015), 1, + sym_comment, + STATE(8466), 1, + sym__expr_parenthesized_immediate, + [252335] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2272), 1, + anon_sym_RBRACE, + ACTIONS(2274), 1, + sym__entry_separator, + STATE(8016), 1, + sym_comment, + [252348] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12505), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8017), 1, sym_comment, - [233432] = 4, + STATE(8141), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [252361] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(1773), 1, anon_sym_LBRACE, - STATE(6321), 1, - sym_block, - STATE(7501), 1, + STATE(8018), 1, sym_comment, - [233445] = 4, + [252374] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6336), 1, + STATE(7156), 1, sym_block, - STATE(7502), 1, + STATE(8019), 1, sym_comment, - [233458] = 4, + [252387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5910), 1, - anon_sym_RBRACK, - ACTIONS(5916), 1, + ACTIONS(2226), 1, + anon_sym_RBRACE, + ACTIONS(2230), 1, sym__entry_separator, - STATE(7503), 1, + STATE(8020), 1, sym_comment, - [233471] = 4, + [252400] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + ACTIONS(1838), 1, anon_sym_LBRACE, - STATE(6697), 1, - sym_block, - STATE(7504), 1, + STATE(8021), 1, sym_comment, - [233484] = 4, + [252413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2247), 1, + ACTIONS(2234), 1, anon_sym_RBRACE, - ACTIONS(2249), 1, + ACTIONS(2238), 1, sym__entry_separator, - STATE(7505), 1, + STATE(8022), 1, sym_comment, - [233497] = 4, + [252426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5703), 1, - anon_sym_RBRACK, - ACTIONS(5705), 1, - sym__entry_separator, - STATE(7506), 1, + ACTIONS(12507), 1, + sym__newline, + ACTIONS(12509), 1, + sym__space, + STATE(8023), 1, sym_comment, - [233510] = 4, - ACTIONS(3), 1, + [252439] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9985), 1, - anon_sym_RBRACE, - ACTIONS(9987), 1, - sym__entry_separator, - STATE(7507), 1, + ACTIONS(1818), 1, + aux_sym_unquoted_token2, + ACTIONS(1820), 1, + anon_sym_LBRACE, + STATE(8024), 1, sym_comment, - [233523] = 4, - ACTIONS(3), 1, + [252452] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_RBRACE, - ACTIONS(2243), 1, - sym__entry_separator, - STATE(7508), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7157), 1, + sym_block, + STATE(8025), 1, sym_comment, - [233536] = 4, + [252465] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11594), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7484), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7509), 1, + ACTIONS(2254), 1, + anon_sym_in2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(8026), 1, sym_comment, - [233549] = 4, - ACTIONS(3), 1, + [252478] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5680), 1, - anon_sym_RBRACK, - ACTIONS(5682), 1, - sym__entry_separator, - STATE(7510), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + ACTIONS(2294), 1, + anon_sym_LBRACE, + STATE(8027), 1, sym_comment, - [233562] = 4, - ACTIONS(3), 1, + [252491] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11596), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7484), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7511), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7433), 1, + sym_block, + STATE(8028), 1, sym_comment, - [233575] = 4, + [252504] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6964), 1, + STATE(7158), 1, sym_block, - STATE(7512), 1, + STATE(8029), 1, sym_comment, - [233588] = 4, - ACTIONS(3), 1, + [252517] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11598), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7513), 1, + ACTIONS(5112), 1, + anon_sym_in2, + ACTIONS(12511), 1, + anon_sym_EQ2, + STATE(8030), 1, sym_comment, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - [233601] = 4, + [252530] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7190), 1, + STATE(7160), 1, sym_block, - STATE(7514), 1, + STATE(8031), 1, sym_comment, - [233614] = 4, - ACTIONS(251), 1, + [252543] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1851), 1, - anon_sym_LBRACE, - STATE(7515), 1, + ACTIONS(2197), 1, + anon_sym_RBRACE, + ACTIONS(2199), 1, + sym__entry_separator, + STATE(8032), 1, sym_comment, - [233627] = 4, + [252556] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LPAREN2, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(7516), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7237), 1, + sym_block, + STATE(8033), 1, sym_comment, - [233640] = 4, + [252569] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(11600), 1, - anon_sym_EQ2, - STATE(7517), 1, + STATE(7242), 1, + sym_block, + STATE(8034), 1, sym_comment, - [233653] = 4, + [252582] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7191), 1, + STATE(7097), 1, sym_block, - STATE(7518), 1, + STATE(8035), 1, sym_comment, - [233666] = 4, + [252595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11602), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7519), 1, + ACTIONS(2258), 1, + anon_sym_LBRACE, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(8036), 1, sym_comment, - STATE(7608), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [233679] = 4, + [252608] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7329), 1, + STATE(7187), 1, sym_block, - STATE(7520), 1, + STATE(8037), 1, sym_comment, - [233692] = 4, + [252621] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7338), 1, + STATE(7098), 1, sym_block, - STATE(7521), 1, - sym_comment, - [233705] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11604), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7522), 1, + STATE(8038), 1, sym_comment, - STATE(7672), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [233718] = 4, + [252634] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, - anon_sym_RBRACE, - ACTIONS(2459), 1, - sym__entry_separator, - STATE(7523), 1, + ACTIONS(12513), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8039), 1, sym_comment, - [233731] = 4, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [252647] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11606), 1, + ACTIONS(12515), 1, aux_sym__unquoted_with_expr_token1, - STATE(7524), 1, + STATE(8040), 1, sym_comment, - STATE(7530), 1, + STATE(8192), 1, aux_sym__unquoted_with_expr_repeat1, - [233744] = 4, + [252660] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11608), 1, + ACTIONS(12517), 1, sym_identifier, - ACTIONS(11610), 1, + ACTIONS(12519), 1, anon_sym_DOLLAR, - STATE(7525), 1, + STATE(8041), 1, + sym_comment, + [252673] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3499), 1, + aux_sym_record_entry_token1, + ACTIONS(12521), 1, + anon_sym_make, + STATE(8042), 1, sym_comment, - [233757] = 4, + [252686] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - STATE(7118), 1, - aux_sym__multiple_types_repeat1, - STATE(7526), 1, + ACTIONS(12523), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8043), 1, sym_comment, - [233770] = 4, + STATE(8065), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [252699] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7141), 1, + STATE(7200), 1, sym_block, - STATE(7527), 1, + STATE(8044), 1, + sym_comment, + [252712] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12525), 1, + sym__newline, + ACTIONS(12527), 1, + sym__space, + STATE(8045), 1, sym_comment, - [233783] = 4, + [252725] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - STATE(7474), 1, - sym__expr_parenthesized_immediate, - STATE(7528), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7570), 1, + sym_block, + STATE(8046), 1, sym_comment, - [233796] = 4, + [252738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_in2, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(7529), 1, + ACTIONS(12529), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8047), 1, sym_comment, - [233809] = 3, + STATE(8142), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [252751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11612), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7530), 2, + ACTIONS(12531), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8048), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [233820] = 4, + STATE(8143), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [252764] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1707), 1, - anon_sym_in2, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(7531), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(6696), 1, + sym_block, + STATE(8049), 1, sym_comment, - [233833] = 4, + [252777] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7143), 1, + STATE(6702), 1, sym_block, - STATE(7532), 1, + STATE(8050), 1, + sym_comment, + [252790] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2242), 1, + aux_sym_unquoted_token4, + ACTIONS(2244), 1, + anon_sym_LBRACE, + STATE(8051), 1, sym_comment, - [233846] = 4, + [252803] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, - aux_sym_record_entry_token1, - ACTIONS(11565), 1, - anon_sym_make, - STATE(7533), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(8052), 1, sym_comment, - [233859] = 4, + STATE(8184), 1, + sym__expr_parenthesized_immediate, + [252816] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5747), 1, + ACTIONS(2524), 1, + anon_sym_RBRACE, + ACTIONS(2526), 1, sym__entry_separator, - STATE(2748), 1, - aux_sym__multiple_types_repeat1, - STATE(7534), 1, + STATE(8053), 1, sym_comment, - [233872] = 4, - ACTIONS(3), 1, + [252829] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11615), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7519), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7535), 1, + ACTIONS(1848), 1, + anon_sym_LBRACE, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(8054), 1, sym_comment, - [233885] = 4, + [252842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2294), 1, - anon_sym_LBRACE, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(7536), 1, + ACTIONS(2254), 1, + anon_sym_RBRACE, + ACTIONS(2258), 1, + sym__entry_separator, + STATE(8055), 1, sym_comment, - [233898] = 4, + [252855] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2300), 1, - anon_sym_LBRACE, - STATE(7537), 1, + ACTIONS(8483), 1, + sym__entry_separator, + ACTIONS(8485), 1, + anon_sym_RBRACK, + STATE(8056), 1, sym_comment, - [233911] = 4, + [252868] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1689), 1, anon_sym_LPAREN2, - STATE(7538), 1, - sym_comment, - STATE(7622), 1, + STATE(8047), 1, sym__expr_parenthesized_immediate, - [233924] = 4, + STATE(8057), 1, + sym_comment, + [252881] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(4866), 1, + STATE(7571), 1, sym_block, - STATE(7539), 1, + STATE(8058), 1, sym_comment, - [233937] = 4, + [252894] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7441), 1, + STATE(7517), 1, sym_block, - STATE(7540), 1, - sym_comment, - [233950] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7876), 1, - sym__entry_separator, - ACTIONS(7880), 1, - anon_sym_RBRACK, - STATE(7541), 1, + STATE(8059), 1, sym_comment, - [233963] = 4, + [252907] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11617), 1, - anon_sym_DASH2, - STATE(7542), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + ACTIONS(2270), 1, + anon_sym_LBRACE, + STATE(8060), 1, sym_comment, - STATE(7987), 1, - sym_param_short_flag, - [233976] = 4, + [252920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, + ACTIONS(2240), 1, aux_sym_unquoted_token4, - STATE(7543), 1, + ACTIONS(2272), 1, + anon_sym_in2, + STATE(8061), 1, sym_comment, - [233989] = 4, + [252933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11619), 1, + ACTIONS(12533), 1, aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7544), 1, - sym_comment, - [234002] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6284), 1, - sym_block, - STATE(7545), 1, - sym_comment, - [234015] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9558), 1, - anon_sym_LBRACE, - STATE(6735), 1, - sym_val_record, - STATE(7546), 1, + STATE(8062), 1, sym_comment, - [234028] = 4, + STATE(8071), 1, + aux_sym__unquoted_with_expr_repeat1, + [252946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2282), 1, + ACTIONS(2234), 1, anon_sym_in2, - ACTIONS(2288), 1, + ACTIONS(2240), 1, aux_sym_unquoted_token4, - STATE(7547), 1, - sym_comment, - [234041] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - STATE(7475), 1, - sym__expr_parenthesized_immediate, - STATE(7548), 1, + STATE(8063), 1, sym_comment, - [234054] = 4, - ACTIONS(251), 1, + [252959] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_in2, - ACTIONS(11621), 1, - anon_sym_EQ2, - STATE(7549), 1, + ACTIONS(1036), 1, + anon_sym_LBRACE, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(8064), 1, sym_comment, - [234067] = 4, + [252972] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_RBRACK, - ACTIONS(5701), 1, - sym__entry_separator, - STATE(7550), 1, + ACTIONS(12535), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8065), 1, sym_comment, - [234080] = 4, + STATE(8173), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [252985] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6916), 1, + STATE(5005), 1, sym_block, - STATE(7551), 1, + STATE(8066), 1, sym_comment, - [234093] = 4, + [252998] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7122), 1, + STATE(7616), 1, sym_block, - STATE(7552), 1, + STATE(8067), 1, + sym_comment, + [253011] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + ACTIONS(12521), 1, + anon_sym_make, + STATE(8068), 1, + sym_comment, + [253024] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9699), 1, + sym__entry_separator, + STATE(6032), 1, + aux_sym__multiple_types_repeat1, + STATE(8069), 1, sym_comment, - [234106] = 4, + [253037] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5691), 1, + ACTIONS(6084), 1, anon_sym_RBRACK, - ACTIONS(5693), 1, + ACTIONS(6090), 1, sym__entry_separator, - STATE(7553), 1, + STATE(8070), 1, sym_comment, - [234119] = 4, + [253050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11623), 1, + ACTIONS(12537), 1, aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7554), 1, + STATE(8071), 1, sym_comment, - [234132] = 4, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [253063] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6689), 1, + STATE(7490), 1, sym_block, - STATE(7555), 1, - sym_comment, - [234145] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(2233), 1, - anon_sym_LBRACE, - STATE(7556), 1, + STATE(8072), 1, sym_comment, - [234158] = 4, - ACTIONS(251), 1, + [253076] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(7124), 1, - sym_block, - STATE(7557), 1, + ACTIONS(2242), 1, + anon_sym_RBRACE, + ACTIONS(2244), 1, + sym__entry_separator, + STATE(8073), 1, sym_comment, - [234171] = 4, + [253089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(12539), 1, anon_sym_RBRACE, - ACTIONS(2233), 1, + ACTIONS(12541), 1, sym__entry_separator, - STATE(7558), 1, + STATE(8074), 1, sym_comment, - [234184] = 4, - ACTIONS(251), 1, + [253102] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6704), 1, - sym_block, - STATE(7559), 1, + ACTIONS(6105), 1, + sym__entry_separator, + STATE(3034), 1, + aux_sym__multiple_types_repeat1, + STATE(8075), 1, sym_comment, - [234197] = 4, + [253115] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7127), 1, + STATE(7934), 1, sym_block, - STATE(7560), 1, + STATE(8076), 1, sym_comment, - [234210] = 4, - ACTIONS(251), 1, + [253128] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6457), 1, - sym_block, - STATE(7561), 1, + ACTIONS(12543), 1, + anon_sym_LPAREN2, + ACTIONS(12545), 1, + aux_sym__record_key_token1, + STATE(8077), 1, sym_comment, - [234223] = 4, + [253141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, - anon_sym_in2, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(7562), 1, + ACTIONS(5882), 1, + sym__entry_separator, + STATE(2920), 1, + aux_sym__multiple_types_repeat1, + STATE(8078), 1, sym_comment, - [234236] = 4, + [253154] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - ACTIONS(2298), 1, - anon_sym_in2, - STATE(7563), 1, + ACTIONS(10807), 1, + anon_sym_RBRACE, + ACTIONS(10809), 1, + sym__entry_separator, + STATE(8079), 1, sym_comment, - [234249] = 4, - ACTIONS(251), 1, + [253167] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6459), 1, - sym_block, - STATE(7564), 1, + ACTIONS(12547), 1, + anon_sym_RBRACE, + ACTIONS(12549), 1, + sym__entry_separator, + STATE(8080), 1, sym_comment, - [234262] = 4, + [253180] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11625), 1, - anon_sym_RBRACK, - ACTIONS(11627), 1, + ACTIONS(2324), 1, sym__entry_separator, - STATE(7565), 1, + STATE(651), 1, + aux_sym__multiple_types_repeat1, + STATE(8081), 1, sym_comment, - [234275] = 4, - ACTIONS(251), 1, + [253193] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(7129), 1, - sym_block, - STATE(7566), 1, + ACTIONS(12551), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8082), 1, sym_comment, - [234288] = 4, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [253206] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(4811), 1, + STATE(5267), 1, sym_block, - STATE(7567), 1, + STATE(8083), 1, + sym_comment, + [253219] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2292), 1, + anon_sym_RBRACE, + ACTIONS(2294), 1, + sym__entry_separator, + STATE(8084), 1, sym_comment, - [234301] = 4, + [253232] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(5715), 1, anon_sym_LPAREN2, - STATE(7568), 1, + STATE(8085), 1, sym_comment, - STATE(7966), 1, + STATE(8421), 1, sym__expr_parenthesized_immediate, - [234314] = 4, + [253245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11629), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7569), 1, + ACTIONS(10811), 1, + anon_sym_RBRACE, + ACTIONS(10813), 1, + sym__entry_separator, + STATE(8086), 1, sym_comment, - STATE(7608), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [234327] = 4, - ACTIONS(3), 1, + [253258] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11631), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7570), 1, + ACTIONS(12553), 1, + anon_sym_DASH2, + STATE(8087), 1, sym_comment, - STATE(7608), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [234340] = 4, + STATE(8348), 1, + sym_param_short_flag, + [253271] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(8088), 1, + sym_comment, + ACTIONS(12355), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [253282] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8267), 1, + ACTIONS(1830), 1, + anon_sym_RBRACE, + ACTIONS(1838), 1, sym__entry_separator, - ACTIONS(8269), 1, - anon_sym_RBRACK, - STATE(7571), 1, + STATE(8089), 1, sym_comment, - [234353] = 4, + [253295] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6910), 1, + STATE(7573), 1, sym_block, - STATE(7572), 1, + STATE(8090), 1, sym_comment, - [234366] = 4, + [253308] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6706), 1, - sym_block, - STATE(7573), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(8091), 1, sym_comment, - [234379] = 4, + STATE(8150), 1, + sym__expr_parenthesized_immediate, + [253321] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6346), 1, + STATE(6767), 1, sym_block, - STATE(7574), 1, + STATE(8092), 1, sym_comment, - [234392] = 4, + [253334] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6707), 1, + STATE(6769), 1, sym_block, - STATE(7575), 1, + STATE(8093), 1, sym_comment, - [234405] = 4, + [253347] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6969), 1, - sym_block, - STATE(7576), 1, - sym_comment, - [234418] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11633), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7577), 1, - sym_comment, - STATE(7682), 1, - aux_sym__unquoted_with_expr_repeat1, - [234431] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11635), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7578), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + STATE(7982), 1, + sym__expr_parenthesized_immediate, + STATE(8094), 1, sym_comment, - STATE(7683), 1, - aux_sym__unquoted_with_expr_repeat1, - [234444] = 4, + [253360] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(4889), 1, + STATE(6772), 1, sym_block, - STATE(7579), 1, + STATE(8095), 1, sym_comment, - [234457] = 4, + [253373] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11637), 1, - sym__newline, - ACTIONS(11639), 1, - sym__space, - STATE(7580), 1, - sym_comment, - [234470] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7581), 1, - sym_comment, - ACTIONS(11641), 2, - anon_sym_RBRACK, - sym_hex_digit, - [234481] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(4952), 1, - sym_block, - STATE(7582), 1, + ACTIONS(6244), 1, + sym__entry_separator, + STATE(3205), 1, + aux_sym__multiple_types_repeat1, + STATE(8096), 1, sym_comment, - [234494] = 4, + [253386] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2245), 1, + ACTIONS(2232), 1, aux_sym_unquoted_token2, - STATE(7583), 1, - sym_comment, - [234507] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11643), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7584), 1, - sym_comment, - STATE(7592), 1, - aux_sym__unquoted_with_expr_repeat1, - [234520] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11645), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7585), 1, + STATE(8097), 1, sym_comment, - STATE(7595), 1, - aux_sym__unquoted_with_expr_repeat1, - [234533] = 4, + [253399] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6693), 1, + STATE(6783), 1, sym_block, - STATE(7586), 1, + STATE(8098), 1, sym_comment, - [234546] = 4, + [253412] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6355), 1, + STATE(6784), 1, sym_block, - STATE(7587), 1, - sym_comment, - [234559] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2290), 1, - anon_sym_RBRACE, - ACTIONS(2294), 1, - sym__entry_separator, - STATE(7588), 1, - sym_comment, - [234572] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2201), 1, - anon_sym_RBRACE, - ACTIONS(2203), 1, - sym__entry_separator, - STATE(7589), 1, + STATE(8099), 1, sym_comment, - [234585] = 4, + [253425] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(7577), 1, - sym__expr_parenthesized_immediate, - STATE(7590), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(6786), 1, + sym_block, + STATE(8100), 1, sym_comment, - [234598] = 4, + [253438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11647), 1, + ACTIONS(7739), 1, anon_sym_RBRACK, - ACTIONS(11649), 1, + ACTIONS(7741), 1, sym__entry_separator, - STATE(7591), 1, + STATE(8101), 1, sym_comment, - [234611] = 4, + [253451] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11651), 1, + ACTIONS(12555), 1, aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7592), 1, - sym_comment, - [234624] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5048), 1, - anon_sym_in2, - ACTIONS(11653), 1, - anon_sym_EQ2, - STATE(7593), 1, - sym_comment, - [234637] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - STATE(7594), 1, + STATE(8102), 1, sym_comment, - STATE(7686), 1, - sym__expr_parenthesized_immediate, - [234650] = 4, + STATE(8223), 1, + aux_sym__unquoted_with_expr_repeat1, + [253464] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11655), 1, + ACTIONS(12557), 1, aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7595), 1, - sym_comment, - [234663] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - STATE(7596), 1, + STATE(8103), 1, sym_comment, - [234676] = 4, + STATE(8111), 1, + aux_sym__unquoted_with_expr_repeat1, + [253477] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7130), 1, + STATE(6798), 1, sym_block, - STATE(7597), 1, + STATE(8104), 1, sym_comment, - [234689] = 4, + [253490] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1707), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(7598), 1, - sym_comment, - [234702] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7839), 1, - anon_sym_RBRACK, - ACTIONS(7841), 1, - sym__entry_separator, - STATE(7599), 1, + ACTIONS(12559), 1, + anon_sym_EQ2, + STATE(8105), 1, sym_comment, - [234715] = 4, + [253503] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6524), 1, + STATE(7892), 1, sym_block, - STATE(7600), 1, + STATE(8106), 1, sym_comment, - [234728] = 4, + [253516] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7131), 1, + STATE(6800), 1, sym_block, - STATE(7601), 1, - sym_comment, - [234741] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2282), 1, - anon_sym_RBRACE, - ACTIONS(2286), 1, - sym__entry_separator, - STATE(7602), 1, + STATE(8107), 1, sym_comment, - [234754] = 4, + [253529] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6725), 1, + STATE(7893), 1, sym_block, - STATE(7603), 1, + STATE(8108), 1, sym_comment, - [234767] = 4, + [253542] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6978), 1, + STATE(7088), 1, sym_block, - STATE(7604), 1, - sym_comment, - [234780] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2298), 1, - anon_sym_RBRACE, - ACTIONS(2300), 1, - sym__entry_separator, - STATE(7605), 1, + STATE(8109), 1, sym_comment, - [234793] = 4, - ACTIONS(3), 1, + [253555] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8241), 1, - sym__entry_separator, - ACTIONS(8243), 1, - anon_sym_RBRACK, - STATE(7606), 1, + ACTIONS(1689), 1, + anon_sym_LPAREN2, + STATE(8110), 1, sym_comment, - [234806] = 4, + STATE(8427), 1, + sym__expr_parenthesized_immediate, + [253568] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8077), 1, - sym__entry_separator, - ACTIONS(8079), 1, - anon_sym_RBRACK, - STATE(7607), 1, + ACTIONS(12561), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8111), 1, sym_comment, - [234819] = 3, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [253581] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11657), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7608), 2, + ACTIONS(12563), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8112), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [234830] = 4, + STATE(8121), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [253594] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym__unquoted_in_record_token4, - STATE(7609), 1, + ACTIONS(12565), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8113), 1, sym_comment, - [234843] = 4, - ACTIONS(3), 1, + STATE(8123), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [253607] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11660), 1, - sym__newline, - ACTIONS(11662), 1, - sym__space, - STATE(7610), 1, + ACTIONS(1779), 1, + aux_sym_unquoted_token2, + ACTIONS(1781), 1, + anon_sym_LBRACE, + STATE(8114), 1, sym_comment, - [234856] = 4, + [253620] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6980), 1, - sym_block, - STATE(7611), 1, + ACTIONS(5130), 1, + anon_sym_in2, + ACTIONS(12567), 1, + anon_sym_EQ2, + STATE(8115), 1, sym_comment, - [234869] = 4, + [253633] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6730), 1, + STATE(7449), 1, sym_block, - STATE(7612), 1, + STATE(8116), 1, sym_comment, - [234882] = 4, + [253646] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(5226), 1, + STATE(7900), 1, sym_block, - STATE(7613), 1, + STATE(8117), 1, sym_comment, - [234895] = 4, + [253659] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6297), 1, + STATE(6815), 1, sym_block, - STATE(7614), 1, + STATE(8118), 1, sym_comment, - [234908] = 4, - ACTIONS(3), 1, + [253672] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2106), 1, - anon_sym_RBRACE, - ACTIONS(2112), 1, - sym__entry_separator, - STATE(7615), 1, + ACTIONS(4149), 1, + anon_sym_LPAREN2, + STATE(8102), 1, + sym__expr_parenthesized_immediate, + STATE(8119), 1, sym_comment, - [234921] = 4, + [253685] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1689), 1, anon_sym_LPAREN2, - STATE(7584), 1, + STATE(8112), 1, sym__expr_parenthesized_immediate, - STATE(7616), 1, + STATE(8120), 1, + sym_comment, + [253698] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12569), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8121), 1, sym_comment, - [234934] = 4, + STATE(8141), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [253711] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6787), 1, + STATE(7952), 1, sym_block, - STATE(7617), 1, + STATE(8122), 1, sym_comment, - [234947] = 4, + [253724] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5695), 1, - anon_sym_RBRACK, - ACTIONS(5697), 1, - sym__entry_separator, - STATE(7618), 1, + ACTIONS(12571), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8123), 1, sym_comment, - [234960] = 4, + STATE(8141), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [253737] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6981), 1, + STATE(6817), 1, sym_block, - STATE(7619), 1, + STATE(8124), 1, sym_comment, - [234973] = 4, + [253750] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7132), 1, + STATE(5453), 1, sym_block, - STATE(7620), 1, + STATE(8125), 1, sym_comment, - [234986] = 4, + [253763] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(5172), 1, + STATE(7575), 1, sym_block, - STATE(7621), 1, + STATE(8126), 1, sym_comment, - [234999] = 4, + [253776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11664), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7622), 1, - sym_comment, - STATE(7671), 1, - aux_sym__unquoted_with_expr_repeat1, - [235012] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(7135), 1, - sym_block, - STATE(7623), 1, + ACTIONS(1840), 1, + anon_sym_RBRACE, + ACTIONS(1848), 1, + sym__entry_separator, + STATE(8127), 1, sym_comment, - [235025] = 4, + [253789] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11666), 1, + ACTIONS(12573), 1, aux_sym__unquoted_with_expr_token1, - STATE(7624), 1, - sym_comment, - STATE(7689), 1, + STATE(8082), 1, aux_sym__unquoted_with_expr_repeat1, - [235038] = 4, + STATE(8128), 1, + sym_comment, + [253802] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(8129), 1, + sym_comment, + ACTIONS(12469), 2, + anon_sym_GT2, + anon_sym_AT, + [253813] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(7625), 1, + STATE(8130), 1, sym_comment, - STATE(7710), 1, + STATE(8201), 1, sym__expr_parenthesized_immediate, - [235051] = 4, + [253826] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6982), 1, + STATE(5102), 1, sym_block, - STATE(7626), 1, + STATE(8131), 1, sym_comment, - [235064] = 4, + [253839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11668), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7484), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7627), 1, + ACTIONS(9699), 1, + sym__entry_separator, + STATE(6028), 1, + aux_sym__multiple_types_repeat1, + STATE(8132), 1, sym_comment, - [235077] = 4, + [253852] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11670), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7627), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7628), 1, - sym_comment, - [235090] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7629), 1, + ACTIONS(3591), 1, + sym__space, + STATE(1169), 1, + aux_sym_pipe_element_repeat1, + STATE(8133), 1, sym_comment, - ACTIONS(9091), 2, - anon_sym_GT2, - anon_sym_AT, - [235101] = 4, + [253865] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(7490), 1, + STATE(8134), 1, + sym_comment, + STATE(8148), 1, sym__expr_parenthesized_immediate, - STATE(7630), 1, + [253878] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2512), 1, + anon_sym_RBRACE, + ACTIONS(2514), 1, + sym__entry_separator, + STATE(8135), 1, sym_comment, - [235114] = 4, + [253891] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1697), 1, - anon_sym_LPAREN2, - STATE(7628), 1, - sym__expr_parenthesized_immediate, - STATE(7631), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7519), 1, + sym_block, + STATE(8136), 1, sym_comment, - [235127] = 4, + [253904] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6789), 1, + STATE(7586), 1, sym_block, - STATE(7632), 1, + STATE(8137), 1, sym_comment, - [235140] = 4, + [253917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7366), 1, - anon_sym_RBRACK, - ACTIONS(7368), 1, + ACTIONS(5276), 1, sym__entry_separator, - STATE(7633), 1, + ACTIONS(5279), 1, + anon_sym_RBRACE, + STATE(8138), 1, sym_comment, - [235153] = 4, + [253930] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1697), 1, + ACTIONS(4149), 1, anon_sym_LPAREN2, - STATE(7634), 1, + STATE(8139), 1, sym_comment, - STATE(7875), 1, + STATE(8140), 1, sym__expr_parenthesized_immediate, - [235166] = 4, - ACTIONS(251), 1, + [253943] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6801), 1, - sym_block, - STATE(7635), 1, + ACTIONS(12575), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8140), 1, sym_comment, - [235179] = 4, - ACTIONS(251), 1, + STATE(8151), 1, + aux_sym__unquoted_with_expr_repeat1, + [253956] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_LPAREN2, - STATE(7457), 1, - sym__expr_parenthesized_immediate, - STATE(7636), 1, + ACTIONS(12577), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8141), 2, sym_comment, - [235192] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [253967] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11672), 1, + ACTIONS(12580), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7637), 1, + STATE(8141), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(8142), 1, sym_comment, - STATE(7656), 1, + [253980] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12582), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8141), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [235205] = 4, + STATE(8143), 1, + sym_comment, + [253993] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6811), 1, + STATE(7697), 1, sym_block, - STATE(7638), 1, + STATE(8144), 1, sym_comment, - [235218] = 4, + [254006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5934), 1, - sym__entry_separator, - STATE(2874), 1, - aux_sym__multiple_types_repeat1, - STATE(7639), 1, + ACTIONS(12584), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8145), 1, + sym_comment, + STATE(8153), 1, + aux_sym__unquoted_with_expr_repeat1, + [254019] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12586), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8146), 1, sym_comment, - [235231] = 4, + STATE(8173), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [254032] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7454), 1, + STATE(7681), 1, sym_block, - STATE(7640), 1, + STATE(8147), 1, sym_comment, - [235244] = 4, + [254045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8085), 1, - sym__entry_separator, - ACTIONS(8087), 1, - anon_sym_RBRACK, - STATE(7641), 1, + ACTIONS(12588), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8148), 1, sym_comment, - [235257] = 4, + STATE(8159), 1, + aux_sym__unquoted_with_expr_repeat1, + [254058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - sym__entry_separator, - STATE(3479), 1, - aux_sym__multiple_types_repeat1, - STATE(7642), 1, + ACTIONS(12590), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8149), 1, sym_comment, - [235270] = 4, - ACTIONS(251), 1, + STATE(8160), 1, + aux_sym__unquoted_with_expr_repeat1, + [254071] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9622), 1, - anon_sym_LBRACE, - STATE(6880), 1, - sym_val_record, - STATE(7643), 1, + ACTIONS(12592), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7980), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(8150), 1, sym_comment, - [235283] = 4, + [254084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2308), 1, - sym__entry_separator, - STATE(689), 1, - aux_sym__multiple_types_repeat1, - STATE(7644), 1, + ACTIONS(12594), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8151), 1, sym_comment, - [235296] = 4, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [254097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2284), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - aux_sym__unquoted_in_list_token4, - STATE(7645), 1, + ACTIONS(12596), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7981), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(8152), 1, sym_comment, - [235309] = 4, - ACTIONS(251), 1, + [254110] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(4692), 1, - sym_block, - STATE(7646), 1, + ACTIONS(12598), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8153), 1, sym_comment, - [235322] = 4, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [254123] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6815), 1, + STATE(7953), 1, sym_block, - STATE(7647), 1, + STATE(8154), 1, sym_comment, - [235335] = 4, + [254136] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6256), 1, + STATE(7965), 1, sym_block, - STATE(7648), 1, + STATE(8155), 1, sym_comment, - [235348] = 4, + [254149] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6984), 1, + STATE(7536), 1, sym_block, - STATE(7649), 1, + STATE(8156), 1, sym_comment, - [235361] = 4, + [254162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, - anon_sym_RBRACE, - ACTIONS(2455), 1, - sym__entry_separator, - STATE(7650), 1, + ACTIONS(12600), 1, + sym__newline, + ACTIONS(12602), 1, + sym__space, + STATE(8157), 1, sym_comment, - [235374] = 4, - ACTIONS(251), 1, + [254175] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6920), 1, - sym_block, - STATE(7651), 1, + ACTIONS(12604), 1, + anon_sym_RBRACK, + ACTIONS(12606), 1, + sym__entry_separator, + STATE(8158), 1, sym_comment, - [235387] = 4, + [254188] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11674), 1, + ACTIONS(12608), 1, aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7652), 1, + STATE(8159), 1, sym_comment, - [235400] = 4, - ACTIONS(251), 1, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [254201] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6747), 1, - sym_block, - STATE(7653), 1, + ACTIONS(12610), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8160), 1, sym_comment, - [235413] = 4, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + [254214] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6988), 1, + STATE(7093), 1, sym_block, - STATE(7654), 1, + STATE(8161), 1, sym_comment, - [235426] = 4, + [254227] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6754), 1, + STATE(7370), 1, sym_block, - STATE(7655), 1, - sym_comment, - [235439] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11676), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7484), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7656), 1, + STATE(8162), 1, sym_comment, - [235452] = 4, - ACTIONS(3), 1, + [254240] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2286), 1, - anon_sym_LBRACE, - ACTIONS(2288), 1, - aux_sym_unquoted_token4, - STATE(7657), 1, + STATE(8163), 1, sym_comment, - [235465] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8277), 1, - sym__entry_separator, - ACTIONS(8279), 1, + ACTIONS(12612), 2, anon_sym_RBRACK, - STATE(7658), 1, - sym_comment, - [235478] = 4, + sym_hex_digit, + [254251] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6255), 1, + STATE(7374), 1, sym_block, - STATE(7659), 1, + STATE(8164), 1, sym_comment, - [235491] = 4, + [254264] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(10510), 1, anon_sym_LBRACE, - STATE(6360), 1, - sym_block, - STATE(7660), 1, + STATE(7747), 1, + sym_val_record, + STATE(8165), 1, sym_comment, - [235504] = 4, + [254277] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7013), 1, + STATE(7544), 1, sym_block, - STATE(7661), 1, + STATE(8166), 1, sym_comment, - [235517] = 4, + [254290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1040), 1, - anon_sym_LBRACE, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(7662), 1, - sym_comment, - [235530] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7663), 1, + ACTIONS(12614), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8146), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(8167), 1, sym_comment, - ACTIONS(10986), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [235541] = 4, + [254303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_RBRACE, - ACTIONS(1836), 1, - sym__entry_separator, - STATE(7664), 1, - sym_comment, - [235554] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - aux_sym_unquoted_token2, - ACTIONS(1845), 1, - anon_sym_LPAREN2, - STATE(7665), 1, - sym_comment, - [235567] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + ACTIONS(2274), 1, anon_sym_LBRACE, - STATE(7246), 1, - sym_block, - STATE(7666), 1, + STATE(8168), 1, sym_comment, - [235580] = 4, + [254316] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7175), 1, + STATE(5307), 1, sym_block, - STATE(7667), 1, - sym_comment, - [235593] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2501), 1, - anon_sym_RBRACE, - ACTIONS(2503), 1, - sym__entry_separator, - STATE(7668), 1, + STATE(8169), 1, sym_comment, - [235606] = 4, + [254329] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6692), 1, + STATE(7685), 1, sym_block, - STATE(7669), 1, + STATE(8170), 1, sym_comment, - [235619] = 4, + [254342] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(5112), 1, anon_sym_LBRACE, - STATE(6989), 1, - sym_block, - STATE(7670), 1, + ACTIONS(12616), 1, + anon_sym_EQ2, + STATE(8171), 1, sym_comment, - [235632] = 4, + [254355] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11678), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7671), 1, + ACTIONS(6760), 1, + sym__entry_separator, + STATE(3684), 1, + aux_sym__multiple_types_repeat1, + STATE(8172), 1, sym_comment, - [235645] = 4, + [254368] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11680), 1, + ACTIONS(12618), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7608), 1, + STATE(8173), 2, + sym_comment, aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7672), 1, + [254379] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2516), 1, + anon_sym_RBRACE, + ACTIONS(2518), 1, + sym__entry_separator, + STATE(8174), 1, sym_comment, - [235658] = 4, + [254392] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6995), 1, + STATE(7375), 1, sym_block, - STATE(7673), 1, + STATE(8175), 1, sym_comment, - [235671] = 4, + [254405] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6403), 1, + STATE(7376), 1, sym_block, - STATE(7674), 1, + STATE(8176), 1, sym_comment, - [235684] = 4, - ACTIONS(3), 1, + [254418] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11682), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7544), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7675), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7455), 1, + sym_block, + STATE(8177), 1, sym_comment, - [235697] = 4, + [254431] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6408), 1, + STATE(7094), 1, sym_block, - STATE(7676), 1, + STATE(8178), 1, sym_comment, - [235710] = 4, + [254444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11684), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7554), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7677), 1, + ACTIONS(12621), 1, + anon_sym_RBRACK, + ACTIONS(12623), 1, + sym__entry_separator, + STATE(8179), 1, sym_comment, - [235723] = 4, + [254457] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(11686), 1, - anon_sym_EQ2, - STATE(7678), 1, + STATE(7092), 1, + sym_block, + STATE(8180), 1, sym_comment, - [235736] = 4, + [254470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11688), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7679), 1, + ACTIONS(8359), 1, + anon_sym_RBRACK, + ACTIONS(8361), 1, + sym__entry_separator, + STATE(8181), 1, sym_comment, - [235749] = 4, + [254483] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(1699), 1, anon_sym_LBRACE, - STATE(6409), 1, - sym_block, - STATE(7680), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(8182), 1, sym_comment, - [235762] = 4, + [254496] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - STATE(7681), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(6733), 1, + sym_block, + STATE(8183), 1, sym_comment, - STATE(7840), 1, - sym__expr_parenthesized_immediate, - [235775] = 4, + [254509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11690), 1, + ACTIONS(12625), 1, aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, + STATE(8039), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7682), 1, + STATE(8184), 1, sym_comment, - [235788] = 4, + [254522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11692), 1, + ACTIONS(12627), 1, aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, + STATE(8040), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7683), 1, + STATE(8185), 1, sym_comment, - [235801] = 4, + [254535] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6410), 1, + STATE(7708), 1, sym_block, - STATE(7684), 1, - sym_comment, - [235814] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11694), 1, - anon_sym_RBRACE, - ACTIONS(11696), 1, - sym__entry_separator, - STATE(7685), 1, - sym_comment, - [235827] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11698), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7482), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7686), 1, + STATE(8186), 1, sym_comment, - [235840] = 4, - ACTIONS(3), 1, + [254548] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11700), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7483), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7687), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7056), 1, + sym_block, + STATE(8187), 1, sym_comment, - [235853] = 4, + [254561] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(10287), 1, anon_sym_LBRACE, - STATE(6299), 1, - sym_block, - STATE(7688), 1, + STATE(7007), 1, + sym_val_record, + STATE(8188), 1, sym_comment, - [235866] = 4, + [254574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11702), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7530), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7689), 1, + ACTIONS(2238), 1, + anon_sym_LBRACE, + ACTIONS(2240), 1, + aux_sym_unquoted_token4, + STATE(8189), 1, sym_comment, - [235879] = 4, + [254587] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9973), 1, - anon_sym_RBRACE, - ACTIONS(9975), 1, - sym__entry_separator, - STATE(7690), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym_unquoted_token4, + STATE(8190), 1, sym_comment, - [235892] = 4, + [254600] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6316), 1, + STATE(7377), 1, sym_block, - STATE(7691), 1, + STATE(8191), 1, sym_comment, - [235905] = 4, - ACTIONS(251), 1, + [254613] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6200), 1, - anon_sym_LBRACE, - STATE(6959), 1, - sym_block, - STATE(7692), 1, + ACTIONS(12629), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8192), 2, sym_comment, - [235918] = 4, + aux_sym__unquoted_with_expr_repeat1, + [254624] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6999), 1, + STATE(7381), 1, sym_block, - STATE(7693), 1, + STATE(8193), 1, sym_comment, - [235931] = 4, - ACTIONS(251), 1, + [254637] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6198), 1, - anon_sym_LBRACE, - STATE(6419), 1, - sym_block, - STATE(7694), 1, + ACTIONS(12632), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8194), 1, sym_comment, - [235944] = 4, + STATE(8213), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [254650] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7005), 1, + STATE(7131), 1, sym_block, - STATE(7695), 1, + STATE(8195), 1, sym_comment, - [235957] = 4, - ACTIONS(251), 1, + [254663] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - STATE(7522), 1, - sym__expr_parenthesized_immediate, - STATE(7696), 1, + ACTIONS(12634), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8017), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(8196), 1, sym_comment, - [235970] = 4, + [254676] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(6463), 1, + STATE(7089), 1, sym_block, - STATE(7697), 1, + STATE(8197), 1, sym_comment, - [235983] = 4, + [254689] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6198), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(6497), 1, + STATE(7391), 1, sym_block, - STATE(7698), 1, + STATE(8198), 1, sym_comment, - [235996] = 4, + [254702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2278), 1, + ACTIONS(2064), 1, anon_sym_RBRACE, - ACTIONS(2280), 1, + ACTIONS(2070), 1, sym__entry_separator, - STATE(7699), 1, + STATE(8199), 1, sym_comment, - [236009] = 4, + [254715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11704), 1, - anon_sym_RBRACE, - ACTIONS(11706), 1, + ACTIONS(8499), 1, sym__entry_separator, - STATE(7700), 1, + ACTIONS(8501), 1, + anon_sym_GT2, + STATE(8200), 1, sym_comment, - [236022] = 4, + [254728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11708), 1, - anon_sym_RBRACK, - ACTIONS(11710), 1, - sym__entry_separator, - STATE(7701), 1, + ACTIONS(12636), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8201), 1, sym_comment, - [236035] = 3, + STATE(8208), 1, + aux_sym__unquoted_with_expr_repeat1, + [254741] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7702), 1, + ACTIONS(12638), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8202), 1, sym_comment, - ACTIONS(2247), 2, - anon_sym_in2, - aux_sym_unquoted_token4, - [236046] = 4, + STATE(8209), 1, + aux_sym__unquoted_with_expr_repeat1, + [254754] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(7703), 1, - sym_comment, - [236059] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7704), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7327), 1, + sym_block, + STATE(8203), 1, sym_comment, - ACTIONS(1306), 2, - anon_sym_POUND_BANG, - sym__newline, - [236070] = 4, + [254767] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1836), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(7705), 1, - sym_comment, - [236083] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11712), 1, - anon_sym_LPAREN2, - ACTIONS(11714), 1, - aux_sym__record_key_token1, - STATE(7706), 1, + STATE(5240), 1, + sym_block, + STATE(8204), 1, sym_comment, - [236096] = 4, + [254780] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6200), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(7285), 1, + STATE(7741), 1, sym_block, - STATE(7707), 1, + STATE(8205), 1, sym_comment, - [236109] = 4, - ACTIONS(251), 1, + [254793] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - ACTIONS(2280), 1, - anon_sym_LBRACE, - STATE(7708), 1, + ACTIONS(2256), 1, + anon_sym_LPAREN2, + ACTIONS(2260), 1, + aux_sym__unquoted_in_record_token4, + STATE(8206), 1, sym_comment, - [236122] = 4, + [254806] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4223), 1, + ACTIONS(1689), 1, anon_sym_LPAREN2, - STATE(7675), 1, + STATE(8194), 1, sym__expr_parenthesized_immediate, - STATE(7709), 1, + STATE(8207), 1, sym_comment, - [236135] = 4, + [254819] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11716), 1, + ACTIONS(12640), 1, aux_sym__unquoted_with_expr_token1, - STATE(7652), 1, + STATE(8192), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7710), 1, + STATE(8208), 1, sym_comment, - [236148] = 4, + [254832] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11718), 1, + ACTIONS(12642), 1, aux_sym__unquoted_with_expr_token1, - STATE(7679), 1, + STATE(8192), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7711), 1, + STATE(8209), 1, sym_comment, - [236161] = 4, - ACTIONS(3), 1, + [254845] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11720), 1, - sym__newline, - ACTIONS(11722), 1, - sym__space, - STATE(7712), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7068), 1, + sym_block, + STATE(8210), 1, sym_comment, - [236174] = 3, + [254858] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11724), 1, - anon_sym_RBRACE, - STATE(7713), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7395), 1, + sym_block, + STATE(8211), 1, sym_comment, - [236184] = 3, + [254871] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11726), 1, - sym_raw_string_end, - STATE(7714), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7070), 1, + sym_block, + STATE(8212), 1, sym_comment, - [236194] = 3, - ACTIONS(251), 1, + [254884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(503), 1, - anon_sym_RPAREN2, - STATE(7715), 1, + ACTIONS(12644), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8141), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(8213), 1, sym_comment, - [236204] = 3, + [254897] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11728), 1, - anon_sym_RBRACK, - STATE(7716), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7071), 1, + sym_block, + STATE(8214), 1, sym_comment, - [236214] = 3, + [254910] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11730), 1, - anon_sym_EQ, - STATE(7717), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7392), 1, + sym_block, + STATE(8215), 1, sym_comment, - [236224] = 3, + [254923] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11732), 1, - anon_sym_EQ, - STATE(7718), 1, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(7342), 1, + sym_block, + STATE(8216), 1, sym_comment, - [236234] = 3, + [254936] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11734), 1, - anon_sym_RBRACE, - STATE(7719), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7072), 1, + sym_block, + STATE(8217), 1, sym_comment, - [236244] = 3, + [254949] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11736), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(7720), 1, + STATE(7073), 1, + sym_block, + STATE(8218), 1, sym_comment, - [236254] = 3, + [254962] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11738), 1, - anon_sym_RBRACE, - STATE(7721), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7074), 1, + sym_block, + STATE(8219), 1, sym_comment, - [236264] = 3, + [254975] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5693), 1, - aux_sym_record_entry_token1, - STATE(7722), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7082), 1, + sym_block, + STATE(8220), 1, sym_comment, - [236274] = 3, + [254988] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11740), 1, - anon_sym_GT2, - STATE(7723), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7083), 1, + sym_block, + STATE(8221), 1, sym_comment, - [236284] = 3, + [255001] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5686), 1, - aux_sym_record_entry_token1, - STATE(7724), 1, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(7084), 1, + sym_block, + STATE(8222), 1, sym_comment, - [236294] = 3, - ACTIONS(251), 1, + [255014] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11742), 1, - sym_raw_string_end, - STATE(7725), 1, + ACTIONS(12646), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8192), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(8223), 1, sym_comment, - [236304] = 3, + [255027] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11744), 1, + ACTIONS(12648), 1, anon_sym_RBRACE, - STATE(7726), 1, + STATE(8224), 1, sym_comment, - [236314] = 3, + [255037] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11746), 1, - anon_sym_RBRACE, - STATE(7727), 1, + ACTIONS(12650), 1, + sym_raw_string_end, + STATE(8225), 1, sym_comment, - [236324] = 3, + [255047] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(493), 1, - anon_sym_RPAREN2, - STATE(7728), 1, + ACTIONS(5832), 1, + aux_sym_record_entry_token1, + STATE(8226), 1, sym_comment, - [236334] = 3, + [255057] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11748), 1, - anon_sym_EQ, - STATE(7729), 1, + ACTIONS(9217), 1, + aux_sym_unquoted_token2, + STATE(8227), 1, + sym_comment, + [255067] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7487), 1, + aux_sym_unquoted_token4, + STATE(8228), 1, sym_comment, - [236344] = 3, + [255077] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11750), 1, - anon_sym_RBRACK, - STATE(7730), 1, + ACTIONS(12652), 1, + anon_sym_LBRACE, + STATE(8229), 1, sym_comment, - [236354] = 3, + [255087] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11752), 1, - sym_raw_string_end, - STATE(7731), 1, + ACTIONS(12654), 1, + anon_sym_RPAREN, + STATE(8230), 1, sym_comment, - [236364] = 3, + [255097] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11754), 1, - anon_sym_GT2, - STATE(7732), 1, + ACTIONS(12656), 1, + anon_sym_RBRACK, + STATE(8231), 1, sym_comment, - [236374] = 3, + [255107] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11756), 1, - anon_sym_LBRACE, - STATE(7733), 1, + ACTIONS(12658), 1, + anon_sym_RBRACK, + STATE(8232), 1, sym_comment, - [236384] = 3, + [255117] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11758), 1, - sym_raw_string_end, - STATE(7734), 1, + ACTIONS(12660), 1, + sym__table_head_separator, + STATE(8233), 1, sym_comment, - [236394] = 3, + [255127] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11760), 1, + ACTIONS(12662), 1, anon_sym_RPAREN, - STATE(7735), 1, + STATE(8234), 1, sym_comment, - [236404] = 3, - ACTIONS(3), 1, + [255137] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11762), 1, - aux_sym_cmd_identifier_token41, - STATE(7736), 1, + ACTIONS(12664), 1, + anon_sym_RPAREN, + STATE(8235), 1, sym_comment, - [236414] = 3, - ACTIONS(3), 1, + [255147] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11764), 1, - aux_sym_cmd_identifier_token41, - STATE(7737), 1, + ACTIONS(12666), 1, + anon_sym_RPAREN, + STATE(8236), 1, sym_comment, - [236424] = 3, + [255157] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11766), 1, + ACTIONS(12668), 1, anon_sym_RBRACE, - STATE(7738), 1, + STATE(8237), 1, sym_comment, - [236434] = 3, + [255167] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11768), 1, - anon_sym_EQ, - STATE(7739), 1, + ACTIONS(12670), 1, + anon_sym_RBRACE, + STATE(8238), 1, sym_comment, - [236444] = 3, + [255177] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11770), 1, - sym_raw_string_end, - STATE(7740), 1, + ACTIONS(12672), 1, + anon_sym_RPAREN2, + STATE(8239), 1, sym_comment, - [236454] = 3, + [255187] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11772), 1, - anon_sym_RPAREN2, - STATE(7741), 1, + ACTIONS(12674), 1, + sym_param_short_flag_identifier, + STATE(8240), 1, sym_comment, - [236464] = 3, + [255197] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11774), 1, - anon_sym_LBRACE, - STATE(7742), 1, + ACTIONS(12676), 1, + anon_sym_RBRACK, + STATE(8241), 1, sym_comment, - [236474] = 3, + [255207] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11776), 1, + ACTIONS(12678), 1, anon_sym_EQ, - STATE(7743), 1, + STATE(8242), 1, sym_comment, - [236484] = 3, + [255217] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11778), 1, - sym_identifier, - STATE(7744), 1, + ACTIONS(12680), 1, + sym_raw_string_end, + STATE(8243), 1, sym_comment, - [236494] = 3, + [255227] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11780), 1, - sym__table_head_separator, - STATE(7745), 1, + ACTIONS(12682), 1, + anon_sym_RPAREN, + STATE(8244), 1, sym_comment, - [236504] = 3, + [255237] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11782), 1, - anon_sym_EQ, - STATE(7746), 1, + ACTIONS(12684), 1, + sym_raw_string_end, + STATE(8245), 1, sym_comment, - [236514] = 3, + [255247] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token2, - STATE(7747), 1, - sym_comment, - [236524] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7748), 1, + ACTIONS(12686), 1, + anon_sym_RBRACE, + STATE(8246), 1, sym_comment, - [236534] = 3, + [255257] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(511), 1, - anon_sym_RPAREN2, - STATE(7749), 1, + ACTIONS(12688), 1, + sym__table_head_separator, + STATE(8247), 1, sym_comment, - [236544] = 3, + [255267] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5701), 1, - aux_sym_record_entry_token1, - STATE(7750), 1, + ACTIONS(12690), 1, + anon_sym_RPAREN, + STATE(8248), 1, sym_comment, - [236554] = 3, + [255277] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11736), 1, - anon_sym_LBRACE, - STATE(7751), 1, + ACTIONS(12692), 1, + anon_sym_GT2, + STATE(8249), 1, sym_comment, - [236564] = 3, + [255287] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11784), 1, - anon_sym_LBRACE, - STATE(7752), 1, + ACTIONS(12694), 1, + sym_raw_string_end, + STATE(8250), 1, sym_comment, - [236574] = 3, + [255297] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11786), 1, - sym_raw_string_end, - STATE(7753), 1, + ACTIONS(4728), 1, + aux_sym_unquoted_token2, + STATE(8251), 1, sym_comment, - [236584] = 3, + [255307] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11788), 1, + ACTIONS(12696), 1, anon_sym_RBRACE, - STATE(7754), 1, + STATE(8252), 1, sym_comment, - [236594] = 3, + [255317] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11790), 1, - anon_sym_RPAREN, - STATE(7755), 1, + ACTIONS(12698), 1, + anon_sym_RBRACK, + STATE(8253), 1, sym_comment, - [236604] = 3, + [255327] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11792), 1, + ACTIONS(12700), 1, anon_sym_RPAREN, - STATE(7756), 1, + STATE(8254), 1, sym_comment, - [236614] = 3, + [255337] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11794), 1, - sym__table_head_separator, - STATE(7757), 1, + ACTIONS(12702), 1, + anon_sym_RBRACE, + STATE(8255), 1, sym_comment, - [236624] = 3, + [255347] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11796), 1, - anon_sym_DASH_GT, - STATE(7758), 1, - sym_comment, - [236634] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9715), 1, - aux_sym_unquoted_token4, - STATE(7759), 1, + ACTIONS(12704), 1, + anon_sym_RBRACE, + STATE(8256), 1, sym_comment, - [236644] = 3, + [255357] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11798), 1, - sym_raw_string_end, - STATE(7760), 1, + ACTIONS(12706), 1, + anon_sym_EQ, + STATE(8257), 1, sym_comment, - [236654] = 3, + [255367] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11800), 1, - sym_raw_string_end, - STATE(7761), 1, + ACTIONS(12708), 1, + anon_sym_RBRACE, + STATE(8258), 1, sym_comment, - [236664] = 3, - ACTIONS(251), 1, + [255377] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11802), 1, - sym_raw_string_end, - STATE(7762), 1, + ACTIONS(12710), 1, + aux_sym_cmd_identifier_token41, + STATE(8259), 1, sym_comment, - [236674] = 3, + [255387] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11804), 1, + ACTIONS(12712), 1, sym_raw_string_end, - STATE(7763), 1, + STATE(8260), 1, sym_comment, - [236684] = 3, + [255397] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11806), 1, - anon_sym_RPAREN, - STATE(7764), 1, + ACTIONS(6728), 1, + aux_sym_unquoted_token2, + STATE(8261), 1, sym_comment, - [236694] = 3, - ACTIONS(251), 1, + [255407] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11808), 1, - anon_sym_RPAREN, - STATE(7765), 1, + ACTIONS(12714), 1, + aux_sym_cmd_identifier_token41, + STATE(8262), 1, sym_comment, - [236704] = 3, - ACTIONS(251), 1, + [255417] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11810), 1, - anon_sym_RPAREN, - STATE(7766), 1, + ACTIONS(12716), 1, + aux_sym_cmd_identifier_token41, + STATE(8263), 1, sym_comment, - [236714] = 3, + [255427] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6484), 1, - aux_sym_unquoted_token2, - STATE(7767), 1, + ACTIONS(12718), 1, + anon_sym_EQ_GT, + STATE(8264), 1, sym_comment, - [236724] = 3, + [255437] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(8941), 1, aux_sym_unquoted_token4, - STATE(7768), 1, - sym_comment, - [236734] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11812), 1, - sym_raw_string_end, - STATE(7769), 1, + STATE(8265), 1, sym_comment, - [236744] = 3, + [255447] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11814), 1, + ACTIONS(12720), 1, anon_sym_RBRACK, - STATE(7770), 1, + STATE(8266), 1, sym_comment, - [236754] = 3, + [255457] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1605), 1, + ACTIONS(2232), 1, aux_sym_unquoted_token2, - STATE(7771), 1, + STATE(8267), 1, sym_comment, - [236764] = 3, + [255467] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11816), 1, - anon_sym_RBRACE, - STATE(7772), 1, + ACTIONS(12722), 1, + anon_sym_RPAREN, + STATE(8268), 1, sym_comment, - [236774] = 3, + [255477] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11818), 1, - anon_sym_RBRACK, - STATE(7773), 1, + ACTIONS(12724), 1, + sym_raw_string_end, + STATE(8269), 1, sym_comment, - [236784] = 3, + [255487] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11820), 1, - anon_sym_RBRACK, - STATE(7774), 1, + ACTIONS(12726), 1, + sym_raw_string_end, + STATE(8270), 1, sym_comment, - [236794] = 3, + [255497] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11822), 1, - anon_sym_RPAREN, - STATE(7775), 1, + ACTIONS(12728), 1, + anon_sym_EQ, + STATE(8271), 1, sym_comment, - [236804] = 3, + [255507] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11824), 1, + ACTIONS(12730), 1, anon_sym_RBRACE, - STATE(7776), 1, + STATE(8272), 1, sym_comment, - [236814] = 3, + [255517] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12732), 1, + sym__space, + STATE(8273), 1, + sym_comment, + [255527] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11826), 1, - anon_sym_RBRACE, - STATE(7777), 1, + ACTIONS(12357), 1, + anon_sym_EQ_GT, + STATE(8274), 1, sym_comment, - [236824] = 3, + [255537] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11828), 1, - anon_sym_RBRACE, - STATE(7778), 1, + ACTIONS(12734), 1, + sym_raw_string_end, + STATE(8275), 1, sym_comment, - [236834] = 3, + [255547] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11830), 1, - anon_sym_RBRACE, - STATE(7779), 1, + ACTIONS(12736), 1, + anon_sym_EQ, + STATE(8276), 1, sym_comment, - [236844] = 3, + [255557] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11832), 1, - anon_sym_RPAREN, - STATE(7780), 1, + ACTIONS(12738), 1, + anon_sym_RBRACE, + STATE(8277), 1, sym_comment, - [236854] = 3, + [255567] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11834), 1, - sym__table_head_separator, - STATE(7781), 1, + ACTIONS(12606), 1, + anon_sym_LBRACE, + STATE(8278), 1, sym_comment, - [236864] = 3, + [255577] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11836), 1, - sym_raw_string_end, - STATE(7782), 1, + ACTIONS(5844), 1, + aux_sym_record_entry_token1, + STATE(8279), 1, sym_comment, - [236874] = 3, + [255587] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11838), 1, + ACTIONS(12740), 1, anon_sym_RBRACE, - STATE(7783), 1, + STATE(8280), 1, sym_comment, - [236884] = 3, + [255597] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11840), 1, + ACTIONS(12742), 1, anon_sym_RBRACE, - STATE(7784), 1, + STATE(8281), 1, sym_comment, - [236894] = 3, + [255607] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1679), 1, - aux_sym_unquoted_token2, - STATE(7785), 1, + ACTIONS(12744), 1, + ts_builtin_sym_end, + STATE(8282), 1, sym_comment, - [236904] = 3, + [255617] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11842), 1, + ACTIONS(12746), 1, anon_sym_RBRACE, - STATE(7786), 1, + STATE(8283), 1, sym_comment, - [236914] = 3, + [255627] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11844), 1, - anon_sym_RBRACE, - STATE(7787), 1, + ACTIONS(12748), 1, + sym_raw_string_end, + STATE(8284), 1, sym_comment, - [236924] = 3, + [255637] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11846), 1, - anon_sym_RPAREN, - STATE(7788), 1, + ACTIONS(10525), 1, + aux_sym_unquoted_token2, + STATE(8285), 1, sym_comment, - [236934] = 3, + [255647] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11848), 1, + ACTIONS(12750), 1, anon_sym_RBRACE, - STATE(7789), 1, + STATE(8286), 1, sym_comment, - [236944] = 3, - ACTIONS(251), 1, + [255657] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11850), 1, - ts_builtin_sym_end, - STATE(7790), 1, + ACTIONS(10525), 1, + aux_sym_unquoted_token4, + STATE(8287), 1, sym_comment, - [236954] = 3, + [255667] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11852), 1, - anon_sym_RBRACE, - STATE(7791), 1, + ACTIONS(12752), 1, + anon_sym_LPAREN2, + STATE(8288), 1, sym_comment, - [236964] = 3, - ACTIONS(3), 1, + [255677] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11854), 1, - aux_sym_cmd_identifier_token41, - STATE(7792), 1, + ACTIONS(12754), 1, + sym_identifier, + STATE(8289), 1, sym_comment, - [236974] = 3, - ACTIONS(3), 1, + [255687] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4839), 1, - aux_sym_unquoted_token4, - STATE(7793), 1, + ACTIONS(12756), 1, + anon_sym_RBRACK, + STATE(8290), 1, sym_comment, - [236984] = 3, + [255697] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11856), 1, + ACTIONS(12758), 1, anon_sym_RPAREN, - STATE(7794), 1, + STATE(8291), 1, sym_comment, - [236994] = 3, + [255707] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11858), 1, - sym_raw_string_end, - STATE(7795), 1, + ACTIONS(12760), 1, + anon_sym_RBRACE, + STATE(8292), 1, sym_comment, - [237004] = 3, + [255717] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11860), 1, + ACTIONS(12762), 1, anon_sym_RBRACE, - STATE(7796), 1, + STATE(8293), 1, + sym_comment, + [255727] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12545), 1, + aux_sym__record_key_token1, + STATE(8294), 1, sym_comment, - [237014] = 3, + [255737] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11862), 1, + ACTIONS(12764), 1, anon_sym_RBRACE, - STATE(7797), 1, + STATE(8295), 1, sym_comment, - [237024] = 3, + [255747] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(533), 1, - anon_sym_RPAREN2, - STATE(7798), 1, + ACTIONS(12766), 1, + anon_sym_RPAREN, + STATE(8296), 1, sym_comment, - [237034] = 3, + [255757] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11864), 1, + ACTIONS(12768), 1, anon_sym_RBRACK, - STATE(7799), 1, + STATE(8297), 1, sym_comment, - [237044] = 3, + [255767] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11866), 1, - anon_sym_RPAREN, - STATE(7800), 1, + ACTIONS(9330), 1, + aux_sym__unquoted_in_list_token2, + STATE(8298), 1, sym_comment, - [237054] = 3, + [255777] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11868), 1, + ACTIONS(12770), 1, anon_sym_RPAREN, - STATE(7801), 1, + STATE(8299), 1, sym_comment, - [237064] = 3, + [255787] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11870), 1, - sym_raw_string_end, - STATE(7802), 1, + ACTIONS(12772), 1, + anon_sym_LBRACE, + STATE(8300), 1, sym_comment, - [237074] = 3, + [255797] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11872), 1, - anon_sym_RBRACE, - STATE(7803), 1, + ACTIONS(12774), 1, + anon_sym_GT2, + STATE(8301), 1, sym_comment, - [237084] = 3, + [255807] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11874), 1, + ACTIONS(12776), 1, sym_raw_string_content, - STATE(7804), 1, + STATE(8302), 1, sym_comment, - [237094] = 3, + [255817] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token2, - STATE(7805), 1, + ACTIONS(12778), 1, + sym_raw_string_end, + STATE(8303), 1, sym_comment, - [237104] = 3, - ACTIONS(251), 1, + [255827] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11876), 1, - sym_raw_string_end, - STATE(7806), 1, + ACTIONS(12780), 1, + aux_sym_cmd_identifier_token41, + STATE(8304), 1, sym_comment, - [237114] = 3, + [255837] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5208), 1, + ACTIONS(5300), 1, anon_sym_LBRACK2, - STATE(7807), 1, + STATE(8305), 1, sym_comment, - [237124] = 3, + [255847] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11878), 1, - anon_sym_EQ, - STATE(7808), 1, + ACTIONS(12782), 1, + sym_raw_string_end, + STATE(8306), 1, sym_comment, - [237134] = 3, + [255857] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11880), 1, + ACTIONS(12784), 1, anon_sym_RBRACE, - STATE(7809), 1, + STATE(8307), 1, sym_comment, - [237144] = 3, + [255867] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11882), 1, - anon_sym_RBRACE, - STATE(7810), 1, + ACTIONS(12786), 1, + anon_sym_LBRACE, + STATE(8308), 1, sym_comment, - [237154] = 3, + [255877] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11884), 1, - anon_sym_RBRACE, - STATE(7811), 1, + ACTIONS(12788), 1, + anon_sym_EQ, + STATE(8309), 1, sym_comment, - [237164] = 3, + [255887] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3383), 1, + ACTIONS(3499), 1, aux_sym_record_entry_token1, - STATE(7812), 1, + STATE(8310), 1, sym_comment, - [237174] = 3, + [255897] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11886), 1, - sym_raw_string_end, - STATE(7813), 1, + ACTIONS(12790), 1, + anon_sym_RPAREN, + STATE(8311), 1, sym_comment, - [237184] = 3, - ACTIONS(3), 1, + [255907] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11888), 1, - aux_sym_shebang_token1, - STATE(7814), 1, + ACTIONS(12792), 1, + anon_sym_EQ, + STATE(8312), 1, sym_comment, - [237194] = 3, + [255917] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11890), 1, - anon_sym_RBRACE, - STATE(7815), 1, + ACTIONS(12794), 1, + anon_sym_RPAREN, + STATE(8313), 1, sym_comment, - [237204] = 3, + [255927] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym_unquoted_token4, - STATE(7816), 1, + ACTIONS(12796), 1, + aux_sym_cmd_identifier_token41, + STATE(8314), 1, + sym_comment, + [255937] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(12798), 1, + anon_sym_RBRACE, + STATE(8315), 1, sym_comment, - [237214] = 3, + [255947] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11892), 1, + ACTIONS(12800), 1, anon_sym_RPAREN, - STATE(7817), 1, + STATE(8316), 1, sym_comment, - [237224] = 3, - ACTIONS(3), 1, + [255957] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token4, - STATE(7818), 1, + ACTIONS(12802), 1, + sym_raw_string_end, + STATE(8317), 1, sym_comment, - [237234] = 3, + [255967] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11894), 1, + ACTIONS(12804), 1, sym_raw_string_end, - STATE(7819), 1, + STATE(8318), 1, sym_comment, - [237244] = 3, + [255977] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7820), 1, + ACTIONS(10324), 1, + aux_sym_unquoted_token4, + STATE(8319), 1, sym_comment, - [237254] = 3, + [255987] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11896), 1, - anon_sym_RPAREN, - STATE(7821), 1, + ACTIONS(12806), 1, + anon_sym_RBRACE, + STATE(8320), 1, sym_comment, - [237264] = 3, + [255997] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11898), 1, + ACTIONS(12808), 1, anon_sym_RBRACE, - STATE(7822), 1, + STATE(8321), 1, sym_comment, - [237274] = 3, + [256007] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11900), 1, - sym_raw_string_end, - STATE(7823), 1, + ACTIONS(12810), 1, + anon_sym_RBRACE, + STATE(8322), 1, + sym_comment, + [256017] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12812), 1, + aux_sym_cmd_identifier_token41, + STATE(8323), 1, sym_comment, - [237284] = 3, + [256027] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11902), 1, - sym_raw_string_end, - STATE(7824), 1, + ACTIONS(10324), 1, + aux_sym_unquoted_token2, + STATE(8324), 1, + sym_comment, + [256037] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12814), 1, + aux_sym_cmd_identifier_token41, + STATE(8325), 1, sym_comment, - [237294] = 3, + [256047] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8750), 1, - aux_sym__unquoted_in_record_token2, - STATE(7825), 1, + ACTIONS(12816), 1, + anon_sym_RBRACE, + STATE(8326), 1, + sym_comment, + [256057] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(517), 1, + anon_sym_RPAREN2, + STATE(8327), 1, sym_comment, - [237304] = 3, + [256067] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11904), 1, + ACTIONS(12818), 1, sym_raw_string_end, - STATE(7826), 1, + STATE(8328), 1, sym_comment, - [237314] = 3, + [256077] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(7625), 1, aux_sym__unquoted_in_record_token2, - STATE(7827), 1, + STATE(8329), 1, sym_comment, - [237324] = 3, + [256087] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11710), 1, - anon_sym_LBRACE, - STATE(7828), 1, + ACTIONS(12820), 1, + anon_sym_RBRACE, + STATE(8330), 1, sym_comment, - [237334] = 3, + [256097] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11906), 1, + ACTIONS(12822), 1, anon_sym_RPAREN, - STATE(7829), 1, + STATE(8331), 1, sym_comment, - [237344] = 3, - ACTIONS(3), 1, + [256107] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11908), 1, - aux_sym_cmd_identifier_token41, - STATE(7830), 1, + ACTIONS(12824), 1, + anon_sym_RBRACE, + STATE(8332), 1, sym_comment, - [237354] = 3, + [256117] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11910), 1, + ACTIONS(12826), 1, anon_sym_RBRACE, - STATE(7831), 1, + STATE(8333), 1, sym_comment, - [237364] = 3, + [256127] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11912), 1, - anon_sym_EQ, - STATE(7832), 1, + ACTIONS(12828), 1, + anon_sym_LBRACE, + STATE(8334), 1, sym_comment, - [237374] = 3, + [256137] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, - STATE(7833), 1, + ACTIONS(497), 1, + anon_sym_RPAREN2, + STATE(8335), 1, sym_comment, - [237384] = 3, - ACTIONS(251), 1, + [256147] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11914), 1, - anon_sym_RPAREN, - STATE(7834), 1, + ACTIONS(12830), 1, + aux_sym_cmd_identifier_token41, + STATE(8336), 1, sym_comment, - [237394] = 3, + [256157] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11916), 1, - sym_identifier, - STATE(7835), 1, + ACTIONS(12832), 1, + anon_sym_RPAREN, + STATE(8337), 1, sym_comment, - [237404] = 3, + [256167] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11918), 1, - anon_sym_GT2, - STATE(7836), 1, + ACTIONS(12834), 1, + anon_sym_RPAREN, + STATE(8338), 1, sym_comment, - [237414] = 3, - ACTIONS(251), 1, + [256177] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11920), 1, - sym_raw_string_end, - STATE(7837), 1, + ACTIONS(12836), 1, + aux_sym_cmd_identifier_token41, + STATE(8339), 1, sym_comment, - [237424] = 3, + [256187] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11922), 1, - anon_sym_GT2, - STATE(7838), 1, + ACTIONS(12838), 1, + anon_sym_RPAREN2, + STATE(8340), 1, sym_comment, - [237434] = 3, + [256197] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11452), 1, - anon_sym_EQ_GT, - STATE(7839), 1, + ACTIONS(505), 1, + anon_sym_RPAREN2, + STATE(8341), 1, sym_comment, - [237444] = 3, + [256207] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11924), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7840), 1, + ACTIONS(12840), 1, + aux_sym_cmd_identifier_token41, + STATE(8342), 1, sym_comment, - [237454] = 3, + [256217] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11926), 1, - anon_sym_EQ, - STATE(7841), 1, + ACTIONS(12842), 1, + anon_sym_LBRACE, + STATE(8343), 1, sym_comment, - [237464] = 3, + [256227] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11928), 1, - anon_sym_RPAREN, - STATE(7842), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token2, + STATE(8344), 1, sym_comment, - [237474] = 3, + [256237] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11930), 1, - sym_raw_string_end, - STATE(7843), 1, + ACTIONS(12844), 1, + anon_sym_EQ, + STATE(8345), 1, sym_comment, - [237484] = 3, - ACTIONS(251), 1, + [256247] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11932), 1, - anon_sym_RPAREN, - STATE(7844), 1, + ACTIONS(12846), 1, + aux_sym_cmd_identifier_token41, + STATE(8346), 1, sym_comment, - [237494] = 3, + [256257] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11934), 1, + ACTIONS(12848), 1, sym_raw_string_end, - STATE(7845), 1, + STATE(8347), 1, sym_comment, - [237504] = 3, + [256267] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11936), 1, - anon_sym_RBRACE, - STATE(7846), 1, + ACTIONS(12850), 1, + anon_sym_RPAREN, + STATE(8348), 1, sym_comment, - [237514] = 3, + [256277] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11938), 1, - sym_raw_string_end, - STATE(7847), 1, + ACTIONS(12852), 1, + anon_sym_make, + STATE(8349), 1, sym_comment, - [237524] = 3, + [256287] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11940), 1, - anon_sym_EQ, - STATE(7848), 1, + ACTIONS(12854), 1, + anon_sym_RBRACE, + STATE(8350), 1, sym_comment, - [237534] = 3, + [256297] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11942), 1, - anon_sym_RBRACK, - STATE(7849), 1, + ACTIONS(12856), 1, + anon_sym_LBRACE, + STATE(8351), 1, sym_comment, - [237544] = 3, + [256307] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7184), 1, - aux_sym_unquoted_token2, - STATE(7850), 1, + ACTIONS(12828), 1, + anon_sym_LBRACE, + STATE(8352), 1, sym_comment, - [237554] = 3, + [256317] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11944), 1, - ts_builtin_sym_end, - STATE(7851), 1, + ACTIONS(12858), 1, + anon_sym_RBRACE, + STATE(8353), 1, sym_comment, - [237564] = 3, + [256327] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11946), 1, + ACTIONS(12860), 1, sym_raw_string_end, - STATE(7852), 1, + STATE(8354), 1, sym_comment, - [237574] = 3, + [256337] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11948), 1, - sym_raw_string_end, - STATE(7853), 1, + ACTIONS(1701), 1, + aux_sym__unquoted_in_record_token2, + STATE(8355), 1, sym_comment, - [237584] = 3, + [256347] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11950), 1, - anon_sym_GT2, - STATE(7854), 1, + ACTIONS(1581), 1, + aux_sym_unquoted_token2, + STATE(8356), 1, sym_comment, - [237594] = 3, - ACTIONS(251), 1, + [256357] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10876), 1, - anon_sym_LBRACE, - STATE(7855), 1, + ACTIONS(2082), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8357), 1, sym_comment, - [237604] = 3, + [256367] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11952), 1, - anon_sym_RBRACK, - STATE(7856), 1, + ACTIONS(12862), 1, + ts_builtin_sym_end, + STATE(8358), 1, sym_comment, - [237614] = 3, - ACTIONS(3), 1, + [256377] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7264), 1, - aux_sym_unquoted_token4, - STATE(7857), 1, + ACTIONS(12864), 1, + anon_sym_RBRACE, + STATE(8359), 1, sym_comment, - [237624] = 3, + [256387] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11954), 1, + ACTIONS(12866), 1, sym_raw_string_end, - STATE(7858), 1, + STATE(8360), 1, sym_comment, - [237634] = 3, + [256397] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11956), 1, - anon_sym_RBRACK, - STATE(7859), 1, + ACTIONS(12868), 1, + anon_sym_LBRACE, + STATE(8361), 1, sym_comment, - [237644] = 3, + [256407] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11958), 1, - sym_raw_string_end, - STATE(7860), 1, + ACTIONS(12870), 1, + sym_identifier, + STATE(8362), 1, sym_comment, - [237654] = 3, + [256417] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - aux_sym_unquoted_token2, - STATE(7861), 1, + ACTIONS(12872), 1, + anon_sym_RPAREN, + STATE(8363), 1, sym_comment, - [237664] = 3, + [256427] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11960), 1, - anon_sym_RPAREN, - STATE(7862), 1, + ACTIONS(12874), 1, + sym_raw_string_end, + STATE(8364), 1, sym_comment, - [237674] = 3, + [256437] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11962), 1, - anon_sym_RBRACK, - STATE(7863), 1, + ACTIONS(511), 1, + anon_sym_RPAREN2, + STATE(8365), 1, sym_comment, - [237684] = 3, + [256447] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11964), 1, + ACTIONS(12876), 1, anon_sym_RPAREN, - STATE(7864), 1, + STATE(8366), 1, sym_comment, - [237694] = 3, + [256457] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11966), 1, + ACTIONS(12878), 1, sym_raw_string_content, - STATE(7865), 1, + STATE(8367), 1, sym_comment, - [237704] = 3, + [256467] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11968), 1, - anon_sym_RPAREN, - STATE(7866), 1, + ACTIONS(12880), 1, + anon_sym_RBRACE, + STATE(8368), 1, sym_comment, - [237714] = 3, + [256477] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11970), 1, + ACTIONS(12882), 1, anon_sym_RBRACE, - STATE(7867), 1, + STATE(8369), 1, sym_comment, - [237724] = 3, + [256487] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5150), 1, + ACTIONS(5236), 1, anon_sym_LBRACK2, - STATE(7868), 1, + STATE(8370), 1, sym_comment, - [237734] = 3, + [256497] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11972), 1, - anon_sym_RBRACE, - STATE(7869), 1, + ACTIONS(12884), 1, + sym_raw_string_end, + STATE(8371), 1, sym_comment, - [237744] = 3, + [256507] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11974), 1, - sym_raw_string_end, - STATE(7870), 1, + ACTIONS(12886), 1, + anon_sym_RPAREN, + STATE(8372), 1, sym_comment, - [237754] = 3, + [256517] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8670), 1, - aux_sym_unquoted_token2, - STATE(7871), 1, + ACTIONS(12888), 1, + sym_raw_string_end, + STATE(8373), 1, sym_comment, - [237764] = 3, - ACTIONS(3), 1, + [256527] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7184), 1, - aux_sym_unquoted_token4, - STATE(7872), 1, + ACTIONS(12890), 1, + sym_raw_string_end, + STATE(8374), 1, sym_comment, - [237774] = 3, + [256537] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11976), 1, + ACTIONS(12892), 1, anon_sym_RBRACE, - STATE(7873), 1, + STATE(8375), 1, sym_comment, - [237784] = 3, + [256547] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11978), 1, - anon_sym_RBRACK, - STATE(7874), 1, - sym_comment, - [237794] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11980), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7875), 1, + ACTIONS(12894), 1, + anon_sym_RBRACE, + STATE(8376), 1, sym_comment, - [237804] = 3, + [256557] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11982), 1, + ACTIONS(12896), 1, anon_sym_RPAREN, - STATE(7876), 1, + STATE(8377), 1, sym_comment, - [237814] = 3, + [256567] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11984), 1, - anon_sym_LBRACE, - STATE(7877), 1, + ACTIONS(12898), 1, + sym_raw_string_end, + STATE(8378), 1, sym_comment, - [237824] = 3, + [256577] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11986), 1, + ACTIONS(12900), 1, sym_raw_string_end, - STATE(7878), 1, + STATE(8379), 1, sym_comment, - [237834] = 3, + [256587] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11988), 1, - anon_sym_RBRACE, - STATE(7879), 1, + ACTIONS(8941), 1, + aux_sym_unquoted_token2, + STATE(8380), 1, sym_comment, - [237844] = 3, + [256597] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11990), 1, - anon_sym_RBRACE, - STATE(7880), 1, + ACTIONS(12902), 1, + anon_sym_RBRACK, + STATE(8381), 1, sym_comment, - [237854] = 3, + [256607] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11992), 1, - sym_raw_string_end, - STATE(7881), 1, + ACTIONS(12904), 1, + anon_sym_EQ, + STATE(8382), 1, sym_comment, - [237864] = 3, + [256617] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11994), 1, + ACTIONS(12906), 1, anon_sym_RPAREN, - STATE(7882), 1, + STATE(8383), 1, sym_comment, - [237874] = 3, + [256627] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11996), 1, - anon_sym_RPAREN, - STATE(7883), 1, + ACTIONS(12908), 1, + anon_sym_GT2, + STATE(8384), 1, sym_comment, - [237884] = 3, + [256637] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4769), 1, - aux_sym_unquoted_token2, - STATE(7884), 1, + ACTIONS(12910), 1, + anon_sym_RBRACE, + STATE(8385), 1, sym_comment, - [237894] = 3, + [256647] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11998), 1, - sym_identifier, - STATE(7885), 1, + ACTIONS(12912), 1, + sym_raw_string_end, + STATE(8386), 1, sym_comment, - [237904] = 3, + [256657] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12000), 1, - anon_sym_RBRACE, - STATE(7886), 1, + ACTIONS(12914), 1, + anon_sym_LBRACE, + STATE(8387), 1, sym_comment, - [237914] = 3, + [256667] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12002), 1, + ACTIONS(12916), 1, sym_raw_string_content, - STATE(7887), 1, + STATE(8388), 1, sym_comment, - [237924] = 3, + [256677] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12004), 1, - sym_raw_string_end, - STATE(7888), 1, + ACTIONS(5836), 1, + aux_sym_record_entry_token1, + STATE(8389), 1, + sym_comment, + [256687] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(12918), 1, + sym_raw_string_content, + STATE(8390), 1, + sym_comment, + [256697] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(12920), 1, + aux_sym_record_entry_token1, + STATE(8391), 1, sym_comment, - [237934] = 3, + [256707] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7994), 1, + ACTIONS(8310), 1, anon_sym_LBRACK2, - STATE(7889), 1, + STATE(8392), 1, sym_comment, - [237944] = 3, + [256717] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12006), 1, + ACTIONS(12922), 1, anon_sym_RBRACE, - STATE(7890), 1, + STATE(8393), 1, sym_comment, - [237954] = 3, + [256727] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12008), 1, + ACTIONS(12924), 1, aux_sym_cmd_identifier_token41, - STATE(7891), 1, + STATE(8394), 1, sym_comment, - [237964] = 3, + [256737] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12010), 1, + ACTIONS(12521), 1, + anon_sym_make, + STATE(8395), 1, + sym_comment, + [256747] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(12926), 1, anon_sym_RBRACE, - STATE(7892), 1, + STATE(8396), 1, sym_comment, - [237974] = 3, + [256757] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5697), 1, - aux_sym_record_entry_token1, - STATE(7893), 1, + ACTIONS(12928), 1, + sym_raw_string_end, + STATE(8397), 1, sym_comment, - [237984] = 3, + [256767] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12012), 1, + ACTIONS(12930), 1, anon_sym_RBRACE, - STATE(7894), 1, + STATE(8398), 1, sym_comment, - [237994] = 3, + [256777] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12014), 1, - sym_raw_string_end, - STATE(7895), 1, + ACTIONS(10895), 1, + anon_sym_LBRACK2, + STATE(8399), 1, sym_comment, - [238004] = 3, - ACTIONS(3), 1, + [256787] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12016), 1, - aux_sym_cmd_identifier_token41, - STATE(7896), 1, + ACTIONS(12932), 1, + anon_sym_RPAREN, + STATE(8400), 1, sym_comment, - [238014] = 3, + [256797] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12018), 1, - anon_sym_LBRACE, - STATE(7897), 1, + ACTIONS(12934), 1, + anon_sym_RBRACE, + STATE(8401), 1, sym_comment, - [238024] = 3, + [256807] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12020), 1, + ACTIONS(12936), 1, anon_sym_RPAREN, - STATE(7898), 1, + STATE(8402), 1, sym_comment, - [238034] = 3, + [256817] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4813), 1, - aux_sym_record_entry_token1, - STATE(7899), 1, + ACTIONS(12938), 1, + sym_raw_string_end, + STATE(8403), 1, sym_comment, - [238044] = 3, + [256827] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12022), 1, - anon_sym_RBRACK, - STATE(7900), 1, + ACTIONS(12940), 1, + anon_sym_EQ, + STATE(8404), 1, sym_comment, - [238054] = 3, + [256837] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12024), 1, + ACTIONS(12942), 1, sym_raw_string_content, - STATE(7901), 1, + STATE(8405), 1, sym_comment, - [238064] = 3, + [256847] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6206), 1, anon_sym_LBRACK2, - STATE(7902), 1, + STATE(8406), 1, sym_comment, - [238074] = 3, + [256857] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9715), 1, - aux_sym_unquoted_token2, - STATE(7903), 1, + ACTIONS(12944), 1, + anon_sym_GT2, + STATE(8407), 1, sym_comment, - [238084] = 3, + [256867] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12026), 1, - sym_identifier, - STATE(7904), 1, + ACTIONS(489), 1, + anon_sym_RPAREN2, + STATE(8408), 1, sym_comment, - [238094] = 3, + [256877] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12028), 1, - sym_raw_string_end, - STATE(7905), 1, + ACTIONS(12946), 1, + anon_sym_RBRACK, + STATE(8409), 1, sym_comment, - [238104] = 3, + [256887] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12030), 1, + ACTIONS(12948), 1, aux_sym_cmd_identifier_token41, - STATE(7906), 1, + STATE(8410), 1, sym_comment, - [238114] = 3, + [256897] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12032), 1, - sym_raw_string_end, - STATE(7907), 1, + ACTIONS(12950), 1, + anon_sym_RBRACE, + STATE(8411), 1, sym_comment, - [238124] = 3, - ACTIONS(3), 1, + [256907] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2102), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7908), 1, + ACTIONS(12952), 1, + anon_sym_LBRACE, + STATE(8412), 1, sym_comment, - [238134] = 3, - ACTIONS(251), 1, + [256917] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5640), 1, - aux_sym_unquoted_token2, - STATE(7909), 1, + ACTIONS(4946), 1, + aux_sym_unquoted_token4, + STATE(8413), 1, sym_comment, - [238144] = 3, + [256927] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12034), 1, - aux_sym_record_entry_token1, - STATE(7910), 1, + ACTIONS(12954), 1, + anon_sym_RPAREN2, + STATE(8414), 1, sym_comment, - [238154] = 3, + [256937] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4769), 1, + ACTIONS(2240), 1, aux_sym_unquoted_token4, - STATE(7911), 1, + STATE(8415), 1, sym_comment, - [238164] = 3, + [256947] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12036), 1, - sym_raw_string_end, - STATE(7912), 1, + ACTIONS(12956), 1, + anon_sym_RPAREN, + STATE(8416), 1, sym_comment, - [238174] = 3, + [256957] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12038), 1, - anon_sym_LBRACE, - STATE(7913), 1, + ACTIONS(7551), 1, + aux_sym_unquoted_token2, + STATE(8417), 1, sym_comment, - [238184] = 3, + [256967] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12040), 1, + ACTIONS(12958), 1, sym_raw_string_end, - STATE(7914), 1, + STATE(8418), 1, sym_comment, - [238194] = 3, + [256977] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12042), 1, + ACTIONS(12960), 1, sym_raw_string_content, - STATE(7915), 1, + STATE(8419), 1, sym_comment, - [238204] = 3, + [256987] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7798), 1, + ACTIONS(8186), 1, anon_sym_LBRACK2, - STATE(7916), 1, + STATE(8420), 1, sym_comment, - [238214] = 3, + [256997] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12044), 1, - sym__space, - STATE(7917), 1, + ACTIONS(12962), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8421), 1, sym_comment, - [238224] = 3, - ACTIONS(251), 1, + [257007] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12046), 1, - anon_sym_LBRACE, - STATE(7918), 1, + ACTIONS(9217), 1, + aux_sym_unquoted_token4, + STATE(8422), 1, sym_comment, - [238234] = 3, + [257017] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12048), 1, - anon_sym_RBRACE, - STATE(7919), 1, + ACTIONS(5840), 1, + aux_sym_record_entry_token1, + STATE(8423), 1, sym_comment, - [238244] = 3, + [257027] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - aux_sym_unquoted_token4, - STATE(7920), 1, + ACTIONS(12964), 1, + aux_sym_comment_token1, + STATE(8424), 1, sym_comment, - [238254] = 3, + [257037] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12050), 1, - sym_raw_string_end, - STATE(7921), 1, + ACTIONS(12966), 1, + anon_sym_LBRACE, + STATE(8425), 1, sym_comment, - [238264] = 3, + [257047] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12052), 1, - anon_sym_LBRACE, - STATE(7922), 1, + ACTIONS(12968), 1, + anon_sym_EQ, + STATE(8426), 1, sym_comment, - [238274] = 3, - ACTIONS(251), 1, + [257057] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5741), 1, - aux_sym__unquoted_in_list_token2, - STATE(7923), 1, + ACTIONS(12970), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8427), 1, sym_comment, - [238284] = 3, + [257067] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12054), 1, - sym_raw_string_end, - STATE(7924), 1, + ACTIONS(12972), 1, + anon_sym_RBRACE, + STATE(8428), 1, sym_comment, - [238294] = 3, + [257077] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12056), 1, - anon_sym_RBRACE, - STATE(7925), 1, + ACTIONS(12974), 1, + sym_raw_string_end, + STATE(8429), 1, sym_comment, - [238304] = 3, + [257087] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12058), 1, - anon_sym_GT2, - STATE(7926), 1, + ACTIONS(12976), 1, + sym_raw_string_end, + STATE(8430), 1, sym_comment, - [238314] = 3, + [257097] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12060), 1, - anon_sym_RBRACK, - STATE(7927), 1, + ACTIONS(12978), 1, + anon_sym_in2, + STATE(8431), 1, sym_comment, - [238324] = 3, + [257107] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12062), 1, - sym_raw_string_end, - STATE(7928), 1, + ACTIONS(12980), 1, + anon_sym_RPAREN, + STATE(8432), 1, sym_comment, - [238334] = 3, + [257117] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12064), 1, + ACTIONS(12982), 1, sym_raw_string_content, - STATE(7929), 1, + STATE(8433), 1, sym_comment, - [238344] = 3, + [257127] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8019), 1, + ACTIONS(8387), 1, anon_sym_LBRACK2, - STATE(7930), 1, + STATE(8434), 1, sym_comment, - [238354] = 3, + [257137] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8473), 1, - aux_sym_unquoted_token2, - STATE(7931), 1, + ACTIONS(12984), 1, + anon_sym_RBRACK, + STATE(8435), 1, sym_comment, - [238364] = 3, + [257147] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12066), 1, - anon_sym_RBRACK, - STATE(7932), 1, + ACTIONS(4159), 1, + aux_sym_unquoted_token2, + STATE(8436), 1, sym_comment, - [238374] = 3, - ACTIONS(251), 1, + [257157] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12068), 1, - anon_sym_RPAREN, - STATE(7933), 1, + ACTIONS(6728), 1, + aux_sym_unquoted_token4, + STATE(8437), 1, sym_comment, - [238384] = 3, + [257167] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12070), 1, - anon_sym_RBRACE, - STATE(7934), 1, + ACTIONS(12986), 1, + sym_raw_string_end, + STATE(8438), 1, sym_comment, - [238394] = 3, + [257177] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12072), 1, - sym_identifier, - STATE(7935), 1, + ACTIONS(12988), 1, + anon_sym_RBRACK, + STATE(8439), 1, sym_comment, - [238404] = 3, + [257187] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12074), 1, - sym_raw_string_content, - STATE(7936), 1, + ACTIONS(12990), 1, + anon_sym_RPAREN, + STATE(8440), 1, sym_comment, - [238414] = 3, - ACTIONS(3), 1, + [257197] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - aux_sym_unquoted_token4, - STATE(7937), 1, + ACTIONS(12992), 1, + anon_sym_RBRACE, + STATE(8441), 1, sym_comment, - [238424] = 3, + [257207] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12076), 1, - anon_sym_RBRACE, - STATE(7938), 1, + ACTIONS(12994), 1, + anon_sym_RBRACK, + STATE(8442), 1, sym_comment, - [238434] = 3, + [257217] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12078), 1, - sym__table_head_separator, - STATE(7939), 1, + ACTIONS(5061), 1, + aux_sym_unquoted_token2, + STATE(8443), 1, sym_comment, - [238444] = 3, + [257227] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12080), 1, - anon_sym_RBRACE, - STATE(7940), 1, + ACTIONS(12996), 1, + anon_sym_RPAREN, + STATE(8444), 1, sym_comment, - [238454] = 3, + [257237] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12082), 1, - anon_sym_in2, - STATE(7941), 1, + ACTIONS(12998), 1, + sym_identifier, + STATE(8445), 1, sym_comment, - [238464] = 3, + [257247] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12084), 1, + ACTIONS(13000), 1, sym_raw_string_content, - STATE(7942), 1, + STATE(8446), 1, sym_comment, - [238474] = 3, + [257257] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6532), 1, + ACTIONS(6810), 1, anon_sym_LBRACK2, - STATE(7943), 1, + STATE(8447), 1, sym_comment, - [238484] = 3, + [257267] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6472), 1, - aux_sym_unquoted_token2, - STATE(7944), 1, + ACTIONS(13002), 1, + anon_sym_RBRACE, + STATE(8448), 1, sym_comment, - [238494] = 3, - ACTIONS(3), 1, + [257277] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8473), 1, - aux_sym_unquoted_token4, - STATE(7945), 1, + ACTIONS(13004), 1, + anon_sym_DASH_GT, + STATE(8449), 1, sym_comment, - [238504] = 3, + [257287] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1759), 1, - aux_sym__unquoted_in_record_token2, - STATE(7946), 1, + ACTIONS(13006), 1, + anon_sym_RBRACE, + STATE(8450), 1, sym_comment, - [238514] = 3, + [257297] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12086), 1, - anon_sym_RPAREN, - STATE(7947), 1, + ACTIONS(11555), 1, + anon_sym_LBRACE, + STATE(8451), 1, sym_comment, - [238524] = 3, + [257307] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12088), 1, - anon_sym_RPAREN, - STATE(7948), 1, + ACTIONS(13008), 1, + anon_sym_LBRACE, + STATE(8452), 1, sym_comment, - [238534] = 3, + [257317] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12090), 1, - anon_sym_RBRACK, - STATE(7949), 1, + ACTIONS(13010), 1, + anon_sym_RPAREN, + STATE(8453), 1, sym_comment, - [238544] = 3, - ACTIONS(3), 1, + [257327] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12092), 1, - aux_sym_cmd_identifier_token41, - STATE(7950), 1, + ACTIONS(13012), 1, + anon_sym_LBRACE, + STATE(8454), 1, sym_comment, - [238554] = 3, + [257337] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12094), 1, - anon_sym_LBRACE, - STATE(7951), 1, + ACTIONS(13014), 1, + anon_sym_RBRACE, + STATE(8455), 1, sym_comment, - [238564] = 3, + [257347] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11565), 1, - anon_sym_make, - STATE(7952), 1, + ACTIONS(13016), 1, + anon_sym_in2, + STATE(8456), 1, sym_comment, - [238574] = 3, + [257357] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12096), 1, - anon_sym_RBRACK, - STATE(7953), 1, + ACTIONS(13018), 1, + sym_identifier, + STATE(8457), 1, sym_comment, - [238584] = 3, + [257367] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12098), 1, - anon_sym_RPAREN2, - STATE(7954), 1, + ACTIONS(13020), 1, + anon_sym_RBRACK, + STATE(8458), 1, sym_comment, - [238594] = 3, + [257377] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12100), 1, + ACTIONS(13022), 1, sym_raw_string_content, - STATE(7955), 1, + STATE(8459), 1, sym_comment, - [238604] = 3, + [257387] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(5140), 1, anon_sym_LBRACK2, - STATE(7956), 1, + STATE(8460), 1, sym_comment, - [238614] = 3, + [257397] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12102), 1, - anon_sym_RPAREN, - STATE(7957), 1, + ACTIONS(13024), 1, + anon_sym_RBRACE, + STATE(8461), 1, sym_comment, - [238624] = 3, + [257407] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12104), 1, - anon_sym_RBRACE, - STATE(7958), 1, + ACTIONS(13026), 1, + sym_raw_string_end, + STATE(8462), 1, sym_comment, - [238634] = 3, + [257417] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12106), 1, - anon_sym_RPAREN, - STATE(7959), 1, + ACTIONS(13028), 1, + anon_sym_RBRACK, + STATE(8463), 1, sym_comment, - [238644] = 3, + [257427] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12108), 1, - anon_sym_EQ, - STATE(7960), 1, + ACTIONS(13030), 1, + anon_sym_RBRACE, + STATE(8464), 1, sym_comment, - [238654] = 3, + [257437] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12110), 1, + ACTIONS(13032), 1, anon_sym_RBRACE, - STATE(7961), 1, + STATE(8465), 1, sym_comment, - [238664] = 3, - ACTIONS(251), 1, + [257447] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10927), 1, - anon_sym_LBRACK2, - STATE(7962), 1, + ACTIONS(13034), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8466), 1, sym_comment, - [238674] = 3, - ACTIONS(251), 1, + [257457] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12112), 1, - anon_sym_RBRACE, - STATE(7963), 1, + ACTIONS(2086), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8467), 1, sym_comment, - [238684] = 3, - ACTIONS(251), 1, + [257467] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12114), 1, - anon_sym_RBRACE, - STATE(7964), 1, + ACTIONS(5061), 1, + aux_sym_unquoted_token4, + STATE(8468), 1, sym_comment, - [238694] = 3, + [257477] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2245), 1, - aux_sym_unquoted_token2, - STATE(7965), 1, + ACTIONS(13036), 1, + anon_sym_RBRACE, + STATE(8469), 1, sym_comment, - [238704] = 3, - ACTIONS(3), 1, + [257487] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12116), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7966), 1, + ACTIONS(13038), 1, + anon_sym_EQ, + STATE(8470), 1, sym_comment, - [238714] = 3, + [257497] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12118), 1, - anon_sym_RBRACE, - STATE(7967), 1, + ACTIONS(13040), 1, + sym_identifier, + STATE(8471), 1, sym_comment, - [238724] = 3, + [257507] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12120), 1, - sym_raw_string_end, - STATE(7968), 1, + ACTIONS(13042), 1, + sym_raw_string_content, + STATE(8472), 1, sym_comment, - [238734] = 3, + [257517] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6141), 1, + ACTIONS(6320), 1, anon_sym_LBRACK2, - STATE(7969), 1, + STATE(8473), 1, sym_comment, - [238744] = 3, + [257527] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12122), 1, + ACTIONS(13044), 1, anon_sym_RBRACE, - STATE(7970), 1, + STATE(8474), 1, sym_comment, - [238754] = 3, + [257537] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12124), 1, - anon_sym_RBRACK, - STATE(7971), 1, + ACTIONS(13046), 1, + anon_sym_GT2, + STATE(8475), 1, sym_comment, - [238764] = 3, + [257547] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12126), 1, + ACTIONS(13048), 1, anon_sym_RBRACE, - STATE(7972), 1, + STATE(8476), 1, sym_comment, - [238774] = 3, - ACTIONS(3), 1, + [257557] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8670), 1, - aux_sym_unquoted_token4, - STATE(7973), 1, + ACTIONS(13050), 1, + anon_sym_RBRACE, + STATE(8477), 1, sym_comment, - [238784] = 3, + [257567] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12128), 1, - anon_sym_in2, - STATE(7974), 1, + ACTIONS(13052), 1, + aux_sym_env_var_token2, + STATE(8478), 1, sym_comment, - [238794] = 3, + [257577] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12130), 1, - anon_sym_RBRACK, - STATE(7975), 1, + ACTIONS(13054), 1, + sym_raw_string_end, + STATE(8479), 1, sym_comment, - [238804] = 3, + [257587] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7311), 1, - aux_sym__unquoted_in_list_token2, - STATE(7976), 1, + ACTIONS(13056), 1, + anon_sym_RPAREN, + STATE(8480), 1, sym_comment, - [238814] = 3, + [257597] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12132), 1, - anon_sym_RBRACK, - STATE(7977), 1, + ACTIONS(1795), 1, + aux_sym__unquoted_in_record_token2, + STATE(8481), 1, sym_comment, - [238824] = 3, + [257607] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12134), 1, - anon_sym_RBRACK, - STATE(7978), 1, + ACTIONS(13058), 1, + anon_sym_RBRACE, + STATE(8482), 1, sym_comment, - [238834] = 3, + [257617] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12136), 1, - sym_raw_string_end, - STATE(7979), 1, + ACTIONS(13060), 1, + anon_sym_RBRACE, + STATE(8483), 1, sym_comment, - [238844] = 3, - ACTIONS(3), 1, + [257627] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12138), 1, - aux_sym_cmd_identifier_token41, - STATE(7980), 1, + ACTIONS(13062), 1, + anon_sym_RPAREN, + STATE(8484), 1, sym_comment, - [238854] = 3, + [257637] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12140), 1, + ACTIONS(13064), 1, sym_raw_string_content, - STATE(7981), 1, + STATE(8485), 1, sym_comment, - [238864] = 3, + [257647] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6638), 1, + ACTIONS(6906), 1, anon_sym_LBRACK2, - STATE(7982), 1, + STATE(8486), 1, sym_comment, - [238874] = 3, + [257657] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12142), 1, - anon_sym_RBRACE, - STATE(7983), 1, + ACTIONS(501), 1, + anon_sym_RPAREN2, + STATE(8487), 1, sym_comment, - [238884] = 3, - ACTIONS(3), 1, + [257667] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2296), 1, - aux_sym_unquoted_token4, - STATE(7984), 1, + ACTIONS(13066), 1, + sym_raw_string_end, + STATE(8488), 1, sym_comment, - [238894] = 3, + [257677] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12144), 1, - anon_sym_EQ, - STATE(7985), 1, + ACTIONS(1850), 1, + aux_sym_unquoted_token2, + STATE(8489), 1, sym_comment, - [238904] = 3, - ACTIONS(251), 1, + [257687] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(563), 1, - ts_builtin_sym_end, - STATE(7986), 1, + ACTIONS(2086), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8490), 1, sym_comment, - [238914] = 3, + [257697] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12146), 1, - anon_sym_RPAREN, - STATE(7987), 1, + ACTIONS(13068), 1, + sym_raw_string_end, + STATE(8491), 1, sym_comment, - [238924] = 3, - ACTIONS(3), 1, + [257707] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12148), 1, - aux_sym_cmd_identifier_token41, - STATE(7988), 1, + ACTIONS(13070), 1, + anon_sym_RBRACK, + STATE(8492), 1, sym_comment, - [238934] = 3, + [257717] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12150), 1, - sym_raw_string_end, - STATE(7989), 1, + ACTIONS(13072), 1, + anon_sym_RPAREN, + STATE(8493), 1, sym_comment, - [238944] = 3, + [257727] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10815), 1, - anon_sym_LBRACE, - STATE(7990), 1, + ACTIONS(13074), 1, + anon_sym_RBRACE, + STATE(8494), 1, sym_comment, - [238954] = 3, + [257737] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12152), 1, - sym_raw_string_end, - STATE(7991), 1, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token2, + STATE(8495), 1, sym_comment, - [238964] = 3, + [257747] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12154), 1, - anon_sym_RBRACK, - STATE(7992), 1, + ACTIONS(13076), 1, + anon_sym_RBRACE, + STATE(8496), 1, sym_comment, - [238974] = 3, + [257757] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12156), 1, - anon_sym_RPAREN, - STATE(7993), 1, + ACTIONS(13078), 1, + anon_sym_RBRACE, + STATE(8497), 1, sym_comment, - [238984] = 3, + [257767] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12158), 1, + ACTIONS(13080), 1, sym_raw_string_content, - STATE(7994), 1, + STATE(8498), 1, sym_comment, - [238994] = 3, + [257777] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6054), 1, + ACTIONS(6238), 1, anon_sym_LBRACK2, - STATE(7995), 1, + STATE(8499), 1, sym_comment, - [239004] = 3, + [257787] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12160), 1, - anon_sym_RBRACE, - STATE(7996), 1, + ACTIONS(13082), 1, + anon_sym_RPAREN, + STATE(8500), 1, sym_comment, - [239014] = 3, - ACTIONS(3), 1, + [257797] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12162), 1, - aux_sym_comment_token1, - STATE(7997), 1, + ACTIONS(13084), 1, + anon_sym_RBRACE, + STATE(8501), 1, sym_comment, - [239024] = 3, + [257807] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12164), 1, - anon_sym_LBRACE, - STATE(7998), 1, + ACTIONS(13086), 1, + anon_sym_RBRACK, + STATE(8502), 1, sym_comment, - [239034] = 3, - ACTIONS(3), 1, + [257817] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7999), 1, + ACTIONS(13088), 1, + anon_sym_RBRACK, + STATE(8503), 1, sym_comment, - [239044] = 3, + [257827] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5503), 1, - anon_sym_LBRACK2, - STATE(8000), 1, + ACTIONS(13090), 1, + sym_raw_string_end, + STATE(8504), 1, sym_comment, - [239054] = 3, + [257837] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12166), 1, - anon_sym_RPAREN, - STATE(8001), 1, + ACTIONS(13092), 1, + aux_sym_record_entry_token1, + STATE(8505), 1, sym_comment, - [239064] = 3, + [257847] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12168), 1, - anon_sym_in2, - STATE(8002), 1, + ACTIONS(13094), 1, + anon_sym_RPAREN, + STATE(8506), 1, sym_comment, - [239074] = 3, - ACTIONS(3), 1, + [257857] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8003), 1, + ACTIONS(13096), 1, + anon_sym_RPAREN, + STATE(8507), 1, sym_comment, - [239084] = 3, - ACTIONS(3), 1, + [257867] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12170), 1, - aux_sym_cmd_identifier_token41, - STATE(8004), 1, + ACTIONS(13098), 1, + anon_sym_RBRACK, + STATE(8508), 1, sym_comment, - [239094] = 3, + [257877] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12172), 1, - sym_identifier, - STATE(8005), 1, + ACTIONS(5774), 1, + aux_sym_unquoted_token2, + STATE(8509), 1, sym_comment, - [239104] = 3, + [257887] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12174), 1, + ACTIONS(13100), 1, anon_sym_RBRACE, - STATE(8006), 1, + STATE(8510), 1, sym_comment, - [239114] = 3, + [257897] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12176), 1, + ACTIONS(13102), 1, sym_raw_string_content, - STATE(8007), 1, + STATE(8511), 1, sym_comment, - [239124] = 3, + [257907] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9428), 1, + ACTIONS(10272), 1, anon_sym_LBRACK2, - STATE(8008), 1, + STATE(8512), 1, sym_comment, - [239134] = 3, + [257917] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12178), 1, + ACTIONS(13104), 1, anon_sym_RPAREN, - STATE(8009), 1, + STATE(8513), 1, sym_comment, - [239144] = 3, + [257927] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12180), 1, - anon_sym_RPAREN, - STATE(8010), 1, + ACTIONS(13106), 1, + anon_sym_RBRACE, + STATE(8514), 1, sym_comment, - [239154] = 3, + [257937] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12182), 1, - anon_sym_RBRACK, - STATE(8011), 1, + ACTIONS(5593), 1, + anon_sym_LBRACK2, + STATE(8515), 1, sym_comment, - [239164] = 3, + [257947] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12184), 1, - anon_sym_RPAREN, - STATE(8012), 1, + ACTIONS(12914), 1, + anon_sym_LBRACE, + STATE(8516), 1, sym_comment, - [239174] = 3, + [257957] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12186), 1, - anon_sym_RBRACE, - STATE(8013), 1, + ACTIONS(13108), 1, + sym_raw_string_end, + STATE(8517), 1, sym_comment, - [239184] = 3, + [257967] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12188), 1, - anon_sym_GT2, - STATE(8014), 1, + ACTIONS(13110), 1, + sym_raw_string_end, + STATE(8518), 1, sym_comment, - [239194] = 3, + [257977] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12190), 1, - sym_raw_string_end, - STATE(8015), 1, + ACTIONS(13112), 1, + anon_sym_RBRACK, + STATE(8519), 1, sym_comment, - [239204] = 3, + [257987] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12192), 1, + ACTIONS(13114), 1, anon_sym_RBRACE, - STATE(8016), 1, + STATE(8520), 1, sym_comment, - [239214] = 3, - ACTIONS(3), 1, + [257997] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11714), 1, - aux_sym__record_key_token1, - STATE(8017), 1, + ACTIONS(13116), 1, + anon_sym_DASH_GT, + STATE(8521), 1, sym_comment, - [239224] = 3, + [258007] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12194), 1, - anon_sym_EQ_GT, - STATE(8018), 1, + ACTIONS(13118), 1, + sym_raw_string_end, + STATE(8522), 1, sym_comment, - [239234] = 3, + [258017] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12196), 1, - anon_sym_EQ, - STATE(8019), 1, + ACTIONS(13120), 1, + anon_sym_RBRACE, + STATE(8523), 1, sym_comment, - [239244] = 3, + [258027] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12198), 1, + ACTIONS(13122), 1, sym_raw_string_content, - STATE(8020), 1, + STATE(8524), 1, sym_comment, - [239254] = 3, + [258037] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2411), 1, + ACTIONS(2490), 1, anon_sym_LBRACK2, - STATE(8021), 1, + STATE(8525), 1, sym_comment, - [239264] = 3, - ACTIONS(251), 1, + [258047] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12200), 1, - anon_sym_RBRACE, - STATE(8022), 1, + ACTIONS(4801), 1, + aux_sym_unquoted_token4, + STATE(8526), 1, sym_comment, - [239274] = 3, + [258057] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12202), 1, - anon_sym_RPAREN, - STATE(8023), 1, + ACTIONS(3501), 1, + aux_sym_record_entry_token1, + STATE(8527), 1, sym_comment, - [239284] = 3, - ACTIONS(3), 1, + [258067] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2102), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8024), 1, + ACTIONS(13124), 1, + anon_sym_RBRACK, + STATE(8528), 1, sym_comment, - [239294] = 3, + [258077] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12204), 1, - anon_sym_RBRACE, - STATE(8025), 1, + ACTIONS(6720), 1, + aux_sym_unquoted_token2, + STATE(8529), 1, sym_comment, - [239304] = 3, - ACTIONS(251), 1, + [258087] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12206), 1, - anon_sym_RPAREN, - STATE(8026), 1, + ACTIONS(2222), 1, + aux_sym_unquoted_token4, + STATE(8530), 1, sym_comment, - [239314] = 3, - ACTIONS(251), 1, + [258097] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12208), 1, - anon_sym_make, - STATE(8027), 1, + ACTIONS(6720), 1, + aux_sym_unquoted_token4, + STATE(8531), 1, sym_comment, - [239324] = 3, + [258107] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12210), 1, - anon_sym_LPAREN2, - STATE(8028), 1, + ACTIONS(13126), 1, + sym_raw_string_end, + STATE(8532), 1, sym_comment, - [239334] = 3, + [258117] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12212), 1, - anon_sym_RBRACE, - STATE(8029), 1, + ACTIONS(13128), 1, + anon_sym_RBRACK, + STATE(8533), 1, sym_comment, - [239344] = 3, + [258127] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12214), 1, + ACTIONS(13130), 1, sym_raw_string_content, - STATE(8030), 1, + STATE(8534), 1, sym_comment, - [239354] = 3, + [258137] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2306), 1, anon_sym_LBRACK2, - STATE(8031), 1, - sym_comment, - [239364] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12216), 1, - aux_sym_record_entry_token1, - STATE(8032), 1, + STATE(8535), 1, sym_comment, - [239374] = 3, + [258147] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12218), 1, + ACTIONS(13132), 1, anon_sym_RPAREN, - STATE(8033), 1, - sym_comment, - [239384] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12220), 1, - anon_sym_RBRACE, - STATE(8034), 1, + STATE(8536), 1, sym_comment, - [239394] = 3, + [258157] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12222), 1, - anon_sym_RPAREN, - STATE(8035), 1, + ACTIONS(13134), 1, + anon_sym_RBRACK, + STATE(8537), 1, sym_comment, - [239404] = 3, + [258167] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12224), 1, - aux_sym_cmd_identifier_token41, - STATE(8036), 1, + ACTIONS(2082), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8538), 1, sym_comment, - [239414] = 3, + [258177] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12226), 1, - anon_sym_LBRACE, - STATE(8037), 1, + ACTIONS(13136), 1, + sym_raw_string_end, + STATE(8539), 1, sym_comment, - [239424] = 3, + [258187] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12228), 1, - anon_sym_EQ, - STATE(8038), 1, + ACTIONS(13138), 1, + sym__table_head_separator, + STATE(8540), 1, sym_comment, - [239434] = 3, + [258197] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12230), 1, - anon_sym_RBRACE, - STATE(8039), 1, + ACTIONS(4690), 1, + aux_sym_unquoted_token2, + STATE(8541), 1, sym_comment, - [239444] = 3, + [258207] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12232), 1, - sym_raw_string_content, - STATE(8040), 1, + ACTIONS(13140), 1, + anon_sym_RPAREN, + STATE(8542), 1, + sym_comment, + [258217] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5913), 1, + aux_sym__unquoted_in_list_token4, + STATE(8543), 1, sym_comment, - [239454] = 3, + [258227] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12234), 1, + ACTIONS(13142), 1, sym_raw_string_content, - STATE(8041), 1, + STATE(8544), 1, sym_comment, - [239464] = 3, + [258237] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8784), 1, - aux_sym__unquoted_in_list_token2, - STATE(8042), 1, + ACTIONS(13144), 1, + anon_sym_RBRACE, + STATE(8545), 1, sym_comment, - [239474] = 3, + [258247] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12236), 1, + ACTIONS(13146), 1, sym_raw_string_end, - STATE(8043), 1, + STATE(8546), 1, sym_comment, - [239484] = 3, - ACTIONS(251), 1, + [258257] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12238), 1, - sym_raw_string_end, - STATE(8044), 1, + ACTIONS(5774), 1, + aux_sym_unquoted_token4, + STATE(8547), 1, sym_comment, - [239494] = 3, + [258267] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12240), 1, - sym_raw_string_end, - STATE(8045), 1, + ACTIONS(4855), 1, + aux_sym_record_entry_token1, + STATE(8548), 1, sym_comment, - [239504] = 3, + [258277] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2086), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8549), 1, + sym_comment, + [258287] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12226), 1, - anon_sym_LBRACE, - STATE(8046), 1, + ACTIONS(13148), 1, + anon_sym_RPAREN, + STATE(8550), 1, sym_comment, - [239514] = 3, + [258297] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12242), 1, - anon_sym_RBRACK, - STATE(8047), 1, + ACTIONS(13150), 1, + sym_raw_string_end, + STATE(8551), 1, sym_comment, - [239524] = 3, + [258307] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12244), 1, + ACTIONS(13152), 1, anon_sym_RPAREN, - STATE(8048), 1, + STATE(8552), 1, sym_comment, - [239534] = 3, + [258317] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12246), 1, + ACTIONS(13154), 1, sym_raw_string_content, - STATE(8049), 1, + STATE(8553), 1, sym_comment, - [239544] = 3, + [258327] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12248), 1, + ACTIONS(13156), 1, anon_sym_RBRACE, - STATE(8050), 1, + STATE(8554), 1, sym_comment, - [239554] = 3, - ACTIONS(251), 1, + [258337] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12250), 1, - anon_sym_RBRACE, - STATE(8051), 1, + ACTIONS(2082), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8555), 1, sym_comment, - [239564] = 3, + [258347] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12252), 1, - anon_sym_RPAREN, - STATE(8052), 1, + ACTIONS(13158), 1, + sym_identifier, + STATE(8556), 1, sym_comment, - [239574] = 3, - ACTIONS(251), 1, + [258357] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12254), 1, - anon_sym_RBRACE, - STATE(8053), 1, + ACTIONS(13160), 1, + aux_sym_shebang_token1, + STATE(8557), 1, sym_comment, - [239584] = 3, + [258367] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12256), 1, - anon_sym_RPAREN, - STATE(8054), 1, + ACTIONS(13162), 1, + anon_sym_RBRACE, + STATE(8558), 1, sym_comment, - [239594] = 3, + [258377] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12258), 1, - anon_sym_EQ_GT, - STATE(8055), 1, + ACTIONS(13164), 1, + anon_sym_RBRACK, + STATE(8559), 1, sym_comment, - [239604] = 3, - ACTIONS(3), 1, + [258387] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12260), 1, - aux_sym_cmd_identifier_token41, - STATE(8056), 1, + ACTIONS(13166), 1, + anon_sym_EQ, + STATE(8560), 1, sym_comment, - [239614] = 3, + [258397] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4233), 1, - aux_sym_unquoted_token2, - STATE(8057), 1, + ACTIONS(13168), 1, + anon_sym_RBRACE, + STATE(8561), 1, sym_comment, - [239624] = 3, + [258407] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12262), 1, + ACTIONS(13170), 1, sym_raw_string_content, - STATE(8058), 1, + STATE(8562), 1, sym_comment, - [239634] = 3, + [258417] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12264), 1, - anon_sym_RPAREN, - STATE(8059), 1, + ACTIONS(13172), 1, + anon_sym_RBRACE, + STATE(8563), 1, sym_comment, - [239644] = 3, - ACTIONS(3), 1, + [258427] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6472), 1, - aux_sym_unquoted_token4, - STATE(8060), 1, + ACTIONS(13174), 1, + anon_sym_EQ, + STATE(8564), 1, sym_comment, - [239654] = 3, + [258437] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12266), 1, + ACTIONS(13176), 1, anon_sym_RPAREN, - STATE(8061), 1, + STATE(8565), 1, sym_comment, - [239664] = 3, + [258447] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12268), 1, - anon_sym_RBRACK, - STATE(8062), 1, + ACTIONS(13178), 1, + anon_sym_RBRACE, + STATE(8566), 1, sym_comment, - [239674] = 3, + [258457] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12270), 1, - anon_sym_RPAREN, - STATE(8063), 1, + ACTIONS(13180), 1, + anon_sym_RBRACK, + STATE(8567), 1, sym_comment, - [239684] = 3, + [258467] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4682), 1, - aux_sym_unquoted_token2, - STATE(8064), 1, - sym_comment, - [239694] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12272), 1, - aux_sym_shebang_token1, - STATE(8065), 1, + ACTIONS(13182), 1, + anon_sym_RBRACE, + STATE(8568), 1, sym_comment, - [239704] = 3, + [258477] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12274), 1, - anon_sym_RBRACE, - STATE(8066), 1, + ACTIONS(13184), 1, + sym_raw_string_end, + STATE(8569), 1, sym_comment, - [239714] = 3, + [258487] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12276), 1, - sym_raw_string_content, - STATE(8067), 1, + ACTIONS(13186), 1, + sym_long_flag_identifier, + STATE(8570), 1, sym_comment, - [239724] = 3, + [258497] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12278), 1, + ACTIONS(13188), 1, sym_raw_string_content, - STATE(8068), 1, + STATE(8571), 1, sym_comment, - [239734] = 3, + [258507] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12280), 1, + ACTIONS(13190), 1, sym_raw_string_content, - STATE(8069), 1, + STATE(8572), 1, sym_comment, - [239744] = 3, + [258517] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12282), 1, + ACTIONS(13192), 1, sym_raw_string_content, - STATE(8070), 1, + STATE(8573), 1, sym_comment, - [239754] = 3, + [258527] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12284), 1, + ACTIONS(13194), 1, sym_raw_string_content, - STATE(8071), 1, + STATE(8574), 1, sym_comment, - [239764] = 3, + [258537] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12286), 1, + ACTIONS(13196), 1, sym_raw_string_content, - STATE(8072), 1, + STATE(8575), 1, sym_comment, - [239774] = 3, + [258547] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12288), 1, + ACTIONS(13198), 1, sym_raw_string_content, - STATE(8073), 1, + STATE(8576), 1, sym_comment, - [239784] = 3, + [258557] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12290), 1, + ACTIONS(13200), 1, sym_raw_string_content, - STATE(8074), 1, + STATE(8577), 1, sym_comment, - [239794] = 3, + [258567] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12292), 1, + ACTIONS(13202), 1, sym_raw_string_content, - STATE(8075), 1, + STATE(8578), 1, sym_comment, - [239804] = 3, + [258577] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12294), 1, + ACTIONS(13204), 1, sym_raw_string_content, - STATE(8076), 1, + STATE(8579), 1, sym_comment, - [239814] = 3, + [258587] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12296), 1, + ACTIONS(13206), 1, sym_raw_string_content, - STATE(8077), 1, + STATE(8580), 1, sym_comment, - [239824] = 3, + [258597] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12298), 1, + ACTIONS(13208), 1, sym_raw_string_content, - STATE(8078), 1, + STATE(8581), 1, sym_comment, - [239834] = 3, + [258607] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12300), 1, + ACTIONS(13210), 1, sym_raw_string_content, - STATE(8079), 1, + STATE(8582), 1, sym_comment, - [239844] = 3, + [258617] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12302), 1, + ACTIONS(13212), 1, sym_raw_string_content, - STATE(8080), 1, + STATE(8583), 1, sym_comment, - [239854] = 3, + [258627] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12304), 1, + ACTIONS(13214), 1, sym_raw_string_content, - STATE(8081), 1, + STATE(8584), 1, sym_comment, - [239864] = 3, + [258637] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12306), 1, + ACTIONS(13216), 1, sym_raw_string_content, - STATE(8082), 1, + STATE(8585), 1, sym_comment, - [239874] = 3, + [258647] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12308), 1, + ACTIONS(13218), 1, sym_raw_string_content, - STATE(8083), 1, + STATE(8586), 1, sym_comment, - [239884] = 3, + [258657] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12310), 1, + ACTIONS(13220), 1, sym_raw_string_content, - STATE(8084), 1, + STATE(8587), 1, sym_comment, - [239894] = 3, + [258667] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12312), 1, + ACTIONS(13222), 1, sym_raw_string_content, - STATE(8085), 1, + STATE(8588), 1, sym_comment, - [239904] = 3, + [258677] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12314), 1, + ACTIONS(13224), 1, sym_raw_string_content, - STATE(8086), 1, + STATE(8589), 1, sym_comment, - [239914] = 3, + [258687] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12316), 1, + ACTIONS(13226), 1, sym_raw_string_content, - STATE(8087), 1, + STATE(8590), 1, sym_comment, - [239924] = 3, + [258697] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12318), 1, + ACTIONS(13228), 1, sym_raw_string_content, - STATE(8088), 1, + STATE(8591), 1, sym_comment, - [239934] = 3, + [258707] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12320), 1, + ACTIONS(13230), 1, sym_raw_string_content, - STATE(8089), 1, + STATE(8592), 1, sym_comment, - [239944] = 3, + [258717] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12322), 1, + ACTIONS(13232), 1, sym_raw_string_content, - STATE(8090), 1, + STATE(8593), 1, sym_comment, - [239954] = 3, + [258727] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12324), 1, + ACTIONS(13234), 1, sym_raw_string_content, - STATE(8091), 1, + STATE(8594), 1, sym_comment, - [239964] = 3, + [258737] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12326), 1, + ACTIONS(13236), 1, sym_raw_string_content, - STATE(8092), 1, + STATE(8595), 1, sym_comment, - [239974] = 3, + [258747] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12328), 1, + ACTIONS(13238), 1, sym_raw_string_content, - STATE(8093), 1, + STATE(8596), 1, sym_comment, - [239984] = 3, + [258757] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12330), 1, + ACTIONS(13240), 1, sym_raw_string_content, - STATE(8094), 1, + STATE(8597), 1, sym_comment, - [239994] = 3, + [258767] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12332), 1, + ACTIONS(13242), 1, sym_raw_string_content, - STATE(8095), 1, + STATE(8598), 1, sym_comment, - [240004] = 3, + [258777] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12334), 1, + ACTIONS(13244), 1, sym_raw_string_content, - STATE(8096), 1, + STATE(8599), 1, sym_comment, - [240014] = 3, + [258787] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12336), 1, + ACTIONS(13246), 1, sym_raw_string_content, - STATE(8097), 1, + STATE(8600), 1, sym_comment, - [240024] = 3, - ACTIONS(3), 1, + [258797] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5640), 1, - aux_sym_unquoted_token4, - STATE(8098), 1, + ACTIONS(13248), 1, + anon_sym_RBRACE, + STATE(8601), 1, sym_comment, - [240034] = 3, + [258807] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12338), 1, - sym_raw_string_end, - STATE(8099), 1, + ACTIONS(13250), 1, + anon_sym_GT2, + STATE(8602), 1, sym_comment, - [240044] = 3, + [258817] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11712), 1, + ACTIONS(12543), 1, anon_sym_LPAREN2, - STATE(8100), 1, + STATE(8603), 1, sym_comment, - [240054] = 3, + [258827] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12340), 1, - sym_identifier, - STATE(8101), 1, + ACTIONS(5828), 1, + aux_sym_record_entry_token1, + STATE(8604), 1, sym_comment, - [240064] = 3, + [258837] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12342), 1, - anon_sym_RBRACE, - STATE(8102), 1, + ACTIONS(13252), 1, + sym_raw_string_end, + STATE(8605), 1, sym_comment, - [240074] = 3, + [258847] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12344), 1, + ACTIONS(13254), 1, anon_sym_RBRACK, - STATE(8103), 1, + STATE(8606), 1, sym_comment, - [240084] = 3, + [258857] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12346), 1, + ACTIONS(13256), 1, anon_sym_RPAREN, - STATE(8104), 1, + STATE(8607), 1, sym_comment, - [240094] = 3, + [258867] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12348), 1, - anon_sym_RBRACE, - STATE(8105), 1, + ACTIONS(13258), 1, + anon_sym_RPAREN, + STATE(8608), 1, sym_comment, - [240104] = 3, + [258877] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12350), 1, - anon_sym_RPAREN, - STATE(8106), 1, + ACTIONS(13260), 1, + sym_raw_string_content, + STATE(8609), 1, sym_comment, - [240114] = 3, + [258887] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12352), 1, - anon_sym_RBRACE, - STATE(8107), 1, + ACTIONS(13262), 1, + anon_sym_RPAREN, + STATE(8610), 1, sym_comment, - [240124] = 3, - ACTIONS(251), 1, + [258897] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12354), 1, - anon_sym_RBRACE, - STATE(8108), 1, + ACTIONS(13264), 1, + aux_sym_cmd_identifier_token41, + STATE(8611), 1, sym_comment, - [240134] = 3, + [258907] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12356), 1, + ACTIONS(13266), 1, anon_sym_RPAREN, - STATE(8109), 1, + STATE(8612), 1, sym_comment, - [240144] = 3, + [258917] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1838), 1, - aux_sym_unquoted_token2, - STATE(8110), 1, + ACTIONS(13268), 1, + sym_raw_string_end, + STATE(8613), 1, sym_comment, - [240154] = 3, + [258927] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12358), 1, - anon_sym_RBRACE, - STATE(8111), 1, + ACTIONS(13270), 1, + anon_sym_RPAREN, + STATE(8614), 1, sym_comment, - [240164] = 3, + [258937] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12360), 1, - anon_sym_EQ, - STATE(8112), 1, + ACTIONS(13272), 1, + anon_sym_RPAREN, + STATE(8615), 1, sym_comment, - [240174] = 3, + [258947] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12362), 1, - anon_sym_LBRACE, - STATE(8113), 1, + ACTIONS(13274), 1, + anon_sym_RPAREN, + STATE(8616), 1, sym_comment, - [240184] = 3, + [258957] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12364), 1, - anon_sym_GT2, - STATE(8114), 1, + ACTIONS(4801), 1, + aux_sym_unquoted_token2, + STATE(8617), 1, sym_comment, - [240194] = 3, + [258967] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12366), 1, - anon_sym_in2, - STATE(8115), 1, + ACTIONS(13276), 1, + anon_sym_RBRACE, + STATE(8618), 1, sym_comment, - [240204] = 3, + [258977] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12368), 1, + ACTIONS(13278), 1, anon_sym_in2, - STATE(8116), 1, - sym_comment, - [240214] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12370), 1, - anon_sym_RPAREN2, - STATE(8117), 1, + STATE(8619), 1, sym_comment, - [240224] = 3, + [258987] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9801), 1, - aux_sym_unquoted_token2, - STATE(8118), 1, + ACTIONS(13280), 1, + anon_sym_in2, + STATE(8620), 1, sym_comment, - [240234] = 3, + [258997] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12372), 1, - aux_sym_cmd_identifier_token41, - STATE(8119), 1, + ACTIONS(13282), 1, + aux_sym_shebang_token1, + STATE(8621), 1, sym_comment, - [240244] = 3, + [259007] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12374), 1, - anon_sym_in2, - STATE(8120), 1, + ACTIONS(13284), 1, + anon_sym_RPAREN, + STATE(8622), 1, sym_comment, - [240254] = 3, + [259017] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12376), 1, - anon_sym_in2, - STATE(8121), 1, + ACTIONS(2330), 1, + aux_sym_record_entry_token1, + STATE(8623), 1, sym_comment, - [240264] = 3, + [259027] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12378), 1, - anon_sym_RBRACE, - STATE(8122), 1, + ACTIONS(1659), 1, + aux_sym_unquoted_token2, + STATE(8624), 1, sym_comment, - [240274] = 3, + [259037] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9801), 1, + ACTIONS(4728), 1, aux_sym_unquoted_token4, - STATE(8123), 1, + STATE(8625), 1, sym_comment, - [240284] = 3, + [259047] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12380), 1, - anon_sym_EQ, - STATE(8124), 1, + ACTIONS(13286), 1, + anon_sym_RBRACE, + STATE(8626), 1, sym_comment, - [240294] = 3, + [259057] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12382), 1, - anon_sym_RBRACE, - STATE(8125), 1, + ACTIONS(13288), 1, + anon_sym_in2, + STATE(8627), 1, + sym_comment, + [259067] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(13290), 1, + anon_sym_in2, + STATE(8628), 1, sym_comment, - [240304] = 3, + [259077] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12384), 1, + ACTIONS(13292), 1, anon_sym_RBRACE, - STATE(8126), 1, + STATE(8629), 1, sym_comment, - [240314] = 3, + [259087] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12386), 1, + ACTIONS(13294), 1, anon_sym_RPAREN, - STATE(8127), 1, + STATE(8630), 1, sym_comment, - [240324] = 3, - ACTIONS(251), 1, + [259097] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12388), 1, - sym_identifier, - STATE(8128), 1, + ACTIONS(13296), 1, + aux_sym_cmd_identifier_token41, + STATE(8631), 1, sym_comment, - [240334] = 3, + [259107] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12390), 1, - anon_sym_RBRACE, - STATE(8129), 1, + ACTIONS(13298), 1, + anon_sym_RBRACK, + STATE(8632), 1, sym_comment, - [240344] = 3, + [259117] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12392), 1, + ACTIONS(13300), 1, aux_sym_cmd_identifier_token41, - STATE(8130), 1, + STATE(8633), 1, sym_comment, - [240354] = 3, + [259127] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12394), 1, - anon_sym_in2, - STATE(8131), 1, + ACTIONS(13302), 1, + anon_sym_RPAREN, + STATE(8634), 1, sym_comment, - [240364] = 3, + [259137] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12396), 1, - anon_sym_EQ, - STATE(8132), 1, + ACTIONS(13304), 1, + anon_sym_RBRACE, + STATE(8635), 1, sym_comment, - [240374] = 3, + [259147] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12398), 1, - sym_raw_string_end, - STATE(8133), 1, + ACTIONS(541), 1, + anon_sym_RPAREN2, + STATE(8636), 1, sym_comment, - [240384] = 3, + [259157] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12400), 1, - anon_sym_DASH_GT, - STATE(8134), 1, + ACTIONS(13306), 1, + anon_sym_EQ, + STATE(8637), 1, sym_comment, - [240394] = 3, + [259167] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(13308), 1, + sym__space, + STATE(8638), 1, + sym_comment, + [259177] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6563), 1, - anon_sym_LPAREN2, - STATE(8135), 1, + ACTIONS(13310), 1, + anon_sym_EQ, + STATE(8639), 1, sym_comment, - [240404] = 3, + [259187] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12402), 1, + ACTIONS(13312), 1, anon_sym_RBRACE, - STATE(8136), 1, + STATE(8640), 1, sym_comment, - [240414] = 3, - ACTIONS(251), 1, + [259197] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token2, - STATE(8137), 1, + ACTIONS(13314), 1, + aux_sym_cmd_identifier_token41, + STATE(8641), 1, sym_comment, - [240424] = 3, + [259207] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12404), 1, - anon_sym_RPAREN, - STATE(8138), 1, + ACTIONS(13316), 1, + anon_sym_RBRACE, + STATE(8642), 1, sym_comment, - [240434] = 3, + [259217] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12406), 1, - anon_sym_RBRACK, - STATE(8139), 1, + ACTIONS(6814), 1, + anon_sym_LPAREN2, + STATE(8643), 1, sym_comment, - [240444] = 3, + [259227] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12408), 1, - anon_sym_RBRACE, - STATE(8140), 1, + ACTIONS(13318), 1, + anon_sym_RPAREN, + STATE(8644), 1, sym_comment, - [240454] = 3, + [259237] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12410), 1, - anon_sym_RBRACE, - STATE(8141), 1, + ACTIONS(13320), 1, + anon_sym_RPAREN, + STATE(8645), 1, sym_comment, - [240464] = 3, + [259247] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12412), 1, - anon_sym_RPAREN, - STATE(8142), 1, + ACTIONS(13322), 1, + anon_sym_EQ, + STATE(8646), 1, sym_comment, - [240474] = 3, + [259257] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12414), 1, - anon_sym_RPAREN, - STATE(8143), 1, + ACTIONS(13324), 1, + anon_sym_EQ, + STATE(8647), 1, sym_comment, - [240484] = 3, + [259267] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12416), 1, + ACTIONS(13326), 1, anon_sym_RBRACE, - STATE(8144), 1, + STATE(8648), 1, sym_comment, - [240494] = 3, + [259277] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12418), 1, - anon_sym_RBRACE, - STATE(8145), 1, + ACTIONS(9234), 1, + aux_sym__unquoted_in_record_token2, + STATE(8649), 1, sym_comment, - [240504] = 3, + [259287] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12420), 1, - anon_sym_EQ, - STATE(8146), 1, + ACTIONS(13328), 1, + sym_raw_string_end, + STATE(8650), 1, sym_comment, - [240514] = 3, + [259297] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12422), 1, - sym__space, - STATE(8147), 1, + ACTIONS(13330), 1, + aux_sym_cmd_identifier_token41, + STATE(8651), 1, sym_comment, - [240524] = 3, + [259307] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12424), 1, + ACTIONS(13332), 1, anon_sym_RBRACE, - STATE(8148), 1, + STATE(8652), 1, sym_comment, - [240534] = 3, - ACTIONS(3), 1, + [259317] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12426), 1, - aux_sym_cmd_identifier_token41, - STATE(8149), 1, + ACTIONS(13334), 1, + anon_sym_RBRACE, + STATE(8653), 1, sym_comment, - [240544] = 3, + [259327] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12428), 1, + ACTIONS(13336), 1, + anon_sym_RBRACE, + STATE(8654), 1, + sym_comment, + [259337] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(13338), 1, + anon_sym_LBRACE, + STATE(8655), 1, + sym_comment, + [259347] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(13340), 1, anon_sym_RPAREN, - STATE(8150), 1, + STATE(8656), 1, sym_comment, - [240554] = 3, + [259357] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(539), 1, - anon_sym_RPAREN2, - STATE(8151), 1, + ACTIONS(13342), 1, + anon_sym_RBRACE, + STATE(8657), 1, sym_comment, - [240564] = 3, + [259367] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12430), 1, + ACTIONS(13344), 1, anon_sym_RBRACK, - STATE(8152), 1, + STATE(8658), 1, sym_comment, - [240574] = 3, + [259377] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12432), 1, + ACTIONS(13346), 1, anon_sym_RPAREN, - STATE(8153), 1, + STATE(8659), 1, sym_comment, - [240584] = 3, + [259387] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12434), 1, + ACTIONS(13348), 1, anon_sym_RBRACE, - STATE(8154), 1, + STATE(8660), 1, sym_comment, - [240594] = 3, - ACTIONS(3), 1, + [259397] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12436), 1, - aux_sym_cmd_identifier_token41, - STATE(8155), 1, + ACTIONS(13350), 1, + anon_sym_RPAREN, + STATE(8661), 1, sym_comment, - [240604] = 3, + [259407] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12438), 1, - anon_sym_RPAREN, - STATE(8156), 1, + ACTIONS(553), 1, + ts_builtin_sym_end, + STATE(8662), 1, sym_comment, - [240614] = 3, - ACTIONS(3), 1, + [259417] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12440), 1, - aux_sym_cmd_identifier_token41, - STATE(8157), 1, + ACTIONS(13352), 1, + anon_sym_EQ, + STATE(8663), 1, sym_comment, - [240624] = 3, + [259427] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12442), 1, - sym_long_flag_identifier, - STATE(8158), 1, + ACTIONS(13354), 1, + sym_raw_string_end, + STATE(8664), 1, sym_comment, - [240634] = 3, + [259437] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12444), 1, + ACTIONS(13356), 1, anon_sym_RBRACE, - STATE(8159), 1, + STATE(8665), 1, sym_comment, - [240644] = 3, + [259447] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12446), 1, - anon_sym_RPAREN, - STATE(8160), 1, + ACTIONS(13358), 1, + anon_sym_in2, + STATE(8666), 1, sym_comment, - [240654] = 3, + [259457] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12448), 1, + ACTIONS(13360), 1, anon_sym_RPAREN, - STATE(8161), 1, + STATE(8667), 1, sym_comment, - [240664] = 3, - ACTIONS(3), 1, + [259467] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12450), 1, - aux_sym_cmd_identifier_token41, - STATE(8162), 1, + ACTIONS(11825), 1, + anon_sym_LBRACE, + STATE(8668), 1, sym_comment, - [240674] = 3, + [259477] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12452), 1, - aux_sym_env_var_token2, - STATE(8163), 1, + ACTIONS(13362), 1, + sym_raw_string_end, + STATE(8669), 1, sym_comment, - [240684] = 3, + [259487] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2312), 1, - aux_sym_record_entry_token1, - STATE(8164), 1, + ACTIONS(13364), 1, + sym_raw_string_end, + STATE(8670), 1, sym_comment, - [240694] = 3, + [259497] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12454), 1, - sym_param_short_flag_identifier, - STATE(8165), 1, + ACTIONS(7487), 1, + aux_sym_unquoted_token2, + STATE(8671), 1, sym_comment, - [240704] = 3, + [259507] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(547), 1, - anon_sym_RPAREN2, - STATE(8166), 1, + ACTIONS(13366), 1, + anon_sym_EQ_GT, + STATE(8672), 1, sym_comment, - [240714] = 3, + [259517] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12456), 1, - anon_sym_RBRACE, - STATE(8167), 1, + ACTIONS(13368), 1, + anon_sym_RPAREN, + STATE(8673), 1, sym_comment, - [240724] = 3, + [259527] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12458), 1, - aux_sym_cmd_identifier_token41, - STATE(8168), 1, + ACTIONS(7551), 1, + aux_sym_unquoted_token4, + STATE(8674), 1, sym_comment, - [240734] = 3, + [259537] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3381), 1, - aux_sym_record_entry_token1, - STATE(8169), 1, + ACTIONS(13370), 1, + sym_identifier, + STATE(8675), 1, sym_comment, - [240744] = 3, + [259547] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5709), 1, - aux_sym_record_entry_token1, - STATE(8170), 1, + ACTIONS(13372), 1, + anon_sym_RBRACE, + STATE(8676), 1, sym_comment, - [240754] = 3, + [259557] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12460), 1, - anon_sym_RBRACE, - STATE(8171), 1, + ACTIONS(13374), 1, + anon_sym_in2, + STATE(8677), 1, sym_comment, - [240764] = 3, + [259567] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12462), 1, - anon_sym_RBRACE, - STATE(8172), 1, + ACTIONS(13376), 1, + sym__table_head_separator, + STATE(8678), 1, sym_comment, - [240774] = 3, + [259577] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(473), 1, - anon_sym_RPAREN2, - STATE(8173), 1, + ACTIONS(13378), 1, + sym_identifier, + STATE(8679), 1, sym_comment, - [240784] = 3, + [259587] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12464), 1, - sym_raw_string_content, - STATE(8174), 1, + ACTIONS(5725), 1, + aux_sym__unquoted_in_list_token2, + STATE(8680), 1, sym_comment, - [240794] = 1, - ACTIONS(12466), 1, + [259597] = 1, + ACTIONS(13380), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1727)] = 0, - [SMALL_STATE(1728)] = 107, - [SMALL_STATE(1729)] = 180, - [SMALL_STATE(1730)] = 253, - [SMALL_STATE(1731)] = 326, - [SMALL_STATE(1732)] = 401, - [SMALL_STATE(1733)] = 474, - [SMALL_STATE(1734)] = 547, - [SMALL_STATE(1735)] = 620, - [SMALL_STATE(1736)] = 693, - [SMALL_STATE(1737)] = 766, - [SMALL_STATE(1738)] = 839, - [SMALL_STATE(1739)] = 912, - [SMALL_STATE(1740)] = 985, - [SMALL_STATE(1741)] = 1058, - [SMALL_STATE(1742)] = 1131, - [SMALL_STATE(1743)] = 1204, - [SMALL_STATE(1744)] = 1279, - [SMALL_STATE(1745)] = 1354, - [SMALL_STATE(1746)] = 1501, - [SMALL_STATE(1747)] = 1648, - [SMALL_STATE(1748)] = 1721, - [SMALL_STATE(1749)] = 1794, - [SMALL_STATE(1750)] = 1867, - [SMALL_STATE(1751)] = 1942, - [SMALL_STATE(1752)] = 2015, - [SMALL_STATE(1753)] = 2088, - [SMALL_STATE(1754)] = 2161, - [SMALL_STATE(1755)] = 2234, - [SMALL_STATE(1756)] = 2307, - [SMALL_STATE(1757)] = 2382, - [SMALL_STATE(1758)] = 2455, - [SMALL_STATE(1759)] = 2528, - [SMALL_STATE(1760)] = 2601, - [SMALL_STATE(1761)] = 2674, - [SMALL_STATE(1762)] = 2747, - [SMALL_STATE(1763)] = 2820, - [SMALL_STATE(1764)] = 2893, - [SMALL_STATE(1765)] = 2968, - [SMALL_STATE(1766)] = 3075, - [SMALL_STATE(1767)] = 3148, - [SMALL_STATE(1768)] = 3221, - [SMALL_STATE(1769)] = 3294, - [SMALL_STATE(1770)] = 3367, - [SMALL_STATE(1771)] = 3440, - [SMALL_STATE(1772)] = 3513, - [SMALL_STATE(1773)] = 3586, - [SMALL_STATE(1774)] = 3659, - [SMALL_STATE(1775)] = 3732, - [SMALL_STATE(1776)] = 3805, - [SMALL_STATE(1777)] = 3878, - [SMALL_STATE(1778)] = 3953, - [SMALL_STATE(1779)] = 4026, - [SMALL_STATE(1780)] = 4099, - [SMALL_STATE(1781)] = 4202, - [SMALL_STATE(1782)] = 4275, - [SMALL_STATE(1783)] = 4348, - [SMALL_STATE(1784)] = 4421, - [SMALL_STATE(1785)] = 4496, - [SMALL_STATE(1786)] = 4569, - [SMALL_STATE(1787)] = 4642, - [SMALL_STATE(1788)] = 4715, - [SMALL_STATE(1789)] = 4788, - [SMALL_STATE(1790)] = 4861, - [SMALL_STATE(1791)] = 4934, - [SMALL_STATE(1792)] = 5007, - [SMALL_STATE(1793)] = 5080, - [SMALL_STATE(1794)] = 5153, - [SMALL_STATE(1795)] = 5226, - [SMALL_STATE(1796)] = 5299, - [SMALL_STATE(1797)] = 5372, - [SMALL_STATE(1798)] = 5445, - [SMALL_STATE(1799)] = 5520, - [SMALL_STATE(1800)] = 5593, - [SMALL_STATE(1801)] = 5666, - [SMALL_STATE(1802)] = 5739, - [SMALL_STATE(1803)] = 5812, - [SMALL_STATE(1804)] = 5885, - [SMALL_STATE(1805)] = 5958, - [SMALL_STATE(1806)] = 6031, - [SMALL_STATE(1807)] = 6104, - [SMALL_STATE(1808)] = 6183, - [SMALL_STATE(1809)] = 6256, - [SMALL_STATE(1810)] = 6329, - [SMALL_STATE(1811)] = 6432, - [SMALL_STATE(1812)] = 6505, - [SMALL_STATE(1813)] = 6578, - [SMALL_STATE(1814)] = 6653, - [SMALL_STATE(1815)] = 6726, - [SMALL_STATE(1816)] = 6801, - [SMALL_STATE(1817)] = 6876, - [SMALL_STATE(1818)] = 6949, - [SMALL_STATE(1819)] = 7022, - [SMALL_STATE(1820)] = 7095, - [SMALL_STATE(1821)] = 7170, - [SMALL_STATE(1822)] = 7243, - [SMALL_STATE(1823)] = 7390, - [SMALL_STATE(1824)] = 7537, - [SMALL_STATE(1825)] = 7684, - [SMALL_STATE(1826)] = 7831, - [SMALL_STATE(1827)] = 7904, - [SMALL_STATE(1828)] = 8051, - [SMALL_STATE(1829)] = 8198, - [SMALL_STATE(1830)] = 8273, - [SMALL_STATE(1831)] = 8346, - [SMALL_STATE(1832)] = 8419, - [SMALL_STATE(1833)] = 8496, - [SMALL_STATE(1834)] = 8569, - [SMALL_STATE(1835)] = 8716, - [SMALL_STATE(1836)] = 8789, - [SMALL_STATE(1837)] = 8862, - [SMALL_STATE(1838)] = 8935, - [SMALL_STATE(1839)] = 9008, - [SMALL_STATE(1840)] = 9111, - [SMALL_STATE(1841)] = 9184, - [SMALL_STATE(1842)] = 9331, - [SMALL_STATE(1843)] = 9478, - [SMALL_STATE(1844)] = 9625, - [SMALL_STATE(1845)] = 9732, - [SMALL_STATE(1846)] = 9805, - [SMALL_STATE(1847)] = 9878, - [SMALL_STATE(1848)] = 9953, - [SMALL_STATE(1849)] = 10026, - [SMALL_STATE(1850)] = 10099, - [SMALL_STATE(1851)] = 10172, - [SMALL_STATE(1852)] = 10247, - [SMALL_STATE(1853)] = 10320, - [SMALL_STATE(1854)] = 10393, - [SMALL_STATE(1855)] = 10466, - [SMALL_STATE(1856)] = 10542, - [SMALL_STATE(1857)] = 10614, - [SMALL_STATE(1858)] = 10686, - [SMALL_STATE(1859)] = 10758, - [SMALL_STATE(1860)] = 10830, - [SMALL_STATE(1861)] = 10902, - [SMALL_STATE(1862)] = 10974, - [SMALL_STATE(1863)] = 11046, - [SMALL_STATE(1864)] = 11118, - [SMALL_STATE(1865)] = 11190, - [SMALL_STATE(1866)] = 11262, - [SMALL_STATE(1867)] = 11334, - [SMALL_STATE(1868)] = 11406, - [SMALL_STATE(1869)] = 11478, - [SMALL_STATE(1870)] = 11550, - [SMALL_STATE(1871)] = 11622, - [SMALL_STATE(1872)] = 11694, - [SMALL_STATE(1873)] = 11766, - [SMALL_STATE(1874)] = 11838, - [SMALL_STATE(1875)] = 11910, - [SMALL_STATE(1876)] = 11982, - [SMALL_STATE(1877)] = 12054, - [SMALL_STATE(1878)] = 12126, - [SMALL_STATE(1879)] = 12198, - [SMALL_STATE(1880)] = 12270, - [SMALL_STATE(1881)] = 12342, - [SMALL_STATE(1882)] = 12414, - [SMALL_STATE(1883)] = 12486, - [SMALL_STATE(1884)] = 12558, - [SMALL_STATE(1885)] = 12630, - [SMALL_STATE(1886)] = 12702, - [SMALL_STATE(1887)] = 12774, - [SMALL_STATE(1888)] = 12846, - [SMALL_STATE(1889)] = 12918, - [SMALL_STATE(1890)] = 12990, - [SMALL_STATE(1891)] = 13062, - [SMALL_STATE(1892)] = 13134, - [SMALL_STATE(1893)] = 13206, - [SMALL_STATE(1894)] = 13278, - [SMALL_STATE(1895)] = 13350, - [SMALL_STATE(1896)] = 13422, - [SMALL_STATE(1897)] = 13494, - [SMALL_STATE(1898)] = 13566, - [SMALL_STATE(1899)] = 13638, - [SMALL_STATE(1900)] = 13710, - [SMALL_STATE(1901)] = 13782, - [SMALL_STATE(1902)] = 13854, - [SMALL_STATE(1903)] = 13926, - [SMALL_STATE(1904)] = 13998, - [SMALL_STATE(1905)] = 14070, - [SMALL_STATE(1906)] = 14142, - [SMALL_STATE(1907)] = 14214, - [SMALL_STATE(1908)] = 14286, - [SMALL_STATE(1909)] = 14358, - [SMALL_STATE(1910)] = 14430, - [SMALL_STATE(1911)] = 14502, - [SMALL_STATE(1912)] = 14574, - [SMALL_STATE(1913)] = 14646, - [SMALL_STATE(1914)] = 14790, - [SMALL_STATE(1915)] = 14862, - [SMALL_STATE(1916)] = 14934, - [SMALL_STATE(1917)] = 15006, - [SMALL_STATE(1918)] = 15078, - [SMALL_STATE(1919)] = 15150, - [SMALL_STATE(1920)] = 15222, - [SMALL_STATE(1921)] = 15294, - [SMALL_STATE(1922)] = 15366, - [SMALL_STATE(1923)] = 15438, - [SMALL_STATE(1924)] = 15510, - [SMALL_STATE(1925)] = 15582, - [SMALL_STATE(1926)] = 15654, - [SMALL_STATE(1927)] = 15726, - [SMALL_STATE(1928)] = 15798, - [SMALL_STATE(1929)] = 15870, - [SMALL_STATE(1930)] = 15942, - [SMALL_STATE(1931)] = 16014, - [SMALL_STATE(1932)] = 16090, - [SMALL_STATE(1933)] = 16162, - [SMALL_STATE(1934)] = 16234, - [SMALL_STATE(1935)] = 16310, - [SMALL_STATE(1936)] = 16386, - [SMALL_STATE(1937)] = 16462, - [SMALL_STATE(1938)] = 16538, - [SMALL_STATE(1939)] = 16614, - [SMALL_STATE(1940)] = 16690, - [SMALL_STATE(1941)] = 16766, - [SMALL_STATE(1942)] = 16842, - [SMALL_STATE(1943)] = 16986, - [SMALL_STATE(1944)] = 17062, - [SMALL_STATE(1945)] = 17138, - [SMALL_STATE(1946)] = 17210, - [SMALL_STATE(1947)] = 17282, - [SMALL_STATE(1948)] = 17358, - [SMALL_STATE(1949)] = 17434, - [SMALL_STATE(1950)] = 17510, - [SMALL_STATE(1951)] = 17582, - [SMALL_STATE(1952)] = 17654, - [SMALL_STATE(1953)] = 17728, - [SMALL_STATE(1954)] = 17800, - [SMALL_STATE(1955)] = 17874, - [SMALL_STATE(1956)] = 17946, - [SMALL_STATE(1957)] = 18018, - [SMALL_STATE(1958)] = 18090, - [SMALL_STATE(1959)] = 18234, - [SMALL_STATE(1960)] = 18306, - [SMALL_STATE(1961)] = 18378, - [SMALL_STATE(1962)] = 18450, - [SMALL_STATE(1963)] = 18522, - [SMALL_STATE(1964)] = 18594, - [SMALL_STATE(1965)] = 18666, - [SMALL_STATE(1966)] = 18738, - [SMALL_STATE(1967)] = 18810, - [SMALL_STATE(1968)] = 18882, - [SMALL_STATE(1969)] = 18954, - [SMALL_STATE(1970)] = 19026, - [SMALL_STATE(1971)] = 19102, - [SMALL_STATE(1972)] = 19178, - [SMALL_STATE(1973)] = 19252, - [SMALL_STATE(1974)] = 19324, - [SMALL_STATE(1975)] = 19468, - [SMALL_STATE(1976)] = 19612, - [SMALL_STATE(1977)] = 19756, - [SMALL_STATE(1978)] = 19828, - [SMALL_STATE(1979)] = 19905, - [SMALL_STATE(1980)] = 19976, - [SMALL_STATE(1981)] = 20053, - [SMALL_STATE(1982)] = 20132, - [SMALL_STATE(1983)] = 20209, - [SMALL_STATE(1984)] = 20286, - [SMALL_STATE(1985)] = 20363, - [SMALL_STATE(1986)] = 20440, - [SMALL_STATE(1987)] = 20511, - [SMALL_STATE(1988)] = 20588, - [SMALL_STATE(1989)] = 20665, - [SMALL_STATE(1990)] = 20742, - [SMALL_STATE(1991)] = 20819, - [SMALL_STATE(1992)] = 20898, - [SMALL_STATE(1993)] = 20975, - [SMALL_STATE(1994)] = 21054, - [SMALL_STATE(1995)] = 21125, - [SMALL_STATE(1996)] = 21196, - [SMALL_STATE(1997)] = 21267, - [SMALL_STATE(1998)] = 21342, - [SMALL_STATE(1999)] = 21419, - [SMALL_STATE(2000)] = 21496, - [SMALL_STATE(2001)] = 21573, - [SMALL_STATE(2002)] = 21650, - [SMALL_STATE(2003)] = 21727, - [SMALL_STATE(2004)] = 21798, - [SMALL_STATE(2005)] = 21869, - [SMALL_STATE(2006)] = 21946, - [SMALL_STATE(2007)] = 22023, - [SMALL_STATE(2008)] = 22094, - [SMALL_STATE(2009)] = 22165, - [SMALL_STATE(2010)] = 22236, - [SMALL_STATE(2011)] = 22313, - [SMALL_STATE(2012)] = 22390, - [SMALL_STATE(2013)] = 22467, - [SMALL_STATE(2014)] = 22544, - [SMALL_STATE(2015)] = 22615, - [SMALL_STATE(2016)] = 22692, - [SMALL_STATE(2017)] = 22769, - [SMALL_STATE(2018)] = 22840, - [SMALL_STATE(2019)] = 22911, - [SMALL_STATE(2020)] = 22990, - [SMALL_STATE(2021)] = 23067, - [SMALL_STATE(2022)] = 23144, - [SMALL_STATE(2023)] = 23223, - [SMALL_STATE(2024)] = 23302, - [SMALL_STATE(2025)] = 23381, - [SMALL_STATE(2026)] = 23458, - [SMALL_STATE(2027)] = 23529, - [SMALL_STATE(2028)] = 23600, - [SMALL_STATE(2029)] = 23679, - [SMALL_STATE(2030)] = 23758, - [SMALL_STATE(2031)] = 23835, - [SMALL_STATE(2032)] = 23976, - [SMALL_STATE(2033)] = 24117, - [SMALL_STATE(2034)] = 24194, - [SMALL_STATE(2035)] = 24275, - [SMALL_STATE(2036)] = 24356, - [SMALL_STATE(2037)] = 24433, - [SMALL_STATE(2038)] = 24504, - [SMALL_STATE(2039)] = 24581, - [SMALL_STATE(2040)] = 24660, - [SMALL_STATE(2041)] = 24739, - [SMALL_STATE(2042)] = 24816, - [SMALL_STATE(2043)] = 24895, - [SMALL_STATE(2044)] = 24974, - [SMALL_STATE(2045)] = 25053, - [SMALL_STATE(2046)] = 25130, - [SMALL_STATE(2047)] = 25201, - [SMALL_STATE(2048)] = 25278, - [SMALL_STATE(2049)] = 25357, - [SMALL_STATE(2050)] = 25436, - [SMALL_STATE(2051)] = 25515, - [SMALL_STATE(2052)] = 25594, - [SMALL_STATE(2053)] = 25673, - [SMALL_STATE(2054)] = 25744, - [SMALL_STATE(2055)] = 25823, - [SMALL_STATE(2056)] = 25894, - [SMALL_STATE(2057)] = 25971, - [SMALL_STATE(2058)] = 26048, - [SMALL_STATE(2059)] = 26125, - [SMALL_STATE(2060)] = 26202, - [SMALL_STATE(2061)] = 26281, - [SMALL_STATE(2062)] = 26352, - [SMALL_STATE(2063)] = 26429, - [SMALL_STATE(2064)] = 26500, - [SMALL_STATE(2065)] = 26579, - [SMALL_STATE(2066)] = 26656, - [SMALL_STATE(2067)] = 26733, - [SMALL_STATE(2068)] = 26874, - [SMALL_STATE(2069)] = 26951, - [SMALL_STATE(2070)] = 27022, - [SMALL_STATE(2071)] = 27099, - [SMALL_STATE(2072)] = 27170, - [SMALL_STATE(2073)] = 27241, - [SMALL_STATE(2074)] = 27312, - [SMALL_STATE(2075)] = 27387, - [SMALL_STATE(2076)] = 27464, - [SMALL_STATE(2077)] = 27543, - [SMALL_STATE(2078)] = 27620, - [SMALL_STATE(2079)] = 27697, - [SMALL_STATE(2080)] = 27774, - [SMALL_STATE(2081)] = 27851, - [SMALL_STATE(2082)] = 27992, - [SMALL_STATE(2083)] = 28069, - [SMALL_STATE(2084)] = 28140, - [SMALL_STATE(2085)] = 28217, - [SMALL_STATE(2086)] = 28296, - [SMALL_STATE(2087)] = 28375, - [SMALL_STATE(2088)] = 28452, - [SMALL_STATE(2089)] = 28529, - [SMALL_STATE(2090)] = 28606, - [SMALL_STATE(2091)] = 28685, - [SMALL_STATE(2092)] = 28823, - [SMALL_STATE(2093)] = 28897, - [SMALL_STATE(2094)] = 28971, - [SMALL_STATE(2095)] = 29041, - [SMALL_STATE(2096)] = 29115, - [SMALL_STATE(2097)] = 29189, - [SMALL_STATE(2098)] = 29259, - [SMALL_STATE(2099)] = 29397, - [SMALL_STATE(2100)] = 29535, - [SMALL_STATE(2101)] = 29673, - [SMALL_STATE(2102)] = 29811, - [SMALL_STATE(2103)] = 29881, - [SMALL_STATE(2104)] = 29951, - [SMALL_STATE(2105)] = 30021, - [SMALL_STATE(2106)] = 30091, - [SMALL_STATE(2107)] = 30161, - [SMALL_STATE(2108)] = 30231, - [SMALL_STATE(2109)] = 30305, - [SMALL_STATE(2110)] = 30377, - [SMALL_STATE(2111)] = 30447, - [SMALL_STATE(2112)] = 30519, - [SMALL_STATE(2113)] = 30589, - [SMALL_STATE(2114)] = 30659, - [SMALL_STATE(2115)] = 30737, - [SMALL_STATE(2116)] = 30807, - [SMALL_STATE(2117)] = 30877, - [SMALL_STATE(2118)] = 30947, - [SMALL_STATE(2119)] = 31017, - [SMALL_STATE(2120)] = 31091, - [SMALL_STATE(2121)] = 31161, - [SMALL_STATE(2122)] = 31231, - [SMALL_STATE(2123)] = 31301, - [SMALL_STATE(2124)] = 31439, - [SMALL_STATE(2125)] = 31577, - [SMALL_STATE(2126)] = 31715, - [SMALL_STATE(2127)] = 31785, - [SMALL_STATE(2128)] = 31855, - [SMALL_STATE(2129)] = 31993, - [SMALL_STATE(2130)] = 32131, - [SMALL_STATE(2131)] = 32269, - [SMALL_STATE(2132)] = 32339, - [SMALL_STATE(2133)] = 32409, - [SMALL_STATE(2134)] = 32479, - [SMALL_STATE(2135)] = 32549, - [SMALL_STATE(2136)] = 32619, - [SMALL_STATE(2137)] = 32689, - [SMALL_STATE(2138)] = 32759, - [SMALL_STATE(2139)] = 32829, - [SMALL_STATE(2140)] = 32899, - [SMALL_STATE(2141)] = 32969, - [SMALL_STATE(2142)] = 33039, - [SMALL_STATE(2143)] = 33109, - [SMALL_STATE(2144)] = 33179, - [SMALL_STATE(2145)] = 33249, - [SMALL_STATE(2146)] = 33319, - [SMALL_STATE(2147)] = 33457, - [SMALL_STATE(2148)] = 33595, - [SMALL_STATE(2149)] = 33665, - [SMALL_STATE(2150)] = 33735, - [SMALL_STATE(2151)] = 33805, - [SMALL_STATE(2152)] = 33943, - [SMALL_STATE(2153)] = 34081, - [SMALL_STATE(2154)] = 34151, - [SMALL_STATE(2155)] = 34289, - [SMALL_STATE(2156)] = 34427, - [SMALL_STATE(2157)] = 34565, - [SMALL_STATE(2158)] = 34703, - [SMALL_STATE(2159)] = 34841, - [SMALL_STATE(2160)] = 34979, - [SMALL_STATE(2161)] = 35117, - [SMALL_STATE(2162)] = 35255, - [SMALL_STATE(2163)] = 35393, - [SMALL_STATE(2164)] = 35531, - [SMALL_STATE(2165)] = 35669, - [SMALL_STATE(2166)] = 35739, - [SMALL_STATE(2167)] = 35877, - [SMALL_STATE(2168)] = 36015, - [SMALL_STATE(2169)] = 36153, - [SMALL_STATE(2170)] = 36291, - [SMALL_STATE(2171)] = 36429, - [SMALL_STATE(2172)] = 36499, - [SMALL_STATE(2173)] = 36579, - [SMALL_STATE(2174)] = 36717, - [SMALL_STATE(2175)] = 36787, - [SMALL_STATE(2176)] = 36857, - [SMALL_STATE(2177)] = 36926, - [SMALL_STATE(2178)] = 36997, - [SMALL_STATE(2179)] = 37068, - [SMALL_STATE(2180)] = 37139, - [SMALL_STATE(2181)] = 37238, - [SMALL_STATE(2182)] = 37309, - [SMALL_STATE(2183)] = 37380, - [SMALL_STATE(2184)] = 37451, - [SMALL_STATE(2185)] = 37522, - [SMALL_STATE(2186)] = 37593, - [SMALL_STATE(2187)] = 37664, - [SMALL_STATE(2188)] = 37735, - [SMALL_STATE(2189)] = 37806, - [SMALL_STATE(2190)] = 37877, - [SMALL_STATE(2191)] = 37948, - [SMALL_STATE(2192)] = 38019, - [SMALL_STATE(2193)] = 38090, - [SMALL_STATE(2194)] = 38161, - [SMALL_STATE(2195)] = 38232, - [SMALL_STATE(2196)] = 38303, - [SMALL_STATE(2197)] = 38374, - [SMALL_STATE(2198)] = 38443, - [SMALL_STATE(2199)] = 38514, - [SMALL_STATE(2200)] = 38587, - [SMALL_STATE(2201)] = 38658, - [SMALL_STATE(2202)] = 38757, - [SMALL_STATE(2203)] = 38828, - [SMALL_STATE(2204)] = 38899, - [SMALL_STATE(2205)] = 38970, - [SMALL_STATE(2206)] = 39043, - [SMALL_STATE(2207)] = 39116, - [SMALL_STATE(2208)] = 39189, - [SMALL_STATE(2209)] = 39260, - [SMALL_STATE(2210)] = 39331, - [SMALL_STATE(2211)] = 39402, - [SMALL_STATE(2212)] = 39473, - [SMALL_STATE(2213)] = 39544, - [SMALL_STATE(2214)] = 39615, - [SMALL_STATE(2215)] = 39688, - [SMALL_STATE(2216)] = 39759, - [SMALL_STATE(2217)] = 39832, - [SMALL_STATE(2218)] = 39903, - [SMALL_STATE(2219)] = 39974, - [SMALL_STATE(2220)] = 40045, - [SMALL_STATE(2221)] = 40116, - [SMALL_STATE(2222)] = 40187, - [SMALL_STATE(2223)] = 40258, - [SMALL_STATE(2224)] = 40329, - [SMALL_STATE(2225)] = 40400, - [SMALL_STATE(2226)] = 40471, - [SMALL_STATE(2227)] = 40542, - [SMALL_STATE(2228)] = 40615, - [SMALL_STATE(2229)] = 40688, - [SMALL_STATE(2230)] = 40759, - [SMALL_STATE(2231)] = 40830, - [SMALL_STATE(2232)] = 40899, - [SMALL_STATE(2233)] = 40970, - [SMALL_STATE(2234)] = 41041, - [SMALL_STATE(2235)] = 41112, - [SMALL_STATE(2236)] = 41183, - [SMALL_STATE(2237)] = 41254, - [SMALL_STATE(2238)] = 41325, - [SMALL_STATE(2239)] = 41396, - [SMALL_STATE(2240)] = 41467, - [SMALL_STATE(2241)] = 41538, - [SMALL_STATE(2242)] = 41609, - [SMALL_STATE(2243)] = 41682, - [SMALL_STATE(2244)] = 41753, - [SMALL_STATE(2245)] = 41824, - [SMALL_STATE(2246)] = 41897, - [SMALL_STATE(2247)] = 41968, - [SMALL_STATE(2248)] = 42039, - [SMALL_STATE(2249)] = 42110, - [SMALL_STATE(2250)] = 42181, - [SMALL_STATE(2251)] = 42252, - [SMALL_STATE(2252)] = 42323, - [SMALL_STATE(2253)] = 42396, - [SMALL_STATE(2254)] = 42467, - [SMALL_STATE(2255)] = 42538, - [SMALL_STATE(2256)] = 42609, - [SMALL_STATE(2257)] = 42680, - [SMALL_STATE(2258)] = 42751, - [SMALL_STATE(2259)] = 42824, - [SMALL_STATE(2260)] = 42895, - [SMALL_STATE(2261)] = 42968, - [SMALL_STATE(2262)] = 43039, - [SMALL_STATE(2263)] = 43110, - [SMALL_STATE(2264)] = 43181, - [SMALL_STATE(2265)] = 43254, - [SMALL_STATE(2266)] = 43325, - [SMALL_STATE(2267)] = 43398, - [SMALL_STATE(2268)] = 43469, - [SMALL_STATE(2269)] = 43540, - [SMALL_STATE(2270)] = 43617, - [SMALL_STATE(2271)] = 43688, - [SMALL_STATE(2272)] = 43759, - [SMALL_STATE(2273)] = 43830, - [SMALL_STATE(2274)] = 43901, - [SMALL_STATE(2275)] = 43972, - [SMALL_STATE(2276)] = 44043, - [SMALL_STATE(2277)] = 44114, - [SMALL_STATE(2278)] = 44185, - [SMALL_STATE(2279)] = 44256, - [SMALL_STATE(2280)] = 44327, - [SMALL_STATE(2281)] = 44398, - [SMALL_STATE(2282)] = 44497, - [SMALL_STATE(2283)] = 44568, - [SMALL_STATE(2284)] = 44639, - [SMALL_STATE(2285)] = 44710, - [SMALL_STATE(2286)] = 44781, - [SMALL_STATE(2287)] = 44852, - [SMALL_STATE(2288)] = 44929, - [SMALL_STATE(2289)] = 45000, - [SMALL_STATE(2290)] = 45071, - [SMALL_STATE(2291)] = 45142, - [SMALL_STATE(2292)] = 45213, - [SMALL_STATE(2293)] = 45284, - [SMALL_STATE(2294)] = 45355, - [SMALL_STATE(2295)] = 45428, - [SMALL_STATE(2296)] = 45499, - [SMALL_STATE(2297)] = 45570, - [SMALL_STATE(2298)] = 45641, - [SMALL_STATE(2299)] = 45718, - [SMALL_STATE(2300)] = 45789, - [SMALL_STATE(2301)] = 45888, - [SMALL_STATE(2302)] = 45959, - [SMALL_STATE(2303)] = 46030, - [SMALL_STATE(2304)] = 46099, - [SMALL_STATE(2305)] = 46168, - [SMALL_STATE(2306)] = 46239, - [SMALL_STATE(2307)] = 46310, - [SMALL_STATE(2308)] = 46381, - [SMALL_STATE(2309)] = 46452, - [SMALL_STATE(2310)] = 46525, - [SMALL_STATE(2311)] = 46598, - [SMALL_STATE(2312)] = 46671, - [SMALL_STATE(2313)] = 46758, - [SMALL_STATE(2314)] = 46829, - [SMALL_STATE(2315)] = 46900, - [SMALL_STATE(2316)] = 46971, - [SMALL_STATE(2317)] = 47042, - [SMALL_STATE(2318)] = 47113, - [SMALL_STATE(2319)] = 47186, - [SMALL_STATE(2320)] = 47257, - [SMALL_STATE(2321)] = 47326, - [SMALL_STATE(2322)] = 47397, - [SMALL_STATE(2323)] = 47468, - [SMALL_STATE(2324)] = 47541, - [SMALL_STATE(2325)] = 47615, - [SMALL_STATE(2326)] = 47705, - [SMALL_STATE(2327)] = 47781, - [SMALL_STATE(2328)] = 47869, - [SMALL_STATE(2329)] = 47955, - [SMALL_STATE(2330)] = 48039, - [SMALL_STATE(2331)] = 48141, - [SMALL_STATE(2332)] = 48213, - [SMALL_STATE(2333)] = 48309, - [SMALL_STATE(2334)] = 48405, - [SMALL_STATE(2335)] = 48495, - [SMALL_STATE(2336)] = 48593, - [SMALL_STATE(2337)] = 48693, - [SMALL_STATE(2338)] = 48785, - [SMALL_STATE(2339)] = 48873, - [SMALL_STATE(2340)] = 48955, - [SMALL_STATE(2341)] = 49035, - [SMALL_STATE(2342)] = 49125, - [SMALL_STATE(2343)] = 49219, - [SMALL_STATE(2344)] = 49311, - [SMALL_STATE(2345)] = 49409, - [SMALL_STATE(2346)] = 49503, - [SMALL_STATE(2347)] = 49585, - [SMALL_STATE(2348)] = 49667, - [SMALL_STATE(2349)] = 49757, - [SMALL_STATE(2350)] = 49841, - [SMALL_STATE(2351)] = 49929, - [SMALL_STATE(2352)] = 50005, - [SMALL_STATE(2353)] = 50083, - [SMALL_STATE(2354)] = 50163, - [SMALL_STATE(2355)] = 50237, - [SMALL_STATE(2356)] = 50321, - [SMALL_STATE(2357)] = 50391, - [SMALL_STATE(2358)] = 50485, - [SMALL_STATE(2359)] = 50581, - [SMALL_STATE(2360)] = 50679, - [SMALL_STATE(2361)] = 50765, - [SMALL_STATE(2362)] = 50843, - [SMALL_STATE(2363)] = 50931, - [SMALL_STATE(2364)] = 51021, - [SMALL_STATE(2365)] = 51113, - [SMALL_STATE(2366)] = 51197, - [SMALL_STATE(2367)] = 51293, - [SMALL_STATE(2368)] = 51369, - [SMALL_STATE(2369)] = 51449, - [SMALL_STATE(2370)] = 51541, - [SMALL_STATE(2371)] = 51609, - [SMALL_STATE(2372)] = 51695, - [SMALL_STATE(2373)] = 51777, - [SMALL_STATE(2374)] = 51849, - [SMALL_STATE(2375)] = 51933, - [SMALL_STATE(2376)] = 52017, - [SMALL_STATE(2377)] = 52099, - [SMALL_STATE(2378)] = 52189, - [SMALL_STATE(2379)] = 52277, - [SMALL_STATE(2380)] = 52359, - [SMALL_STATE(2381)] = 52435, - [SMALL_STATE(2382)] = 52527, - [SMALL_STATE(2383)] = 52619, - [SMALL_STATE(2384)] = 52687, - [SMALL_STATE(2385)] = 52787, - [SMALL_STATE(2386)] = 52865, - [SMALL_STATE(2387)] = 52941, - [SMALL_STATE(2388)] = 53033, - [SMALL_STATE(2389)] = 53101, - [SMALL_STATE(2390)] = 53173, - [SMALL_STATE(2391)] = 53257, - [SMALL_STATE(2392)] = 53335, - [SMALL_STATE(2393)] = 53429, - [SMALL_STATE(2394)] = 53523, - [SMALL_STATE(2395)] = 53609, - [SMALL_STATE(2396)] = 53699, - [SMALL_STATE(2397)] = 53793, - [SMALL_STATE(2398)] = 53881, - [SMALL_STATE(2399)] = 53977, - [SMALL_STATE(2400)] = 54073, - [SMALL_STATE(2401)] = 54153, - [SMALL_STATE(2402)] = 54225, - [SMALL_STATE(2403)] = 54321, - [SMALL_STATE(2404)] = 54409, - [SMALL_STATE(2405)] = 54503, - [SMALL_STATE(2406)] = 54589, - [SMALL_STATE(2407)] = 54667, - [SMALL_STATE(2408)] = 54739, - [SMALL_STATE(2409)] = 54827, - [SMALL_STATE(2410)] = 54915, - [SMALL_STATE(2411)] = 54989, - [SMALL_STATE(2412)] = 55063, - [SMALL_STATE(2413)] = 55137, - [SMALL_STATE(2414)] = 55211, - [SMALL_STATE(2415)] = 55309, - [SMALL_STATE(2416)] = 55405, - [SMALL_STATE(2417)] = 55505, - [SMALL_STATE(2418)] = 55607, - [SMALL_STATE(2419)] = 55705, - [SMALL_STATE(2420)] = 55795, - [SMALL_STATE(2421)] = 55893, - [SMALL_STATE(2422)] = 55975, - [SMALL_STATE(2423)] = 56047, - [SMALL_STATE(2424)] = 56145, - [SMALL_STATE(2425)] = 56237, - [SMALL_STATE(2426)] = 56331, - [SMALL_STATE(2427)] = 56431, - [SMALL_STATE(2428)] = 56527, - [SMALL_STATE(2429)] = 56603, - [SMALL_STATE(2430)] = 56699, - [SMALL_STATE(2431)] = 56797, - [SMALL_STATE(2432)] = 56869, - [SMALL_STATE(2433)] = 56963, - [SMALL_STATE(2434)] = 57055, - [SMALL_STATE(2435)] = 57155, - [SMALL_STATE(2436)] = 57253, - [SMALL_STATE(2437)] = 57355, - [SMALL_STATE(2438)] = 57425, - [SMALL_STATE(2439)] = 57513, - [SMALL_STATE(2440)] = 57609, - [SMALL_STATE(2441)] = 57709, - [SMALL_STATE(2442)] = 57805, - [SMALL_STATE(2443)] = 57895, - [SMALL_STATE(2444)] = 57995, - [SMALL_STATE(2445)] = 58091, - [SMALL_STATE(2446)] = 58173, - [SMALL_STATE(2447)] = 58269, - [SMALL_STATE(2448)] = 58365, - [SMALL_STATE(2449)] = 58445, - [SMALL_STATE(2450)] = 58545, - [SMALL_STATE(2451)] = 58619, - [SMALL_STATE(2452)] = 58691, - [SMALL_STATE(2453)] = 58775, - [SMALL_STATE(2454)] = 58847, - [SMALL_STATE(2455)] = 58917, - [SMALL_STATE(2456)] = 59013, - [SMALL_STATE(2457)] = 59083, - [SMALL_STATE(2458)] = 59179, - [SMALL_STATE(2459)] = 59275, - [SMALL_STATE(2460)] = 59371, - [SMALL_STATE(2461)] = 59441, - [SMALL_STATE(2462)] = 59543, - [SMALL_STATE(2463)] = 59619, - [SMALL_STATE(2464)] = 59690, - [SMALL_STATE(2465)] = 59757, - [SMALL_STATE(2466)] = 59824, - [SMALL_STATE(2467)] = 59893, - [SMALL_STATE(2468)] = 59960, - [SMALL_STATE(2469)] = 60027, - [SMALL_STATE(2470)] = 60094, - [SMALL_STATE(2471)] = 60187, - [SMALL_STATE(2472)] = 60254, - [SMALL_STATE(2473)] = 60321, - [SMALL_STATE(2474)] = 60394, - [SMALL_STATE(2475)] = 60461, - [SMALL_STATE(2476)] = 60542, - [SMALL_STATE(2477)] = 60609, - [SMALL_STATE(2478)] = 60690, - [SMALL_STATE(2479)] = 60757, - [SMALL_STATE(2480)] = 60824, - [SMALL_STATE(2481)] = 60905, - [SMALL_STATE(2482)] = 60972, - [SMALL_STATE(2483)] = 61039, - [SMALL_STATE(2484)] = 61106, - [SMALL_STATE(2485)] = 61173, - [SMALL_STATE(2486)] = 61240, - [SMALL_STATE(2487)] = 61307, - [SMALL_STATE(2488)] = 61402, - [SMALL_STATE(2489)] = 61489, - [SMALL_STATE(2490)] = 61570, - [SMALL_STATE(2491)] = 61637, - [SMALL_STATE(2492)] = 61704, - [SMALL_STATE(2493)] = 61771, - [SMALL_STATE(2494)] = 61838, - [SMALL_STATE(2495)] = 61905, - [SMALL_STATE(2496)] = 61974, - [SMALL_STATE(2497)] = 62041, - [SMALL_STATE(2498)] = 62108, - [SMALL_STATE(2499)] = 62175, - [SMALL_STATE(2500)] = 62242, - [SMALL_STATE(2501)] = 62309, - [SMALL_STATE(2502)] = 62406, - [SMALL_STATE(2503)] = 62473, - [SMALL_STATE(2504)] = 62540, - [SMALL_STATE(2505)] = 62625, - [SMALL_STATE(2506)] = 62694, - [SMALL_STATE(2507)] = 62763, - [SMALL_STATE(2508)] = 62830, - [SMALL_STATE(2509)] = 62897, - [SMALL_STATE(2510)] = 62964, - [SMALL_STATE(2511)] = 63031, - [SMALL_STATE(2512)] = 63098, - [SMALL_STATE(2513)] = 63165, - [SMALL_STATE(2514)] = 63232, - [SMALL_STATE(2515)] = 63299, - [SMALL_STATE(2516)] = 63366, - [SMALL_STATE(2517)] = 63451, - [SMALL_STATE(2518)] = 63518, - [SMALL_STATE(2519)] = 63585, - [SMALL_STATE(2520)] = 63652, - [SMALL_STATE(2521)] = 63737, - [SMALL_STATE(2522)] = 63804, - [SMALL_STATE(2523)] = 63875, - [SMALL_STATE(2524)] = 63948, - [SMALL_STATE(2525)] = 64037, - [SMALL_STATE(2526)] = 64104, - [SMALL_STATE(2527)] = 64171, - [SMALL_STATE(2528)] = 64250, - [SMALL_STATE(2529)] = 64317, - [SMALL_STATE(2530)] = 64384, - [SMALL_STATE(2531)] = 64451, - [SMALL_STATE(2532)] = 64518, - [SMALL_STATE(2533)] = 64585, - [SMALL_STATE(2534)] = 64652, - [SMALL_STATE(2535)] = 64719, - [SMALL_STATE(2536)] = 64788, - [SMALL_STATE(2537)] = 64855, - [SMALL_STATE(2538)] = 64936, - [SMALL_STATE(2539)] = 65003, - [SMALL_STATE(2540)] = 65070, - [SMALL_STATE(2541)] = 65139, - [SMALL_STATE(2542)] = 65206, - [SMALL_STATE(2543)] = 65273, - [SMALL_STATE(2544)] = 65340, - [SMALL_STATE(2545)] = 65409, - [SMALL_STATE(2546)] = 65476, - [SMALL_STATE(2547)] = 65543, - [SMALL_STATE(2548)] = 65610, - [SMALL_STATE(2549)] = 65693, - [SMALL_STATE(2550)] = 65778, - [SMALL_STATE(2551)] = 65855, - [SMALL_STATE(2552)] = 65922, - [SMALL_STATE(2553)] = 65989, - [SMALL_STATE(2554)] = 66080, - [SMALL_STATE(2555)] = 66168, - [SMALL_STATE(2556)] = 66258, - [SMALL_STATE(2557)] = 66324, - [SMALL_STATE(2558)] = 66390, - [SMALL_STATE(2559)] = 66460, - [SMALL_STATE(2560)] = 66526, - [SMALL_STATE(2561)] = 66592, - [SMALL_STATE(2562)] = 66674, - [SMALL_STATE(2563)] = 66764, - [SMALL_STATE(2564)] = 66854, - [SMALL_STATE(2565)] = 66936, - [SMALL_STATE(2566)] = 67026, - [SMALL_STATE(2567)] = 67108, - [SMALL_STATE(2568)] = 67198, - [SMALL_STATE(2569)] = 67288, - [SMALL_STATE(2570)] = 67370, - [SMALL_STATE(2571)] = 67460, - [SMALL_STATE(2572)] = 67526, - [SMALL_STATE(2573)] = 67616, - [SMALL_STATE(2574)] = 67682, - [SMALL_STATE(2575)] = 67748, - [SMALL_STATE(2576)] = 67814, - [SMALL_STATE(2577)] = 67904, - [SMALL_STATE(2578)] = 67970, - [SMALL_STATE(2579)] = 68040, - [SMALL_STATE(2580)] = 68116, - [SMALL_STATE(2581)] = 68182, - [SMALL_STATE(2582)] = 68272, - [SMALL_STATE(2583)] = 68346, - [SMALL_STATE(2584)] = 68412, - [SMALL_STATE(2585)] = 68482, - [SMALL_STATE(2586)] = 68548, - [SMALL_STATE(2587)] = 68614, - [SMALL_STATE(2588)] = 68688, - [SMALL_STATE(2589)] = 68754, - [SMALL_STATE(2590)] = 68828, - [SMALL_STATE(2591)] = 68918, - [SMALL_STATE(2592)] = 68984, - [SMALL_STATE(2593)] = 69052, - [SMALL_STATE(2594)] = 69120, - [SMALL_STATE(2595)] = 69190, - [SMALL_STATE(2596)] = 69280, - [SMALL_STATE(2597)] = 69367, - [SMALL_STATE(2598)] = 69454, - [SMALL_STATE(2599)] = 69519, - [SMALL_STATE(2600)] = 69586, - [SMALL_STATE(2601)] = 69673, - [SMALL_STATE(2602)] = 69746, - [SMALL_STATE(2603)] = 69833, - [SMALL_STATE(2604)] = 69920, - [SMALL_STATE(2605)] = 70007, - [SMALL_STATE(2606)] = 70072, - [SMALL_STATE(2607)] = 70139, - [SMALL_STATE(2608)] = 70226, - [SMALL_STATE(2609)] = 70313, - [SMALL_STATE(2610)] = 70384, - [SMALL_STATE(2611)] = 70471, - [SMALL_STATE(2612)] = 70536, - [SMALL_STATE(2613)] = 70601, - [SMALL_STATE(2614)] = 70666, - [SMALL_STATE(2615)] = 70753, - [SMALL_STATE(2616)] = 70818, - [SMALL_STATE(2617)] = 70883, - [SMALL_STATE(2618)] = 70948, - [SMALL_STATE(2619)] = 71013, - [SMALL_STATE(2620)] = 71100, - [SMALL_STATE(2621)] = 71169, - [SMALL_STATE(2622)] = 71234, - [SMALL_STATE(2623)] = 71321, - [SMALL_STATE(2624)] = 71408, - [SMALL_STATE(2625)] = 71495, - [SMALL_STATE(2626)] = 71560, - [SMALL_STATE(2627)] = 71625, - [SMALL_STATE(2628)] = 71712, - [SMALL_STATE(2629)] = 71779, - [SMALL_STATE(2630)] = 71866, - [SMALL_STATE(2631)] = 71931, - [SMALL_STATE(2632)] = 71996, - [SMALL_STATE(2633)] = 72083, - [SMALL_STATE(2634)] = 72148, - [SMALL_STATE(2635)] = 72235, - [SMALL_STATE(2636)] = 72322, - [SMALL_STATE(2637)] = 72387, - [SMALL_STATE(2638)] = 72474, - [SMALL_STATE(2639)] = 72561, - [SMALL_STATE(2640)] = 72648, - [SMALL_STATE(2641)] = 72735, - [SMALL_STATE(2642)] = 72800, - [SMALL_STATE(2643)] = 72865, - [SMALL_STATE(2644)] = 72930, - [SMALL_STATE(2645)] = 72995, - [SMALL_STATE(2646)] = 73082, - [SMALL_STATE(2647)] = 73169, - [SMALL_STATE(2648)] = 73234, - [SMALL_STATE(2649)] = 73299, - [SMALL_STATE(2650)] = 73386, - [SMALL_STATE(2651)] = 73451, - [SMALL_STATE(2652)] = 73538, - [SMALL_STATE(2653)] = 73603, - [SMALL_STATE(2654)] = 73668, - [SMALL_STATE(2655)] = 73735, - [SMALL_STATE(2656)] = 73822, - [SMALL_STATE(2657)] = 73909, - [SMALL_STATE(2658)] = 73996, - [SMALL_STATE(2659)] = 74083, - [SMALL_STATE(2660)] = 74170, - [SMALL_STATE(2661)] = 74243, - [SMALL_STATE(2662)] = 74330, - [SMALL_STATE(2663)] = 74417, - [SMALL_STATE(2664)] = 74504, - [SMALL_STATE(2665)] = 74591, - [SMALL_STATE(2666)] = 74664, - [SMALL_STATE(2667)] = 74751, - [SMALL_STATE(2668)] = 74815, - [SMALL_STATE(2669)] = 74887, - [SMALL_STATE(2670)] = 74951, - [SMALL_STATE(2671)] = 75067, - [SMALL_STATE(2672)] = 75141, - [SMALL_STATE(2673)] = 75213, - [SMALL_STATE(2674)] = 75285, - [SMALL_STATE(2675)] = 75355, - [SMALL_STATE(2676)] = 75425, - [SMALL_STATE(2677)] = 75541, - [SMALL_STATE(2678)] = 75611, - [SMALL_STATE(2679)] = 75679, - [SMALL_STATE(2680)] = 75751, - [SMALL_STATE(2681)] = 75815, - [SMALL_STATE(2682)] = 75887, - [SMALL_STATE(2683)] = 75955, - [SMALL_STATE(2684)] = 76023, - [SMALL_STATE(2685)] = 76087, - [SMALL_STATE(2686)] = 76157, - [SMALL_STATE(2687)] = 76279, - [SMALL_STATE(2688)] = 76401, - [SMALL_STATE(2689)] = 76473, - [SMALL_STATE(2690)] = 76545, - [SMALL_STATE(2691)] = 76609, - [SMALL_STATE(2692)] = 76681, - [SMALL_STATE(2693)] = 76753, - [SMALL_STATE(2694)] = 76825, - [SMALL_STATE(2695)] = 76889, - [SMALL_STATE(2696)] = 76953, - [SMALL_STATE(2697)] = 77025, - [SMALL_STATE(2698)] = 77089, - [SMALL_STATE(2699)] = 77161, - [SMALL_STATE(2700)] = 77225, - [SMALL_STATE(2701)] = 77297, - [SMALL_STATE(2702)] = 77369, - [SMALL_STATE(2703)] = 77433, - [SMALL_STATE(2704)] = 77497, - [SMALL_STATE(2705)] = 77561, - [SMALL_STATE(2706)] = 77625, - [SMALL_STATE(2707)] = 77689, - [SMALL_STATE(2708)] = 77761, - [SMALL_STATE(2709)] = 77833, - [SMALL_STATE(2710)] = 77897, - [SMALL_STATE(2711)] = 77969, - [SMALL_STATE(2712)] = 78041, - [SMALL_STATE(2713)] = 78105, - [SMALL_STATE(2714)] = 78169, - [SMALL_STATE(2715)] = 78241, - [SMALL_STATE(2716)] = 78313, - [SMALL_STATE(2717)] = 78385, - [SMALL_STATE(2718)] = 78449, - [SMALL_STATE(2719)] = 78521, - [SMALL_STATE(2720)] = 78587, - [SMALL_STATE(2721)] = 78651, - [SMALL_STATE(2722)] = 78715, - [SMALL_STATE(2723)] = 78779, - [SMALL_STATE(2724)] = 78845, - [SMALL_STATE(2725)] = 78909, - [SMALL_STATE(2726)] = 78975, - [SMALL_STATE(2727)] = 79093, - [SMALL_STATE(2728)] = 79163, - [SMALL_STATE(2729)] = 79239, - [SMALL_STATE(2730)] = 79303, - [SMALL_STATE(2731)] = 79371, - [SMALL_STATE(2732)] = 79435, - [SMALL_STATE(2733)] = 79507, - [SMALL_STATE(2734)] = 79575, - [SMALL_STATE(2735)] = 79639, - [SMALL_STATE(2736)] = 79711, - [SMALL_STATE(2737)] = 79775, - [SMALL_STATE(2738)] = 79847, - [SMALL_STATE(2739)] = 79911, - [SMALL_STATE(2740)] = 79975, - [SMALL_STATE(2741)] = 80039, - [SMALL_STATE(2742)] = 80103, - [SMALL_STATE(2743)] = 80167, - [SMALL_STATE(2744)] = 80231, - [SMALL_STATE(2745)] = 80295, - [SMALL_STATE(2746)] = 80359, - [SMALL_STATE(2747)] = 80427, - [SMALL_STATE(2748)] = 80545, - [SMALL_STATE(2749)] = 80612, - [SMALL_STATE(2750)] = 80727, - [SMALL_STATE(2751)] = 80798, - [SMALL_STATE(2752)] = 80911, - [SMALL_STATE(2753)] = 80978, - [SMALL_STATE(2754)] = 81043, - [SMALL_STATE(2755)] = 81116, - [SMALL_STATE(2756)] = 81187, - [SMALL_STATE(2757)] = 81250, - [SMALL_STATE(2758)] = 81321, - [SMALL_STATE(2759)] = 81392, - [SMALL_STATE(2760)] = 81505, - [SMALL_STATE(2761)] = 81568, - [SMALL_STATE(2762)] = 81639, - [SMALL_STATE(2763)] = 81702, - [SMALL_STATE(2764)] = 81773, - [SMALL_STATE(2765)] = 81838, - [SMALL_STATE(2766)] = 81903, - [SMALL_STATE(2767)] = 81966, - [SMALL_STATE(2768)] = 82037, - [SMALL_STATE(2769)] = 82108, - [SMALL_STATE(2770)] = 82183, - [SMALL_STATE(2771)] = 82250, - [SMALL_STATE(2772)] = 82313, - [SMALL_STATE(2773)] = 82384, - [SMALL_STATE(2774)] = 82455, - [SMALL_STATE(2775)] = 82526, - [SMALL_STATE(2776)] = 82641, - [SMALL_STATE(2777)] = 82706, - [SMALL_STATE(2778)] = 82771, - [SMALL_STATE(2779)] = 82838, - [SMALL_STATE(2780)] = 82909, - [SMALL_STATE(2781)] = 82972, - [SMALL_STATE(2782)] = 83085, - [SMALL_STATE(2783)] = 83156, - [SMALL_STATE(2784)] = 83227, - [SMALL_STATE(2785)] = 83298, - [SMALL_STATE(2786)] = 83369, - [SMALL_STATE(2787)] = 83432, - [SMALL_STATE(2788)] = 83499, - [SMALL_STATE(2789)] = 83570, - [SMALL_STATE(2790)] = 83633, - [SMALL_STATE(2791)] = 83700, - [SMALL_STATE(2792)] = 83765, - [SMALL_STATE(2793)] = 83834, - [SMALL_STATE(2794)] = 83947, - [SMALL_STATE(2795)] = 84018, - [SMALL_STATE(2796)] = 84089, - [SMALL_STATE(2797)] = 84154, - [SMALL_STATE(2798)] = 84224, - [SMALL_STATE(2799)] = 84294, - [SMALL_STATE(2800)] = 84364, - [SMALL_STATE(2801)] = 84434, - [SMALL_STATE(2802)] = 84504, - [SMALL_STATE(2803)] = 84574, - [SMALL_STATE(2804)] = 84644, - [SMALL_STATE(2805)] = 84714, - [SMALL_STATE(2806)] = 84784, - [SMALL_STATE(2807)] = 84854, - [SMALL_STATE(2808)] = 84924, - [SMALL_STATE(2809)] = 84994, - [SMALL_STATE(2810)] = 85064, - [SMALL_STATE(2811)] = 85134, - [SMALL_STATE(2812)] = 85204, - [SMALL_STATE(2813)] = 85274, - [SMALL_STATE(2814)] = 85342, - [SMALL_STATE(2815)] = 85408, - [SMALL_STATE(2816)] = 85472, - [SMALL_STATE(2817)] = 85540, - [SMALL_STATE(2818)] = 85610, - [SMALL_STATE(2819)] = 85674, - [SMALL_STATE(2820)] = 85736, - [SMALL_STATE(2821)] = 85806, - [SMALL_STATE(2822)] = 85868, - [SMALL_STATE(2823)] = 85936, - [SMALL_STATE(2824)] = 85998, - [SMALL_STATE(2825)] = 86060, - [SMALL_STATE(2826)] = 86126, - [SMALL_STATE(2827)] = 86190, - [SMALL_STATE(2828)] = 86252, - [SMALL_STATE(2829)] = 86316, - [SMALL_STATE(2830)] = 86380, - [SMALL_STATE(2831)] = 86442, - [SMALL_STATE(2832)] = 86504, - [SMALL_STATE(2833)] = 86566, - [SMALL_STATE(2834)] = 86628, - [SMALL_STATE(2835)] = 86690, - [SMALL_STATE(2836)] = 86752, - [SMALL_STATE(2837)] = 86814, - [SMALL_STATE(2838)] = 86876, - [SMALL_STATE(2839)] = 86946, - [SMALL_STATE(2840)] = 87008, - [SMALL_STATE(2841)] = 87070, - [SMALL_STATE(2842)] = 87132, - [SMALL_STATE(2843)] = 87196, - [SMALL_STATE(2844)] = 87260, - [SMALL_STATE(2845)] = 87324, - [SMALL_STATE(2846)] = 87392, - [SMALL_STATE(2847)] = 87458, - [SMALL_STATE(2848)] = 87522, - [SMALL_STATE(2849)] = 87584, - [SMALL_STATE(2850)] = 87646, - [SMALL_STATE(2851)] = 87708, - [SMALL_STATE(2852)] = 87770, - [SMALL_STATE(2853)] = 87838, - [SMALL_STATE(2854)] = 87906, - [SMALL_STATE(2855)] = 87976, - [SMALL_STATE(2856)] = 88044, - [SMALL_STATE(2857)] = 88112, - [SMALL_STATE(2858)] = 88180, - [SMALL_STATE(2859)] = 88248, - [SMALL_STATE(2860)] = 88314, - [SMALL_STATE(2861)] = 88380, - [SMALL_STATE(2862)] = 88446, - [SMALL_STATE(2863)] = 88516, - [SMALL_STATE(2864)] = 88586, - [SMALL_STATE(2865)] = 88654, - [SMALL_STATE(2866)] = 88720, - [SMALL_STATE(2867)] = 88782, - [SMALL_STATE(2868)] = 88852, - [SMALL_STATE(2869)] = 88917, - [SMALL_STATE(2870)] = 88978, - [SMALL_STATE(2871)] = 89039, - [SMALL_STATE(2872)] = 89100, - [SMALL_STATE(2873)] = 89161, - [SMALL_STATE(2874)] = 89222, - [SMALL_STATE(2875)] = 89287, - [SMALL_STATE(2876)] = 89348, - [SMALL_STATE(2877)] = 89409, - [SMALL_STATE(2878)] = 89472, - [SMALL_STATE(2879)] = 89535, - [SMALL_STATE(2880)] = 89596, - [SMALL_STATE(2881)] = 89657, - [SMALL_STATE(2882)] = 89718, - [SMALL_STATE(2883)] = 89779, - [SMALL_STATE(2884)] = 89842, - [SMALL_STATE(2885)] = 89905, - [SMALL_STATE(2886)] = 89966, - [SMALL_STATE(2887)] = 90027, - [SMALL_STATE(2888)] = 90088, - [SMALL_STATE(2889)] = 90149, - [SMALL_STATE(2890)] = 90210, - [SMALL_STATE(2891)] = 90271, - [SMALL_STATE(2892)] = 90334, - [SMALL_STATE(2893)] = 90401, - [SMALL_STATE(2894)] = 90466, - [SMALL_STATE(2895)] = 90531, - [SMALL_STATE(2896)] = 90592, - [SMALL_STATE(2897)] = 90653, - [SMALL_STATE(2898)] = 90718, - [SMALL_STATE(2899)] = 90783, - [SMALL_STATE(2900)] = 90848, - [SMALL_STATE(2901)] = 90909, - [SMALL_STATE(2902)] = 90974, - [SMALL_STATE(2903)] = 91039, - [SMALL_STATE(2904)] = 91100, - [SMALL_STATE(2905)] = 91161, - [SMALL_STATE(2906)] = 91226, - [SMALL_STATE(2907)] = 91291, - [SMALL_STATE(2908)] = 91356, - [SMALL_STATE(2909)] = 91421, - [SMALL_STATE(2910)] = 91486, - [SMALL_STATE(2911)] = 91551, - [SMALL_STATE(2912)] = 91614, - [SMALL_STATE(2913)] = 91679, - [SMALL_STATE(2914)] = 91750, - [SMALL_STATE(2915)] = 91811, - [SMALL_STATE(2916)] = 91880, - [SMALL_STATE(2917)] = 91945, - [SMALL_STATE(2918)] = 92010, - [SMALL_STATE(2919)] = 92071, - [SMALL_STATE(2920)] = 92136, - [SMALL_STATE(2921)] = 92201, - [SMALL_STATE(2922)] = 92264, - [SMALL_STATE(2923)] = 92327, - [SMALL_STATE(2924)] = 92390, - [SMALL_STATE(2925)] = 92453, - [SMALL_STATE(2926)] = 92518, - [SMALL_STATE(2927)] = 92579, - [SMALL_STATE(2928)] = 92644, - [SMALL_STATE(2929)] = 92704, - [SMALL_STATE(2930)] = 92766, - [SMALL_STATE(2931)] = 92840, - [SMALL_STATE(2932)] = 92902, - [SMALL_STATE(2933)] = 92964, - [SMALL_STATE(2934)] = 93026, - [SMALL_STATE(2935)] = 93088, - [SMALL_STATE(2936)] = 93150, - [SMALL_STATE(2937)] = 93210, - [SMALL_STATE(2938)] = 93276, - [SMALL_STATE(2939)] = 93336, - [SMALL_STATE(2940)] = 93396, - [SMALL_STATE(2941)] = 93462, - [SMALL_STATE(2942)] = 93522, - [SMALL_STATE(2943)] = 93582, - [SMALL_STATE(2944)] = 93642, - [SMALL_STATE(2945)] = 93702, - [SMALL_STATE(2946)] = 93762, - [SMALL_STATE(2947)] = 93822, - [SMALL_STATE(2948)] = 93882, - [SMALL_STATE(2949)] = 93942, - [SMALL_STATE(2950)] = 94006, - [SMALL_STATE(2951)] = 94066, - [SMALL_STATE(2952)] = 94126, - [SMALL_STATE(2953)] = 94192, - [SMALL_STATE(2954)] = 94252, - [SMALL_STATE(2955)] = 94318, - [SMALL_STATE(2956)] = 94378, - [SMALL_STATE(2957)] = 94440, - [SMALL_STATE(2958)] = 94502, - [SMALL_STATE(2959)] = 94562, - [SMALL_STATE(2960)] = 94622, - [SMALL_STATE(2961)] = 94682, - [SMALL_STATE(2962)] = 94742, - [SMALL_STATE(2963)] = 94802, - [SMALL_STATE(2964)] = 94862, - [SMALL_STATE(2965)] = 94922, - [SMALL_STATE(2966)] = 94982, - [SMALL_STATE(2967)] = 95042, - [SMALL_STATE(2968)] = 95106, - [SMALL_STATE(2969)] = 95166, - [SMALL_STATE(2970)] = 95226, - [SMALL_STATE(2971)] = 95288, - [SMALL_STATE(2972)] = 95348, - [SMALL_STATE(2973)] = 95408, - [SMALL_STATE(2974)] = 95468, - [SMALL_STATE(2975)] = 95528, - [SMALL_STATE(2976)] = 95588, - [SMALL_STATE(2977)] = 95648, - [SMALL_STATE(2978)] = 95708, - [SMALL_STATE(2979)] = 95768, - [SMALL_STATE(2980)] = 95828, - [SMALL_STATE(2981)] = 95888, - [SMALL_STATE(2982)] = 95948, - [SMALL_STATE(2983)] = 96010, - [SMALL_STATE(2984)] = 96070, - [SMALL_STATE(2985)] = 96132, - [SMALL_STATE(2986)] = 96196, - [SMALL_STATE(2987)] = 96256, - [SMALL_STATE(2988)] = 96320, - [SMALL_STATE(2989)] = 96380, - [SMALL_STATE(2990)] = 96440, - [SMALL_STATE(2991)] = 96502, - [SMALL_STATE(2992)] = 96562, - [SMALL_STATE(2993)] = 96622, - [SMALL_STATE(2994)] = 96688, - [SMALL_STATE(2995)] = 96754, - [SMALL_STATE(2996)] = 96814, - [SMALL_STATE(2997)] = 96880, - [SMALL_STATE(2998)] = 96946, - [SMALL_STATE(2999)] = 97012, - [SMALL_STATE(3000)] = 97078, - [SMALL_STATE(3001)] = 97138, - [SMALL_STATE(3002)] = 97198, - [SMALL_STATE(3003)] = 97258, - [SMALL_STATE(3004)] = 97318, - [SMALL_STATE(3005)] = 97384, - [SMALL_STATE(3006)] = 97444, - [SMALL_STATE(3007)] = 97504, - [SMALL_STATE(3008)] = 97564, - [SMALL_STATE(3009)] = 97630, - [SMALL_STATE(3010)] = 97690, - [SMALL_STATE(3011)] = 97750, - [SMALL_STATE(3012)] = 97810, - [SMALL_STATE(3013)] = 97870, - [SMALL_STATE(3014)] = 97930, - [SMALL_STATE(3015)] = 97990, - [SMALL_STATE(3016)] = 98050, - [SMALL_STATE(3017)] = 98110, - [SMALL_STATE(3018)] = 98171, - [SMALL_STATE(3019)] = 98230, - [SMALL_STATE(3020)] = 98289, - [SMALL_STATE(3021)] = 98348, - [SMALL_STATE(3022)] = 98407, - [SMALL_STATE(3023)] = 98466, - [SMALL_STATE(3024)] = 98525, - [SMALL_STATE(3025)] = 98584, - [SMALL_STATE(3026)] = 98643, - [SMALL_STATE(3027)] = 98702, - [SMALL_STATE(3028)] = 98761, - [SMALL_STATE(3029)] = 98822, - [SMALL_STATE(3030)] = 98881, - [SMALL_STATE(3031)] = 98940, - [SMALL_STATE(3032)] = 98999, - [SMALL_STATE(3033)] = 99060, - [SMALL_STATE(3034)] = 99119, - [SMALL_STATE(3035)] = 99178, - [SMALL_STATE(3036)] = 99237, - [SMALL_STATE(3037)] = 99296, - [SMALL_STATE(3038)] = 99355, - [SMALL_STATE(3039)] = 99414, - [SMALL_STATE(3040)] = 99473, - [SMALL_STATE(3041)] = 99532, - [SMALL_STATE(3042)] = 99591, - [SMALL_STATE(3043)] = 99650, - [SMALL_STATE(3044)] = 99709, - [SMALL_STATE(3045)] = 99768, - [SMALL_STATE(3046)] = 99829, - [SMALL_STATE(3047)] = 99888, - [SMALL_STATE(3048)] = 99947, - [SMALL_STATE(3049)] = 100008, - [SMALL_STATE(3050)] = 100069, - [SMALL_STATE(3051)] = 100128, - [SMALL_STATE(3052)] = 100191, - [SMALL_STATE(3053)] = 100254, - [SMALL_STATE(3054)] = 100315, - [SMALL_STATE(3055)] = 100374, - [SMALL_STATE(3056)] = 100435, - [SMALL_STATE(3057)] = 100496, - [SMALL_STATE(3058)] = 100555, - [SMALL_STATE(3059)] = 100614, - [SMALL_STATE(3060)] = 100675, - [SMALL_STATE(3061)] = 100734, - [SMALL_STATE(3062)] = 100793, - [SMALL_STATE(3063)] = 100854, - [SMALL_STATE(3064)] = 100915, - [SMALL_STATE(3065)] = 100974, - [SMALL_STATE(3066)] = 101033, - [SMALL_STATE(3067)] = 101094, - [SMALL_STATE(3068)] = 101153, - [SMALL_STATE(3069)] = 101212, - [SMALL_STATE(3070)] = 101271, - [SMALL_STATE(3071)] = 101330, - [SMALL_STATE(3072)] = 101389, - [SMALL_STATE(3073)] = 101452, - [SMALL_STATE(3074)] = 101511, - [SMALL_STATE(3075)] = 101570, - [SMALL_STATE(3076)] = 101629, - [SMALL_STATE(3077)] = 101688, - [SMALL_STATE(3078)] = 101747, - [SMALL_STATE(3079)] = 101806, - [SMALL_STATE(3080)] = 101865, - [SMALL_STATE(3081)] = 101924, - [SMALL_STATE(3082)] = 101983, - [SMALL_STATE(3083)] = 102042, - [SMALL_STATE(3084)] = 102101, - [SMALL_STATE(3085)] = 102160, - [SMALL_STATE(3086)] = 102219, - [SMALL_STATE(3087)] = 102278, - [SMALL_STATE(3088)] = 102337, - [SMALL_STATE(3089)] = 102396, - [SMALL_STATE(3090)] = 102455, - [SMALL_STATE(3091)] = 102514, - [SMALL_STATE(3092)] = 102573, - [SMALL_STATE(3093)] = 102632, - [SMALL_STATE(3094)] = 102693, - [SMALL_STATE(3095)] = 102754, - [SMALL_STATE(3096)] = 102815, - [SMALL_STATE(3097)] = 102874, - [SMALL_STATE(3098)] = 102937, - [SMALL_STATE(3099)] = 102996, - [SMALL_STATE(3100)] = 103055, - [SMALL_STATE(3101)] = 103128, - [SMALL_STATE(3102)] = 103186, - [SMALL_STATE(3103)] = 103244, - [SMALL_STATE(3104)] = 103302, - [SMALL_STATE(3105)] = 103360, - [SMALL_STATE(3106)] = 103418, - [SMALL_STATE(3107)] = 103476, - [SMALL_STATE(3108)] = 103534, - [SMALL_STATE(3109)] = 103592, - [SMALL_STATE(3110)] = 103650, - [SMALL_STATE(3111)] = 103708, - [SMALL_STATE(3112)] = 103766, - [SMALL_STATE(3113)] = 103824, - [SMALL_STATE(3114)] = 103882, - [SMALL_STATE(3115)] = 103940, - [SMALL_STATE(3116)] = 103998, - [SMALL_STATE(3117)] = 104056, - [SMALL_STATE(3118)] = 104114, - [SMALL_STATE(3119)] = 104172, - [SMALL_STATE(3120)] = 104230, - [SMALL_STATE(3121)] = 104288, - [SMALL_STATE(3122)] = 104346, - [SMALL_STATE(3123)] = 104404, - [SMALL_STATE(3124)] = 104462, - [SMALL_STATE(3125)] = 104520, - [SMALL_STATE(3126)] = 104578, - [SMALL_STATE(3127)] = 104636, - [SMALL_STATE(3128)] = 104694, - [SMALL_STATE(3129)] = 104752, - [SMALL_STATE(3130)] = 104810, - [SMALL_STATE(3131)] = 104868, - [SMALL_STATE(3132)] = 104926, - [SMALL_STATE(3133)] = 104984, - [SMALL_STATE(3134)] = 105042, - [SMALL_STATE(3135)] = 105100, - [SMALL_STATE(3136)] = 105158, - [SMALL_STATE(3137)] = 105216, - [SMALL_STATE(3138)] = 105274, - [SMALL_STATE(3139)] = 105334, - [SMALL_STATE(3140)] = 105392, - [SMALL_STATE(3141)] = 105450, - [SMALL_STATE(3142)] = 105508, - [SMALL_STATE(3143)] = 105566, - [SMALL_STATE(3144)] = 105624, - [SMALL_STATE(3145)] = 105682, - [SMALL_STATE(3146)] = 105740, - [SMALL_STATE(3147)] = 105798, - [SMALL_STATE(3148)] = 105856, - [SMALL_STATE(3149)] = 105914, - [SMALL_STATE(3150)] = 105972, - [SMALL_STATE(3151)] = 106030, - [SMALL_STATE(3152)] = 106088, - [SMALL_STATE(3153)] = 106146, - [SMALL_STATE(3154)] = 106204, - [SMALL_STATE(3155)] = 106262, - [SMALL_STATE(3156)] = 106320, - [SMALL_STATE(3157)] = 106378, - [SMALL_STATE(3158)] = 106436, - [SMALL_STATE(3159)] = 106494, - [SMALL_STATE(3160)] = 106552, - [SMALL_STATE(3161)] = 106610, - [SMALL_STATE(3162)] = 106668, - [SMALL_STATE(3163)] = 106726, - [SMALL_STATE(3164)] = 106784, - [SMALL_STATE(3165)] = 106842, - [SMALL_STATE(3166)] = 106900, - [SMALL_STATE(3167)] = 106958, - [SMALL_STATE(3168)] = 107016, - [SMALL_STATE(3169)] = 107074, - [SMALL_STATE(3170)] = 107139, - [SMALL_STATE(3171)] = 107196, - [SMALL_STATE(3172)] = 107272, - [SMALL_STATE(3173)] = 107348, - [SMALL_STATE(3174)] = 107424, - [SMALL_STATE(3175)] = 107490, - [SMALL_STATE(3176)] = 107554, - [SMALL_STATE(3177)] = 107630, - [SMALL_STATE(3178)] = 107706, - [SMALL_STATE(3179)] = 107782, - [SMALL_STATE(3180)] = 107858, - [SMALL_STATE(3181)] = 107934, - [SMALL_STATE(3182)] = 108010, - [SMALL_STATE(3183)] = 108086, - [SMALL_STATE(3184)] = 108162, - [SMALL_STATE(3185)] = 108238, - [SMALL_STATE(3186)] = 108314, - [SMALL_STATE(3187)] = 108390, - [SMALL_STATE(3188)] = 108466, - [SMALL_STATE(3189)] = 108542, - [SMALL_STATE(3190)] = 108607, - [SMALL_STATE(3191)] = 108661, - [SMALL_STATE(3192)] = 108715, - [SMALL_STATE(3193)] = 108773, - [SMALL_STATE(3194)] = 108831, - [SMALL_STATE(3195)] = 108889, - [SMALL_STATE(3196)] = 108943, - [SMALL_STATE(3197)] = 109013, - [SMALL_STATE(3198)] = 109067, - [SMALL_STATE(3199)] = 109125, - [SMALL_STATE(3200)] = 109182, - [SMALL_STATE(3201)] = 109237, - [SMALL_STATE(3202)] = 109294, - [SMALL_STATE(3203)] = 109351, - [SMALL_STATE(3204)] = 109408, - [SMALL_STATE(3205)] = 109465, - [SMALL_STATE(3206)] = 109522, - [SMALL_STATE(3207)] = 109589, - [SMALL_STATE(3208)] = 109642, - [SMALL_STATE(3209)] = 109711, - [SMALL_STATE(3210)] = 109793, - [SMALL_STATE(3211)] = 109849, - [SMALL_STATE(3212)] = 109927, - [SMALL_STATE(3213)] = 110007, - [SMALL_STATE(3214)] = 110089, - [SMALL_STATE(3215)] = 110159, - [SMALL_STATE(3216)] = 110223, - [SMALL_STATE(3217)] = 110295, - [SMALL_STATE(3218)] = 110369, - [SMALL_STATE(3219)] = 110445, - [SMALL_STATE(3220)] = 110511, - [SMALL_STATE(3221)] = 110579, - [SMALL_STATE(3222)] = 110639, - [SMALL_STATE(3223)] = 110701, - [SMALL_STATE(3224)] = 110769, - [SMALL_STATE(3225)] = 110839, - [SMALL_STATE(3226)] = 110895, - [SMALL_STATE(3227)] = 110953, - [SMALL_STATE(3228)] = 111031, - [SMALL_STATE(3229)] = 111111, - [SMALL_STATE(3230)] = 111191, - [SMALL_STATE(3231)] = 111273, - [SMALL_STATE(3232)] = 111355, - [SMALL_STATE(3233)] = 111439, - [SMALL_STATE(3234)] = 111509, - [SMALL_STATE(3235)] = 111581, - [SMALL_STATE(3236)] = 111645, - [SMALL_STATE(3237)] = 111711, - [SMALL_STATE(3238)] = 111783, - [SMALL_STATE(3239)] = 111857, - [SMALL_STATE(3240)] = 111931, - [SMALL_STATE(3241)] = 112007, - [SMALL_STATE(3242)] = 112083, - [SMALL_STATE(3243)] = 112161, - [SMALL_STATE(3244)] = 112223, - [SMALL_STATE(3245)] = 112289, - [SMALL_STATE(3246)] = 112349, - [SMALL_STATE(3247)] = 112417, - [SMALL_STATE(3248)] = 112473, - [SMALL_STATE(3249)] = 112551, - [SMALL_STATE(3250)] = 112631, - [SMALL_STATE(3251)] = 112713, - [SMALL_STATE(3252)] = 112783, - [SMALL_STATE(3253)] = 112847, - [SMALL_STATE(3254)] = 112919, - [SMALL_STATE(3255)] = 112993, - [SMALL_STATE(3256)] = 113069, - [SMALL_STATE(3257)] = 113141, - [SMALL_STATE(3258)] = 113195, - [SMALL_STATE(3259)] = 113265, - [SMALL_STATE(3260)] = 113329, - [SMALL_STATE(3261)] = 113387, - [SMALL_STATE(3262)] = 113453, - [SMALL_STATE(3263)] = 113507, - [SMALL_STATE(3264)] = 113583, - [SMALL_STATE(3265)] = 113661, - [SMALL_STATE(3266)] = 113741, - [SMALL_STATE(3267)] = 113809, - [SMALL_STATE(3268)] = 113871, - [SMALL_STATE(3269)] = 113941, - [SMALL_STATE(3270)] = 114013, - [SMALL_STATE(3271)] = 114087, - [SMALL_STATE(3272)] = 114151, - [SMALL_STATE(3273)] = 114209, - [SMALL_STATE(3274)] = 114293, - [SMALL_STATE(3275)] = 114357, - [SMALL_STATE(3276)] = 114439, - [SMALL_STATE(3277)] = 114523, - [SMALL_STATE(3278)] = 114595, - [SMALL_STATE(3279)] = 114649, - [SMALL_STATE(3280)] = 114715, - [SMALL_STATE(3281)] = 114781, - [SMALL_STATE(3282)] = 114855, - [SMALL_STATE(3283)] = 114931, - [SMALL_STATE(3284)] = 115005, - [SMALL_STATE(3285)] = 115083, - [SMALL_STATE(3286)] = 115149, - [SMALL_STATE(3287)] = 115215, - [SMALL_STATE(3288)] = 115291, - [SMALL_STATE(3289)] = 115355, - [SMALL_STATE(3290)] = 115419, - [SMALL_STATE(3291)] = 115485, - [SMALL_STATE(3292)] = 115553, - [SMALL_STATE(3293)] = 115603, - [SMALL_STATE(3294)] = 115653, - [SMALL_STATE(3295)] = 115721, - [SMALL_STATE(3296)] = 115781, - [SMALL_STATE(3297)] = 115843, - [SMALL_STATE(3298)] = 115911, - [SMALL_STATE(3299)] = 115961, - [SMALL_STATE(3300)] = 116011, - [SMALL_STATE(3301)] = 116081, - [SMALL_STATE(3302)] = 116159, - [SMALL_STATE(3303)] = 116227, - [SMALL_STATE(3304)] = 116283, - [SMALL_STATE(3305)] = 116341, - [SMALL_STATE(3306)] = 116419, - [SMALL_STATE(3307)] = 116499, - [SMALL_STATE(3308)] = 116565, - [SMALL_STATE(3309)] = 116645, - [SMALL_STATE(3310)] = 116727, - [SMALL_STATE(3311)] = 116809, - [SMALL_STATE(3312)] = 116893, - [SMALL_STATE(3313)] = 116963, - [SMALL_STATE(3314)] = 117035, - [SMALL_STATE(3315)] = 117085, - [SMALL_STATE(3316)] = 117135, - [SMALL_STATE(3317)] = 117199, - [SMALL_STATE(3318)] = 117265, - [SMALL_STATE(3319)] = 117329, - [SMALL_STATE(3320)] = 117401, - [SMALL_STATE(3321)] = 117475, - [SMALL_STATE(3322)] = 117549, - [SMALL_STATE(3323)] = 117625, - [SMALL_STATE(3324)] = 117701, - [SMALL_STATE(3325)] = 117779, - [SMALL_STATE(3326)] = 117847, - [SMALL_STATE(3327)] = 117909, - [SMALL_STATE(3328)] = 117979, - [SMALL_STATE(3329)] = 118045, - [SMALL_STATE(3330)] = 118099, - [SMALL_STATE(3331)] = 118157, - [SMALL_STATE(3332)] = 118211, - [SMALL_STATE(3333)] = 118271, - [SMALL_STATE(3334)] = 118337, - [SMALL_STATE(3335)] = 118417, - [SMALL_STATE(3336)] = 118485, - [SMALL_STATE(3337)] = 118565, - [SMALL_STATE(3338)] = 118626, - [SMALL_STATE(3339)] = 118687, - [SMALL_STATE(3340)] = 118738, - [SMALL_STATE(3341)] = 118793, - [SMALL_STATE(3342)] = 118848, - [SMALL_STATE(3343)] = 118899, - [SMALL_STATE(3344)] = 118960, - [SMALL_STATE(3345)] = 119019, - [SMALL_STATE(3346)] = 119070, - [SMALL_STATE(3347)] = 119135, - [SMALL_STATE(3348)] = 119200, - [SMALL_STATE(3349)] = 119265, - [SMALL_STATE(3350)] = 119326, - [SMALL_STATE(3351)] = 119377, - [SMALL_STATE(3352)] = 119428, - [SMALL_STATE(3353)] = 119479, - [SMALL_STATE(3354)] = 119530, - [SMALL_STATE(3355)] = 119581, - [SMALL_STATE(3356)] = 119632, - [SMALL_STATE(3357)] = 119683, - [SMALL_STATE(3358)] = 119744, - [SMALL_STATE(3359)] = 119809, - [SMALL_STATE(3360)] = 119870, - [SMALL_STATE(3361)] = 119923, - [SMALL_STATE(3362)] = 119974, - [SMALL_STATE(3363)] = 120035, - [SMALL_STATE(3364)] = 120098, - [SMALL_STATE(3365)] = 120155, - [SMALL_STATE(3366)] = 120220, - [SMALL_STATE(3367)] = 120273, - [SMALL_STATE(3368)] = 120348, - [SMALL_STATE(3369)] = 120425, - [SMALL_STATE(3370)] = 120504, - [SMALL_STATE(3371)] = 120571, - [SMALL_STATE(3372)] = 120632, - [SMALL_STATE(3373)] = 120701, - [SMALL_STATE(3374)] = 120772, - [SMALL_STATE(3375)] = 120845, - [SMALL_STATE(3376)] = 120906, - [SMALL_STATE(3377)] = 120957, - [SMALL_STATE(3378)] = 121018, - [SMALL_STATE(3379)] = 121077, - [SMALL_STATE(3380)] = 121138, - [SMALL_STATE(3381)] = 121204, - [SMALL_STATE(3382)] = 121258, - [SMALL_STATE(3383)] = 121310, - [SMALL_STATE(3384)] = 121396, - [SMALL_STATE(3385)] = 121450, - [SMALL_STATE(3386)] = 121508, - [SMALL_STATE(3387)] = 121562, - [SMALL_STATE(3388)] = 121614, - [SMALL_STATE(3389)] = 121668, - [SMALL_STATE(3390)] = 121726, - [SMALL_STATE(3391)] = 121784, - [SMALL_STATE(3392)] = 121838, - [SMALL_STATE(3393)] = 121894, - [SMALL_STATE(3394)] = 121948, - [SMALL_STATE(3395)] = 122034, - [SMALL_STATE(3396)] = 122089, - [SMALL_STATE(3397)] = 122140, - [SMALL_STATE(3398)] = 122189, - [SMALL_STATE(3399)] = 122240, - [SMALL_STATE(3400)] = 122295, - [SMALL_STATE(3401)] = 122350, - [SMALL_STATE(3402)] = 122433, - [SMALL_STATE(3403)] = 122482, - [SMALL_STATE(3404)] = 122545, - [SMALL_STATE(3405)] = 122604, - [SMALL_STATE(3406)] = 122667, - [SMALL_STATE(3407)] = 122732, - [SMALL_STATE(3408)] = 122787, - [SMALL_STATE(3409)] = 122850, - [SMALL_STATE(3410)] = 122899, - [SMALL_STATE(3411)] = 122962, - [SMALL_STATE(3412)] = 123013, - [SMALL_STATE(3413)] = 123096, - [SMALL_STATE(3414)] = 123153, - [SMALL_STATE(3415)] = 123208, - [SMALL_STATE(3416)] = 123261, - [SMALL_STATE(3417)] = 123310, - [SMALL_STATE(3418)] = 123361, - [SMALL_STATE(3419)] = 123414, - [SMALL_STATE(3420)] = 123467, - [SMALL_STATE(3421)] = 123516, - [SMALL_STATE(3422)] = 123568, - [SMALL_STATE(3423)] = 123622, - [SMALL_STATE(3424)] = 123670, - [SMALL_STATE(3425)] = 123718, - [SMALL_STATE(3426)] = 123766, - [SMALL_STATE(3427)] = 123814, - [SMALL_STATE(3428)] = 123864, - [SMALL_STATE(3429)] = 123912, - [SMALL_STATE(3430)] = 123962, - [SMALL_STATE(3431)] = 124010, - [SMALL_STATE(3432)] = 124058, - [SMALL_STATE(3433)] = 124106, - [SMALL_STATE(3434)] = 124162, - [SMALL_STATE(3435)] = 124210, - [SMALL_STATE(3436)] = 124258, - [SMALL_STATE(3437)] = 124314, - [SMALL_STATE(3438)] = 124362, - [SMALL_STATE(3439)] = 124410, - [SMALL_STATE(3440)] = 124462, - [SMALL_STATE(3441)] = 124510, - [SMALL_STATE(3442)] = 124566, - [SMALL_STATE(3443)] = 124618, - [SMALL_STATE(3444)] = 124680, - [SMALL_STATE(3445)] = 124728, - [SMALL_STATE(3446)] = 124776, - [SMALL_STATE(3447)] = 124828, - [SMALL_STATE(3448)] = 124880, - [SMALL_STATE(3449)] = 124928, - [SMALL_STATE(3450)] = 124976, - [SMALL_STATE(3451)] = 125032, - [SMALL_STATE(3452)] = 125094, - [SMALL_STATE(3453)] = 125142, - [SMALL_STATE(3454)] = 125190, - [SMALL_STATE(3455)] = 125238, - [SMALL_STATE(3456)] = 125286, - [SMALL_STATE(3457)] = 125334, - [SMALL_STATE(3458)] = 125396, - [SMALL_STATE(3459)] = 125444, - [SMALL_STATE(3460)] = 125492, - [SMALL_STATE(3461)] = 125539, - [SMALL_STATE(3462)] = 125594, - [SMALL_STATE(3463)] = 125641, - [SMALL_STATE(3464)] = 125688, - [SMALL_STATE(3465)] = 125743, - [SMALL_STATE(3466)] = 125796, - [SMALL_STATE(3467)] = 125843, - [SMALL_STATE(3468)] = 125898, - [SMALL_STATE(3469)] = 125953, - [SMALL_STATE(3470)] = 126008, - [SMALL_STATE(3471)] = 126059, - [SMALL_STATE(3472)] = 126108, - [SMALL_STATE(3473)] = 126155, - [SMALL_STATE(3474)] = 126210, - [SMALL_STATE(3475)] = 126265, - [SMALL_STATE(3476)] = 126320, - [SMALL_STATE(3477)] = 126367, - [SMALL_STATE(3478)] = 126422, - [SMALL_STATE(3479)] = 126477, - [SMALL_STATE(3480)] = 126526, - [SMALL_STATE(3481)] = 126581, - [SMALL_STATE(3482)] = 126636, - [SMALL_STATE(3483)] = 126683, - [SMALL_STATE(3484)] = 126734, - [SMALL_STATE(3485)] = 126785, - [SMALL_STATE(3486)] = 126840, - [SMALL_STATE(3487)] = 126895, - [SMALL_STATE(3488)] = 126950, - [SMALL_STATE(3489)] = 127005, - [SMALL_STATE(3490)] = 127060, - [SMALL_STATE(3491)] = 127115, - [SMALL_STATE(3492)] = 127170, - [SMALL_STATE(3493)] = 127225, - [SMALL_STATE(3494)] = 127280, - [SMALL_STATE(3495)] = 127335, - [SMALL_STATE(3496)] = 127390, - [SMALL_STATE(3497)] = 127445, - [SMALL_STATE(3498)] = 127495, - [SMALL_STATE(3499)] = 127541, - [SMALL_STATE(3500)] = 127587, - [SMALL_STATE(3501)] = 127633, - [SMALL_STATE(3502)] = 127679, - [SMALL_STATE(3503)] = 127725, - [SMALL_STATE(3504)] = 127771, - [SMALL_STATE(3505)] = 127823, - [SMALL_STATE(3506)] = 127869, - [SMALL_STATE(3507)] = 127915, - [SMALL_STATE(3508)] = 127965, - [SMALL_STATE(3509)] = 128011, - [SMALL_STATE(3510)] = 128057, - [SMALL_STATE(3511)] = 128103, - [SMALL_STATE(3512)] = 128149, - [SMALL_STATE(3513)] = 128197, - [SMALL_STATE(3514)] = 128243, - [SMALL_STATE(3515)] = 128291, - [SMALL_STATE(3516)] = 128337, - [SMALL_STATE(3517)] = 128387, - [SMALL_STATE(3518)] = 128439, - [SMALL_STATE(3519)] = 128485, - [SMALL_STATE(3520)] = 128531, - [SMALL_STATE(3521)] = 128577, - [SMALL_STATE(3522)] = 128623, - [SMALL_STATE(3523)] = 128673, - [SMALL_STATE(3524)] = 128725, - [SMALL_STATE(3525)] = 128771, - [SMALL_STATE(3526)] = 128819, - [SMALL_STATE(3527)] = 128865, - [SMALL_STATE(3528)] = 128911, - [SMALL_STATE(3529)] = 128957, - [SMALL_STATE(3530)] = 129007, - [SMALL_STATE(3531)] = 129053, - [SMALL_STATE(3532)] = 129099, - [SMALL_STATE(3533)] = 129145, - [SMALL_STATE(3534)] = 129191, - [SMALL_STATE(3535)] = 129237, - [SMALL_STATE(3536)] = 129285, - [SMALL_STATE(3537)] = 129331, - [SMALL_STATE(3538)] = 129385, - [SMALL_STATE(3539)] = 129435, - [SMALL_STATE(3540)] = 129481, - [SMALL_STATE(3541)] = 129527, - [SMALL_STATE(3542)] = 129573, - [SMALL_STATE(3543)] = 129619, - [SMALL_STATE(3544)] = 129665, - [SMALL_STATE(3545)] = 129711, - [SMALL_STATE(3546)] = 129755, - [SMALL_STATE(3547)] = 129801, - [SMALL_STATE(3548)] = 129847, - [SMALL_STATE(3549)] = 129893, - [SMALL_STATE(3550)] = 129947, - [SMALL_STATE(3551)] = 129993, - [SMALL_STATE(3552)] = 130040, - [SMALL_STATE(3553)] = 130093, - [SMALL_STATE(3554)] = 130142, - [SMALL_STATE(3555)] = 130187, - [SMALL_STATE(3556)] = 130236, - [SMALL_STATE(3557)] = 130285, - [SMALL_STATE(3558)] = 130334, - [SMALL_STATE(3559)] = 130379, - [SMALL_STATE(3560)] = 130432, - [SMALL_STATE(3561)] = 130485, - [SMALL_STATE(3562)] = 130530, - [SMALL_STATE(3563)] = 130583, - [SMALL_STATE(3564)] = 130636, - [SMALL_STATE(3565)] = 130689, - [SMALL_STATE(3566)] = 130734, - [SMALL_STATE(3567)] = 130787, - [SMALL_STATE(3568)] = 130832, - [SMALL_STATE(3569)] = 130881, - [SMALL_STATE(3570)] = 130934, - [SMALL_STATE(3571)] = 130987, - [SMALL_STATE(3572)] = 131040, - [SMALL_STATE(3573)] = 131093, - [SMALL_STATE(3574)] = 131138, - [SMALL_STATE(3575)] = 131183, - [SMALL_STATE(3576)] = 131236, - [SMALL_STATE(3577)] = 131289, - [SMALL_STATE(3578)] = 131342, - [SMALL_STATE(3579)] = 131395, - [SMALL_STATE(3580)] = 131440, - [SMALL_STATE(3581)] = 131493, - [SMALL_STATE(3582)] = 131546, - [SMALL_STATE(3583)] = 131599, - [SMALL_STATE(3584)] = 131652, - [SMALL_STATE(3585)] = 131705, - [SMALL_STATE(3586)] = 131750, - [SMALL_STATE(3587)] = 131803, - [SMALL_STATE(3588)] = 131856, - [SMALL_STATE(3589)] = 131901, - [SMALL_STATE(3590)] = 131948, - [SMALL_STATE(3591)] = 131993, - [SMALL_STATE(3592)] = 132040, - [SMALL_STATE(3593)] = 132093, - [SMALL_STATE(3594)] = 132140, - [SMALL_STATE(3595)] = 132193, - [SMALL_STATE(3596)] = 132242, - [SMALL_STATE(3597)] = 132295, - [SMALL_STATE(3598)] = 132340, - [SMALL_STATE(3599)] = 132389, - [SMALL_STATE(3600)] = 132434, - [SMALL_STATE(3601)] = 132479, - [SMALL_STATE(3602)] = 132532, - [SMALL_STATE(3603)] = 132585, - [SMALL_STATE(3604)] = 132630, - [SMALL_STATE(3605)] = 132675, - [SMALL_STATE(3606)] = 132720, - [SMALL_STATE(3607)] = 132766, - [SMALL_STATE(3608)] = 132818, - [SMALL_STATE(3609)] = 132862, - [SMALL_STATE(3610)] = 132908, - [SMALL_STATE(3611)] = 132952, - [SMALL_STATE(3612)] = 132998, - [SMALL_STATE(3613)] = 133042, - [SMALL_STATE(3614)] = 133090, - [SMALL_STATE(3615)] = 133138, - [SMALL_STATE(3616)] = 133182, - [SMALL_STATE(3617)] = 133228, - [SMALL_STATE(3618)] = 133274, - [SMALL_STATE(3619)] = 133318, - [SMALL_STATE(3620)] = 133364, - [SMALL_STATE(3621)] = 133412, - [SMALL_STATE(3622)] = 133456, - [SMALL_STATE(3623)] = 133500, - [SMALL_STATE(3624)] = 133544, - [SMALL_STATE(3625)] = 133588, - [SMALL_STATE(3626)] = 133640, - [SMALL_STATE(3627)] = 133684, - [SMALL_STATE(3628)] = 133728, - [SMALL_STATE(3629)] = 133774, - [SMALL_STATE(3630)] = 133818, - [SMALL_STATE(3631)] = 133862, - [SMALL_STATE(3632)] = 133906, - [SMALL_STATE(3633)] = 133950, - [SMALL_STATE(3634)] = 133994, - [SMALL_STATE(3635)] = 134040, - [SMALL_STATE(3636)] = 134086, - [SMALL_STATE(3637)] = 134134, - [SMALL_STATE(3638)] = 134182, - [SMALL_STATE(3639)] = 134228, - [SMALL_STATE(3640)] = 134271, - [SMALL_STATE(3641)] = 134318, - [SMALL_STATE(3642)] = 134407, - [SMALL_STATE(3643)] = 134454, - [SMALL_STATE(3644)] = 134501, - [SMALL_STATE(3645)] = 134544, - [SMALL_STATE(3646)] = 134591, - [SMALL_STATE(3647)] = 134638, - [SMALL_STATE(3648)] = 134681, - [SMALL_STATE(3649)] = 134724, - [SMALL_STATE(3650)] = 134771, - [SMALL_STATE(3651)] = 134818, - [SMALL_STATE(3652)] = 134861, - [SMALL_STATE(3653)] = 134904, - [SMALL_STATE(3654)] = 134947, - [SMALL_STATE(3655)] = 134990, - [SMALL_STATE(3656)] = 135033, - [SMALL_STATE(3657)] = 135076, - [SMALL_STATE(3658)] = 135119, - [SMALL_STATE(3659)] = 135162, - [SMALL_STATE(3660)] = 135205, - [SMALL_STATE(3661)] = 135248, - [SMALL_STATE(3662)] = 135293, - [SMALL_STATE(3663)] = 135336, - [SMALL_STATE(3664)] = 135379, - [SMALL_STATE(3665)] = 135422, - [SMALL_STATE(3666)] = 135465, - [SMALL_STATE(3667)] = 135508, - [SMALL_STATE(3668)] = 135551, - [SMALL_STATE(3669)] = 135594, - [SMALL_STATE(3670)] = 135637, - [SMALL_STATE(3671)] = 135680, - [SMALL_STATE(3672)] = 135723, - [SMALL_STATE(3673)] = 135766, - [SMALL_STATE(3674)] = 135809, - [SMALL_STATE(3675)] = 135858, - [SMALL_STATE(3676)] = 135901, - [SMALL_STATE(3677)] = 135944, - [SMALL_STATE(3678)] = 135987, - [SMALL_STATE(3679)] = 136030, - [SMALL_STATE(3680)] = 136073, - [SMALL_STATE(3681)] = 136116, - [SMALL_STATE(3682)] = 136167, - [SMALL_STATE(3683)] = 136210, - [SMALL_STATE(3684)] = 136253, - [SMALL_STATE(3685)] = 136296, - [SMALL_STATE(3686)] = 136339, - [SMALL_STATE(3687)] = 136386, - [SMALL_STATE(3688)] = 136429, - [SMALL_STATE(3689)] = 136472, - [SMALL_STATE(3690)] = 136515, - [SMALL_STATE(3691)] = 136558, - [SMALL_STATE(3692)] = 136603, - [SMALL_STATE(3693)] = 136646, - [SMALL_STATE(3694)] = 136693, - [SMALL_STATE(3695)] = 136736, - [SMALL_STATE(3696)] = 136783, - [SMALL_STATE(3697)] = 136830, - [SMALL_STATE(3698)] = 136877, - [SMALL_STATE(3699)] = 136924, - [SMALL_STATE(3700)] = 136971, - [SMALL_STATE(3701)] = 137014, - [SMALL_STATE(3702)] = 137057, - [SMALL_STATE(3703)] = 137104, - [SMALL_STATE(3704)] = 137151, - [SMALL_STATE(3705)] = 137198, - [SMALL_STATE(3706)] = 137245, - [SMALL_STATE(3707)] = 137292, - [SMALL_STATE(3708)] = 137335, - [SMALL_STATE(3709)] = 137378, - [SMALL_STATE(3710)] = 137425, - [SMALL_STATE(3711)] = 137472, - [SMALL_STATE(3712)] = 137515, - [SMALL_STATE(3713)] = 137562, - [SMALL_STATE(3714)] = 137609, - [SMALL_STATE(3715)] = 137656, - [SMALL_STATE(3716)] = 137699, - [SMALL_STATE(3717)] = 137742, - [SMALL_STATE(3718)] = 137791, - [SMALL_STATE(3719)] = 137838, - [SMALL_STATE(3720)] = 137885, - [SMALL_STATE(3721)] = 137974, - [SMALL_STATE(3722)] = 138021, - [SMALL_STATE(3723)] = 138064, - [SMALL_STATE(3724)] = 138111, - [SMALL_STATE(3725)] = 138154, - [SMALL_STATE(3726)] = 138197, - [SMALL_STATE(3727)] = 138240, - [SMALL_STATE(3728)] = 138283, - [SMALL_STATE(3729)] = 138326, - [SMALL_STATE(3730)] = 138373, - [SMALL_STATE(3731)] = 138441, - [SMALL_STATE(3732)] = 138489, - [SMALL_STATE(3733)] = 138559, - [SMALL_STATE(3734)] = 138605, - [SMALL_STATE(3735)] = 138649, - [SMALL_STATE(3736)] = 138721, - [SMALL_STATE(3737)] = 138769, - [SMALL_STATE(3738)] = 138843, - [SMALL_STATE(3739)] = 138885, - [SMALL_STATE(3740)] = 138929, - [SMALL_STATE(3741)] = 138973, - [SMALL_STATE(3742)] = 139035, - [SMALL_STATE(3743)] = 139091, - [SMALL_STATE(3744)] = 139155, - [SMALL_STATE(3745)] = 139221, - [SMALL_STATE(3746)] = 139265, - [SMALL_STATE(3747)] = 139333, - [SMALL_STATE(3748)] = 139375, - [SMALL_STATE(3749)] = 139417, - [SMALL_STATE(3750)] = 139473, - [SMALL_STATE(3751)] = 139523, - [SMALL_STATE(3752)] = 139565, - [SMALL_STATE(3753)] = 139623, - [SMALL_STATE(3754)] = 139669, - [SMALL_STATE(3755)] = 139711, - [SMALL_STATE(3756)] = 139753, - [SMALL_STATE(3757)] = 139795, - [SMALL_STATE(3758)] = 139837, - [SMALL_STATE(3759)] = 139879, - [SMALL_STATE(3760)] = 139921, - [SMALL_STATE(3761)] = 139989, - [SMALL_STATE(3762)] = 140059, - [SMALL_STATE(3763)] = 140131, - [SMALL_STATE(3764)] = 140191, - [SMALL_STATE(3765)] = 140245, - [SMALL_STATE(3766)] = 140307, - [SMALL_STATE(3767)] = 140349, - [SMALL_STATE(3768)] = 140413, - [SMALL_STATE(3769)] = 140479, - [SMALL_STATE(3770)] = 140523, - [SMALL_STATE(3771)] = 140579, - [SMALL_STATE(3772)] = 140637, - [SMALL_STATE(3773)] = 140687, - [SMALL_STATE(3774)] = 140739, - [SMALL_STATE(3775)] = 140797, - [SMALL_STATE(3776)] = 140839, - [SMALL_STATE(3777)] = 140899, - [SMALL_STATE(3778)] = 140945, - [SMALL_STATE(3779)] = 140993, - [SMALL_STATE(3780)] = 141061, - [SMALL_STATE(3781)] = 141131, - [SMALL_STATE(3782)] = 141201, - [SMALL_STATE(3783)] = 141273, - [SMALL_STATE(3784)] = 141345, - [SMALL_STATE(3785)] = 141419, - [SMALL_STATE(3786)] = 141461, - [SMALL_STATE(3787)] = 141503, - [SMALL_STATE(3788)] = 141563, - [SMALL_STATE(3789)] = 141625, - [SMALL_STATE(3790)] = 141671, - [SMALL_STATE(3791)] = 141725, - [SMALL_STATE(3792)] = 141781, - [SMALL_STATE(3793)] = 141823, - [SMALL_STATE(3794)] = 141885, - [SMALL_STATE(3795)] = 141949, - [SMALL_STATE(3796)] = 141997, - [SMALL_STATE(3797)] = 142061, - [SMALL_STATE(3798)] = 142127, - [SMALL_STATE(3799)] = 142193, - [SMALL_STATE(3800)] = 142261, - [SMALL_STATE(3801)] = 142309, - [SMALL_STATE(3802)] = 142351, - [SMALL_STATE(3803)] = 142411, - [SMALL_STATE(3804)] = 142467, - [SMALL_STATE(3805)] = 142515, - [SMALL_STATE(3806)] = 142565, - [SMALL_STATE(3807)] = 142623, - [SMALL_STATE(3808)] = 142669, - [SMALL_STATE(3809)] = 142717, - [SMALL_STATE(3810)] = 142759, - [SMALL_STATE(3811)] = 142827, - [SMALL_STATE(3812)] = 142897, - [SMALL_STATE(3813)] = 142945, - [SMALL_STATE(3814)] = 143017, - [SMALL_STATE(3815)] = 143077, - [SMALL_STATE(3816)] = 143131, - [SMALL_STATE(3817)] = 143193, - [SMALL_STATE(3818)] = 143257, - [SMALL_STATE(3819)] = 143299, - [SMALL_STATE(3820)] = 143365, - [SMALL_STATE(3821)] = 143413, - [SMALL_STATE(3822)] = 143455, - [SMALL_STATE(3823)] = 143499, - [SMALL_STATE(3824)] = 143557, - [SMALL_STATE(3825)] = 143609, - [SMALL_STATE(3826)] = 143669, - [SMALL_STATE(3827)] = 143717, - [SMALL_STATE(3828)] = 143787, - [SMALL_STATE(3829)] = 143859, - [SMALL_STATE(3830)] = 143933, - [SMALL_STATE(3831)] = 143995, - [SMALL_STATE(3832)] = 144051, - [SMALL_STATE(3833)] = 144115, - [SMALL_STATE(3834)] = 144181, - [SMALL_STATE(3835)] = 144249, - [SMALL_STATE(3836)] = 144291, - [SMALL_STATE(3837)] = 144343, - [SMALL_STATE(3838)] = 144399, - [SMALL_STATE(3839)] = 144457, - [SMALL_STATE(3840)] = 144507, - [SMALL_STATE(3841)] = 144559, - [SMALL_STATE(3842)] = 144617, - [SMALL_STATE(3843)] = 144677, - [SMALL_STATE(3844)] = 144723, - [SMALL_STATE(3845)] = 144771, - [SMALL_STATE(3846)] = 144839, - [SMALL_STATE(3847)] = 144909, - [SMALL_STATE(3848)] = 144979, - [SMALL_STATE(3849)] = 145051, - [SMALL_STATE(3850)] = 145123, - [SMALL_STATE(3851)] = 145197, - [SMALL_STATE(3852)] = 145257, - [SMALL_STATE(3853)] = 145319, - [SMALL_STATE(3854)] = 145373, - [SMALL_STATE(3855)] = 145429, - [SMALL_STATE(3856)] = 145487, - [SMALL_STATE(3857)] = 145549, - [SMALL_STATE(3858)] = 145613, - [SMALL_STATE(3859)] = 145677, - [SMALL_STATE(3860)] = 145743, - [SMALL_STATE(3861)] = 145809, - [SMALL_STATE(3862)] = 145857, - [SMALL_STATE(3863)] = 145940, - [SMALL_STATE(3864)] = 145987, - [SMALL_STATE(3865)] = 146032, - [SMALL_STATE(3866)] = 146105, - [SMALL_STATE(3867)] = 146188, - [SMALL_STATE(3868)] = 146261, - [SMALL_STATE(3869)] = 146302, - [SMALL_STATE(3870)] = 146355, - [SMALL_STATE(3871)] = 146396, - [SMALL_STATE(3872)] = 146445, - [SMALL_STATE(3873)] = 146488, - [SMALL_STATE(3874)] = 146529, - [SMALL_STATE(3875)] = 146584, - [SMALL_STATE(3876)] = 146643, - [SMALL_STATE(3877)] = 146684, - [SMALL_STATE(3878)] = 146725, - [SMALL_STATE(3879)] = 146808, - [SMALL_STATE(3880)] = 146849, - [SMALL_STATE(3881)] = 146890, - [SMALL_STATE(3882)] = 146951, - [SMALL_STATE(3883)] = 146992, - [SMALL_STATE(3884)] = 147075, - [SMALL_STATE(3885)] = 147132, - [SMALL_STATE(3886)] = 147173, - [SMALL_STATE(3887)] = 147256, - [SMALL_STATE(3888)] = 147299, - [SMALL_STATE(3889)] = 147344, - [SMALL_STATE(3890)] = 147427, - [SMALL_STATE(3891)] = 147468, - [SMALL_STATE(3892)] = 147541, - [SMALL_STATE(3893)] = 147624, - [SMALL_STATE(3894)] = 147687, - [SMALL_STATE(3895)] = 147770, - [SMALL_STATE(3896)] = 147853, - [SMALL_STATE(3897)] = 147936, - [SMALL_STATE(3898)] = 148019, - [SMALL_STATE(3899)] = 148102, - [SMALL_STATE(3900)] = 148175, - [SMALL_STATE(3901)] = 148258, - [SMALL_STATE(3902)] = 148341, - [SMALL_STATE(3903)] = 148382, - [SMALL_STATE(3904)] = 148423, - [SMALL_STATE(3905)] = 148468, - [SMALL_STATE(3906)] = 148509, - [SMALL_STATE(3907)] = 148592, - [SMALL_STATE(3908)] = 148633, - [SMALL_STATE(3909)] = 148716, - [SMALL_STATE(3910)] = 148757, - [SMALL_STATE(3911)] = 148840, - [SMALL_STATE(3912)] = 148881, - [SMALL_STATE(3913)] = 148954, - [SMALL_STATE(3914)] = 149019, - [SMALL_STATE(3915)] = 149102, - [SMALL_STATE(3916)] = 149175, - [SMALL_STATE(3917)] = 149258, - [SMALL_STATE(3918)] = 149299, - [SMALL_STATE(3919)] = 149350, - [SMALL_STATE(3920)] = 149391, - [SMALL_STATE(3921)] = 149458, - [SMALL_STATE(3922)] = 149499, - [SMALL_STATE(3923)] = 149582, - [SMALL_STATE(3924)] = 149665, - [SMALL_STATE(3925)] = 149748, - [SMALL_STATE(3926)] = 149831, - [SMALL_STATE(3927)] = 149914, - [SMALL_STATE(3928)] = 149955, - [SMALL_STATE(3929)] = 150038, - [SMALL_STATE(3930)] = 150079, - [SMALL_STATE(3931)] = 150120, - [SMALL_STATE(3932)] = 150203, - [SMALL_STATE(3933)] = 150245, - [SMALL_STATE(3934)] = 150303, - [SMALL_STATE(3935)] = 150345, - [SMALL_STATE(3936)] = 150389, - [SMALL_STATE(3937)] = 150431, - [SMALL_STATE(3938)] = 150475, - [SMALL_STATE(3939)] = 150527, - [SMALL_STATE(3940)] = 150577, - [SMALL_STATE(3941)] = 150623, - [SMALL_STATE(3942)] = 150681, - [SMALL_STATE(3943)] = 150741, - [SMALL_STATE(3944)] = 150801, - [SMALL_STATE(3945)] = 150863, - [SMALL_STATE(3946)] = 150907, - [SMALL_STATE(3947)] = 150969, - [SMALL_STATE(3948)] = 151011, - [SMALL_STATE(3949)] = 151067, - [SMALL_STATE(3950)] = 151109, - [SMALL_STATE(3951)] = 151149, - [SMALL_STATE(3952)] = 151191, - [SMALL_STATE(3953)] = 151255, - [SMALL_STATE(3954)] = 151321, - [SMALL_STATE(3955)] = 151365, - [SMALL_STATE(3956)] = 151407, - [SMALL_STATE(3957)] = 151475, - [SMALL_STATE(3958)] = 151527, - [SMALL_STATE(3959)] = 151583, - [SMALL_STATE(3960)] = 151633, - [SMALL_STATE(3961)] = 151675, - [SMALL_STATE(3962)] = 151721, - [SMALL_STATE(3963)] = 151775, - [SMALL_STATE(3964)] = 151817, - [SMALL_STATE(3965)] = 151859, - [SMALL_STATE(3966)] = 151923, - [SMALL_STATE(3967)] = 151989, - [SMALL_STATE(3968)] = 152057, - [SMALL_STATE(3969)] = 152099, - [SMALL_STATE(3970)] = 152153, - [SMALL_STATE(3971)] = 152192, - [SMALL_STATE(3972)] = 152269, - [SMALL_STATE(3973)] = 152336, - [SMALL_STATE(3974)] = 152413, - [SMALL_STATE(3975)] = 152490, - [SMALL_STATE(3976)] = 152567, - [SMALL_STATE(3977)] = 152634, - [SMALL_STATE(3978)] = 152673, - [SMALL_STATE(3979)] = 152750, - [SMALL_STATE(3980)] = 152789, - [SMALL_STATE(3981)] = 152856, - [SMALL_STATE(3982)] = 152923, - [SMALL_STATE(3983)] = 152990, - [SMALL_STATE(3984)] = 153067, - [SMALL_STATE(3985)] = 153106, - [SMALL_STATE(3986)] = 153151, - [SMALL_STATE(3987)] = 153228, - [SMALL_STATE(3988)] = 153305, - [SMALL_STATE(3989)] = 153344, - [SMALL_STATE(3990)] = 153421, - [SMALL_STATE(3991)] = 153488, - [SMALL_STATE(3992)] = 153527, - [SMALL_STATE(3993)] = 153604, - [SMALL_STATE(3994)] = 153681, - [SMALL_STATE(3995)] = 153748, - [SMALL_STATE(3996)] = 153825, - [SMALL_STATE(3997)] = 153869, - [SMALL_STATE(3998)] = 153923, - [SMALL_STATE(3999)] = 153976, - [SMALL_STATE(4000)] = 154027, - [SMALL_STATE(4001)] = 154078, - [SMALL_STATE(4002)] = 154128, - [SMALL_STATE(4003)] = 154168, - [SMALL_STATE(4004)] = 154218, - [SMALL_STATE(4005)] = 154274, - [SMALL_STATE(4006)] = 154314, - [SMALL_STATE(4007)] = 154351, - [SMALL_STATE(4008)] = 154390, - [SMALL_STATE(4009)] = 154445, - [SMALL_STATE(4010)] = 154482, - [SMALL_STATE(4011)] = 154535, - [SMALL_STATE(4012)] = 154588, - [SMALL_STATE(4013)] = 154635, - [SMALL_STATE(4014)] = 154688, - [SMALL_STATE(4015)] = 154727, - [SMALL_STATE(4016)] = 154769, - [SMALL_STATE(4017)] = 154807, - [SMALL_STATE(4018)] = 154849, - [SMALL_STATE(4019)] = 154895, - [SMALL_STATE(4020)] = 154929, - [SMALL_STATE(4021)] = 154979, - [SMALL_STATE(4022)] = 155017, - [SMALL_STATE(4023)] = 155053, - [SMALL_STATE(4024)] = 155087, - [SMALL_STATE(4025)] = 155125, - [SMALL_STATE(4026)] = 155175, - [SMALL_STATE(4027)] = 155211, - [SMALL_STATE(4028)] = 155263, - [SMALL_STATE(4029)] = 155301, - [SMALL_STATE(4030)] = 155335, - [SMALL_STATE(4031)] = 155387, - [SMALL_STATE(4032)] = 155437, - [SMALL_STATE(4033)] = 155471, - [SMALL_STATE(4034)] = 155521, - [SMALL_STATE(4035)] = 155573, - [SMALL_STATE(4036)] = 155608, - [SMALL_STATE(4037)] = 155649, - [SMALL_STATE(4038)] = 155686, - [SMALL_STATE(4039)] = 155719, - [SMALL_STATE(4040)] = 155754, - [SMALL_STATE(4041)] = 155787, - [SMALL_STATE(4042)] = 155836, - [SMALL_STATE(4043)] = 155871, - [SMALL_STATE(4044)] = 155912, - [SMALL_STATE(4045)] = 155961, - [SMALL_STATE(4046)] = 155994, - [SMALL_STATE(4047)] = 156041, - [SMALL_STATE(4048)] = 156090, - [SMALL_STATE(4049)] = 156143, - [SMALL_STATE(4050)] = 156176, - [SMALL_STATE(4051)] = 156211, - [SMALL_STATE(4052)] = 156248, - [SMALL_STATE(4053)] = 156285, - [SMALL_STATE(4054)] = 156320, - [SMALL_STATE(4055)] = 156369, - [SMALL_STATE(4056)] = 156406, - [SMALL_STATE(4057)] = 156444, - [SMALL_STATE(4058)] = 156476, - [SMALL_STATE(4059)] = 156510, - [SMALL_STATE(4060)] = 156542, - [SMALL_STATE(4061)] = 156592, - [SMALL_STATE(4062)] = 156630, - [SMALL_STATE(4063)] = 156664, - [SMALL_STATE(4064)] = 156696, - [SMALL_STATE(4065)] = 156730, - [SMALL_STATE(4066)] = 156762, - [SMALL_STATE(4067)] = 156802, - [SMALL_STATE(4068)] = 156834, - [SMALL_STATE(4069)] = 156866, - [SMALL_STATE(4070)] = 156916, - [SMALL_STATE(4071)] = 156952, - [SMALL_STATE(4072)] = 157002, - [SMALL_STATE(4073)] = 157038, - [SMALL_STATE(4074)] = 157070, - [SMALL_STATE(4075)] = 157110, - [SMALL_STATE(4076)] = 157146, - [SMALL_STATE(4077)] = 157180, - [SMALL_STATE(4078)] = 157212, - [SMALL_STATE(4079)] = 157248, - [SMALL_STATE(4080)] = 157280, - [SMALL_STATE(4081)] = 157326, - [SMALL_STATE(4082)] = 157366, - [SMALL_STATE(4083)] = 157397, - [SMALL_STATE(4084)] = 157436, - [SMALL_STATE(4085)] = 157467, - [SMALL_STATE(4086)] = 157502, - [SMALL_STATE(4087)] = 157537, - [SMALL_STATE(4088)] = 157584, - [SMALL_STATE(4089)] = 157617, - [SMALL_STATE(4090)] = 157648, - [SMALL_STATE(4091)] = 157687, - [SMALL_STATE(4092)] = 157722, - [SMALL_STATE(4093)] = 157753, - [SMALL_STATE(4094)] = 157784, - [SMALL_STATE(4095)] = 157831, - [SMALL_STATE(4096)] = 157878, - [SMALL_STATE(4097)] = 157919, - [SMALL_STATE(4098)] = 157956, - [SMALL_STATE(4099)] = 158003, - [SMALL_STATE(4100)] = 158040, - [SMALL_STATE(4101)] = 158071, - [SMALL_STATE(4102)] = 158106, - [SMALL_STATE(4103)] = 158137, - [SMALL_STATE(4104)] = 158168, - [SMALL_STATE(4105)] = 158203, - [SMALL_STATE(4106)] = 158236, - [SMALL_STATE(4107)] = 158275, - [SMALL_STATE(4108)] = 158308, - [SMALL_STATE(4109)] = 158345, - [SMALL_STATE(4110)] = 158390, - [SMALL_STATE(4111)] = 158423, - [SMALL_STATE(4112)] = 158453, - [SMALL_STATE(4113)] = 158491, - [SMALL_STATE(4114)] = 158525, - [SMALL_STATE(4115)] = 158563, - [SMALL_STATE(4116)] = 158613, - [SMALL_STATE(4117)] = 158647, - [SMALL_STATE(4118)] = 158677, - [SMALL_STATE(4119)] = 158707, - [SMALL_STATE(4120)] = 158737, - [SMALL_STATE(4121)] = 158767, - [SMALL_STATE(4122)] = 158797, - [SMALL_STATE(4123)] = 158829, - [SMALL_STATE(4124)] = 158863, - [SMALL_STATE(4125)] = 158901, - [SMALL_STATE(4126)] = 158939, - [SMALL_STATE(4127)] = 158975, - [SMALL_STATE(4128)] = 159007, - [SMALL_STATE(4129)] = 159039, - [SMALL_STATE(4130)] = 159071, - [SMALL_STATE(4131)] = 159105, - [SMALL_STATE(4132)] = 159137, - [SMALL_STATE(4133)] = 159169, - [SMALL_STATE(4134)] = 159203, - [SMALL_STATE(4135)] = 159235, - [SMALL_STATE(4136)] = 159267, - [SMALL_STATE(4137)] = 159297, - [SMALL_STATE(4138)] = 159327, - [SMALL_STATE(4139)] = 159357, - [SMALL_STATE(4140)] = 159387, - [SMALL_STATE(4141)] = 159417, - [SMALL_STATE(4142)] = 159447, - [SMALL_STATE(4143)] = 159479, - [SMALL_STATE(4144)] = 159517, - [SMALL_STATE(4145)] = 159557, - [SMALL_STATE(4146)] = 159594, - [SMALL_STATE(4147)] = 159631, - [SMALL_STATE(4148)] = 159660, - [SMALL_STATE(4149)] = 159697, - [SMALL_STATE(4150)] = 159734, - [SMALL_STATE(4151)] = 159771, - [SMALL_STATE(4152)] = 159808, - [SMALL_STATE(4153)] = 159845, - [SMALL_STATE(4154)] = 159882, - [SMALL_STATE(4155)] = 159919, - [SMALL_STATE(4156)] = 159956, - [SMALL_STATE(4157)] = 159993, - [SMALL_STATE(4158)] = 160030, - [SMALL_STATE(4159)] = 160067, - [SMALL_STATE(4160)] = 160104, - [SMALL_STATE(4161)] = 160141, - [SMALL_STATE(4162)] = 160178, - [SMALL_STATE(4163)] = 160209, - [SMALL_STATE(4164)] = 160246, - [SMALL_STATE(4165)] = 160275, - [SMALL_STATE(4166)] = 160312, - [SMALL_STATE(4167)] = 160345, - [SMALL_STATE(4168)] = 160376, - [SMALL_STATE(4169)] = 160405, - [SMALL_STATE(4170)] = 160438, - [SMALL_STATE(4171)] = 160471, - [SMALL_STATE(4172)] = 160508, - [SMALL_STATE(4173)] = 160539, - [SMALL_STATE(4174)] = 160572, - [SMALL_STATE(4175)] = 160601, - [SMALL_STATE(4176)] = 160632, - [SMALL_STATE(4177)] = 160661, - [SMALL_STATE(4178)] = 160698, - [SMALL_STATE(4179)] = 160729, - [SMALL_STATE(4180)] = 160758, - [SMALL_STATE(4181)] = 160791, - [SMALL_STATE(4182)] = 160828, - [SMALL_STATE(4183)] = 160857, - [SMALL_STATE(4184)] = 160886, - [SMALL_STATE(4185)] = 160917, - [SMALL_STATE(4186)] = 160946, - [SMALL_STATE(4187)] = 160981, - [SMALL_STATE(4188)] = 161010, - [SMALL_STATE(4189)] = 161039, - [SMALL_STATE(4190)] = 161070, - [SMALL_STATE(4191)] = 161103, - [SMALL_STATE(4192)] = 161134, - [SMALL_STATE(4193)] = 161171, - [SMALL_STATE(4194)] = 161202, - [SMALL_STATE(4195)] = 161233, - [SMALL_STATE(4196)] = 161262, - [SMALL_STATE(4197)] = 161293, - [SMALL_STATE(4198)] = 161322, - [SMALL_STATE(4199)] = 161359, - [SMALL_STATE(4200)] = 161390, - [SMALL_STATE(4201)] = 161421, - [SMALL_STATE(4202)] = 161452, - [SMALL_STATE(4203)] = 161481, - [SMALL_STATE(4204)] = 161510, - [SMALL_STATE(4205)] = 161539, - [SMALL_STATE(4206)] = 161568, - [SMALL_STATE(4207)] = 161597, - [SMALL_STATE(4208)] = 161634, - [SMALL_STATE(4209)] = 161663, - [SMALL_STATE(4210)] = 161700, - [SMALL_STATE(4211)] = 161729, - [SMALL_STATE(4212)] = 161758, - [SMALL_STATE(4213)] = 161789, - [SMALL_STATE(4214)] = 161826, - [SMALL_STATE(4215)] = 161863, - [SMALL_STATE(4216)] = 161900, - [SMALL_STATE(4217)] = 161933, - [SMALL_STATE(4218)] = 161962, - [SMALL_STATE(4219)] = 161999, - [SMALL_STATE(4220)] = 162030, - [SMALL_STATE(4221)] = 162059, - [SMALL_STATE(4222)] = 162096, - [SMALL_STATE(4223)] = 162133, - [SMALL_STATE(4224)] = 162170, - [SMALL_STATE(4225)] = 162201, - [SMALL_STATE(4226)] = 162233, - [SMALL_STATE(4227)] = 162265, - [SMALL_STATE(4228)] = 162299, - [SMALL_STATE(4229)] = 162329, - [SMALL_STATE(4230)] = 162359, - [SMALL_STATE(4231)] = 162389, - [SMALL_STATE(4232)] = 162433, - [SMALL_STATE(4233)] = 162461, - [SMALL_STATE(4234)] = 162493, - [SMALL_STATE(4235)] = 162541, - [SMALL_STATE(4236)] = 162573, - [SMALL_STATE(4237)] = 162609, - [SMALL_STATE(4238)] = 162653, - [SMALL_STATE(4239)] = 162701, - [SMALL_STATE(4240)] = 162731, - [SMALL_STATE(4241)] = 162775, - [SMALL_STATE(4242)] = 162805, - [SMALL_STATE(4243)] = 162833, - [SMALL_STATE(4244)] = 162861, - [SMALL_STATE(4245)] = 162891, - [SMALL_STATE(4246)] = 162921, - [SMALL_STATE(4247)] = 162957, - [SMALL_STATE(4248)] = 162993, - [SMALL_STATE(4249)] = 163031, - [SMALL_STATE(4250)] = 163063, - [SMALL_STATE(4251)] = 163095, - [SMALL_STATE(4252)] = 163127, - [SMALL_STATE(4253)] = 163155, - [SMALL_STATE(4254)] = 163187, - [SMALL_STATE(4255)] = 163217, - [SMALL_STATE(4256)] = 163253, - [SMALL_STATE(4257)] = 163281, - [SMALL_STATE(4258)] = 163317, - [SMALL_STATE(4259)] = 163345, - [SMALL_STATE(4260)] = 163373, - [SMALL_STATE(4261)] = 163409, - [SMALL_STATE(4262)] = 163445, - [SMALL_STATE(4263)] = 163473, - [SMALL_STATE(4264)] = 163509, - [SMALL_STATE(4265)] = 163557, - [SMALL_STATE(4266)] = 163593, - [SMALL_STATE(4267)] = 163621, - [SMALL_STATE(4268)] = 163665, - [SMALL_STATE(4269)] = 163701, - [SMALL_STATE(4270)] = 163737, - [SMALL_STATE(4271)] = 163765, - [SMALL_STATE(4272)] = 163793, - [SMALL_STATE(4273)] = 163837, - [SMALL_STATE(4274)] = 163865, - [SMALL_STATE(4275)] = 163901, - [SMALL_STATE(4276)] = 163937, - [SMALL_STATE(4277)] = 163973, - [SMALL_STATE(4278)] = 164009, - [SMALL_STATE(4279)] = 164045, - [SMALL_STATE(4280)] = 164081, - [SMALL_STATE(4281)] = 164117, - [SMALL_STATE(4282)] = 164153, - [SMALL_STATE(4283)] = 164189, - [SMALL_STATE(4284)] = 164227, - [SMALL_STATE(4285)] = 164263, - [SMALL_STATE(4286)] = 164299, - [SMALL_STATE(4287)] = 164335, - [SMALL_STATE(4288)] = 164363, - [SMALL_STATE(4289)] = 164399, - [SMALL_STATE(4290)] = 164435, - [SMALL_STATE(4291)] = 164463, - [SMALL_STATE(4292)] = 164499, - [SMALL_STATE(4293)] = 164529, - [SMALL_STATE(4294)] = 164561, - [SMALL_STATE(4295)] = 164597, - [SMALL_STATE(4296)] = 164625, - [SMALL_STATE(4297)] = 164661, - [SMALL_STATE(4298)] = 164693, - [SMALL_STATE(4299)] = 164729, - [SMALL_STATE(4300)] = 164757, - [SMALL_STATE(4301)] = 164787, - [SMALL_STATE(4302)] = 164815, - [SMALL_STATE(4303)] = 164851, - [SMALL_STATE(4304)] = 164887, - [SMALL_STATE(4305)] = 164919, - [SMALL_STATE(4306)] = 164949, - [SMALL_STATE(4307)] = 164981, - [SMALL_STATE(4308)] = 165011, - [SMALL_STATE(4309)] = 165047, - [SMALL_STATE(4310)] = 165095, - [SMALL_STATE(4311)] = 165123, - [SMALL_STATE(4312)] = 165155, - [SMALL_STATE(4313)] = 165183, - [SMALL_STATE(4314)] = 165211, - [SMALL_STATE(4315)] = 165239, - [SMALL_STATE(4316)] = 165267, - [SMALL_STATE(4317)] = 165298, - [SMALL_STATE(4318)] = 165333, - [SMALL_STATE(4319)] = 165360, - [SMALL_STATE(4320)] = 165391, - [SMALL_STATE(4321)] = 165424, - [SMALL_STATE(4322)] = 165451, - [SMALL_STATE(4323)] = 165482, - [SMALL_STATE(4324)] = 165509, - [SMALL_STATE(4325)] = 165536, - [SMALL_STATE(4326)] = 165565, - [SMALL_STATE(4327)] = 165594, - [SMALL_STATE(4328)] = 165621, - [SMALL_STATE(4329)] = 165652, - [SMALL_STATE(4330)] = 165683, - [SMALL_STATE(4331)] = 165710, - [SMALL_STATE(4332)] = 165743, - [SMALL_STATE(4333)] = 165770, - [SMALL_STATE(4334)] = 165799, - [SMALL_STATE(4335)] = 165828, - [SMALL_STATE(4336)] = 165859, - [SMALL_STATE(4337)] = 165890, - [SMALL_STATE(4338)] = 165925, - [SMALL_STATE(4339)] = 165952, - [SMALL_STATE(4340)] = 165983, - [SMALL_STATE(4341)] = 166014, - [SMALL_STATE(4342)] = 166041, - [SMALL_STATE(4343)] = 166068, - [SMALL_STATE(4344)] = 166099, - [SMALL_STATE(4345)] = 166134, - [SMALL_STATE(4346)] = 166163, - [SMALL_STATE(4347)] = 166190, - [SMALL_STATE(4348)] = 166225, - [SMALL_STATE(4349)] = 166254, - [SMALL_STATE(4350)] = 166287, - [SMALL_STATE(4351)] = 166314, - [SMALL_STATE(4352)] = 166349, - [SMALL_STATE(4353)] = 166376, - [SMALL_STATE(4354)] = 166403, - [SMALL_STATE(4355)] = 166430, - [SMALL_STATE(4356)] = 166463, - [SMALL_STATE(4357)] = 166494, - [SMALL_STATE(4358)] = 166521, - [SMALL_STATE(4359)] = 166552, - [SMALL_STATE(4360)] = 166579, - [SMALL_STATE(4361)] = 166614, - [SMALL_STATE(4362)] = 166641, - [SMALL_STATE(4363)] = 166668, - [SMALL_STATE(4364)] = 166703, - [SMALL_STATE(4365)] = 166730, - [SMALL_STATE(4366)] = 166757, - [SMALL_STATE(4367)] = 166784, - [SMALL_STATE(4368)] = 166811, - [SMALL_STATE(4369)] = 166840, - [SMALL_STATE(4370)] = 166873, - [SMALL_STATE(4371)] = 166908, - [SMALL_STATE(4372)] = 166943, - [SMALL_STATE(4373)] = 166970, - [SMALL_STATE(4374)] = 166999, - [SMALL_STATE(4375)] = 167026, - [SMALL_STATE(4376)] = 167057, - [SMALL_STATE(4377)] = 167088, - [SMALL_STATE(4378)] = 167123, - [SMALL_STATE(4379)] = 167150, - [SMALL_STATE(4380)] = 167177, - [SMALL_STATE(4381)] = 167204, - [SMALL_STATE(4382)] = 167229, - [SMALL_STATE(4383)] = 167264, - [SMALL_STATE(4384)] = 167291, - [SMALL_STATE(4385)] = 167320, - [SMALL_STATE(4386)] = 167349, - [SMALL_STATE(4387)] = 167376, - [SMALL_STATE(4388)] = 167411, - [SMALL_STATE(4389)] = 167438, - [SMALL_STATE(4390)] = 167465, - [SMALL_STATE(4391)] = 167496, - [SMALL_STATE(4392)] = 167527, - [SMALL_STATE(4393)] = 167562, - [SMALL_STATE(4394)] = 167593, - [SMALL_STATE(4395)] = 167628, - [SMALL_STATE(4396)] = 167655, - [SMALL_STATE(4397)] = 167684, - [SMALL_STATE(4398)] = 167717, - [SMALL_STATE(4399)] = 167752, - [SMALL_STATE(4400)] = 167783, - [SMALL_STATE(4401)] = 167818, - [SMALL_STATE(4402)] = 167853, - [SMALL_STATE(4403)] = 167882, - [SMALL_STATE(4404)] = 167917, - [SMALL_STATE(4405)] = 167952, - [SMALL_STATE(4406)] = 167983, - [SMALL_STATE(4407)] = 168014, - [SMALL_STATE(4408)] = 168045, - [SMALL_STATE(4409)] = 168076, - [SMALL_STATE(4410)] = 168109, - [SMALL_STATE(4411)] = 168142, - [SMALL_STATE(4412)] = 168173, - [SMALL_STATE(4413)] = 168200, - [SMALL_STATE(4414)] = 168231, - [SMALL_STATE(4415)] = 168264, - [SMALL_STATE(4416)] = 168297, - [SMALL_STATE(4417)] = 168324, - [SMALL_STATE(4418)] = 168351, - [SMALL_STATE(4419)] = 168382, - [SMALL_STATE(4420)] = 168407, - [SMALL_STATE(4421)] = 168432, - [SMALL_STATE(4422)] = 168463, - [SMALL_STATE(4423)] = 168494, - [SMALL_STATE(4424)] = 168519, - [SMALL_STATE(4425)] = 168544, - [SMALL_STATE(4426)] = 168577, - [SMALL_STATE(4427)] = 168608, - [SMALL_STATE(4428)] = 168633, - [SMALL_STATE(4429)] = 168658, - [SMALL_STATE(4430)] = 168683, - [SMALL_STATE(4431)] = 168710, - [SMALL_STATE(4432)] = 168737, - [SMALL_STATE(4433)] = 168764, - [SMALL_STATE(4434)] = 168793, - [SMALL_STATE(4435)] = 168822, - [SMALL_STATE(4436)] = 168851, - [SMALL_STATE(4437)] = 168880, - [SMALL_STATE(4438)] = 168905, - [SMALL_STATE(4439)] = 168930, - [SMALL_STATE(4440)] = 168959, - [SMALL_STATE(4441)] = 168986, - [SMALL_STATE(4442)] = 169013, - [SMALL_STATE(4443)] = 169042, - [SMALL_STATE(4444)] = 169071, - [SMALL_STATE(4445)] = 169102, - [SMALL_STATE(4446)] = 169131, - [SMALL_STATE(4447)] = 169158, - [SMALL_STATE(4448)] = 169189, - [SMALL_STATE(4449)] = 169218, - [SMALL_STATE(4450)] = 169253, - [SMALL_STATE(4451)] = 169284, - [SMALL_STATE(4452)] = 169315, - [SMALL_STATE(4453)] = 169342, - [SMALL_STATE(4454)] = 169375, - [SMALL_STATE(4455)] = 169406, - [SMALL_STATE(4456)] = 169437, - [SMALL_STATE(4457)] = 169466, - [SMALL_STATE(4458)] = 169497, - [SMALL_STATE(4459)] = 169532, - [SMALL_STATE(4460)] = 169567, - [SMALL_STATE(4461)] = 169598, - [SMALL_STATE(4462)] = 169629, - [SMALL_STATE(4463)] = 169664, - [SMALL_STATE(4464)] = 169695, - [SMALL_STATE(4465)] = 169726, - [SMALL_STATE(4466)] = 169757, - [SMALL_STATE(4467)] = 169784, - [SMALL_STATE(4468)] = 169811, - [SMALL_STATE(4469)] = 169842, - [SMALL_STATE(4470)] = 169869, - [SMALL_STATE(4471)] = 169900, - [SMALL_STATE(4472)] = 169927, - [SMALL_STATE(4473)] = 169958, - [SMALL_STATE(4474)] = 169985, - [SMALL_STATE(4475)] = 170012, - [SMALL_STATE(4476)] = 170039, - [SMALL_STATE(4477)] = 170068, - [SMALL_STATE(4478)] = 170099, - [SMALL_STATE(4479)] = 170132, - [SMALL_STATE(4480)] = 170167, - [SMALL_STATE(4481)] = 170202, - [SMALL_STATE(4482)] = 170231, - [SMALL_STATE(4483)] = 170266, - [SMALL_STATE(4484)] = 170297, - [SMALL_STATE(4485)] = 170332, - [SMALL_STATE(4486)] = 170363, - [SMALL_STATE(4487)] = 170394, - [SMALL_STATE(4488)] = 170425, - [SMALL_STATE(4489)] = 170456, - [SMALL_STATE(4490)] = 170487, - [SMALL_STATE(4491)] = 170518, - [SMALL_STATE(4492)] = 170543, - [SMALL_STATE(4493)] = 170578, - [SMALL_STATE(4494)] = 170611, - [SMALL_STATE(4495)] = 170644, - [SMALL_STATE(4496)] = 170679, - [SMALL_STATE(4497)] = 170714, - [SMALL_STATE(4498)] = 170741, - [SMALL_STATE(4499)] = 170768, - [SMALL_STATE(4500)] = 170795, - [SMALL_STATE(4501)] = 170826, - [SMALL_STATE(4502)] = 170857, - [SMALL_STATE(4503)] = 170888, - [SMALL_STATE(4504)] = 170921, - [SMALL_STATE(4505)] = 170954, - [SMALL_STATE(4506)] = 170985, - [SMALL_STATE(4507)] = 171018, - [SMALL_STATE(4508)] = 171049, - [SMALL_STATE(4509)] = 171076, - [SMALL_STATE(4510)] = 171107, - [SMALL_STATE(4511)] = 171134, - [SMALL_STATE(4512)] = 171165, - [SMALL_STATE(4513)] = 171192, - [SMALL_STATE(4514)] = 171223, - [SMALL_STATE(4515)] = 171250, - [SMALL_STATE(4516)] = 171281, - [SMALL_STATE(4517)] = 171314, - [SMALL_STATE(4518)] = 171347, - [SMALL_STATE(4519)] = 171380, - [SMALL_STATE(4520)] = 171417, - [SMALL_STATE(4521)] = 171448, - [SMALL_STATE(4522)] = 171475, - [SMALL_STATE(4523)] = 171505, - [SMALL_STATE(4524)] = 171531, - [SMALL_STATE(4525)] = 171561, - [SMALL_STATE(4526)] = 171585, - [SMALL_STATE(4527)] = 171611, - [SMALL_STATE(4528)] = 171635, - [SMALL_STATE(4529)] = 171687, - [SMALL_STATE(4530)] = 171713, - [SMALL_STATE(4531)] = 171737, - [SMALL_STATE(4532)] = 171765, - [SMALL_STATE(4533)] = 171811, - [SMALL_STATE(4534)] = 171835, - [SMALL_STATE(4535)] = 171865, - [SMALL_STATE(4536)] = 171895, - [SMALL_STATE(4537)] = 171925, - [SMALL_STATE(4538)] = 171955, - [SMALL_STATE(4539)] = 171985, - [SMALL_STATE(4540)] = 172013, - [SMALL_STATE(4541)] = 172065, - [SMALL_STATE(4542)] = 172095, - [SMALL_STATE(4543)] = 172125, - [SMALL_STATE(4544)] = 172155, - [SMALL_STATE(4545)] = 172185, - [SMALL_STATE(4546)] = 172211, - [SMALL_STATE(4547)] = 172237, - [SMALL_STATE(4548)] = 172289, - [SMALL_STATE(4549)] = 172317, - [SMALL_STATE(4550)] = 172343, - [SMALL_STATE(4551)] = 172371, - [SMALL_STATE(4552)] = 172399, - [SMALL_STATE(4553)] = 172451, - [SMALL_STATE(4554)] = 172479, - [SMALL_STATE(4555)] = 172507, - [SMALL_STATE(4556)] = 172559, - [SMALL_STATE(4557)] = 172589, - [SMALL_STATE(4558)] = 172615, - [SMALL_STATE(4559)] = 172643, - [SMALL_STATE(4560)] = 172675, - [SMALL_STATE(4561)] = 172705, - [SMALL_STATE(4562)] = 172731, - [SMALL_STATE(4563)] = 172757, - [SMALL_STATE(4564)] = 172787, - [SMALL_STATE(4565)] = 172817, - [SMALL_STATE(4566)] = 172843, - [SMALL_STATE(4567)] = 172873, - [SMALL_STATE(4568)] = 172903, - [SMALL_STATE(4569)] = 172927, - [SMALL_STATE(4570)] = 172953, - [SMALL_STATE(4571)] = 172985, - [SMALL_STATE(4572)] = 173009, - [SMALL_STATE(4573)] = 173061, - [SMALL_STATE(4574)] = 173087, - [SMALL_STATE(4575)] = 173115, - [SMALL_STATE(4576)] = 173167, - [SMALL_STATE(4577)] = 173219, - [SMALL_STATE(4578)] = 173249, - [SMALL_STATE(4579)] = 173275, - [SMALL_STATE(4580)] = 173299, - [SMALL_STATE(4581)] = 173325, - [SMALL_STATE(4582)] = 173355, - [SMALL_STATE(4583)] = 173381, - [SMALL_STATE(4584)] = 173405, - [SMALL_STATE(4585)] = 173435, - [SMALL_STATE(4586)] = 173465, - [SMALL_STATE(4587)] = 173495, - [SMALL_STATE(4588)] = 173525, - [SMALL_STATE(4589)] = 173549, - [SMALL_STATE(4590)] = 173579, - [SMALL_STATE(4591)] = 173607, - [SMALL_STATE(4592)] = 173633, - [SMALL_STATE(4593)] = 173665, - [SMALL_STATE(4594)] = 173691, - [SMALL_STATE(4595)] = 173743, - [SMALL_STATE(4596)] = 173771, - [SMALL_STATE(4597)] = 173799, - [SMALL_STATE(4598)] = 173829, - [SMALL_STATE(4599)] = 173859, - [SMALL_STATE(4600)] = 173885, - [SMALL_STATE(4601)] = 173915, - [SMALL_STATE(4602)] = 173945, - [SMALL_STATE(4603)] = 173997, - [SMALL_STATE(4604)] = 174021, - [SMALL_STATE(4605)] = 174049, - [SMALL_STATE(4606)] = 174075, - [SMALL_STATE(4607)] = 174103, - [SMALL_STATE(4608)] = 174131, - [SMALL_STATE(4609)] = 174155, - [SMALL_STATE(4610)] = 174185, - [SMALL_STATE(4611)] = 174215, - [SMALL_STATE(4612)] = 174239, - [SMALL_STATE(4613)] = 174269, - [SMALL_STATE(4614)] = 174295, - [SMALL_STATE(4615)] = 174321, - [SMALL_STATE(4616)] = 174345, - [SMALL_STATE(4617)] = 174373, - [SMALL_STATE(4618)] = 174403, - [SMALL_STATE(4619)] = 174429, - [SMALL_STATE(4620)] = 174459, - [SMALL_STATE(4621)] = 174487, - [SMALL_STATE(4622)] = 174513, - [SMALL_STATE(4623)] = 174541, - [SMALL_STATE(4624)] = 174567, - [SMALL_STATE(4625)] = 174592, - [SMALL_STATE(4626)] = 174617, - [SMALL_STATE(4627)] = 174642, - [SMALL_STATE(4628)] = 174667, - [SMALL_STATE(4629)] = 174690, - [SMALL_STATE(4630)] = 174719, - [SMALL_STATE(4631)] = 174748, - [SMALL_STATE(4632)] = 174777, - [SMALL_STATE(4633)] = 174806, - [SMALL_STATE(4634)] = 174835, - [SMALL_STATE(4635)] = 174860, - [SMALL_STATE(4636)] = 174885, - [SMALL_STATE(4637)] = 174910, - [SMALL_STATE(4638)] = 174935, - [SMALL_STATE(4639)] = 174960, - [SMALL_STATE(4640)] = 174989, - [SMALL_STATE(4641)] = 175014, - [SMALL_STATE(4642)] = 175039, - [SMALL_STATE(4643)] = 175064, - [SMALL_STATE(4644)] = 175089, - [SMALL_STATE(4645)] = 175114, - [SMALL_STATE(4646)] = 175143, - [SMALL_STATE(4647)] = 175168, - [SMALL_STATE(4648)] = 175193, - [SMALL_STATE(4649)] = 175218, - [SMALL_STATE(4650)] = 175243, - [SMALL_STATE(4651)] = 175268, - [SMALL_STATE(4652)] = 175293, - [SMALL_STATE(4653)] = 175318, - [SMALL_STATE(4654)] = 175343, - [SMALL_STATE(4655)] = 175368, - [SMALL_STATE(4656)] = 175393, - [SMALL_STATE(4657)] = 175418, - [SMALL_STATE(4658)] = 175447, - [SMALL_STATE(4659)] = 175472, - [SMALL_STATE(4660)] = 175497, - [SMALL_STATE(4661)] = 175522, - [SMALL_STATE(4662)] = 175547, - [SMALL_STATE(4663)] = 175572, - [SMALL_STATE(4664)] = 175601, - [SMALL_STATE(4665)] = 175626, - [SMALL_STATE(4666)] = 175651, - [SMALL_STATE(4667)] = 175676, - [SMALL_STATE(4668)] = 175705, - [SMALL_STATE(4669)] = 175734, - [SMALL_STATE(4670)] = 175763, - [SMALL_STATE(4671)] = 175792, - [SMALL_STATE(4672)] = 175821, - [SMALL_STATE(4673)] = 175848, - [SMALL_STATE(4674)] = 175873, - [SMALL_STATE(4675)] = 175898, - [SMALL_STATE(4676)] = 175925, - [SMALL_STATE(4677)] = 175950, - [SMALL_STATE(4678)] = 175977, - [SMALL_STATE(4679)] = 176004, - [SMALL_STATE(4680)] = 176029, - [SMALL_STATE(4681)] = 176054, - [SMALL_STATE(4682)] = 176083, - [SMALL_STATE(4683)] = 176110, - [SMALL_STATE(4684)] = 176135, - [SMALL_STATE(4685)] = 176164, - [SMALL_STATE(4686)] = 176193, - [SMALL_STATE(4687)] = 176218, - [SMALL_STATE(4688)] = 176245, - [SMALL_STATE(4689)] = 176274, - [SMALL_STATE(4690)] = 176299, - [SMALL_STATE(4691)] = 176324, - [SMALL_STATE(4692)] = 176353, - [SMALL_STATE(4693)] = 176378, - [SMALL_STATE(4694)] = 176403, - [SMALL_STATE(4695)] = 176428, - [SMALL_STATE(4696)] = 176457, - [SMALL_STATE(4697)] = 176486, - [SMALL_STATE(4698)] = 176511, - [SMALL_STATE(4699)] = 176540, - [SMALL_STATE(4700)] = 176569, - [SMALL_STATE(4701)] = 176594, - [SMALL_STATE(4702)] = 176623, - [SMALL_STATE(4703)] = 176648, - [SMALL_STATE(4704)] = 176675, - [SMALL_STATE(4705)] = 176698, - [SMALL_STATE(4706)] = 176727, - [SMALL_STATE(4707)] = 176756, - [SMALL_STATE(4708)] = 176783, - [SMALL_STATE(4709)] = 176808, - [SMALL_STATE(4710)] = 176833, - [SMALL_STATE(4711)] = 176862, - [SMALL_STATE(4712)] = 176903, - [SMALL_STATE(4713)] = 176928, - [SMALL_STATE(4714)] = 176957, - [SMALL_STATE(4715)] = 176982, - [SMALL_STATE(4716)] = 177007, - [SMALL_STATE(4717)] = 177032, - [SMALL_STATE(4718)] = 177057, - [SMALL_STATE(4719)] = 177082, - [SMALL_STATE(4720)] = 177107, - [SMALL_STATE(4721)] = 177132, - [SMALL_STATE(4722)] = 177157, - [SMALL_STATE(4723)] = 177182, - [SMALL_STATE(4724)] = 177207, - [SMALL_STATE(4725)] = 177232, - [SMALL_STATE(4726)] = 177255, - [SMALL_STATE(4727)] = 177280, - [SMALL_STATE(4728)] = 177307, - [SMALL_STATE(4729)] = 177338, - [SMALL_STATE(4730)] = 177363, - [SMALL_STATE(4731)] = 177390, - [SMALL_STATE(4732)] = 177415, - [SMALL_STATE(4733)] = 177440, - [SMALL_STATE(4734)] = 177469, - [SMALL_STATE(4735)] = 177494, - [SMALL_STATE(4736)] = 177523, - [SMALL_STATE(4737)] = 177552, - [SMALL_STATE(4738)] = 177577, - [SMALL_STATE(4739)] = 177602, - [SMALL_STATE(4740)] = 177627, - [SMALL_STATE(4741)] = 177656, - [SMALL_STATE(4742)] = 177679, - [SMALL_STATE(4743)] = 177710, - [SMALL_STATE(4744)] = 177735, - [SMALL_STATE(4745)] = 177760, - [SMALL_STATE(4746)] = 177785, - [SMALL_STATE(4747)] = 177810, - [SMALL_STATE(4748)] = 177835, - [SMALL_STATE(4749)] = 177862, - [SMALL_STATE(4750)] = 177887, - [SMALL_STATE(4751)] = 177916, - [SMALL_STATE(4752)] = 177945, - [SMALL_STATE(4753)] = 177974, - [SMALL_STATE(4754)] = 178003, - [SMALL_STATE(4755)] = 178028, - [SMALL_STATE(4756)] = 178053, - [SMALL_STATE(4757)] = 178084, - [SMALL_STATE(4758)] = 178113, - [SMALL_STATE(4759)] = 178138, - [SMALL_STATE(4760)] = 178163, - [SMALL_STATE(4761)] = 178186, - [SMALL_STATE(4762)] = 178217, - [SMALL_STATE(4763)] = 178244, - [SMALL_STATE(4764)] = 178273, - [SMALL_STATE(4765)] = 178298, - [SMALL_STATE(4766)] = 178325, - [SMALL_STATE(4767)] = 178354, - [SMALL_STATE(4768)] = 178379, - [SMALL_STATE(4769)] = 178404, - [SMALL_STATE(4770)] = 178431, - [SMALL_STATE(4771)] = 178460, - [SMALL_STATE(4772)] = 178489, - [SMALL_STATE(4773)] = 178518, - [SMALL_STATE(4774)] = 178543, - [SMALL_STATE(4775)] = 178568, - [SMALL_STATE(4776)] = 178597, - [SMALL_STATE(4777)] = 178622, - [SMALL_STATE(4778)] = 178647, - [SMALL_STATE(4779)] = 178672, - [SMALL_STATE(4780)] = 178701, - [SMALL_STATE(4781)] = 178724, - [SMALL_STATE(4782)] = 178749, - [SMALL_STATE(4783)] = 178774, - [SMALL_STATE(4784)] = 178799, - [SMALL_STATE(4785)] = 178822, - [SMALL_STATE(4786)] = 178847, - [SMALL_STATE(4787)] = 178876, - [SMALL_STATE(4788)] = 178905, - [SMALL_STATE(4789)] = 178934, - [SMALL_STATE(4790)] = 178963, - [SMALL_STATE(4791)] = 178992, - [SMALL_STATE(4792)] = 179017, - [SMALL_STATE(4793)] = 179042, - [SMALL_STATE(4794)] = 179067, - [SMALL_STATE(4795)] = 179092, - [SMALL_STATE(4796)] = 179117, - [SMALL_STATE(4797)] = 179142, - [SMALL_STATE(4798)] = 179168, - [SMALL_STATE(4799)] = 179192, - [SMALL_STATE(4800)] = 179216, - [SMALL_STATE(4801)] = 179240, - [SMALL_STATE(4802)] = 179264, - [SMALL_STATE(4803)] = 179288, - [SMALL_STATE(4804)] = 179312, - [SMALL_STATE(4805)] = 179336, - [SMALL_STATE(4806)] = 179360, - [SMALL_STATE(4807)] = 179384, - [SMALL_STATE(4808)] = 179408, - [SMALL_STATE(4809)] = 179430, - [SMALL_STATE(4810)] = 179452, - [SMALL_STATE(4811)] = 179476, - [SMALL_STATE(4812)] = 179500, - [SMALL_STATE(4813)] = 179522, - [SMALL_STATE(4814)] = 179546, - [SMALL_STATE(4815)] = 179588, - [SMALL_STATE(4816)] = 179612, - [SMALL_STATE(4817)] = 179636, - [SMALL_STATE(4818)] = 179674, - [SMALL_STATE(4819)] = 179698, - [SMALL_STATE(4820)] = 179732, - [SMALL_STATE(4821)] = 179756, - [SMALL_STATE(4822)] = 179802, - [SMALL_STATE(4823)] = 179826, - [SMALL_STATE(4824)] = 179852, - [SMALL_STATE(4825)] = 179874, - [SMALL_STATE(4826)] = 179912, - [SMALL_STATE(4827)] = 179936, - [SMALL_STATE(4828)] = 179958, - [SMALL_STATE(4829)] = 180004, - [SMALL_STATE(4830)] = 180028, - [SMALL_STATE(4831)] = 180074, - [SMALL_STATE(4832)] = 180098, - [SMALL_STATE(4833)] = 180122, - [SMALL_STATE(4834)] = 180146, - [SMALL_STATE(4835)] = 180192, - [SMALL_STATE(4836)] = 180216, - [SMALL_STATE(4837)] = 180240, - [SMALL_STATE(4838)] = 180264, - [SMALL_STATE(4839)] = 180286, - [SMALL_STATE(4840)] = 180310, - [SMALL_STATE(4841)] = 180336, - [SMALL_STATE(4842)] = 180362, - [SMALL_STATE(4843)] = 180386, - [SMALL_STATE(4844)] = 180410, - [SMALL_STATE(4845)] = 180456, - [SMALL_STATE(4846)] = 180480, - [SMALL_STATE(4847)] = 180526, - [SMALL_STATE(4848)] = 180550, - [SMALL_STATE(4849)] = 180574, - [SMALL_STATE(4850)] = 180598, - [SMALL_STATE(4851)] = 180622, - [SMALL_STATE(4852)] = 180646, - [SMALL_STATE(4853)] = 180670, - [SMALL_STATE(4854)] = 180694, - [SMALL_STATE(4855)] = 180718, - [SMALL_STATE(4856)] = 180742, - [SMALL_STATE(4857)] = 180766, - [SMALL_STATE(4858)] = 180790, - [SMALL_STATE(4859)] = 180814, - [SMALL_STATE(4860)] = 180840, - [SMALL_STATE(4861)] = 180864, - [SMALL_STATE(4862)] = 180888, - [SMALL_STATE(4863)] = 180910, - [SMALL_STATE(4864)] = 180932, - [SMALL_STATE(4865)] = 180976, - [SMALL_STATE(4866)] = 181020, - [SMALL_STATE(4867)] = 181044, - [SMALL_STATE(4868)] = 181068, - [SMALL_STATE(4869)] = 181092, - [SMALL_STATE(4870)] = 181116, - [SMALL_STATE(4871)] = 181138, - [SMALL_STATE(4872)] = 181160, - [SMALL_STATE(4873)] = 181184, - [SMALL_STATE(4874)] = 181208, - [SMALL_STATE(4875)] = 181230, - [SMALL_STATE(4876)] = 181252, - [SMALL_STATE(4877)] = 181276, - [SMALL_STATE(4878)] = 181300, - [SMALL_STATE(4879)] = 181324, - [SMALL_STATE(4880)] = 181348, - [SMALL_STATE(4881)] = 181394, - [SMALL_STATE(4882)] = 181418, - [SMALL_STATE(4883)] = 181442, - [SMALL_STATE(4884)] = 181466, - [SMALL_STATE(4885)] = 181508, - [SMALL_STATE(4886)] = 181532, - [SMALL_STATE(4887)] = 181578, - [SMALL_STATE(4888)] = 181602, - [SMALL_STATE(4889)] = 181642, - [SMALL_STATE(4890)] = 181666, - [SMALL_STATE(4891)] = 181708, - [SMALL_STATE(4892)] = 181748, - [SMALL_STATE(4893)] = 181772, - [SMALL_STATE(4894)] = 181796, - [SMALL_STATE(4895)] = 181820, - [SMALL_STATE(4896)] = 181844, - [SMALL_STATE(4897)] = 181868, - [SMALL_STATE(4898)] = 181890, - [SMALL_STATE(4899)] = 181914, - [SMALL_STATE(4900)] = 181938, - [SMALL_STATE(4901)] = 181962, - [SMALL_STATE(4902)] = 181986, - [SMALL_STATE(4903)] = 182010, - [SMALL_STATE(4904)] = 182034, - [SMALL_STATE(4905)] = 182056, - [SMALL_STATE(4906)] = 182080, - [SMALL_STATE(4907)] = 182102, - [SMALL_STATE(4908)] = 182128, - [SMALL_STATE(4909)] = 182152, - [SMALL_STATE(4910)] = 182176, - [SMALL_STATE(4911)] = 182200, - [SMALL_STATE(4912)] = 182224, - [SMALL_STATE(4913)] = 182248, - [SMALL_STATE(4914)] = 182272, - [SMALL_STATE(4915)] = 182300, - [SMALL_STATE(4916)] = 182328, - [SMALL_STATE(4917)] = 182356, - [SMALL_STATE(4918)] = 182384, - [SMALL_STATE(4919)] = 182412, - [SMALL_STATE(4920)] = 182440, - [SMALL_STATE(4921)] = 182468, - [SMALL_STATE(4922)] = 182496, - [SMALL_STATE(4923)] = 182524, - [SMALL_STATE(4924)] = 182552, - [SMALL_STATE(4925)] = 182580, - [SMALL_STATE(4926)] = 182608, - [SMALL_STATE(4927)] = 182632, - [SMALL_STATE(4928)] = 182670, - [SMALL_STATE(4929)] = 182694, - [SMALL_STATE(4930)] = 182718, - [SMALL_STATE(4931)] = 182742, - [SMALL_STATE(4932)] = 182766, - [SMALL_STATE(4933)] = 182790, - [SMALL_STATE(4934)] = 182814, - [SMALL_STATE(4935)] = 182838, - [SMALL_STATE(4936)] = 182862, - [SMALL_STATE(4937)] = 182886, - [SMALL_STATE(4938)] = 182910, - [SMALL_STATE(4939)] = 182934, - [SMALL_STATE(4940)] = 182958, - [SMALL_STATE(4941)] = 182982, - [SMALL_STATE(4942)] = 183006, - [SMALL_STATE(4943)] = 183030, - [SMALL_STATE(4944)] = 183052, - [SMALL_STATE(4945)] = 183076, - [SMALL_STATE(4946)] = 183102, - [SMALL_STATE(4947)] = 183126, - [SMALL_STATE(4948)] = 183150, - [SMALL_STATE(4949)] = 183174, - [SMALL_STATE(4950)] = 183198, - [SMALL_STATE(4951)] = 183224, - [SMALL_STATE(4952)] = 183248, - [SMALL_STATE(4953)] = 183272, - [SMALL_STATE(4954)] = 183296, - [SMALL_STATE(4955)] = 183320, - [SMALL_STATE(4956)] = 183344, - [SMALL_STATE(4957)] = 183366, - [SMALL_STATE(4958)] = 183390, - [SMALL_STATE(4959)] = 183414, - [SMALL_STATE(4960)] = 183460, - [SMALL_STATE(4961)] = 183484, - [SMALL_STATE(4962)] = 183506, - [SMALL_STATE(4963)] = 183530, - [SMALL_STATE(4964)] = 183554, - [SMALL_STATE(4965)] = 183578, - [SMALL_STATE(4966)] = 183602, - [SMALL_STATE(4967)] = 183626, - [SMALL_STATE(4968)] = 183650, - [SMALL_STATE(4969)] = 183674, - [SMALL_STATE(4970)] = 183698, - [SMALL_STATE(4971)] = 183722, - [SMALL_STATE(4972)] = 183746, - [SMALL_STATE(4973)] = 183770, - [SMALL_STATE(4974)] = 183816, - [SMALL_STATE(4975)] = 183840, - [SMALL_STATE(4976)] = 183864, - [SMALL_STATE(4977)] = 183886, - [SMALL_STATE(4978)] = 183908, - [SMALL_STATE(4979)] = 183932, - [SMALL_STATE(4980)] = 183954, - [SMALL_STATE(4981)] = 183978, - [SMALL_STATE(4982)] = 184002, - [SMALL_STATE(4983)] = 184024, - [SMALL_STATE(4984)] = 184048, - [SMALL_STATE(4985)] = 184072, - [SMALL_STATE(4986)] = 184096, - [SMALL_STATE(4987)] = 184118, - [SMALL_STATE(4988)] = 184140, - [SMALL_STATE(4989)] = 184164, - [SMALL_STATE(4990)] = 184188, - [SMALL_STATE(4991)] = 184228, - [SMALL_STATE(4992)] = 184252, - [SMALL_STATE(4993)] = 184276, - [SMALL_STATE(4994)] = 184300, - [SMALL_STATE(4995)] = 184324, - [SMALL_STATE(4996)] = 184348, - [SMALL_STATE(4997)] = 184372, - [SMALL_STATE(4998)] = 184396, - [SMALL_STATE(4999)] = 184418, - [SMALL_STATE(5000)] = 184442, - [SMALL_STATE(5001)] = 184466, - [SMALL_STATE(5002)] = 184490, - [SMALL_STATE(5003)] = 184514, - [SMALL_STATE(5004)] = 184538, - [SMALL_STATE(5005)] = 184562, - [SMALL_STATE(5006)] = 184586, - [SMALL_STATE(5007)] = 184610, - [SMALL_STATE(5008)] = 184647, - [SMALL_STATE(5009)] = 184686, - [SMALL_STATE(5010)] = 184709, - [SMALL_STATE(5011)] = 184732, - [SMALL_STATE(5012)] = 184759, - [SMALL_STATE(5013)] = 184786, - [SMALL_STATE(5014)] = 184807, - [SMALL_STATE(5015)] = 184828, - [SMALL_STATE(5016)] = 184849, - [SMALL_STATE(5017)] = 184870, - [SMALL_STATE(5018)] = 184897, - [SMALL_STATE(5019)] = 184936, - [SMALL_STATE(5020)] = 184975, - [SMALL_STATE(5021)] = 185014, - [SMALL_STATE(5022)] = 185035, - [SMALL_STATE(5023)] = 185074, - [SMALL_STATE(5024)] = 185095, - [SMALL_STATE(5025)] = 185116, - [SMALL_STATE(5026)] = 185139, - [SMALL_STATE(5027)] = 185160, - [SMALL_STATE(5028)] = 185183, - [SMALL_STATE(5029)] = 185206, - [SMALL_STATE(5030)] = 185229, - [SMALL_STATE(5031)] = 185252, - [SMALL_STATE(5032)] = 185275, - [SMALL_STATE(5033)] = 185298, - [SMALL_STATE(5034)] = 185321, - [SMALL_STATE(5035)] = 185344, - [SMALL_STATE(5036)] = 185367, - [SMALL_STATE(5037)] = 185390, - [SMALL_STATE(5038)] = 185413, - [SMALL_STATE(5039)] = 185436, - [SMALL_STATE(5040)] = 185459, - [SMALL_STATE(5041)] = 185482, - [SMALL_STATE(5042)] = 185505, - [SMALL_STATE(5043)] = 185528, - [SMALL_STATE(5044)] = 185551, - [SMALL_STATE(5045)] = 185574, - [SMALL_STATE(5046)] = 185597, - [SMALL_STATE(5047)] = 185620, - [SMALL_STATE(5048)] = 185643, - [SMALL_STATE(5049)] = 185664, - [SMALL_STATE(5050)] = 185685, - [SMALL_STATE(5051)] = 185708, - [SMALL_STATE(5052)] = 185731, - [SMALL_STATE(5053)] = 185754, - [SMALL_STATE(5054)] = 185777, - [SMALL_STATE(5055)] = 185800, - [SMALL_STATE(5056)] = 185821, - [SMALL_STATE(5057)] = 185844, - [SMALL_STATE(5058)] = 185871, - [SMALL_STATE(5059)] = 185892, - [SMALL_STATE(5060)] = 185915, - [SMALL_STATE(5061)] = 185936, - [SMALL_STATE(5062)] = 185977, - [SMALL_STATE(5063)] = 186000, - [SMALL_STATE(5064)] = 186021, - [SMALL_STATE(5065)] = 186062, - [SMALL_STATE(5066)] = 186083, - [SMALL_STATE(5067)] = 186104, - [SMALL_STATE(5068)] = 186127, - [SMALL_STATE(5069)] = 186150, - [SMALL_STATE(5070)] = 186173, - [SMALL_STATE(5071)] = 186196, - [SMALL_STATE(5072)] = 186223, - [SMALL_STATE(5073)] = 186246, - [SMALL_STATE(5074)] = 186267, - [SMALL_STATE(5075)] = 186288, - [SMALL_STATE(5076)] = 186309, - [SMALL_STATE(5077)] = 186330, - [SMALL_STATE(5078)] = 186351, - [SMALL_STATE(5079)] = 186372, - [SMALL_STATE(5080)] = 186393, - [SMALL_STATE(5081)] = 186414, - [SMALL_STATE(5082)] = 186441, - [SMALL_STATE(5083)] = 186482, - [SMALL_STATE(5084)] = 186509, - [SMALL_STATE(5085)] = 186530, - [SMALL_STATE(5086)] = 186551, - [SMALL_STATE(5087)] = 186592, - [SMALL_STATE(5088)] = 186613, - [SMALL_STATE(5089)] = 186654, - [SMALL_STATE(5090)] = 186691, - [SMALL_STATE(5091)] = 186732, - [SMALL_STATE(5092)] = 186753, - [SMALL_STATE(5093)] = 186774, - [SMALL_STATE(5094)] = 186795, - [SMALL_STATE(5095)] = 186816, - [SMALL_STATE(5096)] = 186837, - [SMALL_STATE(5097)] = 186860, - [SMALL_STATE(5098)] = 186897, - [SMALL_STATE(5099)] = 186918, - [SMALL_STATE(5100)] = 186939, - [SMALL_STATE(5101)] = 186960, - [SMALL_STATE(5102)] = 186981, - [SMALL_STATE(5103)] = 187002, - [SMALL_STATE(5104)] = 187023, - [SMALL_STATE(5105)] = 187044, - [SMALL_STATE(5106)] = 187065, - [SMALL_STATE(5107)] = 187086, - [SMALL_STATE(5108)] = 187107, - [SMALL_STATE(5109)] = 187128, - [SMALL_STATE(5110)] = 187149, - [SMALL_STATE(5111)] = 187170, - [SMALL_STATE(5112)] = 187191, - [SMALL_STATE(5113)] = 187224, - [SMALL_STATE(5114)] = 187245, - [SMALL_STATE(5115)] = 187266, - [SMALL_STATE(5116)] = 187307, - [SMALL_STATE(5117)] = 187328, - [SMALL_STATE(5118)] = 187349, - [SMALL_STATE(5119)] = 187370, - [SMALL_STATE(5120)] = 187391, - [SMALL_STATE(5121)] = 187412, - [SMALL_STATE(5122)] = 187433, - [SMALL_STATE(5123)] = 187454, - [SMALL_STATE(5124)] = 187475, - [SMALL_STATE(5125)] = 187496, - [SMALL_STATE(5126)] = 187517, - [SMALL_STATE(5127)] = 187538, - [SMALL_STATE(5128)] = 187559, - [SMALL_STATE(5129)] = 187580, - [SMALL_STATE(5130)] = 187601, - [SMALL_STATE(5131)] = 187622, - [SMALL_STATE(5132)] = 187643, - [SMALL_STATE(5133)] = 187664, - [SMALL_STATE(5134)] = 187691, - [SMALL_STATE(5135)] = 187712, - [SMALL_STATE(5136)] = 187733, - [SMALL_STATE(5137)] = 187754, - [SMALL_STATE(5138)] = 187795, - [SMALL_STATE(5139)] = 187818, - [SMALL_STATE(5140)] = 187845, - [SMALL_STATE(5141)] = 187868, - [SMALL_STATE(5142)] = 187907, - [SMALL_STATE(5143)] = 187948, - [SMALL_STATE(5144)] = 187987, - [SMALL_STATE(5145)] = 188014, - [SMALL_STATE(5146)] = 188041, - [SMALL_STATE(5147)] = 188068, - [SMALL_STATE(5148)] = 188095, - [SMALL_STATE(5149)] = 188116, - [SMALL_STATE(5150)] = 188137, - [SMALL_STATE(5151)] = 188164, - [SMALL_STATE(5152)] = 188191, - [SMALL_STATE(5153)] = 188218, - [SMALL_STATE(5154)] = 188245, - [SMALL_STATE(5155)] = 188286, - [SMALL_STATE(5156)] = 188313, - [SMALL_STATE(5157)] = 188340, - [SMALL_STATE(5158)] = 188367, - [SMALL_STATE(5159)] = 188394, - [SMALL_STATE(5160)] = 188431, - [SMALL_STATE(5161)] = 188468, - [SMALL_STATE(5162)] = 188505, - [SMALL_STATE(5163)] = 188542, - [SMALL_STATE(5164)] = 188579, - [SMALL_STATE(5165)] = 188606, - [SMALL_STATE(5166)] = 188633, - [SMALL_STATE(5167)] = 188654, - [SMALL_STATE(5168)] = 188689, - [SMALL_STATE(5169)] = 188724, - [SMALL_STATE(5170)] = 188759, - [SMALL_STATE(5171)] = 188794, - [SMALL_STATE(5172)] = 188815, - [SMALL_STATE(5173)] = 188838, - [SMALL_STATE(5174)] = 188861, - [SMALL_STATE(5175)] = 188884, - [SMALL_STATE(5176)] = 188905, - [SMALL_STATE(5177)] = 188942, - [SMALL_STATE(5178)] = 188979, - [SMALL_STATE(5179)] = 189000, - [SMALL_STATE(5180)] = 189026, - [SMALL_STATE(5181)] = 189056, - [SMALL_STATE(5182)] = 189086, - [SMALL_STATE(5183)] = 189116, - [SMALL_STATE(5184)] = 189146, - [SMALL_STATE(5185)] = 189176, - [SMALL_STATE(5186)] = 189206, - [SMALL_STATE(5187)] = 189236, - [SMALL_STATE(5188)] = 189266, - [SMALL_STATE(5189)] = 189296, - [SMALL_STATE(5190)] = 189326, - [SMALL_STATE(5191)] = 189356, - [SMALL_STATE(5192)] = 189386, - [SMALL_STATE(5193)] = 189416, - [SMALL_STATE(5194)] = 189446, - [SMALL_STATE(5195)] = 189476, - [SMALL_STATE(5196)] = 189506, - [SMALL_STATE(5197)] = 189538, - [SMALL_STATE(5198)] = 189568, - [SMALL_STATE(5199)] = 189604, - [SMALL_STATE(5200)] = 189634, - [SMALL_STATE(5201)] = 189658, - [SMALL_STATE(5202)] = 189688, - [SMALL_STATE(5203)] = 189718, - [SMALL_STATE(5204)] = 189748, - [SMALL_STATE(5205)] = 189778, - [SMALL_STATE(5206)] = 189808, - [SMALL_STATE(5207)] = 189842, - [SMALL_STATE(5208)] = 189874, - [SMALL_STATE(5209)] = 189912, - [SMALL_STATE(5210)] = 189938, - [SMALL_STATE(5211)] = 189974, - [SMALL_STATE(5212)] = 190006, - [SMALL_STATE(5213)] = 190040, - [SMALL_STATE(5214)] = 190064, - [SMALL_STATE(5215)] = 190090, - [SMALL_STATE(5216)] = 190120, - [SMALL_STATE(5217)] = 190156, - [SMALL_STATE(5218)] = 190182, - [SMALL_STATE(5219)] = 190210, - [SMALL_STATE(5220)] = 190236, - [SMALL_STATE(5221)] = 190268, - [SMALL_STATE(5222)] = 190302, - [SMALL_STATE(5223)] = 190326, - [SMALL_STATE(5224)] = 190360, - [SMALL_STATE(5225)] = 190394, - [SMALL_STATE(5226)] = 190430, - [SMALL_STATE(5227)] = 190452, - [SMALL_STATE(5228)] = 190490, - [SMALL_STATE(5229)] = 190526, - [SMALL_STATE(5230)] = 190550, - [SMALL_STATE(5231)] = 190574, - [SMALL_STATE(5232)] = 190598, - [SMALL_STATE(5233)] = 190634, - [SMALL_STATE(5234)] = 190666, - [SMALL_STATE(5235)] = 190690, - [SMALL_STATE(5236)] = 190716, - [SMALL_STATE(5237)] = 190740, - [SMALL_STATE(5238)] = 190776, - [SMALL_STATE(5239)] = 190812, - [SMALL_STATE(5240)] = 190838, - [SMALL_STATE(5241)] = 190864, - [SMALL_STATE(5242)] = 190890, - [SMALL_STATE(5243)] = 190916, - [SMALL_STATE(5244)] = 190942, - [SMALL_STATE(5245)] = 190978, - [SMALL_STATE(5246)] = 191012, - [SMALL_STATE(5247)] = 191038, - [SMALL_STATE(5248)] = 191064, - [SMALL_STATE(5249)] = 191099, - [SMALL_STATE(5250)] = 191122, - [SMALL_STATE(5251)] = 191143, - [SMALL_STATE(5252)] = 191166, - [SMALL_STATE(5253)] = 191187, - [SMALL_STATE(5254)] = 191222, - [SMALL_STATE(5255)] = 191247, - [SMALL_STATE(5256)] = 191278, - [SMALL_STATE(5257)] = 191307, - [SMALL_STATE(5258)] = 191332, - [SMALL_STATE(5259)] = 191365, - [SMALL_STATE(5260)] = 191400, - [SMALL_STATE(5261)] = 191435, - [SMALL_STATE(5262)] = 191470, - [SMALL_STATE(5263)] = 191501, - [SMALL_STATE(5264)] = 191536, - [SMALL_STATE(5265)] = 191571, - [SMALL_STATE(5266)] = 191606, - [SMALL_STATE(5267)] = 191641, - [SMALL_STATE(5268)] = 191670, - [SMALL_STATE(5269)] = 191695, - [SMALL_STATE(5270)] = 191724, - [SMALL_STATE(5271)] = 191759, - [SMALL_STATE(5272)] = 191794, - [SMALL_STATE(5273)] = 191827, - [SMALL_STATE(5274)] = 191848, - [SMALL_STATE(5275)] = 191877, - [SMALL_STATE(5276)] = 191912, - [SMALL_STATE(5277)] = 191947, - [SMALL_STATE(5278)] = 191982, - [SMALL_STATE(5279)] = 192015, - [SMALL_STATE(5280)] = 192050, - [SMALL_STATE(5281)] = 192085, - [SMALL_STATE(5282)] = 192120, - [SMALL_STATE(5283)] = 192155, - [SMALL_STATE(5284)] = 192188, - [SMALL_STATE(5285)] = 192217, - [SMALL_STATE(5286)] = 192246, - [SMALL_STATE(5287)] = 192269, - [SMALL_STATE(5288)] = 192292, - [SMALL_STATE(5289)] = 192321, - [SMALL_STATE(5290)] = 192356, - [SMALL_STATE(5291)] = 192377, - [SMALL_STATE(5292)] = 192406, - [SMALL_STATE(5293)] = 192429, - [SMALL_STATE(5294)] = 192464, - [SMALL_STATE(5295)] = 192493, - [SMALL_STATE(5296)] = 192528, - [SMALL_STATE(5297)] = 192557, - [SMALL_STATE(5298)] = 192586, - [SMALL_STATE(5299)] = 192615, - [SMALL_STATE(5300)] = 192644, - [SMALL_STATE(5301)] = 192673, - [SMALL_STATE(5302)] = 192702, - [SMALL_STATE(5303)] = 192731, - [SMALL_STATE(5304)] = 192760, - [SMALL_STATE(5305)] = 192783, - [SMALL_STATE(5306)] = 192812, - [SMALL_STATE(5307)] = 192841, - [SMALL_STATE(5308)] = 192870, - [SMALL_STATE(5309)] = 192899, - [SMALL_STATE(5310)] = 192928, - [SMALL_STATE(5311)] = 192957, - [SMALL_STATE(5312)] = 192986, - [SMALL_STATE(5313)] = 193015, - [SMALL_STATE(5314)] = 193050, - [SMALL_STATE(5315)] = 193085, - [SMALL_STATE(5316)] = 193118, - [SMALL_STATE(5317)] = 193151, - [SMALL_STATE(5318)] = 193184, - [SMALL_STATE(5319)] = 193205, - [SMALL_STATE(5320)] = 193234, - [SMALL_STATE(5321)] = 193269, - [SMALL_STATE(5322)] = 193304, - [SMALL_STATE(5323)] = 193339, - [SMALL_STATE(5324)] = 193374, - [SMALL_STATE(5325)] = 193395, - [SMALL_STATE(5326)] = 193418, - [SMALL_STATE(5327)] = 193443, - [SMALL_STATE(5328)] = 193468, - [SMALL_STATE(5329)] = 193503, - [SMALL_STATE(5330)] = 193528, - [SMALL_STATE(5331)] = 193555, - [SMALL_STATE(5332)] = 193590, - [SMALL_STATE(5333)] = 193625, - [SMALL_STATE(5334)] = 193658, - [SMALL_STATE(5335)] = 193683, - [SMALL_STATE(5336)] = 193704, - [SMALL_STATE(5337)] = 193735, - [SMALL_STATE(5338)] = 193760, - [SMALL_STATE(5339)] = 193795, - [SMALL_STATE(5340)] = 193830, - [SMALL_STATE(5341)] = 193859, - [SMALL_STATE(5342)] = 193884, - [SMALL_STATE(5343)] = 193905, - [SMALL_STATE(5344)] = 193926, - [SMALL_STATE(5345)] = 193961, - [SMALL_STATE(5346)] = 193982, - [SMALL_STATE(5347)] = 194011, - [SMALL_STATE(5348)] = 194032, - [SMALL_STATE(5349)] = 194065, - [SMALL_STATE(5350)] = 194094, - [SMALL_STATE(5351)] = 194127, - [SMALL_STATE(5352)] = 194162, - [SMALL_STATE(5353)] = 194183, - [SMALL_STATE(5354)] = 194218, - [SMALL_STATE(5355)] = 194239, - [SMALL_STATE(5356)] = 194268, - [SMALL_STATE(5357)] = 194291, - [SMALL_STATE(5358)] = 194316, - [SMALL_STATE(5359)] = 194339, - [SMALL_STATE(5360)] = 194368, - [SMALL_STATE(5361)] = 194398, - [SMALL_STATE(5362)] = 194418, - [SMALL_STATE(5363)] = 194440, - [SMALL_STATE(5364)] = 194470, - [SMALL_STATE(5365)] = 194500, - [SMALL_STATE(5366)] = 194526, - [SMALL_STATE(5367)] = 194556, - [SMALL_STATE(5368)] = 194586, - [SMALL_STATE(5369)] = 194616, - [SMALL_STATE(5370)] = 194640, - [SMALL_STATE(5371)] = 194670, - [SMALL_STATE(5372)] = 194700, - [SMALL_STATE(5373)] = 194724, - [SMALL_STATE(5374)] = 194754, - [SMALL_STATE(5375)] = 194784, - [SMALL_STATE(5376)] = 194812, - [SMALL_STATE(5377)] = 194838, - [SMALL_STATE(5378)] = 194870, - [SMALL_STATE(5379)] = 194900, - [SMALL_STATE(5380)] = 194930, - [SMALL_STATE(5381)] = 194952, - [SMALL_STATE(5382)] = 194982, - [SMALL_STATE(5383)] = 195010, - [SMALL_STATE(5384)] = 195040, - [SMALL_STATE(5385)] = 195070, - [SMALL_STATE(5386)] = 195100, - [SMALL_STATE(5387)] = 195130, - [SMALL_STATE(5388)] = 195160, - [SMALL_STATE(5389)] = 195190, - [SMALL_STATE(5390)] = 195222, - [SMALL_STATE(5391)] = 195242, - [SMALL_STATE(5392)] = 195272, - [SMALL_STATE(5393)] = 195302, - [SMALL_STATE(5394)] = 195332, - [SMALL_STATE(5395)] = 195362, - [SMALL_STATE(5396)] = 195392, - [SMALL_STATE(5397)] = 195412, - [SMALL_STATE(5398)] = 195442, - [SMALL_STATE(5399)] = 195472, - [SMALL_STATE(5400)] = 195502, - [SMALL_STATE(5401)] = 195532, - [SMALL_STATE(5402)] = 195552, - [SMALL_STATE(5403)] = 195582, - [SMALL_STATE(5404)] = 195612, - [SMALL_STATE(5405)] = 195640, - [SMALL_STATE(5406)] = 195664, - [SMALL_STATE(5407)] = 195684, - [SMALL_STATE(5408)] = 195708, - [SMALL_STATE(5409)] = 195740, - [SMALL_STATE(5410)] = 195762, - [SMALL_STATE(5411)] = 195790, - [SMALL_STATE(5412)] = 195822, - [SMALL_STATE(5413)] = 195842, - [SMALL_STATE(5414)] = 195866, - [SMALL_STATE(5415)] = 195886, - [SMALL_STATE(5416)] = 195908, - [SMALL_STATE(5417)] = 195938, - [SMALL_STATE(5418)] = 195966, - [SMALL_STATE(5419)] = 195990, - [SMALL_STATE(5420)] = 196010, - [SMALL_STATE(5421)] = 196032, - [SMALL_STATE(5422)] = 196062, - [SMALL_STATE(5423)] = 196084, - [SMALL_STATE(5424)] = 196108, - [SMALL_STATE(5425)] = 196134, - [SMALL_STATE(5426)] = 196164, - [SMALL_STATE(5427)] = 196186, - [SMALL_STATE(5428)] = 196214, - [SMALL_STATE(5429)] = 196244, - [SMALL_STATE(5430)] = 196268, - [SMALL_STATE(5431)] = 196296, - [SMALL_STATE(5432)] = 196324, - [SMALL_STATE(5433)] = 196348, - [SMALL_STATE(5434)] = 196372, - [SMALL_STATE(5435)] = 196392, - [SMALL_STATE(5436)] = 196424, - [SMALL_STATE(5437)] = 196452, - [SMALL_STATE(5438)] = 196472, - [SMALL_STATE(5439)] = 196502, - [SMALL_STATE(5440)] = 196524, - [SMALL_STATE(5441)] = 196546, - [SMALL_STATE(5442)] = 196576, - [SMALL_STATE(5443)] = 196604, - [SMALL_STATE(5444)] = 196628, - [SMALL_STATE(5445)] = 196658, - [SMALL_STATE(5446)] = 196682, - [SMALL_STATE(5447)] = 196712, - [SMALL_STATE(5448)] = 196742, - [SMALL_STATE(5449)] = 196772, - [SMALL_STATE(5450)] = 196802, - [SMALL_STATE(5451)] = 196828, - [SMALL_STATE(5452)] = 196856, - [SMALL_STATE(5453)] = 196884, - [SMALL_STATE(5454)] = 196912, - [SMALL_STATE(5455)] = 196940, - [SMALL_STATE(5456)] = 196970, - [SMALL_STATE(5457)] = 196996, - [SMALL_STATE(5458)] = 197020, - [SMALL_STATE(5459)] = 197040, - [SMALL_STATE(5460)] = 197068, - [SMALL_STATE(5461)] = 197098, - [SMALL_STATE(5462)] = 197118, - [SMALL_STATE(5463)] = 197142, - [SMALL_STATE(5464)] = 197166, - [SMALL_STATE(5465)] = 197196, - [SMALL_STATE(5466)] = 197226, - [SMALL_STATE(5467)] = 197256, - [SMALL_STATE(5468)] = 197286, - [SMALL_STATE(5469)] = 197306, - [SMALL_STATE(5470)] = 197334, - [SMALL_STATE(5471)] = 197364, - [SMALL_STATE(5472)] = 197394, - [SMALL_STATE(5473)] = 197424, - [SMALL_STATE(5474)] = 197446, - [SMALL_STATE(5475)] = 197466, - [SMALL_STATE(5476)] = 197486, - [SMALL_STATE(5477)] = 197506, - [SMALL_STATE(5478)] = 197526, - [SMALL_STATE(5479)] = 197554, - [SMALL_STATE(5480)] = 197578, - [SMALL_STATE(5481)] = 197606, - [SMALL_STATE(5482)] = 197626, - [SMALL_STATE(5483)] = 197654, - [SMALL_STATE(5484)] = 197682, - [SMALL_STATE(5485)] = 197710, - [SMALL_STATE(5486)] = 197730, - [SMALL_STATE(5487)] = 197750, - [SMALL_STATE(5488)] = 197778, - [SMALL_STATE(5489)] = 197798, - [SMALL_STATE(5490)] = 197826, - [SMALL_STATE(5491)] = 197854, - [SMALL_STATE(5492)] = 197884, - [SMALL_STATE(5493)] = 197912, - [SMALL_STATE(5494)] = 197940, - [SMALL_STATE(5495)] = 197960, - [SMALL_STATE(5496)] = 197980, - [SMALL_STATE(5497)] = 198008, - [SMALL_STATE(5498)] = 198028, - [SMALL_STATE(5499)] = 198060, - [SMALL_STATE(5500)] = 198084, - [SMALL_STATE(5501)] = 198101, - [SMALL_STATE(5502)] = 198122, - [SMALL_STATE(5503)] = 198143, - [SMALL_STATE(5504)] = 198164, - [SMALL_STATE(5505)] = 198191, - [SMALL_STATE(5506)] = 198218, - [SMALL_STATE(5507)] = 198241, - [SMALL_STATE(5508)] = 198262, - [SMALL_STATE(5509)] = 198291, - [SMALL_STATE(5510)] = 198312, - [SMALL_STATE(5511)] = 198333, - [SMALL_STATE(5512)] = 198352, - [SMALL_STATE(5513)] = 198373, - [SMALL_STATE(5514)] = 198398, - [SMALL_STATE(5515)] = 198419, - [SMALL_STATE(5516)] = 198438, - [SMALL_STATE(5517)] = 198461, - [SMALL_STATE(5518)] = 198478, - [SMALL_STATE(5519)] = 198497, - [SMALL_STATE(5520)] = 198516, - [SMALL_STATE(5521)] = 198535, - [SMALL_STATE(5522)] = 198554, - [SMALL_STATE(5523)] = 198573, - [SMALL_STATE(5524)] = 198592, - [SMALL_STATE(5525)] = 198611, - [SMALL_STATE(5526)] = 198636, - [SMALL_STATE(5527)] = 198655, - [SMALL_STATE(5528)] = 198684, - [SMALL_STATE(5529)] = 198705, - [SMALL_STATE(5530)] = 198726, - [SMALL_STATE(5531)] = 198747, - [SMALL_STATE(5532)] = 198768, - [SMALL_STATE(5533)] = 198787, - [SMALL_STATE(5534)] = 198806, - [SMALL_STATE(5535)] = 198825, - [SMALL_STATE(5536)] = 198844, - [SMALL_STATE(5537)] = 198865, - [SMALL_STATE(5538)] = 198882, - [SMALL_STATE(5539)] = 198899, - [SMALL_STATE(5540)] = 198926, - [SMALL_STATE(5541)] = 198943, - [SMALL_STATE(5542)] = 198960, - [SMALL_STATE(5543)] = 198977, - [SMALL_STATE(5544)] = 199000, - [SMALL_STATE(5545)] = 199017, - [SMALL_STATE(5546)] = 199044, - [SMALL_STATE(5547)] = 199071, - [SMALL_STATE(5548)] = 199094, - [SMALL_STATE(5549)] = 199121, - [SMALL_STATE(5550)] = 199140, - [SMALL_STATE(5551)] = 199159, - [SMALL_STATE(5552)] = 199186, - [SMALL_STATE(5553)] = 199207, - [SMALL_STATE(5554)] = 199234, - [SMALL_STATE(5555)] = 199253, - [SMALL_STATE(5556)] = 199274, - [SMALL_STATE(5557)] = 199301, - [SMALL_STATE(5558)] = 199320, - [SMALL_STATE(5559)] = 199339, - [SMALL_STATE(5560)] = 199366, - [SMALL_STATE(5561)] = 199393, - [SMALL_STATE(5562)] = 199420, - [SMALL_STATE(5563)] = 199443, - [SMALL_STATE(5564)] = 199462, - [SMALL_STATE(5565)] = 199489, - [SMALL_STATE(5566)] = 199516, - [SMALL_STATE(5567)] = 199535, - [SMALL_STATE(5568)] = 199562, - [SMALL_STATE(5569)] = 199583, - [SMALL_STATE(5570)] = 199610, - [SMALL_STATE(5571)] = 199637, - [SMALL_STATE(5572)] = 199664, - [SMALL_STATE(5573)] = 199691, - [SMALL_STATE(5574)] = 199718, - [SMALL_STATE(5575)] = 199745, - [SMALL_STATE(5576)] = 199772, - [SMALL_STATE(5577)] = 199799, - [SMALL_STATE(5578)] = 199826, - [SMALL_STATE(5579)] = 199853, - [SMALL_STATE(5580)] = 199880, - [SMALL_STATE(5581)] = 199907, - [SMALL_STATE(5582)] = 199934, - [SMALL_STATE(5583)] = 199961, - [SMALL_STATE(5584)] = 199988, - [SMALL_STATE(5585)] = 200015, - [SMALL_STATE(5586)] = 200042, - [SMALL_STATE(5587)] = 200069, - [SMALL_STATE(5588)] = 200096, - [SMALL_STATE(5589)] = 200123, - [SMALL_STATE(5590)] = 200150, - [SMALL_STATE(5591)] = 200177, - [SMALL_STATE(5592)] = 200204, - [SMALL_STATE(5593)] = 200231, - [SMALL_STATE(5594)] = 200258, - [SMALL_STATE(5595)] = 200285, - [SMALL_STATE(5596)] = 200312, - [SMALL_STATE(5597)] = 200339, - [SMALL_STATE(5598)] = 200358, - [SMALL_STATE(5599)] = 200377, - [SMALL_STATE(5600)] = 200404, - [SMALL_STATE(5601)] = 200423, - [SMALL_STATE(5602)] = 200442, - [SMALL_STATE(5603)] = 200461, - [SMALL_STATE(5604)] = 200480, - [SMALL_STATE(5605)] = 200499, - [SMALL_STATE(5606)] = 200518, - [SMALL_STATE(5607)] = 200547, - [SMALL_STATE(5608)] = 200566, - [SMALL_STATE(5609)] = 200587, - [SMALL_STATE(5610)] = 200608, - [SMALL_STATE(5611)] = 200629, - [SMALL_STATE(5612)] = 200648, - [SMALL_STATE(5613)] = 200669, - [SMALL_STATE(5614)] = 200690, - [SMALL_STATE(5615)] = 200711, - [SMALL_STATE(5616)] = 200730, - [SMALL_STATE(5617)] = 200749, - [SMALL_STATE(5618)] = 200770, - [SMALL_STATE(5619)] = 200797, - [SMALL_STATE(5620)] = 200814, - [SMALL_STATE(5621)] = 200833, - [SMALL_STATE(5622)] = 200860, - [SMALL_STATE(5623)] = 200877, - [SMALL_STATE(5624)] = 200894, - [SMALL_STATE(5625)] = 200911, - [SMALL_STATE(5626)] = 200930, - [SMALL_STATE(5627)] = 200957, - [SMALL_STATE(5628)] = 200976, - [SMALL_STATE(5629)] = 200995, - [SMALL_STATE(5630)] = 201024, - [SMALL_STATE(5631)] = 201045, - [SMALL_STATE(5632)] = 201071, - [SMALL_STATE(5633)] = 201097, - [SMALL_STATE(5634)] = 201123, - [SMALL_STATE(5635)] = 201141, - [SMALL_STATE(5636)] = 201159, - [SMALL_STATE(5637)] = 201179, - [SMALL_STATE(5638)] = 201205, - [SMALL_STATE(5639)] = 201221, - [SMALL_STATE(5640)] = 201239, - [SMALL_STATE(5641)] = 201257, - [SMALL_STATE(5642)] = 201277, - [SMALL_STATE(5643)] = 201295, - [SMALL_STATE(5644)] = 201313, - [SMALL_STATE(5645)] = 201329, - [SMALL_STATE(5646)] = 201345, - [SMALL_STATE(5647)] = 201363, - [SMALL_STATE(5648)] = 201389, - [SMALL_STATE(5649)] = 201415, - [SMALL_STATE(5650)] = 201435, - [SMALL_STATE(5651)] = 201457, - [SMALL_STATE(5652)] = 201483, - [SMALL_STATE(5653)] = 201509, - [SMALL_STATE(5654)] = 201525, - [SMALL_STATE(5655)] = 201551, - [SMALL_STATE(5656)] = 201577, - [SMALL_STATE(5657)] = 201595, - [SMALL_STATE(5658)] = 201621, - [SMALL_STATE(5659)] = 201639, - [SMALL_STATE(5660)] = 201665, - [SMALL_STATE(5661)] = 201689, - [SMALL_STATE(5662)] = 201707, - [SMALL_STATE(5663)] = 201733, - [SMALL_STATE(5664)] = 201753, - [SMALL_STATE(5665)] = 201771, - [SMALL_STATE(5666)] = 201789, - [SMALL_STATE(5667)] = 201809, - [SMALL_STATE(5668)] = 201835, - [SMALL_STATE(5669)] = 201851, - [SMALL_STATE(5670)] = 201867, - [SMALL_STATE(5671)] = 201895, - [SMALL_STATE(5672)] = 201915, - [SMALL_STATE(5673)] = 201937, - [SMALL_STATE(5674)] = 201963, - [SMALL_STATE(5675)] = 201987, - [SMALL_STATE(5676)] = 202003, - [SMALL_STATE(5677)] = 202029, - [SMALL_STATE(5678)] = 202055, - [SMALL_STATE(5679)] = 202073, - [SMALL_STATE(5680)] = 202091, - [SMALL_STATE(5681)] = 202115, - [SMALL_STATE(5682)] = 202141, - [SMALL_STATE(5683)] = 202159, - [SMALL_STATE(5684)] = 202177, - [SMALL_STATE(5685)] = 202195, - [SMALL_STATE(5686)] = 202221, - [SMALL_STATE(5687)] = 202243, - [SMALL_STATE(5688)] = 202269, - [SMALL_STATE(5689)] = 202295, - [SMALL_STATE(5690)] = 202313, - [SMALL_STATE(5691)] = 202339, - [SMALL_STATE(5692)] = 202365, - [SMALL_STATE(5693)] = 202391, - [SMALL_STATE(5694)] = 202417, - [SMALL_STATE(5695)] = 202443, - [SMALL_STATE(5696)] = 202467, - [SMALL_STATE(5697)] = 202493, - [SMALL_STATE(5698)] = 202519, - [SMALL_STATE(5699)] = 202537, - [SMALL_STATE(5700)] = 202563, - [SMALL_STATE(5701)] = 202589, - [SMALL_STATE(5702)] = 202607, - [SMALL_STATE(5703)] = 202625, - [SMALL_STATE(5704)] = 202643, - [SMALL_STATE(5705)] = 202671, - [SMALL_STATE(5706)] = 202697, - [SMALL_STATE(5707)] = 202723, - [SMALL_STATE(5708)] = 202743, - [SMALL_STATE(5709)] = 202769, - [SMALL_STATE(5710)] = 202791, - [SMALL_STATE(5711)] = 202817, - [SMALL_STATE(5712)] = 202835, - [SMALL_STATE(5713)] = 202861, - [SMALL_STATE(5714)] = 202879, - [SMALL_STATE(5715)] = 202897, - [SMALL_STATE(5716)] = 202915, - [SMALL_STATE(5717)] = 202933, - [SMALL_STATE(5718)] = 202959, - [SMALL_STATE(5719)] = 202977, - [SMALL_STATE(5720)] = 202997, - [SMALL_STATE(5721)] = 203017, - [SMALL_STATE(5722)] = 203037, - [SMALL_STATE(5723)] = 203053, - [SMALL_STATE(5724)] = 203071, - [SMALL_STATE(5725)] = 203089, - [SMALL_STATE(5726)] = 203109, - [SMALL_STATE(5727)] = 203135, - [SMALL_STATE(5728)] = 203161, - [SMALL_STATE(5729)] = 203178, - [SMALL_STATE(5730)] = 203203, - [SMALL_STATE(5731)] = 203228, - [SMALL_STATE(5732)] = 203251, - [SMALL_STATE(5733)] = 203270, - [SMALL_STATE(5734)] = 203295, - [SMALL_STATE(5735)] = 203312, - [SMALL_STATE(5736)] = 203337, - [SMALL_STATE(5737)] = 203362, - [SMALL_STATE(5738)] = 203379, - [SMALL_STATE(5739)] = 203404, - [SMALL_STATE(5740)] = 203423, - [SMALL_STATE(5741)] = 203440, - [SMALL_STATE(5742)] = 203455, - [SMALL_STATE(5743)] = 203472, - [SMALL_STATE(5744)] = 203495, - [SMALL_STATE(5745)] = 203516, - [SMALL_STATE(5746)] = 203541, - [SMALL_STATE(5747)] = 203566, - [SMALL_STATE(5748)] = 203589, - [SMALL_STATE(5749)] = 203610, - [SMALL_STATE(5750)] = 203635, - [SMALL_STATE(5751)] = 203652, - [SMALL_STATE(5752)] = 203677, - [SMALL_STATE(5753)] = 203696, - [SMALL_STATE(5754)] = 203721, - [SMALL_STATE(5755)] = 203738, - [SMALL_STATE(5756)] = 203757, - [SMALL_STATE(5757)] = 203780, - [SMALL_STATE(5758)] = 203801, - [SMALL_STATE(5759)] = 203826, - [SMALL_STATE(5760)] = 203851, - [SMALL_STATE(5761)] = 203874, - [SMALL_STATE(5762)] = 203891, - [SMALL_STATE(5763)] = 203914, - [SMALL_STATE(5764)] = 203939, - [SMALL_STATE(5765)] = 203956, - [SMALL_STATE(5766)] = 203981, - [SMALL_STATE(5767)] = 203998, - [SMALL_STATE(5768)] = 204015, - [SMALL_STATE(5769)] = 204040, - [SMALL_STATE(5770)] = 204057, - [SMALL_STATE(5771)] = 204080, - [SMALL_STATE(5772)] = 204105, - [SMALL_STATE(5773)] = 204130, - [SMALL_STATE(5774)] = 204153, - [SMALL_STATE(5775)] = 204170, - [SMALL_STATE(5776)] = 204195, - [SMALL_STATE(5777)] = 204220, - [SMALL_STATE(5778)] = 204237, - [SMALL_STATE(5779)] = 204262, - [SMALL_STATE(5780)] = 204287, - [SMALL_STATE(5781)] = 204308, - [SMALL_STATE(5782)] = 204331, - [SMALL_STATE(5783)] = 204354, - [SMALL_STATE(5784)] = 204379, - [SMALL_STATE(5785)] = 204404, - [SMALL_STATE(5786)] = 204427, - [SMALL_STATE(5787)] = 204444, - [SMALL_STATE(5788)] = 204469, - [SMALL_STATE(5789)] = 204484, - [SMALL_STATE(5790)] = 204501, - [SMALL_STATE(5791)] = 204526, - [SMALL_STATE(5792)] = 204551, - [SMALL_STATE(5793)] = 204568, - [SMALL_STATE(5794)] = 204585, - [SMALL_STATE(5795)] = 204608, - [SMALL_STATE(5796)] = 204633, - [SMALL_STATE(5797)] = 204658, - [SMALL_STATE(5798)] = 204683, - [SMALL_STATE(5799)] = 204706, - [SMALL_STATE(5800)] = 204723, - [SMALL_STATE(5801)] = 204748, - [SMALL_STATE(5802)] = 204773, - [SMALL_STATE(5803)] = 204790, - [SMALL_STATE(5804)] = 204815, - [SMALL_STATE(5805)] = 204840, - [SMALL_STATE(5806)] = 204863, - [SMALL_STATE(5807)] = 204888, - [SMALL_STATE(5808)] = 204911, - [SMALL_STATE(5809)] = 204936, - [SMALL_STATE(5810)] = 204961, - [SMALL_STATE(5811)] = 204984, - [SMALL_STATE(5812)] = 205009, - [SMALL_STATE(5813)] = 205034, - [SMALL_STATE(5814)] = 205059, - [SMALL_STATE(5815)] = 205084, - [SMALL_STATE(5816)] = 205101, - [SMALL_STATE(5817)] = 205122, - [SMALL_STATE(5818)] = 205147, - [SMALL_STATE(5819)] = 205172, - [SMALL_STATE(5820)] = 205189, - [SMALL_STATE(5821)] = 205212, - [SMALL_STATE(5822)] = 205237, - [SMALL_STATE(5823)] = 205262, - [SMALL_STATE(5824)] = 205285, - [SMALL_STATE(5825)] = 205302, - [SMALL_STATE(5826)] = 205327, - [SMALL_STATE(5827)] = 205352, - [SMALL_STATE(5828)] = 205377, - [SMALL_STATE(5829)] = 205402, - [SMALL_STATE(5830)] = 205425, - [SMALL_STATE(5831)] = 205446, - [SMALL_STATE(5832)] = 205469, - [SMALL_STATE(5833)] = 205494, - [SMALL_STATE(5834)] = 205519, - [SMALL_STATE(5835)] = 205544, - [SMALL_STATE(5836)] = 205561, - [SMALL_STATE(5837)] = 205580, - [SMALL_STATE(5838)] = 205603, - [SMALL_STATE(5839)] = 205626, - [SMALL_STATE(5840)] = 205649, - [SMALL_STATE(5841)] = 205674, - [SMALL_STATE(5842)] = 205699, - [SMALL_STATE(5843)] = 205714, - [SMALL_STATE(5844)] = 205729, - [SMALL_STATE(5845)] = 205752, - [SMALL_STATE(5846)] = 205771, - [SMALL_STATE(5847)] = 205794, - [SMALL_STATE(5848)] = 205819, - [SMALL_STATE(5849)] = 205844, - [SMALL_STATE(5850)] = 205869, - [SMALL_STATE(5851)] = 205894, - [SMALL_STATE(5852)] = 205919, - [SMALL_STATE(5853)] = 205944, - [SMALL_STATE(5854)] = 205969, - [SMALL_STATE(5855)] = 205994, - [SMALL_STATE(5856)] = 206019, - [SMALL_STATE(5857)] = 206042, - [SMALL_STATE(5858)] = 206061, - [SMALL_STATE(5859)] = 206086, - [SMALL_STATE(5860)] = 206111, - [SMALL_STATE(5861)] = 206128, - [SMALL_STATE(5862)] = 206147, - [SMALL_STATE(5863)] = 206172, - [SMALL_STATE(5864)] = 206197, - [SMALL_STATE(5865)] = 206220, - [SMALL_STATE(5866)] = 206245, - [SMALL_STATE(5867)] = 206268, - [SMALL_STATE(5868)] = 206285, - [SMALL_STATE(5869)] = 206308, - [SMALL_STATE(5870)] = 206325, - [SMALL_STATE(5871)] = 206350, - [SMALL_STATE(5872)] = 206367, - [SMALL_STATE(5873)] = 206392, - [SMALL_STATE(5874)] = 206409, - [SMALL_STATE(5875)] = 206434, - [SMALL_STATE(5876)] = 206451, - [SMALL_STATE(5877)] = 206470, - [SMALL_STATE(5878)] = 206495, - [SMALL_STATE(5879)] = 206514, - [SMALL_STATE(5880)] = 206539, - [SMALL_STATE(5881)] = 206562, - [SMALL_STATE(5882)] = 206579, - [SMALL_STATE(5883)] = 206604, - [SMALL_STATE(5884)] = 206621, - [SMALL_STATE(5885)] = 206638, - [SMALL_STATE(5886)] = 206663, - [SMALL_STATE(5887)] = 206680, - [SMALL_STATE(5888)] = 206697, - [SMALL_STATE(5889)] = 206714, - [SMALL_STATE(5890)] = 206737, - [SMALL_STATE(5891)] = 206762, - [SMALL_STATE(5892)] = 206787, - [SMALL_STATE(5893)] = 206804, - [SMALL_STATE(5894)] = 206821, - [SMALL_STATE(5895)] = 206846, - [SMALL_STATE(5896)] = 206863, - [SMALL_STATE(5897)] = 206888, - [SMALL_STATE(5898)] = 206905, - [SMALL_STATE(5899)] = 206930, - [SMALL_STATE(5900)] = 206955, - [SMALL_STATE(5901)] = 206972, - [SMALL_STATE(5902)] = 206997, - [SMALL_STATE(5903)] = 207022, - [SMALL_STATE(5904)] = 207047, - [SMALL_STATE(5905)] = 207068, - [SMALL_STATE(5906)] = 207093, - [SMALL_STATE(5907)] = 207118, - [SMALL_STATE(5908)] = 207137, - [SMALL_STATE(5909)] = 207154, - [SMALL_STATE(5910)] = 207179, - [SMALL_STATE(5911)] = 207204, - [SMALL_STATE(5912)] = 207229, - [SMALL_STATE(5913)] = 207254, - [SMALL_STATE(5914)] = 207271, - [SMALL_STATE(5915)] = 207288, - [SMALL_STATE(5916)] = 207313, - [SMALL_STATE(5917)] = 207338, - [SMALL_STATE(5918)] = 207359, - [SMALL_STATE(5919)] = 207380, - [SMALL_STATE(5920)] = 207401, - [SMALL_STATE(5921)] = 207418, - [SMALL_STATE(5922)] = 207437, - [SMALL_STATE(5923)] = 207454, - [SMALL_STATE(5924)] = 207471, - [SMALL_STATE(5925)] = 207494, - [SMALL_STATE(5926)] = 207519, - [SMALL_STATE(5927)] = 207544, - [SMALL_STATE(5928)] = 207569, - [SMALL_STATE(5929)] = 207594, - [SMALL_STATE(5930)] = 207619, - [SMALL_STATE(5931)] = 207640, - [SMALL_STATE(5932)] = 207665, - [SMALL_STATE(5933)] = 207688, - [SMALL_STATE(5934)] = 207713, - [SMALL_STATE(5935)] = 207738, - [SMALL_STATE(5936)] = 207759, - [SMALL_STATE(5937)] = 207784, - [SMALL_STATE(5938)] = 207809, - [SMALL_STATE(5939)] = 207834, - [SMALL_STATE(5940)] = 207859, - [SMALL_STATE(5941)] = 207884, - [SMALL_STATE(5942)] = 207905, - [SMALL_STATE(5943)] = 207922, - [SMALL_STATE(5944)] = 207947, - [SMALL_STATE(5945)] = 207972, - [SMALL_STATE(5946)] = 207997, - [SMALL_STATE(5947)] = 208022, - [SMALL_STATE(5948)] = 208045, - [SMALL_STATE(5949)] = 208066, - [SMALL_STATE(5950)] = 208091, - [SMALL_STATE(5951)] = 208116, - [SMALL_STATE(5952)] = 208141, - [SMALL_STATE(5953)] = 208162, - [SMALL_STATE(5954)] = 208187, - [SMALL_STATE(5955)] = 208212, - [SMALL_STATE(5956)] = 208233, - [SMALL_STATE(5957)] = 208254, - [SMALL_STATE(5958)] = 208271, - [SMALL_STATE(5959)] = 208296, - [SMALL_STATE(5960)] = 208321, - [SMALL_STATE(5961)] = 208338, - [SMALL_STATE(5962)] = 208359, - [SMALL_STATE(5963)] = 208376, - [SMALL_STATE(5964)] = 208391, - [SMALL_STATE(5965)] = 208416, - [SMALL_STATE(5966)] = 208441, - [SMALL_STATE(5967)] = 208466, - [SMALL_STATE(5968)] = 208491, - [SMALL_STATE(5969)] = 208508, - [SMALL_STATE(5970)] = 208525, - [SMALL_STATE(5971)] = 208546, - [SMALL_STATE(5972)] = 208569, - [SMALL_STATE(5973)] = 208586, - [SMALL_STATE(5974)] = 208607, - [SMALL_STATE(5975)] = 208624, - [SMALL_STATE(5976)] = 208643, - [SMALL_STATE(5977)] = 208668, - [SMALL_STATE(5978)] = 208691, - [SMALL_STATE(5979)] = 208710, - [SMALL_STATE(5980)] = 208731, - [SMALL_STATE(5981)] = 208754, - [SMALL_STATE(5982)] = 208775, - [SMALL_STATE(5983)] = 208792, - [SMALL_STATE(5984)] = 208807, - [SMALL_STATE(5985)] = 208830, - [SMALL_STATE(5986)] = 208847, - [SMALL_STATE(5987)] = 208872, - [SMALL_STATE(5988)] = 208897, - [SMALL_STATE(5989)] = 208922, - [SMALL_STATE(5990)] = 208947, - [SMALL_STATE(5991)] = 208972, - [SMALL_STATE(5992)] = 208991, - [SMALL_STATE(5993)] = 209014, - [SMALL_STATE(5994)] = 209035, - [SMALL_STATE(5995)] = 209060, - [SMALL_STATE(5996)] = 209083, - [SMALL_STATE(5997)] = 209100, - [SMALL_STATE(5998)] = 209125, - [SMALL_STATE(5999)] = 209148, - [SMALL_STATE(6000)] = 209173, - [SMALL_STATE(6001)] = 209198, - [SMALL_STATE(6002)] = 209223, - [SMALL_STATE(6003)] = 209246, - [SMALL_STATE(6004)] = 209263, - [SMALL_STATE(6005)] = 209284, - [SMALL_STATE(6006)] = 209305, - [SMALL_STATE(6007)] = 209324, - [SMALL_STATE(6008)] = 209341, - [SMALL_STATE(6009)] = 209362, - [SMALL_STATE(6010)] = 209383, - [SMALL_STATE(6011)] = 209404, - [SMALL_STATE(6012)] = 209421, - [SMALL_STATE(6013)] = 209446, - [SMALL_STATE(6014)] = 209471, - [SMALL_STATE(6015)] = 209488, - [SMALL_STATE(6016)] = 209507, - [SMALL_STATE(6017)] = 209526, - [SMALL_STATE(6018)] = 209545, - [SMALL_STATE(6019)] = 209570, - [SMALL_STATE(6020)] = 209587, - [SMALL_STATE(6021)] = 209608, - [SMALL_STATE(6022)] = 209633, - [SMALL_STATE(6023)] = 209654, - [SMALL_STATE(6024)] = 209675, - [SMALL_STATE(6025)] = 209692, - [SMALL_STATE(6026)] = 209715, - [SMALL_STATE(6027)] = 209732, - [SMALL_STATE(6028)] = 209757, - [SMALL_STATE(6029)] = 209782, - [SMALL_STATE(6030)] = 209807, - [SMALL_STATE(6031)] = 209823, - [SMALL_STATE(6032)] = 209845, - [SMALL_STATE(6033)] = 209867, - [SMALL_STATE(6034)] = 209889, - [SMALL_STATE(6035)] = 209911, - [SMALL_STATE(6036)] = 209933, - [SMALL_STATE(6037)] = 209949, - [SMALL_STATE(6038)] = 209963, - [SMALL_STATE(6039)] = 209979, - [SMALL_STATE(6040)] = 209997, - [SMALL_STATE(6041)] = 210015, - [SMALL_STATE(6042)] = 210037, - [SMALL_STATE(6043)] = 210055, - [SMALL_STATE(6044)] = 210071, - [SMALL_STATE(6045)] = 210093, - [SMALL_STATE(6046)] = 210115, - [SMALL_STATE(6047)] = 210131, - [SMALL_STATE(6048)] = 210151, - [SMALL_STATE(6049)] = 210173, - [SMALL_STATE(6050)] = 210191, - [SMALL_STATE(6051)] = 210205, - [SMALL_STATE(6052)] = 210227, - [SMALL_STATE(6053)] = 210249, - [SMALL_STATE(6054)] = 210271, - [SMALL_STATE(6055)] = 210293, - [SMALL_STATE(6056)] = 210315, - [SMALL_STATE(6057)] = 210337, - [SMALL_STATE(6058)] = 210359, - [SMALL_STATE(6059)] = 210381, - [SMALL_STATE(6060)] = 210399, - [SMALL_STATE(6061)] = 210417, - [SMALL_STATE(6062)] = 210435, - [SMALL_STATE(6063)] = 210453, - [SMALL_STATE(6064)] = 210471, - [SMALL_STATE(6065)] = 210493, - [SMALL_STATE(6066)] = 210513, - [SMALL_STATE(6067)] = 210529, - [SMALL_STATE(6068)] = 210551, - [SMALL_STATE(6069)] = 210573, - [SMALL_STATE(6070)] = 210595, - [SMALL_STATE(6071)] = 210617, - [SMALL_STATE(6072)] = 210639, - [SMALL_STATE(6073)] = 210655, - [SMALL_STATE(6074)] = 210677, - [SMALL_STATE(6075)] = 210699, - [SMALL_STATE(6076)] = 210721, - [SMALL_STATE(6077)] = 210743, - [SMALL_STATE(6078)] = 210765, - [SMALL_STATE(6079)] = 210787, - [SMALL_STATE(6080)] = 210809, - [SMALL_STATE(6081)] = 210831, - [SMALL_STATE(6082)] = 210853, - [SMALL_STATE(6083)] = 210869, - [SMALL_STATE(6084)] = 210891, - [SMALL_STATE(6085)] = 210909, - [SMALL_STATE(6086)] = 210927, - [SMALL_STATE(6087)] = 210949, - [SMALL_STATE(6088)] = 210969, - [SMALL_STATE(6089)] = 210987, - [SMALL_STATE(6090)] = 211005, - [SMALL_STATE(6091)] = 211025, - [SMALL_STATE(6092)] = 211045, - [SMALL_STATE(6093)] = 211063, - [SMALL_STATE(6094)] = 211081, - [SMALL_STATE(6095)] = 211101, - [SMALL_STATE(6096)] = 211115, - [SMALL_STATE(6097)] = 211137, - [SMALL_STATE(6098)] = 211157, - [SMALL_STATE(6099)] = 211175, - [SMALL_STATE(6100)] = 211197, - [SMALL_STATE(6101)] = 211215, - [SMALL_STATE(6102)] = 211233, - [SMALL_STATE(6103)] = 211251, - [SMALL_STATE(6104)] = 211271, - [SMALL_STATE(6105)] = 211287, - [SMALL_STATE(6106)] = 211303, - [SMALL_STATE(6107)] = 211319, - [SMALL_STATE(6108)] = 211337, - [SMALL_STATE(6109)] = 211353, - [SMALL_STATE(6110)] = 211375, - [SMALL_STATE(6111)] = 211389, - [SMALL_STATE(6112)] = 211411, - [SMALL_STATE(6113)] = 211429, - [SMALL_STATE(6114)] = 211451, - [SMALL_STATE(6115)] = 211467, - [SMALL_STATE(6116)] = 211489, - [SMALL_STATE(6117)] = 211509, - [SMALL_STATE(6118)] = 211527, - [SMALL_STATE(6119)] = 211543, - [SMALL_STATE(6120)] = 211559, - [SMALL_STATE(6121)] = 211579, - [SMALL_STATE(6122)] = 211595, - [SMALL_STATE(6123)] = 211617, - [SMALL_STATE(6124)] = 211637, - [SMALL_STATE(6125)] = 211659, - [SMALL_STATE(6126)] = 211679, - [SMALL_STATE(6127)] = 211697, - [SMALL_STATE(6128)] = 211717, - [SMALL_STATE(6129)] = 211739, - [SMALL_STATE(6130)] = 211761, - [SMALL_STATE(6131)] = 211783, - [SMALL_STATE(6132)] = 211803, - [SMALL_STATE(6133)] = 211825, - [SMALL_STATE(6134)] = 211847, - [SMALL_STATE(6135)] = 211869, - [SMALL_STATE(6136)] = 211891, - [SMALL_STATE(6137)] = 211913, - [SMALL_STATE(6138)] = 211935, - [SMALL_STATE(6139)] = 211957, - [SMALL_STATE(6140)] = 211979, - [SMALL_STATE(6141)] = 212001, - [SMALL_STATE(6142)] = 212023, - [SMALL_STATE(6143)] = 212045, - [SMALL_STATE(6144)] = 212067, - [SMALL_STATE(6145)] = 212089, - [SMALL_STATE(6146)] = 212103, - [SMALL_STATE(6147)] = 212121, - [SMALL_STATE(6148)] = 212143, - [SMALL_STATE(6149)] = 212165, - [SMALL_STATE(6150)] = 212179, - [SMALL_STATE(6151)] = 212201, - [SMALL_STATE(6152)] = 212215, - [SMALL_STATE(6153)] = 212237, - [SMALL_STATE(6154)] = 212259, - [SMALL_STATE(6155)] = 212281, - [SMALL_STATE(6156)] = 212299, - [SMALL_STATE(6157)] = 212321, - [SMALL_STATE(6158)] = 212341, - [SMALL_STATE(6159)] = 212361, - [SMALL_STATE(6160)] = 212383, - [SMALL_STATE(6161)] = 212405, - [SMALL_STATE(6162)] = 212427, - [SMALL_STATE(6163)] = 212445, - [SMALL_STATE(6164)] = 212467, - [SMALL_STATE(6165)] = 212489, - [SMALL_STATE(6166)] = 212511, - [SMALL_STATE(6167)] = 212533, - [SMALL_STATE(6168)] = 212555, - [SMALL_STATE(6169)] = 212571, - [SMALL_STATE(6170)] = 212587, - [SMALL_STATE(6171)] = 212605, - [SMALL_STATE(6172)] = 212623, - [SMALL_STATE(6173)] = 212639, - [SMALL_STATE(6174)] = 212661, - [SMALL_STATE(6175)] = 212683, - [SMALL_STATE(6176)] = 212703, - [SMALL_STATE(6177)] = 212725, - [SMALL_STATE(6178)] = 212743, - [SMALL_STATE(6179)] = 212761, - [SMALL_STATE(6180)] = 212783, - [SMALL_STATE(6181)] = 212805, - [SMALL_STATE(6182)] = 212827, - [SMALL_STATE(6183)] = 212845, - [SMALL_STATE(6184)] = 212863, - [SMALL_STATE(6185)] = 212885, - [SMALL_STATE(6186)] = 212907, - [SMALL_STATE(6187)] = 212929, - [SMALL_STATE(6188)] = 212951, - [SMALL_STATE(6189)] = 212973, - [SMALL_STATE(6190)] = 212991, - [SMALL_STATE(6191)] = 213013, - [SMALL_STATE(6192)] = 213035, - [SMALL_STATE(6193)] = 213057, - [SMALL_STATE(6194)] = 213077, - [SMALL_STATE(6195)] = 213095, - [SMALL_STATE(6196)] = 213117, - [SMALL_STATE(6197)] = 213139, - [SMALL_STATE(6198)] = 213161, - [SMALL_STATE(6199)] = 213183, - [SMALL_STATE(6200)] = 213205, - [SMALL_STATE(6201)] = 213227, - [SMALL_STATE(6202)] = 213249, - [SMALL_STATE(6203)] = 213271, - [SMALL_STATE(6204)] = 213293, - [SMALL_STATE(6205)] = 213315, - [SMALL_STATE(6206)] = 213337, - [SMALL_STATE(6207)] = 213359, - [SMALL_STATE(6208)] = 213381, - [SMALL_STATE(6209)] = 213403, - [SMALL_STATE(6210)] = 213425, - [SMALL_STATE(6211)] = 213447, - [SMALL_STATE(6212)] = 213469, - [SMALL_STATE(6213)] = 213491, - [SMALL_STATE(6214)] = 213513, - [SMALL_STATE(6215)] = 213535, - [SMALL_STATE(6216)] = 213557, - [SMALL_STATE(6217)] = 213579, - [SMALL_STATE(6218)] = 213601, - [SMALL_STATE(6219)] = 213623, - [SMALL_STATE(6220)] = 213645, - [SMALL_STATE(6221)] = 213667, - [SMALL_STATE(6222)] = 213689, - [SMALL_STATE(6223)] = 213711, - [SMALL_STATE(6224)] = 213733, - [SMALL_STATE(6225)] = 213755, - [SMALL_STATE(6226)] = 213777, - [SMALL_STATE(6227)] = 213799, - [SMALL_STATE(6228)] = 213821, - [SMALL_STATE(6229)] = 213843, - [SMALL_STATE(6230)] = 213865, - [SMALL_STATE(6231)] = 213887, - [SMALL_STATE(6232)] = 213909, - [SMALL_STATE(6233)] = 213931, - [SMALL_STATE(6234)] = 213953, - [SMALL_STATE(6235)] = 213975, - [SMALL_STATE(6236)] = 213997, - [SMALL_STATE(6237)] = 214019, - [SMALL_STATE(6238)] = 214041, - [SMALL_STATE(6239)] = 214063, - [SMALL_STATE(6240)] = 214085, - [SMALL_STATE(6241)] = 214107, - [SMALL_STATE(6242)] = 214127, - [SMALL_STATE(6243)] = 214147, - [SMALL_STATE(6244)] = 214167, - [SMALL_STATE(6245)] = 214189, - [SMALL_STATE(6246)] = 214206, - [SMALL_STATE(6247)] = 214219, - [SMALL_STATE(6248)] = 214232, - [SMALL_STATE(6249)] = 214251, - [SMALL_STATE(6250)] = 214264, - [SMALL_STATE(6251)] = 214279, - [SMALL_STATE(6252)] = 214296, - [SMALL_STATE(6253)] = 214311, - [SMALL_STATE(6254)] = 214324, - [SMALL_STATE(6255)] = 214341, - [SMALL_STATE(6256)] = 214354, - [SMALL_STATE(6257)] = 214367, - [SMALL_STATE(6258)] = 214380, - [SMALL_STATE(6259)] = 214399, - [SMALL_STATE(6260)] = 214418, - [SMALL_STATE(6261)] = 214435, - [SMALL_STATE(6262)] = 214454, - [SMALL_STATE(6263)] = 214471, - [SMALL_STATE(6264)] = 214490, - [SMALL_STATE(6265)] = 214503, - [SMALL_STATE(6266)] = 214522, - [SMALL_STATE(6267)] = 214541, - [SMALL_STATE(6268)] = 214560, - [SMALL_STATE(6269)] = 214579, - [SMALL_STATE(6270)] = 214598, - [SMALL_STATE(6271)] = 214617, - [SMALL_STATE(6272)] = 214636, - [SMALL_STATE(6273)] = 214655, - [SMALL_STATE(6274)] = 214674, - [SMALL_STATE(6275)] = 214687, - [SMALL_STATE(6276)] = 214700, - [SMALL_STATE(6277)] = 214715, - [SMALL_STATE(6278)] = 214732, - [SMALL_STATE(6279)] = 214745, - [SMALL_STATE(6280)] = 214760, - [SMALL_STATE(6281)] = 214773, - [SMALL_STATE(6282)] = 214786, - [SMALL_STATE(6283)] = 214805, - [SMALL_STATE(6284)] = 214820, - [SMALL_STATE(6285)] = 214833, - [SMALL_STATE(6286)] = 214846, - [SMALL_STATE(6287)] = 214859, - [SMALL_STATE(6288)] = 214874, - [SMALL_STATE(6289)] = 214887, - [SMALL_STATE(6290)] = 214900, - [SMALL_STATE(6291)] = 214917, - [SMALL_STATE(6292)] = 214930, - [SMALL_STATE(6293)] = 214943, - [SMALL_STATE(6294)] = 214956, - [SMALL_STATE(6295)] = 214973, - [SMALL_STATE(6296)] = 214986, - [SMALL_STATE(6297)] = 214999, - [SMALL_STATE(6298)] = 215012, - [SMALL_STATE(6299)] = 215025, - [SMALL_STATE(6300)] = 215038, - [SMALL_STATE(6301)] = 215051, - [SMALL_STATE(6302)] = 215064, - [SMALL_STATE(6303)] = 215083, - [SMALL_STATE(6304)] = 215102, - [SMALL_STATE(6305)] = 215121, - [SMALL_STATE(6306)] = 215140, - [SMALL_STATE(6307)] = 215159, - [SMALL_STATE(6308)] = 215178, - [SMALL_STATE(6309)] = 215197, - [SMALL_STATE(6310)] = 215216, - [SMALL_STATE(6311)] = 215229, - [SMALL_STATE(6312)] = 215242, - [SMALL_STATE(6313)] = 215257, - [SMALL_STATE(6314)] = 215270, - [SMALL_STATE(6315)] = 215287, - [SMALL_STATE(6316)] = 215300, - [SMALL_STATE(6317)] = 215313, - [SMALL_STATE(6318)] = 215328, - [SMALL_STATE(6319)] = 215341, - [SMALL_STATE(6320)] = 215354, - [SMALL_STATE(6321)] = 215371, - [SMALL_STATE(6322)] = 215384, - [SMALL_STATE(6323)] = 215397, - [SMALL_STATE(6324)] = 215416, - [SMALL_STATE(6325)] = 215431, - [SMALL_STATE(6326)] = 215450, - [SMALL_STATE(6327)] = 215469, - [SMALL_STATE(6328)] = 215488, - [SMALL_STATE(6329)] = 215507, - [SMALL_STATE(6330)] = 215526, - [SMALL_STATE(6331)] = 215545, - [SMALL_STATE(6332)] = 215564, - [SMALL_STATE(6333)] = 215583, - [SMALL_STATE(6334)] = 215598, - [SMALL_STATE(6335)] = 215611, - [SMALL_STATE(6336)] = 215628, - [SMALL_STATE(6337)] = 215641, - [SMALL_STATE(6338)] = 215660, - [SMALL_STATE(6339)] = 215673, - [SMALL_STATE(6340)] = 215692, - [SMALL_STATE(6341)] = 215705, - [SMALL_STATE(6342)] = 215722, - [SMALL_STATE(6343)] = 215735, - [SMALL_STATE(6344)] = 215750, - [SMALL_STATE(6345)] = 215763, - [SMALL_STATE(6346)] = 215776, - [SMALL_STATE(6347)] = 215789, - [SMALL_STATE(6348)] = 215808, - [SMALL_STATE(6349)] = 215827, - [SMALL_STATE(6350)] = 215846, - [SMALL_STATE(6351)] = 215865, - [SMALL_STATE(6352)] = 215884, - [SMALL_STATE(6353)] = 215903, - [SMALL_STATE(6354)] = 215922, - [SMALL_STATE(6355)] = 215941, - [SMALL_STATE(6356)] = 215954, - [SMALL_STATE(6357)] = 215967, - [SMALL_STATE(6358)] = 215980, - [SMALL_STATE(6359)] = 215993, - [SMALL_STATE(6360)] = 216010, - [SMALL_STATE(6361)] = 216023, - [SMALL_STATE(6362)] = 216036, - [SMALL_STATE(6363)] = 216049, - [SMALL_STATE(6364)] = 216062, - [SMALL_STATE(6365)] = 216079, - [SMALL_STATE(6366)] = 216094, - [SMALL_STATE(6367)] = 216107, - [SMALL_STATE(6368)] = 216120, - [SMALL_STATE(6369)] = 216137, - [SMALL_STATE(6370)] = 216150, - [SMALL_STATE(6371)] = 216169, - [SMALL_STATE(6372)] = 216188, - [SMALL_STATE(6373)] = 216207, - [SMALL_STATE(6374)] = 216226, - [SMALL_STATE(6375)] = 216245, - [SMALL_STATE(6376)] = 216264, - [SMALL_STATE(6377)] = 216283, - [SMALL_STATE(6378)] = 216302, - [SMALL_STATE(6379)] = 216321, - [SMALL_STATE(6380)] = 216338, - [SMALL_STATE(6381)] = 216357, - [SMALL_STATE(6382)] = 216370, - [SMALL_STATE(6383)] = 216387, - [SMALL_STATE(6384)] = 216406, - [SMALL_STATE(6385)] = 216419, - [SMALL_STATE(6386)] = 216436, - [SMALL_STATE(6387)] = 216455, - [SMALL_STATE(6388)] = 216468, - [SMALL_STATE(6389)] = 216485, - [SMALL_STATE(6390)] = 216504, - [SMALL_STATE(6391)] = 216523, - [SMALL_STATE(6392)] = 216542, - [SMALL_STATE(6393)] = 216561, - [SMALL_STATE(6394)] = 216580, - [SMALL_STATE(6395)] = 216599, - [SMALL_STATE(6396)] = 216618, - [SMALL_STATE(6397)] = 216637, - [SMALL_STATE(6398)] = 216656, - [SMALL_STATE(6399)] = 216675, - [SMALL_STATE(6400)] = 216688, - [SMALL_STATE(6401)] = 216707, - [SMALL_STATE(6402)] = 216724, - [SMALL_STATE(6403)] = 216743, - [SMALL_STATE(6404)] = 216756, - [SMALL_STATE(6405)] = 216775, - [SMALL_STATE(6406)] = 216792, - [SMALL_STATE(6407)] = 216811, - [SMALL_STATE(6408)] = 216828, - [SMALL_STATE(6409)] = 216841, - [SMALL_STATE(6410)] = 216854, - [SMALL_STATE(6411)] = 216867, - [SMALL_STATE(6412)] = 216886, - [SMALL_STATE(6413)] = 216905, - [SMALL_STATE(6414)] = 216924, - [SMALL_STATE(6415)] = 216943, - [SMALL_STATE(6416)] = 216962, - [SMALL_STATE(6417)] = 216981, - [SMALL_STATE(6418)] = 217000, - [SMALL_STATE(6419)] = 217019, - [SMALL_STATE(6420)] = 217032, - [SMALL_STATE(6421)] = 217045, - [SMALL_STATE(6422)] = 217062, - [SMALL_STATE(6423)] = 217075, - [SMALL_STATE(6424)] = 217088, - [SMALL_STATE(6425)] = 217101, - [SMALL_STATE(6426)] = 217120, - [SMALL_STATE(6427)] = 217137, - [SMALL_STATE(6428)] = 217150, - [SMALL_STATE(6429)] = 217165, - [SMALL_STATE(6430)] = 217184, - [SMALL_STATE(6431)] = 217203, - [SMALL_STATE(6432)] = 217222, - [SMALL_STATE(6433)] = 217241, - [SMALL_STATE(6434)] = 217260, - [SMALL_STATE(6435)] = 217279, - [SMALL_STATE(6436)] = 217298, - [SMALL_STATE(6437)] = 217317, - [SMALL_STATE(6438)] = 217336, - [SMALL_STATE(6439)] = 217349, - [SMALL_STATE(6440)] = 217362, - [SMALL_STATE(6441)] = 217379, - [SMALL_STATE(6442)] = 217392, - [SMALL_STATE(6443)] = 217409, - [SMALL_STATE(6444)] = 217426, - [SMALL_STATE(6445)] = 217443, - [SMALL_STATE(6446)] = 217462, - [SMALL_STATE(6447)] = 217481, - [SMALL_STATE(6448)] = 217500, - [SMALL_STATE(6449)] = 217519, - [SMALL_STATE(6450)] = 217538, - [SMALL_STATE(6451)] = 217557, - [SMALL_STATE(6452)] = 217576, - [SMALL_STATE(6453)] = 217595, - [SMALL_STATE(6454)] = 217608, - [SMALL_STATE(6455)] = 217621, - [SMALL_STATE(6456)] = 217638, - [SMALL_STATE(6457)] = 217657, - [SMALL_STATE(6458)] = 217670, - [SMALL_STATE(6459)] = 217687, - [SMALL_STATE(6460)] = 217700, - [SMALL_STATE(6461)] = 217713, - [SMALL_STATE(6462)] = 217726, - [SMALL_STATE(6463)] = 217745, - [SMALL_STATE(6464)] = 217758, - [SMALL_STATE(6465)] = 217777, - [SMALL_STATE(6466)] = 217796, - [SMALL_STATE(6467)] = 217815, - [SMALL_STATE(6468)] = 217834, - [SMALL_STATE(6469)] = 217853, - [SMALL_STATE(6470)] = 217872, - [SMALL_STATE(6471)] = 217891, - [SMALL_STATE(6472)] = 217910, - [SMALL_STATE(6473)] = 217929, - [SMALL_STATE(6474)] = 217942, - [SMALL_STATE(6475)] = 217961, - [SMALL_STATE(6476)] = 217974, - [SMALL_STATE(6477)] = 217987, - [SMALL_STATE(6478)] = 218004, - [SMALL_STATE(6479)] = 218017, - [SMALL_STATE(6480)] = 218034, - [SMALL_STATE(6481)] = 218051, - [SMALL_STATE(6482)] = 218064, - [SMALL_STATE(6483)] = 218077, - [SMALL_STATE(6484)] = 218096, - [SMALL_STATE(6485)] = 218115, - [SMALL_STATE(6486)] = 218134, - [SMALL_STATE(6487)] = 218153, - [SMALL_STATE(6488)] = 218172, - [SMALL_STATE(6489)] = 218191, - [SMALL_STATE(6490)] = 218210, - [SMALL_STATE(6491)] = 218229, - [SMALL_STATE(6492)] = 218248, - [SMALL_STATE(6493)] = 218261, - [SMALL_STATE(6494)] = 218280, - [SMALL_STATE(6495)] = 218297, - [SMALL_STATE(6496)] = 218310, - [SMALL_STATE(6497)] = 218327, - [SMALL_STATE(6498)] = 218340, - [SMALL_STATE(6499)] = 218353, - [SMALL_STATE(6500)] = 218372, - [SMALL_STATE(6501)] = 218391, - [SMALL_STATE(6502)] = 218410, - [SMALL_STATE(6503)] = 218429, - [SMALL_STATE(6504)] = 218448, - [SMALL_STATE(6505)] = 218467, - [SMALL_STATE(6506)] = 218486, - [SMALL_STATE(6507)] = 218505, - [SMALL_STATE(6508)] = 218524, - [SMALL_STATE(6509)] = 218537, - [SMALL_STATE(6510)] = 218550, - [SMALL_STATE(6511)] = 218567, - [SMALL_STATE(6512)] = 218586, - [SMALL_STATE(6513)] = 218603, - [SMALL_STATE(6514)] = 218620, - [SMALL_STATE(6515)] = 218639, - [SMALL_STATE(6516)] = 218658, - [SMALL_STATE(6517)] = 218677, - [SMALL_STATE(6518)] = 218696, - [SMALL_STATE(6519)] = 218715, - [SMALL_STATE(6520)] = 218734, - [SMALL_STATE(6521)] = 218753, - [SMALL_STATE(6522)] = 218772, - [SMALL_STATE(6523)] = 218789, - [SMALL_STATE(6524)] = 218802, - [SMALL_STATE(6525)] = 218815, - [SMALL_STATE(6526)] = 218832, - [SMALL_STATE(6527)] = 218849, - [SMALL_STATE(6528)] = 218868, - [SMALL_STATE(6529)] = 218887, - [SMALL_STATE(6530)] = 218906, - [SMALL_STATE(6531)] = 218925, - [SMALL_STATE(6532)] = 218944, - [SMALL_STATE(6533)] = 218963, - [SMALL_STATE(6534)] = 218982, - [SMALL_STATE(6535)] = 219001, - [SMALL_STATE(6536)] = 219020, - [SMALL_STATE(6537)] = 219039, - [SMALL_STATE(6538)] = 219052, - [SMALL_STATE(6539)] = 219069, - [SMALL_STATE(6540)] = 219086, - [SMALL_STATE(6541)] = 219105, - [SMALL_STATE(6542)] = 219124, - [SMALL_STATE(6543)] = 219143, - [SMALL_STATE(6544)] = 219162, - [SMALL_STATE(6545)] = 219181, - [SMALL_STATE(6546)] = 219200, - [SMALL_STATE(6547)] = 219219, - [SMALL_STATE(6548)] = 219238, - [SMALL_STATE(6549)] = 219257, - [SMALL_STATE(6550)] = 219270, - [SMALL_STATE(6551)] = 219287, - [SMALL_STATE(6552)] = 219304, - [SMALL_STATE(6553)] = 219323, - [SMALL_STATE(6554)] = 219342, - [SMALL_STATE(6555)] = 219361, - [SMALL_STATE(6556)] = 219380, - [SMALL_STATE(6557)] = 219399, - [SMALL_STATE(6558)] = 219418, - [SMALL_STATE(6559)] = 219437, - [SMALL_STATE(6560)] = 219456, - [SMALL_STATE(6561)] = 219469, - [SMALL_STATE(6562)] = 219486, - [SMALL_STATE(6563)] = 219503, - [SMALL_STATE(6564)] = 219516, - [SMALL_STATE(6565)] = 219533, - [SMALL_STATE(6566)] = 219546, - [SMALL_STATE(6567)] = 219563, - [SMALL_STATE(6568)] = 219576, - [SMALL_STATE(6569)] = 219593, - [SMALL_STATE(6570)] = 219610, - [SMALL_STATE(6571)] = 219623, - [SMALL_STATE(6572)] = 219640, - [SMALL_STATE(6573)] = 219657, - [SMALL_STATE(6574)] = 219670, - [SMALL_STATE(6575)] = 219687, - [SMALL_STATE(6576)] = 219704, - [SMALL_STATE(6577)] = 219717, - [SMALL_STATE(6578)] = 219734, - [SMALL_STATE(6579)] = 219751, - [SMALL_STATE(6580)] = 219764, - [SMALL_STATE(6581)] = 219781, - [SMALL_STATE(6582)] = 219798, - [SMALL_STATE(6583)] = 219811, - [SMALL_STATE(6584)] = 219824, - [SMALL_STATE(6585)] = 219841, - [SMALL_STATE(6586)] = 219858, - [SMALL_STATE(6587)] = 219877, - [SMALL_STATE(6588)] = 219890, - [SMALL_STATE(6589)] = 219907, - [SMALL_STATE(6590)] = 219924, - [SMALL_STATE(6591)] = 219937, - [SMALL_STATE(6592)] = 219954, - [SMALL_STATE(6593)] = 219971, - [SMALL_STATE(6594)] = 219984, - [SMALL_STATE(6595)] = 220001, - [SMALL_STATE(6596)] = 220018, - [SMALL_STATE(6597)] = 220031, - [SMALL_STATE(6598)] = 220048, - [SMALL_STATE(6599)] = 220065, - [SMALL_STATE(6600)] = 220084, - [SMALL_STATE(6601)] = 220097, - [SMALL_STATE(6602)] = 220114, - [SMALL_STATE(6603)] = 220131, - [SMALL_STATE(6604)] = 220144, - [SMALL_STATE(6605)] = 220157, - [SMALL_STATE(6606)] = 220174, - [SMALL_STATE(6607)] = 220191, - [SMALL_STATE(6608)] = 220204, - [SMALL_STATE(6609)] = 220217, - [SMALL_STATE(6610)] = 220234, - [SMALL_STATE(6611)] = 220251, - [SMALL_STATE(6612)] = 220264, - [SMALL_STATE(6613)] = 220281, - [SMALL_STATE(6614)] = 220298, - [SMALL_STATE(6615)] = 220311, - [SMALL_STATE(6616)] = 220328, - [SMALL_STATE(6617)] = 220345, - [SMALL_STATE(6618)] = 220358, - [SMALL_STATE(6619)] = 220375, - [SMALL_STATE(6620)] = 220392, - [SMALL_STATE(6621)] = 220405, - [SMALL_STATE(6622)] = 220422, - [SMALL_STATE(6623)] = 220439, - [SMALL_STATE(6624)] = 220452, - [SMALL_STATE(6625)] = 220469, - [SMALL_STATE(6626)] = 220486, - [SMALL_STATE(6627)] = 220499, - [SMALL_STATE(6628)] = 220516, - [SMALL_STATE(6629)] = 220533, - [SMALL_STATE(6630)] = 220546, - [SMALL_STATE(6631)] = 220563, - [SMALL_STATE(6632)] = 220580, - [SMALL_STATE(6633)] = 220593, - [SMALL_STATE(6634)] = 220610, - [SMALL_STATE(6635)] = 220627, - [SMALL_STATE(6636)] = 220640, - [SMALL_STATE(6637)] = 220657, - [SMALL_STATE(6638)] = 220674, - [SMALL_STATE(6639)] = 220687, - [SMALL_STATE(6640)] = 220704, - [SMALL_STATE(6641)] = 220721, - [SMALL_STATE(6642)] = 220734, - [SMALL_STATE(6643)] = 220751, - [SMALL_STATE(6644)] = 220768, - [SMALL_STATE(6645)] = 220781, - [SMALL_STATE(6646)] = 220798, - [SMALL_STATE(6647)] = 220815, - [SMALL_STATE(6648)] = 220828, - [SMALL_STATE(6649)] = 220845, - [SMALL_STATE(6650)] = 220862, - [SMALL_STATE(6651)] = 220879, - [SMALL_STATE(6652)] = 220896, - [SMALL_STATE(6653)] = 220913, - [SMALL_STATE(6654)] = 220930, - [SMALL_STATE(6655)] = 220947, - [SMALL_STATE(6656)] = 220964, - [SMALL_STATE(6657)] = 220977, - [SMALL_STATE(6658)] = 220990, - [SMALL_STATE(6659)] = 221003, - [SMALL_STATE(6660)] = 221016, - [SMALL_STATE(6661)] = 221035, - [SMALL_STATE(6662)] = 221054, - [SMALL_STATE(6663)] = 221067, - [SMALL_STATE(6664)] = 221080, - [SMALL_STATE(6665)] = 221097, - [SMALL_STATE(6666)] = 221112, - [SMALL_STATE(6667)] = 221127, - [SMALL_STATE(6668)] = 221140, - [SMALL_STATE(6669)] = 221159, - [SMALL_STATE(6670)] = 221172, - [SMALL_STATE(6671)] = 221185, - [SMALL_STATE(6672)] = 221198, - [SMALL_STATE(6673)] = 221217, - [SMALL_STATE(6674)] = 221232, - [SMALL_STATE(6675)] = 221251, - [SMALL_STATE(6676)] = 221270, - [SMALL_STATE(6677)] = 221289, - [SMALL_STATE(6678)] = 221308, - [SMALL_STATE(6679)] = 221327, - [SMALL_STATE(6680)] = 221346, - [SMALL_STATE(6681)] = 221361, - [SMALL_STATE(6682)] = 221380, - [SMALL_STATE(6683)] = 221399, - [SMALL_STATE(6684)] = 221414, - [SMALL_STATE(6685)] = 221433, - [SMALL_STATE(6686)] = 221448, - [SMALL_STATE(6687)] = 221465, - [SMALL_STATE(6688)] = 221478, - [SMALL_STATE(6689)] = 221495, - [SMALL_STATE(6690)] = 221508, - [SMALL_STATE(6691)] = 221525, - [SMALL_STATE(6692)] = 221538, - [SMALL_STATE(6693)] = 221551, - [SMALL_STATE(6694)] = 221564, - [SMALL_STATE(6695)] = 221579, - [SMALL_STATE(6696)] = 221594, - [SMALL_STATE(6697)] = 221609, - [SMALL_STATE(6698)] = 221622, - [SMALL_STATE(6699)] = 221637, - [SMALL_STATE(6700)] = 221654, - [SMALL_STATE(6701)] = 221669, - [SMALL_STATE(6702)] = 221682, - [SMALL_STATE(6703)] = 221701, - [SMALL_STATE(6704)] = 221720, - [SMALL_STATE(6705)] = 221733, - [SMALL_STATE(6706)] = 221746, - [SMALL_STATE(6707)] = 221759, - [SMALL_STATE(6708)] = 221772, - [SMALL_STATE(6709)] = 221785, - [SMALL_STATE(6710)] = 221798, - [SMALL_STATE(6711)] = 221811, - [SMALL_STATE(6712)] = 221824, - [SMALL_STATE(6713)] = 221837, - [SMALL_STATE(6714)] = 221850, - [SMALL_STATE(6715)] = 221863, - [SMALL_STATE(6716)] = 221876, - [SMALL_STATE(6717)] = 221893, - [SMALL_STATE(6718)] = 221912, - [SMALL_STATE(6719)] = 221925, - [SMALL_STATE(6720)] = 221938, - [SMALL_STATE(6721)] = 221951, - [SMALL_STATE(6722)] = 221970, - [SMALL_STATE(6723)] = 221989, - [SMALL_STATE(6724)] = 222002, - [SMALL_STATE(6725)] = 222021, - [SMALL_STATE(6726)] = 222034, - [SMALL_STATE(6727)] = 222047, - [SMALL_STATE(6728)] = 222062, - [SMALL_STATE(6729)] = 222081, - [SMALL_STATE(6730)] = 222096, - [SMALL_STATE(6731)] = 222109, - [SMALL_STATE(6732)] = 222122, - [SMALL_STATE(6733)] = 222139, - [SMALL_STATE(6734)] = 222158, - [SMALL_STATE(6735)] = 222173, - [SMALL_STATE(6736)] = 222186, - [SMALL_STATE(6737)] = 222199, - [SMALL_STATE(6738)] = 222218, - [SMALL_STATE(6739)] = 222237, - [SMALL_STATE(6740)] = 222256, - [SMALL_STATE(6741)] = 222273, - [SMALL_STATE(6742)] = 222292, - [SMALL_STATE(6743)] = 222311, - [SMALL_STATE(6744)] = 222328, - [SMALL_STATE(6745)] = 222341, - [SMALL_STATE(6746)] = 222354, - [SMALL_STATE(6747)] = 222367, - [SMALL_STATE(6748)] = 222380, - [SMALL_STATE(6749)] = 222395, - [SMALL_STATE(6750)] = 222414, - [SMALL_STATE(6751)] = 222433, - [SMALL_STATE(6752)] = 222452, - [SMALL_STATE(6753)] = 222471, - [SMALL_STATE(6754)] = 222486, - [SMALL_STATE(6755)] = 222499, - [SMALL_STATE(6756)] = 222518, - [SMALL_STATE(6757)] = 222537, - [SMALL_STATE(6758)] = 222550, - [SMALL_STATE(6759)] = 222569, - [SMALL_STATE(6760)] = 222588, - [SMALL_STATE(6761)] = 222607, - [SMALL_STATE(6762)] = 222626, - [SMALL_STATE(6763)] = 222645, - [SMALL_STATE(6764)] = 222664, - [SMALL_STATE(6765)] = 222677, - [SMALL_STATE(6766)] = 222694, - [SMALL_STATE(6767)] = 222709, - [SMALL_STATE(6768)] = 222724, - [SMALL_STATE(6769)] = 222741, - [SMALL_STATE(6770)] = 222754, - [SMALL_STATE(6771)] = 222769, - [SMALL_STATE(6772)] = 222788, - [SMALL_STATE(6773)] = 222807, - [SMALL_STATE(6774)] = 222826, - [SMALL_STATE(6775)] = 222845, - [SMALL_STATE(6776)] = 222858, - [SMALL_STATE(6777)] = 222875, - [SMALL_STATE(6778)] = 222890, - [SMALL_STATE(6779)] = 222903, - [SMALL_STATE(6780)] = 222922, - [SMALL_STATE(6781)] = 222941, - [SMALL_STATE(6782)] = 222958, - [SMALL_STATE(6783)] = 222977, - [SMALL_STATE(6784)] = 222994, - [SMALL_STATE(6785)] = 223011, - [SMALL_STATE(6786)] = 223028, - [SMALL_STATE(6787)] = 223045, - [SMALL_STATE(6788)] = 223058, - [SMALL_STATE(6789)] = 223071, - [SMALL_STATE(6790)] = 223084, - [SMALL_STATE(6791)] = 223097, - [SMALL_STATE(6792)] = 223110, - [SMALL_STATE(6793)] = 223125, - [SMALL_STATE(6794)] = 223144, - [SMALL_STATE(6795)] = 223157, - [SMALL_STATE(6796)] = 223176, - [SMALL_STATE(6797)] = 223195, - [SMALL_STATE(6798)] = 223214, - [SMALL_STATE(6799)] = 223233, - [SMALL_STATE(6800)] = 223252, - [SMALL_STATE(6801)] = 223267, - [SMALL_STATE(6802)] = 223280, - [SMALL_STATE(6803)] = 223293, - [SMALL_STATE(6804)] = 223312, - [SMALL_STATE(6805)] = 223331, - [SMALL_STATE(6806)] = 223350, - [SMALL_STATE(6807)] = 223369, - [SMALL_STATE(6808)] = 223382, - [SMALL_STATE(6809)] = 223399, - [SMALL_STATE(6810)] = 223416, - [SMALL_STATE(6811)] = 223429, - [SMALL_STATE(6812)] = 223442, - [SMALL_STATE(6813)] = 223455, - [SMALL_STATE(6814)] = 223474, - [SMALL_STATE(6815)] = 223489, - [SMALL_STATE(6816)] = 223502, - [SMALL_STATE(6817)] = 223521, - [SMALL_STATE(6818)] = 223540, - [SMALL_STATE(6819)] = 223553, - [SMALL_STATE(6820)] = 223569, - [SMALL_STATE(6821)] = 223581, - [SMALL_STATE(6822)] = 223597, - [SMALL_STATE(6823)] = 223613, - [SMALL_STATE(6824)] = 223629, - [SMALL_STATE(6825)] = 223645, - [SMALL_STATE(6826)] = 223659, - [SMALL_STATE(6827)] = 223675, - [SMALL_STATE(6828)] = 223691, - [SMALL_STATE(6829)] = 223703, - [SMALL_STATE(6830)] = 223717, - [SMALL_STATE(6831)] = 223733, - [SMALL_STATE(6832)] = 223747, - [SMALL_STATE(6833)] = 223759, - [SMALL_STATE(6834)] = 223771, - [SMALL_STATE(6835)] = 223783, - [SMALL_STATE(6836)] = 223799, - [SMALL_STATE(6837)] = 223811, - [SMALL_STATE(6838)] = 223823, - [SMALL_STATE(6839)] = 223837, - [SMALL_STATE(6840)] = 223853, - [SMALL_STATE(6841)] = 223869, - [SMALL_STATE(6842)] = 223883, - [SMALL_STATE(6843)] = 223899, - [SMALL_STATE(6844)] = 223915, - [SMALL_STATE(6845)] = 223929, - [SMALL_STATE(6846)] = 223943, - [SMALL_STATE(6847)] = 223959, - [SMALL_STATE(6848)] = 223975, - [SMALL_STATE(6849)] = 223991, - [SMALL_STATE(6850)] = 224007, - [SMALL_STATE(6851)] = 224023, - [SMALL_STATE(6852)] = 224039, - [SMALL_STATE(6853)] = 224055, - [SMALL_STATE(6854)] = 224071, - [SMALL_STATE(6855)] = 224085, - [SMALL_STATE(6856)] = 224101, - [SMALL_STATE(6857)] = 224115, - [SMALL_STATE(6858)] = 224131, - [SMALL_STATE(6859)] = 224147, - [SMALL_STATE(6860)] = 224163, - [SMALL_STATE(6861)] = 224179, - [SMALL_STATE(6862)] = 224191, - [SMALL_STATE(6863)] = 224203, - [SMALL_STATE(6864)] = 224219, - [SMALL_STATE(6865)] = 224231, - [SMALL_STATE(6866)] = 224243, - [SMALL_STATE(6867)] = 224259, - [SMALL_STATE(6868)] = 224271, - [SMALL_STATE(6869)] = 224283, - [SMALL_STATE(6870)] = 224297, - [SMALL_STATE(6871)] = 224313, - [SMALL_STATE(6872)] = 224329, - [SMALL_STATE(6873)] = 224345, - [SMALL_STATE(6874)] = 224361, - [SMALL_STATE(6875)] = 224377, - [SMALL_STATE(6876)] = 224393, - [SMALL_STATE(6877)] = 224409, - [SMALL_STATE(6878)] = 224425, - [SMALL_STATE(6879)] = 224441, - [SMALL_STATE(6880)] = 224457, - [SMALL_STATE(6881)] = 224469, - [SMALL_STATE(6882)] = 224485, - [SMALL_STATE(6883)] = 224501, - [SMALL_STATE(6884)] = 224517, - [SMALL_STATE(6885)] = 224533, - [SMALL_STATE(6886)] = 224545, - [SMALL_STATE(6887)] = 224557, - [SMALL_STATE(6888)] = 224573, - [SMALL_STATE(6889)] = 224589, - [SMALL_STATE(6890)] = 224603, - [SMALL_STATE(6891)] = 224619, - [SMALL_STATE(6892)] = 224633, - [SMALL_STATE(6893)] = 224649, - [SMALL_STATE(6894)] = 224665, - [SMALL_STATE(6895)] = 224677, - [SMALL_STATE(6896)] = 224693, - [SMALL_STATE(6897)] = 224709, - [SMALL_STATE(6898)] = 224721, - [SMALL_STATE(6899)] = 224737, - [SMALL_STATE(6900)] = 224753, - [SMALL_STATE(6901)] = 224769, - [SMALL_STATE(6902)] = 224785, - [SMALL_STATE(6903)] = 224801, - [SMALL_STATE(6904)] = 224817, - [SMALL_STATE(6905)] = 224833, - [SMALL_STATE(6906)] = 224849, - [SMALL_STATE(6907)] = 224865, - [SMALL_STATE(6908)] = 224881, - [SMALL_STATE(6909)] = 224893, - [SMALL_STATE(6910)] = 224905, - [SMALL_STATE(6911)] = 224917, - [SMALL_STATE(6912)] = 224929, - [SMALL_STATE(6913)] = 224943, - [SMALL_STATE(6914)] = 224955, - [SMALL_STATE(6915)] = 224969, - [SMALL_STATE(6916)] = 224985, - [SMALL_STATE(6917)] = 224997, - [SMALL_STATE(6918)] = 225011, - [SMALL_STATE(6919)] = 225027, - [SMALL_STATE(6920)] = 225043, - [SMALL_STATE(6921)] = 225055, - [SMALL_STATE(6922)] = 225071, - [SMALL_STATE(6923)] = 225083, - [SMALL_STATE(6924)] = 225097, - [SMALL_STATE(6925)] = 225113, - [SMALL_STATE(6926)] = 225129, - [SMALL_STATE(6927)] = 225145, - [SMALL_STATE(6928)] = 225159, - [SMALL_STATE(6929)] = 225175, - [SMALL_STATE(6930)] = 225187, - [SMALL_STATE(6931)] = 225203, - [SMALL_STATE(6932)] = 225219, - [SMALL_STATE(6933)] = 225233, - [SMALL_STATE(6934)] = 225249, - [SMALL_STATE(6935)] = 225261, - [SMALL_STATE(6936)] = 225277, - [SMALL_STATE(6937)] = 225291, - [SMALL_STATE(6938)] = 225307, - [SMALL_STATE(6939)] = 225319, - [SMALL_STATE(6940)] = 225335, - [SMALL_STATE(6941)] = 225351, - [SMALL_STATE(6942)] = 225365, - [SMALL_STATE(6943)] = 225377, - [SMALL_STATE(6944)] = 225393, - [SMALL_STATE(6945)] = 225405, - [SMALL_STATE(6946)] = 225421, - [SMALL_STATE(6947)] = 225435, - [SMALL_STATE(6948)] = 225451, - [SMALL_STATE(6949)] = 225467, - [SMALL_STATE(6950)] = 225483, - [SMALL_STATE(6951)] = 225499, - [SMALL_STATE(6952)] = 225515, - [SMALL_STATE(6953)] = 225531, - [SMALL_STATE(6954)] = 225547, - [SMALL_STATE(6955)] = 225559, - [SMALL_STATE(6956)] = 225571, - [SMALL_STATE(6957)] = 225587, - [SMALL_STATE(6958)] = 225603, - [SMALL_STATE(6959)] = 225619, - [SMALL_STATE(6960)] = 225631, - [SMALL_STATE(6961)] = 225645, - [SMALL_STATE(6962)] = 225657, - [SMALL_STATE(6963)] = 225673, - [SMALL_STATE(6964)] = 225685, - [SMALL_STATE(6965)] = 225697, - [SMALL_STATE(6966)] = 225709, - [SMALL_STATE(6967)] = 225725, - [SMALL_STATE(6968)] = 225741, - [SMALL_STATE(6969)] = 225753, - [SMALL_STATE(6970)] = 225765, - [SMALL_STATE(6971)] = 225781, - [SMALL_STATE(6972)] = 225797, - [SMALL_STATE(6973)] = 225813, - [SMALL_STATE(6974)] = 225829, - [SMALL_STATE(6975)] = 225845, - [SMALL_STATE(6976)] = 225861, - [SMALL_STATE(6977)] = 225877, - [SMALL_STATE(6978)] = 225893, - [SMALL_STATE(6979)] = 225905, - [SMALL_STATE(6980)] = 225921, - [SMALL_STATE(6981)] = 225933, - [SMALL_STATE(6982)] = 225945, - [SMALL_STATE(6983)] = 225957, - [SMALL_STATE(6984)] = 225971, - [SMALL_STATE(6985)] = 225983, - [SMALL_STATE(6986)] = 225997, - [SMALL_STATE(6987)] = 226013, - [SMALL_STATE(6988)] = 226029, - [SMALL_STATE(6989)] = 226041, - [SMALL_STATE(6990)] = 226053, - [SMALL_STATE(6991)] = 226069, - [SMALL_STATE(6992)] = 226085, - [SMALL_STATE(6993)] = 226101, - [SMALL_STATE(6994)] = 226115, - [SMALL_STATE(6995)] = 226131, - [SMALL_STATE(6996)] = 226143, - [SMALL_STATE(6997)] = 226159, - [SMALL_STATE(6998)] = 226175, - [SMALL_STATE(6999)] = 226191, - [SMALL_STATE(7000)] = 226203, - [SMALL_STATE(7001)] = 226219, - [SMALL_STATE(7002)] = 226233, - [SMALL_STATE(7003)] = 226249, - [SMALL_STATE(7004)] = 226265, - [SMALL_STATE(7005)] = 226277, - [SMALL_STATE(7006)] = 226289, - [SMALL_STATE(7007)] = 226305, - [SMALL_STATE(7008)] = 226317, - [SMALL_STATE(7009)] = 226329, - [SMALL_STATE(7010)] = 226341, - [SMALL_STATE(7011)] = 226353, - [SMALL_STATE(7012)] = 226369, - [SMALL_STATE(7013)] = 226381, - [SMALL_STATE(7014)] = 226393, - [SMALL_STATE(7015)] = 226405, - [SMALL_STATE(7016)] = 226421, - [SMALL_STATE(7017)] = 226437, - [SMALL_STATE(7018)] = 226449, - [SMALL_STATE(7019)] = 226465, - [SMALL_STATE(7020)] = 226481, - [SMALL_STATE(7021)] = 226497, - [SMALL_STATE(7022)] = 226509, - [SMALL_STATE(7023)] = 226525, - [SMALL_STATE(7024)] = 226541, - [SMALL_STATE(7025)] = 226557, - [SMALL_STATE(7026)] = 226573, - [SMALL_STATE(7027)] = 226585, - [SMALL_STATE(7028)] = 226601, - [SMALL_STATE(7029)] = 226613, - [SMALL_STATE(7030)] = 226625, - [SMALL_STATE(7031)] = 226641, - [SMALL_STATE(7032)] = 226657, - [SMALL_STATE(7033)] = 226673, - [SMALL_STATE(7034)] = 226689, - [SMALL_STATE(7035)] = 226705, - [SMALL_STATE(7036)] = 226721, - [SMALL_STATE(7037)] = 226733, - [SMALL_STATE(7038)] = 226749, - [SMALL_STATE(7039)] = 226765, - [SMALL_STATE(7040)] = 226781, - [SMALL_STATE(7041)] = 226793, - [SMALL_STATE(7042)] = 226809, - [SMALL_STATE(7043)] = 226825, - [SMALL_STATE(7044)] = 226841, - [SMALL_STATE(7045)] = 226857, - [SMALL_STATE(7046)] = 226869, - [SMALL_STATE(7047)] = 226881, - [SMALL_STATE(7048)] = 226897, - [SMALL_STATE(7049)] = 226913, - [SMALL_STATE(7050)] = 226925, - [SMALL_STATE(7051)] = 226941, - [SMALL_STATE(7052)] = 226957, - [SMALL_STATE(7053)] = 226973, - [SMALL_STATE(7054)] = 226989, - [SMALL_STATE(7055)] = 227005, - [SMALL_STATE(7056)] = 227019, - [SMALL_STATE(7057)] = 227035, - [SMALL_STATE(7058)] = 227051, - [SMALL_STATE(7059)] = 227067, - [SMALL_STATE(7060)] = 227083, - [SMALL_STATE(7061)] = 227099, - [SMALL_STATE(7062)] = 227115, - [SMALL_STATE(7063)] = 227131, - [SMALL_STATE(7064)] = 227147, - [SMALL_STATE(7065)] = 227163, - [SMALL_STATE(7066)] = 227179, - [SMALL_STATE(7067)] = 227193, - [SMALL_STATE(7068)] = 227205, - [SMALL_STATE(7069)] = 227217, - [SMALL_STATE(7070)] = 227229, - [SMALL_STATE(7071)] = 227241, - [SMALL_STATE(7072)] = 227253, - [SMALL_STATE(7073)] = 227269, - [SMALL_STATE(7074)] = 227281, - [SMALL_STATE(7075)] = 227297, - [SMALL_STATE(7076)] = 227313, - [SMALL_STATE(7077)] = 227325, - [SMALL_STATE(7078)] = 227337, - [SMALL_STATE(7079)] = 227353, - [SMALL_STATE(7080)] = 227369, - [SMALL_STATE(7081)] = 227385, - [SMALL_STATE(7082)] = 227401, - [SMALL_STATE(7083)] = 227417, - [SMALL_STATE(7084)] = 227433, - [SMALL_STATE(7085)] = 227449, - [SMALL_STATE(7086)] = 227461, - [SMALL_STATE(7087)] = 227475, - [SMALL_STATE(7088)] = 227491, - [SMALL_STATE(7089)] = 227505, - [SMALL_STATE(7090)] = 227521, - [SMALL_STATE(7091)] = 227535, - [SMALL_STATE(7092)] = 227551, - [SMALL_STATE(7093)] = 227567, - [SMALL_STATE(7094)] = 227583, - [SMALL_STATE(7095)] = 227599, - [SMALL_STATE(7096)] = 227613, - [SMALL_STATE(7097)] = 227629, - [SMALL_STATE(7098)] = 227645, - [SMALL_STATE(7099)] = 227661, - [SMALL_STATE(7100)] = 227677, - [SMALL_STATE(7101)] = 227693, - [SMALL_STATE(7102)] = 227709, - [SMALL_STATE(7103)] = 227721, - [SMALL_STATE(7104)] = 227737, - [SMALL_STATE(7105)] = 227753, - [SMALL_STATE(7106)] = 227765, - [SMALL_STATE(7107)] = 227781, - [SMALL_STATE(7108)] = 227797, - [SMALL_STATE(7109)] = 227813, - [SMALL_STATE(7110)] = 227829, - [SMALL_STATE(7111)] = 227845, - [SMALL_STATE(7112)] = 227861, - [SMALL_STATE(7113)] = 227877, - [SMALL_STATE(7114)] = 227893, - [SMALL_STATE(7115)] = 227909, - [SMALL_STATE(7116)] = 227923, - [SMALL_STATE(7117)] = 227935, - [SMALL_STATE(7118)] = 227951, - [SMALL_STATE(7119)] = 227967, - [SMALL_STATE(7120)] = 227983, - [SMALL_STATE(7121)] = 227999, - [SMALL_STATE(7122)] = 228015, - [SMALL_STATE(7123)] = 228027, - [SMALL_STATE(7124)] = 228043, - [SMALL_STATE(7125)] = 228055, - [SMALL_STATE(7126)] = 228071, - [SMALL_STATE(7127)] = 228087, - [SMALL_STATE(7128)] = 228099, - [SMALL_STATE(7129)] = 228115, - [SMALL_STATE(7130)] = 228127, - [SMALL_STATE(7131)] = 228139, - [SMALL_STATE(7132)] = 228151, - [SMALL_STATE(7133)] = 228163, - [SMALL_STATE(7134)] = 228177, - [SMALL_STATE(7135)] = 228189, - [SMALL_STATE(7136)] = 228201, - [SMALL_STATE(7137)] = 228213, - [SMALL_STATE(7138)] = 228225, - [SMALL_STATE(7139)] = 228239, - [SMALL_STATE(7140)] = 228253, - [SMALL_STATE(7141)] = 228265, - [SMALL_STATE(7142)] = 228277, - [SMALL_STATE(7143)] = 228293, - [SMALL_STATE(7144)] = 228305, - [SMALL_STATE(7145)] = 228317, - [SMALL_STATE(7146)] = 228333, - [SMALL_STATE(7147)] = 228345, - [SMALL_STATE(7148)] = 228361, - [SMALL_STATE(7149)] = 228375, - [SMALL_STATE(7150)] = 228391, - [SMALL_STATE(7151)] = 228403, - [SMALL_STATE(7152)] = 228417, - [SMALL_STATE(7153)] = 228433, - [SMALL_STATE(7154)] = 228449, - [SMALL_STATE(7155)] = 228465, - [SMALL_STATE(7156)] = 228481, - [SMALL_STATE(7157)] = 228495, - [SMALL_STATE(7158)] = 228509, - [SMALL_STATE(7159)] = 228521, - [SMALL_STATE(7160)] = 228535, - [SMALL_STATE(7161)] = 228549, - [SMALL_STATE(7162)] = 228563, - [SMALL_STATE(7163)] = 228579, - [SMALL_STATE(7164)] = 228593, - [SMALL_STATE(7165)] = 228609, - [SMALL_STATE(7166)] = 228621, - [SMALL_STATE(7167)] = 228635, - [SMALL_STATE(7168)] = 228649, - [SMALL_STATE(7169)] = 228663, - [SMALL_STATE(7170)] = 228675, - [SMALL_STATE(7171)] = 228689, - [SMALL_STATE(7172)] = 228703, - [SMALL_STATE(7173)] = 228715, - [SMALL_STATE(7174)] = 228729, - [SMALL_STATE(7175)] = 228741, - [SMALL_STATE(7176)] = 228753, - [SMALL_STATE(7177)] = 228767, - [SMALL_STATE(7178)] = 228781, - [SMALL_STATE(7179)] = 228793, - [SMALL_STATE(7180)] = 228805, - [SMALL_STATE(7181)] = 228821, - [SMALL_STATE(7182)] = 228833, - [SMALL_STATE(7183)] = 228847, - [SMALL_STATE(7184)] = 228861, - [SMALL_STATE(7185)] = 228875, - [SMALL_STATE(7186)] = 228887, - [SMALL_STATE(7187)] = 228903, - [SMALL_STATE(7188)] = 228919, - [SMALL_STATE(7189)] = 228935, - [SMALL_STATE(7190)] = 228947, - [SMALL_STATE(7191)] = 228959, - [SMALL_STATE(7192)] = 228971, - [SMALL_STATE(7193)] = 228987, - [SMALL_STATE(7194)] = 228999, - [SMALL_STATE(7195)] = 229011, - [SMALL_STATE(7196)] = 229023, - [SMALL_STATE(7197)] = 229039, - [SMALL_STATE(7198)] = 229053, - [SMALL_STATE(7199)] = 229067, - [SMALL_STATE(7200)] = 229081, - [SMALL_STATE(7201)] = 229097, - [SMALL_STATE(7202)] = 229113, - [SMALL_STATE(7203)] = 229127, - [SMALL_STATE(7204)] = 229139, - [SMALL_STATE(7205)] = 229153, - [SMALL_STATE(7206)] = 229167, - [SMALL_STATE(7207)] = 229179, - [SMALL_STATE(7208)] = 229193, - [SMALL_STATE(7209)] = 229209, - [SMALL_STATE(7210)] = 229225, - [SMALL_STATE(7211)] = 229239, - [SMALL_STATE(7212)] = 229255, - [SMALL_STATE(7213)] = 229271, - [SMALL_STATE(7214)] = 229283, - [SMALL_STATE(7215)] = 229297, - [SMALL_STATE(7216)] = 229311, - [SMALL_STATE(7217)] = 229325, - [SMALL_STATE(7218)] = 229339, - [SMALL_STATE(7219)] = 229353, - [SMALL_STATE(7220)] = 229365, - [SMALL_STATE(7221)] = 229379, - [SMALL_STATE(7222)] = 229395, - [SMALL_STATE(7223)] = 229411, - [SMALL_STATE(7224)] = 229423, - [SMALL_STATE(7225)] = 229437, - [SMALL_STATE(7226)] = 229451, - [SMALL_STATE(7227)] = 229467, - [SMALL_STATE(7228)] = 229483, - [SMALL_STATE(7229)] = 229499, - [SMALL_STATE(7230)] = 229511, - [SMALL_STATE(7231)] = 229523, - [SMALL_STATE(7232)] = 229539, - [SMALL_STATE(7233)] = 229555, - [SMALL_STATE(7234)] = 229567, - [SMALL_STATE(7235)] = 229583, - [SMALL_STATE(7236)] = 229599, - [SMALL_STATE(7237)] = 229613, - [SMALL_STATE(7238)] = 229627, - [SMALL_STATE(7239)] = 229639, - [SMALL_STATE(7240)] = 229655, - [SMALL_STATE(7241)] = 229669, - [SMALL_STATE(7242)] = 229685, - [SMALL_STATE(7243)] = 229701, - [SMALL_STATE(7244)] = 229717, - [SMALL_STATE(7245)] = 229731, - [SMALL_STATE(7246)] = 229743, - [SMALL_STATE(7247)] = 229755, - [SMALL_STATE(7248)] = 229771, - [SMALL_STATE(7249)] = 229783, - [SMALL_STATE(7250)] = 229795, - [SMALL_STATE(7251)] = 229809, - [SMALL_STATE(7252)] = 229825, - [SMALL_STATE(7253)] = 229837, - [SMALL_STATE(7254)] = 229851, - [SMALL_STATE(7255)] = 229865, - [SMALL_STATE(7256)] = 229877, - [SMALL_STATE(7257)] = 229889, - [SMALL_STATE(7258)] = 229903, - [SMALL_STATE(7259)] = 229919, - [SMALL_STATE(7260)] = 229935, - [SMALL_STATE(7261)] = 229951, - [SMALL_STATE(7262)] = 229963, - [SMALL_STATE(7263)] = 229979, - [SMALL_STATE(7264)] = 229991, - [SMALL_STATE(7265)] = 230005, - [SMALL_STATE(7266)] = 230019, - [SMALL_STATE(7267)] = 230033, - [SMALL_STATE(7268)] = 230045, - [SMALL_STATE(7269)] = 230059, - [SMALL_STATE(7270)] = 230075, - [SMALL_STATE(7271)] = 230091, - [SMALL_STATE(7272)] = 230107, - [SMALL_STATE(7273)] = 230123, - [SMALL_STATE(7274)] = 230139, - [SMALL_STATE(7275)] = 230155, - [SMALL_STATE(7276)] = 230171, - [SMALL_STATE(7277)] = 230185, - [SMALL_STATE(7278)] = 230197, - [SMALL_STATE(7279)] = 230209, - [SMALL_STATE(7280)] = 230225, - [SMALL_STATE(7281)] = 230239, - [SMALL_STATE(7282)] = 230255, - [SMALL_STATE(7283)] = 230267, - [SMALL_STATE(7284)] = 230281, - [SMALL_STATE(7285)] = 230297, - [SMALL_STATE(7286)] = 230309, - [SMALL_STATE(7287)] = 230323, - [SMALL_STATE(7288)] = 230337, - [SMALL_STATE(7289)] = 230353, - [SMALL_STATE(7290)] = 230369, - [SMALL_STATE(7291)] = 230383, - [SMALL_STATE(7292)] = 230399, - [SMALL_STATE(7293)] = 230411, - [SMALL_STATE(7294)] = 230427, - [SMALL_STATE(7295)] = 230443, - [SMALL_STATE(7296)] = 230459, - [SMALL_STATE(7297)] = 230475, - [SMALL_STATE(7298)] = 230491, - [SMALL_STATE(7299)] = 230505, - [SMALL_STATE(7300)] = 230517, - [SMALL_STATE(7301)] = 230533, - [SMALL_STATE(7302)] = 230547, - [SMALL_STATE(7303)] = 230559, - [SMALL_STATE(7304)] = 230573, - [SMALL_STATE(7305)] = 230585, - [SMALL_STATE(7306)] = 230601, - [SMALL_STATE(7307)] = 230617, - [SMALL_STATE(7308)] = 230633, - [SMALL_STATE(7309)] = 230649, - [SMALL_STATE(7310)] = 230663, - [SMALL_STATE(7311)] = 230677, - [SMALL_STATE(7312)] = 230693, - [SMALL_STATE(7313)] = 230707, - [SMALL_STATE(7314)] = 230721, - [SMALL_STATE(7315)] = 230737, - [SMALL_STATE(7316)] = 230753, - [SMALL_STATE(7317)] = 230765, - [SMALL_STATE(7318)] = 230781, - [SMALL_STATE(7319)] = 230797, - [SMALL_STATE(7320)] = 230811, - [SMALL_STATE(7321)] = 230825, - [SMALL_STATE(7322)] = 230841, - [SMALL_STATE(7323)] = 230857, - [SMALL_STATE(7324)] = 230873, - [SMALL_STATE(7325)] = 230889, - [SMALL_STATE(7326)] = 230901, - [SMALL_STATE(7327)] = 230917, - [SMALL_STATE(7328)] = 230933, - [SMALL_STATE(7329)] = 230947, - [SMALL_STATE(7330)] = 230959, - [SMALL_STATE(7331)] = 230975, - [SMALL_STATE(7332)] = 230989, - [SMALL_STATE(7333)] = 231005, - [SMALL_STATE(7334)] = 231021, - [SMALL_STATE(7335)] = 231037, - [SMALL_STATE(7336)] = 231053, - [SMALL_STATE(7337)] = 231069, - [SMALL_STATE(7338)] = 231083, - [SMALL_STATE(7339)] = 231095, - [SMALL_STATE(7340)] = 231111, - [SMALL_STATE(7341)] = 231125, - [SMALL_STATE(7342)] = 231141, - [SMALL_STATE(7343)] = 231157, - [SMALL_STATE(7344)] = 231173, - [SMALL_STATE(7345)] = 231189, - [SMALL_STATE(7346)] = 231203, - [SMALL_STATE(7347)] = 231215, - [SMALL_STATE(7348)] = 231229, - [SMALL_STATE(7349)] = 231245, - [SMALL_STATE(7350)] = 231257, - [SMALL_STATE(7351)] = 231273, - [SMALL_STATE(7352)] = 231289, - [SMALL_STATE(7353)] = 231305, - [SMALL_STATE(7354)] = 231321, - [SMALL_STATE(7355)] = 231335, - [SMALL_STATE(7356)] = 231349, - [SMALL_STATE(7357)] = 231365, - [SMALL_STATE(7358)] = 231381, - [SMALL_STATE(7359)] = 231393, - [SMALL_STATE(7360)] = 231409, - [SMALL_STATE(7361)] = 231425, - [SMALL_STATE(7362)] = 231439, - [SMALL_STATE(7363)] = 231455, - [SMALL_STATE(7364)] = 231469, - [SMALL_STATE(7365)] = 231485, - [SMALL_STATE(7366)] = 231501, - [SMALL_STATE(7367)] = 231517, - [SMALL_STATE(7368)] = 231533, - [SMALL_STATE(7369)] = 231547, - [SMALL_STATE(7370)] = 231563, - [SMALL_STATE(7371)] = 231577, - [SMALL_STATE(7372)] = 231589, - [SMALL_STATE(7373)] = 231605, - [SMALL_STATE(7374)] = 231621, - [SMALL_STATE(7375)] = 231633, - [SMALL_STATE(7376)] = 231649, - [SMALL_STATE(7377)] = 231665, - [SMALL_STATE(7378)] = 231679, - [SMALL_STATE(7379)] = 231693, - [SMALL_STATE(7380)] = 231709, - [SMALL_STATE(7381)] = 231725, - [SMALL_STATE(7382)] = 231741, - [SMALL_STATE(7383)] = 231757, - [SMALL_STATE(7384)] = 231773, - [SMALL_STATE(7385)] = 231787, - [SMALL_STATE(7386)] = 231803, - [SMALL_STATE(7387)] = 231817, - [SMALL_STATE(7388)] = 231833, - [SMALL_STATE(7389)] = 231849, - [SMALL_STATE(7390)] = 231865, - [SMALL_STATE(7391)] = 231881, - [SMALL_STATE(7392)] = 231897, - [SMALL_STATE(7393)] = 231911, - [SMALL_STATE(7394)] = 231925, - [SMALL_STATE(7395)] = 231941, - [SMALL_STATE(7396)] = 231957, - [SMALL_STATE(7397)] = 231973, - [SMALL_STATE(7398)] = 231989, - [SMALL_STATE(7399)] = 232005, - [SMALL_STATE(7400)] = 232019, - [SMALL_STATE(7401)] = 232033, - [SMALL_STATE(7402)] = 232047, - [SMALL_STATE(7403)] = 232063, - [SMALL_STATE(7404)] = 232079, - [SMALL_STATE(7405)] = 232095, - [SMALL_STATE(7406)] = 232111, - [SMALL_STATE(7407)] = 232125, - [SMALL_STATE(7408)] = 232139, - [SMALL_STATE(7409)] = 232155, - [SMALL_STATE(7410)] = 232171, - [SMALL_STATE(7411)] = 232187, - [SMALL_STATE(7412)] = 232203, - [SMALL_STATE(7413)] = 232217, - [SMALL_STATE(7414)] = 232231, - [SMALL_STATE(7415)] = 232245, - [SMALL_STATE(7416)] = 232261, - [SMALL_STATE(7417)] = 232277, - [SMALL_STATE(7418)] = 232293, - [SMALL_STATE(7419)] = 232309, - [SMALL_STATE(7420)] = 232323, - [SMALL_STATE(7421)] = 232337, - [SMALL_STATE(7422)] = 232353, - [SMALL_STATE(7423)] = 232369, - [SMALL_STATE(7424)] = 232385, - [SMALL_STATE(7425)] = 232401, - [SMALL_STATE(7426)] = 232415, - [SMALL_STATE(7427)] = 232431, - [SMALL_STATE(7428)] = 232443, - [SMALL_STATE(7429)] = 232459, - [SMALL_STATE(7430)] = 232475, - [SMALL_STATE(7431)] = 232487, - [SMALL_STATE(7432)] = 232499, - [SMALL_STATE(7433)] = 232513, - [SMALL_STATE(7434)] = 232529, - [SMALL_STATE(7435)] = 232545, - [SMALL_STATE(7436)] = 232561, - [SMALL_STATE(7437)] = 232577, - [SMALL_STATE(7438)] = 232593, - [SMALL_STATE(7439)] = 232609, - [SMALL_STATE(7440)] = 232625, - [SMALL_STATE(7441)] = 232641, - [SMALL_STATE(7442)] = 232653, - [SMALL_STATE(7443)] = 232665, - [SMALL_STATE(7444)] = 232677, - [SMALL_STATE(7445)] = 232689, - [SMALL_STATE(7446)] = 232703, - [SMALL_STATE(7447)] = 232719, - [SMALL_STATE(7448)] = 232735, - [SMALL_STATE(7449)] = 232751, - [SMALL_STATE(7450)] = 232765, - [SMALL_STATE(7451)] = 232779, - [SMALL_STATE(7452)] = 232793, - [SMALL_STATE(7453)] = 232805, - [SMALL_STATE(7454)] = 232821, - [SMALL_STATE(7455)] = 232833, - [SMALL_STATE(7456)] = 232849, - [SMALL_STATE(7457)] = 232862, - [SMALL_STATE(7458)] = 232875, - [SMALL_STATE(7459)] = 232888, - [SMALL_STATE(7460)] = 232901, - [SMALL_STATE(7461)] = 232914, - [SMALL_STATE(7462)] = 232927, - [SMALL_STATE(7463)] = 232940, - [SMALL_STATE(7464)] = 232953, - [SMALL_STATE(7465)] = 232966, - [SMALL_STATE(7466)] = 232979, - [SMALL_STATE(7467)] = 232992, - [SMALL_STATE(7468)] = 233005, - [SMALL_STATE(7469)] = 233018, - [SMALL_STATE(7470)] = 233031, - [SMALL_STATE(7471)] = 233044, - [SMALL_STATE(7472)] = 233057, - [SMALL_STATE(7473)] = 233070, - [SMALL_STATE(7474)] = 233083, - [SMALL_STATE(7475)] = 233096, - [SMALL_STATE(7476)] = 233109, - [SMALL_STATE(7477)] = 233122, - [SMALL_STATE(7478)] = 233135, - [SMALL_STATE(7479)] = 233148, - [SMALL_STATE(7480)] = 233161, - [SMALL_STATE(7481)] = 233174, - [SMALL_STATE(7482)] = 233187, - [SMALL_STATE(7483)] = 233200, - [SMALL_STATE(7484)] = 233213, - [SMALL_STATE(7485)] = 233224, - [SMALL_STATE(7486)] = 233237, - [SMALL_STATE(7487)] = 233250, - [SMALL_STATE(7488)] = 233263, - [SMALL_STATE(7489)] = 233276, - [SMALL_STATE(7490)] = 233289, - [SMALL_STATE(7491)] = 233302, - [SMALL_STATE(7492)] = 233315, - [SMALL_STATE(7493)] = 233328, - [SMALL_STATE(7494)] = 233341, - [SMALL_STATE(7495)] = 233354, - [SMALL_STATE(7496)] = 233367, - [SMALL_STATE(7497)] = 233380, - [SMALL_STATE(7498)] = 233393, - [SMALL_STATE(7499)] = 233406, - [SMALL_STATE(7500)] = 233419, - [SMALL_STATE(7501)] = 233432, - [SMALL_STATE(7502)] = 233445, - [SMALL_STATE(7503)] = 233458, - [SMALL_STATE(7504)] = 233471, - [SMALL_STATE(7505)] = 233484, - [SMALL_STATE(7506)] = 233497, - [SMALL_STATE(7507)] = 233510, - [SMALL_STATE(7508)] = 233523, - [SMALL_STATE(7509)] = 233536, - [SMALL_STATE(7510)] = 233549, - [SMALL_STATE(7511)] = 233562, - [SMALL_STATE(7512)] = 233575, - [SMALL_STATE(7513)] = 233588, - [SMALL_STATE(7514)] = 233601, - [SMALL_STATE(7515)] = 233614, - [SMALL_STATE(7516)] = 233627, - [SMALL_STATE(7517)] = 233640, - [SMALL_STATE(7518)] = 233653, - [SMALL_STATE(7519)] = 233666, - [SMALL_STATE(7520)] = 233679, - [SMALL_STATE(7521)] = 233692, - [SMALL_STATE(7522)] = 233705, - [SMALL_STATE(7523)] = 233718, - [SMALL_STATE(7524)] = 233731, - [SMALL_STATE(7525)] = 233744, - [SMALL_STATE(7526)] = 233757, - [SMALL_STATE(7527)] = 233770, - [SMALL_STATE(7528)] = 233783, - [SMALL_STATE(7529)] = 233796, - [SMALL_STATE(7530)] = 233809, - [SMALL_STATE(7531)] = 233820, - [SMALL_STATE(7532)] = 233833, - [SMALL_STATE(7533)] = 233846, - [SMALL_STATE(7534)] = 233859, - [SMALL_STATE(7535)] = 233872, - [SMALL_STATE(7536)] = 233885, - [SMALL_STATE(7537)] = 233898, - [SMALL_STATE(7538)] = 233911, - [SMALL_STATE(7539)] = 233924, - [SMALL_STATE(7540)] = 233937, - [SMALL_STATE(7541)] = 233950, - [SMALL_STATE(7542)] = 233963, - [SMALL_STATE(7543)] = 233976, - [SMALL_STATE(7544)] = 233989, - [SMALL_STATE(7545)] = 234002, - [SMALL_STATE(7546)] = 234015, - [SMALL_STATE(7547)] = 234028, - [SMALL_STATE(7548)] = 234041, - [SMALL_STATE(7549)] = 234054, - [SMALL_STATE(7550)] = 234067, - [SMALL_STATE(7551)] = 234080, - [SMALL_STATE(7552)] = 234093, - [SMALL_STATE(7553)] = 234106, - [SMALL_STATE(7554)] = 234119, - [SMALL_STATE(7555)] = 234132, - [SMALL_STATE(7556)] = 234145, - [SMALL_STATE(7557)] = 234158, - [SMALL_STATE(7558)] = 234171, - [SMALL_STATE(7559)] = 234184, - [SMALL_STATE(7560)] = 234197, - [SMALL_STATE(7561)] = 234210, - [SMALL_STATE(7562)] = 234223, - [SMALL_STATE(7563)] = 234236, - [SMALL_STATE(7564)] = 234249, - [SMALL_STATE(7565)] = 234262, - [SMALL_STATE(7566)] = 234275, - [SMALL_STATE(7567)] = 234288, - [SMALL_STATE(7568)] = 234301, - [SMALL_STATE(7569)] = 234314, - [SMALL_STATE(7570)] = 234327, - [SMALL_STATE(7571)] = 234340, - [SMALL_STATE(7572)] = 234353, - [SMALL_STATE(7573)] = 234366, - [SMALL_STATE(7574)] = 234379, - [SMALL_STATE(7575)] = 234392, - [SMALL_STATE(7576)] = 234405, - [SMALL_STATE(7577)] = 234418, - [SMALL_STATE(7578)] = 234431, - [SMALL_STATE(7579)] = 234444, - [SMALL_STATE(7580)] = 234457, - [SMALL_STATE(7581)] = 234470, - [SMALL_STATE(7582)] = 234481, - [SMALL_STATE(7583)] = 234494, - [SMALL_STATE(7584)] = 234507, - [SMALL_STATE(7585)] = 234520, - [SMALL_STATE(7586)] = 234533, - [SMALL_STATE(7587)] = 234546, - [SMALL_STATE(7588)] = 234559, - [SMALL_STATE(7589)] = 234572, - [SMALL_STATE(7590)] = 234585, - [SMALL_STATE(7591)] = 234598, - [SMALL_STATE(7592)] = 234611, - [SMALL_STATE(7593)] = 234624, - [SMALL_STATE(7594)] = 234637, - [SMALL_STATE(7595)] = 234650, - [SMALL_STATE(7596)] = 234663, - [SMALL_STATE(7597)] = 234676, - [SMALL_STATE(7598)] = 234689, - [SMALL_STATE(7599)] = 234702, - [SMALL_STATE(7600)] = 234715, - [SMALL_STATE(7601)] = 234728, - [SMALL_STATE(7602)] = 234741, - [SMALL_STATE(7603)] = 234754, - [SMALL_STATE(7604)] = 234767, - [SMALL_STATE(7605)] = 234780, - [SMALL_STATE(7606)] = 234793, - [SMALL_STATE(7607)] = 234806, - [SMALL_STATE(7608)] = 234819, - [SMALL_STATE(7609)] = 234830, - [SMALL_STATE(7610)] = 234843, - [SMALL_STATE(7611)] = 234856, - [SMALL_STATE(7612)] = 234869, - [SMALL_STATE(7613)] = 234882, - [SMALL_STATE(7614)] = 234895, - [SMALL_STATE(7615)] = 234908, - [SMALL_STATE(7616)] = 234921, - [SMALL_STATE(7617)] = 234934, - [SMALL_STATE(7618)] = 234947, - [SMALL_STATE(7619)] = 234960, - [SMALL_STATE(7620)] = 234973, - [SMALL_STATE(7621)] = 234986, - [SMALL_STATE(7622)] = 234999, - [SMALL_STATE(7623)] = 235012, - [SMALL_STATE(7624)] = 235025, - [SMALL_STATE(7625)] = 235038, - [SMALL_STATE(7626)] = 235051, - [SMALL_STATE(7627)] = 235064, - [SMALL_STATE(7628)] = 235077, - [SMALL_STATE(7629)] = 235090, - [SMALL_STATE(7630)] = 235101, - [SMALL_STATE(7631)] = 235114, - [SMALL_STATE(7632)] = 235127, - [SMALL_STATE(7633)] = 235140, - [SMALL_STATE(7634)] = 235153, - [SMALL_STATE(7635)] = 235166, - [SMALL_STATE(7636)] = 235179, - [SMALL_STATE(7637)] = 235192, - [SMALL_STATE(7638)] = 235205, - [SMALL_STATE(7639)] = 235218, - [SMALL_STATE(7640)] = 235231, - [SMALL_STATE(7641)] = 235244, - [SMALL_STATE(7642)] = 235257, - [SMALL_STATE(7643)] = 235270, - [SMALL_STATE(7644)] = 235283, - [SMALL_STATE(7645)] = 235296, - [SMALL_STATE(7646)] = 235309, - [SMALL_STATE(7647)] = 235322, - [SMALL_STATE(7648)] = 235335, - [SMALL_STATE(7649)] = 235348, - [SMALL_STATE(7650)] = 235361, - [SMALL_STATE(7651)] = 235374, - [SMALL_STATE(7652)] = 235387, - [SMALL_STATE(7653)] = 235400, - [SMALL_STATE(7654)] = 235413, - [SMALL_STATE(7655)] = 235426, - [SMALL_STATE(7656)] = 235439, - [SMALL_STATE(7657)] = 235452, - [SMALL_STATE(7658)] = 235465, - [SMALL_STATE(7659)] = 235478, - [SMALL_STATE(7660)] = 235491, - [SMALL_STATE(7661)] = 235504, - [SMALL_STATE(7662)] = 235517, - [SMALL_STATE(7663)] = 235530, - [SMALL_STATE(7664)] = 235541, - [SMALL_STATE(7665)] = 235554, - [SMALL_STATE(7666)] = 235567, - [SMALL_STATE(7667)] = 235580, - [SMALL_STATE(7668)] = 235593, - [SMALL_STATE(7669)] = 235606, - [SMALL_STATE(7670)] = 235619, - [SMALL_STATE(7671)] = 235632, - [SMALL_STATE(7672)] = 235645, - [SMALL_STATE(7673)] = 235658, - [SMALL_STATE(7674)] = 235671, - [SMALL_STATE(7675)] = 235684, - [SMALL_STATE(7676)] = 235697, - [SMALL_STATE(7677)] = 235710, - [SMALL_STATE(7678)] = 235723, - [SMALL_STATE(7679)] = 235736, - [SMALL_STATE(7680)] = 235749, - [SMALL_STATE(7681)] = 235762, - [SMALL_STATE(7682)] = 235775, - [SMALL_STATE(7683)] = 235788, - [SMALL_STATE(7684)] = 235801, - [SMALL_STATE(7685)] = 235814, - [SMALL_STATE(7686)] = 235827, - [SMALL_STATE(7687)] = 235840, - [SMALL_STATE(7688)] = 235853, - [SMALL_STATE(7689)] = 235866, - [SMALL_STATE(7690)] = 235879, - [SMALL_STATE(7691)] = 235892, - [SMALL_STATE(7692)] = 235905, - [SMALL_STATE(7693)] = 235918, - [SMALL_STATE(7694)] = 235931, - [SMALL_STATE(7695)] = 235944, - [SMALL_STATE(7696)] = 235957, - [SMALL_STATE(7697)] = 235970, - [SMALL_STATE(7698)] = 235983, - [SMALL_STATE(7699)] = 235996, - [SMALL_STATE(7700)] = 236009, - [SMALL_STATE(7701)] = 236022, - [SMALL_STATE(7702)] = 236035, - [SMALL_STATE(7703)] = 236046, - [SMALL_STATE(7704)] = 236059, - [SMALL_STATE(7705)] = 236070, - [SMALL_STATE(7706)] = 236083, - [SMALL_STATE(7707)] = 236096, - [SMALL_STATE(7708)] = 236109, - [SMALL_STATE(7709)] = 236122, - [SMALL_STATE(7710)] = 236135, - [SMALL_STATE(7711)] = 236148, - [SMALL_STATE(7712)] = 236161, - [SMALL_STATE(7713)] = 236174, - [SMALL_STATE(7714)] = 236184, - [SMALL_STATE(7715)] = 236194, - [SMALL_STATE(7716)] = 236204, - [SMALL_STATE(7717)] = 236214, - [SMALL_STATE(7718)] = 236224, - [SMALL_STATE(7719)] = 236234, - [SMALL_STATE(7720)] = 236244, - [SMALL_STATE(7721)] = 236254, - [SMALL_STATE(7722)] = 236264, - [SMALL_STATE(7723)] = 236274, - [SMALL_STATE(7724)] = 236284, - [SMALL_STATE(7725)] = 236294, - [SMALL_STATE(7726)] = 236304, - [SMALL_STATE(7727)] = 236314, - [SMALL_STATE(7728)] = 236324, - [SMALL_STATE(7729)] = 236334, - [SMALL_STATE(7730)] = 236344, - [SMALL_STATE(7731)] = 236354, - [SMALL_STATE(7732)] = 236364, - [SMALL_STATE(7733)] = 236374, - [SMALL_STATE(7734)] = 236384, - [SMALL_STATE(7735)] = 236394, - [SMALL_STATE(7736)] = 236404, - [SMALL_STATE(7737)] = 236414, - [SMALL_STATE(7738)] = 236424, - [SMALL_STATE(7739)] = 236434, - [SMALL_STATE(7740)] = 236444, - [SMALL_STATE(7741)] = 236454, - [SMALL_STATE(7742)] = 236464, - [SMALL_STATE(7743)] = 236474, - [SMALL_STATE(7744)] = 236484, - [SMALL_STATE(7745)] = 236494, - [SMALL_STATE(7746)] = 236504, - [SMALL_STATE(7747)] = 236514, - [SMALL_STATE(7748)] = 236524, - [SMALL_STATE(7749)] = 236534, - [SMALL_STATE(7750)] = 236544, - [SMALL_STATE(7751)] = 236554, - [SMALL_STATE(7752)] = 236564, - [SMALL_STATE(7753)] = 236574, - [SMALL_STATE(7754)] = 236584, - [SMALL_STATE(7755)] = 236594, - [SMALL_STATE(7756)] = 236604, - [SMALL_STATE(7757)] = 236614, - [SMALL_STATE(7758)] = 236624, - [SMALL_STATE(7759)] = 236634, - [SMALL_STATE(7760)] = 236644, - [SMALL_STATE(7761)] = 236654, - [SMALL_STATE(7762)] = 236664, - [SMALL_STATE(7763)] = 236674, - [SMALL_STATE(7764)] = 236684, - [SMALL_STATE(7765)] = 236694, - [SMALL_STATE(7766)] = 236704, - [SMALL_STATE(7767)] = 236714, - [SMALL_STATE(7768)] = 236724, - [SMALL_STATE(7769)] = 236734, - [SMALL_STATE(7770)] = 236744, - [SMALL_STATE(7771)] = 236754, - [SMALL_STATE(7772)] = 236764, - [SMALL_STATE(7773)] = 236774, - [SMALL_STATE(7774)] = 236784, - [SMALL_STATE(7775)] = 236794, - [SMALL_STATE(7776)] = 236804, - [SMALL_STATE(7777)] = 236814, - [SMALL_STATE(7778)] = 236824, - [SMALL_STATE(7779)] = 236834, - [SMALL_STATE(7780)] = 236844, - [SMALL_STATE(7781)] = 236854, - [SMALL_STATE(7782)] = 236864, - [SMALL_STATE(7783)] = 236874, - [SMALL_STATE(7784)] = 236884, - [SMALL_STATE(7785)] = 236894, - [SMALL_STATE(7786)] = 236904, - [SMALL_STATE(7787)] = 236914, - [SMALL_STATE(7788)] = 236924, - [SMALL_STATE(7789)] = 236934, - [SMALL_STATE(7790)] = 236944, - [SMALL_STATE(7791)] = 236954, - [SMALL_STATE(7792)] = 236964, - [SMALL_STATE(7793)] = 236974, - [SMALL_STATE(7794)] = 236984, - [SMALL_STATE(7795)] = 236994, - [SMALL_STATE(7796)] = 237004, - [SMALL_STATE(7797)] = 237014, - [SMALL_STATE(7798)] = 237024, - [SMALL_STATE(7799)] = 237034, - [SMALL_STATE(7800)] = 237044, - [SMALL_STATE(7801)] = 237054, - [SMALL_STATE(7802)] = 237064, - [SMALL_STATE(7803)] = 237074, - [SMALL_STATE(7804)] = 237084, - [SMALL_STATE(7805)] = 237094, - [SMALL_STATE(7806)] = 237104, - [SMALL_STATE(7807)] = 237114, - [SMALL_STATE(7808)] = 237124, - [SMALL_STATE(7809)] = 237134, - [SMALL_STATE(7810)] = 237144, - [SMALL_STATE(7811)] = 237154, - [SMALL_STATE(7812)] = 237164, - [SMALL_STATE(7813)] = 237174, - [SMALL_STATE(7814)] = 237184, - [SMALL_STATE(7815)] = 237194, - [SMALL_STATE(7816)] = 237204, - [SMALL_STATE(7817)] = 237214, - [SMALL_STATE(7818)] = 237224, - [SMALL_STATE(7819)] = 237234, - [SMALL_STATE(7820)] = 237244, - [SMALL_STATE(7821)] = 237254, - [SMALL_STATE(7822)] = 237264, - [SMALL_STATE(7823)] = 237274, - [SMALL_STATE(7824)] = 237284, - [SMALL_STATE(7825)] = 237294, - [SMALL_STATE(7826)] = 237304, - [SMALL_STATE(7827)] = 237314, - [SMALL_STATE(7828)] = 237324, - [SMALL_STATE(7829)] = 237334, - [SMALL_STATE(7830)] = 237344, - [SMALL_STATE(7831)] = 237354, - [SMALL_STATE(7832)] = 237364, - [SMALL_STATE(7833)] = 237374, - [SMALL_STATE(7834)] = 237384, - [SMALL_STATE(7835)] = 237394, - [SMALL_STATE(7836)] = 237404, - [SMALL_STATE(7837)] = 237414, - [SMALL_STATE(7838)] = 237424, - [SMALL_STATE(7839)] = 237434, - [SMALL_STATE(7840)] = 237444, - [SMALL_STATE(7841)] = 237454, - [SMALL_STATE(7842)] = 237464, - [SMALL_STATE(7843)] = 237474, - [SMALL_STATE(7844)] = 237484, - [SMALL_STATE(7845)] = 237494, - [SMALL_STATE(7846)] = 237504, - [SMALL_STATE(7847)] = 237514, - [SMALL_STATE(7848)] = 237524, - [SMALL_STATE(7849)] = 237534, - [SMALL_STATE(7850)] = 237544, - [SMALL_STATE(7851)] = 237554, - [SMALL_STATE(7852)] = 237564, - [SMALL_STATE(7853)] = 237574, - [SMALL_STATE(7854)] = 237584, - [SMALL_STATE(7855)] = 237594, - [SMALL_STATE(7856)] = 237604, - [SMALL_STATE(7857)] = 237614, - [SMALL_STATE(7858)] = 237624, - [SMALL_STATE(7859)] = 237634, - [SMALL_STATE(7860)] = 237644, - [SMALL_STATE(7861)] = 237654, - [SMALL_STATE(7862)] = 237664, - [SMALL_STATE(7863)] = 237674, - [SMALL_STATE(7864)] = 237684, - [SMALL_STATE(7865)] = 237694, - [SMALL_STATE(7866)] = 237704, - [SMALL_STATE(7867)] = 237714, - [SMALL_STATE(7868)] = 237724, - [SMALL_STATE(7869)] = 237734, - [SMALL_STATE(7870)] = 237744, - [SMALL_STATE(7871)] = 237754, - [SMALL_STATE(7872)] = 237764, - [SMALL_STATE(7873)] = 237774, - [SMALL_STATE(7874)] = 237784, - [SMALL_STATE(7875)] = 237794, - [SMALL_STATE(7876)] = 237804, - [SMALL_STATE(7877)] = 237814, - [SMALL_STATE(7878)] = 237824, - [SMALL_STATE(7879)] = 237834, - [SMALL_STATE(7880)] = 237844, - [SMALL_STATE(7881)] = 237854, - [SMALL_STATE(7882)] = 237864, - [SMALL_STATE(7883)] = 237874, - [SMALL_STATE(7884)] = 237884, - [SMALL_STATE(7885)] = 237894, - [SMALL_STATE(7886)] = 237904, - [SMALL_STATE(7887)] = 237914, - [SMALL_STATE(7888)] = 237924, - [SMALL_STATE(7889)] = 237934, - [SMALL_STATE(7890)] = 237944, - [SMALL_STATE(7891)] = 237954, - [SMALL_STATE(7892)] = 237964, - [SMALL_STATE(7893)] = 237974, - [SMALL_STATE(7894)] = 237984, - [SMALL_STATE(7895)] = 237994, - [SMALL_STATE(7896)] = 238004, - [SMALL_STATE(7897)] = 238014, - [SMALL_STATE(7898)] = 238024, - [SMALL_STATE(7899)] = 238034, - [SMALL_STATE(7900)] = 238044, - [SMALL_STATE(7901)] = 238054, - [SMALL_STATE(7902)] = 238064, - [SMALL_STATE(7903)] = 238074, - [SMALL_STATE(7904)] = 238084, - [SMALL_STATE(7905)] = 238094, - [SMALL_STATE(7906)] = 238104, - [SMALL_STATE(7907)] = 238114, - [SMALL_STATE(7908)] = 238124, - [SMALL_STATE(7909)] = 238134, - [SMALL_STATE(7910)] = 238144, - [SMALL_STATE(7911)] = 238154, - [SMALL_STATE(7912)] = 238164, - [SMALL_STATE(7913)] = 238174, - [SMALL_STATE(7914)] = 238184, - [SMALL_STATE(7915)] = 238194, - [SMALL_STATE(7916)] = 238204, - [SMALL_STATE(7917)] = 238214, - [SMALL_STATE(7918)] = 238224, - [SMALL_STATE(7919)] = 238234, - [SMALL_STATE(7920)] = 238244, - [SMALL_STATE(7921)] = 238254, - [SMALL_STATE(7922)] = 238264, - [SMALL_STATE(7923)] = 238274, - [SMALL_STATE(7924)] = 238284, - [SMALL_STATE(7925)] = 238294, - [SMALL_STATE(7926)] = 238304, - [SMALL_STATE(7927)] = 238314, - [SMALL_STATE(7928)] = 238324, - [SMALL_STATE(7929)] = 238334, - [SMALL_STATE(7930)] = 238344, - [SMALL_STATE(7931)] = 238354, - [SMALL_STATE(7932)] = 238364, - [SMALL_STATE(7933)] = 238374, - [SMALL_STATE(7934)] = 238384, - [SMALL_STATE(7935)] = 238394, - [SMALL_STATE(7936)] = 238404, - [SMALL_STATE(7937)] = 238414, - [SMALL_STATE(7938)] = 238424, - [SMALL_STATE(7939)] = 238434, - [SMALL_STATE(7940)] = 238444, - [SMALL_STATE(7941)] = 238454, - [SMALL_STATE(7942)] = 238464, - [SMALL_STATE(7943)] = 238474, - [SMALL_STATE(7944)] = 238484, - [SMALL_STATE(7945)] = 238494, - [SMALL_STATE(7946)] = 238504, - [SMALL_STATE(7947)] = 238514, - [SMALL_STATE(7948)] = 238524, - [SMALL_STATE(7949)] = 238534, - [SMALL_STATE(7950)] = 238544, - [SMALL_STATE(7951)] = 238554, - [SMALL_STATE(7952)] = 238564, - [SMALL_STATE(7953)] = 238574, - [SMALL_STATE(7954)] = 238584, - [SMALL_STATE(7955)] = 238594, - [SMALL_STATE(7956)] = 238604, - [SMALL_STATE(7957)] = 238614, - [SMALL_STATE(7958)] = 238624, - [SMALL_STATE(7959)] = 238634, - [SMALL_STATE(7960)] = 238644, - [SMALL_STATE(7961)] = 238654, - [SMALL_STATE(7962)] = 238664, - [SMALL_STATE(7963)] = 238674, - [SMALL_STATE(7964)] = 238684, - [SMALL_STATE(7965)] = 238694, - [SMALL_STATE(7966)] = 238704, - [SMALL_STATE(7967)] = 238714, - [SMALL_STATE(7968)] = 238724, - [SMALL_STATE(7969)] = 238734, - [SMALL_STATE(7970)] = 238744, - [SMALL_STATE(7971)] = 238754, - [SMALL_STATE(7972)] = 238764, - [SMALL_STATE(7973)] = 238774, - [SMALL_STATE(7974)] = 238784, - [SMALL_STATE(7975)] = 238794, - [SMALL_STATE(7976)] = 238804, - [SMALL_STATE(7977)] = 238814, - [SMALL_STATE(7978)] = 238824, - [SMALL_STATE(7979)] = 238834, - [SMALL_STATE(7980)] = 238844, - [SMALL_STATE(7981)] = 238854, - [SMALL_STATE(7982)] = 238864, - [SMALL_STATE(7983)] = 238874, - [SMALL_STATE(7984)] = 238884, - [SMALL_STATE(7985)] = 238894, - [SMALL_STATE(7986)] = 238904, - [SMALL_STATE(7987)] = 238914, - [SMALL_STATE(7988)] = 238924, - [SMALL_STATE(7989)] = 238934, - [SMALL_STATE(7990)] = 238944, - [SMALL_STATE(7991)] = 238954, - [SMALL_STATE(7992)] = 238964, - [SMALL_STATE(7993)] = 238974, - [SMALL_STATE(7994)] = 238984, - [SMALL_STATE(7995)] = 238994, - [SMALL_STATE(7996)] = 239004, - [SMALL_STATE(7997)] = 239014, - [SMALL_STATE(7998)] = 239024, - [SMALL_STATE(7999)] = 239034, - [SMALL_STATE(8000)] = 239044, - [SMALL_STATE(8001)] = 239054, - [SMALL_STATE(8002)] = 239064, - [SMALL_STATE(8003)] = 239074, - [SMALL_STATE(8004)] = 239084, - [SMALL_STATE(8005)] = 239094, - [SMALL_STATE(8006)] = 239104, - [SMALL_STATE(8007)] = 239114, - [SMALL_STATE(8008)] = 239124, - [SMALL_STATE(8009)] = 239134, - [SMALL_STATE(8010)] = 239144, - [SMALL_STATE(8011)] = 239154, - [SMALL_STATE(8012)] = 239164, - [SMALL_STATE(8013)] = 239174, - [SMALL_STATE(8014)] = 239184, - [SMALL_STATE(8015)] = 239194, - [SMALL_STATE(8016)] = 239204, - [SMALL_STATE(8017)] = 239214, - [SMALL_STATE(8018)] = 239224, - [SMALL_STATE(8019)] = 239234, - [SMALL_STATE(8020)] = 239244, - [SMALL_STATE(8021)] = 239254, - [SMALL_STATE(8022)] = 239264, - [SMALL_STATE(8023)] = 239274, - [SMALL_STATE(8024)] = 239284, - [SMALL_STATE(8025)] = 239294, - [SMALL_STATE(8026)] = 239304, - [SMALL_STATE(8027)] = 239314, - [SMALL_STATE(8028)] = 239324, - [SMALL_STATE(8029)] = 239334, - [SMALL_STATE(8030)] = 239344, - [SMALL_STATE(8031)] = 239354, - [SMALL_STATE(8032)] = 239364, - [SMALL_STATE(8033)] = 239374, - [SMALL_STATE(8034)] = 239384, - [SMALL_STATE(8035)] = 239394, - [SMALL_STATE(8036)] = 239404, - [SMALL_STATE(8037)] = 239414, - [SMALL_STATE(8038)] = 239424, - [SMALL_STATE(8039)] = 239434, - [SMALL_STATE(8040)] = 239444, - [SMALL_STATE(8041)] = 239454, - [SMALL_STATE(8042)] = 239464, - [SMALL_STATE(8043)] = 239474, - [SMALL_STATE(8044)] = 239484, - [SMALL_STATE(8045)] = 239494, - [SMALL_STATE(8046)] = 239504, - [SMALL_STATE(8047)] = 239514, - [SMALL_STATE(8048)] = 239524, - [SMALL_STATE(8049)] = 239534, - [SMALL_STATE(8050)] = 239544, - [SMALL_STATE(8051)] = 239554, - [SMALL_STATE(8052)] = 239564, - [SMALL_STATE(8053)] = 239574, - [SMALL_STATE(8054)] = 239584, - [SMALL_STATE(8055)] = 239594, - [SMALL_STATE(8056)] = 239604, - [SMALL_STATE(8057)] = 239614, - [SMALL_STATE(8058)] = 239624, - [SMALL_STATE(8059)] = 239634, - [SMALL_STATE(8060)] = 239644, - [SMALL_STATE(8061)] = 239654, - [SMALL_STATE(8062)] = 239664, - [SMALL_STATE(8063)] = 239674, - [SMALL_STATE(8064)] = 239684, - [SMALL_STATE(8065)] = 239694, - [SMALL_STATE(8066)] = 239704, - [SMALL_STATE(8067)] = 239714, - [SMALL_STATE(8068)] = 239724, - [SMALL_STATE(8069)] = 239734, - [SMALL_STATE(8070)] = 239744, - [SMALL_STATE(8071)] = 239754, - [SMALL_STATE(8072)] = 239764, - [SMALL_STATE(8073)] = 239774, - [SMALL_STATE(8074)] = 239784, - [SMALL_STATE(8075)] = 239794, - [SMALL_STATE(8076)] = 239804, - [SMALL_STATE(8077)] = 239814, - [SMALL_STATE(8078)] = 239824, - [SMALL_STATE(8079)] = 239834, - [SMALL_STATE(8080)] = 239844, - [SMALL_STATE(8081)] = 239854, - [SMALL_STATE(8082)] = 239864, - [SMALL_STATE(8083)] = 239874, - [SMALL_STATE(8084)] = 239884, - [SMALL_STATE(8085)] = 239894, - [SMALL_STATE(8086)] = 239904, - [SMALL_STATE(8087)] = 239914, - [SMALL_STATE(8088)] = 239924, - [SMALL_STATE(8089)] = 239934, - [SMALL_STATE(8090)] = 239944, - [SMALL_STATE(8091)] = 239954, - [SMALL_STATE(8092)] = 239964, - [SMALL_STATE(8093)] = 239974, - [SMALL_STATE(8094)] = 239984, - [SMALL_STATE(8095)] = 239994, - [SMALL_STATE(8096)] = 240004, - [SMALL_STATE(8097)] = 240014, - [SMALL_STATE(8098)] = 240024, - [SMALL_STATE(8099)] = 240034, - [SMALL_STATE(8100)] = 240044, - [SMALL_STATE(8101)] = 240054, - [SMALL_STATE(8102)] = 240064, - [SMALL_STATE(8103)] = 240074, - [SMALL_STATE(8104)] = 240084, - [SMALL_STATE(8105)] = 240094, - [SMALL_STATE(8106)] = 240104, - [SMALL_STATE(8107)] = 240114, - [SMALL_STATE(8108)] = 240124, - [SMALL_STATE(8109)] = 240134, - [SMALL_STATE(8110)] = 240144, - [SMALL_STATE(8111)] = 240154, - [SMALL_STATE(8112)] = 240164, - [SMALL_STATE(8113)] = 240174, - [SMALL_STATE(8114)] = 240184, - [SMALL_STATE(8115)] = 240194, - [SMALL_STATE(8116)] = 240204, - [SMALL_STATE(8117)] = 240214, - [SMALL_STATE(8118)] = 240224, - [SMALL_STATE(8119)] = 240234, - [SMALL_STATE(8120)] = 240244, - [SMALL_STATE(8121)] = 240254, - [SMALL_STATE(8122)] = 240264, - [SMALL_STATE(8123)] = 240274, - [SMALL_STATE(8124)] = 240284, - [SMALL_STATE(8125)] = 240294, - [SMALL_STATE(8126)] = 240304, - [SMALL_STATE(8127)] = 240314, - [SMALL_STATE(8128)] = 240324, - [SMALL_STATE(8129)] = 240334, - [SMALL_STATE(8130)] = 240344, - [SMALL_STATE(8131)] = 240354, - [SMALL_STATE(8132)] = 240364, - [SMALL_STATE(8133)] = 240374, - [SMALL_STATE(8134)] = 240384, - [SMALL_STATE(8135)] = 240394, - [SMALL_STATE(8136)] = 240404, - [SMALL_STATE(8137)] = 240414, - [SMALL_STATE(8138)] = 240424, - [SMALL_STATE(8139)] = 240434, - [SMALL_STATE(8140)] = 240444, - [SMALL_STATE(8141)] = 240454, - [SMALL_STATE(8142)] = 240464, - [SMALL_STATE(8143)] = 240474, - [SMALL_STATE(8144)] = 240484, - [SMALL_STATE(8145)] = 240494, - [SMALL_STATE(8146)] = 240504, - [SMALL_STATE(8147)] = 240514, - [SMALL_STATE(8148)] = 240524, - [SMALL_STATE(8149)] = 240534, - [SMALL_STATE(8150)] = 240544, - [SMALL_STATE(8151)] = 240554, - [SMALL_STATE(8152)] = 240564, - [SMALL_STATE(8153)] = 240574, - [SMALL_STATE(8154)] = 240584, - [SMALL_STATE(8155)] = 240594, - [SMALL_STATE(8156)] = 240604, - [SMALL_STATE(8157)] = 240614, - [SMALL_STATE(8158)] = 240624, - [SMALL_STATE(8159)] = 240634, - [SMALL_STATE(8160)] = 240644, - [SMALL_STATE(8161)] = 240654, - [SMALL_STATE(8162)] = 240664, - [SMALL_STATE(8163)] = 240674, - [SMALL_STATE(8164)] = 240684, - [SMALL_STATE(8165)] = 240694, - [SMALL_STATE(8166)] = 240704, - [SMALL_STATE(8167)] = 240714, - [SMALL_STATE(8168)] = 240724, - [SMALL_STATE(8169)] = 240734, - [SMALL_STATE(8170)] = 240744, - [SMALL_STATE(8171)] = 240754, - [SMALL_STATE(8172)] = 240764, - [SMALL_STATE(8173)] = 240774, - [SMALL_STATE(8174)] = 240784, - [SMALL_STATE(8175)] = 240794, + [SMALL_STATE(1759)] = 0, + [SMALL_STATE(1760)] = 73, + [SMALL_STATE(1761)] = 146, + [SMALL_STATE(1762)] = 219, + [SMALL_STATE(1763)] = 300, + [SMALL_STATE(1764)] = 373, + [SMALL_STATE(1765)] = 446, + [SMALL_STATE(1766)] = 519, + [SMALL_STATE(1767)] = 592, + [SMALL_STATE(1768)] = 665, + [SMALL_STATE(1769)] = 810, + [SMALL_STATE(1770)] = 955, + [SMALL_STATE(1771)] = 1062, + [SMALL_STATE(1772)] = 1135, + [SMALL_STATE(1773)] = 1208, + [SMALL_STATE(1774)] = 1283, + [SMALL_STATE(1775)] = 1358, + [SMALL_STATE(1776)] = 1431, + [SMALL_STATE(1777)] = 1504, + [SMALL_STATE(1778)] = 1577, + [SMALL_STATE(1779)] = 1650, + [SMALL_STATE(1780)] = 1723, + [SMALL_STATE(1781)] = 1796, + [SMALL_STATE(1782)] = 1869, + [SMALL_STATE(1783)] = 1942, + [SMALL_STATE(1784)] = 2017, + [SMALL_STATE(1785)] = 2090, + [SMALL_STATE(1786)] = 2163, + [SMALL_STATE(1787)] = 2236, + [SMALL_STATE(1788)] = 2309, + [SMALL_STATE(1789)] = 2382, + [SMALL_STATE(1790)] = 2455, + [SMALL_STATE(1791)] = 2528, + [SMALL_STATE(1792)] = 2601, + [SMALL_STATE(1793)] = 2674, + [SMALL_STATE(1794)] = 2747, + [SMALL_STATE(1795)] = 2820, + [SMALL_STATE(1796)] = 2893, + [SMALL_STATE(1797)] = 2966, + [SMALL_STATE(1798)] = 3039, + [SMALL_STATE(1799)] = 3114, + [SMALL_STATE(1800)] = 3189, + [SMALL_STATE(1801)] = 3264, + [SMALL_STATE(1802)] = 3337, + [SMALL_STATE(1803)] = 3412, + [SMALL_STATE(1804)] = 3485, + [SMALL_STATE(1805)] = 3558, + [SMALL_STATE(1806)] = 3631, + [SMALL_STATE(1807)] = 3706, + [SMALL_STATE(1808)] = 3781, + [SMALL_STATE(1809)] = 3854, + [SMALL_STATE(1810)] = 3927, + [SMALL_STATE(1811)] = 4000, + [SMALL_STATE(1812)] = 4073, + [SMALL_STATE(1813)] = 4146, + [SMALL_STATE(1814)] = 4219, + [SMALL_STATE(1815)] = 4292, + [SMALL_STATE(1816)] = 4365, + [SMALL_STATE(1817)] = 4438, + [SMALL_STATE(1818)] = 4511, + [SMALL_STATE(1819)] = 4586, + [SMALL_STATE(1820)] = 4661, + [SMALL_STATE(1821)] = 4734, + [SMALL_STATE(1822)] = 4809, + [SMALL_STATE(1823)] = 4882, + [SMALL_STATE(1824)] = 4955, + [SMALL_STATE(1825)] = 5028, + [SMALL_STATE(1826)] = 5101, + [SMALL_STATE(1827)] = 5174, + [SMALL_STATE(1828)] = 5247, + [SMALL_STATE(1829)] = 5320, + [SMALL_STATE(1830)] = 5393, + [SMALL_STATE(1831)] = 5466, + [SMALL_STATE(1832)] = 5547, + [SMALL_STATE(1833)] = 5620, + [SMALL_STATE(1834)] = 5693, + [SMALL_STATE(1835)] = 5766, + [SMALL_STATE(1836)] = 5839, + [SMALL_STATE(1837)] = 5912, + [SMALL_STATE(1838)] = 5985, + [SMALL_STATE(1839)] = 6058, + [SMALL_STATE(1840)] = 6131, + [SMALL_STATE(1841)] = 6204, + [SMALL_STATE(1842)] = 6277, + [SMALL_STATE(1843)] = 6350, + [SMALL_STATE(1844)] = 6423, + [SMALL_STATE(1845)] = 6530, + [SMALL_STATE(1846)] = 6633, + [SMALL_STATE(1847)] = 6706, + [SMALL_STATE(1848)] = 6779, + [SMALL_STATE(1849)] = 6882, + [SMALL_STATE(1850)] = 6955, + [SMALL_STATE(1851)] = 7028, + [SMALL_STATE(1852)] = 7101, + [SMALL_STATE(1853)] = 7174, + [SMALL_STATE(1854)] = 7249, + [SMALL_STATE(1855)] = 7322, + [SMALL_STATE(1856)] = 7397, + [SMALL_STATE(1857)] = 7500, + [SMALL_STATE(1858)] = 7573, + [SMALL_STATE(1859)] = 7648, + [SMALL_STATE(1860)] = 7723, + [SMALL_STATE(1861)] = 7796, + [SMALL_STATE(1862)] = 7869, + [SMALL_STATE(1863)] = 7942, + [SMALL_STATE(1864)] = 8015, + [SMALL_STATE(1865)] = 8088, + [SMALL_STATE(1866)] = 8167, + [SMALL_STATE(1867)] = 8240, + [SMALL_STATE(1868)] = 8313, + [SMALL_STATE(1869)] = 8386, + [SMALL_STATE(1870)] = 8459, + [SMALL_STATE(1871)] = 8532, + [SMALL_STATE(1872)] = 8605, + [SMALL_STATE(1873)] = 8750, + [SMALL_STATE(1874)] = 8895, + [SMALL_STATE(1875)] = 9040, + [SMALL_STATE(1876)] = 9185, + [SMALL_STATE(1877)] = 9330, + [SMALL_STATE(1878)] = 9475, + [SMALL_STATE(1879)] = 9550, + [SMALL_STATE(1880)] = 9627, + [SMALL_STATE(1881)] = 9700, + [SMALL_STATE(1882)] = 9773, + [SMALL_STATE(1883)] = 9918, + [SMALL_STATE(1884)] = 9991, + [SMALL_STATE(1885)] = 10066, + [SMALL_STATE(1886)] = 10139, + [SMALL_STATE(1887)] = 10284, + [SMALL_STATE(1888)] = 10429, + [SMALL_STATE(1889)] = 10574, + [SMALL_STATE(1890)] = 10681, + [SMALL_STATE(1891)] = 10754, + [SMALL_STATE(1892)] = 10830, + [SMALL_STATE(1893)] = 10902, + [SMALL_STATE(1894)] = 10974, + [SMALL_STATE(1895)] = 11046, + [SMALL_STATE(1896)] = 11118, + [SMALL_STATE(1897)] = 11190, + [SMALL_STATE(1898)] = 11262, + [SMALL_STATE(1899)] = 11334, + [SMALL_STATE(1900)] = 11406, + [SMALL_STATE(1901)] = 11486, + [SMALL_STATE(1902)] = 11558, + [SMALL_STATE(1903)] = 11630, + [SMALL_STATE(1904)] = 11702, + [SMALL_STATE(1905)] = 11774, + [SMALL_STATE(1906)] = 11846, + [SMALL_STATE(1907)] = 11918, + [SMALL_STATE(1908)] = 11990, + [SMALL_STATE(1909)] = 12062, + [SMALL_STATE(1910)] = 12134, + [SMALL_STATE(1911)] = 12206, + [SMALL_STATE(1912)] = 12278, + [SMALL_STATE(1913)] = 12350, + [SMALL_STATE(1914)] = 12426, + [SMALL_STATE(1915)] = 12502, + [SMALL_STATE(1916)] = 12578, + [SMALL_STATE(1917)] = 12654, + [SMALL_STATE(1918)] = 12726, + [SMALL_STATE(1919)] = 12798, + [SMALL_STATE(1920)] = 12870, + [SMALL_STATE(1921)] = 12942, + [SMALL_STATE(1922)] = 13014, + [SMALL_STATE(1923)] = 13086, + [SMALL_STATE(1924)] = 13158, + [SMALL_STATE(1925)] = 13232, + [SMALL_STATE(1926)] = 13304, + [SMALL_STATE(1927)] = 13376, + [SMALL_STATE(1928)] = 13518, + [SMALL_STATE(1929)] = 13590, + [SMALL_STATE(1930)] = 13670, + [SMALL_STATE(1931)] = 13742, + [SMALL_STATE(1932)] = 13814, + [SMALL_STATE(1933)] = 13886, + [SMALL_STATE(1934)] = 13958, + [SMALL_STATE(1935)] = 14030, + [SMALL_STATE(1936)] = 14102, + [SMALL_STATE(1937)] = 14174, + [SMALL_STATE(1938)] = 14246, + [SMALL_STATE(1939)] = 14318, + [SMALL_STATE(1940)] = 14390, + [SMALL_STATE(1941)] = 14462, + [SMALL_STATE(1942)] = 14534, + [SMALL_STATE(1943)] = 14606, + [SMALL_STATE(1944)] = 14678, + [SMALL_STATE(1945)] = 14750, + [SMALL_STATE(1946)] = 14826, + [SMALL_STATE(1947)] = 14898, + [SMALL_STATE(1948)] = 14970, + [SMALL_STATE(1949)] = 15042, + [SMALL_STATE(1950)] = 15114, + [SMALL_STATE(1951)] = 15186, + [SMALL_STATE(1952)] = 15262, + [SMALL_STATE(1953)] = 15334, + [SMALL_STATE(1954)] = 15406, + [SMALL_STATE(1955)] = 15478, + [SMALL_STATE(1956)] = 15550, + [SMALL_STATE(1957)] = 15622, + [SMALL_STATE(1958)] = 15694, + [SMALL_STATE(1959)] = 15766, + [SMALL_STATE(1960)] = 15838, + [SMALL_STATE(1961)] = 15980, + [SMALL_STATE(1962)] = 16052, + [SMALL_STATE(1963)] = 16124, + [SMALL_STATE(1964)] = 16196, + [SMALL_STATE(1965)] = 16268, + [SMALL_STATE(1966)] = 16340, + [SMALL_STATE(1967)] = 16412, + [SMALL_STATE(1968)] = 16554, + [SMALL_STATE(1969)] = 16626, + [SMALL_STATE(1970)] = 16698, + [SMALL_STATE(1971)] = 16770, + [SMALL_STATE(1972)] = 16842, + [SMALL_STATE(1973)] = 16914, + [SMALL_STATE(1974)] = 16990, + [SMALL_STATE(1975)] = 17062, + [SMALL_STATE(1976)] = 17134, + [SMALL_STATE(1977)] = 17206, + [SMALL_STATE(1978)] = 17278, + [SMALL_STATE(1979)] = 17350, + [SMALL_STATE(1980)] = 17422, + [SMALL_STATE(1981)] = 17494, + [SMALL_STATE(1982)] = 17566, + [SMALL_STATE(1983)] = 17638, + [SMALL_STATE(1984)] = 17710, + [SMALL_STATE(1985)] = 17782, + [SMALL_STATE(1986)] = 17854, + [SMALL_STATE(1987)] = 17926, + [SMALL_STATE(1988)] = 17998, + [SMALL_STATE(1989)] = 18070, + [SMALL_STATE(1990)] = 18142, + [SMALL_STATE(1991)] = 18214, + [SMALL_STATE(1992)] = 18286, + [SMALL_STATE(1993)] = 18358, + [SMALL_STATE(1994)] = 18430, + [SMALL_STATE(1995)] = 18502, + [SMALL_STATE(1996)] = 18578, + [SMALL_STATE(1997)] = 18650, + [SMALL_STATE(1998)] = 18722, + [SMALL_STATE(1999)] = 18798, + [SMALL_STATE(2000)] = 18874, + [SMALL_STATE(2001)] = 18950, + [SMALL_STATE(2002)] = 19022, + [SMALL_STATE(2003)] = 19098, + [SMALL_STATE(2004)] = 19174, + [SMALL_STATE(2005)] = 19250, + [SMALL_STATE(2006)] = 19322, + [SMALL_STATE(2007)] = 19398, + [SMALL_STATE(2008)] = 19470, + [SMALL_STATE(2009)] = 19546, + [SMALL_STATE(2010)] = 19622, + [SMALL_STATE(2011)] = 19698, + [SMALL_STATE(2012)] = 19774, + [SMALL_STATE(2013)] = 19850, + [SMALL_STATE(2014)] = 19926, + [SMALL_STATE(2015)] = 20002, + [SMALL_STATE(2016)] = 20078, + [SMALL_STATE(2017)] = 20152, + [SMALL_STATE(2018)] = 20226, + [SMALL_STATE(2019)] = 20298, + [SMALL_STATE(2020)] = 20374, + [SMALL_STATE(2021)] = 20446, + [SMALL_STATE(2022)] = 20518, + [SMALL_STATE(2023)] = 20590, + [SMALL_STATE(2024)] = 20662, + [SMALL_STATE(2025)] = 20734, + [SMALL_STATE(2026)] = 20876, + [SMALL_STATE(2027)] = 21018, + [SMALL_STATE(2028)] = 21094, + [SMALL_STATE(2029)] = 21236, + [SMALL_STATE(2030)] = 21313, + [SMALL_STATE(2031)] = 21390, + [SMALL_STATE(2032)] = 21467, + [SMALL_STATE(2033)] = 21546, + [SMALL_STATE(2034)] = 21617, + [SMALL_STATE(2035)] = 21692, + [SMALL_STATE(2036)] = 21763, + [SMALL_STATE(2037)] = 21902, + [SMALL_STATE(2038)] = 21981, + [SMALL_STATE(2039)] = 22058, + [SMALL_STATE(2040)] = 22197, + [SMALL_STATE(2041)] = 22274, + [SMALL_STATE(2042)] = 22355, + [SMALL_STATE(2043)] = 22434, + [SMALL_STATE(2044)] = 22511, + [SMALL_STATE(2045)] = 22590, + [SMALL_STATE(2046)] = 22667, + [SMALL_STATE(2047)] = 22744, + [SMALL_STATE(2048)] = 22821, + [SMALL_STATE(2049)] = 22892, + [SMALL_STATE(2050)] = 22969, + [SMALL_STATE(2051)] = 23046, + [SMALL_STATE(2052)] = 23117, + [SMALL_STATE(2053)] = 23196, + [SMALL_STATE(2054)] = 23273, + [SMALL_STATE(2055)] = 23348, + [SMALL_STATE(2056)] = 23425, + [SMALL_STATE(2057)] = 23502, + [SMALL_STATE(2058)] = 23579, + [SMALL_STATE(2059)] = 23650, + [SMALL_STATE(2060)] = 23729, + [SMALL_STATE(2061)] = 23800, + [SMALL_STATE(2062)] = 23879, + [SMALL_STATE(2063)] = 23950, + [SMALL_STATE(2064)] = 24027, + [SMALL_STATE(2065)] = 24106, + [SMALL_STATE(2066)] = 24177, + [SMALL_STATE(2067)] = 24254, + [SMALL_STATE(2068)] = 24325, + [SMALL_STATE(2069)] = 24402, + [SMALL_STATE(2070)] = 24481, + [SMALL_STATE(2071)] = 24558, + [SMALL_STATE(2072)] = 24629, + [SMALL_STATE(2073)] = 24706, + [SMALL_STATE(2074)] = 24783, + [SMALL_STATE(2075)] = 24860, + [SMALL_STATE(2076)] = 24939, + [SMALL_STATE(2077)] = 25016, + [SMALL_STATE(2078)] = 25093, + [SMALL_STATE(2079)] = 25170, + [SMALL_STATE(2080)] = 25243, + [SMALL_STATE(2081)] = 25314, + [SMALL_STATE(2082)] = 25385, + [SMALL_STATE(2083)] = 25462, + [SMALL_STATE(2084)] = 25539, + [SMALL_STATE(2085)] = 25610, + [SMALL_STATE(2086)] = 25681, + [SMALL_STATE(2087)] = 25752, + [SMALL_STATE(2088)] = 25827, + [SMALL_STATE(2089)] = 25898, + [SMALL_STATE(2090)] = 25975, + [SMALL_STATE(2091)] = 26046, + [SMALL_STATE(2092)] = 26117, + [SMALL_STATE(2093)] = 26188, + [SMALL_STATE(2094)] = 26259, + [SMALL_STATE(2095)] = 26336, + [SMALL_STATE(2096)] = 26415, + [SMALL_STATE(2097)] = 26486, + [SMALL_STATE(2098)] = 26557, + [SMALL_STATE(2099)] = 26628, + [SMALL_STATE(2100)] = 26705, + [SMALL_STATE(2101)] = 26782, + [SMALL_STATE(2102)] = 26859, + [SMALL_STATE(2103)] = 26930, + [SMALL_STATE(2104)] = 27003, + [SMALL_STATE(2105)] = 27074, + [SMALL_STATE(2106)] = 27151, + [SMALL_STATE(2107)] = 27230, + [SMALL_STATE(2108)] = 27309, + [SMALL_STATE(2109)] = 27386, + [SMALL_STATE(2110)] = 27525, + [SMALL_STATE(2111)] = 27664, + [SMALL_STATE(2112)] = 27743, + [SMALL_STATE(2113)] = 27824, + [SMALL_STATE(2114)] = 27895, + [SMALL_STATE(2115)] = 27974, + [SMALL_STATE(2116)] = 28053, + [SMALL_STATE(2117)] = 28130, + [SMALL_STATE(2118)] = 28201, + [SMALL_STATE(2119)] = 28278, + [SMALL_STATE(2120)] = 28355, + [SMALL_STATE(2121)] = 28434, + [SMALL_STATE(2122)] = 28511, + [SMALL_STATE(2123)] = 28590, + [SMALL_STATE(2124)] = 28661, + [SMALL_STATE(2125)] = 28740, + [SMALL_STATE(2126)] = 28811, + [SMALL_STATE(2127)] = 28882, + [SMALL_STATE(2128)] = 28959, + [SMALL_STATE(2129)] = 29030, + [SMALL_STATE(2130)] = 29109, + [SMALL_STATE(2131)] = 29186, + [SMALL_STATE(2132)] = 29261, + [SMALL_STATE(2133)] = 29338, + [SMALL_STATE(2134)] = 29409, + [SMALL_STATE(2135)] = 29488, + [SMALL_STATE(2136)] = 29567, + [SMALL_STATE(2137)] = 29644, + [SMALL_STATE(2138)] = 29721, + [SMALL_STATE(2139)] = 29792, + [SMALL_STATE(2140)] = 29863, + [SMALL_STATE(2141)] = 29934, + [SMALL_STATE(2142)] = 30005, + [SMALL_STATE(2143)] = 30080, + [SMALL_STATE(2144)] = 30157, + [SMALL_STATE(2145)] = 30228, + [SMALL_STATE(2146)] = 30307, + [SMALL_STATE(2147)] = 30384, + [SMALL_STATE(2148)] = 30461, + [SMALL_STATE(2149)] = 30538, + [SMALL_STATE(2150)] = 30615, + [SMALL_STATE(2151)] = 30686, + [SMALL_STATE(2152)] = 30763, + [SMALL_STATE(2153)] = 30840, + [SMALL_STATE(2154)] = 30917, + [SMALL_STATE(2155)] = 30996, + [SMALL_STATE(2156)] = 31073, + [SMALL_STATE(2157)] = 31144, + [SMALL_STATE(2158)] = 31221, + [SMALL_STATE(2159)] = 31292, + [SMALL_STATE(2160)] = 31371, + [SMALL_STATE(2161)] = 31452, + [SMALL_STATE(2162)] = 31527, + [SMALL_STATE(2163)] = 31606, + [SMALL_STATE(2164)] = 31677, + [SMALL_STATE(2165)] = 31747, + [SMALL_STATE(2166)] = 31883, + [SMALL_STATE(2167)] = 32019, + [SMALL_STATE(2168)] = 32155, + [SMALL_STATE(2169)] = 32291, + [SMALL_STATE(2170)] = 32427, + [SMALL_STATE(2171)] = 32497, + [SMALL_STATE(2172)] = 32567, + [SMALL_STATE(2173)] = 32637, + [SMALL_STATE(2174)] = 32707, + [SMALL_STATE(2175)] = 32777, + [SMALL_STATE(2176)] = 32851, + [SMALL_STATE(2177)] = 32921, + [SMALL_STATE(2178)] = 32995, + [SMALL_STATE(2179)] = 33065, + [SMALL_STATE(2180)] = 33139, + [SMALL_STATE(2181)] = 33209, + [SMALL_STATE(2182)] = 33283, + [SMALL_STATE(2183)] = 33357, + [SMALL_STATE(2184)] = 33431, + [SMALL_STATE(2185)] = 33505, + [SMALL_STATE(2186)] = 33579, + [SMALL_STATE(2187)] = 33649, + [SMALL_STATE(2188)] = 33719, + [SMALL_STATE(2189)] = 33793, + [SMALL_STATE(2190)] = 33863, + [SMALL_STATE(2191)] = 33933, + [SMALL_STATE(2192)] = 34007, + [SMALL_STATE(2193)] = 34077, + [SMALL_STATE(2194)] = 34147, + [SMALL_STATE(2195)] = 34283, + [SMALL_STATE(2196)] = 34355, + [SMALL_STATE(2197)] = 34491, + [SMALL_STATE(2198)] = 34627, + [SMALL_STATE(2199)] = 34763, + [SMALL_STATE(2200)] = 34899, + [SMALL_STATE(2201)] = 35035, + [SMALL_STATE(2202)] = 35107, + [SMALL_STATE(2203)] = 35177, + [SMALL_STATE(2204)] = 35247, + [SMALL_STATE(2205)] = 35383, + [SMALL_STATE(2206)] = 35453, + [SMALL_STATE(2207)] = 35527, + [SMALL_STATE(2208)] = 35601, + [SMALL_STATE(2209)] = 35671, + [SMALL_STATE(2210)] = 35741, + [SMALL_STATE(2211)] = 35813, + [SMALL_STATE(2212)] = 35885, + [SMALL_STATE(2213)] = 35959, + [SMALL_STATE(2214)] = 36029, + [SMALL_STATE(2215)] = 36099, + [SMALL_STATE(2216)] = 36169, + [SMALL_STATE(2217)] = 36243, + [SMALL_STATE(2218)] = 36317, + [SMALL_STATE(2219)] = 36391, + [SMALL_STATE(2220)] = 36465, + [SMALL_STATE(2221)] = 36539, + [SMALL_STATE(2222)] = 36609, + [SMALL_STATE(2223)] = 36679, + [SMALL_STATE(2224)] = 36749, + [SMALL_STATE(2225)] = 36819, + [SMALL_STATE(2226)] = 36889, + [SMALL_STATE(2227)] = 36959, + [SMALL_STATE(2228)] = 37029, + [SMALL_STATE(2229)] = 37099, + [SMALL_STATE(2230)] = 37169, + [SMALL_STATE(2231)] = 37305, + [SMALL_STATE(2232)] = 37441, + [SMALL_STATE(2233)] = 37511, + [SMALL_STATE(2234)] = 37581, + [SMALL_STATE(2235)] = 37651, + [SMALL_STATE(2236)] = 37721, + [SMALL_STATE(2237)] = 37791, + [SMALL_STATE(2238)] = 37927, + [SMALL_STATE(2239)] = 38063, + [SMALL_STATE(2240)] = 38133, + [SMALL_STATE(2241)] = 38269, + [SMALL_STATE(2242)] = 38405, + [SMALL_STATE(2243)] = 38541, + [SMALL_STATE(2244)] = 38677, + [SMALL_STATE(2245)] = 38813, + [SMALL_STATE(2246)] = 38949, + [SMALL_STATE(2247)] = 39085, + [SMALL_STATE(2248)] = 39221, + [SMALL_STATE(2249)] = 39357, + [SMALL_STATE(2250)] = 39493, + [SMALL_STATE(2251)] = 39563, + [SMALL_STATE(2252)] = 39699, + [SMALL_STATE(2253)] = 39769, + [SMALL_STATE(2254)] = 39839, + [SMALL_STATE(2255)] = 39909, + [SMALL_STATE(2256)] = 40045, + [SMALL_STATE(2257)] = 40115, + [SMALL_STATE(2258)] = 40185, + [SMALL_STATE(2259)] = 40321, + [SMALL_STATE(2260)] = 40391, + [SMALL_STATE(2261)] = 40461, + [SMALL_STATE(2262)] = 40531, + [SMALL_STATE(2263)] = 40601, + [SMALL_STATE(2264)] = 40671, + [SMALL_STATE(2265)] = 40741, + [SMALL_STATE(2266)] = 40811, + [SMALL_STATE(2267)] = 40881, + [SMALL_STATE(2268)] = 40959, + [SMALL_STATE(2269)] = 41029, + [SMALL_STATE(2270)] = 41165, + [SMALL_STATE(2271)] = 41301, + [SMALL_STATE(2272)] = 41437, + [SMALL_STATE(2273)] = 41507, + [SMALL_STATE(2274)] = 41578, + [SMALL_STATE(2275)] = 41647, + [SMALL_STATE(2276)] = 41720, + [SMALL_STATE(2277)] = 41789, + [SMALL_STATE(2278)] = 41862, + [SMALL_STATE(2279)] = 41933, + [SMALL_STATE(2280)] = 42002, + [SMALL_STATE(2281)] = 42075, + [SMALL_STATE(2282)] = 42146, + [SMALL_STATE(2283)] = 42215, + [SMALL_STATE(2284)] = 42284, + [SMALL_STATE(2285)] = 42355, + [SMALL_STATE(2286)] = 42426, + [SMALL_STATE(2287)] = 42497, + [SMALL_STATE(2288)] = 42570, + [SMALL_STATE(2289)] = 42641, + [SMALL_STATE(2290)] = 42718, + [SMALL_STATE(2291)] = 42789, + [SMALL_STATE(2292)] = 42860, + [SMALL_STATE(2293)] = 42959, + [SMALL_STATE(2294)] = 43028, + [SMALL_STATE(2295)] = 43099, + [SMALL_STATE(2296)] = 43170, + [SMALL_STATE(2297)] = 43243, + [SMALL_STATE(2298)] = 43316, + [SMALL_STATE(2299)] = 43387, + [SMALL_STATE(2300)] = 43458, + [SMALL_STATE(2301)] = 43529, + [SMALL_STATE(2302)] = 43600, + [SMALL_STATE(2303)] = 43673, + [SMALL_STATE(2304)] = 43744, + [SMALL_STATE(2305)] = 43815, + [SMALL_STATE(2306)] = 43886, + [SMALL_STATE(2307)] = 43957, + [SMALL_STATE(2308)] = 44026, + [SMALL_STATE(2309)] = 44097, + [SMALL_STATE(2310)] = 44174, + [SMALL_STATE(2311)] = 44247, + [SMALL_STATE(2312)] = 44320, + [SMALL_STATE(2313)] = 44391, + [SMALL_STATE(2314)] = 44462, + [SMALL_STATE(2315)] = 44531, + [SMALL_STATE(2316)] = 44602, + [SMALL_STATE(2317)] = 44673, + [SMALL_STATE(2318)] = 44744, + [SMALL_STATE(2319)] = 44815, + [SMALL_STATE(2320)] = 44886, + [SMALL_STATE(2321)] = 44957, + [SMALL_STATE(2322)] = 45028, + [SMALL_STATE(2323)] = 45101, + [SMALL_STATE(2324)] = 45172, + [SMALL_STATE(2325)] = 45243, + [SMALL_STATE(2326)] = 45314, + [SMALL_STATE(2327)] = 45385, + [SMALL_STATE(2328)] = 45456, + [SMALL_STATE(2329)] = 45527, + [SMALL_STATE(2330)] = 45598, + [SMALL_STATE(2331)] = 45675, + [SMALL_STATE(2332)] = 45746, + [SMALL_STATE(2333)] = 45817, + [SMALL_STATE(2334)] = 45888, + [SMALL_STATE(2335)] = 45959, + [SMALL_STATE(2336)] = 46030, + [SMALL_STATE(2337)] = 46101, + [SMALL_STATE(2338)] = 46172, + [SMALL_STATE(2339)] = 46243, + [SMALL_STATE(2340)] = 46314, + [SMALL_STATE(2341)] = 46387, + [SMALL_STATE(2342)] = 46458, + [SMALL_STATE(2343)] = 46529, + [SMALL_STATE(2344)] = 46600, + [SMALL_STATE(2345)] = 46671, + [SMALL_STATE(2346)] = 46742, + [SMALL_STATE(2347)] = 46815, + [SMALL_STATE(2348)] = 46888, + [SMALL_STATE(2349)] = 46959, + [SMALL_STATE(2350)] = 47030, + [SMALL_STATE(2351)] = 47101, + [SMALL_STATE(2352)] = 47172, + [SMALL_STATE(2353)] = 47243, + [SMALL_STATE(2354)] = 47314, + [SMALL_STATE(2355)] = 47385, + [SMALL_STATE(2356)] = 47456, + [SMALL_STATE(2357)] = 47527, + [SMALL_STATE(2358)] = 47598, + [SMALL_STATE(2359)] = 47671, + [SMALL_STATE(2360)] = 47742, + [SMALL_STATE(2361)] = 47841, + [SMALL_STATE(2362)] = 47912, + [SMALL_STATE(2363)] = 47985, + [SMALL_STATE(2364)] = 48058, + [SMALL_STATE(2365)] = 48129, + [SMALL_STATE(2366)] = 48200, + [SMALL_STATE(2367)] = 48273, + [SMALL_STATE(2368)] = 48344, + [SMALL_STATE(2369)] = 48415, + [SMALL_STATE(2370)] = 48486, + [SMALL_STATE(2371)] = 48557, + [SMALL_STATE(2372)] = 48630, + [SMALL_STATE(2373)] = 48701, + [SMALL_STATE(2374)] = 48772, + [SMALL_STATE(2375)] = 48843, + [SMALL_STATE(2376)] = 48914, + [SMALL_STATE(2377)] = 48985, + [SMALL_STATE(2378)] = 49056, + [SMALL_STATE(2379)] = 49127, + [SMALL_STATE(2380)] = 49198, + [SMALL_STATE(2381)] = 49269, + [SMALL_STATE(2382)] = 49340, + [SMALL_STATE(2383)] = 49413, + [SMALL_STATE(2384)] = 49484, + [SMALL_STATE(2385)] = 49557, + [SMALL_STATE(2386)] = 49628, + [SMALL_STATE(2387)] = 49699, + [SMALL_STATE(2388)] = 49770, + [SMALL_STATE(2389)] = 49841, + [SMALL_STATE(2390)] = 49912, + [SMALL_STATE(2391)] = 49983, + [SMALL_STATE(2392)] = 50054, + [SMALL_STATE(2393)] = 50125, + [SMALL_STATE(2394)] = 50196, + [SMALL_STATE(2395)] = 50267, + [SMALL_STATE(2396)] = 50338, + [SMALL_STATE(2397)] = 50425, + [SMALL_STATE(2398)] = 50496, + [SMALL_STATE(2399)] = 50567, + [SMALL_STATE(2400)] = 50638, + [SMALL_STATE(2401)] = 50737, + [SMALL_STATE(2402)] = 50808, + [SMALL_STATE(2403)] = 50879, + [SMALL_STATE(2404)] = 50952, + [SMALL_STATE(2405)] = 51051, + [SMALL_STATE(2406)] = 51122, + [SMALL_STATE(2407)] = 51195, + [SMALL_STATE(2408)] = 51266, + [SMALL_STATE(2409)] = 51337, + [SMALL_STATE(2410)] = 51408, + [SMALL_STATE(2411)] = 51479, + [SMALL_STATE(2412)] = 51548, + [SMALL_STATE(2413)] = 51619, + [SMALL_STATE(2414)] = 51690, + [SMALL_STATE(2415)] = 51761, + [SMALL_STATE(2416)] = 51832, + [SMALL_STATE(2417)] = 51903, + [SMALL_STATE(2418)] = 51974, + [SMALL_STATE(2419)] = 52047, + [SMALL_STATE(2420)] = 52118, + [SMALL_STATE(2421)] = 52189, + [SMALL_STATE(2422)] = 52260, + [SMALL_STATE(2423)] = 52333, + [SMALL_STATE(2424)] = 52406, + [SMALL_STATE(2425)] = 52479, + [SMALL_STATE(2426)] = 52552, + [SMALL_STATE(2427)] = 52623, + [SMALL_STATE(2428)] = 52694, + [SMALL_STATE(2429)] = 52765, + [SMALL_STATE(2430)] = 52836, + [SMALL_STATE(2431)] = 52905, + [SMALL_STATE(2432)] = 52973, + [SMALL_STATE(2433)] = 53055, + [SMALL_STATE(2434)] = 53147, + [SMALL_STATE(2435)] = 53229, + [SMALL_STATE(2436)] = 53325, + [SMALL_STATE(2437)] = 53415, + [SMALL_STATE(2438)] = 53509, + [SMALL_STATE(2439)] = 53607, + [SMALL_STATE(2440)] = 53701, + [SMALL_STATE(2441)] = 53791, + [SMALL_STATE(2442)] = 53865, + [SMALL_STATE(2443)] = 53947, + [SMALL_STATE(2444)] = 54043, + [SMALL_STATE(2445)] = 54119, + [SMALL_STATE(2446)] = 54201, + [SMALL_STATE(2447)] = 54277, + [SMALL_STATE(2448)] = 54347, + [SMALL_STATE(2449)] = 54441, + [SMALL_STATE(2450)] = 54529, + [SMALL_STATE(2451)] = 54615, + [SMALL_STATE(2452)] = 54687, + [SMALL_STATE(2453)] = 54755, + [SMALL_STATE(2454)] = 54851, + [SMALL_STATE(2455)] = 54947, + [SMALL_STATE(2456)] = 55019, + [SMALL_STATE(2457)] = 55119, + [SMALL_STATE(2458)] = 55189, + [SMALL_STATE(2459)] = 55287, + [SMALL_STATE(2460)] = 55371, + [SMALL_STATE(2461)] = 55455, + [SMALL_STATE(2462)] = 55555, + [SMALL_STATE(2463)] = 55637, + [SMALL_STATE(2464)] = 55725, + [SMALL_STATE(2465)] = 55803, + [SMALL_STATE(2466)] = 55887, + [SMALL_STATE(2467)] = 55975, + [SMALL_STATE(2468)] = 56051, + [SMALL_STATE(2469)] = 56143, + [SMALL_STATE(2470)] = 56217, + [SMALL_STATE(2471)] = 56305, + [SMALL_STATE(2472)] = 56403, + [SMALL_STATE(2473)] = 56481, + [SMALL_STATE(2474)] = 56557, + [SMALL_STATE(2475)] = 56625, + [SMALL_STATE(2476)] = 56725, + [SMALL_STATE(2477)] = 56817, + [SMALL_STATE(2478)] = 56895, + [SMALL_STATE(2479)] = 56997, + [SMALL_STATE(2480)] = 57071, + [SMALL_STATE(2481)] = 57161, + [SMALL_STATE(2482)] = 57231, + [SMALL_STATE(2483)] = 57313, + [SMALL_STATE(2484)] = 57403, + [SMALL_STATE(2485)] = 57505, + [SMALL_STATE(2486)] = 57585, + [SMALL_STATE(2487)] = 57661, + [SMALL_STATE(2488)] = 57741, + [SMALL_STATE(2489)] = 57815, + [SMALL_STATE(2490)] = 57903, + [SMALL_STATE(2491)] = 57987, + [SMALL_STATE(2492)] = 58073, + [SMALL_STATE(2493)] = 58143, + [SMALL_STATE(2494)] = 58229, + [SMALL_STATE(2495)] = 58323, + [SMALL_STATE(2496)] = 58395, + [SMALL_STATE(2497)] = 58491, + [SMALL_STATE(2498)] = 58587, + [SMALL_STATE(2499)] = 58685, + [SMALL_STATE(2500)] = 58771, + [SMALL_STATE(2501)] = 58869, + [SMALL_STATE(2502)] = 58951, + [SMALL_STATE(2503)] = 59029, + [SMALL_STATE(2504)] = 59117, + [SMALL_STATE(2505)] = 59207, + [SMALL_STATE(2506)] = 59299, + [SMALL_STATE(2507)] = 59391, + [SMALL_STATE(2508)] = 59491, + [SMALL_STATE(2509)] = 59567, + [SMALL_STATE(2510)] = 59661, + [SMALL_STATE(2511)] = 59751, + [SMALL_STATE(2512)] = 59839, + [SMALL_STATE(2513)] = 59931, + [SMALL_STATE(2514)] = 60025, + [SMALL_STATE(2515)] = 60097, + [SMALL_STATE(2516)] = 60171, + [SMALL_STATE(2517)] = 60265, + [SMALL_STATE(2518)] = 60359, + [SMALL_STATE(2519)] = 60461, + [SMALL_STATE(2520)] = 60557, + [SMALL_STATE(2521)] = 60641, + [SMALL_STATE(2522)] = 60741, + [SMALL_STATE(2523)] = 60837, + [SMALL_STATE(2524)] = 60933, + [SMALL_STATE(2525)] = 61007, + [SMALL_STATE(2526)] = 61105, + [SMALL_STATE(2527)] = 61175, + [SMALL_STATE(2528)] = 61271, + [SMALL_STATE(2529)] = 61361, + [SMALL_STATE(2530)] = 61461, + [SMALL_STATE(2531)] = 61557, + [SMALL_STATE(2532)] = 61645, + [SMALL_STATE(2533)] = 61735, + [SMALL_STATE(2534)] = 61831, + [SMALL_STATE(2535)] = 61923, + [SMALL_STATE(2536)] = 62023, + [SMALL_STATE(2537)] = 62103, + [SMALL_STATE(2538)] = 62193, + [SMALL_STATE(2539)] = 62273, + [SMALL_STATE(2540)] = 62365, + [SMALL_STATE(2541)] = 62459, + [SMALL_STATE(2542)] = 62531, + [SMALL_STATE(2543)] = 62633, + [SMALL_STATE(2544)] = 62705, + [SMALL_STATE(2545)] = 62787, + [SMALL_STATE(2546)] = 62871, + [SMALL_STATE(2547)] = 62943, + [SMALL_STATE(2548)] = 63039, + [SMALL_STATE(2549)] = 63115, + [SMALL_STATE(2550)] = 63195, + [SMALL_STATE(2551)] = 63273, + [SMALL_STATE(2552)] = 63345, + [SMALL_STATE(2553)] = 63431, + [SMALL_STATE(2554)] = 63519, + [SMALL_STATE(2555)] = 63603, + [SMALL_STATE(2556)] = 63699, + [SMALL_STATE(2557)] = 63771, + [SMALL_STATE(2558)] = 63867, + [SMALL_STATE(2559)] = 63963, + [SMALL_STATE(2560)] = 64059, + [SMALL_STATE(2561)] = 64133, + [SMALL_STATE(2562)] = 64225, + [SMALL_STATE(2563)] = 64321, + [SMALL_STATE(2564)] = 64419, + [SMALL_STATE(2565)] = 64517, + [SMALL_STATE(2566)] = 64601, + [SMALL_STATE(2567)] = 64699, + [SMALL_STATE(2568)] = 64799, + [SMALL_STATE(2569)] = 64895, + [SMALL_STATE(2570)] = 64983, + [SMALL_STATE(2571)] = 65050, + [SMALL_STATE(2572)] = 65117, + [SMALL_STATE(2573)] = 65184, + [SMALL_STATE(2574)] = 65251, + [SMALL_STATE(2575)] = 65332, + [SMALL_STATE(2576)] = 65399, + [SMALL_STATE(2577)] = 65492, + [SMALL_STATE(2578)] = 65559, + [SMALL_STATE(2579)] = 65640, + [SMALL_STATE(2580)] = 65725, + [SMALL_STATE(2581)] = 65792, + [SMALL_STATE(2582)] = 65889, + [SMALL_STATE(2583)] = 65956, + [SMALL_STATE(2584)] = 66025, + [SMALL_STATE(2585)] = 66092, + [SMALL_STATE(2586)] = 66159, + [SMALL_STATE(2587)] = 66238, + [SMALL_STATE(2588)] = 66305, + [SMALL_STATE(2589)] = 66372, + [SMALL_STATE(2590)] = 66439, + [SMALL_STATE(2591)] = 66506, + [SMALL_STATE(2592)] = 66573, + [SMALL_STATE(2593)] = 66640, + [SMALL_STATE(2594)] = 66707, + [SMALL_STATE(2595)] = 66774, + [SMALL_STATE(2596)] = 66841, + [SMALL_STATE(2597)] = 66922, + [SMALL_STATE(2598)] = 66989, + [SMALL_STATE(2599)] = 67056, + [SMALL_STATE(2600)] = 67123, + [SMALL_STATE(2601)] = 67190, + [SMALL_STATE(2602)] = 67271, + [SMALL_STATE(2603)] = 67342, + [SMALL_STATE(2604)] = 67409, + [SMALL_STATE(2605)] = 67476, + [SMALL_STATE(2606)] = 67565, + [SMALL_STATE(2607)] = 67632, + [SMALL_STATE(2608)] = 67699, + [SMALL_STATE(2609)] = 67766, + [SMALL_STATE(2610)] = 67833, + [SMALL_STATE(2611)] = 67900, + [SMALL_STATE(2612)] = 67967, + [SMALL_STATE(2613)] = 68036, + [SMALL_STATE(2614)] = 68103, + [SMALL_STATE(2615)] = 68170, + [SMALL_STATE(2616)] = 68237, + [SMALL_STATE(2617)] = 68304, + [SMALL_STATE(2618)] = 68371, + [SMALL_STATE(2619)] = 68438, + [SMALL_STATE(2620)] = 68505, + [SMALL_STATE(2621)] = 68572, + [SMALL_STATE(2622)] = 68639, + [SMALL_STATE(2623)] = 68706, + [SMALL_STATE(2624)] = 68779, + [SMALL_STATE(2625)] = 68846, + [SMALL_STATE(2626)] = 68913, + [SMALL_STATE(2627)] = 68982, + [SMALL_STATE(2628)] = 69051, + [SMALL_STATE(2629)] = 69128, + [SMALL_STATE(2630)] = 69195, + [SMALL_STATE(2631)] = 69262, + [SMALL_STATE(2632)] = 69329, + [SMALL_STATE(2633)] = 69396, + [SMALL_STATE(2634)] = 69463, + [SMALL_STATE(2635)] = 69530, + [SMALL_STATE(2636)] = 69597, + [SMALL_STATE(2637)] = 69664, + [SMALL_STATE(2638)] = 69731, + [SMALL_STATE(2639)] = 69798, + [SMALL_STATE(2640)] = 69865, + [SMALL_STATE(2641)] = 69948, + [SMALL_STATE(2642)] = 70019, + [SMALL_STATE(2643)] = 70086, + [SMALL_STATE(2644)] = 70171, + [SMALL_STATE(2645)] = 70240, + [SMALL_STATE(2646)] = 70307, + [SMALL_STATE(2647)] = 70392, + [SMALL_STATE(2648)] = 70459, + [SMALL_STATE(2649)] = 70526, + [SMALL_STATE(2650)] = 70593, + [SMALL_STATE(2651)] = 70660, + [SMALL_STATE(2652)] = 70727, + [SMALL_STATE(2653)] = 70800, + [SMALL_STATE(2654)] = 70881, + [SMALL_STATE(2655)] = 70948, + [SMALL_STATE(2656)] = 71015, + [SMALL_STATE(2657)] = 71082, + [SMALL_STATE(2658)] = 71149, + [SMALL_STATE(2659)] = 71216, + [SMALL_STATE(2660)] = 71285, + [SMALL_STATE(2661)] = 71352, + [SMALL_STATE(2662)] = 71421, + [SMALL_STATE(2663)] = 71488, + [SMALL_STATE(2664)] = 71555, + [SMALL_STATE(2665)] = 71622, + [SMALL_STATE(2666)] = 71689, + [SMALL_STATE(2667)] = 71756, + [SMALL_STATE(2668)] = 71823, + [SMALL_STATE(2669)] = 71918, + [SMALL_STATE(2670)] = 71985, + [SMALL_STATE(2671)] = 72052, + [SMALL_STATE(2672)] = 72139, + [SMALL_STATE(2673)] = 72206, + [SMALL_STATE(2674)] = 72273, + [SMALL_STATE(2675)] = 72340, + [SMALL_STATE(2676)] = 72431, + [SMALL_STATE(2677)] = 72516, + [SMALL_STATE(2678)] = 72583, + [SMALL_STATE(2679)] = 72650, + [SMALL_STATE(2680)] = 72717, + [SMALL_STATE(2681)] = 72784, + [SMALL_STATE(2682)] = 72850, + [SMALL_STATE(2683)] = 72920, + [SMALL_STATE(2684)] = 72986, + [SMALL_STATE(2685)] = 73052, + [SMALL_STATE(2686)] = 73126, + [SMALL_STATE(2687)] = 73216, + [SMALL_STATE(2688)] = 73306, + [SMALL_STATE(2689)] = 73396, + [SMALL_STATE(2690)] = 73486, + [SMALL_STATE(2691)] = 73556, + [SMALL_STATE(2692)] = 73624, + [SMALL_STATE(2693)] = 73690, + [SMALL_STATE(2694)] = 73780, + [SMALL_STATE(2695)] = 73862, + [SMALL_STATE(2696)] = 73928, + [SMALL_STATE(2697)] = 74018, + [SMALL_STATE(2698)] = 74086, + [SMALL_STATE(2699)] = 74176, + [SMALL_STATE(2700)] = 74242, + [SMALL_STATE(2701)] = 74318, + [SMALL_STATE(2702)] = 74392, + [SMALL_STATE(2703)] = 74462, + [SMALL_STATE(2704)] = 74528, + [SMALL_STATE(2705)] = 74594, + [SMALL_STATE(2706)] = 74684, + [SMALL_STATE(2707)] = 74766, + [SMALL_STATE(2708)] = 74832, + [SMALL_STATE(2709)] = 74902, + [SMALL_STATE(2710)] = 74968, + [SMALL_STATE(2711)] = 75034, + [SMALL_STATE(2712)] = 75116, + [SMALL_STATE(2713)] = 75182, + [SMALL_STATE(2714)] = 75264, + [SMALL_STATE(2715)] = 75354, + [SMALL_STATE(2716)] = 75442, + [SMALL_STATE(2717)] = 75516, + [SMALL_STATE(2718)] = 75606, + [SMALL_STATE(2719)] = 75672, + [SMALL_STATE(2720)] = 75762, + [SMALL_STATE(2721)] = 75852, + [SMALL_STATE(2722)] = 75918, + [SMALL_STATE(2723)] = 75984, + [SMALL_STATE(2724)] = 76071, + [SMALL_STATE(2725)] = 76158, + [SMALL_STATE(2726)] = 76245, + [SMALL_STATE(2727)] = 76332, + [SMALL_STATE(2728)] = 76397, + [SMALL_STATE(2729)] = 76462, + [SMALL_STATE(2730)] = 76527, + [SMALL_STATE(2731)] = 76592, + [SMALL_STATE(2732)] = 76679, + [SMALL_STATE(2733)] = 76766, + [SMALL_STATE(2734)] = 76853, + [SMALL_STATE(2735)] = 76940, + [SMALL_STATE(2736)] = 77027, + [SMALL_STATE(2737)] = 77092, + [SMALL_STATE(2738)] = 77157, + [SMALL_STATE(2739)] = 77222, + [SMALL_STATE(2740)] = 77287, + [SMALL_STATE(2741)] = 77352, + [SMALL_STATE(2742)] = 77417, + [SMALL_STATE(2743)] = 77482, + [SMALL_STATE(2744)] = 77547, + [SMALL_STATE(2745)] = 77612, + [SMALL_STATE(2746)] = 77677, + [SMALL_STATE(2747)] = 77742, + [SMALL_STATE(2748)] = 77807, + [SMALL_STATE(2749)] = 77872, + [SMALL_STATE(2750)] = 77937, + [SMALL_STATE(2751)] = 78002, + [SMALL_STATE(2752)] = 78067, + [SMALL_STATE(2753)] = 78154, + [SMALL_STATE(2754)] = 78241, + [SMALL_STATE(2755)] = 78306, + [SMALL_STATE(2756)] = 78371, + [SMALL_STATE(2757)] = 78436, + [SMALL_STATE(2758)] = 78501, + [SMALL_STATE(2759)] = 78588, + [SMALL_STATE(2760)] = 78661, + [SMALL_STATE(2761)] = 78734, + [SMALL_STATE(2762)] = 78821, + [SMALL_STATE(2763)] = 78894, + [SMALL_STATE(2764)] = 78981, + [SMALL_STATE(2765)] = 79048, + [SMALL_STATE(2766)] = 79115, + [SMALL_STATE(2767)] = 79186, + [SMALL_STATE(2768)] = 79255, + [SMALL_STATE(2769)] = 79342, + [SMALL_STATE(2770)] = 79409, + [SMALL_STATE(2771)] = 79476, + [SMALL_STATE(2772)] = 79563, + [SMALL_STATE(2773)] = 79650, + [SMALL_STATE(2774)] = 79737, + [SMALL_STATE(2775)] = 79824, + [SMALL_STATE(2776)] = 79911, + [SMALL_STATE(2777)] = 79998, + [SMALL_STATE(2778)] = 80085, + [SMALL_STATE(2779)] = 80172, + [SMALL_STATE(2780)] = 80259, + [SMALL_STATE(2781)] = 80346, + [SMALL_STATE(2782)] = 80433, + [SMALL_STATE(2783)] = 80520, + [SMALL_STATE(2784)] = 80607, + [SMALL_STATE(2785)] = 80694, + [SMALL_STATE(2786)] = 80781, + [SMALL_STATE(2787)] = 80868, + [SMALL_STATE(2788)] = 80955, + [SMALL_STATE(2789)] = 81042, + [SMALL_STATE(2790)] = 81129, + [SMALL_STATE(2791)] = 81216, + [SMALL_STATE(2792)] = 81303, + [SMALL_STATE(2793)] = 81390, + [SMALL_STATE(2794)] = 81455, + [SMALL_STATE(2795)] = 81519, + [SMALL_STATE(2796)] = 81583, + [SMALL_STATE(2797)] = 81647, + [SMALL_STATE(2798)] = 81719, + [SMALL_STATE(2799)] = 81791, + [SMALL_STATE(2800)] = 81863, + [SMALL_STATE(2801)] = 81927, + [SMALL_STATE(2802)] = 81999, + [SMALL_STATE(2803)] = 82065, + [SMALL_STATE(2804)] = 82135, + [SMALL_STATE(2805)] = 82205, + [SMALL_STATE(2806)] = 82275, + [SMALL_STATE(2807)] = 82347, + [SMALL_STATE(2808)] = 82417, + [SMALL_STATE(2809)] = 82485, + [SMALL_STATE(2810)] = 82549, + [SMALL_STATE(2811)] = 82613, + [SMALL_STATE(2812)] = 82677, + [SMALL_STATE(2813)] = 82741, + [SMALL_STATE(2814)] = 82813, + [SMALL_STATE(2815)] = 82877, + [SMALL_STATE(2816)] = 82941, + [SMALL_STATE(2817)] = 83005, + [SMALL_STATE(2818)] = 83071, + [SMALL_STATE(2819)] = 83137, + [SMALL_STATE(2820)] = 83201, + [SMALL_STATE(2821)] = 83265, + [SMALL_STATE(2822)] = 83329, + [SMALL_STATE(2823)] = 83393, + [SMALL_STATE(2824)] = 83461, + [SMALL_STATE(2825)] = 83525, + [SMALL_STATE(2826)] = 83589, + [SMALL_STATE(2827)] = 83653, + [SMALL_STATE(2828)] = 83725, + [SMALL_STATE(2829)] = 83793, + [SMALL_STATE(2830)] = 83857, + [SMALL_STATE(2831)] = 83929, + [SMALL_STATE(2832)] = 83993, + [SMALL_STATE(2833)] = 84067, + [SMALL_STATE(2834)] = 84131, + [SMALL_STATE(2835)] = 84195, + [SMALL_STATE(2836)] = 84267, + [SMALL_STATE(2837)] = 84339, + [SMALL_STATE(2838)] = 84403, + [SMALL_STATE(2839)] = 84521, + [SMALL_STATE(2840)] = 84585, + [SMALL_STATE(2841)] = 84657, + [SMALL_STATE(2842)] = 84721, + [SMALL_STATE(2843)] = 84793, + [SMALL_STATE(2844)] = 84865, + [SMALL_STATE(2845)] = 84933, + [SMALL_STATE(2846)] = 85005, + [SMALL_STATE(2847)] = 85077, + [SMALL_STATE(2848)] = 85141, + [SMALL_STATE(2849)] = 85213, + [SMALL_STATE(2850)] = 85277, + [SMALL_STATE(2851)] = 85341, + [SMALL_STATE(2852)] = 85405, + [SMALL_STATE(2853)] = 85477, + [SMALL_STATE(2854)] = 85545, + [SMALL_STATE(2855)] = 85609, + [SMALL_STATE(2856)] = 85681, + [SMALL_STATE(2857)] = 85753, + [SMALL_STATE(2858)] = 85825, + [SMALL_STATE(2859)] = 85897, + [SMALL_STATE(2860)] = 85973, + [SMALL_STATE(2861)] = 86045, + [SMALL_STATE(2862)] = 86117, + [SMALL_STATE(2863)] = 86181, + [SMALL_STATE(2864)] = 86245, + [SMALL_STATE(2865)] = 86317, + [SMALL_STATE(2866)] = 86433, + [SMALL_STATE(2867)] = 86551, + [SMALL_STATE(2868)] = 86621, + [SMALL_STATE(2869)] = 86743, + [SMALL_STATE(2870)] = 86815, + [SMALL_STATE(2871)] = 86937, + [SMALL_STATE(2872)] = 87001, + [SMALL_STATE(2873)] = 87117, + [SMALL_STATE(2874)] = 87181, + [SMALL_STATE(2875)] = 87249, + [SMALL_STATE(2876)] = 87316, + [SMALL_STATE(2877)] = 87397, + [SMALL_STATE(2878)] = 87470, + [SMALL_STATE(2879)] = 87541, + [SMALL_STATE(2880)] = 87612, + [SMALL_STATE(2881)] = 87683, + [SMALL_STATE(2882)] = 87754, + [SMALL_STATE(2883)] = 87825, + [SMALL_STATE(2884)] = 87896, + [SMALL_STATE(2885)] = 87967, + [SMALL_STATE(2886)] = 88038, + [SMALL_STATE(2887)] = 88109, + [SMALL_STATE(2888)] = 88180, + [SMALL_STATE(2889)] = 88251, + [SMALL_STATE(2890)] = 88322, + [SMALL_STATE(2891)] = 88393, + [SMALL_STATE(2892)] = 88464, + [SMALL_STATE(2893)] = 88535, + [SMALL_STATE(2894)] = 88606, + [SMALL_STATE(2895)] = 88677, + [SMALL_STATE(2896)] = 88748, + [SMALL_STATE(2897)] = 88823, + [SMALL_STATE(2898)] = 88892, + [SMALL_STATE(2899)] = 88959, + [SMALL_STATE(2900)] = 89022, + [SMALL_STATE(2901)] = 89087, + [SMALL_STATE(2902)] = 89150, + [SMALL_STATE(2903)] = 89263, + [SMALL_STATE(2904)] = 89326, + [SMALL_STATE(2905)] = 89389, + [SMALL_STATE(2906)] = 89452, + [SMALL_STATE(2907)] = 89523, + [SMALL_STATE(2908)] = 89586, + [SMALL_STATE(2909)] = 89649, + [SMALL_STATE(2910)] = 89712, + [SMALL_STATE(2911)] = 89777, + [SMALL_STATE(2912)] = 89842, + [SMALL_STATE(2913)] = 89909, + [SMALL_STATE(2914)] = 89976, + [SMALL_STATE(2915)] = 90041, + [SMALL_STATE(2916)] = 90106, + [SMALL_STATE(2917)] = 90221, + [SMALL_STATE(2918)] = 90288, + [SMALL_STATE(2919)] = 90353, + [SMALL_STATE(2920)] = 90466, + [SMALL_STATE(2921)] = 90533, + [SMALL_STATE(2922)] = 90646, + [SMALL_STATE(2923)] = 90761, + [SMALL_STATE(2924)] = 90874, + [SMALL_STATE(2925)] = 90939, + [SMALL_STATE(2926)] = 91005, + [SMALL_STATE(2927)] = 91075, + [SMALL_STATE(2928)] = 91145, + [SMALL_STATE(2929)] = 91215, + [SMALL_STATE(2930)] = 91285, + [SMALL_STATE(2931)] = 91355, + [SMALL_STATE(2932)] = 91425, + [SMALL_STATE(2933)] = 91495, + [SMALL_STATE(2934)] = 91565, + [SMALL_STATE(2935)] = 91635, + [SMALL_STATE(2936)] = 91705, + [SMALL_STATE(2937)] = 91775, + [SMALL_STATE(2938)] = 91845, + [SMALL_STATE(2939)] = 91915, + [SMALL_STATE(2940)] = 91977, + [SMALL_STATE(2941)] = 92039, + [SMALL_STATE(2942)] = 92109, + [SMALL_STATE(2943)] = 92171, + [SMALL_STATE(2944)] = 92235, + [SMALL_STATE(2945)] = 92299, + [SMALL_STATE(2946)] = 92369, + [SMALL_STATE(2947)] = 92431, + [SMALL_STATE(2948)] = 92501, + [SMALL_STATE(2949)] = 92571, + [SMALL_STATE(2950)] = 92633, + [SMALL_STATE(2951)] = 92695, + [SMALL_STATE(2952)] = 92757, + [SMALL_STATE(2953)] = 92819, + [SMALL_STATE(2954)] = 92881, + [SMALL_STATE(2955)] = 92943, + [SMALL_STATE(2956)] = 93013, + [SMALL_STATE(2957)] = 93079, + [SMALL_STATE(2958)] = 93159, + [SMALL_STATE(2959)] = 93237, + [SMALL_STATE(2960)] = 93315, + [SMALL_STATE(2961)] = 93379, + [SMALL_STATE(2962)] = 93447, + [SMALL_STATE(2963)] = 93513, + [SMALL_STATE(2964)] = 93575, + [SMALL_STATE(2965)] = 93645, + [SMALL_STATE(2966)] = 93715, + [SMALL_STATE(2967)] = 93785, + [SMALL_STATE(2968)] = 93847, + [SMALL_STATE(2969)] = 93909, + [SMALL_STATE(2970)] = 93977, + [SMALL_STATE(2971)] = 94041, + [SMALL_STATE(2972)] = 94105, + [SMALL_STATE(2973)] = 94169, + [SMALL_STATE(2974)] = 94233, + [SMALL_STATE(2975)] = 94297, + [SMALL_STATE(2976)] = 94365, + [SMALL_STATE(2977)] = 94427, + [SMALL_STATE(2978)] = 94489, + [SMALL_STATE(2979)] = 94555, + [SMALL_STATE(2980)] = 94617, + [SMALL_STATE(2981)] = 94679, + [SMALL_STATE(2982)] = 94741, + [SMALL_STATE(2983)] = 94803, + [SMALL_STATE(2984)] = 94871, + [SMALL_STATE(2985)] = 94937, + [SMALL_STATE(2986)] = 95003, + [SMALL_STATE(2987)] = 95067, + [SMALL_STATE(2988)] = 95133, + [SMALL_STATE(2989)] = 95201, + [SMALL_STATE(2990)] = 95269, + [SMALL_STATE(2991)] = 95337, + [SMALL_STATE(2992)] = 95405, + [SMALL_STATE(2993)] = 95473, + [SMALL_STATE(2994)] = 95543, + [SMALL_STATE(2995)] = 95613, + [SMALL_STATE(2996)] = 95681, + [SMALL_STATE(2997)] = 95749, + [SMALL_STATE(2998)] = 95811, + [SMALL_STATE(2999)] = 95873, + [SMALL_STATE(3000)] = 95934, + [SMALL_STATE(3001)] = 95997, + [SMALL_STATE(3002)] = 96062, + [SMALL_STATE(3003)] = 96123, + [SMALL_STATE(3004)] = 96184, + [SMALL_STATE(3005)] = 96255, + [SMALL_STATE(3006)] = 96316, + [SMALL_STATE(3007)] = 96377, + [SMALL_STATE(3008)] = 96438, + [SMALL_STATE(3009)] = 96499, + [SMALL_STATE(3010)] = 96560, + [SMALL_STATE(3011)] = 96625, + [SMALL_STATE(3012)] = 96690, + [SMALL_STATE(3013)] = 96751, + [SMALL_STATE(3014)] = 96812, + [SMALL_STATE(3015)] = 96873, + [SMALL_STATE(3016)] = 96934, + [SMALL_STATE(3017)] = 96995, + [SMALL_STATE(3018)] = 97056, + [SMALL_STATE(3019)] = 97121, + [SMALL_STATE(3020)] = 97182, + [SMALL_STATE(3021)] = 97249, + [SMALL_STATE(3022)] = 97326, + [SMALL_STATE(3023)] = 97387, + [SMALL_STATE(3024)] = 97456, + [SMALL_STATE(3025)] = 97521, + [SMALL_STATE(3026)] = 97586, + [SMALL_STATE(3027)] = 97651, + [SMALL_STATE(3028)] = 97714, + [SMALL_STATE(3029)] = 97777, + [SMALL_STATE(3030)] = 97854, + [SMALL_STATE(3031)] = 97917, + [SMALL_STATE(3032)] = 97980, + [SMALL_STATE(3033)] = 98041, + [SMALL_STATE(3034)] = 98104, + [SMALL_STATE(3035)] = 98169, + [SMALL_STATE(3036)] = 98234, + [SMALL_STATE(3037)] = 98295, + [SMALL_STATE(3038)] = 98358, + [SMALL_STATE(3039)] = 98423, + [SMALL_STATE(3040)] = 98488, + [SMALL_STATE(3041)] = 98553, + [SMALL_STATE(3042)] = 98614, + [SMALL_STATE(3043)] = 98679, + [SMALL_STATE(3044)] = 98740, + [SMALL_STATE(3045)] = 98803, + [SMALL_STATE(3046)] = 98868, + [SMALL_STATE(3047)] = 98933, + [SMALL_STATE(3048)] = 98994, + [SMALL_STATE(3049)] = 99059, + [SMALL_STATE(3050)] = 99124, + [SMALL_STATE(3051)] = 99189, + [SMALL_STATE(3052)] = 99252, + [SMALL_STATE(3053)] = 99313, + [SMALL_STATE(3054)] = 99376, + [SMALL_STATE(3055)] = 99437, + [SMALL_STATE(3056)] = 99498, + [SMALL_STATE(3057)] = 99563, + [SMALL_STATE(3058)] = 99624, + [SMALL_STATE(3059)] = 99689, + [SMALL_STATE(3060)] = 99754, + [SMALL_STATE(3061)] = 99819, + [SMALL_STATE(3062)] = 99879, + [SMALL_STATE(3063)] = 99939, + [SMALL_STATE(3064)] = 99999, + [SMALL_STATE(3065)] = 100059, + [SMALL_STATE(3066)] = 100119, + [SMALL_STATE(3067)] = 100179, + [SMALL_STATE(3068)] = 100239, + [SMALL_STATE(3069)] = 100301, + [SMALL_STATE(3070)] = 100363, + [SMALL_STATE(3071)] = 100425, + [SMALL_STATE(3072)] = 100485, + [SMALL_STATE(3073)] = 100545, + [SMALL_STATE(3074)] = 100605, + [SMALL_STATE(3075)] = 100665, + [SMALL_STATE(3076)] = 100725, + [SMALL_STATE(3077)] = 100785, + [SMALL_STATE(3078)] = 100845, + [SMALL_STATE(3079)] = 100905, + [SMALL_STATE(3080)] = 100965, + [SMALL_STATE(3081)] = 101025, + [SMALL_STATE(3082)] = 101091, + [SMALL_STATE(3083)] = 101151, + [SMALL_STATE(3084)] = 101217, + [SMALL_STATE(3085)] = 101277, + [SMALL_STATE(3086)] = 101337, + [SMALL_STATE(3087)] = 101397, + [SMALL_STATE(3088)] = 101457, + [SMALL_STATE(3089)] = 101519, + [SMALL_STATE(3090)] = 101579, + [SMALL_STATE(3091)] = 101639, + [SMALL_STATE(3092)] = 101701, + [SMALL_STATE(3093)] = 101763, + [SMALL_STATE(3094)] = 101823, + [SMALL_STATE(3095)] = 101883, + [SMALL_STATE(3096)] = 101943, + [SMALL_STATE(3097)] = 102003, + [SMALL_STATE(3098)] = 102069, + [SMALL_STATE(3099)] = 102129, + [SMALL_STATE(3100)] = 102189, + [SMALL_STATE(3101)] = 102249, + [SMALL_STATE(3102)] = 102309, + [SMALL_STATE(3103)] = 102373, + [SMALL_STATE(3104)] = 102447, + [SMALL_STATE(3105)] = 102513, + [SMALL_STATE(3106)] = 102575, + [SMALL_STATE(3107)] = 102637, + [SMALL_STATE(3108)] = 102697, + [SMALL_STATE(3109)] = 102759, + [SMALL_STATE(3110)] = 102819, + [SMALL_STATE(3111)] = 102883, + [SMALL_STATE(3112)] = 102947, + [SMALL_STATE(3113)] = 103007, + [SMALL_STATE(3114)] = 103069, + [SMALL_STATE(3115)] = 103129, + [SMALL_STATE(3116)] = 103189, + [SMALL_STATE(3117)] = 103249, + [SMALL_STATE(3118)] = 103313, + [SMALL_STATE(3119)] = 103373, + [SMALL_STATE(3120)] = 103433, + [SMALL_STATE(3121)] = 103493, + [SMALL_STATE(3122)] = 103553, + [SMALL_STATE(3123)] = 103613, + [SMALL_STATE(3124)] = 103673, + [SMALL_STATE(3125)] = 103733, + [SMALL_STATE(3126)] = 103799, + [SMALL_STATE(3127)] = 103865, + [SMALL_STATE(3128)] = 103931, + [SMALL_STATE(3129)] = 103997, + [SMALL_STATE(3130)] = 104057, + [SMALL_STATE(3131)] = 104123, + [SMALL_STATE(3132)] = 104189, + [SMALL_STATE(3133)] = 104249, + [SMALL_STATE(3134)] = 104315, + [SMALL_STATE(3135)] = 104381, + [SMALL_STATE(3136)] = 104441, + [SMALL_STATE(3137)] = 104501, + [SMALL_STATE(3138)] = 104561, + [SMALL_STATE(3139)] = 104621, + [SMALL_STATE(3140)] = 104681, + [SMALL_STATE(3141)] = 104741, + [SMALL_STATE(3142)] = 104801, + [SMALL_STATE(3143)] = 104861, + [SMALL_STATE(3144)] = 104921, + [SMALL_STATE(3145)] = 104981, + [SMALL_STATE(3146)] = 105041, + [SMALL_STATE(3147)] = 105101, + [SMALL_STATE(3148)] = 105163, + [SMALL_STATE(3149)] = 105223, + [SMALL_STATE(3150)] = 105285, + [SMALL_STATE(3151)] = 105344, + [SMALL_STATE(3152)] = 105403, + [SMALL_STATE(3153)] = 105462, + [SMALL_STATE(3154)] = 105521, + [SMALL_STATE(3155)] = 105580, + [SMALL_STATE(3156)] = 105639, + [SMALL_STATE(3157)] = 105698, + [SMALL_STATE(3158)] = 105757, + [SMALL_STATE(3159)] = 105816, + [SMALL_STATE(3160)] = 105877, + [SMALL_STATE(3161)] = 105936, + [SMALL_STATE(3162)] = 105995, + [SMALL_STATE(3163)] = 106054, + [SMALL_STATE(3164)] = 106113, + [SMALL_STATE(3165)] = 106172, + [SMALL_STATE(3166)] = 106233, + [SMALL_STATE(3167)] = 106292, + [SMALL_STATE(3168)] = 106353, + [SMALL_STATE(3169)] = 106414, + [SMALL_STATE(3170)] = 106473, + [SMALL_STATE(3171)] = 106532, + [SMALL_STATE(3172)] = 106593, + [SMALL_STATE(3173)] = 106652, + [SMALL_STATE(3174)] = 106711, + [SMALL_STATE(3175)] = 106770, + [SMALL_STATE(3176)] = 106829, + [SMALL_STATE(3177)] = 106888, + [SMALL_STATE(3178)] = 106947, + [SMALL_STATE(3179)] = 107006, + [SMALL_STATE(3180)] = 107065, + [SMALL_STATE(3181)] = 107124, + [SMALL_STATE(3182)] = 107183, + [SMALL_STATE(3183)] = 107242, + [SMALL_STATE(3184)] = 107301, + [SMALL_STATE(3185)] = 107360, + [SMALL_STATE(3186)] = 107419, + [SMALL_STATE(3187)] = 107480, + [SMALL_STATE(3188)] = 107539, + [SMALL_STATE(3189)] = 107598, + [SMALL_STATE(3190)] = 107659, + [SMALL_STATE(3191)] = 107718, + [SMALL_STATE(3192)] = 107777, + [SMALL_STATE(3193)] = 107836, + [SMALL_STATE(3194)] = 107895, + [SMALL_STATE(3195)] = 107954, + [SMALL_STATE(3196)] = 108013, + [SMALL_STATE(3197)] = 108074, + [SMALL_STATE(3198)] = 108133, + [SMALL_STATE(3199)] = 108192, + [SMALL_STATE(3200)] = 108251, + [SMALL_STATE(3201)] = 108314, + [SMALL_STATE(3202)] = 108375, + [SMALL_STATE(3203)] = 108434, + [SMALL_STATE(3204)] = 108493, + [SMALL_STATE(3205)] = 108552, + [SMALL_STATE(3206)] = 108615, + [SMALL_STATE(3207)] = 108674, + [SMALL_STATE(3208)] = 108733, + [SMALL_STATE(3209)] = 108792, + [SMALL_STATE(3210)] = 108851, + [SMALL_STATE(3211)] = 108910, + [SMALL_STATE(3212)] = 108971, + [SMALL_STATE(3213)] = 109030, + [SMALL_STATE(3214)] = 109089, + [SMALL_STATE(3215)] = 109148, + [SMALL_STATE(3216)] = 109209, + [SMALL_STATE(3217)] = 109270, + [SMALL_STATE(3218)] = 109329, + [SMALL_STATE(3219)] = 109388, + [SMALL_STATE(3220)] = 109447, + [SMALL_STATE(3221)] = 109508, + [SMALL_STATE(3222)] = 109567, + [SMALL_STATE(3223)] = 109640, + [SMALL_STATE(3224)] = 109699, + [SMALL_STATE(3225)] = 109762, + [SMALL_STATE(3226)] = 109821, + [SMALL_STATE(3227)] = 109880, + [SMALL_STATE(3228)] = 109939, + [SMALL_STATE(3229)] = 110002, + [SMALL_STATE(3230)] = 110065, + [SMALL_STATE(3231)] = 110126, + [SMALL_STATE(3232)] = 110187, + [SMALL_STATE(3233)] = 110250, + [SMALL_STATE(3234)] = 110309, + [SMALL_STATE(3235)] = 110370, + [SMALL_STATE(3236)] = 110429, + [SMALL_STATE(3237)] = 110487, + [SMALL_STATE(3238)] = 110545, + [SMALL_STATE(3239)] = 110603, + [SMALL_STATE(3240)] = 110661, + [SMALL_STATE(3241)] = 110719, + [SMALL_STATE(3242)] = 110777, + [SMALL_STATE(3243)] = 110835, + [SMALL_STATE(3244)] = 110893, + [SMALL_STATE(3245)] = 110951, + [SMALL_STATE(3246)] = 111009, + [SMALL_STATE(3247)] = 111067, + [SMALL_STATE(3248)] = 111125, + [SMALL_STATE(3249)] = 111183, + [SMALL_STATE(3250)] = 111241, + [SMALL_STATE(3251)] = 111299, + [SMALL_STATE(3252)] = 111359, + [SMALL_STATE(3253)] = 111417, + [SMALL_STATE(3254)] = 111475, + [SMALL_STATE(3255)] = 111533, + [SMALL_STATE(3256)] = 111591, + [SMALL_STATE(3257)] = 111649, + [SMALL_STATE(3258)] = 111707, + [SMALL_STATE(3259)] = 111765, + [SMALL_STATE(3260)] = 111823, + [SMALL_STATE(3261)] = 111881, + [SMALL_STATE(3262)] = 111939, + [SMALL_STATE(3263)] = 111999, + [SMALL_STATE(3264)] = 112057, + [SMALL_STATE(3265)] = 112115, + [SMALL_STATE(3266)] = 112173, + [SMALL_STATE(3267)] = 112231, + [SMALL_STATE(3268)] = 112289, + [SMALL_STATE(3269)] = 112347, + [SMALL_STATE(3270)] = 112405, + [SMALL_STATE(3271)] = 112463, + [SMALL_STATE(3272)] = 112521, + [SMALL_STATE(3273)] = 112579, + [SMALL_STATE(3274)] = 112637, + [SMALL_STATE(3275)] = 112695, + [SMALL_STATE(3276)] = 112757, + [SMALL_STATE(3277)] = 112817, + [SMALL_STATE(3278)] = 112875, + [SMALL_STATE(3279)] = 112933, + [SMALL_STATE(3280)] = 112991, + [SMALL_STATE(3281)] = 113049, + [SMALL_STATE(3282)] = 113107, + [SMALL_STATE(3283)] = 113169, + [SMALL_STATE(3284)] = 113227, + [SMALL_STATE(3285)] = 113285, + [SMALL_STATE(3286)] = 113343, + [SMALL_STATE(3287)] = 113401, + [SMALL_STATE(3288)] = 113459, + [SMALL_STATE(3289)] = 113517, + [SMALL_STATE(3290)] = 113575, + [SMALL_STATE(3291)] = 113633, + [SMALL_STATE(3292)] = 113691, + [SMALL_STATE(3293)] = 113749, + [SMALL_STATE(3294)] = 113807, + [SMALL_STATE(3295)] = 113865, + [SMALL_STATE(3296)] = 113923, + [SMALL_STATE(3297)] = 113981, + [SMALL_STATE(3298)] = 114039, + [SMALL_STATE(3299)] = 114097, + [SMALL_STATE(3300)] = 114155, + [SMALL_STATE(3301)] = 114213, + [SMALL_STATE(3302)] = 114271, + [SMALL_STATE(3303)] = 114329, + [SMALL_STATE(3304)] = 114387, + [SMALL_STATE(3305)] = 114445, + [SMALL_STATE(3306)] = 114503, + [SMALL_STATE(3307)] = 114561, + [SMALL_STATE(3308)] = 114627, + [SMALL_STATE(3309)] = 114685, + [SMALL_STATE(3310)] = 114744, + [SMALL_STATE(3311)] = 114803, + [SMALL_STATE(3312)] = 114860, + [SMALL_STATE(3313)] = 114917, + [SMALL_STATE(3314)] = 114974, + [SMALL_STATE(3315)] = 115031, + [SMALL_STATE(3316)] = 115096, + [SMALL_STATE(3317)] = 115161, + [SMALL_STATE(3318)] = 115218, + [SMALL_STATE(3319)] = 115274, + [SMALL_STATE(3320)] = 115350, + [SMALL_STATE(3321)] = 115410, + [SMALL_STATE(3322)] = 115486, + [SMALL_STATE(3323)] = 115562, + [SMALL_STATE(3324)] = 115622, + [SMALL_STATE(3325)] = 115686, + [SMALL_STATE(3326)] = 115762, + [SMALL_STATE(3327)] = 115826, + [SMALL_STATE(3328)] = 115902, + [SMALL_STATE(3329)] = 115966, + [SMALL_STATE(3330)] = 116042, + [SMALL_STATE(3331)] = 116118, + [SMALL_STATE(3332)] = 116194, + [SMALL_STATE(3333)] = 116270, + [SMALL_STATE(3334)] = 116346, + [SMALL_STATE(3335)] = 116422, + [SMALL_STATE(3336)] = 116498, + [SMALL_STATE(3337)] = 116574, + [SMALL_STATE(3338)] = 116650, + [SMALL_STATE(3339)] = 116706, + [SMALL_STATE(3340)] = 116772, + [SMALL_STATE(3341)] = 116828, + [SMALL_STATE(3342)] = 116904, + [SMALL_STATE(3343)] = 116960, + [SMALL_STATE(3344)] = 117036, + [SMALL_STATE(3345)] = 117093, + [SMALL_STATE(3346)] = 117152, + [SMALL_STATE(3347)] = 117209, + [SMALL_STATE(3348)] = 117274, + [SMALL_STATE(3349)] = 117333, + [SMALL_STATE(3350)] = 117391, + [SMALL_STATE(3351)] = 117445, + [SMALL_STATE(3352)] = 117503, + [SMALL_STATE(3353)] = 117561, + [SMALL_STATE(3354)] = 117615, + [SMALL_STATE(3355)] = 117673, + [SMALL_STATE(3356)] = 117727, + [SMALL_STATE(3357)] = 117785, + [SMALL_STATE(3358)] = 117843, + [SMALL_STATE(3359)] = 117897, + [SMALL_STATE(3360)] = 117951, + [SMALL_STATE(3361)] = 118005, + [SMALL_STATE(3362)] = 118063, + [SMALL_STATE(3363)] = 118121, + [SMALL_STATE(3364)] = 118175, + [SMALL_STATE(3365)] = 118233, + [SMALL_STATE(3366)] = 118289, + [SMALL_STATE(3367)] = 118345, + [SMALL_STATE(3368)] = 118415, + [SMALL_STATE(3369)] = 118472, + [SMALL_STATE(3370)] = 118529, + [SMALL_STATE(3371)] = 118596, + [SMALL_STATE(3372)] = 118653, + [SMALL_STATE(3373)] = 118706, + [SMALL_STATE(3374)] = 118763, + [SMALL_STATE(3375)] = 118816, + [SMALL_STATE(3376)] = 118871, + [SMALL_STATE(3377)] = 118924, + [SMALL_STATE(3378)] = 118977, + [SMALL_STATE(3379)] = 119034, + [SMALL_STATE(3380)] = 119091, + [SMALL_STATE(3381)] = 119148, + [SMALL_STATE(3382)] = 119201, + [SMALL_STATE(3383)] = 119258, + [SMALL_STATE(3384)] = 119315, + [SMALL_STATE(3385)] = 119383, + [SMALL_STATE(3386)] = 119453, + [SMALL_STATE(3387)] = 119507, + [SMALL_STATE(3388)] = 119557, + [SMALL_STATE(3389)] = 119607, + [SMALL_STATE(3390)] = 119671, + [SMALL_STATE(3391)] = 119725, + [SMALL_STATE(3392)] = 119793, + [SMALL_STATE(3393)] = 119855, + [SMALL_STATE(3394)] = 119925, + [SMALL_STATE(3395)] = 119983, + [SMALL_STATE(3396)] = 120063, + [SMALL_STATE(3397)] = 120145, + [SMALL_STATE(3398)] = 120229, + [SMALL_STATE(3399)] = 120301, + [SMALL_STATE(3400)] = 120367, + [SMALL_STATE(3401)] = 120441, + [SMALL_STATE(3402)] = 120517, + [SMALL_STATE(3403)] = 120595, + [SMALL_STATE(3404)] = 120659, + [SMALL_STATE(3405)] = 120725, + [SMALL_STATE(3406)] = 120793, + [SMALL_STATE(3407)] = 120853, + [SMALL_STATE(3408)] = 120915, + [SMALL_STATE(3409)] = 120965, + [SMALL_STATE(3410)] = 121035, + [SMALL_STATE(3411)] = 121091, + [SMALL_STATE(3412)] = 121149, + [SMALL_STATE(3413)] = 121227, + [SMALL_STATE(3414)] = 121307, + [SMALL_STATE(3415)] = 121387, + [SMALL_STATE(3416)] = 121469, + [SMALL_STATE(3417)] = 121551, + [SMALL_STATE(3418)] = 121635, + [SMALL_STATE(3419)] = 121705, + [SMALL_STATE(3420)] = 121777, + [SMALL_STATE(3421)] = 121841, + [SMALL_STATE(3422)] = 121907, + [SMALL_STATE(3423)] = 121979, + [SMALL_STATE(3424)] = 122053, + [SMALL_STATE(3425)] = 122127, + [SMALL_STATE(3426)] = 122203, + [SMALL_STATE(3427)] = 122279, + [SMALL_STATE(3428)] = 122357, + [SMALL_STATE(3429)] = 122425, + [SMALL_STATE(3430)] = 122487, + [SMALL_STATE(3431)] = 122557, + [SMALL_STATE(3432)] = 122615, + [SMALL_STATE(3433)] = 122695, + [SMALL_STATE(3434)] = 122777, + [SMALL_STATE(3435)] = 122861, + [SMALL_STATE(3436)] = 122933, + [SMALL_STATE(3437)] = 122999, + [SMALL_STATE(3438)] = 123073, + [SMALL_STATE(3439)] = 123149, + [SMALL_STATE(3440)] = 123227, + [SMALL_STATE(3441)] = 123293, + [SMALL_STATE(3442)] = 123353, + [SMALL_STATE(3443)] = 123421, + [SMALL_STATE(3444)] = 123477, + [SMALL_STATE(3445)] = 123555, + [SMALL_STATE(3446)] = 123635, + [SMALL_STATE(3447)] = 123717, + [SMALL_STATE(3448)] = 123787, + [SMALL_STATE(3449)] = 123851, + [SMALL_STATE(3450)] = 123923, + [SMALL_STATE(3451)] = 123997, + [SMALL_STATE(3452)] = 124073, + [SMALL_STATE(3453)] = 124139, + [SMALL_STATE(3454)] = 124207, + [SMALL_STATE(3455)] = 124267, + [SMALL_STATE(3456)] = 124329, + [SMALL_STATE(3457)] = 124397, + [SMALL_STATE(3458)] = 124467, + [SMALL_STATE(3459)] = 124523, + [SMALL_STATE(3460)] = 124581, + [SMALL_STATE(3461)] = 124659, + [SMALL_STATE(3462)] = 124739, + [SMALL_STATE(3463)] = 124819, + [SMALL_STATE(3464)] = 124901, + [SMALL_STATE(3465)] = 124983, + [SMALL_STATE(3466)] = 125067, + [SMALL_STATE(3467)] = 125137, + [SMALL_STATE(3468)] = 125209, + [SMALL_STATE(3469)] = 125273, + [SMALL_STATE(3470)] = 125339, + [SMALL_STATE(3471)] = 125411, + [SMALL_STATE(3472)] = 125485, + [SMALL_STATE(3473)] = 125559, + [SMALL_STATE(3474)] = 125635, + [SMALL_STATE(3475)] = 125711, + [SMALL_STATE(3476)] = 125789, + [SMALL_STATE(3477)] = 125855, + [SMALL_STATE(3478)] = 125915, + [SMALL_STATE(3479)] = 125983, + [SMALL_STATE(3480)] = 126039, + [SMALL_STATE(3481)] = 126117, + [SMALL_STATE(3482)] = 126197, + [SMALL_STATE(3483)] = 126279, + [SMALL_STATE(3484)] = 126349, + [SMALL_STATE(3485)] = 126413, + [SMALL_STATE(3486)] = 126485, + [SMALL_STATE(3487)] = 126559, + [SMALL_STATE(3488)] = 126635, + [SMALL_STATE(3489)] = 126699, + [SMALL_STATE(3490)] = 126757, + [SMALL_STATE(3491)] = 126823, + [SMALL_STATE(3492)] = 126877, + [SMALL_STATE(3493)] = 126953, + [SMALL_STATE(3494)] = 127031, + [SMALL_STATE(3495)] = 127111, + [SMALL_STATE(3496)] = 127179, + [SMALL_STATE(3497)] = 127241, + [SMALL_STATE(3498)] = 127311, + [SMALL_STATE(3499)] = 127383, + [SMALL_STATE(3500)] = 127457, + [SMALL_STATE(3501)] = 127507, + [SMALL_STATE(3502)] = 127557, + [SMALL_STATE(3503)] = 127607, + [SMALL_STATE(3504)] = 127671, + [SMALL_STATE(3505)] = 127741, + [SMALL_STATE(3506)] = 127805, + [SMALL_STATE(3507)] = 127860, + [SMALL_STATE(3508)] = 127927, + [SMALL_STATE(3509)] = 127978, + [SMALL_STATE(3510)] = 128045, + [SMALL_STATE(3511)] = 128106, + [SMALL_STATE(3512)] = 128165, + [SMALL_STATE(3513)] = 128216, + [SMALL_STATE(3514)] = 128277, + [SMALL_STATE(3515)] = 128338, + [SMALL_STATE(3516)] = 128399, + [SMALL_STATE(3517)] = 128460, + [SMALL_STATE(3518)] = 128527, + [SMALL_STATE(3519)] = 128594, + [SMALL_STATE(3520)] = 128661, + [SMALL_STATE(3521)] = 128730, + [SMALL_STATE(3522)] = 128781, + [SMALL_STATE(3523)] = 128832, + [SMALL_STATE(3524)] = 128893, + [SMALL_STATE(3525)] = 128954, + [SMALL_STATE(3526)] = 129017, + [SMALL_STATE(3527)] = 129074, + [SMALL_STATE(3528)] = 129135, + [SMALL_STATE(3529)] = 129200, + [SMALL_STATE(3530)] = 129253, + [SMALL_STATE(3531)] = 129328, + [SMALL_STATE(3532)] = 129405, + [SMALL_STATE(3533)] = 129484, + [SMALL_STATE(3534)] = 129551, + [SMALL_STATE(3535)] = 129612, + [SMALL_STATE(3536)] = 129681, + [SMALL_STATE(3537)] = 129742, + [SMALL_STATE(3538)] = 129793, + [SMALL_STATE(3539)] = 129848, + [SMALL_STATE(3540)] = 129901, + [SMALL_STATE(3541)] = 129970, + [SMALL_STATE(3542)] = 130041, + [SMALL_STATE(3543)] = 130114, + [SMALL_STATE(3544)] = 130181, + [SMALL_STATE(3545)] = 130242, + [SMALL_STATE(3546)] = 130293, + [SMALL_STATE(3547)] = 130347, + [SMALL_STATE(3548)] = 130413, + [SMALL_STATE(3549)] = 130477, + [SMALL_STATE(3550)] = 130541, + [SMALL_STATE(3551)] = 130607, + [SMALL_STATE(3552)] = 130671, + [SMALL_STATE(3553)] = 130723, + [SMALL_STATE(3554)] = 130789, + [SMALL_STATE(3555)] = 130853, + [SMALL_STATE(3556)] = 130939, + [SMALL_STATE(3557)] = 130997, + [SMALL_STATE(3558)] = 131083, + [SMALL_STATE(3559)] = 131135, + [SMALL_STATE(3560)] = 131193, + [SMALL_STATE(3561)] = 131251, + [SMALL_STATE(3562)] = 131305, + [SMALL_STATE(3563)] = 131369, + [SMALL_STATE(3564)] = 131435, + [SMALL_STATE(3565)] = 131499, + [SMALL_STATE(3566)] = 131565, + [SMALL_STATE(3567)] = 131631, + [SMALL_STATE(3568)] = 131685, + [SMALL_STATE(3569)] = 131739, + [SMALL_STATE(3570)] = 131794, + [SMALL_STATE(3571)] = 131845, + [SMALL_STATE(3572)] = 131896, + [SMALL_STATE(3573)] = 131949, + [SMALL_STATE(3574)] = 132002, + [SMALL_STATE(3575)] = 132051, + [SMALL_STATE(3576)] = 132106, + [SMALL_STATE(3577)] = 132155, + [SMALL_STATE(3578)] = 132210, + [SMALL_STATE(3579)] = 132265, + [SMALL_STATE(3580)] = 132314, + [SMALL_STATE(3581)] = 132369, + [SMALL_STATE(3582)] = 132418, + [SMALL_STATE(3583)] = 132469, + [SMALL_STATE(3584)] = 132532, + [SMALL_STATE(3585)] = 132615, + [SMALL_STATE(3586)] = 132674, + [SMALL_STATE(3587)] = 132725, + [SMALL_STATE(3588)] = 132808, + [SMALL_STATE(3589)] = 132863, + [SMALL_STATE(3590)] = 132918, + [SMALL_STATE(3591)] = 132973, + [SMALL_STATE(3592)] = 133022, + [SMALL_STATE(3593)] = 133085, + [SMALL_STATE(3594)] = 133140, + [SMALL_STATE(3595)] = 133203, + [SMALL_STATE(3596)] = 133266, + [SMALL_STATE(3597)] = 133321, + [SMALL_STATE(3598)] = 133384, + [SMALL_STATE(3599)] = 133439, + [SMALL_STATE(3600)] = 133502, + [SMALL_STATE(3601)] = 133557, + [SMALL_STATE(3602)] = 133612, + [SMALL_STATE(3603)] = 133667, + [SMALL_STATE(3604)] = 133722, + [SMALL_STATE(3605)] = 133777, + [SMALL_STATE(3606)] = 133832, + [SMALL_STATE(3607)] = 133895, + [SMALL_STATE(3608)] = 133950, + [SMALL_STATE(3609)] = 134003, + [SMALL_STATE(3610)] = 134058, + [SMALL_STATE(3611)] = 134113, + [SMALL_STATE(3612)] = 134168, + [SMALL_STATE(3613)] = 134223, + [SMALL_STATE(3614)] = 134278, + [SMALL_STATE(3615)] = 134333, + [SMALL_STATE(3616)] = 134388, + [SMALL_STATE(3617)] = 134443, + [SMALL_STATE(3618)] = 134498, + [SMALL_STATE(3619)] = 134553, + [SMALL_STATE(3620)] = 134608, + [SMALL_STATE(3621)] = 134671, + [SMALL_STATE(3622)] = 134719, + [SMALL_STATE(3623)] = 134771, + [SMALL_STATE(3624)] = 134819, + [SMALL_STATE(3625)] = 134871, + [SMALL_STATE(3626)] = 134923, + [SMALL_STATE(3627)] = 134971, + [SMALL_STATE(3628)] = 135027, + [SMALL_STATE(3629)] = 135075, + [SMALL_STATE(3630)] = 135137, + [SMALL_STATE(3631)] = 135199, + [SMALL_STATE(3632)] = 135249, + [SMALL_STATE(3633)] = 135305, + [SMALL_STATE(3634)] = 135357, + [SMALL_STATE(3635)] = 135409, + [SMALL_STATE(3636)] = 135457, + [SMALL_STATE(3637)] = 135505, + [SMALL_STATE(3638)] = 135557, + [SMALL_STATE(3639)] = 135605, + [SMALL_STATE(3640)] = 135657, + [SMALL_STATE(3641)] = 135707, + [SMALL_STATE(3642)] = 135755, + [SMALL_STATE(3643)] = 135803, + [SMALL_STATE(3644)] = 135855, + [SMALL_STATE(3645)] = 135911, + [SMALL_STATE(3646)] = 135966, + [SMALL_STATE(3647)] = 136021, + [SMALL_STATE(3648)] = 136074, + [SMALL_STATE(3649)] = 136129, + [SMALL_STATE(3650)] = 136184, + [SMALL_STATE(3651)] = 136239, + [SMALL_STATE(3652)] = 136294, + [SMALL_STATE(3653)] = 136345, + [SMALL_STATE(3654)] = 136400, + [SMALL_STATE(3655)] = 136447, + [SMALL_STATE(3656)] = 136502, + [SMALL_STATE(3657)] = 136549, + [SMALL_STATE(3658)] = 136598, + [SMALL_STATE(3659)] = 136647, + [SMALL_STATE(3660)] = 136696, + [SMALL_STATE(3661)] = 136751, + [SMALL_STATE(3662)] = 136806, + [SMALL_STATE(3663)] = 136853, + [SMALL_STATE(3664)] = 136900, + [SMALL_STATE(3665)] = 136955, + [SMALL_STATE(3666)] = 137010, + [SMALL_STATE(3667)] = 137065, + [SMALL_STATE(3668)] = 137120, + [SMALL_STATE(3669)] = 137167, + [SMALL_STATE(3670)] = 137218, + [SMALL_STATE(3671)] = 137269, + [SMALL_STATE(3672)] = 137324, + [SMALL_STATE(3673)] = 137379, + [SMALL_STATE(3674)] = 137434, + [SMALL_STATE(3675)] = 137483, + [SMALL_STATE(3676)] = 137538, + [SMALL_STATE(3677)] = 137585, + [SMALL_STATE(3678)] = 137640, + [SMALL_STATE(3679)] = 137687, + [SMALL_STATE(3680)] = 137736, + [SMALL_STATE(3681)] = 137791, + [SMALL_STATE(3682)] = 137846, + [SMALL_STATE(3683)] = 137901, + [SMALL_STATE(3684)] = 137956, + [SMALL_STATE(3685)] = 138005, + [SMALL_STATE(3686)] = 138051, + [SMALL_STATE(3687)] = 138097, + [SMALL_STATE(3688)] = 138143, + [SMALL_STATE(3689)] = 138189, + [SMALL_STATE(3690)] = 138235, + [SMALL_STATE(3691)] = 138279, + [SMALL_STATE(3692)] = 138325, + [SMALL_STATE(3693)] = 138371, + [SMALL_STATE(3694)] = 138417, + [SMALL_STATE(3695)] = 138469, + [SMALL_STATE(3696)] = 138515, + [SMALL_STATE(3697)] = 138561, + [SMALL_STATE(3698)] = 138609, + [SMALL_STATE(3699)] = 138655, + [SMALL_STATE(3700)] = 138707, + [SMALL_STATE(3701)] = 138753, + [SMALL_STATE(3702)] = 138799, + [SMALL_STATE(3703)] = 138847, + [SMALL_STATE(3704)] = 138893, + [SMALL_STATE(3705)] = 138939, + [SMALL_STATE(3706)] = 138993, + [SMALL_STATE(3707)] = 139045, + [SMALL_STATE(3708)] = 139095, + [SMALL_STATE(3709)] = 139141, + [SMALL_STATE(3710)] = 139195, + [SMALL_STATE(3711)] = 139241, + [SMALL_STATE(3712)] = 139295, + [SMALL_STATE(3713)] = 139341, + [SMALL_STATE(3714)] = 139387, + [SMALL_STATE(3715)] = 139433, + [SMALL_STATE(3716)] = 139479, + [SMALL_STATE(3717)] = 139525, + [SMALL_STATE(3718)] = 139571, + [SMALL_STATE(3719)] = 139617, + [SMALL_STATE(3720)] = 139663, + [SMALL_STATE(3721)] = 139713, + [SMALL_STATE(3722)] = 139759, + [SMALL_STATE(3723)] = 139813, + [SMALL_STATE(3724)] = 139859, + [SMALL_STATE(3725)] = 139905, + [SMALL_STATE(3726)] = 139951, + [SMALL_STATE(3727)] = 139997, + [SMALL_STATE(3728)] = 140043, + [SMALL_STATE(3729)] = 140089, + [SMALL_STATE(3730)] = 140135, + [SMALL_STATE(3731)] = 140181, + [SMALL_STATE(3732)] = 140227, + [SMALL_STATE(3733)] = 140273, + [SMALL_STATE(3734)] = 140319, + [SMALL_STATE(3735)] = 140367, + [SMALL_STATE(3736)] = 140413, + [SMALL_STATE(3737)] = 140459, + [SMALL_STATE(3738)] = 140505, + [SMALL_STATE(3739)] = 140551, + [SMALL_STATE(3740)] = 140597, + [SMALL_STATE(3741)] = 140643, + [SMALL_STATE(3742)] = 140689, + [SMALL_STATE(3743)] = 140737, + [SMALL_STATE(3744)] = 140791, + [SMALL_STATE(3745)] = 140837, + [SMALL_STATE(3746)] = 140883, + [SMALL_STATE(3747)] = 140930, + [SMALL_STATE(3748)] = 140975, + [SMALL_STATE(3749)] = 141024, + [SMALL_STATE(3750)] = 141071, + [SMALL_STATE(3751)] = 141120, + [SMALL_STATE(3752)] = 141167, + [SMALL_STATE(3753)] = 141214, + [SMALL_STATE(3754)] = 141259, + [SMALL_STATE(3755)] = 141308, + [SMALL_STATE(3756)] = 141353, + [SMALL_STATE(3757)] = 141398, + [SMALL_STATE(3758)] = 141443, + [SMALL_STATE(3759)] = 141496, + [SMALL_STATE(3760)] = 141545, + [SMALL_STATE(3761)] = 141598, + [SMALL_STATE(3762)] = 141651, + [SMALL_STATE(3763)] = 141696, + [SMALL_STATE(3764)] = 141741, + [SMALL_STATE(3765)] = 141786, + [SMALL_STATE(3766)] = 141831, + [SMALL_STATE(3767)] = 141884, + [SMALL_STATE(3768)] = 141937, + [SMALL_STATE(3769)] = 141990, + [SMALL_STATE(3770)] = 142043, + [SMALL_STATE(3771)] = 142096, + [SMALL_STATE(3772)] = 142149, + [SMALL_STATE(3773)] = 142202, + [SMALL_STATE(3774)] = 142255, + [SMALL_STATE(3775)] = 142308, + [SMALL_STATE(3776)] = 142361, + [SMALL_STATE(3777)] = 142414, + [SMALL_STATE(3778)] = 142467, + [SMALL_STATE(3779)] = 142520, + [SMALL_STATE(3780)] = 142573, + [SMALL_STATE(3781)] = 142626, + [SMALL_STATE(3782)] = 142679, + [SMALL_STATE(3783)] = 142732, + [SMALL_STATE(3784)] = 142785, + [SMALL_STATE(3785)] = 142838, + [SMALL_STATE(3786)] = 142891, + [SMALL_STATE(3787)] = 142940, + [SMALL_STATE(3788)] = 142993, + [SMALL_STATE(3789)] = 143046, + [SMALL_STATE(3790)] = 143095, + [SMALL_STATE(3791)] = 143148, + [SMALL_STATE(3792)] = 143201, + [SMALL_STATE(3793)] = 143246, + [SMALL_STATE(3794)] = 143295, + [SMALL_STATE(3795)] = 143340, + [SMALL_STATE(3796)] = 143385, + [SMALL_STATE(3797)] = 143430, + [SMALL_STATE(3798)] = 143483, + [SMALL_STATE(3799)] = 143528, + [SMALL_STATE(3800)] = 143573, + [SMALL_STATE(3801)] = 143626, + [SMALL_STATE(3802)] = 143670, + [SMALL_STATE(3803)] = 143716, + [SMALL_STATE(3804)] = 143764, + [SMALL_STATE(3805)] = 143812, + [SMALL_STATE(3806)] = 143858, + [SMALL_STATE(3807)] = 143902, + [SMALL_STATE(3808)] = 143946, + [SMALL_STATE(3809)] = 143992, + [SMALL_STATE(3810)] = 144040, + [SMALL_STATE(3811)] = 144086, + [SMALL_STATE(3812)] = 144130, + [SMALL_STATE(3813)] = 144176, + [SMALL_STATE(3814)] = 144220, + [SMALL_STATE(3815)] = 144266, + [SMALL_STATE(3816)] = 144310, + [SMALL_STATE(3817)] = 144354, + [SMALL_STATE(3818)] = 144398, + [SMALL_STATE(3819)] = 144442, + [SMALL_STATE(3820)] = 144490, + [SMALL_STATE(3821)] = 144538, + [SMALL_STATE(3822)] = 144584, + [SMALL_STATE(3823)] = 144632, + [SMALL_STATE(3824)] = 144680, + [SMALL_STATE(3825)] = 144728, + [SMALL_STATE(3826)] = 144772, + [SMALL_STATE(3827)] = 144818, + [SMALL_STATE(3828)] = 144862, + [SMALL_STATE(3829)] = 144908, + [SMALL_STATE(3830)] = 144954, + [SMALL_STATE(3831)] = 145000, + [SMALL_STATE(3832)] = 145044, + [SMALL_STATE(3833)] = 145092, + [SMALL_STATE(3834)] = 145140, + [SMALL_STATE(3835)] = 145186, + [SMALL_STATE(3836)] = 145234, + [SMALL_STATE(3837)] = 145286, + [SMALL_STATE(3838)] = 145332, + [SMALL_STATE(3839)] = 145378, + [SMALL_STATE(3840)] = 145426, + [SMALL_STATE(3841)] = 145473, + [SMALL_STATE(3842)] = 145520, + [SMALL_STATE(3843)] = 145563, + [SMALL_STATE(3844)] = 145606, + [SMALL_STATE(3845)] = 145653, + [SMALL_STATE(3846)] = 145700, + [SMALL_STATE(3847)] = 145751, + [SMALL_STATE(3848)] = 145798, + [SMALL_STATE(3849)] = 145841, + [SMALL_STATE(3850)] = 145884, + [SMALL_STATE(3851)] = 145927, + [SMALL_STATE(3852)] = 145970, + [SMALL_STATE(3853)] = 146013, + [SMALL_STATE(3854)] = 146056, + [SMALL_STATE(3855)] = 146099, + [SMALL_STATE(3856)] = 146146, + [SMALL_STATE(3857)] = 146193, + [SMALL_STATE(3858)] = 146236, + [SMALL_STATE(3859)] = 146283, + [SMALL_STATE(3860)] = 146330, + [SMALL_STATE(3861)] = 146373, + [SMALL_STATE(3862)] = 146418, + [SMALL_STATE(3863)] = 146461, + [SMALL_STATE(3864)] = 146506, + [SMALL_STATE(3865)] = 146553, + [SMALL_STATE(3866)] = 146596, + [SMALL_STATE(3867)] = 146639, + [SMALL_STATE(3868)] = 146682, + [SMALL_STATE(3869)] = 146725, + [SMALL_STATE(3870)] = 146814, + [SMALL_STATE(3871)] = 146859, + [SMALL_STATE(3872)] = 146902, + [SMALL_STATE(3873)] = 146945, + [SMALL_STATE(3874)] = 146992, + [SMALL_STATE(3875)] = 147039, + [SMALL_STATE(3876)] = 147086, + [SMALL_STATE(3877)] = 147129, + [SMALL_STATE(3878)] = 147172, + [SMALL_STATE(3879)] = 147219, + [SMALL_STATE(3880)] = 147262, + [SMALL_STATE(3881)] = 147309, + [SMALL_STATE(3882)] = 147352, + [SMALL_STATE(3883)] = 147395, + [SMALL_STATE(3884)] = 147442, + [SMALL_STATE(3885)] = 147485, + [SMALL_STATE(3886)] = 147528, + [SMALL_STATE(3887)] = 147571, + [SMALL_STATE(3888)] = 147618, + [SMALL_STATE(3889)] = 147661, + [SMALL_STATE(3890)] = 147704, + [SMALL_STATE(3891)] = 147751, + [SMALL_STATE(3892)] = 147794, + [SMALL_STATE(3893)] = 147841, + [SMALL_STATE(3894)] = 147884, + [SMALL_STATE(3895)] = 147927, + [SMALL_STATE(3896)] = 147970, + [SMALL_STATE(3897)] = 148013, + [SMALL_STATE(3898)] = 148060, + [SMALL_STATE(3899)] = 148107, + [SMALL_STATE(3900)] = 148150, + [SMALL_STATE(3901)] = 148197, + [SMALL_STATE(3902)] = 148240, + [SMALL_STATE(3903)] = 148283, + [SMALL_STATE(3904)] = 148330, + [SMALL_STATE(3905)] = 148377, + [SMALL_STATE(3906)] = 148424, + [SMALL_STATE(3907)] = 148467, + [SMALL_STATE(3908)] = 148510, + [SMALL_STATE(3909)] = 148553, + [SMALL_STATE(3910)] = 148596, + [SMALL_STATE(3911)] = 148639, + [SMALL_STATE(3912)] = 148682, + [SMALL_STATE(3913)] = 148725, + [SMALL_STATE(3914)] = 148772, + [SMALL_STATE(3915)] = 148815, + [SMALL_STATE(3916)] = 148860, + [SMALL_STATE(3917)] = 148909, + [SMALL_STATE(3918)] = 148956, + [SMALL_STATE(3919)] = 149003, + [SMALL_STATE(3920)] = 149046, + [SMALL_STATE(3921)] = 149089, + [SMALL_STATE(3922)] = 149132, + [SMALL_STATE(3923)] = 149179, + [SMALL_STATE(3924)] = 149222, + [SMALL_STATE(3925)] = 149265, + [SMALL_STATE(3926)] = 149308, + [SMALL_STATE(3927)] = 149355, + [SMALL_STATE(3928)] = 149398, + [SMALL_STATE(3929)] = 149441, + [SMALL_STATE(3930)] = 149488, + [SMALL_STATE(3931)] = 149535, + [SMALL_STATE(3932)] = 149578, + [SMALL_STATE(3933)] = 149625, + [SMALL_STATE(3934)] = 149668, + [SMALL_STATE(3935)] = 149711, + [SMALL_STATE(3936)] = 149754, + [SMALL_STATE(3937)] = 149803, + [SMALL_STATE(3938)] = 149850, + [SMALL_STATE(3939)] = 149897, + [SMALL_STATE(3940)] = 149944, + [SMALL_STATE(3941)] = 149991, + [SMALL_STATE(3942)] = 150038, + [SMALL_STATE(3943)] = 150085, + [SMALL_STATE(3944)] = 150132, + [SMALL_STATE(3945)] = 150179, + [SMALL_STATE(3946)] = 150222, + [SMALL_STATE(3947)] = 150311, + [SMALL_STATE(3948)] = 150358, + [SMALL_STATE(3949)] = 150405, + [SMALL_STATE(3950)] = 150452, + [SMALL_STATE(3951)] = 150499, + [SMALL_STATE(3952)] = 150542, + [SMALL_STATE(3953)] = 150585, + [SMALL_STATE(3954)] = 150628, + [SMALL_STATE(3955)] = 150671, + [SMALL_STATE(3956)] = 150714, + [SMALL_STATE(3957)] = 150757, + [SMALL_STATE(3958)] = 150804, + [SMALL_STATE(3959)] = 150874, + [SMALL_STATE(3960)] = 150942, + [SMALL_STATE(3961)] = 151012, + [SMALL_STATE(3962)] = 151082, + [SMALL_STATE(3963)] = 151154, + [SMALL_STATE(3964)] = 151226, + [SMALL_STATE(3965)] = 151300, + [SMALL_STATE(3966)] = 151360, + [SMALL_STATE(3967)] = 151422, + [SMALL_STATE(3968)] = 151476, + [SMALL_STATE(3969)] = 151532, + [SMALL_STATE(3970)] = 151594, + [SMALL_STATE(3971)] = 151658, + [SMALL_STATE(3972)] = 151722, + [SMALL_STATE(3973)] = 151788, + [SMALL_STATE(3974)] = 151854, + [SMALL_STATE(3975)] = 151922, + [SMALL_STATE(3976)] = 151966, + [SMALL_STATE(3977)] = 152008, + [SMALL_STATE(3978)] = 152054, + [SMALL_STATE(3979)] = 152110, + [SMALL_STATE(3980)] = 152160, + [SMALL_STATE(3981)] = 152218, + [SMALL_STATE(3982)] = 152264, + [SMALL_STATE(3983)] = 152332, + [SMALL_STATE(3984)] = 152402, + [SMALL_STATE(3985)] = 152474, + [SMALL_STATE(3986)] = 152534, + [SMALL_STATE(3987)] = 152588, + [SMALL_STATE(3988)] = 152650, + [SMALL_STATE(3989)] = 152714, + [SMALL_STATE(3990)] = 152780, + [SMALL_STATE(3991)] = 152822, + [SMALL_STATE(3992)] = 152880, + [SMALL_STATE(3993)] = 152932, + [SMALL_STATE(3994)] = 152992, + [SMALL_STATE(3995)] = 153040, + [SMALL_STATE(3996)] = 153082, + [SMALL_STATE(3997)] = 153130, + [SMALL_STATE(3998)] = 153200, + [SMALL_STATE(3999)] = 153242, + [SMALL_STATE(4000)] = 153314, + [SMALL_STATE(4001)] = 153388, + [SMALL_STATE(4002)] = 153450, + [SMALL_STATE(4003)] = 153498, + [SMALL_STATE(4004)] = 153540, + [SMALL_STATE(4005)] = 153596, + [SMALL_STATE(4006)] = 153660, + [SMALL_STATE(4007)] = 153726, + [SMALL_STATE(4008)] = 153794, + [SMALL_STATE(4009)] = 153836, + [SMALL_STATE(4010)] = 153880, + [SMALL_STATE(4011)] = 153936, + [SMALL_STATE(4012)] = 153994, + [SMALL_STATE(4013)] = 154044, + [SMALL_STATE(4014)] = 154096, + [SMALL_STATE(4015)] = 154154, + [SMALL_STATE(4016)] = 154214, + [SMALL_STATE(4017)] = 154260, + [SMALL_STATE(4018)] = 154308, + [SMALL_STATE(4019)] = 154376, + [SMALL_STATE(4020)] = 154446, + [SMALL_STATE(4021)] = 154488, + [SMALL_STATE(4022)] = 154534, + [SMALL_STATE(4023)] = 154582, + [SMALL_STATE(4024)] = 154654, + [SMALL_STATE(4025)] = 154728, + [SMALL_STATE(4026)] = 154788, + [SMALL_STATE(4027)] = 154830, + [SMALL_STATE(4028)] = 154876, + [SMALL_STATE(4029)] = 154938, + [SMALL_STATE(4030)] = 154984, + [SMALL_STATE(4031)] = 155038, + [SMALL_STATE(4032)] = 155084, + [SMALL_STATE(4033)] = 155140, + [SMALL_STATE(4034)] = 155186, + [SMALL_STATE(4035)] = 155232, + [SMALL_STATE(4036)] = 155294, + [SMALL_STATE(4037)] = 155358, + [SMALL_STATE(4038)] = 155400, + [SMALL_STATE(4039)] = 155464, + [SMALL_STATE(4040)] = 155530, + [SMALL_STATE(4041)] = 155596, + [SMALL_STATE(4042)] = 155664, + [SMALL_STATE(4043)] = 155722, + [SMALL_STATE(4044)] = 155774, + [SMALL_STATE(4045)] = 155822, + [SMALL_STATE(4046)] = 155870, + [SMALL_STATE(4047)] = 155918, + [SMALL_STATE(4048)] = 155966, + [SMALL_STATE(4049)] = 156026, + [SMALL_STATE(4050)] = 156074, + [SMALL_STATE(4051)] = 156144, + [SMALL_STATE(4052)] = 156216, + [SMALL_STATE(4053)] = 156260, + [SMALL_STATE(4054)] = 156334, + [SMALL_STATE(4055)] = 156396, + [SMALL_STATE(4056)] = 156452, + [SMALL_STATE(4057)] = 156516, + [SMALL_STATE(4058)] = 156560, + [SMALL_STATE(4059)] = 156626, + [SMALL_STATE(4060)] = 156694, + [SMALL_STATE(4061)] = 156742, + [SMALL_STATE(4062)] = 156786, + [SMALL_STATE(4063)] = 156830, + [SMALL_STATE(4064)] = 156886, + [SMALL_STATE(4065)] = 156936, + [SMALL_STATE(4066)] = 156994, + [SMALL_STATE(4067)] = 157040, + [SMALL_STATE(4068)] = 157108, + [SMALL_STATE(4069)] = 157178, + [SMALL_STATE(4070)] = 157250, + [SMALL_STATE(4071)] = 157310, + [SMALL_STATE(4072)] = 157364, + [SMALL_STATE(4073)] = 157426, + [SMALL_STATE(4074)] = 157490, + [SMALL_STATE(4075)] = 157556, + [SMALL_STATE(4076)] = 157612, + [SMALL_STATE(4077)] = 157670, + [SMALL_STATE(4078)] = 157720, + [SMALL_STATE(4079)] = 157772, + [SMALL_STATE(4080)] = 157830, + [SMALL_STATE(4081)] = 157890, + [SMALL_STATE(4082)] = 157962, + [SMALL_STATE(4083)] = 158003, + [SMALL_STATE(4084)] = 158044, + [SMALL_STATE(4085)] = 158085, + [SMALL_STATE(4086)] = 158134, + [SMALL_STATE(4087)] = 158175, + [SMALL_STATE(4088)] = 158220, + [SMALL_STATE(4089)] = 158293, + [SMALL_STATE(4090)] = 158376, + [SMALL_STATE(4091)] = 158417, + [SMALL_STATE(4092)] = 158458, + [SMALL_STATE(4093)] = 158499, + [SMALL_STATE(4094)] = 158540, + [SMALL_STATE(4095)] = 158581, + [SMALL_STATE(4096)] = 158622, + [SMALL_STATE(4097)] = 158679, + [SMALL_STATE(4098)] = 158720, + [SMALL_STATE(4099)] = 158793, + [SMALL_STATE(4100)] = 158876, + [SMALL_STATE(4101)] = 158931, + [SMALL_STATE(4102)] = 158972, + [SMALL_STATE(4103)] = 159031, + [SMALL_STATE(4104)] = 159072, + [SMALL_STATE(4105)] = 159113, + [SMALL_STATE(4106)] = 159196, + [SMALL_STATE(4107)] = 159279, + [SMALL_STATE(4108)] = 159320, + [SMALL_STATE(4109)] = 159361, + [SMALL_STATE(4110)] = 159402, + [SMALL_STATE(4111)] = 159485, + [SMALL_STATE(4112)] = 159530, + [SMALL_STATE(4113)] = 159613, + [SMALL_STATE(4114)] = 159654, + [SMALL_STATE(4115)] = 159737, + [SMALL_STATE(4116)] = 159820, + [SMALL_STATE(4117)] = 159861, + [SMALL_STATE(4118)] = 159902, + [SMALL_STATE(4119)] = 159943, + [SMALL_STATE(4120)] = 159984, + [SMALL_STATE(4121)] = 160067, + [SMALL_STATE(4122)] = 160108, + [SMALL_STATE(4123)] = 160191, + [SMALL_STATE(4124)] = 160252, + [SMALL_STATE(4125)] = 160335, + [SMALL_STATE(4126)] = 160376, + [SMALL_STATE(4127)] = 160417, + [SMALL_STATE(4128)] = 160458, + [SMALL_STATE(4129)] = 160499, + [SMALL_STATE(4130)] = 160540, + [SMALL_STATE(4131)] = 160591, + [SMALL_STATE(4132)] = 160658, + [SMALL_STATE(4133)] = 160741, + [SMALL_STATE(4134)] = 160824, + [SMALL_STATE(4135)] = 160865, + [SMALL_STATE(4136)] = 160906, + [SMALL_STATE(4137)] = 160953, + [SMALL_STATE(4138)] = 160994, + [SMALL_STATE(4139)] = 161035, + [SMALL_STATE(4140)] = 161088, + [SMALL_STATE(4141)] = 161129, + [SMALL_STATE(4142)] = 161212, + [SMALL_STATE(4143)] = 161295, + [SMALL_STATE(4144)] = 161378, + [SMALL_STATE(4145)] = 161421, + [SMALL_STATE(4146)] = 161464, + [SMALL_STATE(4147)] = 161505, + [SMALL_STATE(4148)] = 161568, + [SMALL_STATE(4149)] = 161651, + [SMALL_STATE(4150)] = 161734, + [SMALL_STATE(4151)] = 161775, + [SMALL_STATE(4152)] = 161858, + [SMALL_STATE(4153)] = 161941, + [SMALL_STATE(4154)] = 162024, + [SMALL_STATE(4155)] = 162107, + [SMALL_STATE(4156)] = 162190, + [SMALL_STATE(4157)] = 162231, + [SMALL_STATE(4158)] = 162314, + [SMALL_STATE(4159)] = 162387, + [SMALL_STATE(4160)] = 162460, + [SMALL_STATE(4161)] = 162501, + [SMALL_STATE(4162)] = 162566, + [SMALL_STATE(4163)] = 162607, + [SMALL_STATE(4164)] = 162648, + [SMALL_STATE(4165)] = 162721, + [SMALL_STATE(4166)] = 162794, + [SMALL_STATE(4167)] = 162835, + [SMALL_STATE(4168)] = 162880, + [SMALL_STATE(4169)] = 162921, + [SMALL_STATE(4170)] = 163004, + [SMALL_STATE(4171)] = 163045, + [SMALL_STATE(4172)] = 163128, + [SMALL_STATE(4173)] = 163184, + [SMALL_STATE(4174)] = 163230, + [SMALL_STATE(4175)] = 163274, + [SMALL_STATE(4176)] = 163316, + [SMALL_STATE(4177)] = 163380, + [SMALL_STATE(4178)] = 163424, + [SMALL_STATE(4179)] = 163490, + [SMALL_STATE(4180)] = 163548, + [SMALL_STATE(4181)] = 163608, + [SMALL_STATE(4182)] = 163670, + [SMALL_STATE(4183)] = 163738, + [SMALL_STATE(4184)] = 163780, + [SMALL_STATE(4185)] = 163832, + [SMALL_STATE(4186)] = 163878, + [SMALL_STATE(4187)] = 163932, + [SMALL_STATE(4188)] = 163974, + [SMALL_STATE(4189)] = 164038, + [SMALL_STATE(4190)] = 164104, + [SMALL_STATE(4191)] = 164172, + [SMALL_STATE(4192)] = 164226, + [SMALL_STATE(4193)] = 164284, + [SMALL_STATE(4194)] = 164344, + [SMALL_STATE(4195)] = 164406, + [SMALL_STATE(4196)] = 164448, + [SMALL_STATE(4197)] = 164490, + [SMALL_STATE(4198)] = 164532, + [SMALL_STATE(4199)] = 164574, + [SMALL_STATE(4200)] = 164630, + [SMALL_STATE(4201)] = 164672, + [SMALL_STATE(4202)] = 164722, + [SMALL_STATE(4203)] = 164764, + [SMALL_STATE(4204)] = 164806, + [SMALL_STATE(4205)] = 164858, + [SMALL_STATE(4206)] = 164902, + [SMALL_STATE(4207)] = 164946, + [SMALL_STATE(4208)] = 164996, + [SMALL_STATE(4209)] = 165073, + [SMALL_STATE(4210)] = 165140, + [SMALL_STATE(4211)] = 165217, + [SMALL_STATE(4212)] = 165284, + [SMALL_STATE(4213)] = 165351, + [SMALL_STATE(4214)] = 165418, + [SMALL_STATE(4215)] = 165495, + [SMALL_STATE(4216)] = 165572, + [SMALL_STATE(4217)] = 165639, + [SMALL_STATE(4218)] = 165716, + [SMALL_STATE(4219)] = 165783, + [SMALL_STATE(4220)] = 165860, + [SMALL_STATE(4221)] = 165937, + [SMALL_STATE(4222)] = 166014, + [SMALL_STATE(4223)] = 166081, + [SMALL_STATE(4224)] = 166158, + [SMALL_STATE(4225)] = 166235, + [SMALL_STATE(4226)] = 166280, + [SMALL_STATE(4227)] = 166357, + [SMALL_STATE(4228)] = 166434, + [SMALL_STATE(4229)] = 166478, + [SMALL_STATE(4230)] = 166532, + [SMALL_STATE(4231)] = 166570, + [SMALL_STATE(4232)] = 166621, + [SMALL_STATE(4233)] = 166674, + [SMALL_STATE(4234)] = 166725, + [SMALL_STATE(4235)] = 166776, + [SMALL_STATE(4236)] = 166824, + [SMALL_STATE(4237)] = 166880, + [SMALL_STATE(4238)] = 166928, + [SMALL_STATE(4239)] = 166976, + [SMALL_STATE(4240)] = 167024, + [SMALL_STATE(4241)] = 167074, + [SMALL_STATE(4242)] = 167114, + [SMALL_STATE(4243)] = 167164, + [SMALL_STATE(4244)] = 167204, + [SMALL_STATE(4245)] = 167254, + [SMALL_STATE(4246)] = 167301, + [SMALL_STATE(4247)] = 167340, + [SMALL_STATE(4248)] = 167377, + [SMALL_STATE(4249)] = 167432, + [SMALL_STATE(4250)] = 167485, + [SMALL_STATE(4251)] = 167522, + [SMALL_STATE(4252)] = 167569, + [SMALL_STATE(4253)] = 167616, + [SMALL_STATE(4254)] = 167663, + [SMALL_STATE(4255)] = 167710, + [SMALL_STATE(4256)] = 167763, + [SMALL_STATE(4257)] = 167802, + [SMALL_STATE(4258)] = 167855, + [SMALL_STATE(4259)] = 167889, + [SMALL_STATE(4260)] = 167927, + [SMALL_STATE(4261)] = 167965, + [SMALL_STATE(4262)] = 168015, + [SMALL_STATE(4263)] = 168067, + [SMALL_STATE(4264)] = 168117, + [SMALL_STATE(4265)] = 168169, + [SMALL_STATE(4266)] = 168203, + [SMALL_STATE(4267)] = 168253, + [SMALL_STATE(4268)] = 168305, + [SMALL_STATE(4269)] = 168339, + [SMALL_STATE(4270)] = 168377, + [SMALL_STATE(4271)] = 168427, + [SMALL_STATE(4272)] = 168469, + [SMALL_STATE(4273)] = 168503, + [SMALL_STATE(4274)] = 168539, + [SMALL_STATE(4275)] = 168585, + [SMALL_STATE(4276)] = 168627, + [SMALL_STATE(4277)] = 168669, + [SMALL_STATE(4278)] = 168707, + [SMALL_STATE(4279)] = 168743, + [SMALL_STATE(4280)] = 168776, + [SMALL_STATE(4281)] = 168813, + [SMALL_STATE(4282)] = 168848, + [SMALL_STATE(4283)] = 168889, + [SMALL_STATE(4284)] = 168936, + [SMALL_STATE(4285)] = 168977, + [SMALL_STATE(4286)] = 169026, + [SMALL_STATE(4287)] = 169061, + [SMALL_STATE(4288)] = 169098, + [SMALL_STATE(4289)] = 169147, + [SMALL_STATE(4290)] = 169184, + [SMALL_STATE(4291)] = 169233, + [SMALL_STATE(4292)] = 169270, + [SMALL_STATE(4293)] = 169319, + [SMALL_STATE(4294)] = 169352, + [SMALL_STATE(4295)] = 169385, + [SMALL_STATE(4296)] = 169420, + [SMALL_STATE(4297)] = 169455, + [SMALL_STATE(4298)] = 169496, + [SMALL_STATE(4299)] = 169535, + [SMALL_STATE(4300)] = 169572, + [SMALL_STATE(4301)] = 169607, + [SMALL_STATE(4302)] = 169640, + [SMALL_STATE(4303)] = 169693, + [SMALL_STATE(4304)] = 169725, + [SMALL_STATE(4305)] = 169757, + [SMALL_STATE(4306)] = 169793, + [SMALL_STATE(4307)] = 169833, + [SMALL_STATE(4308)] = 169865, + [SMALL_STATE(4309)] = 169899, + [SMALL_STATE(4310)] = 169937, + [SMALL_STATE(4311)] = 169973, + [SMALL_STATE(4312)] = 170005, + [SMALL_STATE(4313)] = 170041, + [SMALL_STATE(4314)] = 170073, + [SMALL_STATE(4315)] = 170113, + [SMALL_STATE(4316)] = 170159, + [SMALL_STATE(4317)] = 170191, + [SMALL_STATE(4318)] = 170229, + [SMALL_STATE(4319)] = 170265, + [SMALL_STATE(4320)] = 170315, + [SMALL_STATE(4321)] = 170347, + [SMALL_STATE(4322)] = 170397, + [SMALL_STATE(4323)] = 170437, + [SMALL_STATE(4324)] = 170475, + [SMALL_STATE(4325)] = 170513, + [SMALL_STATE(4326)] = 170549, + [SMALL_STATE(4327)] = 170581, + [SMALL_STATE(4328)] = 170615, + [SMALL_STATE(4329)] = 170647, + [SMALL_STATE(4330)] = 170681, + [SMALL_STATE(4331)] = 170715, + [SMALL_STATE(4332)] = 170765, + [SMALL_STATE(4333)] = 170812, + [SMALL_STATE(4334)] = 170847, + [SMALL_STATE(4335)] = 170894, + [SMALL_STATE(4336)] = 170925, + [SMALL_STATE(4337)] = 170964, + [SMALL_STATE(4338)] = 170999, + [SMALL_STATE(4339)] = 171046, + [SMALL_STATE(4340)] = 171079, + [SMALL_STATE(4341)] = 171114, + [SMALL_STATE(4342)] = 171145, + [SMALL_STATE(4343)] = 171176, + [SMALL_STATE(4344)] = 171213, + [SMALL_STATE(4345)] = 171244, + [SMALL_STATE(4346)] = 171277, + [SMALL_STATE(4347)] = 171310, + [SMALL_STATE(4348)] = 171347, + [SMALL_STATE(4349)] = 171386, + [SMALL_STATE(4350)] = 171427, + [SMALL_STATE(4351)] = 171458, + [SMALL_STATE(4352)] = 171505, + [SMALL_STATE(4353)] = 171540, + [SMALL_STATE(4354)] = 171571, + [SMALL_STATE(4355)] = 171610, + [SMALL_STATE(4356)] = 171641, + [SMALL_STATE(4357)] = 171678, + [SMALL_STATE(4358)] = 171723, + [SMALL_STATE(4359)] = 171756, + [SMALL_STATE(4360)] = 171791, + [SMALL_STATE(4361)] = 171822, + [SMALL_STATE(4362)] = 171859, + [SMALL_STATE(4363)] = 171891, + [SMALL_STATE(4364)] = 171921, + [SMALL_STATE(4365)] = 171951, + [SMALL_STATE(4366)] = 171983, + [SMALL_STATE(4367)] = 172015, + [SMALL_STATE(4368)] = 172045, + [SMALL_STATE(4369)] = 172075, + [SMALL_STATE(4370)] = 172107, + [SMALL_STATE(4371)] = 172137, + [SMALL_STATE(4372)] = 172169, + [SMALL_STATE(4373)] = 172201, + [SMALL_STATE(4374)] = 172231, + [SMALL_STATE(4375)] = 172281, + [SMALL_STATE(4376)] = 172313, + [SMALL_STATE(4377)] = 172347, + [SMALL_STATE(4378)] = 172381, + [SMALL_STATE(4379)] = 172419, + [SMALL_STATE(4380)] = 172453, + [SMALL_STATE(4381)] = 172491, + [SMALL_STATE(4382)] = 172523, + [SMALL_STATE(4383)] = 172553, + [SMALL_STATE(4384)] = 172591, + [SMALL_STATE(4385)] = 172629, + [SMALL_STATE(4386)] = 172665, + [SMALL_STATE(4387)] = 172699, + [SMALL_STATE(4388)] = 172731, + [SMALL_STATE(4389)] = 172771, + [SMALL_STATE(4390)] = 172803, + [SMALL_STATE(4391)] = 172833, + [SMALL_STATE(4392)] = 172865, + [SMALL_STATE(4393)] = 172897, + [SMALL_STATE(4394)] = 172929, + [SMALL_STATE(4395)] = 172963, + [SMALL_STATE(4396)] = 172993, + [SMALL_STATE(4397)] = 173023, + [SMALL_STATE(4398)] = 173053, + [SMALL_STATE(4399)] = 173085, + [SMALL_STATE(4400)] = 173123, + [SMALL_STATE(4401)] = 173153, + [SMALL_STATE(4402)] = 173184, + [SMALL_STATE(4403)] = 173213, + [SMALL_STATE(4404)] = 173244, + [SMALL_STATE(4405)] = 173273, + [SMALL_STATE(4406)] = 173302, + [SMALL_STATE(4407)] = 173339, + [SMALL_STATE(4408)] = 173376, + [SMALL_STATE(4409)] = 173413, + [SMALL_STATE(4410)] = 173444, + [SMALL_STATE(4411)] = 173481, + [SMALL_STATE(4412)] = 173518, + [SMALL_STATE(4413)] = 173555, + [SMALL_STATE(4414)] = 173584, + [SMALL_STATE(4415)] = 173615, + [SMALL_STATE(4416)] = 173646, + [SMALL_STATE(4417)] = 173675, + [SMALL_STATE(4418)] = 173712, + [SMALL_STATE(4419)] = 173749, + [SMALL_STATE(4420)] = 173786, + [SMALL_STATE(4421)] = 173817, + [SMALL_STATE(4422)] = 173848, + [SMALL_STATE(4423)] = 173877, + [SMALL_STATE(4424)] = 173914, + [SMALL_STATE(4425)] = 173945, + [SMALL_STATE(4426)] = 173982, + [SMALL_STATE(4427)] = 174011, + [SMALL_STATE(4428)] = 174048, + [SMALL_STATE(4429)] = 174085, + [SMALL_STATE(4430)] = 174122, + [SMALL_STATE(4431)] = 174155, + [SMALL_STATE(4432)] = 174192, + [SMALL_STATE(4433)] = 174229, + [SMALL_STATE(4434)] = 174258, + [SMALL_STATE(4435)] = 174287, + [SMALL_STATE(4436)] = 174324, + [SMALL_STATE(4437)] = 174361, + [SMALL_STATE(4438)] = 174396, + [SMALL_STATE(4439)] = 174433, + [SMALL_STATE(4440)] = 174462, + [SMALL_STATE(4441)] = 174493, + [SMALL_STATE(4442)] = 174530, + [SMALL_STATE(4443)] = 174567, + [SMALL_STATE(4444)] = 174596, + [SMALL_STATE(4445)] = 174633, + [SMALL_STATE(4446)] = 174664, + [SMALL_STATE(4447)] = 174693, + [SMALL_STATE(4448)] = 174722, + [SMALL_STATE(4449)] = 174751, + [SMALL_STATE(4450)] = 174780, + [SMALL_STATE(4451)] = 174817, + [SMALL_STATE(4452)] = 174850, + [SMALL_STATE(4453)] = 174881, + [SMALL_STATE(4454)] = 174914, + [SMALL_STATE(4455)] = 174947, + [SMALL_STATE(4456)] = 174976, + [SMALL_STATE(4457)] = 175005, + [SMALL_STATE(4458)] = 175034, + [SMALL_STATE(4459)] = 175071, + [SMALL_STATE(4460)] = 175100, + [SMALL_STATE(4461)] = 175131, + [SMALL_STATE(4462)] = 175160, + [SMALL_STATE(4463)] = 175191, + [SMALL_STATE(4464)] = 175228, + [SMALL_STATE(4465)] = 175259, + [SMALL_STATE(4466)] = 175290, + [SMALL_STATE(4467)] = 175327, + [SMALL_STATE(4468)] = 175364, + [SMALL_STATE(4469)] = 175395, + [SMALL_STATE(4470)] = 175432, + [SMALL_STATE(4471)] = 175463, + [SMALL_STATE(4472)] = 175496, + [SMALL_STATE(4473)] = 175527, + [SMALL_STATE(4474)] = 175556, + [SMALL_STATE(4475)] = 175585, + [SMALL_STATE(4476)] = 175616, + [SMALL_STATE(4477)] = 175647, + [SMALL_STATE(4478)] = 175678, + [SMALL_STATE(4479)] = 175715, + [SMALL_STATE(4480)] = 175752, + [SMALL_STATE(4481)] = 175789, + [SMALL_STATE(4482)] = 175822, + [SMALL_STATE(4483)] = 175855, + [SMALL_STATE(4484)] = 175886, + [SMALL_STATE(4485)] = 175915, + [SMALL_STATE(4486)] = 175952, + [SMALL_STATE(4487)] = 175980, + [SMALL_STATE(4488)] = 176012, + [SMALL_STATE(4489)] = 176048, + [SMALL_STATE(4490)] = 176092, + [SMALL_STATE(4491)] = 176122, + [SMALL_STATE(4492)] = 176166, + [SMALL_STATE(4493)] = 176202, + [SMALL_STATE(4494)] = 176232, + [SMALL_STATE(4495)] = 176268, + [SMALL_STATE(4496)] = 176304, + [SMALL_STATE(4497)] = 176340, + [SMALL_STATE(4498)] = 176370, + [SMALL_STATE(4499)] = 176400, + [SMALL_STATE(4500)] = 176436, + [SMALL_STATE(4501)] = 176464, + [SMALL_STATE(4502)] = 176494, + [SMALL_STATE(4503)] = 176522, + [SMALL_STATE(4504)] = 176550, + [SMALL_STATE(4505)] = 176586, + [SMALL_STATE(4506)] = 176622, + [SMALL_STATE(4507)] = 176652, + [SMALL_STATE(4508)] = 176690, + [SMALL_STATE(4509)] = 176738, + [SMALL_STATE(4510)] = 176774, + [SMALL_STATE(4511)] = 176806, + [SMALL_STATE(4512)] = 176834, + [SMALL_STATE(4513)] = 176870, + [SMALL_STATE(4514)] = 176906, + [SMALL_STATE(4515)] = 176934, + [SMALL_STATE(4516)] = 176964, + [SMALL_STATE(4517)] = 176996, + [SMALL_STATE(4518)] = 177030, + [SMALL_STATE(4519)] = 177058, + [SMALL_STATE(4520)] = 177094, + [SMALL_STATE(4521)] = 177126, + [SMALL_STATE(4522)] = 177154, + [SMALL_STATE(4523)] = 177190, + [SMALL_STATE(4524)] = 177218, + [SMALL_STATE(4525)] = 177262, + [SMALL_STATE(4526)] = 177306, + [SMALL_STATE(4527)] = 177342, + [SMALL_STATE(4528)] = 177370, + [SMALL_STATE(4529)] = 177402, + [SMALL_STATE(4530)] = 177438, + [SMALL_STATE(4531)] = 177466, + [SMALL_STATE(4532)] = 177502, + [SMALL_STATE(4533)] = 177534, + [SMALL_STATE(4534)] = 177570, + [SMALL_STATE(4535)] = 177598, + [SMALL_STATE(4536)] = 177634, + [SMALL_STATE(4537)] = 177670, + [SMALL_STATE(4538)] = 177698, + [SMALL_STATE(4539)] = 177746, + [SMALL_STATE(4540)] = 177782, + [SMALL_STATE(4541)] = 177826, + [SMALL_STATE(4542)] = 177856, + [SMALL_STATE(4543)] = 177892, + [SMALL_STATE(4544)] = 177920, + [SMALL_STATE(4545)] = 177956, + [SMALL_STATE(4546)] = 177992, + [SMALL_STATE(4547)] = 178020, + [SMALL_STATE(4548)] = 178052, + [SMALL_STATE(4549)] = 178084, + [SMALL_STATE(4550)] = 178120, + [SMALL_STATE(4551)] = 178150, + [SMALL_STATE(4552)] = 178182, + [SMALL_STATE(4553)] = 178218, + [SMALL_STATE(4554)] = 178250, + [SMALL_STATE(4555)] = 178286, + [SMALL_STATE(4556)] = 178318, + [SMALL_STATE(4557)] = 178346, + [SMALL_STATE(4558)] = 178382, + [SMALL_STATE(4559)] = 178430, + [SMALL_STATE(4560)] = 178466, + [SMALL_STATE(4561)] = 178496, + [SMALL_STATE(4562)] = 178524, + [SMALL_STATE(4563)] = 178560, + [SMALL_STATE(4564)] = 178608, + [SMALL_STATE(4565)] = 178638, + [SMALL_STATE(4566)] = 178674, + [SMALL_STATE(4567)] = 178710, + [SMALL_STATE(4568)] = 178738, + [SMALL_STATE(4569)] = 178768, + [SMALL_STATE(4570)] = 178796, + [SMALL_STATE(4571)] = 178824, + [SMALL_STATE(4572)] = 178852, + [SMALL_STATE(4573)] = 178880, + [SMALL_STATE(4574)] = 178918, + [SMALL_STATE(4575)] = 178950, + [SMALL_STATE(4576)] = 178986, + [SMALL_STATE(4577)] = 179018, + [SMALL_STATE(4578)] = 179049, + [SMALL_STATE(4579)] = 179084, + [SMALL_STATE(4580)] = 179111, + [SMALL_STATE(4581)] = 179138, + [SMALL_STATE(4582)] = 179165, + [SMALL_STATE(4583)] = 179196, + [SMALL_STATE(4584)] = 179227, + [SMALL_STATE(4585)] = 179254, + [SMALL_STATE(4586)] = 179281, + [SMALL_STATE(4587)] = 179312, + [SMALL_STATE(4588)] = 179343, + [SMALL_STATE(4589)] = 179374, + [SMALL_STATE(4590)] = 179405, + [SMALL_STATE(4591)] = 179438, + [SMALL_STATE(4592)] = 179471, + [SMALL_STATE(4593)] = 179508, + [SMALL_STATE(4594)] = 179543, + [SMALL_STATE(4595)] = 179570, + [SMALL_STATE(4596)] = 179597, + [SMALL_STATE(4597)] = 179628, + [SMALL_STATE(4598)] = 179659, + [SMALL_STATE(4599)] = 179694, + [SMALL_STATE(4600)] = 179727, + [SMALL_STATE(4601)] = 179760, + [SMALL_STATE(4602)] = 179793, + [SMALL_STATE(4603)] = 179826, + [SMALL_STATE(4604)] = 179861, + [SMALL_STATE(4605)] = 179896, + [SMALL_STATE(4606)] = 179931, + [SMALL_STATE(4607)] = 179962, + [SMALL_STATE(4608)] = 179997, + [SMALL_STATE(4609)] = 180024, + [SMALL_STATE(4610)] = 180059, + [SMALL_STATE(4611)] = 180094, + [SMALL_STATE(4612)] = 180127, + [SMALL_STATE(4613)] = 180162, + [SMALL_STATE(4614)] = 180193, + [SMALL_STATE(4615)] = 180228, + [SMALL_STATE(4616)] = 180263, + [SMALL_STATE(4617)] = 180294, + [SMALL_STATE(4618)] = 180327, + [SMALL_STATE(4619)] = 180362, + [SMALL_STATE(4620)] = 180397, + [SMALL_STATE(4621)] = 180432, + [SMALL_STATE(4622)] = 180467, + [SMALL_STATE(4623)] = 180502, + [SMALL_STATE(4624)] = 180537, + [SMALL_STATE(4625)] = 180572, + [SMALL_STATE(4626)] = 180603, + [SMALL_STATE(4627)] = 180634, + [SMALL_STATE(4628)] = 180665, + [SMALL_STATE(4629)] = 180700, + [SMALL_STATE(4630)] = 180735, + [SMALL_STATE(4631)] = 180770, + [SMALL_STATE(4632)] = 180805, + [SMALL_STATE(4633)] = 180840, + [SMALL_STATE(4634)] = 180875, + [SMALL_STATE(4635)] = 180902, + [SMALL_STATE(4636)] = 180933, + [SMALL_STATE(4637)] = 180964, + [SMALL_STATE(4638)] = 180995, + [SMALL_STATE(4639)] = 181020, + [SMALL_STATE(4640)] = 181051, + [SMALL_STATE(4641)] = 181078, + [SMALL_STATE(4642)] = 181105, + [SMALL_STATE(4643)] = 181140, + [SMALL_STATE(4644)] = 181167, + [SMALL_STATE(4645)] = 181194, + [SMALL_STATE(4646)] = 181221, + [SMALL_STATE(4647)] = 181252, + [SMALL_STATE(4648)] = 181279, + [SMALL_STATE(4649)] = 181310, + [SMALL_STATE(4650)] = 181341, + [SMALL_STATE(4651)] = 181372, + [SMALL_STATE(4652)] = 181399, + [SMALL_STATE(4653)] = 181430, + [SMALL_STATE(4654)] = 181461, + [SMALL_STATE(4655)] = 181488, + [SMALL_STATE(4656)] = 181515, + [SMALL_STATE(4657)] = 181546, + [SMALL_STATE(4658)] = 181577, + [SMALL_STATE(4659)] = 181604, + [SMALL_STATE(4660)] = 181635, + [SMALL_STATE(4661)] = 181668, + [SMALL_STATE(4662)] = 181695, + [SMALL_STATE(4663)] = 181722, + [SMALL_STATE(4664)] = 181749, + [SMALL_STATE(4665)] = 181780, + [SMALL_STATE(4666)] = 181815, + [SMALL_STATE(4667)] = 181846, + [SMALL_STATE(4668)] = 181877, + [SMALL_STATE(4669)] = 181904, + [SMALL_STATE(4670)] = 181931, + [SMALL_STATE(4671)] = 181960, + [SMALL_STATE(4672)] = 181989, + [SMALL_STATE(4673)] = 182020, + [SMALL_STATE(4674)] = 182051, + [SMALL_STATE(4675)] = 182078, + [SMALL_STATE(4676)] = 182105, + [SMALL_STATE(4677)] = 182132, + [SMALL_STATE(4678)] = 182161, + [SMALL_STATE(4679)] = 182190, + [SMALL_STATE(4680)] = 182221, + [SMALL_STATE(4681)] = 182252, + [SMALL_STATE(4682)] = 182283, + [SMALL_STATE(4683)] = 182314, + [SMALL_STATE(4684)] = 182347, + [SMALL_STATE(4685)] = 182380, + [SMALL_STATE(4686)] = 182407, + [SMALL_STATE(4687)] = 182434, + [SMALL_STATE(4688)] = 182463, + [SMALL_STATE(4689)] = 182492, + [SMALL_STATE(4690)] = 182523, + [SMALL_STATE(4691)] = 182554, + [SMALL_STATE(4692)] = 182581, + [SMALL_STATE(4693)] = 182608, + [SMALL_STATE(4694)] = 182635, + [SMALL_STATE(4695)] = 182662, + [SMALL_STATE(4696)] = 182689, + [SMALL_STATE(4697)] = 182718, + [SMALL_STATE(4698)] = 182747, + [SMALL_STATE(4699)] = 182778, + [SMALL_STATE(4700)] = 182809, + [SMALL_STATE(4701)] = 182840, + [SMALL_STATE(4702)] = 182871, + [SMALL_STATE(4703)] = 182902, + [SMALL_STATE(4704)] = 182935, + [SMALL_STATE(4705)] = 182968, + [SMALL_STATE(4706)] = 182997, + [SMALL_STATE(4707)] = 183026, + [SMALL_STATE(4708)] = 183057, + [SMALL_STATE(4709)] = 183082, + [SMALL_STATE(4710)] = 183109, + [SMALL_STATE(4711)] = 183136, + [SMALL_STATE(4712)] = 183163, + [SMALL_STATE(4713)] = 183190, + [SMALL_STATE(4714)] = 183217, + [SMALL_STATE(4715)] = 183246, + [SMALL_STATE(4716)] = 183275, + [SMALL_STATE(4717)] = 183306, + [SMALL_STATE(4718)] = 183337, + [SMALL_STATE(4719)] = 183368, + [SMALL_STATE(4720)] = 183393, + [SMALL_STATE(4721)] = 183424, + [SMALL_STATE(4722)] = 183449, + [SMALL_STATE(4723)] = 183478, + [SMALL_STATE(4724)] = 183511, + [SMALL_STATE(4725)] = 183536, + [SMALL_STATE(4726)] = 183561, + [SMALL_STATE(4727)] = 183594, + [SMALL_STATE(4728)] = 183619, + [SMALL_STATE(4729)] = 183646, + [SMALL_STATE(4730)] = 183671, + [SMALL_STATE(4731)] = 183696, + [SMALL_STATE(4732)] = 183723, + [SMALL_STATE(4733)] = 183750, + [SMALL_STATE(4734)] = 183779, + [SMALL_STATE(4735)] = 183808, + [SMALL_STATE(4736)] = 183833, + [SMALL_STATE(4737)] = 183858, + [SMALL_STATE(4738)] = 183885, + [SMALL_STATE(4739)] = 183912, + [SMALL_STATE(4740)] = 183943, + [SMALL_STATE(4741)] = 183970, + [SMALL_STATE(4742)] = 184001, + [SMALL_STATE(4743)] = 184028, + [SMALL_STATE(4744)] = 184057, + [SMALL_STATE(4745)] = 184086, + [SMALL_STATE(4746)] = 184117, + [SMALL_STATE(4747)] = 184150, + [SMALL_STATE(4748)] = 184183, + [SMALL_STATE(4749)] = 184210, + [SMALL_STATE(4750)] = 184237, + [SMALL_STATE(4751)] = 184264, + [SMALL_STATE(4752)] = 184293, + [SMALL_STATE(4753)] = 184322, + [SMALL_STATE(4754)] = 184349, + [SMALL_STATE(4755)] = 184378, + [SMALL_STATE(4756)] = 184407, + [SMALL_STATE(4757)] = 184438, + [SMALL_STATE(4758)] = 184465, + [SMALL_STATE(4759)] = 184496, + [SMALL_STATE(4760)] = 184523, + [SMALL_STATE(4761)] = 184550, + [SMALL_STATE(4762)] = 184577, + [SMALL_STATE(4763)] = 184606, + [SMALL_STATE(4764)] = 184635, + [SMALL_STATE(4765)] = 184666, + [SMALL_STATE(4766)] = 184697, + [SMALL_STATE(4767)] = 184728, + [SMALL_STATE(4768)] = 184759, + [SMALL_STATE(4769)] = 184792, + [SMALL_STATE(4770)] = 184825, + [SMALL_STATE(4771)] = 184852, + [SMALL_STATE(4772)] = 184879, + [SMALL_STATE(4773)] = 184906, + [SMALL_STATE(4774)] = 184935, + [SMALL_STATE(4775)] = 184966, + [SMALL_STATE(4776)] = 184997, + [SMALL_STATE(4777)] = 185030, + [SMALL_STATE(4778)] = 185063, + [SMALL_STATE(4779)] = 185094, + [SMALL_STATE(4780)] = 185129, + [SMALL_STATE(4781)] = 185164, + [SMALL_STATE(4782)] = 185199, + [SMALL_STATE(4783)] = 185226, + [SMALL_STATE(4784)] = 185252, + [SMALL_STATE(4785)] = 185278, + [SMALL_STATE(4786)] = 185304, + [SMALL_STATE(4787)] = 185334, + [SMALL_STATE(4788)] = 185362, + [SMALL_STATE(4789)] = 185386, + [SMALL_STATE(4790)] = 185416, + [SMALL_STATE(4791)] = 185442, + [SMALL_STATE(4792)] = 185468, + [SMALL_STATE(4793)] = 185498, + [SMALL_STATE(4794)] = 185526, + [SMALL_STATE(4795)] = 185578, + [SMALL_STATE(4796)] = 185630, + [SMALL_STATE(4797)] = 185658, + [SMALL_STATE(4798)] = 185686, + [SMALL_STATE(4799)] = 185716, + [SMALL_STATE(4800)] = 185768, + [SMALL_STATE(4801)] = 185820, + [SMALL_STATE(4802)] = 185846, + [SMALL_STATE(4803)] = 185898, + [SMALL_STATE(4804)] = 185950, + [SMALL_STATE(4805)] = 185976, + [SMALL_STATE(4806)] = 186006, + [SMALL_STATE(4807)] = 186030, + [SMALL_STATE(4808)] = 186076, + [SMALL_STATE(4809)] = 186100, + [SMALL_STATE(4810)] = 186124, + [SMALL_STATE(4811)] = 186154, + [SMALL_STATE(4812)] = 186180, + [SMALL_STATE(4813)] = 186210, + [SMALL_STATE(4814)] = 186238, + [SMALL_STATE(4815)] = 186268, + [SMALL_STATE(4816)] = 186294, + [SMALL_STATE(4817)] = 186322, + [SMALL_STATE(4818)] = 186350, + [SMALL_STATE(4819)] = 186376, + [SMALL_STATE(4820)] = 186404, + [SMALL_STATE(4821)] = 186430, + [SMALL_STATE(4822)] = 186458, + [SMALL_STATE(4823)] = 186486, + [SMALL_STATE(4824)] = 186516, + [SMALL_STATE(4825)] = 186546, + [SMALL_STATE(4826)] = 186576, + [SMALL_STATE(4827)] = 186606, + [SMALL_STATE(4828)] = 186636, + [SMALL_STATE(4829)] = 186668, + [SMALL_STATE(4830)] = 186692, + [SMALL_STATE(4831)] = 186716, + [SMALL_STATE(4832)] = 186746, + [SMALL_STATE(4833)] = 186772, + [SMALL_STATE(4834)] = 186798, + [SMALL_STATE(4835)] = 186828, + [SMALL_STATE(4836)] = 186858, + [SMALL_STATE(4837)] = 186882, + [SMALL_STATE(4838)] = 186906, + [SMALL_STATE(4839)] = 186932, + [SMALL_STATE(4840)] = 186956, + [SMALL_STATE(4841)] = 186984, + [SMALL_STATE(4842)] = 187010, + [SMALL_STATE(4843)] = 187034, + [SMALL_STATE(4844)] = 187086, + [SMALL_STATE(4845)] = 187112, + [SMALL_STATE(4846)] = 187142, + [SMALL_STATE(4847)] = 187170, + [SMALL_STATE(4848)] = 187196, + [SMALL_STATE(4849)] = 187226, + [SMALL_STATE(4850)] = 187256, + [SMALL_STATE(4851)] = 187288, + [SMALL_STATE(4852)] = 187316, + [SMALL_STATE(4853)] = 187346, + [SMALL_STATE(4854)] = 187376, + [SMALL_STATE(4855)] = 187406, + [SMALL_STATE(4856)] = 187436, + [SMALL_STATE(4857)] = 187488, + [SMALL_STATE(4858)] = 187518, + [SMALL_STATE(4859)] = 187548, + [SMALL_STATE(4860)] = 187572, + [SMALL_STATE(4861)] = 187600, + [SMALL_STATE(4862)] = 187630, + [SMALL_STATE(4863)] = 187660, + [SMALL_STATE(4864)] = 187684, + [SMALL_STATE(4865)] = 187714, + [SMALL_STATE(4866)] = 187744, + [SMALL_STATE(4867)] = 187774, + [SMALL_STATE(4868)] = 187800, + [SMALL_STATE(4869)] = 187832, + [SMALL_STATE(4870)] = 187858, + [SMALL_STATE(4871)] = 187884, + [SMALL_STATE(4872)] = 187936, + [SMALL_STATE(4873)] = 187962, + [SMALL_STATE(4874)] = 187992, + [SMALL_STATE(4875)] = 188018, + [SMALL_STATE(4876)] = 188048, + [SMALL_STATE(4877)] = 188100, + [SMALL_STATE(4878)] = 188128, + [SMALL_STATE(4879)] = 188156, + [SMALL_STATE(4880)] = 188180, + [SMALL_STATE(4881)] = 188206, + [SMALL_STATE(4882)] = 188236, + [SMALL_STATE(4883)] = 188262, + [SMALL_STATE(4884)] = 188290, + [SMALL_STATE(4885)] = 188318, + [SMALL_STATE(4886)] = 188343, + [SMALL_STATE(4887)] = 188368, + [SMALL_STATE(4888)] = 188393, + [SMALL_STATE(4889)] = 188416, + [SMALL_STATE(4890)] = 188441, + [SMALL_STATE(4891)] = 188466, + [SMALL_STATE(4892)] = 188491, + [SMALL_STATE(4893)] = 188520, + [SMALL_STATE(4894)] = 188545, + [SMALL_STATE(4895)] = 188574, + [SMALL_STATE(4896)] = 188603, + [SMALL_STATE(4897)] = 188628, + [SMALL_STATE(4898)] = 188653, + [SMALL_STATE(4899)] = 188682, + [SMALL_STATE(4900)] = 188707, + [SMALL_STATE(4901)] = 188730, + [SMALL_STATE(4902)] = 188755, + [SMALL_STATE(4903)] = 188780, + [SMALL_STATE(4904)] = 188805, + [SMALL_STATE(4905)] = 188834, + [SMALL_STATE(4906)] = 188863, + [SMALL_STATE(4907)] = 188892, + [SMALL_STATE(4908)] = 188917, + [SMALL_STATE(4909)] = 188942, + [SMALL_STATE(4910)] = 188971, + [SMALL_STATE(4911)] = 189000, + [SMALL_STATE(4912)] = 189029, + [SMALL_STATE(4913)] = 189054, + [SMALL_STATE(4914)] = 189083, + [SMALL_STATE(4915)] = 189108, + [SMALL_STATE(4916)] = 189131, + [SMALL_STATE(4917)] = 189160, + [SMALL_STATE(4918)] = 189183, + [SMALL_STATE(4919)] = 189208, + [SMALL_STATE(4920)] = 189237, + [SMALL_STATE(4921)] = 189266, + [SMALL_STATE(4922)] = 189289, + [SMALL_STATE(4923)] = 189314, + [SMALL_STATE(4924)] = 189343, + [SMALL_STATE(4925)] = 189372, + [SMALL_STATE(4926)] = 189399, + [SMALL_STATE(4927)] = 189424, + [SMALL_STATE(4928)] = 189451, + [SMALL_STATE(4929)] = 189480, + [SMALL_STATE(4930)] = 189509, + [SMALL_STATE(4931)] = 189538, + [SMALL_STATE(4932)] = 189563, + [SMALL_STATE(4933)] = 189592, + [SMALL_STATE(4934)] = 189621, + [SMALL_STATE(4935)] = 189650, + [SMALL_STATE(4936)] = 189675, + [SMALL_STATE(4937)] = 189700, + [SMALL_STATE(4938)] = 189727, + [SMALL_STATE(4939)] = 189756, + [SMALL_STATE(4940)] = 189785, + [SMALL_STATE(4941)] = 189810, + [SMALL_STATE(4942)] = 189835, + [SMALL_STATE(4943)] = 189860, + [SMALL_STATE(4944)] = 189885, + [SMALL_STATE(4945)] = 189912, + [SMALL_STATE(4946)] = 189939, + [SMALL_STATE(4947)] = 189968, + [SMALL_STATE(4948)] = 189993, + [SMALL_STATE(4949)] = 190034, + [SMALL_STATE(4950)] = 190059, + [SMALL_STATE(4951)] = 190084, + [SMALL_STATE(4952)] = 190115, + [SMALL_STATE(4953)] = 190140, + [SMALL_STATE(4954)] = 190169, + [SMALL_STATE(4955)] = 190196, + [SMALL_STATE(4956)] = 190221, + [SMALL_STATE(4957)] = 190246, + [SMALL_STATE(4958)] = 190275, + [SMALL_STATE(4959)] = 190300, + [SMALL_STATE(4960)] = 190323, + [SMALL_STATE(4961)] = 190352, + [SMALL_STATE(4962)] = 190381, + [SMALL_STATE(4963)] = 190404, + [SMALL_STATE(4964)] = 190431, + [SMALL_STATE(4965)] = 190456, + [SMALL_STATE(4966)] = 190481, + [SMALL_STATE(4967)] = 190506, + [SMALL_STATE(4968)] = 190531, + [SMALL_STATE(4969)] = 190556, + [SMALL_STATE(4970)] = 190581, + [SMALL_STATE(4971)] = 190606, + [SMALL_STATE(4972)] = 190631, + [SMALL_STATE(4973)] = 190656, + [SMALL_STATE(4974)] = 190685, + [SMALL_STATE(4975)] = 190710, + [SMALL_STATE(4976)] = 190735, + [SMALL_STATE(4977)] = 190760, + [SMALL_STATE(4978)] = 190787, + [SMALL_STATE(4979)] = 190812, + [SMALL_STATE(4980)] = 190837, + [SMALL_STATE(4981)] = 190862, + [SMALL_STATE(4982)] = 190887, + [SMALL_STATE(4983)] = 190912, + [SMALL_STATE(4984)] = 190937, + [SMALL_STATE(4985)] = 190962, + [SMALL_STATE(4986)] = 190987, + [SMALL_STATE(4987)] = 191016, + [SMALL_STATE(4988)] = 191047, + [SMALL_STATE(4989)] = 191072, + [SMALL_STATE(4990)] = 191097, + [SMALL_STATE(4991)] = 191122, + [SMALL_STATE(4992)] = 191151, + [SMALL_STATE(4993)] = 191176, + [SMALL_STATE(4994)] = 191205, + [SMALL_STATE(4995)] = 191234, + [SMALL_STATE(4996)] = 191259, + [SMALL_STATE(4997)] = 191284, + [SMALL_STATE(4998)] = 191313, + [SMALL_STATE(4999)] = 191342, + [SMALL_STATE(5000)] = 191371, + [SMALL_STATE(5001)] = 191396, + [SMALL_STATE(5002)] = 191421, + [SMALL_STATE(5003)] = 191446, + [SMALL_STATE(5004)] = 191471, + [SMALL_STATE(5005)] = 191496, + [SMALL_STATE(5006)] = 191521, + [SMALL_STATE(5007)] = 191546, + [SMALL_STATE(5008)] = 191571, + [SMALL_STATE(5009)] = 191596, + [SMALL_STATE(5010)] = 191621, + [SMALL_STATE(5011)] = 191648, + [SMALL_STATE(5012)] = 191673, + [SMALL_STATE(5013)] = 191698, + [SMALL_STATE(5014)] = 191723, + [SMALL_STATE(5015)] = 191748, + [SMALL_STATE(5016)] = 191773, + [SMALL_STATE(5017)] = 191800, + [SMALL_STATE(5018)] = 191825, + [SMALL_STATE(5019)] = 191854, + [SMALL_STATE(5020)] = 191883, + [SMALL_STATE(5021)] = 191912, + [SMALL_STATE(5022)] = 191941, + [SMALL_STATE(5023)] = 191966, + [SMALL_STATE(5024)] = 191991, + [SMALL_STATE(5025)] = 192016, + [SMALL_STATE(5026)] = 192041, + [SMALL_STATE(5027)] = 192066, + [SMALL_STATE(5028)] = 192095, + [SMALL_STATE(5029)] = 192120, + [SMALL_STATE(5030)] = 192149, + [SMALL_STATE(5031)] = 192174, + [SMALL_STATE(5032)] = 192203, + [SMALL_STATE(5033)] = 192232, + [SMALL_STATE(5034)] = 192257, + [SMALL_STATE(5035)] = 192284, + [SMALL_STATE(5036)] = 192309, + [SMALL_STATE(5037)] = 192336, + [SMALL_STATE(5038)] = 192365, + [SMALL_STATE(5039)] = 192390, + [SMALL_STATE(5040)] = 192415, + [SMALL_STATE(5041)] = 192440, + [SMALL_STATE(5042)] = 192469, + [SMALL_STATE(5043)] = 192494, + [SMALL_STATE(5044)] = 192519, + [SMALL_STATE(5045)] = 192548, + [SMALL_STATE(5046)] = 192579, + [SMALL_STATE(5047)] = 192606, + [SMALL_STATE(5048)] = 192631, + [SMALL_STATE(5049)] = 192656, + [SMALL_STATE(5050)] = 192681, + [SMALL_STATE(5051)] = 192706, + [SMALL_STATE(5052)] = 192731, + [SMALL_STATE(5053)] = 192760, + [SMALL_STATE(5054)] = 192785, + [SMALL_STATE(5055)] = 192810, + [SMALL_STATE(5056)] = 192841, + [SMALL_STATE(5057)] = 192868, + [SMALL_STATE(5058)] = 192893, + [SMALL_STATE(5059)] = 192917, + [SMALL_STATE(5060)] = 192939, + [SMALL_STATE(5061)] = 192963, + [SMALL_STATE(5062)] = 192987, + [SMALL_STATE(5063)] = 193011, + [SMALL_STATE(5064)] = 193035, + [SMALL_STATE(5065)] = 193059, + [SMALL_STATE(5066)] = 193105, + [SMALL_STATE(5067)] = 193129, + [SMALL_STATE(5068)] = 193153, + [SMALL_STATE(5069)] = 193177, + [SMALL_STATE(5070)] = 193199, + [SMALL_STATE(5071)] = 193233, + [SMALL_STATE(5072)] = 193255, + [SMALL_STATE(5073)] = 193279, + [SMALL_STATE(5074)] = 193325, + [SMALL_STATE(5075)] = 193371, + [SMALL_STATE(5076)] = 193393, + [SMALL_STATE(5077)] = 193417, + [SMALL_STATE(5078)] = 193463, + [SMALL_STATE(5079)] = 193487, + [SMALL_STATE(5080)] = 193511, + [SMALL_STATE(5081)] = 193535, + [SMALL_STATE(5082)] = 193559, + [SMALL_STATE(5083)] = 193581, + [SMALL_STATE(5084)] = 193627, + [SMALL_STATE(5085)] = 193667, + [SMALL_STATE(5086)] = 193691, + [SMALL_STATE(5087)] = 193713, + [SMALL_STATE(5088)] = 193735, + [SMALL_STATE(5089)] = 193759, + [SMALL_STATE(5090)] = 193781, + [SMALL_STATE(5091)] = 193805, + [SMALL_STATE(5092)] = 193829, + [SMALL_STATE(5093)] = 193853, + [SMALL_STATE(5094)] = 193877, + [SMALL_STATE(5095)] = 193901, + [SMALL_STATE(5096)] = 193925, + [SMALL_STATE(5097)] = 193949, + [SMALL_STATE(5098)] = 193973, + [SMALL_STATE(5099)] = 193997, + [SMALL_STATE(5100)] = 194021, + [SMALL_STATE(5101)] = 194045, + [SMALL_STATE(5102)] = 194069, + [SMALL_STATE(5103)] = 194093, + [SMALL_STATE(5104)] = 194117, + [SMALL_STATE(5105)] = 194143, + [SMALL_STATE(5106)] = 194167, + [SMALL_STATE(5107)] = 194191, + [SMALL_STATE(5108)] = 194215, + [SMALL_STATE(5109)] = 194239, + [SMALL_STATE(5110)] = 194263, + [SMALL_STATE(5111)] = 194307, + [SMALL_STATE(5112)] = 194331, + [SMALL_STATE(5113)] = 194355, + [SMALL_STATE(5114)] = 194379, + [SMALL_STATE(5115)] = 194403, + [SMALL_STATE(5116)] = 194427, + [SMALL_STATE(5117)] = 194451, + [SMALL_STATE(5118)] = 194475, + [SMALL_STATE(5119)] = 194499, + [SMALL_STATE(5120)] = 194523, + [SMALL_STATE(5121)] = 194547, + [SMALL_STATE(5122)] = 194571, + [SMALL_STATE(5123)] = 194593, + [SMALL_STATE(5124)] = 194639, + [SMALL_STATE(5125)] = 194663, + [SMALL_STATE(5126)] = 194687, + [SMALL_STATE(5127)] = 194711, + [SMALL_STATE(5128)] = 194735, + [SMALL_STATE(5129)] = 194759, + [SMALL_STATE(5130)] = 194783, + [SMALL_STATE(5131)] = 194807, + [SMALL_STATE(5132)] = 194831, + [SMALL_STATE(5133)] = 194855, + [SMALL_STATE(5134)] = 194879, + [SMALL_STATE(5135)] = 194917, + [SMALL_STATE(5136)] = 194941, + [SMALL_STATE(5137)] = 194965, + [SMALL_STATE(5138)] = 194989, + [SMALL_STATE(5139)] = 195013, + [SMALL_STATE(5140)] = 195037, + [SMALL_STATE(5141)] = 195061, + [SMALL_STATE(5142)] = 195085, + [SMALL_STATE(5143)] = 195107, + [SMALL_STATE(5144)] = 195131, + [SMALL_STATE(5145)] = 195155, + [SMALL_STATE(5146)] = 195179, + [SMALL_STATE(5147)] = 195201, + [SMALL_STATE(5148)] = 195227, + [SMALL_STATE(5149)] = 195251, + [SMALL_STATE(5150)] = 195275, + [SMALL_STATE(5151)] = 195299, + [SMALL_STATE(5152)] = 195323, + [SMALL_STATE(5153)] = 195347, + [SMALL_STATE(5154)] = 195371, + [SMALL_STATE(5155)] = 195395, + [SMALL_STATE(5156)] = 195419, + [SMALL_STATE(5157)] = 195443, + [SMALL_STATE(5158)] = 195465, + [SMALL_STATE(5159)] = 195489, + [SMALL_STATE(5160)] = 195513, + [SMALL_STATE(5161)] = 195537, + [SMALL_STATE(5162)] = 195561, + [SMALL_STATE(5163)] = 195585, + [SMALL_STATE(5164)] = 195609, + [SMALL_STATE(5165)] = 195633, + [SMALL_STATE(5166)] = 195657, + [SMALL_STATE(5167)] = 195681, + [SMALL_STATE(5168)] = 195705, + [SMALL_STATE(5169)] = 195729, + [SMALL_STATE(5170)] = 195753, + [SMALL_STATE(5171)] = 195777, + [SMALL_STATE(5172)] = 195801, + [SMALL_STATE(5173)] = 195825, + [SMALL_STATE(5174)] = 195849, + [SMALL_STATE(5175)] = 195873, + [SMALL_STATE(5176)] = 195897, + [SMALL_STATE(5177)] = 195921, + [SMALL_STATE(5178)] = 195945, + [SMALL_STATE(5179)] = 195967, + [SMALL_STATE(5180)] = 195991, + [SMALL_STATE(5181)] = 196033, + [SMALL_STATE(5182)] = 196057, + [SMALL_STATE(5183)] = 196081, + [SMALL_STATE(5184)] = 196105, + [SMALL_STATE(5185)] = 196147, + [SMALL_STATE(5186)] = 196171, + [SMALL_STATE(5187)] = 196197, + [SMALL_STATE(5188)] = 196221, + [SMALL_STATE(5189)] = 196245, + [SMALL_STATE(5190)] = 196269, + [SMALL_STATE(5191)] = 196293, + [SMALL_STATE(5192)] = 196317, + [SMALL_STATE(5193)] = 196341, + [SMALL_STATE(5194)] = 196365, + [SMALL_STATE(5195)] = 196389, + [SMALL_STATE(5196)] = 196413, + [SMALL_STATE(5197)] = 196437, + [SMALL_STATE(5198)] = 196461, + [SMALL_STATE(5199)] = 196505, + [SMALL_STATE(5200)] = 196529, + [SMALL_STATE(5201)] = 196553, + [SMALL_STATE(5202)] = 196575, + [SMALL_STATE(5203)] = 196599, + [SMALL_STATE(5204)] = 196623, + [SMALL_STATE(5205)] = 196647, + [SMALL_STATE(5206)] = 196671, + [SMALL_STATE(5207)] = 196695, + [SMALL_STATE(5208)] = 196719, + [SMALL_STATE(5209)] = 196743, + [SMALL_STATE(5210)] = 196767, + [SMALL_STATE(5211)] = 196791, + [SMALL_STATE(5212)] = 196815, + [SMALL_STATE(5213)] = 196839, + [SMALL_STATE(5214)] = 196863, + [SMALL_STATE(5215)] = 196887, + [SMALL_STATE(5216)] = 196911, + [SMALL_STATE(5217)] = 196937, + [SMALL_STATE(5218)] = 196961, + [SMALL_STATE(5219)] = 196985, + [SMALL_STATE(5220)] = 197009, + [SMALL_STATE(5221)] = 197033, + [SMALL_STATE(5222)] = 197057, + [SMALL_STATE(5223)] = 197081, + [SMALL_STATE(5224)] = 197103, + [SMALL_STATE(5225)] = 197125, + [SMALL_STATE(5226)] = 197149, + [SMALL_STATE(5227)] = 197171, + [SMALL_STATE(5228)] = 197209, + [SMALL_STATE(5229)] = 197231, + [SMALL_STATE(5230)] = 197255, + [SMALL_STATE(5231)] = 197279, + [SMALL_STATE(5232)] = 197303, + [SMALL_STATE(5233)] = 197327, + [SMALL_STATE(5234)] = 197351, + [SMALL_STATE(5235)] = 197375, + [SMALL_STATE(5236)] = 197399, + [SMALL_STATE(5237)] = 197423, + [SMALL_STATE(5238)] = 197447, + [SMALL_STATE(5239)] = 197471, + [SMALL_STATE(5240)] = 197495, + [SMALL_STATE(5241)] = 197519, + [SMALL_STATE(5242)] = 197543, + [SMALL_STATE(5243)] = 197565, + [SMALL_STATE(5244)] = 197587, + [SMALL_STATE(5245)] = 197611, + [SMALL_STATE(5246)] = 197635, + [SMALL_STATE(5247)] = 197657, + [SMALL_STATE(5248)] = 197679, + [SMALL_STATE(5249)] = 197703, + [SMALL_STATE(5250)] = 197741, + [SMALL_STATE(5251)] = 197765, + [SMALL_STATE(5252)] = 197789, + [SMALL_STATE(5253)] = 197813, + [SMALL_STATE(5254)] = 197837, + [SMALL_STATE(5255)] = 197863, + [SMALL_STATE(5256)] = 197889, + [SMALL_STATE(5257)] = 197913, + [SMALL_STATE(5258)] = 197935, + [SMALL_STATE(5259)] = 197957, + [SMALL_STATE(5260)] = 197981, + [SMALL_STATE(5261)] = 198005, + [SMALL_STATE(5262)] = 198029, + [SMALL_STATE(5263)] = 198053, + [SMALL_STATE(5264)] = 198077, + [SMALL_STATE(5265)] = 198101, + [SMALL_STATE(5266)] = 198125, + [SMALL_STATE(5267)] = 198149, + [SMALL_STATE(5268)] = 198173, + [SMALL_STATE(5269)] = 198197, + [SMALL_STATE(5270)] = 198243, + [SMALL_STATE(5271)] = 198267, + [SMALL_STATE(5272)] = 198291, + [SMALL_STATE(5273)] = 198315, + [SMALL_STATE(5274)] = 198339, + [SMALL_STATE(5275)] = 198363, + [SMALL_STATE(5276)] = 198389, + [SMALL_STATE(5277)] = 198415, + [SMALL_STATE(5278)] = 198439, + [SMALL_STATE(5279)] = 198463, + [SMALL_STATE(5280)] = 198487, + [SMALL_STATE(5281)] = 198511, + [SMALL_STATE(5282)] = 198539, + [SMALL_STATE(5283)] = 198567, + [SMALL_STATE(5284)] = 198595, + [SMALL_STATE(5285)] = 198623, + [SMALL_STATE(5286)] = 198651, + [SMALL_STATE(5287)] = 198679, + [SMALL_STATE(5288)] = 198707, + [SMALL_STATE(5289)] = 198735, + [SMALL_STATE(5290)] = 198759, + [SMALL_STATE(5291)] = 198787, + [SMALL_STATE(5292)] = 198815, + [SMALL_STATE(5293)] = 198843, + [SMALL_STATE(5294)] = 198889, + [SMALL_STATE(5295)] = 198917, + [SMALL_STATE(5296)] = 198963, + [SMALL_STATE(5297)] = 198987, + [SMALL_STATE(5298)] = 199011, + [SMALL_STATE(5299)] = 199035, + [SMALL_STATE(5300)] = 199059, + [SMALL_STATE(5301)] = 199083, + [SMALL_STATE(5302)] = 199107, + [SMALL_STATE(5303)] = 199131, + [SMALL_STATE(5304)] = 199155, + [SMALL_STATE(5305)] = 199197, + [SMALL_STATE(5306)] = 199243, + [SMALL_STATE(5307)] = 199267, + [SMALL_STATE(5308)] = 199291, + [SMALL_STATE(5309)] = 199315, + [SMALL_STATE(5310)] = 199339, + [SMALL_STATE(5311)] = 199363, + [SMALL_STATE(5312)] = 199385, + [SMALL_STATE(5313)] = 199409, + [SMALL_STATE(5314)] = 199430, + [SMALL_STATE(5315)] = 199471, + [SMALL_STATE(5316)] = 199492, + [SMALL_STATE(5317)] = 199519, + [SMALL_STATE(5318)] = 199540, + [SMALL_STATE(5319)] = 199567, + [SMALL_STATE(5320)] = 199588, + [SMALL_STATE(5321)] = 199609, + [SMALL_STATE(5322)] = 199630, + [SMALL_STATE(5323)] = 199653, + [SMALL_STATE(5324)] = 199694, + [SMALL_STATE(5325)] = 199735, + [SMALL_STATE(5326)] = 199774, + [SMALL_STATE(5327)] = 199795, + [SMALL_STATE(5328)] = 199822, + [SMALL_STATE(5329)] = 199843, + [SMALL_STATE(5330)] = 199866, + [SMALL_STATE(5331)] = 199903, + [SMALL_STATE(5332)] = 199924, + [SMALL_STATE(5333)] = 199963, + [SMALL_STATE(5334)] = 199984, + [SMALL_STATE(5335)] = 200023, + [SMALL_STATE(5336)] = 200044, + [SMALL_STATE(5337)] = 200065, + [SMALL_STATE(5338)] = 200086, + [SMALL_STATE(5339)] = 200107, + [SMALL_STATE(5340)] = 200130, + [SMALL_STATE(5341)] = 200151, + [SMALL_STATE(5342)] = 200172, + [SMALL_STATE(5343)] = 200193, + [SMALL_STATE(5344)] = 200216, + [SMALL_STATE(5345)] = 200237, + [SMALL_STATE(5346)] = 200258, + [SMALL_STATE(5347)] = 200279, + [SMALL_STATE(5348)] = 200306, + [SMALL_STATE(5349)] = 200327, + [SMALL_STATE(5350)] = 200348, + [SMALL_STATE(5351)] = 200371, + [SMALL_STATE(5352)] = 200392, + [SMALL_STATE(5353)] = 200413, + [SMALL_STATE(5354)] = 200440, + [SMALL_STATE(5355)] = 200481, + [SMALL_STATE(5356)] = 200502, + [SMALL_STATE(5357)] = 200525, + [SMALL_STATE(5358)] = 200548, + [SMALL_STATE(5359)] = 200569, + [SMALL_STATE(5360)] = 200592, + [SMALL_STATE(5361)] = 200615, + [SMALL_STATE(5362)] = 200636, + [SMALL_STATE(5363)] = 200677, + [SMALL_STATE(5364)] = 200718, + [SMALL_STATE(5365)] = 200741, + [SMALL_STATE(5366)] = 200764, + [SMALL_STATE(5367)] = 200785, + [SMALL_STATE(5368)] = 200806, + [SMALL_STATE(5369)] = 200839, + [SMALL_STATE(5370)] = 200862, + [SMALL_STATE(5371)] = 200901, + [SMALL_STATE(5372)] = 200940, + [SMALL_STATE(5373)] = 200979, + [SMALL_STATE(5374)] = 201000, + [SMALL_STATE(5375)] = 201021, + [SMALL_STATE(5376)] = 201044, + [SMALL_STATE(5377)] = 201067, + [SMALL_STATE(5378)] = 201090, + [SMALL_STATE(5379)] = 201111, + [SMALL_STATE(5380)] = 201134, + [SMALL_STATE(5381)] = 201155, + [SMALL_STATE(5382)] = 201176, + [SMALL_STATE(5383)] = 201199, + [SMALL_STATE(5384)] = 201222, + [SMALL_STATE(5385)] = 201245, + [SMALL_STATE(5386)] = 201266, + [SMALL_STATE(5387)] = 201289, + [SMALL_STATE(5388)] = 201316, + [SMALL_STATE(5389)] = 201337, + [SMALL_STATE(5390)] = 201372, + [SMALL_STATE(5391)] = 201393, + [SMALL_STATE(5392)] = 201434, + [SMALL_STATE(5393)] = 201461, + [SMALL_STATE(5394)] = 201496, + [SMALL_STATE(5395)] = 201523, + [SMALL_STATE(5396)] = 201558, + [SMALL_STATE(5397)] = 201593, + [SMALL_STATE(5398)] = 201614, + [SMALL_STATE(5399)] = 201637, + [SMALL_STATE(5400)] = 201658, + [SMALL_STATE(5401)] = 201679, + [SMALL_STATE(5402)] = 201700, + [SMALL_STATE(5403)] = 201723, + [SMALL_STATE(5404)] = 201746, + [SMALL_STATE(5405)] = 201767, + [SMALL_STATE(5406)] = 201788, + [SMALL_STATE(5407)] = 201827, + [SMALL_STATE(5408)] = 201868, + [SMALL_STATE(5409)] = 201891, + [SMALL_STATE(5410)] = 201914, + [SMALL_STATE(5411)] = 201937, + [SMALL_STATE(5412)] = 201960, + [SMALL_STATE(5413)] = 201987, + [SMALL_STATE(5414)] = 202010, + [SMALL_STATE(5415)] = 202033, + [SMALL_STATE(5416)] = 202056, + [SMALL_STATE(5417)] = 202083, + [SMALL_STATE(5418)] = 202110, + [SMALL_STATE(5419)] = 202137, + [SMALL_STATE(5420)] = 202164, + [SMALL_STATE(5421)] = 202191, + [SMALL_STATE(5422)] = 202218, + [SMALL_STATE(5423)] = 202245, + [SMALL_STATE(5424)] = 202268, + [SMALL_STATE(5425)] = 202295, + [SMALL_STATE(5426)] = 202322, + [SMALL_STATE(5427)] = 202349, + [SMALL_STATE(5428)] = 202370, + [SMALL_STATE(5429)] = 202397, + [SMALL_STATE(5430)] = 202418, + [SMALL_STATE(5431)] = 202439, + [SMALL_STATE(5432)] = 202460, + [SMALL_STATE(5433)] = 202483, + [SMALL_STATE(5434)] = 202504, + [SMALL_STATE(5435)] = 202527, + [SMALL_STATE(5436)] = 202548, + [SMALL_STATE(5437)] = 202571, + [SMALL_STATE(5438)] = 202598, + [SMALL_STATE(5439)] = 202619, + [SMALL_STATE(5440)] = 202640, + [SMALL_STATE(5441)] = 202681, + [SMALL_STATE(5442)] = 202702, + [SMALL_STATE(5443)] = 202725, + [SMALL_STATE(5444)] = 202746, + [SMALL_STATE(5445)] = 202787, + [SMALL_STATE(5446)] = 202808, + [SMALL_STATE(5447)] = 202847, + [SMALL_STATE(5448)] = 202868, + [SMALL_STATE(5449)] = 202891, + [SMALL_STATE(5450)] = 202912, + [SMALL_STATE(5451)] = 202949, + [SMALL_STATE(5452)] = 202970, + [SMALL_STATE(5453)] = 202993, + [SMALL_STATE(5454)] = 203016, + [SMALL_STATE(5455)] = 203039, + [SMALL_STATE(5456)] = 203060, + [SMALL_STATE(5457)] = 203081, + [SMALL_STATE(5458)] = 203102, + [SMALL_STATE(5459)] = 203123, + [SMALL_STATE(5460)] = 203144, + [SMALL_STATE(5461)] = 203165, + [SMALL_STATE(5462)] = 203186, + [SMALL_STATE(5463)] = 203207, + [SMALL_STATE(5464)] = 203228, + [SMALL_STATE(5465)] = 203249, + [SMALL_STATE(5466)] = 203288, + [SMALL_STATE(5467)] = 203309, + [SMALL_STATE(5468)] = 203330, + [SMALL_STATE(5469)] = 203351, + [SMALL_STATE(5470)] = 203390, + [SMALL_STATE(5471)] = 203417, + [SMALL_STATE(5472)] = 203440, + [SMALL_STATE(5473)] = 203463, + [SMALL_STATE(5474)] = 203486, + [SMALL_STATE(5475)] = 203507, + [SMALL_STATE(5476)] = 203528, + [SMALL_STATE(5477)] = 203549, + [SMALL_STATE(5478)] = 203570, + [SMALL_STATE(5479)] = 203597, + [SMALL_STATE(5480)] = 203620, + [SMALL_STATE(5481)] = 203642, + [SMALL_STATE(5482)] = 203672, + [SMALL_STATE(5483)] = 203698, + [SMALL_STATE(5484)] = 203728, + [SMALL_STATE(5485)] = 203758, + [SMALL_STATE(5486)] = 203784, + [SMALL_STATE(5487)] = 203808, + [SMALL_STATE(5488)] = 203834, + [SMALL_STATE(5489)] = 203864, + [SMALL_STATE(5490)] = 203894, + [SMALL_STATE(5491)] = 203924, + [SMALL_STATE(5492)] = 203954, + [SMALL_STATE(5493)] = 203978, + [SMALL_STATE(5494)] = 204008, + [SMALL_STATE(5495)] = 204038, + [SMALL_STATE(5496)] = 204068, + [SMALL_STATE(5497)] = 204098, + [SMALL_STATE(5498)] = 204128, + [SMALL_STATE(5499)] = 204160, + [SMALL_STATE(5500)] = 204190, + [SMALL_STATE(5501)] = 204220, + [SMALL_STATE(5502)] = 204250, + [SMALL_STATE(5503)] = 204280, + [SMALL_STATE(5504)] = 204310, + [SMALL_STATE(5505)] = 204340, + [SMALL_STATE(5506)] = 204366, + [SMALL_STATE(5507)] = 204402, + [SMALL_STATE(5508)] = 204428, + [SMALL_STATE(5509)] = 204452, + [SMALL_STATE(5510)] = 204478, + [SMALL_STATE(5511)] = 204516, + [SMALL_STATE(5512)] = 204546, + [SMALL_STATE(5513)] = 204570, + [SMALL_STATE(5514)] = 204600, + [SMALL_STATE(5515)] = 204636, + [SMALL_STATE(5516)] = 204662, + [SMALL_STATE(5517)] = 204692, + [SMALL_STATE(5518)] = 204728, + [SMALL_STATE(5519)] = 204764, + [SMALL_STATE(5520)] = 204796, + [SMALL_STATE(5521)] = 204822, + [SMALL_STATE(5522)] = 204854, + [SMALL_STATE(5523)] = 204884, + [SMALL_STATE(5524)] = 204920, + [SMALL_STATE(5525)] = 204946, + [SMALL_STATE(5526)] = 204972, + [SMALL_STATE(5527)] = 205000, + [SMALL_STATE(5528)] = 205032, + [SMALL_STATE(5529)] = 205070, + [SMALL_STATE(5530)] = 205096, + [SMALL_STATE(5531)] = 205120, + [SMALL_STATE(5532)] = 205156, + [SMALL_STATE(5533)] = 205188, + [SMALL_STATE(5534)] = 205224, + [SMALL_STATE(5535)] = 205250, + [SMALL_STATE(5536)] = 205286, + [SMALL_STATE(5537)] = 205310, + [SMALL_STATE(5538)] = 205334, + [SMALL_STATE(5539)] = 205364, + [SMALL_STATE(5540)] = 205390, + [SMALL_STATE(5541)] = 205426, + [SMALL_STATE(5542)] = 205462, + [SMALL_STATE(5543)] = 205486, + [SMALL_STATE(5544)] = 205516, + [SMALL_STATE(5545)] = 205551, + [SMALL_STATE(5546)] = 205586, + [SMALL_STATE(5547)] = 205619, + [SMALL_STATE(5548)] = 205640, + [SMALL_STATE(5549)] = 205675, + [SMALL_STATE(5550)] = 205698, + [SMALL_STATE(5551)] = 205733, + [SMALL_STATE(5552)] = 205764, + [SMALL_STATE(5553)] = 205799, + [SMALL_STATE(5554)] = 205822, + [SMALL_STATE(5555)] = 205857, + [SMALL_STATE(5556)] = 205878, + [SMALL_STATE(5557)] = 205913, + [SMALL_STATE(5558)] = 205938, + [SMALL_STATE(5559)] = 205963, + [SMALL_STATE(5560)] = 205998, + [SMALL_STATE(5561)] = 206033, + [SMALL_STATE(5562)] = 206054, + [SMALL_STATE(5563)] = 206089, + [SMALL_STATE(5564)] = 206112, + [SMALL_STATE(5565)] = 206147, + [SMALL_STATE(5566)] = 206182, + [SMALL_STATE(5567)] = 206211, + [SMALL_STATE(5568)] = 206234, + [SMALL_STATE(5569)] = 206261, + [SMALL_STATE(5570)] = 206290, + [SMALL_STATE(5571)] = 206319, + [SMALL_STATE(5572)] = 206348, + [SMALL_STATE(5573)] = 206383, + [SMALL_STATE(5574)] = 206418, + [SMALL_STATE(5575)] = 206439, + [SMALL_STATE(5576)] = 206468, + [SMALL_STATE(5577)] = 206503, + [SMALL_STATE(5578)] = 206536, + [SMALL_STATE(5579)] = 206565, + [SMALL_STATE(5580)] = 206594, + [SMALL_STATE(5581)] = 206619, + [SMALL_STATE(5582)] = 206654, + [SMALL_STATE(5583)] = 206689, + [SMALL_STATE(5584)] = 206724, + [SMALL_STATE(5585)] = 206759, + [SMALL_STATE(5586)] = 206792, + [SMALL_STATE(5587)] = 206827, + [SMALL_STATE(5588)] = 206862, + [SMALL_STATE(5589)] = 206891, + [SMALL_STATE(5590)] = 206914, + [SMALL_STATE(5591)] = 206949, + [SMALL_STATE(5592)] = 206984, + [SMALL_STATE(5593)] = 207013, + [SMALL_STATE(5594)] = 207034, + [SMALL_STATE(5595)] = 207063, + [SMALL_STATE(5596)] = 207084, + [SMALL_STATE(5597)] = 207113, + [SMALL_STATE(5598)] = 207148, + [SMALL_STATE(5599)] = 207183, + [SMALL_STATE(5600)] = 207218, + [SMALL_STATE(5601)] = 207253, + [SMALL_STATE(5602)] = 207276, + [SMALL_STATE(5603)] = 207305, + [SMALL_STATE(5604)] = 207328, + [SMALL_STATE(5605)] = 207357, + [SMALL_STATE(5606)] = 207392, + [SMALL_STATE(5607)] = 207413, + [SMALL_STATE(5608)] = 207442, + [SMALL_STATE(5609)] = 207477, + [SMALL_STATE(5610)] = 207512, + [SMALL_STATE(5611)] = 207547, + [SMALL_STATE(5612)] = 207582, + [SMALL_STATE(5613)] = 207607, + [SMALL_STATE(5614)] = 207628, + [SMALL_STATE(5615)] = 207657, + [SMALL_STATE(5616)] = 207692, + [SMALL_STATE(5617)] = 207715, + [SMALL_STATE(5618)] = 207740, + [SMALL_STATE(5619)] = 207765, + [SMALL_STATE(5620)] = 207794, + [SMALL_STATE(5621)] = 207815, + [SMALL_STATE(5622)] = 207840, + [SMALL_STATE(5623)] = 207865, + [SMALL_STATE(5624)] = 207896, + [SMALL_STATE(5625)] = 207931, + [SMALL_STATE(5626)] = 207966, + [SMALL_STATE(5627)] = 207995, + [SMALL_STATE(5628)] = 208024, + [SMALL_STATE(5629)] = 208059, + [SMALL_STATE(5630)] = 208088, + [SMALL_STATE(5631)] = 208123, + [SMALL_STATE(5632)] = 208152, + [SMALL_STATE(5633)] = 208181, + [SMALL_STATE(5634)] = 208216, + [SMALL_STATE(5635)] = 208251, + [SMALL_STATE(5636)] = 208286, + [SMALL_STATE(5637)] = 208307, + [SMALL_STATE(5638)] = 208336, + [SMALL_STATE(5639)] = 208371, + [SMALL_STATE(5640)] = 208406, + [SMALL_STATE(5641)] = 208441, + [SMALL_STATE(5642)] = 208470, + [SMALL_STATE(5643)] = 208491, + [SMALL_STATE(5644)] = 208512, + [SMALL_STATE(5645)] = 208537, + [SMALL_STATE(5646)] = 208560, + [SMALL_STATE(5647)] = 208589, + [SMALL_STATE(5648)] = 208610, + [SMALL_STATE(5649)] = 208639, + [SMALL_STATE(5650)] = 208668, + [SMALL_STATE(5651)] = 208703, + [SMALL_STATE(5652)] = 208738, + [SMALL_STATE(5653)] = 208773, + [SMALL_STATE(5654)] = 208808, + [SMALL_STATE(5655)] = 208843, + [SMALL_STATE(5656)] = 208864, + [SMALL_STATE(5657)] = 208893, + [SMALL_STATE(5658)] = 208922, + [SMALL_STATE(5659)] = 208957, + [SMALL_STATE(5660)] = 208978, + [SMALL_STATE(5661)] = 209007, + [SMALL_STATE(5662)] = 209036, + [SMALL_STATE(5663)] = 209057, + [SMALL_STATE(5664)] = 209090, + [SMALL_STATE(5665)] = 209111, + [SMALL_STATE(5666)] = 209146, + [SMALL_STATE(5667)] = 209171, + [SMALL_STATE(5668)] = 209193, + [SMALL_STATE(5669)] = 209219, + [SMALL_STATE(5670)] = 209243, + [SMALL_STATE(5671)] = 209273, + [SMALL_STATE(5672)] = 209301, + [SMALL_STATE(5673)] = 209331, + [SMALL_STATE(5674)] = 209361, + [SMALL_STATE(5675)] = 209383, + [SMALL_STATE(5676)] = 209411, + [SMALL_STATE(5677)] = 209441, + [SMALL_STATE(5678)] = 209463, + [SMALL_STATE(5679)] = 209485, + [SMALL_STATE(5680)] = 209515, + [SMALL_STATE(5681)] = 209535, + [SMALL_STATE(5682)] = 209555, + [SMALL_STATE(5683)] = 209583, + [SMALL_STATE(5684)] = 209609, + [SMALL_STATE(5685)] = 209637, + [SMALL_STATE(5686)] = 209669, + [SMALL_STATE(5687)] = 209689, + [SMALL_STATE(5688)] = 209709, + [SMALL_STATE(5689)] = 209729, + [SMALL_STATE(5690)] = 209749, + [SMALL_STATE(5691)] = 209777, + [SMALL_STATE(5692)] = 209805, + [SMALL_STATE(5693)] = 209837, + [SMALL_STATE(5694)] = 209867, + [SMALL_STATE(5695)] = 209887, + [SMALL_STATE(5696)] = 209907, + [SMALL_STATE(5697)] = 209937, + [SMALL_STATE(5698)] = 209969, + [SMALL_STATE(5699)] = 209999, + [SMALL_STATE(5700)] = 210031, + [SMALL_STATE(5701)] = 210055, + [SMALL_STATE(5702)] = 210085, + [SMALL_STATE(5703)] = 210115, + [SMALL_STATE(5704)] = 210145, + [SMALL_STATE(5705)] = 210175, + [SMALL_STATE(5706)] = 210201, + [SMALL_STATE(5707)] = 210223, + [SMALL_STATE(5708)] = 210253, + [SMALL_STATE(5709)] = 210275, + [SMALL_STATE(5710)] = 210295, + [SMALL_STATE(5711)] = 210317, + [SMALL_STATE(5712)] = 210347, + [SMALL_STATE(5713)] = 210371, + [SMALL_STATE(5714)] = 210403, + [SMALL_STATE(5715)] = 210427, + [SMALL_STATE(5716)] = 210451, + [SMALL_STATE(5717)] = 210481, + [SMALL_STATE(5718)] = 210501, + [SMALL_STATE(5719)] = 210531, + [SMALL_STATE(5720)] = 210561, + [SMALL_STATE(5721)] = 210581, + [SMALL_STATE(5722)] = 210609, + [SMALL_STATE(5723)] = 210637, + [SMALL_STATE(5724)] = 210665, + [SMALL_STATE(5725)] = 210693, + [SMALL_STATE(5726)] = 210721, + [SMALL_STATE(5727)] = 210749, + [SMALL_STATE(5728)] = 210777, + [SMALL_STATE(5729)] = 210805, + [SMALL_STATE(5730)] = 210833, + [SMALL_STATE(5731)] = 210861, + [SMALL_STATE(5732)] = 210889, + [SMALL_STATE(5733)] = 210917, + [SMALL_STATE(5734)] = 210945, + [SMALL_STATE(5735)] = 210973, + [SMALL_STATE(5736)] = 211001, + [SMALL_STATE(5737)] = 211029, + [SMALL_STATE(5738)] = 211057, + [SMALL_STATE(5739)] = 211085, + [SMALL_STATE(5740)] = 211113, + [SMALL_STATE(5741)] = 211141, + [SMALL_STATE(5742)] = 211169, + [SMALL_STATE(5743)] = 211197, + [SMALL_STATE(5744)] = 211217, + [SMALL_STATE(5745)] = 211237, + [SMALL_STATE(5746)] = 211257, + [SMALL_STATE(5747)] = 211287, + [SMALL_STATE(5748)] = 211309, + [SMALL_STATE(5749)] = 211339, + [SMALL_STATE(5750)] = 211359, + [SMALL_STATE(5751)] = 211389, + [SMALL_STATE(5752)] = 211413, + [SMALL_STATE(5753)] = 211433, + [SMALL_STATE(5754)] = 211453, + [SMALL_STATE(5755)] = 211483, + [SMALL_STATE(5756)] = 211507, + [SMALL_STATE(5757)] = 211533, + [SMALL_STATE(5758)] = 211563, + [SMALL_STATE(5759)] = 211593, + [SMALL_STATE(5760)] = 211617, + [SMALL_STATE(5761)] = 211647, + [SMALL_STATE(5762)] = 211677, + [SMALL_STATE(5763)] = 211701, + [SMALL_STATE(5764)] = 211725, + [SMALL_STATE(5765)] = 211749, + [SMALL_STATE(5766)] = 211779, + [SMALL_STATE(5767)] = 211809, + [SMALL_STATE(5768)] = 211839, + [SMALL_STATE(5769)] = 211869, + [SMALL_STATE(5770)] = 211899, + [SMALL_STATE(5771)] = 211929, + [SMALL_STATE(5772)] = 211959, + [SMALL_STATE(5773)] = 211989, + [SMALL_STATE(5774)] = 212019, + [SMALL_STATE(5775)] = 212049, + [SMALL_STATE(5776)] = 212079, + [SMALL_STATE(5777)] = 212109, + [SMALL_STATE(5778)] = 212133, + [SMALL_STATE(5779)] = 212163, + [SMALL_STATE(5780)] = 212193, + [SMALL_STATE(5781)] = 212223, + [SMALL_STATE(5782)] = 212253, + [SMALL_STATE(5783)] = 212283, + [SMALL_STATE(5784)] = 212313, + [SMALL_STATE(5785)] = 212343, + [SMALL_STATE(5786)] = 212373, + [SMALL_STATE(5787)] = 212403, + [SMALL_STATE(5788)] = 212433, + [SMALL_STATE(5789)] = 212463, + [SMALL_STATE(5790)] = 212493, + [SMALL_STATE(5791)] = 212523, + [SMALL_STATE(5792)] = 212553, + [SMALL_STATE(5793)] = 212583, + [SMALL_STATE(5794)] = 212613, + [SMALL_STATE(5795)] = 212643, + [SMALL_STATE(5796)] = 212673, + [SMALL_STATE(5797)] = 212703, + [SMALL_STATE(5798)] = 212735, + [SMALL_STATE(5799)] = 212765, + [SMALL_STATE(5800)] = 212795, + [SMALL_STATE(5801)] = 212825, + [SMALL_STATE(5802)] = 212855, + [SMALL_STATE(5803)] = 212885, + [SMALL_STATE(5804)] = 212915, + [SMALL_STATE(5805)] = 212935, + [SMALL_STATE(5806)] = 212955, + [SMALL_STATE(5807)] = 212975, + [SMALL_STATE(5808)] = 212995, + [SMALL_STATE(5809)] = 213021, + [SMALL_STATE(5810)] = 213045, + [SMALL_STATE(5811)] = 213067, + [SMALL_STATE(5812)] = 213087, + [SMALL_STATE(5813)] = 213109, + [SMALL_STATE(5814)] = 213139, + [SMALL_STATE(5815)] = 213169, + [SMALL_STATE(5816)] = 213188, + [SMALL_STATE(5817)] = 213215, + [SMALL_STATE(5818)] = 213240, + [SMALL_STATE(5819)] = 213265, + [SMALL_STATE(5820)] = 213292, + [SMALL_STATE(5821)] = 213315, + [SMALL_STATE(5822)] = 213336, + [SMALL_STATE(5823)] = 213355, + [SMALL_STATE(5824)] = 213374, + [SMALL_STATE(5825)] = 213395, + [SMALL_STATE(5826)] = 213414, + [SMALL_STATE(5827)] = 213439, + [SMALL_STATE(5828)] = 213466, + [SMALL_STATE(5829)] = 213485, + [SMALL_STATE(5830)] = 213504, + [SMALL_STATE(5831)] = 213523, + [SMALL_STATE(5832)] = 213544, + [SMALL_STATE(5833)] = 213569, + [SMALL_STATE(5834)] = 213588, + [SMALL_STATE(5835)] = 213607, + [SMALL_STATE(5836)] = 213630, + [SMALL_STATE(5837)] = 213651, + [SMALL_STATE(5838)] = 213672, + [SMALL_STATE(5839)] = 213693, + [SMALL_STATE(5840)] = 213714, + [SMALL_STATE(5841)] = 213739, + [SMALL_STATE(5842)] = 213764, + [SMALL_STATE(5843)] = 213783, + [SMALL_STATE(5844)] = 213802, + [SMALL_STATE(5845)] = 213827, + [SMALL_STATE(5846)] = 213846, + [SMALL_STATE(5847)] = 213871, + [SMALL_STATE(5848)] = 213896, + [SMALL_STATE(5849)] = 213921, + [SMALL_STATE(5850)] = 213946, + [SMALL_STATE(5851)] = 213965, + [SMALL_STATE(5852)] = 213984, + [SMALL_STATE(5853)] = 214005, + [SMALL_STATE(5854)] = 214030, + [SMALL_STATE(5855)] = 214055, + [SMALL_STATE(5856)] = 214080, + [SMALL_STATE(5857)] = 214105, + [SMALL_STATE(5858)] = 214124, + [SMALL_STATE(5859)] = 214143, + [SMALL_STATE(5860)] = 214168, + [SMALL_STATE(5861)] = 214193, + [SMALL_STATE(5862)] = 214218, + [SMALL_STATE(5863)] = 214243, + [SMALL_STATE(5864)] = 214268, + [SMALL_STATE(5865)] = 214293, + [SMALL_STATE(5866)] = 214318, + [SMALL_STATE(5867)] = 214343, + [SMALL_STATE(5868)] = 214368, + [SMALL_STATE(5869)] = 214393, + [SMALL_STATE(5870)] = 214418, + [SMALL_STATE(5871)] = 214443, + [SMALL_STATE(5872)] = 214468, + [SMALL_STATE(5873)] = 214493, + [SMALL_STATE(5874)] = 214518, + [SMALL_STATE(5875)] = 214543, + [SMALL_STATE(5876)] = 214568, + [SMALL_STATE(5877)] = 214593, + [SMALL_STATE(5878)] = 214612, + [SMALL_STATE(5879)] = 214639, + [SMALL_STATE(5880)] = 214660, + [SMALL_STATE(5881)] = 214685, + [SMALL_STATE(5882)] = 214704, + [SMALL_STATE(5883)] = 214729, + [SMALL_STATE(5884)] = 214748, + [SMALL_STATE(5885)] = 214769, + [SMALL_STATE(5886)] = 214790, + [SMALL_STATE(5887)] = 214809, + [SMALL_STATE(5888)] = 214838, + [SMALL_STATE(5889)] = 214861, + [SMALL_STATE(5890)] = 214886, + [SMALL_STATE(5891)] = 214913, + [SMALL_STATE(5892)] = 214938, + [SMALL_STATE(5893)] = 214963, + [SMALL_STATE(5894)] = 214988, + [SMALL_STATE(5895)] = 215009, + [SMALL_STATE(5896)] = 215036, + [SMALL_STATE(5897)] = 215061, + [SMALL_STATE(5898)] = 215086, + [SMALL_STATE(5899)] = 215111, + [SMALL_STATE(5900)] = 215136, + [SMALL_STATE(5901)] = 215161, + [SMALL_STATE(5902)] = 215186, + [SMALL_STATE(5903)] = 215213, + [SMALL_STATE(5904)] = 215234, + [SMALL_STATE(5905)] = 215259, + [SMALL_STATE(5906)] = 215286, + [SMALL_STATE(5907)] = 215311, + [SMALL_STATE(5908)] = 215336, + [SMALL_STATE(5909)] = 215363, + [SMALL_STATE(5910)] = 215388, + [SMALL_STATE(5911)] = 215413, + [SMALL_STATE(5912)] = 215438, + [SMALL_STATE(5913)] = 215465, + [SMALL_STATE(5914)] = 215490, + [SMALL_STATE(5915)] = 215515, + [SMALL_STATE(5916)] = 215540, + [SMALL_STATE(5917)] = 215565, + [SMALL_STATE(5918)] = 215592, + [SMALL_STATE(5919)] = 215617, + [SMALL_STATE(5920)] = 215642, + [SMALL_STATE(5921)] = 215669, + [SMALL_STATE(5922)] = 215694, + [SMALL_STATE(5923)] = 215719, + [SMALL_STATE(5924)] = 215746, + [SMALL_STATE(5925)] = 215771, + [SMALL_STATE(5926)] = 215796, + [SMALL_STATE(5927)] = 215823, + [SMALL_STATE(5928)] = 215842, + [SMALL_STATE(5929)] = 215867, + [SMALL_STATE(5930)] = 215894, + [SMALL_STATE(5931)] = 215921, + [SMALL_STATE(5932)] = 215948, + [SMALL_STATE(5933)] = 215967, + [SMALL_STATE(5934)] = 215994, + [SMALL_STATE(5935)] = 216013, + [SMALL_STATE(5936)] = 216032, + [SMALL_STATE(5937)] = 216059, + [SMALL_STATE(5938)] = 216084, + [SMALL_STATE(5939)] = 216113, + [SMALL_STATE(5940)] = 216140, + [SMALL_STATE(5941)] = 216163, + [SMALL_STATE(5942)] = 216190, + [SMALL_STATE(5943)] = 216217, + [SMALL_STATE(5944)] = 216244, + [SMALL_STATE(5945)] = 216267, + [SMALL_STATE(5946)] = 216294, + [SMALL_STATE(5947)] = 216321, + [SMALL_STATE(5948)] = 216348, + [SMALL_STATE(5949)] = 216375, + [SMALL_STATE(5950)] = 216402, + [SMALL_STATE(5951)] = 216429, + [SMALL_STATE(5952)] = 216456, + [SMALL_STATE(5953)] = 216483, + [SMALL_STATE(5954)] = 216510, + [SMALL_STATE(5955)] = 216537, + [SMALL_STATE(5956)] = 216564, + [SMALL_STATE(5957)] = 216591, + [SMALL_STATE(5958)] = 216618, + [SMALL_STATE(5959)] = 216645, + [SMALL_STATE(5960)] = 216672, + [SMALL_STATE(5961)] = 216699, + [SMALL_STATE(5962)] = 216726, + [SMALL_STATE(5963)] = 216753, + [SMALL_STATE(5964)] = 216780, + [SMALL_STATE(5965)] = 216807, + [SMALL_STATE(5966)] = 216834, + [SMALL_STATE(5967)] = 216861, + [SMALL_STATE(5968)] = 216888, + [SMALL_STATE(5969)] = 216913, + [SMALL_STATE(5970)] = 216938, + [SMALL_STATE(5971)] = 216965, + [SMALL_STATE(5972)] = 216984, + [SMALL_STATE(5973)] = 217005, + [SMALL_STATE(5974)] = 217026, + [SMALL_STATE(5975)] = 217047, + [SMALL_STATE(5976)] = 217072, + [SMALL_STATE(5977)] = 217093, + [SMALL_STATE(5978)] = 217114, + [SMALL_STATE(5979)] = 217135, + [SMALL_STATE(5980)] = 217160, + [SMALL_STATE(5981)] = 217185, + [SMALL_STATE(5982)] = 217204, + [SMALL_STATE(5983)] = 217223, + [SMALL_STATE(5984)] = 217248, + [SMALL_STATE(5985)] = 217273, + [SMALL_STATE(5986)] = 217302, + [SMALL_STATE(5987)] = 217327, + [SMALL_STATE(5988)] = 217352, + [SMALL_STATE(5989)] = 217373, + [SMALL_STATE(5990)] = 217392, + [SMALL_STATE(5991)] = 217417, + [SMALL_STATE(5992)] = 217436, + [SMALL_STATE(5993)] = 217455, + [SMALL_STATE(5994)] = 217474, + [SMALL_STATE(5995)] = 217493, + [SMALL_STATE(5996)] = 217512, + [SMALL_STATE(5997)] = 217541, + [SMALL_STATE(5998)] = 217562, + [SMALL_STATE(5999)] = 217587, + [SMALL_STATE(6000)] = 217611, + [SMALL_STATE(6001)] = 217635, + [SMALL_STATE(6002)] = 217661, + [SMALL_STATE(6003)] = 217679, + [SMALL_STATE(6004)] = 217705, + [SMALL_STATE(6005)] = 217727, + [SMALL_STATE(6006)] = 217745, + [SMALL_STATE(6007)] = 217767, + [SMALL_STATE(6008)] = 217785, + [SMALL_STATE(6009)] = 217803, + [SMALL_STATE(6010)] = 217829, + [SMALL_STATE(6011)] = 217849, + [SMALL_STATE(6012)] = 217871, + [SMALL_STATE(6013)] = 217895, + [SMALL_STATE(6014)] = 217917, + [SMALL_STATE(6015)] = 217937, + [SMALL_STATE(6016)] = 217955, + [SMALL_STATE(6017)] = 217981, + [SMALL_STATE(6018)] = 217999, + [SMALL_STATE(6019)] = 218025, + [SMALL_STATE(6020)] = 218045, + [SMALL_STATE(6021)] = 218071, + [SMALL_STATE(6022)] = 218097, + [SMALL_STATE(6023)] = 218115, + [SMALL_STATE(6024)] = 218141, + [SMALL_STATE(6025)] = 218159, + [SMALL_STATE(6026)] = 218185, + [SMALL_STATE(6027)] = 218211, + [SMALL_STATE(6028)] = 218229, + [SMALL_STATE(6029)] = 218251, + [SMALL_STATE(6030)] = 218273, + [SMALL_STATE(6031)] = 218295, + [SMALL_STATE(6032)] = 218313, + [SMALL_STATE(6033)] = 218335, + [SMALL_STATE(6034)] = 218357, + [SMALL_STATE(6035)] = 218383, + [SMALL_STATE(6036)] = 218401, + [SMALL_STATE(6037)] = 218427, + [SMALL_STATE(6038)] = 218445, + [SMALL_STATE(6039)] = 218465, + [SMALL_STATE(6040)] = 218491, + [SMALL_STATE(6041)] = 218517, + [SMALL_STATE(6042)] = 218543, + [SMALL_STATE(6043)] = 218569, + [SMALL_STATE(6044)] = 218587, + [SMALL_STATE(6045)] = 218605, + [SMALL_STATE(6046)] = 218623, + [SMALL_STATE(6047)] = 218649, + [SMALL_STATE(6048)] = 218667, + [SMALL_STATE(6049)] = 218685, + [SMALL_STATE(6050)] = 218711, + [SMALL_STATE(6051)] = 218737, + [SMALL_STATE(6052)] = 218763, + [SMALL_STATE(6053)] = 218789, + [SMALL_STATE(6054)] = 218815, + [SMALL_STATE(6055)] = 218833, + [SMALL_STATE(6056)] = 218851, + [SMALL_STATE(6057)] = 218869, + [SMALL_STATE(6058)] = 218887, + [SMALL_STATE(6059)] = 218913, + [SMALL_STATE(6060)] = 218933, + [SMALL_STATE(6061)] = 218959, + [SMALL_STATE(6062)] = 218979, + [SMALL_STATE(6063)] = 218997, + [SMALL_STATE(6064)] = 219023, + [SMALL_STATE(6065)] = 219051, + [SMALL_STATE(6066)] = 219077, + [SMALL_STATE(6067)] = 219103, + [SMALL_STATE(6068)] = 219129, + [SMALL_STATE(6069)] = 219155, + [SMALL_STATE(6070)] = 219175, + [SMALL_STATE(6071)] = 219193, + [SMALL_STATE(6072)] = 219219, + [SMALL_STATE(6073)] = 219239, + [SMALL_STATE(6074)] = 219261, + [SMALL_STATE(6075)] = 219281, + [SMALL_STATE(6076)] = 219307, + [SMALL_STATE(6077)] = 219333, + [SMALL_STATE(6078)] = 219357, + [SMALL_STATE(6079)] = 219385, + [SMALL_STATE(6080)] = 219407, + [SMALL_STATE(6081)] = 219429, + [SMALL_STATE(6082)] = 219447, + [SMALL_STATE(6083)] = 219473, + [SMALL_STATE(6084)] = 219499, + [SMALL_STATE(6085)] = 219517, + [SMALL_STATE(6086)] = 219535, + [SMALL_STATE(6087)] = 219561, + [SMALL_STATE(6088)] = 219587, + [SMALL_STATE(6089)] = 219607, + [SMALL_STATE(6090)] = 219627, + [SMALL_STATE(6091)] = 219653, + [SMALL_STATE(6092)] = 219678, + [SMALL_STATE(6093)] = 219697, + [SMALL_STATE(6094)] = 219722, + [SMALL_STATE(6095)] = 219739, + [SMALL_STATE(6096)] = 219756, + [SMALL_STATE(6097)] = 219773, + [SMALL_STATE(6098)] = 219798, + [SMALL_STATE(6099)] = 219815, + [SMALL_STATE(6100)] = 219832, + [SMALL_STATE(6101)] = 219855, + [SMALL_STATE(6102)] = 219880, + [SMALL_STATE(6103)] = 219905, + [SMALL_STATE(6104)] = 219922, + [SMALL_STATE(6105)] = 219945, + [SMALL_STATE(6106)] = 219962, + [SMALL_STATE(6107)] = 219987, + [SMALL_STATE(6108)] = 220008, + [SMALL_STATE(6109)] = 220027, + [SMALL_STATE(6110)] = 220044, + [SMALL_STATE(6111)] = 220067, + [SMALL_STATE(6112)] = 220084, + [SMALL_STATE(6113)] = 220107, + [SMALL_STATE(6114)] = 220132, + [SMALL_STATE(6115)] = 220149, + [SMALL_STATE(6116)] = 220166, + [SMALL_STATE(6117)] = 220187, + [SMALL_STATE(6118)] = 220202, + [SMALL_STATE(6119)] = 220225, + [SMALL_STATE(6120)] = 220246, + [SMALL_STATE(6121)] = 220271, + [SMALL_STATE(6122)] = 220296, + [SMALL_STATE(6123)] = 220317, + [SMALL_STATE(6124)] = 220334, + [SMALL_STATE(6125)] = 220357, + [SMALL_STATE(6126)] = 220374, + [SMALL_STATE(6127)] = 220399, + [SMALL_STATE(6128)] = 220418, + [SMALL_STATE(6129)] = 220437, + [SMALL_STATE(6130)] = 220454, + [SMALL_STATE(6131)] = 220479, + [SMALL_STATE(6132)] = 220496, + [SMALL_STATE(6133)] = 220513, + [SMALL_STATE(6134)] = 220538, + [SMALL_STATE(6135)] = 220557, + [SMALL_STATE(6136)] = 220576, + [SMALL_STATE(6137)] = 220599, + [SMALL_STATE(6138)] = 220616, + [SMALL_STATE(6139)] = 220633, + [SMALL_STATE(6140)] = 220650, + [SMALL_STATE(6141)] = 220671, + [SMALL_STATE(6142)] = 220688, + [SMALL_STATE(6143)] = 220713, + [SMALL_STATE(6144)] = 220738, + [SMALL_STATE(6145)] = 220761, + [SMALL_STATE(6146)] = 220778, + [SMALL_STATE(6147)] = 220799, + [SMALL_STATE(6148)] = 220824, + [SMALL_STATE(6149)] = 220849, + [SMALL_STATE(6150)] = 220872, + [SMALL_STATE(6151)] = 220897, + [SMALL_STATE(6152)] = 220922, + [SMALL_STATE(6153)] = 220947, + [SMALL_STATE(6154)] = 220972, + [SMALL_STATE(6155)] = 220997, + [SMALL_STATE(6156)] = 221020, + [SMALL_STATE(6157)] = 221037, + [SMALL_STATE(6158)] = 221062, + [SMALL_STATE(6159)] = 221087, + [SMALL_STATE(6160)] = 221110, + [SMALL_STATE(6161)] = 221135, + [SMALL_STATE(6162)] = 221160, + [SMALL_STATE(6163)] = 221185, + [SMALL_STATE(6164)] = 221208, + [SMALL_STATE(6165)] = 221233, + [SMALL_STATE(6166)] = 221252, + [SMALL_STATE(6167)] = 221277, + [SMALL_STATE(6168)] = 221300, + [SMALL_STATE(6169)] = 221317, + [SMALL_STATE(6170)] = 221342, + [SMALL_STATE(6171)] = 221367, + [SMALL_STATE(6172)] = 221390, + [SMALL_STATE(6173)] = 221407, + [SMALL_STATE(6174)] = 221428, + [SMALL_STATE(6175)] = 221453, + [SMALL_STATE(6176)] = 221478, + [SMALL_STATE(6177)] = 221501, + [SMALL_STATE(6178)] = 221526, + [SMALL_STATE(6179)] = 221543, + [SMALL_STATE(6180)] = 221560, + [SMALL_STATE(6181)] = 221583, + [SMALL_STATE(6182)] = 221608, + [SMALL_STATE(6183)] = 221633, + [SMALL_STATE(6184)] = 221656, + [SMALL_STATE(6185)] = 221681, + [SMALL_STATE(6186)] = 221698, + [SMALL_STATE(6187)] = 221715, + [SMALL_STATE(6188)] = 221740, + [SMALL_STATE(6189)] = 221757, + [SMALL_STATE(6190)] = 221774, + [SMALL_STATE(6191)] = 221797, + [SMALL_STATE(6192)] = 221822, + [SMALL_STATE(6193)] = 221847, + [SMALL_STATE(6194)] = 221870, + [SMALL_STATE(6195)] = 221895, + [SMALL_STATE(6196)] = 221920, + [SMALL_STATE(6197)] = 221945, + [SMALL_STATE(6198)] = 221970, + [SMALL_STATE(6199)] = 221995, + [SMALL_STATE(6200)] = 222020, + [SMALL_STATE(6201)] = 222045, + [SMALL_STATE(6202)] = 222068, + [SMALL_STATE(6203)] = 222093, + [SMALL_STATE(6204)] = 222118, + [SMALL_STATE(6205)] = 222141, + [SMALL_STATE(6206)] = 222166, + [SMALL_STATE(6207)] = 222191, + [SMALL_STATE(6208)] = 222208, + [SMALL_STATE(6209)] = 222233, + [SMALL_STATE(6210)] = 222258, + [SMALL_STATE(6211)] = 222281, + [SMALL_STATE(6212)] = 222306, + [SMALL_STATE(6213)] = 222331, + [SMALL_STATE(6214)] = 222354, + [SMALL_STATE(6215)] = 222379, + [SMALL_STATE(6216)] = 222404, + [SMALL_STATE(6217)] = 222429, + [SMALL_STATE(6218)] = 222454, + [SMALL_STATE(6219)] = 222479, + [SMALL_STATE(6220)] = 222496, + [SMALL_STATE(6221)] = 222513, + [SMALL_STATE(6222)] = 222538, + [SMALL_STATE(6223)] = 222563, + [SMALL_STATE(6224)] = 222586, + [SMALL_STATE(6225)] = 222611, + [SMALL_STATE(6226)] = 222636, + [SMALL_STATE(6227)] = 222661, + [SMALL_STATE(6228)] = 222684, + [SMALL_STATE(6229)] = 222701, + [SMALL_STATE(6230)] = 222726, + [SMALL_STATE(6231)] = 222743, + [SMALL_STATE(6232)] = 222768, + [SMALL_STATE(6233)] = 222785, + [SMALL_STATE(6234)] = 222810, + [SMALL_STATE(6235)] = 222833, + [SMALL_STATE(6236)] = 222858, + [SMALL_STATE(6237)] = 222883, + [SMALL_STATE(6238)] = 222906, + [SMALL_STATE(6239)] = 222931, + [SMALL_STATE(6240)] = 222956, + [SMALL_STATE(6241)] = 222981, + [SMALL_STATE(6242)] = 223006, + [SMALL_STATE(6243)] = 223023, + [SMALL_STATE(6244)] = 223040, + [SMALL_STATE(6245)] = 223063, + [SMALL_STATE(6246)] = 223086, + [SMALL_STATE(6247)] = 223111, + [SMALL_STATE(6248)] = 223128, + [SMALL_STATE(6249)] = 223153, + [SMALL_STATE(6250)] = 223178, + [SMALL_STATE(6251)] = 223203, + [SMALL_STATE(6252)] = 223226, + [SMALL_STATE(6253)] = 223249, + [SMALL_STATE(6254)] = 223274, + [SMALL_STATE(6255)] = 223299, + [SMALL_STATE(6256)] = 223324, + [SMALL_STATE(6257)] = 223349, + [SMALL_STATE(6258)] = 223372, + [SMALL_STATE(6259)] = 223393, + [SMALL_STATE(6260)] = 223416, + [SMALL_STATE(6261)] = 223441, + [SMALL_STATE(6262)] = 223460, + [SMALL_STATE(6263)] = 223485, + [SMALL_STATE(6264)] = 223506, + [SMALL_STATE(6265)] = 223531, + [SMALL_STATE(6266)] = 223556, + [SMALL_STATE(6267)] = 223581, + [SMALL_STATE(6268)] = 223602, + [SMALL_STATE(6269)] = 223627, + [SMALL_STATE(6270)] = 223648, + [SMALL_STATE(6271)] = 223673, + [SMALL_STATE(6272)] = 223696, + [SMALL_STATE(6273)] = 223721, + [SMALL_STATE(6274)] = 223746, + [SMALL_STATE(6275)] = 223771, + [SMALL_STATE(6276)] = 223796, + [SMALL_STATE(6277)] = 223815, + [SMALL_STATE(6278)] = 223834, + [SMALL_STATE(6279)] = 223855, + [SMALL_STATE(6280)] = 223880, + [SMALL_STATE(6281)] = 223905, + [SMALL_STATE(6282)] = 223930, + [SMALL_STATE(6283)] = 223955, + [SMALL_STATE(6284)] = 223976, + [SMALL_STATE(6285)] = 224001, + [SMALL_STATE(6286)] = 224018, + [SMALL_STATE(6287)] = 224043, + [SMALL_STATE(6288)] = 224068, + [SMALL_STATE(6289)] = 224085, + [SMALL_STATE(6290)] = 224110, + [SMALL_STATE(6291)] = 224135, + [SMALL_STATE(6292)] = 224152, + [SMALL_STATE(6293)] = 224169, + [SMALL_STATE(6294)] = 224194, + [SMALL_STATE(6295)] = 224211, + [SMALL_STATE(6296)] = 224236, + [SMALL_STATE(6297)] = 224255, + [SMALL_STATE(6298)] = 224274, + [SMALL_STATE(6299)] = 224291, + [SMALL_STATE(6300)] = 224316, + [SMALL_STATE(6301)] = 224339, + [SMALL_STATE(6302)] = 224364, + [SMALL_STATE(6303)] = 224389, + [SMALL_STATE(6304)] = 224414, + [SMALL_STATE(6305)] = 224431, + [SMALL_STATE(6306)] = 224454, + [SMALL_STATE(6307)] = 224477, + [SMALL_STATE(6308)] = 224502, + [SMALL_STATE(6309)] = 224527, + [SMALL_STATE(6310)] = 224548, + [SMALL_STATE(6311)] = 224573, + [SMALL_STATE(6312)] = 224596, + [SMALL_STATE(6313)] = 224617, + [SMALL_STATE(6314)] = 224642, + [SMALL_STATE(6315)] = 224659, + [SMALL_STATE(6316)] = 224680, + [SMALL_STATE(6317)] = 224697, + [SMALL_STATE(6318)] = 224722, + [SMALL_STATE(6319)] = 224747, + [SMALL_STATE(6320)] = 224772, + [SMALL_STATE(6321)] = 224789, + [SMALL_STATE(6322)] = 224806, + [SMALL_STATE(6323)] = 224827, + [SMALL_STATE(6324)] = 224852, + [SMALL_STATE(6325)] = 224877, + [SMALL_STATE(6326)] = 224896, + [SMALL_STATE(6327)] = 224921, + [SMALL_STATE(6328)] = 224940, + [SMALL_STATE(6329)] = 224959, + [SMALL_STATE(6330)] = 224978, + [SMALL_STATE(6331)] = 225003, + [SMALL_STATE(6332)] = 225020, + [SMALL_STATE(6333)] = 225037, + [SMALL_STATE(6334)] = 225058, + [SMALL_STATE(6335)] = 225075, + [SMALL_STATE(6336)] = 225096, + [SMALL_STATE(6337)] = 225121, + [SMALL_STATE(6338)] = 225146, + [SMALL_STATE(6339)] = 225163, + [SMALL_STATE(6340)] = 225184, + [SMALL_STATE(6341)] = 225201, + [SMALL_STATE(6342)] = 225218, + [SMALL_STATE(6343)] = 225243, + [SMALL_STATE(6344)] = 225260, + [SMALL_STATE(6345)] = 225281, + [SMALL_STATE(6346)] = 225306, + [SMALL_STATE(6347)] = 225331, + [SMALL_STATE(6348)] = 225350, + [SMALL_STATE(6349)] = 225367, + [SMALL_STATE(6350)] = 225386, + [SMALL_STATE(6351)] = 225409, + [SMALL_STATE(6352)] = 225426, + [SMALL_STATE(6353)] = 225443, + [SMALL_STATE(6354)] = 225466, + [SMALL_STATE(6355)] = 225487, + [SMALL_STATE(6356)] = 225504, + [SMALL_STATE(6357)] = 225521, + [SMALL_STATE(6358)] = 225540, + [SMALL_STATE(6359)] = 225565, + [SMALL_STATE(6360)] = 225590, + [SMALL_STATE(6361)] = 225607, + [SMALL_STATE(6362)] = 225632, + [SMALL_STATE(6363)] = 225655, + [SMALL_STATE(6364)] = 225680, + [SMALL_STATE(6365)] = 225699, + [SMALL_STATE(6366)] = 225720, + [SMALL_STATE(6367)] = 225745, + [SMALL_STATE(6368)] = 225766, + [SMALL_STATE(6369)] = 225785, + [SMALL_STATE(6370)] = 225810, + [SMALL_STATE(6371)] = 225835, + [SMALL_STATE(6372)] = 225856, + [SMALL_STATE(6373)] = 225873, + [SMALL_STATE(6374)] = 225898, + [SMALL_STATE(6375)] = 225915, + [SMALL_STATE(6376)] = 225940, + [SMALL_STATE(6377)] = 225960, + [SMALL_STATE(6378)] = 225974, + [SMALL_STATE(6379)] = 225988, + [SMALL_STATE(6380)] = 226010, + [SMALL_STATE(6381)] = 226032, + [SMALL_STATE(6382)] = 226054, + [SMALL_STATE(6383)] = 226068, + [SMALL_STATE(6384)] = 226090, + [SMALL_STATE(6385)] = 226104, + [SMALL_STATE(6386)] = 226118, + [SMALL_STATE(6387)] = 226132, + [SMALL_STATE(6388)] = 226146, + [SMALL_STATE(6389)] = 226168, + [SMALL_STATE(6390)] = 226182, + [SMALL_STATE(6391)] = 226204, + [SMALL_STATE(6392)] = 226222, + [SMALL_STATE(6393)] = 226244, + [SMALL_STATE(6394)] = 226260, + [SMALL_STATE(6395)] = 226282, + [SMALL_STATE(6396)] = 226302, + [SMALL_STATE(6397)] = 226324, + [SMALL_STATE(6398)] = 226346, + [SMALL_STATE(6399)] = 226364, + [SMALL_STATE(6400)] = 226386, + [SMALL_STATE(6401)] = 226408, + [SMALL_STATE(6402)] = 226428, + [SMALL_STATE(6403)] = 226442, + [SMALL_STATE(6404)] = 226464, + [SMALL_STATE(6405)] = 226486, + [SMALL_STATE(6406)] = 226500, + [SMALL_STATE(6407)] = 226522, + [SMALL_STATE(6408)] = 226544, + [SMALL_STATE(6409)] = 226560, + [SMALL_STATE(6410)] = 226574, + [SMALL_STATE(6411)] = 226588, + [SMALL_STATE(6412)] = 226604, + [SMALL_STATE(6413)] = 226626, + [SMALL_STATE(6414)] = 226648, + [SMALL_STATE(6415)] = 226662, + [SMALL_STATE(6416)] = 226676, + [SMALL_STATE(6417)] = 226698, + [SMALL_STATE(6418)] = 226720, + [SMALL_STATE(6419)] = 226736, + [SMALL_STATE(6420)] = 226752, + [SMALL_STATE(6421)] = 226768, + [SMALL_STATE(6422)] = 226786, + [SMALL_STATE(6423)] = 226808, + [SMALL_STATE(6424)] = 226830, + [SMALL_STATE(6425)] = 226852, + [SMALL_STATE(6426)] = 226874, + [SMALL_STATE(6427)] = 226896, + [SMALL_STATE(6428)] = 226910, + [SMALL_STATE(6429)] = 226926, + [SMALL_STATE(6430)] = 226942, + [SMALL_STATE(6431)] = 226956, + [SMALL_STATE(6432)] = 226978, + [SMALL_STATE(6433)] = 226994, + [SMALL_STATE(6434)] = 227014, + [SMALL_STATE(6435)] = 227036, + [SMALL_STATE(6436)] = 227054, + [SMALL_STATE(6437)] = 227072, + [SMALL_STATE(6438)] = 227094, + [SMALL_STATE(6439)] = 227110, + [SMALL_STATE(6440)] = 227128, + [SMALL_STATE(6441)] = 227150, + [SMALL_STATE(6442)] = 227166, + [SMALL_STATE(6443)] = 227182, + [SMALL_STATE(6444)] = 227202, + [SMALL_STATE(6445)] = 227222, + [SMALL_STATE(6446)] = 227244, + [SMALL_STATE(6447)] = 227266, + [SMALL_STATE(6448)] = 227288, + [SMALL_STATE(6449)] = 227310, + [SMALL_STATE(6450)] = 227332, + [SMALL_STATE(6451)] = 227354, + [SMALL_STATE(6452)] = 227372, + [SMALL_STATE(6453)] = 227394, + [SMALL_STATE(6454)] = 227416, + [SMALL_STATE(6455)] = 227438, + [SMALL_STATE(6456)] = 227460, + [SMALL_STATE(6457)] = 227482, + [SMALL_STATE(6458)] = 227498, + [SMALL_STATE(6459)] = 227516, + [SMALL_STATE(6460)] = 227538, + [SMALL_STATE(6461)] = 227560, + [SMALL_STATE(6462)] = 227582, + [SMALL_STATE(6463)] = 227604, + [SMALL_STATE(6464)] = 227626, + [SMALL_STATE(6465)] = 227648, + [SMALL_STATE(6466)] = 227670, + [SMALL_STATE(6467)] = 227692, + [SMALL_STATE(6468)] = 227714, + [SMALL_STATE(6469)] = 227736, + [SMALL_STATE(6470)] = 227758, + [SMALL_STATE(6471)] = 227780, + [SMALL_STATE(6472)] = 227802, + [SMALL_STATE(6473)] = 227824, + [SMALL_STATE(6474)] = 227846, + [SMALL_STATE(6475)] = 227864, + [SMALL_STATE(6476)] = 227878, + [SMALL_STATE(6477)] = 227900, + [SMALL_STATE(6478)] = 227922, + [SMALL_STATE(6479)] = 227944, + [SMALL_STATE(6480)] = 227966, + [SMALL_STATE(6481)] = 227988, + [SMALL_STATE(6482)] = 228010, + [SMALL_STATE(6483)] = 228024, + [SMALL_STATE(6484)] = 228038, + [SMALL_STATE(6485)] = 228052, + [SMALL_STATE(6486)] = 228070, + [SMALL_STATE(6487)] = 228092, + [SMALL_STATE(6488)] = 228114, + [SMALL_STATE(6489)] = 228132, + [SMALL_STATE(6490)] = 228146, + [SMALL_STATE(6491)] = 228164, + [SMALL_STATE(6492)] = 228184, + [SMALL_STATE(6493)] = 228206, + [SMALL_STATE(6494)] = 228228, + [SMALL_STATE(6495)] = 228244, + [SMALL_STATE(6496)] = 228264, + [SMALL_STATE(6497)] = 228286, + [SMALL_STATE(6498)] = 228308, + [SMALL_STATE(6499)] = 228330, + [SMALL_STATE(6500)] = 228352, + [SMALL_STATE(6501)] = 228366, + [SMALL_STATE(6502)] = 228382, + [SMALL_STATE(6503)] = 228404, + [SMALL_STATE(6504)] = 228426, + [SMALL_STATE(6505)] = 228444, + [SMALL_STATE(6506)] = 228458, + [SMALL_STATE(6507)] = 228476, + [SMALL_STATE(6508)] = 228498, + [SMALL_STATE(6509)] = 228520, + [SMALL_STATE(6510)] = 228542, + [SMALL_STATE(6511)] = 228558, + [SMALL_STATE(6512)] = 228574, + [SMALL_STATE(6513)] = 228592, + [SMALL_STATE(6514)] = 228614, + [SMALL_STATE(6515)] = 228636, + [SMALL_STATE(6516)] = 228650, + [SMALL_STATE(6517)] = 228666, + [SMALL_STATE(6518)] = 228682, + [SMALL_STATE(6519)] = 228698, + [SMALL_STATE(6520)] = 228712, + [SMALL_STATE(6521)] = 228734, + [SMALL_STATE(6522)] = 228750, + [SMALL_STATE(6523)] = 228772, + [SMALL_STATE(6524)] = 228794, + [SMALL_STATE(6525)] = 228808, + [SMALL_STATE(6526)] = 228830, + [SMALL_STATE(6527)] = 228844, + [SMALL_STATE(6528)] = 228866, + [SMALL_STATE(6529)] = 228880, + [SMALL_STATE(6530)] = 228902, + [SMALL_STATE(6531)] = 228924, + [SMALL_STATE(6532)] = 228942, + [SMALL_STATE(6533)] = 228956, + [SMALL_STATE(6534)] = 228978, + [SMALL_STATE(6535)] = 229000, + [SMALL_STATE(6536)] = 229022, + [SMALL_STATE(6537)] = 229044, + [SMALL_STATE(6538)] = 229062, + [SMALL_STATE(6539)] = 229084, + [SMALL_STATE(6540)] = 229102, + [SMALL_STATE(6541)] = 229124, + [SMALL_STATE(6542)] = 229146, + [SMALL_STATE(6543)] = 229160, + [SMALL_STATE(6544)] = 229182, + [SMALL_STATE(6545)] = 229196, + [SMALL_STATE(6546)] = 229212, + [SMALL_STATE(6547)] = 229234, + [SMALL_STATE(6548)] = 229248, + [SMALL_STATE(6549)] = 229266, + [SMALL_STATE(6550)] = 229288, + [SMALL_STATE(6551)] = 229306, + [SMALL_STATE(6552)] = 229328, + [SMALL_STATE(6553)] = 229350, + [SMALL_STATE(6554)] = 229372, + [SMALL_STATE(6555)] = 229394, + [SMALL_STATE(6556)] = 229408, + [SMALL_STATE(6557)] = 229426, + [SMALL_STATE(6558)] = 229440, + [SMALL_STATE(6559)] = 229462, + [SMALL_STATE(6560)] = 229476, + [SMALL_STATE(6561)] = 229490, + [SMALL_STATE(6562)] = 229512, + [SMALL_STATE(6563)] = 229526, + [SMALL_STATE(6564)] = 229540, + [SMALL_STATE(6565)] = 229562, + [SMALL_STATE(6566)] = 229576, + [SMALL_STATE(6567)] = 229598, + [SMALL_STATE(6568)] = 229620, + [SMALL_STATE(6569)] = 229638, + [SMALL_STATE(6570)] = 229660, + [SMALL_STATE(6571)] = 229678, + [SMALL_STATE(6572)] = 229692, + [SMALL_STATE(6573)] = 229706, + [SMALL_STATE(6574)] = 229724, + [SMALL_STATE(6575)] = 229738, + [SMALL_STATE(6576)] = 229754, + [SMALL_STATE(6577)] = 229774, + [SMALL_STATE(6578)] = 229794, + [SMALL_STATE(6579)] = 229812, + [SMALL_STATE(6580)] = 229834, + [SMALL_STATE(6581)] = 229856, + [SMALL_STATE(6582)] = 229878, + [SMALL_STATE(6583)] = 229898, + [SMALL_STATE(6584)] = 229920, + [SMALL_STATE(6585)] = 229934, + [SMALL_STATE(6586)] = 229956, + [SMALL_STATE(6587)] = 229974, + [SMALL_STATE(6588)] = 229996, + [SMALL_STATE(6589)] = 230018, + [SMALL_STATE(6590)] = 230036, + [SMALL_STATE(6591)] = 230058, + [SMALL_STATE(6592)] = 230080, + [SMALL_STATE(6593)] = 230102, + [SMALL_STATE(6594)] = 230120, + [SMALL_STATE(6595)] = 230140, + [SMALL_STATE(6596)] = 230158, + [SMALL_STATE(6597)] = 230180, + [SMALL_STATE(6598)] = 230194, + [SMALL_STATE(6599)] = 230214, + [SMALL_STATE(6600)] = 230236, + [SMALL_STATE(6601)] = 230258, + [SMALL_STATE(6602)] = 230280, + [SMALL_STATE(6603)] = 230302, + [SMALL_STATE(6604)] = 230324, + [SMALL_STATE(6605)] = 230346, + [SMALL_STATE(6606)] = 230368, + [SMALL_STATE(6607)] = 230390, + [SMALL_STATE(6608)] = 230412, + [SMALL_STATE(6609)] = 230434, + [SMALL_STATE(6610)] = 230456, + [SMALL_STATE(6611)] = 230478, + [SMALL_STATE(6612)] = 230500, + [SMALL_STATE(6613)] = 230522, + [SMALL_STATE(6614)] = 230544, + [SMALL_STATE(6615)] = 230566, + [SMALL_STATE(6616)] = 230588, + [SMALL_STATE(6617)] = 230610, + [SMALL_STATE(6618)] = 230632, + [SMALL_STATE(6619)] = 230654, + [SMALL_STATE(6620)] = 230676, + [SMALL_STATE(6621)] = 230698, + [SMALL_STATE(6622)] = 230720, + [SMALL_STATE(6623)] = 230742, + [SMALL_STATE(6624)] = 230756, + [SMALL_STATE(6625)] = 230778, + [SMALL_STATE(6626)] = 230800, + [SMALL_STATE(6627)] = 230822, + [SMALL_STATE(6628)] = 230844, + [SMALL_STATE(6629)] = 230866, + [SMALL_STATE(6630)] = 230888, + [SMALL_STATE(6631)] = 230910, + [SMALL_STATE(6632)] = 230932, + [SMALL_STATE(6633)] = 230954, + [SMALL_STATE(6634)] = 230976, + [SMALL_STATE(6635)] = 230998, + [SMALL_STATE(6636)] = 231020, + [SMALL_STATE(6637)] = 231040, + [SMALL_STATE(6638)] = 231062, + [SMALL_STATE(6639)] = 231084, + [SMALL_STATE(6640)] = 231106, + [SMALL_STATE(6641)] = 231128, + [SMALL_STATE(6642)] = 231150, + [SMALL_STATE(6643)] = 231172, + [SMALL_STATE(6644)] = 231186, + [SMALL_STATE(6645)] = 231208, + [SMALL_STATE(6646)] = 231222, + [SMALL_STATE(6647)] = 231236, + [SMALL_STATE(6648)] = 231250, + [SMALL_STATE(6649)] = 231272, + [SMALL_STATE(6650)] = 231286, + [SMALL_STATE(6651)] = 231306, + [SMALL_STATE(6652)] = 231320, + [SMALL_STATE(6653)] = 231340, + [SMALL_STATE(6654)] = 231358, + [SMALL_STATE(6655)] = 231372, + [SMALL_STATE(6656)] = 231386, + [SMALL_STATE(6657)] = 231400, + [SMALL_STATE(6658)] = 231418, + [SMALL_STATE(6659)] = 231433, + [SMALL_STATE(6660)] = 231452, + [SMALL_STATE(6661)] = 231471, + [SMALL_STATE(6662)] = 231484, + [SMALL_STATE(6663)] = 231497, + [SMALL_STATE(6664)] = 231516, + [SMALL_STATE(6665)] = 231533, + [SMALL_STATE(6666)] = 231548, + [SMALL_STATE(6667)] = 231567, + [SMALL_STATE(6668)] = 231586, + [SMALL_STATE(6669)] = 231601, + [SMALL_STATE(6670)] = 231620, + [SMALL_STATE(6671)] = 231635, + [SMALL_STATE(6672)] = 231652, + [SMALL_STATE(6673)] = 231665, + [SMALL_STATE(6674)] = 231684, + [SMALL_STATE(6675)] = 231701, + [SMALL_STATE(6676)] = 231716, + [SMALL_STATE(6677)] = 231733, + [SMALL_STATE(6678)] = 231752, + [SMALL_STATE(6679)] = 231765, + [SMALL_STATE(6680)] = 231780, + [SMALL_STATE(6681)] = 231793, + [SMALL_STATE(6682)] = 231806, + [SMALL_STATE(6683)] = 231819, + [SMALL_STATE(6684)] = 231838, + [SMALL_STATE(6685)] = 231857, + [SMALL_STATE(6686)] = 231876, + [SMALL_STATE(6687)] = 231895, + [SMALL_STATE(6688)] = 231914, + [SMALL_STATE(6689)] = 231933, + [SMALL_STATE(6690)] = 231952, + [SMALL_STATE(6691)] = 231971, + [SMALL_STATE(6692)] = 231984, + [SMALL_STATE(6693)] = 231997, + [SMALL_STATE(6694)] = 232010, + [SMALL_STATE(6695)] = 232029, + [SMALL_STATE(6696)] = 232042, + [SMALL_STATE(6697)] = 232055, + [SMALL_STATE(6698)] = 232072, + [SMALL_STATE(6699)] = 232087, + [SMALL_STATE(6700)] = 232100, + [SMALL_STATE(6701)] = 232113, + [SMALL_STATE(6702)] = 232126, + [SMALL_STATE(6703)] = 232139, + [SMALL_STATE(6704)] = 232156, + [SMALL_STATE(6705)] = 232171, + [SMALL_STATE(6706)] = 232186, + [SMALL_STATE(6707)] = 232201, + [SMALL_STATE(6708)] = 232220, + [SMALL_STATE(6709)] = 232235, + [SMALL_STATE(6710)] = 232254, + [SMALL_STATE(6711)] = 232271, + [SMALL_STATE(6712)] = 232286, + [SMALL_STATE(6713)] = 232299, + [SMALL_STATE(6714)] = 232312, + [SMALL_STATE(6715)] = 232327, + [SMALL_STATE(6716)] = 232346, + [SMALL_STATE(6717)] = 232365, + [SMALL_STATE(6718)] = 232384, + [SMALL_STATE(6719)] = 232403, + [SMALL_STATE(6720)] = 232422, + [SMALL_STATE(6721)] = 232441, + [SMALL_STATE(6722)] = 232460, + [SMALL_STATE(6723)] = 232479, + [SMALL_STATE(6724)] = 232492, + [SMALL_STATE(6725)] = 232505, + [SMALL_STATE(6726)] = 232518, + [SMALL_STATE(6727)] = 232531, + [SMALL_STATE(6728)] = 232544, + [SMALL_STATE(6729)] = 232557, + [SMALL_STATE(6730)] = 232574, + [SMALL_STATE(6731)] = 232587, + [SMALL_STATE(6732)] = 232606, + [SMALL_STATE(6733)] = 232619, + [SMALL_STATE(6734)] = 232632, + [SMALL_STATE(6735)] = 232649, + [SMALL_STATE(6736)] = 232666, + [SMALL_STATE(6737)] = 232683, + [SMALL_STATE(6738)] = 232702, + [SMALL_STATE(6739)] = 232717, + [SMALL_STATE(6740)] = 232734, + [SMALL_STATE(6741)] = 232747, + [SMALL_STATE(6742)] = 232766, + [SMALL_STATE(6743)] = 232779, + [SMALL_STATE(6744)] = 232798, + [SMALL_STATE(6745)] = 232817, + [SMALL_STATE(6746)] = 232836, + [SMALL_STATE(6747)] = 232855, + [SMALL_STATE(6748)] = 232874, + [SMALL_STATE(6749)] = 232893, + [SMALL_STATE(6750)] = 232912, + [SMALL_STATE(6751)] = 232931, + [SMALL_STATE(6752)] = 232944, + [SMALL_STATE(6753)] = 232957, + [SMALL_STATE(6754)] = 232970, + [SMALL_STATE(6755)] = 232983, + [SMALL_STATE(6756)] = 232996, + [SMALL_STATE(6757)] = 233013, + [SMALL_STATE(6758)] = 233032, + [SMALL_STATE(6759)] = 233045, + [SMALL_STATE(6760)] = 233058, + [SMALL_STATE(6761)] = 233077, + [SMALL_STATE(6762)] = 233092, + [SMALL_STATE(6763)] = 233109, + [SMALL_STATE(6764)] = 233126, + [SMALL_STATE(6765)] = 233143, + [SMALL_STATE(6766)] = 233158, + [SMALL_STATE(6767)] = 233177, + [SMALL_STATE(6768)] = 233190, + [SMALL_STATE(6769)] = 233209, + [SMALL_STATE(6770)] = 233222, + [SMALL_STATE(6771)] = 233241, + [SMALL_STATE(6772)] = 233256, + [SMALL_STATE(6773)] = 233269, + [SMALL_STATE(6774)] = 233288, + [SMALL_STATE(6775)] = 233307, + [SMALL_STATE(6776)] = 233326, + [SMALL_STATE(6777)] = 233345, + [SMALL_STATE(6778)] = 233364, + [SMALL_STATE(6779)] = 233383, + [SMALL_STATE(6780)] = 233402, + [SMALL_STATE(6781)] = 233421, + [SMALL_STATE(6782)] = 233438, + [SMALL_STATE(6783)] = 233455, + [SMALL_STATE(6784)] = 233468, + [SMALL_STATE(6785)] = 233481, + [SMALL_STATE(6786)] = 233494, + [SMALL_STATE(6787)] = 233507, + [SMALL_STATE(6788)] = 233524, + [SMALL_STATE(6789)] = 233543, + [SMALL_STATE(6790)] = 233560, + [SMALL_STATE(6791)] = 233579, + [SMALL_STATE(6792)] = 233598, + [SMALL_STATE(6793)] = 233611, + [SMALL_STATE(6794)] = 233628, + [SMALL_STATE(6795)] = 233647, + [SMALL_STATE(6796)] = 233666, + [SMALL_STATE(6797)] = 233679, + [SMALL_STATE(6798)] = 233698, + [SMALL_STATE(6799)] = 233711, + [SMALL_STATE(6800)] = 233730, + [SMALL_STATE(6801)] = 233743, + [SMALL_STATE(6802)] = 233762, + [SMALL_STATE(6803)] = 233781, + [SMALL_STATE(6804)] = 233794, + [SMALL_STATE(6805)] = 233813, + [SMALL_STATE(6806)] = 233832, + [SMALL_STATE(6807)] = 233851, + [SMALL_STATE(6808)] = 233870, + [SMALL_STATE(6809)] = 233889, + [SMALL_STATE(6810)] = 233908, + [SMALL_STATE(6811)] = 233927, + [SMALL_STATE(6812)] = 233946, + [SMALL_STATE(6813)] = 233961, + [SMALL_STATE(6814)] = 233980, + [SMALL_STATE(6815)] = 233993, + [SMALL_STATE(6816)] = 234006, + [SMALL_STATE(6817)] = 234019, + [SMALL_STATE(6818)] = 234032, + [SMALL_STATE(6819)] = 234049, + [SMALL_STATE(6820)] = 234068, + [SMALL_STATE(6821)] = 234087, + [SMALL_STATE(6822)] = 234100, + [SMALL_STATE(6823)] = 234117, + [SMALL_STATE(6824)] = 234136, + [SMALL_STATE(6825)] = 234155, + [SMALL_STATE(6826)] = 234168, + [SMALL_STATE(6827)] = 234183, + [SMALL_STATE(6828)] = 234196, + [SMALL_STATE(6829)] = 234215, + [SMALL_STATE(6830)] = 234234, + [SMALL_STATE(6831)] = 234253, + [SMALL_STATE(6832)] = 234272, + [SMALL_STATE(6833)] = 234291, + [SMALL_STATE(6834)] = 234310, + [SMALL_STATE(6835)] = 234329, + [SMALL_STATE(6836)] = 234348, + [SMALL_STATE(6837)] = 234367, + [SMALL_STATE(6838)] = 234386, + [SMALL_STATE(6839)] = 234405, + [SMALL_STATE(6840)] = 234424, + [SMALL_STATE(6841)] = 234437, + [SMALL_STATE(6842)] = 234450, + [SMALL_STATE(6843)] = 234469, + [SMALL_STATE(6844)] = 234486, + [SMALL_STATE(6845)] = 234505, + [SMALL_STATE(6846)] = 234524, + [SMALL_STATE(6847)] = 234541, + [SMALL_STATE(6848)] = 234558, + [SMALL_STATE(6849)] = 234573, + [SMALL_STATE(6850)] = 234592, + [SMALL_STATE(6851)] = 234611, + [SMALL_STATE(6852)] = 234624, + [SMALL_STATE(6853)] = 234637, + [SMALL_STATE(6854)] = 234656, + [SMALL_STATE(6855)] = 234675, + [SMALL_STATE(6856)] = 234694, + [SMALL_STATE(6857)] = 234713, + [SMALL_STATE(6858)] = 234732, + [SMALL_STATE(6859)] = 234751, + [SMALL_STATE(6860)] = 234770, + [SMALL_STATE(6861)] = 234789, + [SMALL_STATE(6862)] = 234802, + [SMALL_STATE(6863)] = 234815, + [SMALL_STATE(6864)] = 234828, + [SMALL_STATE(6865)] = 234845, + [SMALL_STATE(6866)] = 234858, + [SMALL_STATE(6867)] = 234871, + [SMALL_STATE(6868)] = 234884, + [SMALL_STATE(6869)] = 234901, + [SMALL_STATE(6870)] = 234914, + [SMALL_STATE(6871)] = 234933, + [SMALL_STATE(6872)] = 234952, + [SMALL_STATE(6873)] = 234965, + [SMALL_STATE(6874)] = 234978, + [SMALL_STATE(6875)] = 234997, + [SMALL_STATE(6876)] = 235016, + [SMALL_STATE(6877)] = 235035, + [SMALL_STATE(6878)] = 235054, + [SMALL_STATE(6879)] = 235073, + [SMALL_STATE(6880)] = 235092, + [SMALL_STATE(6881)] = 235111, + [SMALL_STATE(6882)] = 235130, + [SMALL_STATE(6883)] = 235149, + [SMALL_STATE(6884)] = 235168, + [SMALL_STATE(6885)] = 235181, + [SMALL_STATE(6886)] = 235198, + [SMALL_STATE(6887)] = 235211, + [SMALL_STATE(6888)] = 235228, + [SMALL_STATE(6889)] = 235245, + [SMALL_STATE(6890)] = 235258, + [SMALL_STATE(6891)] = 235273, + [SMALL_STATE(6892)] = 235292, + [SMALL_STATE(6893)] = 235311, + [SMALL_STATE(6894)] = 235330, + [SMALL_STATE(6895)] = 235349, + [SMALL_STATE(6896)] = 235368, + [SMALL_STATE(6897)] = 235387, + [SMALL_STATE(6898)] = 235406, + [SMALL_STATE(6899)] = 235425, + [SMALL_STATE(6900)] = 235442, + [SMALL_STATE(6901)] = 235461, + [SMALL_STATE(6902)] = 235474, + [SMALL_STATE(6903)] = 235491, + [SMALL_STATE(6904)] = 235506, + [SMALL_STATE(6905)] = 235523, + [SMALL_STATE(6906)] = 235542, + [SMALL_STATE(6907)] = 235561, + [SMALL_STATE(6908)] = 235578, + [SMALL_STATE(6909)] = 235597, + [SMALL_STATE(6910)] = 235616, + [SMALL_STATE(6911)] = 235635, + [SMALL_STATE(6912)] = 235654, + [SMALL_STATE(6913)] = 235673, + [SMALL_STATE(6914)] = 235692, + [SMALL_STATE(6915)] = 235711, + [SMALL_STATE(6916)] = 235730, + [SMALL_STATE(6917)] = 235745, + [SMALL_STATE(6918)] = 235758, + [SMALL_STATE(6919)] = 235775, + [SMALL_STATE(6920)] = 235790, + [SMALL_STATE(6921)] = 235807, + [SMALL_STATE(6922)] = 235820, + [SMALL_STATE(6923)] = 235833, + [SMALL_STATE(6924)] = 235852, + [SMALL_STATE(6925)] = 235871, + [SMALL_STATE(6926)] = 235890, + [SMALL_STATE(6927)] = 235909, + [SMALL_STATE(6928)] = 235928, + [SMALL_STATE(6929)] = 235947, + [SMALL_STATE(6930)] = 235966, + [SMALL_STATE(6931)] = 235985, + [SMALL_STATE(6932)] = 236004, + [SMALL_STATE(6933)] = 236019, + [SMALL_STATE(6934)] = 236032, + [SMALL_STATE(6935)] = 236049, + [SMALL_STATE(6936)] = 236064, + [SMALL_STATE(6937)] = 236081, + [SMALL_STATE(6938)] = 236100, + [SMALL_STATE(6939)] = 236113, + [SMALL_STATE(6940)] = 236130, + [SMALL_STATE(6941)] = 236145, + [SMALL_STATE(6942)] = 236162, + [SMALL_STATE(6943)] = 236175, + [SMALL_STATE(6944)] = 236188, + [SMALL_STATE(6945)] = 236205, + [SMALL_STATE(6946)] = 236220, + [SMALL_STATE(6947)] = 236237, + [SMALL_STATE(6948)] = 236252, + [SMALL_STATE(6949)] = 236265, + [SMALL_STATE(6950)] = 236282, + [SMALL_STATE(6951)] = 236299, + [SMALL_STATE(6952)] = 236318, + [SMALL_STATE(6953)] = 236331, + [SMALL_STATE(6954)] = 236348, + [SMALL_STATE(6955)] = 236365, + [SMALL_STATE(6956)] = 236384, + [SMALL_STATE(6957)] = 236397, + [SMALL_STATE(6958)] = 236414, + [SMALL_STATE(6959)] = 236431, + [SMALL_STATE(6960)] = 236444, + [SMALL_STATE(6961)] = 236457, + [SMALL_STATE(6962)] = 236474, + [SMALL_STATE(6963)] = 236491, + [SMALL_STATE(6964)] = 236504, + [SMALL_STATE(6965)] = 236517, + [SMALL_STATE(6966)] = 236534, + [SMALL_STATE(6967)] = 236551, + [SMALL_STATE(6968)] = 236564, + [SMALL_STATE(6969)] = 236577, + [SMALL_STATE(6970)] = 236594, + [SMALL_STATE(6971)] = 236611, + [SMALL_STATE(6972)] = 236624, + [SMALL_STATE(6973)] = 236637, + [SMALL_STATE(6974)] = 236654, + [SMALL_STATE(6975)] = 236671, + [SMALL_STATE(6976)] = 236688, + [SMALL_STATE(6977)] = 236701, + [SMALL_STATE(6978)] = 236718, + [SMALL_STATE(6979)] = 236735, + [SMALL_STATE(6980)] = 236754, + [SMALL_STATE(6981)] = 236767, + [SMALL_STATE(6982)] = 236784, + [SMALL_STATE(6983)] = 236801, + [SMALL_STATE(6984)] = 236814, + [SMALL_STATE(6985)] = 236827, + [SMALL_STATE(6986)] = 236844, + [SMALL_STATE(6987)] = 236861, + [SMALL_STATE(6988)] = 236880, + [SMALL_STATE(6989)] = 236893, + [SMALL_STATE(6990)] = 236910, + [SMALL_STATE(6991)] = 236927, + [SMALL_STATE(6992)] = 236940, + [SMALL_STATE(6993)] = 236953, + [SMALL_STATE(6994)] = 236970, + [SMALL_STATE(6995)] = 236987, + [SMALL_STATE(6996)] = 237006, + [SMALL_STATE(6997)] = 237019, + [SMALL_STATE(6998)] = 237036, + [SMALL_STATE(6999)] = 237053, + [SMALL_STATE(7000)] = 237066, + [SMALL_STATE(7001)] = 237079, + [SMALL_STATE(7002)] = 237096, + [SMALL_STATE(7003)] = 237113, + [SMALL_STATE(7004)] = 237126, + [SMALL_STATE(7005)] = 237139, + [SMALL_STATE(7006)] = 237156, + [SMALL_STATE(7007)] = 237173, + [SMALL_STATE(7008)] = 237186, + [SMALL_STATE(7009)] = 237199, + [SMALL_STATE(7010)] = 237216, + [SMALL_STATE(7011)] = 237233, + [SMALL_STATE(7012)] = 237252, + [SMALL_STATE(7013)] = 237265, + [SMALL_STATE(7014)] = 237282, + [SMALL_STATE(7015)] = 237299, + [SMALL_STATE(7016)] = 237318, + [SMALL_STATE(7017)] = 237331, + [SMALL_STATE(7018)] = 237348, + [SMALL_STATE(7019)] = 237365, + [SMALL_STATE(7020)] = 237382, + [SMALL_STATE(7021)] = 237395, + [SMALL_STATE(7022)] = 237412, + [SMALL_STATE(7023)] = 237429, + [SMALL_STATE(7024)] = 237448, + [SMALL_STATE(7025)] = 237461, + [SMALL_STATE(7026)] = 237478, + [SMALL_STATE(7027)] = 237497, + [SMALL_STATE(7028)] = 237510, + [SMALL_STATE(7029)] = 237527, + [SMALL_STATE(7030)] = 237544, + [SMALL_STATE(7031)] = 237557, + [SMALL_STATE(7032)] = 237574, + [SMALL_STATE(7033)] = 237591, + [SMALL_STATE(7034)] = 237604, + [SMALL_STATE(7035)] = 237621, + [SMALL_STATE(7036)] = 237638, + [SMALL_STATE(7037)] = 237651, + [SMALL_STATE(7038)] = 237668, + [SMALL_STATE(7039)] = 237685, + [SMALL_STATE(7040)] = 237702, + [SMALL_STATE(7041)] = 237719, + [SMALL_STATE(7042)] = 237736, + [SMALL_STATE(7043)] = 237753, + [SMALL_STATE(7044)] = 237770, + [SMALL_STATE(7045)] = 237787, + [SMALL_STATE(7046)] = 237804, + [SMALL_STATE(7047)] = 237817, + [SMALL_STATE(7048)] = 237832, + [SMALL_STATE(7049)] = 237845, + [SMALL_STATE(7050)] = 237864, + [SMALL_STATE(7051)] = 237883, + [SMALL_STATE(7052)] = 237902, + [SMALL_STATE(7053)] = 237921, + [SMALL_STATE(7054)] = 237938, + [SMALL_STATE(7055)] = 237957, + [SMALL_STATE(7056)] = 237976, + [SMALL_STATE(7057)] = 237989, + [SMALL_STATE(7058)] = 238006, + [SMALL_STATE(7059)] = 238025, + [SMALL_STATE(7060)] = 238038, + [SMALL_STATE(7061)] = 238057, + [SMALL_STATE(7062)] = 238076, + [SMALL_STATE(7063)] = 238089, + [SMALL_STATE(7064)] = 238108, + [SMALL_STATE(7065)] = 238121, + [SMALL_STATE(7066)] = 238136, + [SMALL_STATE(7067)] = 238149, + [SMALL_STATE(7068)] = 238164, + [SMALL_STATE(7069)] = 238177, + [SMALL_STATE(7070)] = 238194, + [SMALL_STATE(7071)] = 238207, + [SMALL_STATE(7072)] = 238220, + [SMALL_STATE(7073)] = 238233, + [SMALL_STATE(7074)] = 238246, + [SMALL_STATE(7075)] = 238259, + [SMALL_STATE(7076)] = 238278, + [SMALL_STATE(7077)] = 238297, + [SMALL_STATE(7078)] = 238316, + [SMALL_STATE(7079)] = 238329, + [SMALL_STATE(7080)] = 238344, + [SMALL_STATE(7081)] = 238359, + [SMALL_STATE(7082)] = 238372, + [SMALL_STATE(7083)] = 238385, + [SMALL_STATE(7084)] = 238398, + [SMALL_STATE(7085)] = 238411, + [SMALL_STATE(7086)] = 238428, + [SMALL_STATE(7087)] = 238447, + [SMALL_STATE(7088)] = 238462, + [SMALL_STATE(7089)] = 238475, + [SMALL_STATE(7090)] = 238488, + [SMALL_STATE(7091)] = 238507, + [SMALL_STATE(7092)] = 238520, + [SMALL_STATE(7093)] = 238533, + [SMALL_STATE(7094)] = 238546, + [SMALL_STATE(7095)] = 238559, + [SMALL_STATE(7096)] = 238572, + [SMALL_STATE(7097)] = 238585, + [SMALL_STATE(7098)] = 238598, + [SMALL_STATE(7099)] = 238611, + [SMALL_STATE(7100)] = 238624, + [SMALL_STATE(7101)] = 238637, + [SMALL_STATE(7102)] = 238656, + [SMALL_STATE(7103)] = 238675, + [SMALL_STATE(7104)] = 238694, + [SMALL_STATE(7105)] = 238709, + [SMALL_STATE(7106)] = 238724, + [SMALL_STATE(7107)] = 238739, + [SMALL_STATE(7108)] = 238754, + [SMALL_STATE(7109)] = 238769, + [SMALL_STATE(7110)] = 238784, + [SMALL_STATE(7111)] = 238799, + [SMALL_STATE(7112)] = 238814, + [SMALL_STATE(7113)] = 238833, + [SMALL_STATE(7114)] = 238852, + [SMALL_STATE(7115)] = 238871, + [SMALL_STATE(7116)] = 238890, + [SMALL_STATE(7117)] = 238909, + [SMALL_STATE(7118)] = 238928, + [SMALL_STATE(7119)] = 238947, + [SMALL_STATE(7120)] = 238966, + [SMALL_STATE(7121)] = 238985, + [SMALL_STATE(7122)] = 239000, + [SMALL_STATE(7123)] = 239019, + [SMALL_STATE(7124)] = 239032, + [SMALL_STATE(7125)] = 239045, + [SMALL_STATE(7126)] = 239058, + [SMALL_STATE(7127)] = 239071, + [SMALL_STATE(7128)] = 239086, + [SMALL_STATE(7129)] = 239099, + [SMALL_STATE(7130)] = 239116, + [SMALL_STATE(7131)] = 239133, + [SMALL_STATE(7132)] = 239146, + [SMALL_STATE(7133)] = 239165, + [SMALL_STATE(7134)] = 239180, + [SMALL_STATE(7135)] = 239199, + [SMALL_STATE(7136)] = 239214, + [SMALL_STATE(7137)] = 239231, + [SMALL_STATE(7138)] = 239250, + [SMALL_STATE(7139)] = 239263, + [SMALL_STATE(7140)] = 239278, + [SMALL_STATE(7141)] = 239291, + [SMALL_STATE(7142)] = 239306, + [SMALL_STATE(7143)] = 239321, + [SMALL_STATE(7144)] = 239336, + [SMALL_STATE(7145)] = 239355, + [SMALL_STATE(7146)] = 239368, + [SMALL_STATE(7147)] = 239381, + [SMALL_STATE(7148)] = 239398, + [SMALL_STATE(7149)] = 239411, + [SMALL_STATE(7150)] = 239424, + [SMALL_STATE(7151)] = 239439, + [SMALL_STATE(7152)] = 239452, + [SMALL_STATE(7153)] = 239465, + [SMALL_STATE(7154)] = 239478, + [SMALL_STATE(7155)] = 239491, + [SMALL_STATE(7156)] = 239504, + [SMALL_STATE(7157)] = 239517, + [SMALL_STATE(7158)] = 239530, + [SMALL_STATE(7159)] = 239543, + [SMALL_STATE(7160)] = 239562, + [SMALL_STATE(7161)] = 239575, + [SMALL_STATE(7162)] = 239590, + [SMALL_STATE(7163)] = 239603, + [SMALL_STATE(7164)] = 239622, + [SMALL_STATE(7165)] = 239635, + [SMALL_STATE(7166)] = 239654, + [SMALL_STATE(7167)] = 239667, + [SMALL_STATE(7168)] = 239682, + [SMALL_STATE(7169)] = 239701, + [SMALL_STATE(7170)] = 239720, + [SMALL_STATE(7171)] = 239737, + [SMALL_STATE(7172)] = 239756, + [SMALL_STATE(7173)] = 239775, + [SMALL_STATE(7174)] = 239794, + [SMALL_STATE(7175)] = 239811, + [SMALL_STATE(7176)] = 239826, + [SMALL_STATE(7177)] = 239841, + [SMALL_STATE(7178)] = 239860, + [SMALL_STATE(7179)] = 239875, + [SMALL_STATE(7180)] = 239894, + [SMALL_STATE(7181)] = 239913, + [SMALL_STATE(7182)] = 239932, + [SMALL_STATE(7183)] = 239951, + [SMALL_STATE(7184)] = 239970, + [SMALL_STATE(7185)] = 239989, + [SMALL_STATE(7186)] = 240008, + [SMALL_STATE(7187)] = 240027, + [SMALL_STATE(7188)] = 240040, + [SMALL_STATE(7189)] = 240059, + [SMALL_STATE(7190)] = 240078, + [SMALL_STATE(7191)] = 240093, + [SMALL_STATE(7192)] = 240112, + [SMALL_STATE(7193)] = 240127, + [SMALL_STATE(7194)] = 240146, + [SMALL_STATE(7195)] = 240161, + [SMALL_STATE(7196)] = 240176, + [SMALL_STATE(7197)] = 240193, + [SMALL_STATE(7198)] = 240208, + [SMALL_STATE(7199)] = 240223, + [SMALL_STATE(7200)] = 240236, + [SMALL_STATE(7201)] = 240249, + [SMALL_STATE(7202)] = 240266, + [SMALL_STATE(7203)] = 240285, + [SMALL_STATE(7204)] = 240300, + [SMALL_STATE(7205)] = 240315, + [SMALL_STATE(7206)] = 240330, + [SMALL_STATE(7207)] = 240347, + [SMALL_STATE(7208)] = 240360, + [SMALL_STATE(7209)] = 240375, + [SMALL_STATE(7210)] = 240390, + [SMALL_STATE(7211)] = 240405, + [SMALL_STATE(7212)] = 240418, + [SMALL_STATE(7213)] = 240437, + [SMALL_STATE(7214)] = 240452, + [SMALL_STATE(7215)] = 240467, + [SMALL_STATE(7216)] = 240482, + [SMALL_STATE(7217)] = 240501, + [SMALL_STATE(7218)] = 240514, + [SMALL_STATE(7219)] = 240529, + [SMALL_STATE(7220)] = 240544, + [SMALL_STATE(7221)] = 240559, + [SMALL_STATE(7222)] = 240572, + [SMALL_STATE(7223)] = 240589, + [SMALL_STATE(7224)] = 240604, + [SMALL_STATE(7225)] = 240619, + [SMALL_STATE(7226)] = 240634, + [SMALL_STATE(7227)] = 240653, + [SMALL_STATE(7228)] = 240672, + [SMALL_STATE(7229)] = 240687, + [SMALL_STATE(7230)] = 240702, + [SMALL_STATE(7231)] = 240717, + [SMALL_STATE(7232)] = 240730, + [SMALL_STATE(7233)] = 240743, + [SMALL_STATE(7234)] = 240758, + [SMALL_STATE(7235)] = 240773, + [SMALL_STATE(7236)] = 240788, + [SMALL_STATE(7237)] = 240807, + [SMALL_STATE(7238)] = 240820, + [SMALL_STATE(7239)] = 240835, + [SMALL_STATE(7240)] = 240850, + [SMALL_STATE(7241)] = 240865, + [SMALL_STATE(7242)] = 240884, + [SMALL_STATE(7243)] = 240897, + [SMALL_STATE(7244)] = 240910, + [SMALL_STATE(7245)] = 240923, + [SMALL_STATE(7246)] = 240938, + [SMALL_STATE(7247)] = 240953, + [SMALL_STATE(7248)] = 240966, + [SMALL_STATE(7249)] = 240985, + [SMALL_STATE(7250)] = 241004, + [SMALL_STATE(7251)] = 241023, + [SMALL_STATE(7252)] = 241042, + [SMALL_STATE(7253)] = 241061, + [SMALL_STATE(7254)] = 241080, + [SMALL_STATE(7255)] = 241099, + [SMALL_STATE(7256)] = 241118, + [SMALL_STATE(7257)] = 241137, + [SMALL_STATE(7258)] = 241150, + [SMALL_STATE(7259)] = 241163, + [SMALL_STATE(7260)] = 241176, + [SMALL_STATE(7261)] = 241195, + [SMALL_STATE(7262)] = 241214, + [SMALL_STATE(7263)] = 241227, + [SMALL_STATE(7264)] = 241246, + [SMALL_STATE(7265)] = 241259, + [SMALL_STATE(7266)] = 241276, + [SMALL_STATE(7267)] = 241295, + [SMALL_STATE(7268)] = 241312, + [SMALL_STATE(7269)] = 241331, + [SMALL_STATE(7270)] = 241350, + [SMALL_STATE(7271)] = 241367, + [SMALL_STATE(7272)] = 241380, + [SMALL_STATE(7273)] = 241399, + [SMALL_STATE(7274)] = 241416, + [SMALL_STATE(7275)] = 241435, + [SMALL_STATE(7276)] = 241454, + [SMALL_STATE(7277)] = 241473, + [SMALL_STATE(7278)] = 241492, + [SMALL_STATE(7279)] = 241511, + [SMALL_STATE(7280)] = 241530, + [SMALL_STATE(7281)] = 241543, + [SMALL_STATE(7282)] = 241562, + [SMALL_STATE(7283)] = 241579, + [SMALL_STATE(7284)] = 241596, + [SMALL_STATE(7285)] = 241611, + [SMALL_STATE(7286)] = 241628, + [SMALL_STATE(7287)] = 241647, + [SMALL_STATE(7288)] = 241666, + [SMALL_STATE(7289)] = 241685, + [SMALL_STATE(7290)] = 241704, + [SMALL_STATE(7291)] = 241723, + [SMALL_STATE(7292)] = 241736, + [SMALL_STATE(7293)] = 241753, + [SMALL_STATE(7294)] = 241772, + [SMALL_STATE(7295)] = 241791, + [SMALL_STATE(7296)] = 241810, + [SMALL_STATE(7297)] = 241829, + [SMALL_STATE(7298)] = 241846, + [SMALL_STATE(7299)] = 241865, + [SMALL_STATE(7300)] = 241884, + [SMALL_STATE(7301)] = 241903, + [SMALL_STATE(7302)] = 241922, + [SMALL_STATE(7303)] = 241935, + [SMALL_STATE(7304)] = 241954, + [SMALL_STATE(7305)] = 241973, + [SMALL_STATE(7306)] = 241986, + [SMALL_STATE(7307)] = 242005, + [SMALL_STATE(7308)] = 242024, + [SMALL_STATE(7309)] = 242041, + [SMALL_STATE(7310)] = 242060, + [SMALL_STATE(7311)] = 242077, + [SMALL_STATE(7312)] = 242091, + [SMALL_STATE(7313)] = 242107, + [SMALL_STATE(7314)] = 242119, + [SMALL_STATE(7315)] = 242135, + [SMALL_STATE(7316)] = 242151, + [SMALL_STATE(7317)] = 242163, + [SMALL_STATE(7318)] = 242179, + [SMALL_STATE(7319)] = 242193, + [SMALL_STATE(7320)] = 242209, + [SMALL_STATE(7321)] = 242225, + [SMALL_STATE(7322)] = 242241, + [SMALL_STATE(7323)] = 242257, + [SMALL_STATE(7324)] = 242269, + [SMALL_STATE(7325)] = 242283, + [SMALL_STATE(7326)] = 242299, + [SMALL_STATE(7327)] = 242315, + [SMALL_STATE(7328)] = 242327, + [SMALL_STATE(7329)] = 242343, + [SMALL_STATE(7330)] = 242359, + [SMALL_STATE(7331)] = 242375, + [SMALL_STATE(7332)] = 242387, + [SMALL_STATE(7333)] = 242403, + [SMALL_STATE(7334)] = 242417, + [SMALL_STATE(7335)] = 242433, + [SMALL_STATE(7336)] = 242449, + [SMALL_STATE(7337)] = 242463, + [SMALL_STATE(7338)] = 242477, + [SMALL_STATE(7339)] = 242493, + [SMALL_STATE(7340)] = 242507, + [SMALL_STATE(7341)] = 242521, + [SMALL_STATE(7342)] = 242537, + [SMALL_STATE(7343)] = 242549, + [SMALL_STATE(7344)] = 242565, + [SMALL_STATE(7345)] = 242577, + [SMALL_STATE(7346)] = 242593, + [SMALL_STATE(7347)] = 242605, + [SMALL_STATE(7348)] = 242621, + [SMALL_STATE(7349)] = 242637, + [SMALL_STATE(7350)] = 242653, + [SMALL_STATE(7351)] = 242669, + [SMALL_STATE(7352)] = 242681, + [SMALL_STATE(7353)] = 242697, + [SMALL_STATE(7354)] = 242713, + [SMALL_STATE(7355)] = 242729, + [SMALL_STATE(7356)] = 242745, + [SMALL_STATE(7357)] = 242761, + [SMALL_STATE(7358)] = 242777, + [SMALL_STATE(7359)] = 242793, + [SMALL_STATE(7360)] = 242809, + [SMALL_STATE(7361)] = 242825, + [SMALL_STATE(7362)] = 242841, + [SMALL_STATE(7363)] = 242857, + [SMALL_STATE(7364)] = 242873, + [SMALL_STATE(7365)] = 242885, + [SMALL_STATE(7366)] = 242901, + [SMALL_STATE(7367)] = 242913, + [SMALL_STATE(7368)] = 242929, + [SMALL_STATE(7369)] = 242941, + [SMALL_STATE(7370)] = 242953, + [SMALL_STATE(7371)] = 242965, + [SMALL_STATE(7372)] = 242981, + [SMALL_STATE(7373)] = 242995, + [SMALL_STATE(7374)] = 243007, + [SMALL_STATE(7375)] = 243019, + [SMALL_STATE(7376)] = 243031, + [SMALL_STATE(7377)] = 243043, + [SMALL_STATE(7378)] = 243055, + [SMALL_STATE(7379)] = 243071, + [SMALL_STATE(7380)] = 243087, + [SMALL_STATE(7381)] = 243103, + [SMALL_STATE(7382)] = 243115, + [SMALL_STATE(7383)] = 243131, + [SMALL_STATE(7384)] = 243147, + [SMALL_STATE(7385)] = 243163, + [SMALL_STATE(7386)] = 243179, + [SMALL_STATE(7387)] = 243193, + [SMALL_STATE(7388)] = 243209, + [SMALL_STATE(7389)] = 243225, + [SMALL_STATE(7390)] = 243241, + [SMALL_STATE(7391)] = 243257, + [SMALL_STATE(7392)] = 243269, + [SMALL_STATE(7393)] = 243281, + [SMALL_STATE(7394)] = 243293, + [SMALL_STATE(7395)] = 243307, + [SMALL_STATE(7396)] = 243319, + [SMALL_STATE(7397)] = 243335, + [SMALL_STATE(7398)] = 243349, + [SMALL_STATE(7399)] = 243361, + [SMALL_STATE(7400)] = 243377, + [SMALL_STATE(7401)] = 243391, + [SMALL_STATE(7402)] = 243407, + [SMALL_STATE(7403)] = 243419, + [SMALL_STATE(7404)] = 243435, + [SMALL_STATE(7405)] = 243451, + [SMALL_STATE(7406)] = 243467, + [SMALL_STATE(7407)] = 243483, + [SMALL_STATE(7408)] = 243499, + [SMALL_STATE(7409)] = 243515, + [SMALL_STATE(7410)] = 243531, + [SMALL_STATE(7411)] = 243547, + [SMALL_STATE(7412)] = 243563, + [SMALL_STATE(7413)] = 243577, + [SMALL_STATE(7414)] = 243589, + [SMALL_STATE(7415)] = 243605, + [SMALL_STATE(7416)] = 243619, + [SMALL_STATE(7417)] = 243631, + [SMALL_STATE(7418)] = 243645, + [SMALL_STATE(7419)] = 243657, + [SMALL_STATE(7420)] = 243673, + [SMALL_STATE(7421)] = 243687, + [SMALL_STATE(7422)] = 243701, + [SMALL_STATE(7423)] = 243715, + [SMALL_STATE(7424)] = 243731, + [SMALL_STATE(7425)] = 243745, + [SMALL_STATE(7426)] = 243759, + [SMALL_STATE(7427)] = 243773, + [SMALL_STATE(7428)] = 243789, + [SMALL_STATE(7429)] = 243803, + [SMALL_STATE(7430)] = 243817, + [SMALL_STATE(7431)] = 243833, + [SMALL_STATE(7432)] = 243845, + [SMALL_STATE(7433)] = 243857, + [SMALL_STATE(7434)] = 243869, + [SMALL_STATE(7435)] = 243885, + [SMALL_STATE(7436)] = 243901, + [SMALL_STATE(7437)] = 243917, + [SMALL_STATE(7438)] = 243929, + [SMALL_STATE(7439)] = 243945, + [SMALL_STATE(7440)] = 243961, + [SMALL_STATE(7441)] = 243977, + [SMALL_STATE(7442)] = 243993, + [SMALL_STATE(7443)] = 244007, + [SMALL_STATE(7444)] = 244023, + [SMALL_STATE(7445)] = 244039, + [SMALL_STATE(7446)] = 244051, + [SMALL_STATE(7447)] = 244063, + [SMALL_STATE(7448)] = 244077, + [SMALL_STATE(7449)] = 244093, + [SMALL_STATE(7450)] = 244105, + [SMALL_STATE(7451)] = 244119, + [SMALL_STATE(7452)] = 244131, + [SMALL_STATE(7453)] = 244147, + [SMALL_STATE(7454)] = 244163, + [SMALL_STATE(7455)] = 244179, + [SMALL_STATE(7456)] = 244191, + [SMALL_STATE(7457)] = 244203, + [SMALL_STATE(7458)] = 244219, + [SMALL_STATE(7459)] = 244231, + [SMALL_STATE(7460)] = 244245, + [SMALL_STATE(7461)] = 244261, + [SMALL_STATE(7462)] = 244277, + [SMALL_STATE(7463)] = 244293, + [SMALL_STATE(7464)] = 244305, + [SMALL_STATE(7465)] = 244321, + [SMALL_STATE(7466)] = 244337, + [SMALL_STATE(7467)] = 244353, + [SMALL_STATE(7468)] = 244369, + [SMALL_STATE(7469)] = 244381, + [SMALL_STATE(7470)] = 244395, + [SMALL_STATE(7471)] = 244409, + [SMALL_STATE(7472)] = 244421, + [SMALL_STATE(7473)] = 244437, + [SMALL_STATE(7474)] = 244449, + [SMALL_STATE(7475)] = 244465, + [SMALL_STATE(7476)] = 244481, + [SMALL_STATE(7477)] = 244497, + [SMALL_STATE(7478)] = 244513, + [SMALL_STATE(7479)] = 244529, + [SMALL_STATE(7480)] = 244541, + [SMALL_STATE(7481)] = 244553, + [SMALL_STATE(7482)] = 244569, + [SMALL_STATE(7483)] = 244585, + [SMALL_STATE(7484)] = 244601, + [SMALL_STATE(7485)] = 244617, + [SMALL_STATE(7486)] = 244633, + [SMALL_STATE(7487)] = 244649, + [SMALL_STATE(7488)] = 244665, + [SMALL_STATE(7489)] = 244681, + [SMALL_STATE(7490)] = 244693, + [SMALL_STATE(7491)] = 244705, + [SMALL_STATE(7492)] = 244721, + [SMALL_STATE(7493)] = 244733, + [SMALL_STATE(7494)] = 244749, + [SMALL_STATE(7495)] = 244765, + [SMALL_STATE(7496)] = 244781, + [SMALL_STATE(7497)] = 244797, + [SMALL_STATE(7498)] = 244813, + [SMALL_STATE(7499)] = 244829, + [SMALL_STATE(7500)] = 244841, + [SMALL_STATE(7501)] = 244857, + [SMALL_STATE(7502)] = 244869, + [SMALL_STATE(7503)] = 244885, + [SMALL_STATE(7504)] = 244901, + [SMALL_STATE(7505)] = 244917, + [SMALL_STATE(7506)] = 244933, + [SMALL_STATE(7507)] = 244949, + [SMALL_STATE(7508)] = 244961, + [SMALL_STATE(7509)] = 244977, + [SMALL_STATE(7510)] = 244993, + [SMALL_STATE(7511)] = 245005, + [SMALL_STATE(7512)] = 245021, + [SMALL_STATE(7513)] = 245033, + [SMALL_STATE(7514)] = 245045, + [SMALL_STATE(7515)] = 245057, + [SMALL_STATE(7516)] = 245069, + [SMALL_STATE(7517)] = 245081, + [SMALL_STATE(7518)] = 245093, + [SMALL_STATE(7519)] = 245105, + [SMALL_STATE(7520)] = 245117, + [SMALL_STATE(7521)] = 245133, + [SMALL_STATE(7522)] = 245149, + [SMALL_STATE(7523)] = 245165, + [SMALL_STATE(7524)] = 245181, + [SMALL_STATE(7525)] = 245197, + [SMALL_STATE(7526)] = 245213, + [SMALL_STATE(7527)] = 245229, + [SMALL_STATE(7528)] = 245245, + [SMALL_STATE(7529)] = 245257, + [SMALL_STATE(7530)] = 245273, + [SMALL_STATE(7531)] = 245287, + [SMALL_STATE(7532)] = 245303, + [SMALL_STATE(7533)] = 245319, + [SMALL_STATE(7534)] = 245335, + [SMALL_STATE(7535)] = 245351, + [SMALL_STATE(7536)] = 245367, + [SMALL_STATE(7537)] = 245379, + [SMALL_STATE(7538)] = 245393, + [SMALL_STATE(7539)] = 245405, + [SMALL_STATE(7540)] = 245417, + [SMALL_STATE(7541)] = 245429, + [SMALL_STATE(7542)] = 245441, + [SMALL_STATE(7543)] = 245457, + [SMALL_STATE(7544)] = 245469, + [SMALL_STATE(7545)] = 245481, + [SMALL_STATE(7546)] = 245493, + [SMALL_STATE(7547)] = 245509, + [SMALL_STATE(7548)] = 245521, + [SMALL_STATE(7549)] = 245537, + [SMALL_STATE(7550)] = 245551, + [SMALL_STATE(7551)] = 245567, + [SMALL_STATE(7552)] = 245583, + [SMALL_STATE(7553)] = 245599, + [SMALL_STATE(7554)] = 245613, + [SMALL_STATE(7555)] = 245629, + [SMALL_STATE(7556)] = 245641, + [SMALL_STATE(7557)] = 245657, + [SMALL_STATE(7558)] = 245673, + [SMALL_STATE(7559)] = 245685, + [SMALL_STATE(7560)] = 245701, + [SMALL_STATE(7561)] = 245715, + [SMALL_STATE(7562)] = 245729, + [SMALL_STATE(7563)] = 245745, + [SMALL_STATE(7564)] = 245761, + [SMALL_STATE(7565)] = 245775, + [SMALL_STATE(7566)] = 245789, + [SMALL_STATE(7567)] = 245803, + [SMALL_STATE(7568)] = 245817, + [SMALL_STATE(7569)] = 245833, + [SMALL_STATE(7570)] = 245845, + [SMALL_STATE(7571)] = 245857, + [SMALL_STATE(7572)] = 245869, + [SMALL_STATE(7573)] = 245885, + [SMALL_STATE(7574)] = 245897, + [SMALL_STATE(7575)] = 245913, + [SMALL_STATE(7576)] = 245925, + [SMALL_STATE(7577)] = 245941, + [SMALL_STATE(7578)] = 245957, + [SMALL_STATE(7579)] = 245973, + [SMALL_STATE(7580)] = 245989, + [SMALL_STATE(7581)] = 246001, + [SMALL_STATE(7582)] = 246017, + [SMALL_STATE(7583)] = 246033, + [SMALL_STATE(7584)] = 246049, + [SMALL_STATE(7585)] = 246065, + [SMALL_STATE(7586)] = 246079, + [SMALL_STATE(7587)] = 246091, + [SMALL_STATE(7588)] = 246107, + [SMALL_STATE(7589)] = 246119, + [SMALL_STATE(7590)] = 246135, + [SMALL_STATE(7591)] = 246151, + [SMALL_STATE(7592)] = 246167, + [SMALL_STATE(7593)] = 246183, + [SMALL_STATE(7594)] = 246199, + [SMALL_STATE(7595)] = 246211, + [SMALL_STATE(7596)] = 246227, + [SMALL_STATE(7597)] = 246243, + [SMALL_STATE(7598)] = 246259, + [SMALL_STATE(7599)] = 246275, + [SMALL_STATE(7600)] = 246287, + [SMALL_STATE(7601)] = 246303, + [SMALL_STATE(7602)] = 246319, + [SMALL_STATE(7603)] = 246331, + [SMALL_STATE(7604)] = 246347, + [SMALL_STATE(7605)] = 246359, + [SMALL_STATE(7606)] = 246375, + [SMALL_STATE(7607)] = 246391, + [SMALL_STATE(7608)] = 246407, + [SMALL_STATE(7609)] = 246423, + [SMALL_STATE(7610)] = 246439, + [SMALL_STATE(7611)] = 246451, + [SMALL_STATE(7612)] = 246467, + [SMALL_STATE(7613)] = 246483, + [SMALL_STATE(7614)] = 246495, + [SMALL_STATE(7615)] = 246507, + [SMALL_STATE(7616)] = 246523, + [SMALL_STATE(7617)] = 246535, + [SMALL_STATE(7618)] = 246551, + [SMALL_STATE(7619)] = 246565, + [SMALL_STATE(7620)] = 246577, + [SMALL_STATE(7621)] = 246593, + [SMALL_STATE(7622)] = 246605, + [SMALL_STATE(7623)] = 246621, + [SMALL_STATE(7624)] = 246637, + [SMALL_STATE(7625)] = 246653, + [SMALL_STATE(7626)] = 246669, + [SMALL_STATE(7627)] = 246681, + [SMALL_STATE(7628)] = 246697, + [SMALL_STATE(7629)] = 246713, + [SMALL_STATE(7630)] = 246725, + [SMALL_STATE(7631)] = 246741, + [SMALL_STATE(7632)] = 246757, + [SMALL_STATE(7633)] = 246773, + [SMALL_STATE(7634)] = 246789, + [SMALL_STATE(7635)] = 246805, + [SMALL_STATE(7636)] = 246817, + [SMALL_STATE(7637)] = 246831, + [SMALL_STATE(7638)] = 246847, + [SMALL_STATE(7639)] = 246863, + [SMALL_STATE(7640)] = 246879, + [SMALL_STATE(7641)] = 246895, + [SMALL_STATE(7642)] = 246911, + [SMALL_STATE(7643)] = 246927, + [SMALL_STATE(7644)] = 246943, + [SMALL_STATE(7645)] = 246959, + [SMALL_STATE(7646)] = 246971, + [SMALL_STATE(7647)] = 246987, + [SMALL_STATE(7648)] = 247001, + [SMALL_STATE(7649)] = 247017, + [SMALL_STATE(7650)] = 247033, + [SMALL_STATE(7651)] = 247045, + [SMALL_STATE(7652)] = 247061, + [SMALL_STATE(7653)] = 247077, + [SMALL_STATE(7654)] = 247089, + [SMALL_STATE(7655)] = 247101, + [SMALL_STATE(7656)] = 247117, + [SMALL_STATE(7657)] = 247133, + [SMALL_STATE(7658)] = 247145, + [SMALL_STATE(7659)] = 247161, + [SMALL_STATE(7660)] = 247175, + [SMALL_STATE(7661)] = 247187, + [SMALL_STATE(7662)] = 247201, + [SMALL_STATE(7663)] = 247215, + [SMALL_STATE(7664)] = 247229, + [SMALL_STATE(7665)] = 247245, + [SMALL_STATE(7666)] = 247257, + [SMALL_STATE(7667)] = 247273, + [SMALL_STATE(7668)] = 247287, + [SMALL_STATE(7669)] = 247301, + [SMALL_STATE(7670)] = 247313, + [SMALL_STATE(7671)] = 247329, + [SMALL_STATE(7672)] = 247341, + [SMALL_STATE(7673)] = 247357, + [SMALL_STATE(7674)] = 247369, + [SMALL_STATE(7675)] = 247385, + [SMALL_STATE(7676)] = 247401, + [SMALL_STATE(7677)] = 247415, + [SMALL_STATE(7678)] = 247429, + [SMALL_STATE(7679)] = 247441, + [SMALL_STATE(7680)] = 247453, + [SMALL_STATE(7681)] = 247465, + [SMALL_STATE(7682)] = 247477, + [SMALL_STATE(7683)] = 247489, + [SMALL_STATE(7684)] = 247501, + [SMALL_STATE(7685)] = 247515, + [SMALL_STATE(7686)] = 247527, + [SMALL_STATE(7687)] = 247539, + [SMALL_STATE(7688)] = 247551, + [SMALL_STATE(7689)] = 247565, + [SMALL_STATE(7690)] = 247577, + [SMALL_STATE(7691)] = 247593, + [SMALL_STATE(7692)] = 247609, + [SMALL_STATE(7693)] = 247621, + [SMALL_STATE(7694)] = 247637, + [SMALL_STATE(7695)] = 247649, + [SMALL_STATE(7696)] = 247665, + [SMALL_STATE(7697)] = 247679, + [SMALL_STATE(7698)] = 247691, + [SMALL_STATE(7699)] = 247705, + [SMALL_STATE(7700)] = 247719, + [SMALL_STATE(7701)] = 247731, + [SMALL_STATE(7702)] = 247745, + [SMALL_STATE(7703)] = 247759, + [SMALL_STATE(7704)] = 247773, + [SMALL_STATE(7705)] = 247789, + [SMALL_STATE(7706)] = 247801, + [SMALL_STATE(7707)] = 247815, + [SMALL_STATE(7708)] = 247827, + [SMALL_STATE(7709)] = 247839, + [SMALL_STATE(7710)] = 247853, + [SMALL_STATE(7711)] = 247869, + [SMALL_STATE(7712)] = 247883, + [SMALL_STATE(7713)] = 247897, + [SMALL_STATE(7714)] = 247913, + [SMALL_STATE(7715)] = 247929, + [SMALL_STATE(7716)] = 247945, + [SMALL_STATE(7717)] = 247959, + [SMALL_STATE(7718)] = 247975, + [SMALL_STATE(7719)] = 247989, + [SMALL_STATE(7720)] = 248005, + [SMALL_STATE(7721)] = 248021, + [SMALL_STATE(7722)] = 248037, + [SMALL_STATE(7723)] = 248051, + [SMALL_STATE(7724)] = 248067, + [SMALL_STATE(7725)] = 248083, + [SMALL_STATE(7726)] = 248099, + [SMALL_STATE(7727)] = 248115, + [SMALL_STATE(7728)] = 248131, + [SMALL_STATE(7729)] = 248147, + [SMALL_STATE(7730)] = 248161, + [SMALL_STATE(7731)] = 248177, + [SMALL_STATE(7732)] = 248193, + [SMALL_STATE(7733)] = 248209, + [SMALL_STATE(7734)] = 248221, + [SMALL_STATE(7735)] = 248237, + [SMALL_STATE(7736)] = 248253, + [SMALL_STATE(7737)] = 248265, + [SMALL_STATE(7738)] = 248281, + [SMALL_STATE(7739)] = 248293, + [SMALL_STATE(7740)] = 248309, + [SMALL_STATE(7741)] = 248321, + [SMALL_STATE(7742)] = 248333, + [SMALL_STATE(7743)] = 248349, + [SMALL_STATE(7744)] = 248365, + [SMALL_STATE(7745)] = 248381, + [SMALL_STATE(7746)] = 248397, + [SMALL_STATE(7747)] = 248413, + [SMALL_STATE(7748)] = 248425, + [SMALL_STATE(7749)] = 248441, + [SMALL_STATE(7750)] = 248455, + [SMALL_STATE(7751)] = 248467, + [SMALL_STATE(7752)] = 248481, + [SMALL_STATE(7753)] = 248493, + [SMALL_STATE(7754)] = 248509, + [SMALL_STATE(7755)] = 248521, + [SMALL_STATE(7756)] = 248537, + [SMALL_STATE(7757)] = 248553, + [SMALL_STATE(7758)] = 248569, + [SMALL_STATE(7759)] = 248581, + [SMALL_STATE(7760)] = 248597, + [SMALL_STATE(7761)] = 248609, + [SMALL_STATE(7762)] = 248621, + [SMALL_STATE(7763)] = 248633, + [SMALL_STATE(7764)] = 248645, + [SMALL_STATE(7765)] = 248659, + [SMALL_STATE(7766)] = 248673, + [SMALL_STATE(7767)] = 248689, + [SMALL_STATE(7768)] = 248703, + [SMALL_STATE(7769)] = 248719, + [SMALL_STATE(7770)] = 248733, + [SMALL_STATE(7771)] = 248747, + [SMALL_STATE(7772)] = 248763, + [SMALL_STATE(7773)] = 248777, + [SMALL_STATE(7774)] = 248793, + [SMALL_STATE(7775)] = 248805, + [SMALL_STATE(7776)] = 248821, + [SMALL_STATE(7777)] = 248837, + [SMALL_STATE(7778)] = 248849, + [SMALL_STATE(7779)] = 248861, + [SMALL_STATE(7780)] = 248877, + [SMALL_STATE(7781)] = 248889, + [SMALL_STATE(7782)] = 248905, + [SMALL_STATE(7783)] = 248919, + [SMALL_STATE(7784)] = 248935, + [SMALL_STATE(7785)] = 248949, + [SMALL_STATE(7786)] = 248961, + [SMALL_STATE(7787)] = 248977, + [SMALL_STATE(7788)] = 248989, + [SMALL_STATE(7789)] = 249003, + [SMALL_STATE(7790)] = 249019, + [SMALL_STATE(7791)] = 249035, + [SMALL_STATE(7792)] = 249049, + [SMALL_STATE(7793)] = 249063, + [SMALL_STATE(7794)] = 249077, + [SMALL_STATE(7795)] = 249093, + [SMALL_STATE(7796)] = 249109, + [SMALL_STATE(7797)] = 249125, + [SMALL_STATE(7798)] = 249141, + [SMALL_STATE(7799)] = 249157, + [SMALL_STATE(7800)] = 249173, + [SMALL_STATE(7801)] = 249189, + [SMALL_STATE(7802)] = 249205, + [SMALL_STATE(7803)] = 249221, + [SMALL_STATE(7804)] = 249235, + [SMALL_STATE(7805)] = 249251, + [SMALL_STATE(7806)] = 249265, + [SMALL_STATE(7807)] = 249281, + [SMALL_STATE(7808)] = 249297, + [SMALL_STATE(7809)] = 249313, + [SMALL_STATE(7810)] = 249329, + [SMALL_STATE(7811)] = 249345, + [SMALL_STATE(7812)] = 249361, + [SMALL_STATE(7813)] = 249373, + [SMALL_STATE(7814)] = 249389, + [SMALL_STATE(7815)] = 249405, + [SMALL_STATE(7816)] = 249421, + [SMALL_STATE(7817)] = 249435, + [SMALL_STATE(7818)] = 249451, + [SMALL_STATE(7819)] = 249465, + [SMALL_STATE(7820)] = 249481, + [SMALL_STATE(7821)] = 249497, + [SMALL_STATE(7822)] = 249513, + [SMALL_STATE(7823)] = 249529, + [SMALL_STATE(7824)] = 249545, + [SMALL_STATE(7825)] = 249561, + [SMALL_STATE(7826)] = 249575, + [SMALL_STATE(7827)] = 249589, + [SMALL_STATE(7828)] = 249605, + [SMALL_STATE(7829)] = 249619, + [SMALL_STATE(7830)] = 249633, + [SMALL_STATE(7831)] = 249649, + [SMALL_STATE(7832)] = 249665, + [SMALL_STATE(7833)] = 249681, + [SMALL_STATE(7834)] = 249697, + [SMALL_STATE(7835)] = 249713, + [SMALL_STATE(7836)] = 249727, + [SMALL_STATE(7837)] = 249743, + [SMALL_STATE(7838)] = 249757, + [SMALL_STATE(7839)] = 249771, + [SMALL_STATE(7840)] = 249785, + [SMALL_STATE(7841)] = 249801, + [SMALL_STATE(7842)] = 249817, + [SMALL_STATE(7843)] = 249829, + [SMALL_STATE(7844)] = 249845, + [SMALL_STATE(7845)] = 249861, + [SMALL_STATE(7846)] = 249875, + [SMALL_STATE(7847)] = 249891, + [SMALL_STATE(7848)] = 249905, + [SMALL_STATE(7849)] = 249921, + [SMALL_STATE(7850)] = 249937, + [SMALL_STATE(7851)] = 249953, + [SMALL_STATE(7852)] = 249967, + [SMALL_STATE(7853)] = 249983, + [SMALL_STATE(7854)] = 249999, + [SMALL_STATE(7855)] = 250013, + [SMALL_STATE(7856)] = 250027, + [SMALL_STATE(7857)] = 250041, + [SMALL_STATE(7858)] = 250055, + [SMALL_STATE(7859)] = 250069, + [SMALL_STATE(7860)] = 250083, + [SMALL_STATE(7861)] = 250099, + [SMALL_STATE(7862)] = 250115, + [SMALL_STATE(7863)] = 250131, + [SMALL_STATE(7864)] = 250147, + [SMALL_STATE(7865)] = 250161, + [SMALL_STATE(7866)] = 250173, + [SMALL_STATE(7867)] = 250187, + [SMALL_STATE(7868)] = 250201, + [SMALL_STATE(7869)] = 250217, + [SMALL_STATE(7870)] = 250233, + [SMALL_STATE(7871)] = 250249, + [SMALL_STATE(7872)] = 250265, + [SMALL_STATE(7873)] = 250279, + [SMALL_STATE(7874)] = 250293, + [SMALL_STATE(7875)] = 250307, + [SMALL_STATE(7876)] = 250323, + [SMALL_STATE(7877)] = 250339, + [SMALL_STATE(7878)] = 250355, + [SMALL_STATE(7879)] = 250371, + [SMALL_STATE(7880)] = 250387, + [SMALL_STATE(7881)] = 250401, + [SMALL_STATE(7882)] = 250417, + [SMALL_STATE(7883)] = 250431, + [SMALL_STATE(7884)] = 250447, + [SMALL_STATE(7885)] = 250463, + [SMALL_STATE(7886)] = 250479, + [SMALL_STATE(7887)] = 250493, + [SMALL_STATE(7888)] = 250509, + [SMALL_STATE(7889)] = 250525, + [SMALL_STATE(7890)] = 250539, + [SMALL_STATE(7891)] = 250553, + [SMALL_STATE(7892)] = 250567, + [SMALL_STATE(7893)] = 250579, + [SMALL_STATE(7894)] = 250591, + [SMALL_STATE(7895)] = 250607, + [SMALL_STATE(7896)] = 250623, + [SMALL_STATE(7897)] = 250639, + [SMALL_STATE(7898)] = 250655, + [SMALL_STATE(7899)] = 250671, + [SMALL_STATE(7900)] = 250685, + [SMALL_STATE(7901)] = 250697, + [SMALL_STATE(7902)] = 250711, + [SMALL_STATE(7903)] = 250725, + [SMALL_STATE(7904)] = 250737, + [SMALL_STATE(7905)] = 250749, + [SMALL_STATE(7906)] = 250765, + [SMALL_STATE(7907)] = 250781, + [SMALL_STATE(7908)] = 250793, + [SMALL_STATE(7909)] = 250809, + [SMALL_STATE(7910)] = 250825, + [SMALL_STATE(7911)] = 250839, + [SMALL_STATE(7912)] = 250851, + [SMALL_STATE(7913)] = 250865, + [SMALL_STATE(7914)] = 250881, + [SMALL_STATE(7915)] = 250897, + [SMALL_STATE(7916)] = 250913, + [SMALL_STATE(7917)] = 250929, + [SMALL_STATE(7918)] = 250943, + [SMALL_STATE(7919)] = 250957, + [SMALL_STATE(7920)] = 250973, + [SMALL_STATE(7921)] = 250989, + [SMALL_STATE(7922)] = 251005, + [SMALL_STATE(7923)] = 251021, + [SMALL_STATE(7924)] = 251037, + [SMALL_STATE(7925)] = 251051, + [SMALL_STATE(7926)] = 251065, + [SMALL_STATE(7927)] = 251081, + [SMALL_STATE(7928)] = 251097, + [SMALL_STATE(7929)] = 251113, + [SMALL_STATE(7930)] = 251129, + [SMALL_STATE(7931)] = 251143, + [SMALL_STATE(7932)] = 251157, + [SMALL_STATE(7933)] = 251173, + [SMALL_STATE(7934)] = 251189, + [SMALL_STATE(7935)] = 251201, + [SMALL_STATE(7936)] = 251217, + [SMALL_STATE(7937)] = 251233, + [SMALL_STATE(7938)] = 251247, + [SMALL_STATE(7939)] = 251261, + [SMALL_STATE(7940)] = 251277, + [SMALL_STATE(7941)] = 251293, + [SMALL_STATE(7942)] = 251309, + [SMALL_STATE(7943)] = 251325, + [SMALL_STATE(7944)] = 251339, + [SMALL_STATE(7945)] = 251353, + [SMALL_STATE(7946)] = 251369, + [SMALL_STATE(7947)] = 251385, + [SMALL_STATE(7948)] = 251401, + [SMALL_STATE(7949)] = 251417, + [SMALL_STATE(7950)] = 251433, + [SMALL_STATE(7951)] = 251447, + [SMALL_STATE(7952)] = 251463, + [SMALL_STATE(7953)] = 251475, + [SMALL_STATE(7954)] = 251487, + [SMALL_STATE(7955)] = 251503, + [SMALL_STATE(7956)] = 251519, + [SMALL_STATE(7957)] = 251531, + [SMALL_STATE(7958)] = 251547, + [SMALL_STATE(7959)] = 251563, + [SMALL_STATE(7960)] = 251577, + [SMALL_STATE(7961)] = 251593, + [SMALL_STATE(7962)] = 251607, + [SMALL_STATE(7963)] = 251621, + [SMALL_STATE(7964)] = 251637, + [SMALL_STATE(7965)] = 251653, + [SMALL_STATE(7966)] = 251665, + [SMALL_STATE(7967)] = 251679, + [SMALL_STATE(7968)] = 251693, + [SMALL_STATE(7969)] = 251709, + [SMALL_STATE(7970)] = 251725, + [SMALL_STATE(7971)] = 251741, + [SMALL_STATE(7972)] = 251757, + [SMALL_STATE(7973)] = 251773, + [SMALL_STATE(7974)] = 251785, + [SMALL_STATE(7975)] = 251801, + [SMALL_STATE(7976)] = 251817, + [SMALL_STATE(7977)] = 251833, + [SMALL_STATE(7978)] = 251845, + [SMALL_STATE(7979)] = 251858, + [SMALL_STATE(7980)] = 251871, + [SMALL_STATE(7981)] = 251884, + [SMALL_STATE(7982)] = 251897, + [SMALL_STATE(7983)] = 251910, + [SMALL_STATE(7984)] = 251923, + [SMALL_STATE(7985)] = 251936, + [SMALL_STATE(7986)] = 251949, + [SMALL_STATE(7987)] = 251962, + [SMALL_STATE(7988)] = 251975, + [SMALL_STATE(7989)] = 251988, + [SMALL_STATE(7990)] = 252001, + [SMALL_STATE(7991)] = 252014, + [SMALL_STATE(7992)] = 252027, + [SMALL_STATE(7993)] = 252040, + [SMALL_STATE(7994)] = 252053, + [SMALL_STATE(7995)] = 252066, + [SMALL_STATE(7996)] = 252079, + [SMALL_STATE(7997)] = 252090, + [SMALL_STATE(7998)] = 252103, + [SMALL_STATE(7999)] = 252116, + [SMALL_STATE(8000)] = 252129, + [SMALL_STATE(8001)] = 252142, + [SMALL_STATE(8002)] = 252155, + [SMALL_STATE(8003)] = 252168, + [SMALL_STATE(8004)] = 252181, + [SMALL_STATE(8005)] = 252194, + [SMALL_STATE(8006)] = 252207, + [SMALL_STATE(8007)] = 252220, + [SMALL_STATE(8008)] = 252233, + [SMALL_STATE(8009)] = 252246, + [SMALL_STATE(8010)] = 252259, + [SMALL_STATE(8011)] = 252270, + [SMALL_STATE(8012)] = 252283, + [SMALL_STATE(8013)] = 252296, + [SMALL_STATE(8014)] = 252309, + [SMALL_STATE(8015)] = 252322, + [SMALL_STATE(8016)] = 252335, + [SMALL_STATE(8017)] = 252348, + [SMALL_STATE(8018)] = 252361, + [SMALL_STATE(8019)] = 252374, + [SMALL_STATE(8020)] = 252387, + [SMALL_STATE(8021)] = 252400, + [SMALL_STATE(8022)] = 252413, + [SMALL_STATE(8023)] = 252426, + [SMALL_STATE(8024)] = 252439, + [SMALL_STATE(8025)] = 252452, + [SMALL_STATE(8026)] = 252465, + [SMALL_STATE(8027)] = 252478, + [SMALL_STATE(8028)] = 252491, + [SMALL_STATE(8029)] = 252504, + [SMALL_STATE(8030)] = 252517, + [SMALL_STATE(8031)] = 252530, + [SMALL_STATE(8032)] = 252543, + [SMALL_STATE(8033)] = 252556, + [SMALL_STATE(8034)] = 252569, + [SMALL_STATE(8035)] = 252582, + [SMALL_STATE(8036)] = 252595, + [SMALL_STATE(8037)] = 252608, + [SMALL_STATE(8038)] = 252621, + [SMALL_STATE(8039)] = 252634, + [SMALL_STATE(8040)] = 252647, + [SMALL_STATE(8041)] = 252660, + [SMALL_STATE(8042)] = 252673, + [SMALL_STATE(8043)] = 252686, + [SMALL_STATE(8044)] = 252699, + [SMALL_STATE(8045)] = 252712, + [SMALL_STATE(8046)] = 252725, + [SMALL_STATE(8047)] = 252738, + [SMALL_STATE(8048)] = 252751, + [SMALL_STATE(8049)] = 252764, + [SMALL_STATE(8050)] = 252777, + [SMALL_STATE(8051)] = 252790, + [SMALL_STATE(8052)] = 252803, + [SMALL_STATE(8053)] = 252816, + [SMALL_STATE(8054)] = 252829, + [SMALL_STATE(8055)] = 252842, + [SMALL_STATE(8056)] = 252855, + [SMALL_STATE(8057)] = 252868, + [SMALL_STATE(8058)] = 252881, + [SMALL_STATE(8059)] = 252894, + [SMALL_STATE(8060)] = 252907, + [SMALL_STATE(8061)] = 252920, + [SMALL_STATE(8062)] = 252933, + [SMALL_STATE(8063)] = 252946, + [SMALL_STATE(8064)] = 252959, + [SMALL_STATE(8065)] = 252972, + [SMALL_STATE(8066)] = 252985, + [SMALL_STATE(8067)] = 252998, + [SMALL_STATE(8068)] = 253011, + [SMALL_STATE(8069)] = 253024, + [SMALL_STATE(8070)] = 253037, + [SMALL_STATE(8071)] = 253050, + [SMALL_STATE(8072)] = 253063, + [SMALL_STATE(8073)] = 253076, + [SMALL_STATE(8074)] = 253089, + [SMALL_STATE(8075)] = 253102, + [SMALL_STATE(8076)] = 253115, + [SMALL_STATE(8077)] = 253128, + [SMALL_STATE(8078)] = 253141, + [SMALL_STATE(8079)] = 253154, + [SMALL_STATE(8080)] = 253167, + [SMALL_STATE(8081)] = 253180, + [SMALL_STATE(8082)] = 253193, + [SMALL_STATE(8083)] = 253206, + [SMALL_STATE(8084)] = 253219, + [SMALL_STATE(8085)] = 253232, + [SMALL_STATE(8086)] = 253245, + [SMALL_STATE(8087)] = 253258, + [SMALL_STATE(8088)] = 253271, + [SMALL_STATE(8089)] = 253282, + [SMALL_STATE(8090)] = 253295, + [SMALL_STATE(8091)] = 253308, + [SMALL_STATE(8092)] = 253321, + [SMALL_STATE(8093)] = 253334, + [SMALL_STATE(8094)] = 253347, + [SMALL_STATE(8095)] = 253360, + [SMALL_STATE(8096)] = 253373, + [SMALL_STATE(8097)] = 253386, + [SMALL_STATE(8098)] = 253399, + [SMALL_STATE(8099)] = 253412, + [SMALL_STATE(8100)] = 253425, + [SMALL_STATE(8101)] = 253438, + [SMALL_STATE(8102)] = 253451, + [SMALL_STATE(8103)] = 253464, + [SMALL_STATE(8104)] = 253477, + [SMALL_STATE(8105)] = 253490, + [SMALL_STATE(8106)] = 253503, + [SMALL_STATE(8107)] = 253516, + [SMALL_STATE(8108)] = 253529, + [SMALL_STATE(8109)] = 253542, + [SMALL_STATE(8110)] = 253555, + [SMALL_STATE(8111)] = 253568, + [SMALL_STATE(8112)] = 253581, + [SMALL_STATE(8113)] = 253594, + [SMALL_STATE(8114)] = 253607, + [SMALL_STATE(8115)] = 253620, + [SMALL_STATE(8116)] = 253633, + [SMALL_STATE(8117)] = 253646, + [SMALL_STATE(8118)] = 253659, + [SMALL_STATE(8119)] = 253672, + [SMALL_STATE(8120)] = 253685, + [SMALL_STATE(8121)] = 253698, + [SMALL_STATE(8122)] = 253711, + [SMALL_STATE(8123)] = 253724, + [SMALL_STATE(8124)] = 253737, + [SMALL_STATE(8125)] = 253750, + [SMALL_STATE(8126)] = 253763, + [SMALL_STATE(8127)] = 253776, + [SMALL_STATE(8128)] = 253789, + [SMALL_STATE(8129)] = 253802, + [SMALL_STATE(8130)] = 253813, + [SMALL_STATE(8131)] = 253826, + [SMALL_STATE(8132)] = 253839, + [SMALL_STATE(8133)] = 253852, + [SMALL_STATE(8134)] = 253865, + [SMALL_STATE(8135)] = 253878, + [SMALL_STATE(8136)] = 253891, + [SMALL_STATE(8137)] = 253904, + [SMALL_STATE(8138)] = 253917, + [SMALL_STATE(8139)] = 253930, + [SMALL_STATE(8140)] = 253943, + [SMALL_STATE(8141)] = 253956, + [SMALL_STATE(8142)] = 253967, + [SMALL_STATE(8143)] = 253980, + [SMALL_STATE(8144)] = 253993, + [SMALL_STATE(8145)] = 254006, + [SMALL_STATE(8146)] = 254019, + [SMALL_STATE(8147)] = 254032, + [SMALL_STATE(8148)] = 254045, + [SMALL_STATE(8149)] = 254058, + [SMALL_STATE(8150)] = 254071, + [SMALL_STATE(8151)] = 254084, + [SMALL_STATE(8152)] = 254097, + [SMALL_STATE(8153)] = 254110, + [SMALL_STATE(8154)] = 254123, + [SMALL_STATE(8155)] = 254136, + [SMALL_STATE(8156)] = 254149, + [SMALL_STATE(8157)] = 254162, + [SMALL_STATE(8158)] = 254175, + [SMALL_STATE(8159)] = 254188, + [SMALL_STATE(8160)] = 254201, + [SMALL_STATE(8161)] = 254214, + [SMALL_STATE(8162)] = 254227, + [SMALL_STATE(8163)] = 254240, + [SMALL_STATE(8164)] = 254251, + [SMALL_STATE(8165)] = 254264, + [SMALL_STATE(8166)] = 254277, + [SMALL_STATE(8167)] = 254290, + [SMALL_STATE(8168)] = 254303, + [SMALL_STATE(8169)] = 254316, + [SMALL_STATE(8170)] = 254329, + [SMALL_STATE(8171)] = 254342, + [SMALL_STATE(8172)] = 254355, + [SMALL_STATE(8173)] = 254368, + [SMALL_STATE(8174)] = 254379, + [SMALL_STATE(8175)] = 254392, + [SMALL_STATE(8176)] = 254405, + [SMALL_STATE(8177)] = 254418, + [SMALL_STATE(8178)] = 254431, + [SMALL_STATE(8179)] = 254444, + [SMALL_STATE(8180)] = 254457, + [SMALL_STATE(8181)] = 254470, + [SMALL_STATE(8182)] = 254483, + [SMALL_STATE(8183)] = 254496, + [SMALL_STATE(8184)] = 254509, + [SMALL_STATE(8185)] = 254522, + [SMALL_STATE(8186)] = 254535, + [SMALL_STATE(8187)] = 254548, + [SMALL_STATE(8188)] = 254561, + [SMALL_STATE(8189)] = 254574, + [SMALL_STATE(8190)] = 254587, + [SMALL_STATE(8191)] = 254600, + [SMALL_STATE(8192)] = 254613, + [SMALL_STATE(8193)] = 254624, + [SMALL_STATE(8194)] = 254637, + [SMALL_STATE(8195)] = 254650, + [SMALL_STATE(8196)] = 254663, + [SMALL_STATE(8197)] = 254676, + [SMALL_STATE(8198)] = 254689, + [SMALL_STATE(8199)] = 254702, + [SMALL_STATE(8200)] = 254715, + [SMALL_STATE(8201)] = 254728, + [SMALL_STATE(8202)] = 254741, + [SMALL_STATE(8203)] = 254754, + [SMALL_STATE(8204)] = 254767, + [SMALL_STATE(8205)] = 254780, + [SMALL_STATE(8206)] = 254793, + [SMALL_STATE(8207)] = 254806, + [SMALL_STATE(8208)] = 254819, + [SMALL_STATE(8209)] = 254832, + [SMALL_STATE(8210)] = 254845, + [SMALL_STATE(8211)] = 254858, + [SMALL_STATE(8212)] = 254871, + [SMALL_STATE(8213)] = 254884, + [SMALL_STATE(8214)] = 254897, + [SMALL_STATE(8215)] = 254910, + [SMALL_STATE(8216)] = 254923, + [SMALL_STATE(8217)] = 254936, + [SMALL_STATE(8218)] = 254949, + [SMALL_STATE(8219)] = 254962, + [SMALL_STATE(8220)] = 254975, + [SMALL_STATE(8221)] = 254988, + [SMALL_STATE(8222)] = 255001, + [SMALL_STATE(8223)] = 255014, + [SMALL_STATE(8224)] = 255027, + [SMALL_STATE(8225)] = 255037, + [SMALL_STATE(8226)] = 255047, + [SMALL_STATE(8227)] = 255057, + [SMALL_STATE(8228)] = 255067, + [SMALL_STATE(8229)] = 255077, + [SMALL_STATE(8230)] = 255087, + [SMALL_STATE(8231)] = 255097, + [SMALL_STATE(8232)] = 255107, + [SMALL_STATE(8233)] = 255117, + [SMALL_STATE(8234)] = 255127, + [SMALL_STATE(8235)] = 255137, + [SMALL_STATE(8236)] = 255147, + [SMALL_STATE(8237)] = 255157, + [SMALL_STATE(8238)] = 255167, + [SMALL_STATE(8239)] = 255177, + [SMALL_STATE(8240)] = 255187, + [SMALL_STATE(8241)] = 255197, + [SMALL_STATE(8242)] = 255207, + [SMALL_STATE(8243)] = 255217, + [SMALL_STATE(8244)] = 255227, + [SMALL_STATE(8245)] = 255237, + [SMALL_STATE(8246)] = 255247, + [SMALL_STATE(8247)] = 255257, + [SMALL_STATE(8248)] = 255267, + [SMALL_STATE(8249)] = 255277, + [SMALL_STATE(8250)] = 255287, + [SMALL_STATE(8251)] = 255297, + [SMALL_STATE(8252)] = 255307, + [SMALL_STATE(8253)] = 255317, + [SMALL_STATE(8254)] = 255327, + [SMALL_STATE(8255)] = 255337, + [SMALL_STATE(8256)] = 255347, + [SMALL_STATE(8257)] = 255357, + [SMALL_STATE(8258)] = 255367, + [SMALL_STATE(8259)] = 255377, + [SMALL_STATE(8260)] = 255387, + [SMALL_STATE(8261)] = 255397, + [SMALL_STATE(8262)] = 255407, + [SMALL_STATE(8263)] = 255417, + [SMALL_STATE(8264)] = 255427, + [SMALL_STATE(8265)] = 255437, + [SMALL_STATE(8266)] = 255447, + [SMALL_STATE(8267)] = 255457, + [SMALL_STATE(8268)] = 255467, + [SMALL_STATE(8269)] = 255477, + [SMALL_STATE(8270)] = 255487, + [SMALL_STATE(8271)] = 255497, + [SMALL_STATE(8272)] = 255507, + [SMALL_STATE(8273)] = 255517, + [SMALL_STATE(8274)] = 255527, + [SMALL_STATE(8275)] = 255537, + [SMALL_STATE(8276)] = 255547, + [SMALL_STATE(8277)] = 255557, + [SMALL_STATE(8278)] = 255567, + [SMALL_STATE(8279)] = 255577, + [SMALL_STATE(8280)] = 255587, + [SMALL_STATE(8281)] = 255597, + [SMALL_STATE(8282)] = 255607, + [SMALL_STATE(8283)] = 255617, + [SMALL_STATE(8284)] = 255627, + [SMALL_STATE(8285)] = 255637, + [SMALL_STATE(8286)] = 255647, + [SMALL_STATE(8287)] = 255657, + [SMALL_STATE(8288)] = 255667, + [SMALL_STATE(8289)] = 255677, + [SMALL_STATE(8290)] = 255687, + [SMALL_STATE(8291)] = 255697, + [SMALL_STATE(8292)] = 255707, + [SMALL_STATE(8293)] = 255717, + [SMALL_STATE(8294)] = 255727, + [SMALL_STATE(8295)] = 255737, + [SMALL_STATE(8296)] = 255747, + [SMALL_STATE(8297)] = 255757, + [SMALL_STATE(8298)] = 255767, + [SMALL_STATE(8299)] = 255777, + [SMALL_STATE(8300)] = 255787, + [SMALL_STATE(8301)] = 255797, + [SMALL_STATE(8302)] = 255807, + [SMALL_STATE(8303)] = 255817, + [SMALL_STATE(8304)] = 255827, + [SMALL_STATE(8305)] = 255837, + [SMALL_STATE(8306)] = 255847, + [SMALL_STATE(8307)] = 255857, + [SMALL_STATE(8308)] = 255867, + [SMALL_STATE(8309)] = 255877, + [SMALL_STATE(8310)] = 255887, + [SMALL_STATE(8311)] = 255897, + [SMALL_STATE(8312)] = 255907, + [SMALL_STATE(8313)] = 255917, + [SMALL_STATE(8314)] = 255927, + [SMALL_STATE(8315)] = 255937, + [SMALL_STATE(8316)] = 255947, + [SMALL_STATE(8317)] = 255957, + [SMALL_STATE(8318)] = 255967, + [SMALL_STATE(8319)] = 255977, + [SMALL_STATE(8320)] = 255987, + [SMALL_STATE(8321)] = 255997, + [SMALL_STATE(8322)] = 256007, + [SMALL_STATE(8323)] = 256017, + [SMALL_STATE(8324)] = 256027, + [SMALL_STATE(8325)] = 256037, + [SMALL_STATE(8326)] = 256047, + [SMALL_STATE(8327)] = 256057, + [SMALL_STATE(8328)] = 256067, + [SMALL_STATE(8329)] = 256077, + [SMALL_STATE(8330)] = 256087, + [SMALL_STATE(8331)] = 256097, + [SMALL_STATE(8332)] = 256107, + [SMALL_STATE(8333)] = 256117, + [SMALL_STATE(8334)] = 256127, + [SMALL_STATE(8335)] = 256137, + [SMALL_STATE(8336)] = 256147, + [SMALL_STATE(8337)] = 256157, + [SMALL_STATE(8338)] = 256167, + [SMALL_STATE(8339)] = 256177, + [SMALL_STATE(8340)] = 256187, + [SMALL_STATE(8341)] = 256197, + [SMALL_STATE(8342)] = 256207, + [SMALL_STATE(8343)] = 256217, + [SMALL_STATE(8344)] = 256227, + [SMALL_STATE(8345)] = 256237, + [SMALL_STATE(8346)] = 256247, + [SMALL_STATE(8347)] = 256257, + [SMALL_STATE(8348)] = 256267, + [SMALL_STATE(8349)] = 256277, + [SMALL_STATE(8350)] = 256287, + [SMALL_STATE(8351)] = 256297, + [SMALL_STATE(8352)] = 256307, + [SMALL_STATE(8353)] = 256317, + [SMALL_STATE(8354)] = 256327, + [SMALL_STATE(8355)] = 256337, + [SMALL_STATE(8356)] = 256347, + [SMALL_STATE(8357)] = 256357, + [SMALL_STATE(8358)] = 256367, + [SMALL_STATE(8359)] = 256377, + [SMALL_STATE(8360)] = 256387, + [SMALL_STATE(8361)] = 256397, + [SMALL_STATE(8362)] = 256407, + [SMALL_STATE(8363)] = 256417, + [SMALL_STATE(8364)] = 256427, + [SMALL_STATE(8365)] = 256437, + [SMALL_STATE(8366)] = 256447, + [SMALL_STATE(8367)] = 256457, + [SMALL_STATE(8368)] = 256467, + [SMALL_STATE(8369)] = 256477, + [SMALL_STATE(8370)] = 256487, + [SMALL_STATE(8371)] = 256497, + [SMALL_STATE(8372)] = 256507, + [SMALL_STATE(8373)] = 256517, + [SMALL_STATE(8374)] = 256527, + [SMALL_STATE(8375)] = 256537, + [SMALL_STATE(8376)] = 256547, + [SMALL_STATE(8377)] = 256557, + [SMALL_STATE(8378)] = 256567, + [SMALL_STATE(8379)] = 256577, + [SMALL_STATE(8380)] = 256587, + [SMALL_STATE(8381)] = 256597, + [SMALL_STATE(8382)] = 256607, + [SMALL_STATE(8383)] = 256617, + [SMALL_STATE(8384)] = 256627, + [SMALL_STATE(8385)] = 256637, + [SMALL_STATE(8386)] = 256647, + [SMALL_STATE(8387)] = 256657, + [SMALL_STATE(8388)] = 256667, + [SMALL_STATE(8389)] = 256677, + [SMALL_STATE(8390)] = 256687, + [SMALL_STATE(8391)] = 256697, + [SMALL_STATE(8392)] = 256707, + [SMALL_STATE(8393)] = 256717, + [SMALL_STATE(8394)] = 256727, + [SMALL_STATE(8395)] = 256737, + [SMALL_STATE(8396)] = 256747, + [SMALL_STATE(8397)] = 256757, + [SMALL_STATE(8398)] = 256767, + [SMALL_STATE(8399)] = 256777, + [SMALL_STATE(8400)] = 256787, + [SMALL_STATE(8401)] = 256797, + [SMALL_STATE(8402)] = 256807, + [SMALL_STATE(8403)] = 256817, + [SMALL_STATE(8404)] = 256827, + [SMALL_STATE(8405)] = 256837, + [SMALL_STATE(8406)] = 256847, + [SMALL_STATE(8407)] = 256857, + [SMALL_STATE(8408)] = 256867, + [SMALL_STATE(8409)] = 256877, + [SMALL_STATE(8410)] = 256887, + [SMALL_STATE(8411)] = 256897, + [SMALL_STATE(8412)] = 256907, + [SMALL_STATE(8413)] = 256917, + [SMALL_STATE(8414)] = 256927, + [SMALL_STATE(8415)] = 256937, + [SMALL_STATE(8416)] = 256947, + [SMALL_STATE(8417)] = 256957, + [SMALL_STATE(8418)] = 256967, + [SMALL_STATE(8419)] = 256977, + [SMALL_STATE(8420)] = 256987, + [SMALL_STATE(8421)] = 256997, + [SMALL_STATE(8422)] = 257007, + [SMALL_STATE(8423)] = 257017, + [SMALL_STATE(8424)] = 257027, + [SMALL_STATE(8425)] = 257037, + [SMALL_STATE(8426)] = 257047, + [SMALL_STATE(8427)] = 257057, + [SMALL_STATE(8428)] = 257067, + [SMALL_STATE(8429)] = 257077, + [SMALL_STATE(8430)] = 257087, + [SMALL_STATE(8431)] = 257097, + [SMALL_STATE(8432)] = 257107, + [SMALL_STATE(8433)] = 257117, + [SMALL_STATE(8434)] = 257127, + [SMALL_STATE(8435)] = 257137, + [SMALL_STATE(8436)] = 257147, + [SMALL_STATE(8437)] = 257157, + [SMALL_STATE(8438)] = 257167, + [SMALL_STATE(8439)] = 257177, + [SMALL_STATE(8440)] = 257187, + [SMALL_STATE(8441)] = 257197, + [SMALL_STATE(8442)] = 257207, + [SMALL_STATE(8443)] = 257217, + [SMALL_STATE(8444)] = 257227, + [SMALL_STATE(8445)] = 257237, + [SMALL_STATE(8446)] = 257247, + [SMALL_STATE(8447)] = 257257, + [SMALL_STATE(8448)] = 257267, + [SMALL_STATE(8449)] = 257277, + [SMALL_STATE(8450)] = 257287, + [SMALL_STATE(8451)] = 257297, + [SMALL_STATE(8452)] = 257307, + [SMALL_STATE(8453)] = 257317, + [SMALL_STATE(8454)] = 257327, + [SMALL_STATE(8455)] = 257337, + [SMALL_STATE(8456)] = 257347, + [SMALL_STATE(8457)] = 257357, + [SMALL_STATE(8458)] = 257367, + [SMALL_STATE(8459)] = 257377, + [SMALL_STATE(8460)] = 257387, + [SMALL_STATE(8461)] = 257397, + [SMALL_STATE(8462)] = 257407, + [SMALL_STATE(8463)] = 257417, + [SMALL_STATE(8464)] = 257427, + [SMALL_STATE(8465)] = 257437, + [SMALL_STATE(8466)] = 257447, + [SMALL_STATE(8467)] = 257457, + [SMALL_STATE(8468)] = 257467, + [SMALL_STATE(8469)] = 257477, + [SMALL_STATE(8470)] = 257487, + [SMALL_STATE(8471)] = 257497, + [SMALL_STATE(8472)] = 257507, + [SMALL_STATE(8473)] = 257517, + [SMALL_STATE(8474)] = 257527, + [SMALL_STATE(8475)] = 257537, + [SMALL_STATE(8476)] = 257547, + [SMALL_STATE(8477)] = 257557, + [SMALL_STATE(8478)] = 257567, + [SMALL_STATE(8479)] = 257577, + [SMALL_STATE(8480)] = 257587, + [SMALL_STATE(8481)] = 257597, + [SMALL_STATE(8482)] = 257607, + [SMALL_STATE(8483)] = 257617, + [SMALL_STATE(8484)] = 257627, + [SMALL_STATE(8485)] = 257637, + [SMALL_STATE(8486)] = 257647, + [SMALL_STATE(8487)] = 257657, + [SMALL_STATE(8488)] = 257667, + [SMALL_STATE(8489)] = 257677, + [SMALL_STATE(8490)] = 257687, + [SMALL_STATE(8491)] = 257697, + [SMALL_STATE(8492)] = 257707, + [SMALL_STATE(8493)] = 257717, + [SMALL_STATE(8494)] = 257727, + [SMALL_STATE(8495)] = 257737, + [SMALL_STATE(8496)] = 257747, + [SMALL_STATE(8497)] = 257757, + [SMALL_STATE(8498)] = 257767, + [SMALL_STATE(8499)] = 257777, + [SMALL_STATE(8500)] = 257787, + [SMALL_STATE(8501)] = 257797, + [SMALL_STATE(8502)] = 257807, + [SMALL_STATE(8503)] = 257817, + [SMALL_STATE(8504)] = 257827, + [SMALL_STATE(8505)] = 257837, + [SMALL_STATE(8506)] = 257847, + [SMALL_STATE(8507)] = 257857, + [SMALL_STATE(8508)] = 257867, + [SMALL_STATE(8509)] = 257877, + [SMALL_STATE(8510)] = 257887, + [SMALL_STATE(8511)] = 257897, + [SMALL_STATE(8512)] = 257907, + [SMALL_STATE(8513)] = 257917, + [SMALL_STATE(8514)] = 257927, + [SMALL_STATE(8515)] = 257937, + [SMALL_STATE(8516)] = 257947, + [SMALL_STATE(8517)] = 257957, + [SMALL_STATE(8518)] = 257967, + [SMALL_STATE(8519)] = 257977, + [SMALL_STATE(8520)] = 257987, + [SMALL_STATE(8521)] = 257997, + [SMALL_STATE(8522)] = 258007, + [SMALL_STATE(8523)] = 258017, + [SMALL_STATE(8524)] = 258027, + [SMALL_STATE(8525)] = 258037, + [SMALL_STATE(8526)] = 258047, + [SMALL_STATE(8527)] = 258057, + [SMALL_STATE(8528)] = 258067, + [SMALL_STATE(8529)] = 258077, + [SMALL_STATE(8530)] = 258087, + [SMALL_STATE(8531)] = 258097, + [SMALL_STATE(8532)] = 258107, + [SMALL_STATE(8533)] = 258117, + [SMALL_STATE(8534)] = 258127, + [SMALL_STATE(8535)] = 258137, + [SMALL_STATE(8536)] = 258147, + [SMALL_STATE(8537)] = 258157, + [SMALL_STATE(8538)] = 258167, + [SMALL_STATE(8539)] = 258177, + [SMALL_STATE(8540)] = 258187, + [SMALL_STATE(8541)] = 258197, + [SMALL_STATE(8542)] = 258207, + [SMALL_STATE(8543)] = 258217, + [SMALL_STATE(8544)] = 258227, + [SMALL_STATE(8545)] = 258237, + [SMALL_STATE(8546)] = 258247, + [SMALL_STATE(8547)] = 258257, + [SMALL_STATE(8548)] = 258267, + [SMALL_STATE(8549)] = 258277, + [SMALL_STATE(8550)] = 258287, + [SMALL_STATE(8551)] = 258297, + [SMALL_STATE(8552)] = 258307, + [SMALL_STATE(8553)] = 258317, + [SMALL_STATE(8554)] = 258327, + [SMALL_STATE(8555)] = 258337, + [SMALL_STATE(8556)] = 258347, + [SMALL_STATE(8557)] = 258357, + [SMALL_STATE(8558)] = 258367, + [SMALL_STATE(8559)] = 258377, + [SMALL_STATE(8560)] = 258387, + [SMALL_STATE(8561)] = 258397, + [SMALL_STATE(8562)] = 258407, + [SMALL_STATE(8563)] = 258417, + [SMALL_STATE(8564)] = 258427, + [SMALL_STATE(8565)] = 258437, + [SMALL_STATE(8566)] = 258447, + [SMALL_STATE(8567)] = 258457, + [SMALL_STATE(8568)] = 258467, + [SMALL_STATE(8569)] = 258477, + [SMALL_STATE(8570)] = 258487, + [SMALL_STATE(8571)] = 258497, + [SMALL_STATE(8572)] = 258507, + [SMALL_STATE(8573)] = 258517, + [SMALL_STATE(8574)] = 258527, + [SMALL_STATE(8575)] = 258537, + [SMALL_STATE(8576)] = 258547, + [SMALL_STATE(8577)] = 258557, + [SMALL_STATE(8578)] = 258567, + [SMALL_STATE(8579)] = 258577, + [SMALL_STATE(8580)] = 258587, + [SMALL_STATE(8581)] = 258597, + [SMALL_STATE(8582)] = 258607, + [SMALL_STATE(8583)] = 258617, + [SMALL_STATE(8584)] = 258627, + [SMALL_STATE(8585)] = 258637, + [SMALL_STATE(8586)] = 258647, + [SMALL_STATE(8587)] = 258657, + [SMALL_STATE(8588)] = 258667, + [SMALL_STATE(8589)] = 258677, + [SMALL_STATE(8590)] = 258687, + [SMALL_STATE(8591)] = 258697, + [SMALL_STATE(8592)] = 258707, + [SMALL_STATE(8593)] = 258717, + [SMALL_STATE(8594)] = 258727, + [SMALL_STATE(8595)] = 258737, + [SMALL_STATE(8596)] = 258747, + [SMALL_STATE(8597)] = 258757, + [SMALL_STATE(8598)] = 258767, + [SMALL_STATE(8599)] = 258777, + [SMALL_STATE(8600)] = 258787, + [SMALL_STATE(8601)] = 258797, + [SMALL_STATE(8602)] = 258807, + [SMALL_STATE(8603)] = 258817, + [SMALL_STATE(8604)] = 258827, + [SMALL_STATE(8605)] = 258837, + [SMALL_STATE(8606)] = 258847, + [SMALL_STATE(8607)] = 258857, + [SMALL_STATE(8608)] = 258867, + [SMALL_STATE(8609)] = 258877, + [SMALL_STATE(8610)] = 258887, + [SMALL_STATE(8611)] = 258897, + [SMALL_STATE(8612)] = 258907, + [SMALL_STATE(8613)] = 258917, + [SMALL_STATE(8614)] = 258927, + [SMALL_STATE(8615)] = 258937, + [SMALL_STATE(8616)] = 258947, + [SMALL_STATE(8617)] = 258957, + [SMALL_STATE(8618)] = 258967, + [SMALL_STATE(8619)] = 258977, + [SMALL_STATE(8620)] = 258987, + [SMALL_STATE(8621)] = 258997, + [SMALL_STATE(8622)] = 259007, + [SMALL_STATE(8623)] = 259017, + [SMALL_STATE(8624)] = 259027, + [SMALL_STATE(8625)] = 259037, + [SMALL_STATE(8626)] = 259047, + [SMALL_STATE(8627)] = 259057, + [SMALL_STATE(8628)] = 259067, + [SMALL_STATE(8629)] = 259077, + [SMALL_STATE(8630)] = 259087, + [SMALL_STATE(8631)] = 259097, + [SMALL_STATE(8632)] = 259107, + [SMALL_STATE(8633)] = 259117, + [SMALL_STATE(8634)] = 259127, + [SMALL_STATE(8635)] = 259137, + [SMALL_STATE(8636)] = 259147, + [SMALL_STATE(8637)] = 259157, + [SMALL_STATE(8638)] = 259167, + [SMALL_STATE(8639)] = 259177, + [SMALL_STATE(8640)] = 259187, + [SMALL_STATE(8641)] = 259197, + [SMALL_STATE(8642)] = 259207, + [SMALL_STATE(8643)] = 259217, + [SMALL_STATE(8644)] = 259227, + [SMALL_STATE(8645)] = 259237, + [SMALL_STATE(8646)] = 259247, + [SMALL_STATE(8647)] = 259257, + [SMALL_STATE(8648)] = 259267, + [SMALL_STATE(8649)] = 259277, + [SMALL_STATE(8650)] = 259287, + [SMALL_STATE(8651)] = 259297, + [SMALL_STATE(8652)] = 259307, + [SMALL_STATE(8653)] = 259317, + [SMALL_STATE(8654)] = 259327, + [SMALL_STATE(8655)] = 259337, + [SMALL_STATE(8656)] = 259347, + [SMALL_STATE(8657)] = 259357, + [SMALL_STATE(8658)] = 259367, + [SMALL_STATE(8659)] = 259377, + [SMALL_STATE(8660)] = 259387, + [SMALL_STATE(8661)] = 259397, + [SMALL_STATE(8662)] = 259407, + [SMALL_STATE(8663)] = 259417, + [SMALL_STATE(8664)] = 259427, + [SMALL_STATE(8665)] = 259437, + [SMALL_STATE(8666)] = 259447, + [SMALL_STATE(8667)] = 259457, + [SMALL_STATE(8668)] = 259467, + [SMALL_STATE(8669)] = 259477, + [SMALL_STATE(8670)] = 259487, + [SMALL_STATE(8671)] = 259497, + [SMALL_STATE(8672)] = 259507, + [SMALL_STATE(8673)] = 259517, + [SMALL_STATE(8674)] = 259527, + [SMALL_STATE(8675)] = 259537, + [SMALL_STATE(8676)] = 259547, + [SMALL_STATE(8677)] = 259557, + [SMALL_STATE(8678)] = 259567, + [SMALL_STATE(8679)] = 259577, + [SMALL_STATE(8680)] = 259587, + [SMALL_STATE(8681)] = 259597, }; 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(7997), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8424), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8349), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8163), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7807), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6018), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2627), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6195), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6196), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6197), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2455), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7545), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2658), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2602), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2793), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(867), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(50), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6288), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7952), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8100), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4982), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4986), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5629), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7614), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2146), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5228), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2170), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5383), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7646), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2749), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3412), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2639), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6400), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3886), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5233), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5421), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2118), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2113), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(807), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(807), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(845), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1849), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1849), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1972), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7807), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2174), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6290), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1779), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5932), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8163), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1780), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4616), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7887), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6027), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2649), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6234), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6235), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6236), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), - [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4662), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2455), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7545), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2658), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2602), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2793), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(867), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(50), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6288), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7952), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8100), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5092), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5093), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5629), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7614), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2146), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6045), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5383), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6684), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2749), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3412), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2639), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5408), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6400), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3641), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5233), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5421), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2118), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2113), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(807), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(807), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(845), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1849), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1849), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1972), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7807), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2174), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6290), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1779), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5932), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8163), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1839), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4751), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7887), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8527), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8395), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8603), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6363), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2791), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6599), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6600), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6601), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2555), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8187), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2786), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2776), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2921), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(846), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6991), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8395), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8603), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5069), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5071), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5996), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8195), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2230), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5523), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2258), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5696), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8066), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1167), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2922), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3587), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2777), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5697), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7293), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4089), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5532), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5698), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2209), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2223), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(839), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1924), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8305), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7045), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1868), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6431), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6118), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8478), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1848), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4846), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8390), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6369), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2724), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6637), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6638), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6639), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2555), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8187), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2786), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2776), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2921), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(846), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6991), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8395), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8603), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5319), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5388), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5996), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8195), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2230), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6566), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1967), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5696), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7163), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1167), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2922), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3587), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2777), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5697), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7293), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3946), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5532), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5698), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2209), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2223), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(839), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1924), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8305), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7045), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1868), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6431), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6118), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8478), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1845), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4892), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8390), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5964), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6710), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8100), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5093), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5383), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6684), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5421), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2113), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6111), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5932), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8163), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4751), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6710), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8100), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4982), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5383), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3886), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5421), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2113), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6111), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5932), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8163), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4616), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8032), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(103), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6608), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8017), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(104), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8128), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3685), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2370), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2370), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6314), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1515), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(209), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8169), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7722), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(103), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6573), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8017), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(83), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7744), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3555), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3685), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2370), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2370), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6314), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1515), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(210), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7885), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5594), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [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_path, 3, 0, 147), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7153), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8603), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5319), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6566), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5696), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7163), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7045), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6431), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8478), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8390), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7153), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8603), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5071), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5523), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5696), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8066), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7045), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6431), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8478), + [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4846), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8390), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8505), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(84), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6988), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8294), + [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(76), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8289), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), + [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3849), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3829), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7129), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1571), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(205), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8405), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8527), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(84), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6948), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8294), + [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(102), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8445), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3849), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3829), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7129), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1571), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(206), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8405), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(306), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5967), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5966), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 182), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 182), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 182), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 182), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 219), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 219), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 242), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 242), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 219), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 219), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 242), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 242), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8420), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8457), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8392), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5585), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [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(7051), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1884), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(781), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5956), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 182), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 182), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 219), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 219), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 242), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 242), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1895), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(777), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7956), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2879), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(853), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(52), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6593), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1626), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1584), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5313), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5314), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1609), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1589), - [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1260), - [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1260), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1357), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1266), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1774), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1706), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1698), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7956), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1641), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6494), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1826), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6152), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5807), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7543), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7543), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1694), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8020), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(853), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(52), - [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6593), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1626), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1584), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5313), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5314), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1589), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1260), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1260), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1357), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1266), - [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7956), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1641), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6494), - [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1826), - [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6152), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5807), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7543), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7543), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1694), - [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8020), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(857), - [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(61), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6567), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1655), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1656), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(9), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5351), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5248), - [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1724), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1319), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1319), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1404), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1364), - [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1905), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1784), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1777), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7868), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), - [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6401), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6133), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5756), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1785), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7955), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8119), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8460), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(865), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(54), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6976), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1618), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1629), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5658), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5591), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1598), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1634), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1350), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1314), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1833), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1734), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8460), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1640), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6843), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1862), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6502), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6223), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8190), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8190), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1727), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8524), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(3019), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(865), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(54), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6976), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1618), + [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1629), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5658), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5591), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1598), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1634), + [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1257), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1257), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1350), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1314), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1833), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1745), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1734), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8460), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1640), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6843), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1862), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6502), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6223), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8190), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8190), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1727), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8524), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8370), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(863), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(52), + [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6938), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1688), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1689), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5548), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5550), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1754), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1277), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1277), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1375), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1345), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1996), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1855), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1798), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8370), + [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1700), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6697), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6470), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6180), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1871), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8459), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8611), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(850), - [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(51), - [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6249), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4), - [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5344), - [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(83), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5353), - [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6749), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6365), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7744), - [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5081), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5081), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5290), - [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5230), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7157), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7201), - [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6781), - [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7962), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6258), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6251), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5550), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6076), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5880), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(848), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7645), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7645), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7250), - [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7865), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1171), - [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1171), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(8163), - [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8163), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8633), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8641), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(864), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(47), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6680), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), + [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5590), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(102), + [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5611), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6760), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7246), + [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8445), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5470), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5470), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5655), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5537), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7647), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7809), + [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6674), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8399), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7015), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6710), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5662), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6536), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6311), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(870), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8008), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8008), + [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7417), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8367), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1173), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1173), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1182), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(8478), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8478), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6334), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6918), - [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5275), - [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), - [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6716), - [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), - [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5235), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5235), - [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5474), - [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5356), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7807), - [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6388), - [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), - [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), - [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7543), - [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7543), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5569), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5559), - [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1234), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(53), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6604), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(215), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5338), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5339), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3028), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3029), - [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2578), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2578), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2680), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2628), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3159), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3049), - [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3095), - [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7969), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3062), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6568), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3164), - [4656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7645), - [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7645), - [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3134), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(8069), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5621), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5565), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5567), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5599), - [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5546), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1884), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(1884), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1884), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [5485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1884), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5572), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [5505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), - [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), - [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3636), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3748), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3661), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6251), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5550), - [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7865), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5589), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), - [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2866), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2825), - [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2879), - [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [5951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5590), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3073), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3050), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [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}}, SHIFT(3170), - [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_list, 3, 0, 200), - [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6110), - [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5920), - [6383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5923), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3430), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [6488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5564), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [6501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), - [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7922), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), - [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [7173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5579), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [7333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5577), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [7366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(1884), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), - [7575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1884), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(1884), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [7591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5571), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [7646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1884), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), - [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), - [7657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), - [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), - [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4945), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), - [7702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7525), - [7705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8158), - [7708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8165), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4322), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [7744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [7760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1884), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), - [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1884), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [7802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [7825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(428), - [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(232), - [7839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [7853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(1884), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [7868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5953), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(484), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [7892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(249), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), - [7901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), - [7903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1884), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(486), - [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(486), - [7924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1884), - [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1884), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1884), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1884), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [7996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), - [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(241), - [8007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1884), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1884), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), - [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(1884), - [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1884), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [8038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1884), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [8045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1884), - [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5882), - [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1884), - [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), - [8070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1884), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [8149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [8201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(261), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(272), - [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(276), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(229), - [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [8223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), - [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), - [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), - [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), - [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), - [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), - [8389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), - [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [8393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), - [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), - [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), - [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), - [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), - [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), - [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), - [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), - [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), - [8517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [8527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(280), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [8538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(293), - [8541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(295), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(304), - [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5343), - [8584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5504), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [8653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5390), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [8694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5555), - [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), - [8699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6577), - [8702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5619), - [8705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(8072), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [8872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5592), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5432), - [8898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5418), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), - [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5551), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [8974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [9085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), - [9088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), - [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [9095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [9102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [9160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [9418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5960), - [9421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5960), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [9430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5930), - [9433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5973), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [9468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), - [9471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5993), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [9662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), - [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [9685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [9729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [9736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(141), - [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6680), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5553), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [9763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6193), - [9766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6183), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [9791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [9973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), - [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [9985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), - [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [10011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [10037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), - [10040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [10065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(108), - [10068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7090), - [10071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [10115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [10123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), - [10129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [10137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [10175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [10177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [10183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [10187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), - [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [10191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [10215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [10219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [10243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [10271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), - [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [10287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), - [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [10345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [10367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [10427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), - [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [10463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [10515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [10621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [10705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [10803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [10817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6889), - [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), - [10824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [10836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [10854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [10868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [10878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6832), - [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [10883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), - [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [10983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), - [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), - [11032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [11062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [11088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [11116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [11140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), - [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [11224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [11272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [11278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [11312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [11338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [11352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [11366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [11374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [11378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [11382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [11386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [11400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [11404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7133), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [11437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7704), - [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [11452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [11460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(847), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [11499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), - [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [11587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7634), - [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), - [11606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [11612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7568), - [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [11625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [11631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [11633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [11637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [11647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [11657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7681), - [11660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [11694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), - [11696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [11704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), - [11706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), - [11708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), - [11710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), - [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [11720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [11736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [11750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [11756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [11762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [11764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [11774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [11784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [11850] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [11854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [11888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [11908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [11924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [11944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [11980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [12008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [12018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [12030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [12034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [12038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [12046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [12092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), - [12094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [12116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [12162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [12170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [12224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [12226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [12258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [12372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [12392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [12426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [12436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [12440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [12450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [12454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [12458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [12466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7199), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5652), + [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5654), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6907), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6704), + [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), + [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), + [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5717), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), + [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7245), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), + [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7057), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7045), + [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8190), + [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8190), + [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8390), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8512), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(1234), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(57), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(6984), + [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(211), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(5576), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(5600), + [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3159), + [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3155), + [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2702), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2702), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2810), + [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2764), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3260), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3231), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3171), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8473), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3216), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(6944), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3279), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8008), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8008), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3304), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8573), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5917), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5933), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5950), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5931), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5943), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5926), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5912), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 185), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 185), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5930), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5970), + [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5929), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [5349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1895), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1895), + [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), SHIFT(1895), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1895), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5939), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5895), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), + [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), + [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3823), + [5803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(4026), + [5806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3915), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6710), + [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5662), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(8367), + [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5947), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), + [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5961), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3019), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 200), + [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 200), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3179), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), + [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 196), + [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 196), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 233), + [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 233), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 200), + [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 200), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), + [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [6438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(6427), + [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(6132), + [6611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(6141), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5923), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), + [6758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8351), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [6792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5949), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [6828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5920), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5959), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [6958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8394), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8631), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8638), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), + [7510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5952), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5951), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [7588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5948), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [7679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5946), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [7859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5941), + [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 228), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1895), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), + [7897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), + [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5936), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 228), + [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 228), SHIFT(1895), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(1895), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [8017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1895), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 234), + [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 234), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4659), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8362), + [8079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8041), + [8082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8570), + [8085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8240), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [8096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [8106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(437), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [8129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [8131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5957), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [8138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1895), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 203), + [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 203), + [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1895), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), + [8194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1895), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [8203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(282), + [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1895), + [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1895), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 186), SHIFT(1895), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 186), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1895), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [8242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1895), + [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [8249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1895), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [8262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1895), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6289), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [8278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(467), + [8281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(467), + [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1895), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(299), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(291), + [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [8337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(293), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [8346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 186), SHIFT(1895), + [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 186), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1895), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), + [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [8384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(502), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [8389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1895), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6279), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), + [8401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1895), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [8408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1895), + [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [8465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 207), + [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 207), + [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [8495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), + [8497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), + [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 213), + [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 213), + [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 207), + [8511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 207), + [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 209), + [8515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 209), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 236), + [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 236), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 237), + [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 237), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 238), + [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 238), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 239), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 239), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 240), + [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 240), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 256), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 256), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 258), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 258), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 236), + [8559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 236), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 237), + [8563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 237), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 260), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 260), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 261), + [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 261), + [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 238), + [8577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 238), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 239), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 239), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 272), + [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 272), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 256), + [8609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 256), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 274), + [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 274), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 258), + [8619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 258), + [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 276), + [8623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 276), + [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 277), + [8627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 277), + [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 260), + [8631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 260), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 261), + [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 261), + [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 278), + [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 278), + [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 279), + [8647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 279), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 272), + [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 272), + [8669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 274), + [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 274), + [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 286), + [8675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 286), + [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 276), + [8679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 276), + [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 287), + [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 287), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 277), + [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 277), + [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 288), + [8705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 288), + [8707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 289), + [8719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 289), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 290), + [8723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 290), + [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 278), + [8727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 278), + [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 291), + [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 291), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 279), + [8735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 279), + [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 286), + [8739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 286), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(263), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 287), + [8760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 287), + [8762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(271), + [8765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(273), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(279), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 294), + [8775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 294), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 288), + [8779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 288), + [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 295), + [8783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 295), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 289), + [8787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 289), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 290), + [8791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 290), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 291), + [8795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 291), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 294), + [8801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 294), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 295), + [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 295), + [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 282), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 285), + [8821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), + [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 248), + [8889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 227), + [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 249), + [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 250), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 251), + [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 252), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [8915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 280), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), + [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 214), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 214), + [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), + [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 281), + [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [8965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 284), + [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 292), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [9003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(236), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [9012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [9016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), + [9019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [9024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(251), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 293), + [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 176), + [9031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 176), + [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 283), + [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), + [9041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 225), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [9051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), + [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 263), + [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 264), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 265), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 266), + [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 267), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 268), + [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 269), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 270), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [9089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [9091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [9093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [9099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5816), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [9136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [9146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [9154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [9174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5574), + [9177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7959), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5764), + [9297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5715), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8114), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5963), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [9510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(7674), + [9513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(6710), + [9516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(5662), + [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(8367), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [9570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), + [9573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5940), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [9590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5905), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [9695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), + [9703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), + [9707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), + [9709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5942), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [9736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), + [9739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 257), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 257), + [9745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 259), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [9749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 259), + [9751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), + [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [9779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 273), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [9783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 273), + [9785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 275), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 275), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [10193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6322), + [10196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6367), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [10215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6365), + [10218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6116), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [10225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), + [10228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [10233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [10269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [10280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5902), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [10299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [10504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [10512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5908), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [10517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(113), + [10520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6665), + [10523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [10555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6594), + [10558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6573), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [10563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [10597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [10617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(106), + [10620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7662), + [10623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [10671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), + [10674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [10807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 201), + [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 201), + [10811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 202), + [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 202), + [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [10859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [10875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), + [10883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 204), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 205), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 206), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 180), + [10975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 216), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [11021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [11025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [11033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [11051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [11129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 232), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [11221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), + [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [11225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [11235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [11237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [11267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 235), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [11323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [11389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [11397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [11405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [11429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [11465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [11473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [11551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 216), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [11573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [11579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 253), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [11587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [11591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 254), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 255), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [11603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [11605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 271), + [11623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [11625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [11627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(7659), + [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [11634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [11640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [11648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [11652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [11654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [11662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 180), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [11666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [11676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7903), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [11693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [11695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [11697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [11699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [11701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [11707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [11721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [11735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 193), + [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [11741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 194), + [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [11747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [11755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [11761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [11779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [11781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [11793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [11799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [11805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), + [11807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [11829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [11865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [11867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [11871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [11891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [11907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [11911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [11913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7722), + [11952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [11956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [11958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [11960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [11966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [11968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [11970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [11974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [11980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [11986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [11990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [11994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [11996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [11998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [12002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [12004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [12008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [12014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [12018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [12020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [12022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [12024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [12026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [12030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [12038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [12046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [12050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [12052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [12054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [12056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [12058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [12060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [12062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [12068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [12074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [12076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [12078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [12082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [12084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [12088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [12094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [12104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [12106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [12110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [12118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [12122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [12124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [12126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [12128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [12130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [12132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [12134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [12136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [12138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [12140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [12142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [12144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [12146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [12150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [12156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [12158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [12162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [12164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [12170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [12172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [12174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [12176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [12178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7996), + [12181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [12183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [12185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [12189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [12191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [12193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [12197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [12199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [12203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [12209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [12211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [12213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [12225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [12227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [12229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [12231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [12233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8412), + [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [12239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [12241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8655), + [12245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [12249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [12251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [12253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [12255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [12257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [12259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [12261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [12275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [12279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [12285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), + [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [12297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [12309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [12315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [12317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [12319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(868), + [12322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), + [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [12330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [12336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [12340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [12342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [12348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [12350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [12352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [12355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [12357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [12361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [12369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [12371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [12373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [12375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [12377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [12387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [12391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [12401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [12413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [12415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [12417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [12419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), + [12421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [12425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [12427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), + [12433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), + [12435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), + [12441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [12445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [12451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [12453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [12455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [12459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [12461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [12467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 95), + [12469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [12477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [12481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [12483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [12491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [12493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [12495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [12497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [12499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [12501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [12503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [12505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [12507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [12509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [12515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [12523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [12525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [12527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [12529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [12531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [12533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [12535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [12537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [12539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 201), + [12541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 201), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [12545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8391), + [12547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 202), + [12549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 202), + [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [12565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [12575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [12577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(8110), + [12580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [12582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [12584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [12586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [12588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [12590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [12592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [12594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [12596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [12598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [12600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [12602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [12604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 179), + [12606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 179), + [12608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [12610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [12612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [12614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [12618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(8085), + [12621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [12623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [12625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [12629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(8015), + [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [12634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [12636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [12638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [12640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [12642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [12644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [12646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [12652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 215), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [12658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [12674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [12710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [12714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), + [12716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [12718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [12744] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [12772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [12780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [12786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 241), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [12796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [12812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [12814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [12828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [12830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [12836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [12840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [12842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 215), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [12846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [12856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 241), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [12862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [12868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [12920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [12924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [12948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [12952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [12962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [12970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [13008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [13034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [13282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [13338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [13380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/ctrl/error.nu b/test/corpus/ctrl/error.nu new file mode 100644 index 0000000..772542d --- /dev/null +++ b/test/corpus/ctrl/error.nu @@ -0,0 +1,11 @@ +===== +error-001-smoke-test +===== + +error make {} + +----- + +(nu_script + (ctrl_error + (val_record))) diff --git a/test/corpus/decl/def.nu b/test/corpus/decl/def.nu index cc7b330..53c28a3 100644 --- a/test/corpus/decl/def.nu +++ b/test/corpus/decl/def.nu @@ -972,6 +972,7 @@ def test [ y: string@"cmd", --zero(-z): list = hello, + --one=one: int ] {} ----- @@ -1004,5 +1005,42 @@ def test [ completion: (param_cmd unquoted_name: (cmd_identifier)))) (param_value - param_value: (val_string)))) + param_value: (val_string))) + (parameter + param_long_flag: (param_long_flag + (long_flag_identifier)) + (param_value + param_value: (val_string)) + (param_type + type: (flat_type)))) body: (block))) + +====== +def-034-types-multiline-collection +====== + +def open-pr [ + pr: record< + branch: string + title: string + body: string + > +] {} + +----- + +(nu_script + (decl_def + (cmd_identifier) + (parameter_bracks + (parameter + (identifier) + (param_type + (collection_type + (identifier) + (flat_type) + (identifier) + (flat_type) + (identifier) + (flat_type))))) + (block))) diff --git a/test/corpus/expr/binary-expr.nu b/test/corpus/expr/binary-expr.nu index fa20518..88110d8 100644 --- a/test/corpus/expr/binary-expr.nu +++ b/test/corpus/expr/binary-expr.nu @@ -203,3 +203,20 @@ and true (val_number) (val_number))) (val_bool)))))))) + +==== +binary-expr-010-range +==== + +1 in 1..=3 + +----- + +(nu_script + (pipeline + (pipe_element + (expr_binary + (val_number) + (val_range + (val_number) + (val_number))))))